Version 2.1.4 - Sep 13, 2015
Critical Bugfixes
- Build - Fixed issue where using a packaged theme without a
site.variableswould cause build to fail #3009 #3010
Enhancements
- Form Validation - Form validation now supports a brand new shorthand which is simpler to specify #2579
// expands out using default prompts and identifier matching property label
$('.ui.form')
.form({
fields: {
name : 'empty',
gender : 'empty',
username : 'empty',
password : ['minLength[6]', 'empty'],
skills : ['minCount[2]', 'empty'],
terms : 'checked'
}
})
;- Form Validation -
identifierandpromptare now optional for all form validation rules. Default prompt values have been added for all rule types, and identifier will now automatically match on the named value for rule if no ID is specified. #3001 #2579 - Form Validation - All form prompts now support templates values,
{value},{name},{ruleValue}, and{identifier}#3001
Bugfixes
- Dropdown - Fixed issue with ',' key not being allowed in dropdown due to user tagging shortcut key #3016
- Message -
ui listused insideui messagenow aligns properly in all conditions #2958 - Form Validation - Validation messages in
error messagegroup are now correctly removed when invalid field revalidates on blur - Label - Labels no longer force single line using
word-wrap: nowrap#3006 - Table - Fixed issue where
(x) column segment tablewas inheriting accidentally inheriting some grid styles - Grid - Fixed
middle aligned gridnot applying to columns #2959 - Menu - Fixed issue where
right menuwas not floating correctly inside amenu > containeron mobile #2969 - Button - Fixes
right labeled icon buttonwith arightnamed icon (for exampleright arrow) having incorrect margin on icon. #2973