jqwidgets-ng 15.0.2 → 15.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
/*
|
|
2
|
-
jQWidgets v15.0.0 (2022-Nov)
|
|
3
|
-
Copyright (c) 2011-2022 jQWidgets.
|
|
4
|
-
License: https://jqwidgets.com/license/
|
|
5
|
-
*/
|
|
6
|
-
/* eslint-disable */
|
|
7
|
-
|
|
8
1
|
/* tslint:disable */
|
|
9
2
|
/* eslint-disable */
|
|
10
3
|
(function ($) {
|
|
@@ -223,7 +216,7 @@ License: https://jqwidgets.com/license/
|
|
|
223
216
|
label = that.escapeHTML(label);
|
|
224
217
|
}
|
|
225
218
|
var disabledClass = item.enabled === false ? 'jqx-fill-state-disabled' : '';
|
|
226
|
-
var htmlItem = '<div value=' + item.value + 'class="jqx-checkbox-group-item ' + cssClass + ' ' + disabledClass + '"><label class="jqx-checkbox-label"> ' + label + '</label><span checkmark class="jqx-checkbox-group-item-check"></span></div>';
|
|
219
|
+
var htmlItem = '<div value="' + item.value + '" class="jqx-checkbox-group-item ' + cssClass + ' ' + disabledClass + '"><label class="jqx-checkbox-label"> ' + label + '</label><span checkmark class="jqx-checkbox-group-item-check"></span></div>';
|
|
227
220
|
items += htmlItem;
|
|
228
221
|
}
|
|
229
222
|
|
|
@@ -390,7 +383,3 @@ License: https://jqwidgets.com/license/
|
|
|
390
383
|
}
|
|
391
384
|
});
|
|
392
385
|
})(jqxBaseFramework);
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
/*
|
|
2
|
-
jQWidgets v15.0.0 (2022-Nov)
|
|
3
|
-
Copyright (c) 2011-2022 jQWidgets.
|
|
4
|
-
License: https://jqwidgets.com/license/
|
|
5
|
-
*/
|
|
6
|
-
/* eslint-disable */
|
|
7
|
-
|
|
8
1
|
/* tslint:disable */
|
|
9
2
|
/* eslint-disable */
|
|
10
3
|
(function ($) {
|
|
@@ -211,7 +204,7 @@ License: https://jqwidgets.com/license/
|
|
|
211
204
|
label = that.escapeHTML(label);
|
|
212
205
|
}
|
|
213
206
|
var disabledClass = item.enabled === false ? 'jqx-fill-state-disabled' : '';
|
|
214
|
-
var htmlItem = '<div value=' + item.value + 'class="jqx-checkbox-group-item ' + cssClass + ' ' + disabledClass + '"><label class="jqx-checkbox-label"> ' + label + '</label><span checkmark class="jqx-checkbox-group-item-check"></span></div>';
|
|
207
|
+
var htmlItem = '<div value="' + item.value + '" class="jqx-checkbox-group-item ' + cssClass + ' ' + disabledClass + '"><label class="jqx-checkbox-label"> ' + label + '</label><span checkmark class="jqx-checkbox-group-item-check"></span></div>';
|
|
215
208
|
items += htmlItem;
|
|
216
209
|
}
|
|
217
210
|
|
|
@@ -378,7 +371,3 @@ License: https://jqwidgets.com/license/
|
|
|
378
371
|
}
|
|
379
372
|
});
|
|
380
373
|
})(jqxBaseFramework);
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|