@schukai/monster 3.66.0 → 3.68.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +24 -7
- package/package.json +1 -1
- package/source/components/datatable/filter.mjs +16 -1
- package/source/components/form/field-set.mjs +274 -204
- package/source/components/form/style/field-set.pcss +9 -2
- package/source/components/form/style/toggle-switch.pcss +2 -8
- package/source/components/form/stylesheet/field-set.mjs +8 -17
- package/source/components/form/stylesheet/toggle-switch.mjs +8 -17
- package/source/components/form/toggle-switch.mjs +330 -321
- package/source/components/host/toggle-button.mjs +1 -3
- package/test/cases/components/form/toggle-switch.mjs +2 -0
@@ -78,11 +78,9 @@ class ToggleButton extends CallButton {
|
|
78
78
|
* @property {string} templates.main Main template
|
79
79
|
*/
|
80
80
|
get defaults() {
|
81
|
-
|
81
|
+
return Object.assign({}, super.defaults, {
|
82
82
|
call: "toggle",
|
83
83
|
});
|
84
|
-
|
85
|
-
return obj;
|
86
84
|
}
|
87
85
|
|
88
86
|
/**
|
@@ -91,6 +91,8 @@ describe('ToggleSwitch', function () {
|
|
91
91
|
it('toggle to on', function () {
|
92
92
|
|
93
93
|
const toggleSwitch = document.createElement('monster-toggle-switch');
|
94
|
+
toggleSwitch.setOption('actions.on', 'true');
|
95
|
+
toggleSwitch.setOption('actions.off', 'false');
|
94
96
|
|
95
97
|
expect(toggleSwitch.value).is.equal('off');
|
96
98
|
expect(toggleSwitch.state).is.equal('off');
|