diff --git a/deps/weex-styler/lib/validator.js b/deps/weex-styler/lib/validator.js index 30ea65fa4db8971085f79549c9998087d3cabf03..be9dd3d5ef1ff7d726d8d439b8de076de5ec00cd 100644 --- a/deps/weex-styler/lib/validator.js +++ b/deps/weex-styler/lib/validator.js @@ -2392,6 +2392,7 @@ var RICH_PROP_NAME_GROUPS = { fontWeight: genEnumValidator(['normal', 'lighter', 'bold', 'bolder', "medium", "regular", '100', '200', '300', '400', '500', '600', '700', '800', '900']), textDecoration: genEnumValidator(['none', 'underline', 'line-through']), + textDecorationStyle: genEnumValidator(['solid', 'double', 'dotted', 'dashed', 'wavy']), textAlign: genEnumValidator(['start', 'end', 'left', 'center', 'right']), textOverflow: genEnumValidator(['clip', 'ellipsis']), textIndent: TEXT_INDENT_VALIDATOR, @@ -2986,6 +2987,7 @@ var CARD_PROP_NAME_GROUPS = { fontWeight: genEnumValidator(['normal', 'lighter', 'bold', 'bolder', "medium", "regular", '100', '200', '300', '400', '500', '600', '700', '800', '900']), textDecoration: genEnumValidator(['none', 'underline', 'line-through']), + textDecorationStyle: genEnumValidator(['solid', 'double', 'dotted', 'dashed', 'wavy']), textAlign: genEnumValidator(['start', 'end', 'left', 'center', 'right']), textOverflow: genEnumValidator(['clip', 'ellipsis']), textIndent: TEXT_INDENT_VALIDATOR,