indicator-ui 0.1.63 → 0.1.65
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.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/src/hooks/forms/lib/fieldsProps.d.ts +1 -1
- package/dist/types/src/hooks/forms/types/formTypes.d.ts +1 -1
- package/dist/types/src/hooks/forms/types/scheme.d.ts +4 -3
- package/dist/types/src/hooks/forms/useForm.d.ts +3 -2
- package/dist/types/src/types/mixins.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -76111,7 +76111,7 @@ function FormSwitcherField(props) {
|
|
|
76111
76111
|
onChange === null || onChange === void 0 || onChange(!value);
|
|
76112
76112
|
};
|
|
76113
76113
|
return (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_ui__WEBPACK_IMPORTED_MODULE_1__.Toggle, _objectSpread({
|
|
76114
|
-
active: value,
|
|
76114
|
+
active: !!value,
|
|
76115
76115
|
onClick: handleChange,
|
|
76116
76116
|
disabled: disabled
|
|
76117
76117
|
}, otherProps));
|