preset-input-wrap -> form-field-input-wrap

This better describes what it does.
Also, took this opportunity to update a bunch of the uifield code
(no multi line variable declarations, prefix state variables with _,
eliminate unnecessray lodash, etc)
This commit is contained in:
Bryan Housel
2018-11-27 10:54:03 -05:00
parent 7bf0af562c
commit 4533603a88
11 changed files with 147 additions and 149 deletions
+2 -2
View File
@@ -92,12 +92,12 @@ export function uiFieldCheck(field, context) {
checkImpliedYes();
selection.classed('checkselect', 'true');
label = selection.selectAll('.preset-input-wrap')
label = selection.selectAll('.form-field-input-wrap')
.data([0]);
var enter = label.enter()
.append('label')
.attr('class', 'preset-input-wrap');
.attr('class', 'form-field-input-wrap');
enter
.append('input')