@banyan_cloud/roots 1.0.342 → 1.0.344
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/cjs/index.js +28 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +28 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/index.js +28 -8
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -15635,7 +15635,8 @@ var Dates = function Dates(props) {
|
|
|
15635
15635
|
setSelectedRange = props.setSelectedRange,
|
|
15636
15636
|
disabledDates = props.disabledDates,
|
|
15637
15637
|
disableDatesBefore = props.disableDatesBefore,
|
|
15638
|
-
enableFutureDates = props.enableFutureDates
|
|
15638
|
+
enableFutureDates = props.enableFutureDates,
|
|
15639
|
+
disableDatesAfter = props.disableDatesAfter;
|
|
15639
15640
|
var _ref = selectedMonth || {},
|
|
15640
15641
|
monthAsNumber = _ref.monthAsNumber,
|
|
15641
15642
|
year = _ref.year;
|
|
@@ -15731,6 +15732,9 @@ var Dates = function Dates(props) {
|
|
|
15731
15732
|
return (disableDatesBefore === null || disableDatesBefore === void 0 ? void 0 : disableDatesBefore.length) > 0 && isBefore(date, fromUnixTime(disableDatesBefore));
|
|
15732
15733
|
};
|
|
15733
15734
|
var disabledAfterDate = function disabledAfterDate(date) {
|
|
15735
|
+
if (disableDatesAfter) {
|
|
15736
|
+
return (disableDatesAfter === null || disableDatesAfter === void 0 ? void 0 : disableDatesAfter.length) > 0 && isAfter(date, fromUnixTime(disableDatesAfter));
|
|
15737
|
+
}
|
|
15734
15738
|
var dObj = new Date();
|
|
15735
15739
|
dObj.setDate(dObj.getDate() + 1);
|
|
15736
15740
|
dObj.setHours(0, 0, 0, 0);
|
|
@@ -16192,6 +16196,7 @@ var Calender = function Calender(props) {
|
|
|
16192
16196
|
onClear = props.onClear,
|
|
16193
16197
|
disabledDates = props.disabledDates,
|
|
16194
16198
|
disableDatesBefore = props.disableDatesBefore,
|
|
16199
|
+
disableDatesAfter = props.disableDatesAfter,
|
|
16195
16200
|
value = props.value,
|
|
16196
16201
|
setFixedRange = props.setFixedRange,
|
|
16197
16202
|
fixedRange = props.fixedRange,
|
|
@@ -16397,6 +16402,7 @@ var Calender = function Calender(props) {
|
|
|
16397
16402
|
setSelectedMonth: setSelectedMonth,
|
|
16398
16403
|
disabledDates: disabledDates,
|
|
16399
16404
|
disableDatesBefore: disableDatesBefore,
|
|
16405
|
+
disableDatesAfter: disableDatesAfter,
|
|
16400
16406
|
enableFutureDates: enableFutureDates
|
|
16401
16407
|
})) : /*#__PURE__*/jsxRuntime.jsx(ClockView, _objectSpread2(_objectSpread2({}, commonCalenderProps), {}, {
|
|
16402
16408
|
setSelectedMonth: setSelectedMonth,
|
|
@@ -16551,6 +16557,7 @@ var DatePicker = function DatePicker(props) {
|
|
|
16551
16557
|
disabled = props.disabled,
|
|
16552
16558
|
className = props.className,
|
|
16553
16559
|
disableDatesBefore = props.disableDatesBefore,
|
|
16560
|
+
disableDatesAfter = props.disableDatesAfter,
|
|
16554
16561
|
_onClear = props.onClear,
|
|
16555
16562
|
customRanges = props.customRanges,
|
|
16556
16563
|
custom = props.custom,
|
|
@@ -16677,6 +16684,7 @@ var DatePicker = function DatePicker(props) {
|
|
|
16677
16684
|
},
|
|
16678
16685
|
disabledDates: disabledDates,
|
|
16679
16686
|
disableDatesBefore: disableDatesBefore,
|
|
16687
|
+
disableDatesAfter: disableDatesAfter,
|
|
16680
16688
|
value: value,
|
|
16681
16689
|
setFixedRange: setFixedRange,
|
|
16682
16690
|
customRanges: customRanges,
|
|
@@ -16816,7 +16824,8 @@ DatePicker.propTypes = {
|
|
|
16816
16824
|
type: propTypesExports.string
|
|
16817
16825
|
}),
|
|
16818
16826
|
className: propTypesExports.string,
|
|
16819
|
-
disableDatesBefore: propTypesExports.arrayOf(propTypesExports.
|
|
16827
|
+
disableDatesBefore: propTypesExports.arrayOf(propTypesExports.number),
|
|
16828
|
+
disableDatesAfter: propTypesExports.arrayOf(propTypesExports.number),
|
|
16820
16829
|
defaultRangeSelection: propTypesExports.arrayOf(propTypesExports.number),
|
|
16821
16830
|
customRanges: propTypesExports.arrayOf(propTypesExports.shape({
|
|
16822
16831
|
title: propTypesExports.string,
|
|
@@ -17881,8 +17890,8 @@ Tooltip.propTypes = {
|
|
|
17881
17890
|
className: propTypesExports.string
|
|
17882
17891
|
};
|
|
17883
17892
|
|
|
17884
|
-
var css$K = ".
|
|
17885
|
-
var modules_ef7e5a18 = {"root":"
|
|
17893
|
+
var css$K = ".Dropdownv2_module_root__ca7f2db7 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 0.5rem;\n position: relative;\n width: -moz-fit-content;\n width: fit-content;\n max-width: 100%;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_label__ca7f2db7 {\n font-size: 0.75rem;\n color: var(--text-color);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_label__ca7f2db7.Dropdownv2_module_required__ca7f2db7::after {\n content: \" *\";\n color: var(--primary-color1);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n max-width: 100%;\n border-radius: 0.25rem;\n position: relative;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7.Dropdownv2_module_highlightOnSelect__ca7f2db7 [data-elem=select] {\n background-color: var(--background-color5);\n color: var(--secondary-color2);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7.Dropdownv2_module_highlightOnSelect__ca7f2db7 [data-elem=select] * {\n color: var(--secondary-color2);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7.Dropdownv2_module_highlightOnSelect__ca7f2db7 [data-elem=select] .Dropdownv2_module_iconBundle__ca7f2db7 .Dropdownv2_module_caretIcon__ca7f2db7 {\n fill: var(--secondary-color2) !important;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7.Dropdownv2_module_highlightOnSelect__ca7f2db7 [data-elem=select] .Dropdownv2_module_iconBundle__ca7f2db7 .Dropdownv2_module_caretIconUpDown__ca7f2db7 {\n fill: transparent;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7.Dropdownv2_module_highlightOnSelect__ca7f2db7 [data-elem=select] .Dropdownv2_module_iconBundle__ca7f2db7 .Dropdownv2_module_caretIconUpDown__ca7f2db7 > path {\n stroke: var(--secondary-color2);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7.Dropdownv2_module_open__ca7f2db7 {\n outline: 1px solid var(--secondary-color2);\n transition: outline 100ms ease-in-out;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7.Dropdownv2_module_error__ca7f2db7 {\n border: 1px solid var(--primary-color1);\n border-radius: 0.3125rem;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_input__ca7f2db7 {\n position: absolute;\n opacity: 0;\n width: 1px;\n height: 1px;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_input__ca7f2db7:focus + .Dropdownv2_module_select__ca7f2db7 {\n border-color: var(--primary-color4);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_input__ca7f2db7:focus + .Dropdownv2_module_select__ca7f2db7.Dropdownv2_module_feedbackError__ca7f2db7 {\n border-color: var(--primary-color1);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n width: 25rem;\n max-width: 100%;\n gap: 0.5rem;\n outline: none;\n border-radius: 0.3125rem;\n padding: 0.75rem 0.75rem 0.75rem 1rem;\n background: var(--light-color3);\n cursor: pointer;\n font-weight: 500;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_placeholder__ca7f2db7 {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n color: var(--text-color);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_infoIcon__ca7f2db7 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_iconBundle__ca7f2db7 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n gap: 1rem;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_iconBundle__ca7f2db7 .Dropdownv2_module_caretIcon__ca7f2db7 {\n width: 1.5rem;\n height: 1.5rem;\n transition: transform 0.5s;\n fill: var(--text-color) !important;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n transform: rotate(180deg);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_iconBundle__ca7f2db7 .Dropdownv2_module_caretIcon__ca7f2db7.Dropdownv2_module_open__ca7f2db7 {\n transform: rotate(0deg);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_iconBundle__ca7f2db7 .Dropdownv2_module_caretIconUpDown__ca7f2db7 {\n width: 1.5rem;\n height: 1.5rem;\n transition: transform 0.5s;\n fill: transparent !important;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n transform: rotate(180deg);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_iconBundle__ca7f2db7 .Dropdownv2_module_caretIconUpDown__ca7f2db7 > path {\n stroke: var(--text-color);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_iconBundle__ca7f2db7 .Dropdownv2_module_caretIconUpDown__ca7f2db7.Dropdownv2_module_open__ca7f2db7 {\n transform: rotate(0deg);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_iconBundle__ca7f2db7 .Dropdownv2_module_infoIcon__ca7f2db7 path {\n stroke: var(--primary-color1);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_icon__ca7f2db7 {\n width: 1.5rem;\n height: 1.5rem;\n transition: transform 0.5s;\n fill: var(--text-color) !important;\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 .Dropdownv2_module_icon__ca7f2db7.Dropdownv2_module_open__ca7f2db7 {\n transform: rotate(180deg);\n}\n.Dropdownv2_module_root__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 .Dropdownv2_module_select__ca7f2db7.Dropdownv2_module_feedbackError__ca7f2db7 {\n border-color: var(--primary-color1);\n}\n.Dropdownv2_module_root__ca7f2db7.Dropdownv2_module_open__ca7f2db7 .Dropdownv2_module_header__ca7f2db7 {\n border-color: var(--primary-color4);\n}\n.Dropdownv2_module_root__ca7f2db7.Dropdownv2_module_disabled__ca7f2db7 .Dropdownv2_module_select__ca7f2db7 {\n background: var(--grey10);\n cursor: not-allowed;\n}\n\n.Dropdownv2_module_body__ca7f2db7 {\n display: none;\n position: absolute;\n top: calc(100% + 0.5rem);\n background: var(--light-color3);\n width: auto;\n border-radius: 0.3125rem;\n padding: 1.25rem 0rem 1.25rem 0rem;\n overflow-y: auto;\n -ms-overflow-style: none;\n scrollbar-width: none;\n min-height: 4rem;\n max-height: 25rem !important;\n outline: none;\n box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);\n}\n.Dropdownv2_module_body__ca7f2db7::-webkit-scrollbar {\n display: none;\n}\n.Dropdownv2_module_body__ca7f2db7.Dropdownv2_module_multi__ca7f2db7 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n.Dropdownv2_module_body__ca7f2db7.Dropdownv2_module_multi__ca7f2db7 li:nth-child(1) {\n padding-left: 1.875rem;\n}\n.Dropdownv2_module_body__ca7f2db7 .Dropdownv2_module_multiOptions__ca7f2db7 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n position: sticky;\n top: 0;\n background-color: var(--light-color3);\n padding-inline: 1.25rem;\n padding-block: 0.25rem;\n list-style: none;\n}\n.Dropdownv2_module_body__ca7f2db7 .Dropdownv2_module_multiOptions__ca7f2db7 button[data-elem=base-cell].Dropdownv2_module_button__ca7f2db7[type=button] {\n width: auto;\n padding: 0% !important;\n background-color: transparent;\n color: var(--secondary-color2);\n}\n.Dropdownv2_module_body__ca7f2db7 .Dropdownv2_module_multiOptions__ca7f2db7 button[data-elem=base-cell].Dropdownv2_module_button__ca7f2db7[type=button] > [data-elem=component2] {\n margin-left: 0.3125rem;\n}\n.Dropdownv2_module_body__ca7f2db7 .Dropdownv2_module_multiOptions__ca7f2db7 .Dropdownv2_module_items__ca7f2db7 {\n font-size: 0.875rem;\n font-weight: 500;\n color: var(--text-color);\n}\n.Dropdownv2_module_body__ca7f2db7 .Dropdownv2_module_footer__ca7f2db7 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n list-style: none;\n gap: 2.5rem;\n position: sticky;\n background-color: var(--light-color3);\n padding: 0rem 1rem 1rem;\n bottom: 0;\n}\n.Dropdownv2_module_body__ca7f2db7 .Dropdownv2_module_footer__ca7f2db7 button[data-elem=base-cell].Dropdownv2_module_multiApply__ca7f2db7[type=submit] {\n flex: 1;\n}\n.Dropdownv2_module_body__ca7f2db7 .Dropdownv2_module_footer__ca7f2db7 button[data-elem=base-cell].Dropdownv2_module_multiClear__ca7f2db7[type=submit] {\n background-color: var(--light-color2);\n color: var(--mono-color1);\n flex: 1;\n}\n.Dropdownv2_module_body__ca7f2db7 .Dropdownv2_module_footer__ca7f2db7 button[data-elem=base-cell].Dropdownv2_module_multiClear__ca7f2db7[type=submit]:hover {\n background-color: var(--light-color1);\n}\n.Dropdownv2_module_body__ca7f2db7.Dropdownv2_module_open__ca7f2db7 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n}";
|
|
17894
|
+
var modules_ef7e5a18 = {"root":"Dropdownv2_module_root__ca7f2db7","label":"Dropdownv2_module_label__ca7f2db7","required":"Dropdownv2_module_required__ca7f2db7","header":"Dropdownv2_module_header__ca7f2db7","highlightOnSelect":"Dropdownv2_module_highlightOnSelect__ca7f2db7","icon-bundle":"Dropdownv2_module_iconBundle__ca7f2db7","caret-icon":"Dropdownv2_module_caretIcon__ca7f2db7","caret-icon-upDown":"Dropdownv2_module_caretIconUpDown__ca7f2db7","open":"Dropdownv2_module_open__ca7f2db7","error":"Dropdownv2_module_error__ca7f2db7","input":"Dropdownv2_module_input__ca7f2db7","select":"Dropdownv2_module_select__ca7f2db7","feedback-error":"Dropdownv2_module_feedbackError__ca7f2db7","placeholder":"Dropdownv2_module_placeholder__ca7f2db7","info-icon":"Dropdownv2_module_infoIcon__ca7f2db7","icon":"Dropdownv2_module_icon__ca7f2db7","disabled":"Dropdownv2_module_disabled__ca7f2db7","body":"Dropdownv2_module_body__ca7f2db7","multi":"Dropdownv2_module_multi__ca7f2db7","multi-options":"Dropdownv2_module_multiOptions__ca7f2db7","button":"Dropdownv2_module_button__ca7f2db7","items":"Dropdownv2_module_items__ca7f2db7","footer":"Dropdownv2_module_footer__ca7f2db7","multi-apply":"Dropdownv2_module_multiApply__ca7f2db7","multi-clear":"Dropdownv2_module_multiClear__ca7f2db7"};
|
|
17886
17895
|
n(css$K,{});
|
|
17887
17896
|
|
|
17888
17897
|
var Dropdown = /*#__PURE__*/React.forwardRef(function Dropdown(props, inputRef) {
|
|
@@ -18311,7 +18320,7 @@ var Dropdown = /*#__PURE__*/React.forwardRef(function Dropdown(props, inputRef)
|
|
|
18311
18320
|
top: y !== null && y !== void 0 ? y : 0,
|
|
18312
18321
|
left: x !== null && x !== void 0 ? x : 0
|
|
18313
18322
|
},
|
|
18314
|
-
className: classes(modules_ef7e5a18.body,
|
|
18323
|
+
className: classes(modules_ef7e5a18.body, open ? modules_ef7e5a18.open : '', multi ? modules_ef7e5a18.multi : '', popperClassName)
|
|
18315
18324
|
})), {}, {
|
|
18316
18325
|
initial: {
|
|
18317
18326
|
opacity: 0,
|
|
@@ -23758,6 +23767,7 @@ var TableFilters = function TableFilters(props) {
|
|
|
23758
23767
|
CustomSearchIcon = props.customSearchIcon,
|
|
23759
23768
|
_props$onSearch = props.onSearch,
|
|
23760
23769
|
onSearch = _props$onSearch === void 0 ? function () {} : _props$onSearch,
|
|
23770
|
+
onClear = props.onClear,
|
|
23761
23771
|
_props$searchPlacehol = props.searchPlaceholder,
|
|
23762
23772
|
searchPlaceholder = _props$searchPlacehol === void 0 ? '' : _props$searchPlacehol,
|
|
23763
23773
|
_props$toggleDrawer = props.toggleDrawer,
|
|
@@ -23842,6 +23852,14 @@ var TableFilters = function TableFilters(props) {
|
|
|
23842
23852
|
})), /*#__PURE__*/jsxRuntime.jsx(Button, {
|
|
23843
23853
|
className: modules_a0fe63f9['search-button'],
|
|
23844
23854
|
leftComponent: function leftComponent() {
|
|
23855
|
+
if (onClear) {
|
|
23856
|
+
return /*#__PURE__*/jsxRuntime.jsx(Cross, {
|
|
23857
|
+
className: modules_a0fe63f9.icon,
|
|
23858
|
+
onClick: function onClick() {
|
|
23859
|
+
onSearch('');
|
|
23860
|
+
}
|
|
23861
|
+
});
|
|
23862
|
+
}
|
|
23845
23863
|
return /*#__PURE__*/jsxRuntime.jsx(SearchIcon, {
|
|
23846
23864
|
className: modules_a0fe63f9.icon,
|
|
23847
23865
|
onClick: function onClick() {
|
|
@@ -24017,7 +24035,8 @@ var Table = function Table(props) {
|
|
|
24017
24035
|
_searchProps$placehol = searchProps.placeholder,
|
|
24018
24036
|
searchPlaceholder = _searchProps$placehol === void 0 ? 'Search' : _searchProps$placehol,
|
|
24019
24037
|
_searchProps$disabled = searchProps.disabled,
|
|
24020
|
-
searchDisabled = _searchProps$disabled === void 0 ? false : _searchProps$disabled
|
|
24038
|
+
searchDisabled = _searchProps$disabled === void 0 ? false : _searchProps$disabled,
|
|
24039
|
+
onClear = searchProps.onClear;
|
|
24021
24040
|
var _tableInfo$tableTitle = tableInfo.tableTitleIcon,
|
|
24022
24041
|
tableTitleIcon = _tableInfo$tableTitle === void 0 ? null : _tableInfo$tableTitle,
|
|
24023
24042
|
_tableInfo$title = tableInfo.title,
|
|
@@ -24144,6 +24163,7 @@ var Table = function Table(props) {
|
|
|
24144
24163
|
tableDescriptionText: tableDescription,
|
|
24145
24164
|
customSearchIcon: customSearchIcon,
|
|
24146
24165
|
onSearch: onSearch,
|
|
24166
|
+
onClear: onClear,
|
|
24147
24167
|
searchDisabled: searchDisabled,
|
|
24148
24168
|
searchPlaceholder: searchPlaceholder,
|
|
24149
24169
|
toggleDrawer: toggleDrawer,
|
|
@@ -24687,7 +24707,7 @@ var modules_d563b0a9 = {"root":"BaseV2Widget_module_root__05b06aba","header":"Ba
|
|
|
24687
24707
|
n(css$5,{});
|
|
24688
24708
|
|
|
24689
24709
|
var generateOptions$1 = function generateOptions(_ref) {
|
|
24690
|
-
var _optionData$id, _optionData$placehold, _optionData$value, _optionData$onChange, _optionData$selectOpt, _optionData$title, _optionData$onClick, _optionData$placehold2, _optionData$range, _optionData$onApply, _optionData$onClear, _optionData$date;
|
|
24710
|
+
var _optionData$id, _optionData$placehold, _optionData$value, _optionData$onChange, _optionData$selectOpt, _optionData$title, _optionData$onClick, _optionData$placehold2, _optionData$range, _optionData$onApply, _optionData$onClear, _optionData$date, _optionData$title2;
|
|
24691
24711
|
var optionData = _ref.optionData,
|
|
24692
24712
|
toggleDrawer = _ref.toggleDrawer;
|
|
24693
24713
|
switch ((_optionData$id = optionData === null || optionData === void 0 ? void 0 : optionData.id) !== null && _optionData$id !== void 0 ? _optionData$id : '') {
|
|
@@ -24733,7 +24753,7 @@ var generateOptions$1 = function generateOptions(_ref) {
|
|
|
24733
24753
|
});
|
|
24734
24754
|
case 'filter':
|
|
24735
24755
|
return /*#__PURE__*/jsxRuntime.jsx(Button, {
|
|
24736
|
-
title:
|
|
24756
|
+
title: (_optionData$title2 = optionData === null || optionData === void 0 ? void 0 : optionData.title) !== null && _optionData$title2 !== void 0 ? _optionData$title2 : 'Filter',
|
|
24737
24757
|
variant: "outlined",
|
|
24738
24758
|
size: "auto",
|
|
24739
24759
|
className: modules_d563b0a9['filter-button'],
|