@thecb/components 9.2.4-beta.10 → 9.2.4-beta.11
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.cjs.js
CHANGED
|
@@ -23992,11 +23992,11 @@ var Dropdown = function Dropdown(_ref13) {
|
|
|
23992
23992
|
clearTimeout(timer);
|
|
23993
23993
|
setTimer(setTimeout(function () {
|
|
23994
23994
|
return setInputValue("");
|
|
23995
|
-
},
|
|
23995
|
+
}, 20000));
|
|
23996
23996
|
}
|
|
23997
23997
|
|
|
23998
23998
|
setFilteredOptions(options.filter(function (option) {
|
|
23999
|
-
return option.value.toLowerCase().
|
|
23999
|
+
return option.value.toLowerCase().match(inputValue.toLowerCase()) || option.text.toLowerCase().match(inputValue.toLowerCase());
|
|
24000
24000
|
}));
|
|
24001
24001
|
}, [inputValue]);
|
|
24002
24002
|
React.useEffect(function () {
|
|
@@ -48706,7 +48706,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48706
48706
|
role: "radio",
|
|
48707
48707
|
"aria-checked": openSection === section.id,
|
|
48708
48708
|
"aria-disabled": section.disabled,
|
|
48709
|
-
"aria-required":
|
|
48709
|
+
"aria-required": section === null || section === void 0 ? void 0 : section.required
|
|
48710
48710
|
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
48711
48711
|
childGap: "0"
|
|
48712
48712
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
@@ -48745,7 +48745,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48745
48745
|
return toggleOpenSection(section.id);
|
|
48746
48746
|
},
|
|
48747
48747
|
tabIndex: "-1",
|
|
48748
|
-
isRequired:
|
|
48748
|
+
isRequired: section === null || section === void 0 ? void 0 : section.required
|
|
48749
48749
|
})), section.titleIcon && /*#__PURE__*/React__default.createElement(Cluster, {
|
|
48750
48750
|
align: "center"
|
|
48751
48751
|
}, section.titleIcon), /*#__PURE__*/React__default.createElement(Box, {
|