indicator-ui 0.0.231 → 0.0.232
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 +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16388,7 +16388,8 @@ function CascadeBlock(_ref) {
|
|
|
16388
16388
|
removeValues: removeValues,
|
|
16389
16389
|
label: item.label,
|
|
16390
16390
|
supportingText: item.supportingText,
|
|
16391
|
-
options: item.options
|
|
16391
|
+
options: item.options,
|
|
16392
|
+
defaultAllHidden: defaultAllHidden
|
|
16392
16393
|
}, idx);
|
|
16393
16394
|
} else if ('value' in item) {
|
|
16394
16395
|
return (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_ui__WEBPACK_IMPORTED_MODULE_3__.Checkbox, {
|
|
@@ -16484,7 +16485,8 @@ function CascadeSelector(_ref) {
|
|
|
16484
16485
|
onChange = _ref.onChange,
|
|
16485
16486
|
_ref$multiple = _ref.multiple,
|
|
16486
16487
|
multiple = _ref$multiple === void 0 ? true : _ref$multiple,
|
|
16487
|
-
defaultAllHidden = _ref.defaultAllHidden,
|
|
16488
|
+
_ref$defaultAllHidden = _ref.defaultAllHidden,
|
|
16489
|
+
defaultAllHidden = _ref$defaultAllHidden === void 0 ? false : _ref$defaultAllHidden,
|
|
16488
16490
|
maxChosenOptions = _ref.maxChosenOptions;
|
|
16489
16491
|
var getValue = function getValue() {
|
|
16490
16492
|
if (Array.isArray(value)) {
|