@banyan_cloud/roots 1.0.142 → 1.0.144
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 +27 -30
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +27 -30
- package/dist/esm/index.js.map +1 -1
- package/dist/index.js +27 -30
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -45016,7 +45016,8 @@ var DropdownItem = /*#__PURE__*/React.forwardRef(function DropdownItem(props, re
|
|
|
45016
45016
|
dataAttrs = props.dataAttrs,
|
|
45017
45017
|
className = props.className,
|
|
45018
45018
|
tabIndex = props.tabIndex,
|
|
45019
|
-
disabled = props.disabled
|
|
45019
|
+
disabled = props.disabled,
|
|
45020
|
+
customComponent = props.customComponent;
|
|
45020
45021
|
var action = null;
|
|
45021
45022
|
switch (variant) {
|
|
45022
45023
|
case 'checkbox':
|
|
@@ -45048,7 +45049,7 @@ var DropdownItem = /*#__PURE__*/React.forwardRef(function DropdownItem(props, re
|
|
|
45048
45049
|
role: "option",
|
|
45049
45050
|
"aria-selected": selected,
|
|
45050
45051
|
onKeyDown: onKeyDown,
|
|
45051
|
-
children: [action, /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
45052
|
+
children: [action, customComponent !== null && customComponent !== void 0 ? customComponent : /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
45052
45053
|
"data-elem": "title",
|
|
45053
45054
|
children: title
|
|
45054
45055
|
})]
|
|
@@ -45060,14 +45061,16 @@ DropdownItem.propTypes = {
|
|
|
45060
45061
|
variant: propTypesExports.oneOf(['default', 'checkbox', 'radio']),
|
|
45061
45062
|
selected: propTypesExports.bool,
|
|
45062
45063
|
// eslint-disable-next-line react/forbid-prop-types
|
|
45063
|
-
dataAttrs: propTypesExports.object
|
|
45064
|
+
dataAttrs: propTypesExports.object,
|
|
45065
|
+
customComponent: propTypesExports.node
|
|
45064
45066
|
};
|
|
45065
45067
|
DropdownItem.defaultProps = {
|
|
45066
45068
|
className: '',
|
|
45067
45069
|
title: '',
|
|
45068
45070
|
variant: 'default',
|
|
45069
45071
|
dataAttrs: {},
|
|
45070
|
-
selected: false
|
|
45072
|
+
selected: false,
|
|
45073
|
+
customComponent: null
|
|
45071
45074
|
};
|
|
45072
45075
|
|
|
45073
45076
|
var css$Q = ".Switch_module_root__c9616649 {\n cursor: pointer;\n gap: 0.625rem;\n position: relative;\n height: 1.5rem;\n}\n.Switch_module_root__c9616649.Switch_module_disabled__c9616649 {\n cursor: default;\n}\n.Switch_module_root__c9616649.Switch_module_positionLeft__c9616649 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n}\n.Switch_module_root__c9616649.Switch_module_positionRight__c9616649 {\n display: flex;\n flex-direction: row-reverse;\n justify-content: flex-end;\n align-items: center;\n}\n.Switch_module_root__c9616649 input[type=checkbox] {\n opacity: 0;\n z-index: 1;\n position: absolute;\n width: 1px;\n height: 1px;\n}\n.Switch_module_root__c9616649 .Switch_module_pill__c9616649 {\n position: relative;\n width: 3rem;\n height: 100%;\n cursor: pointer;\n background-color: var(--grey5);\n transition: 0.4s;\n border-radius: 0.75rem;\n}\n.Switch_module_root__c9616649 .Switch_module_pill__c9616649:before {\n position: absolute;\n content: \"\";\n height: 1.25rem;\n width: 1.25rem;\n left: 0.125rem;\n bottom: 0.125rem;\n background-color: white;\n transition: 0.4s;\n border-radius: 50%;\n}\n.Switch_module_root__c9616649 input:checked + .Switch_module_pill__c9616649 {\n background-color: var(--highlight);\n}\n.Switch_module_root__c9616649 input:checked + .Switch_module_pill__c9616649:before {\n transform: translateX(1.5rem);\n}\n.Switch_module_root__c9616649 input:focus + .Switch_module_pill__c9616649::before {\n box-shadow: 0px 0px 0px 8px rgba(15, 98, 254, 0.125);\n}\n.Switch_module_root__c9616649 [data-elem=label] {\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}";
|
|
@@ -46058,22 +46061,16 @@ var dateRanges$1 = function dateRanges() {
|
|
|
46058
46061
|
}];
|
|
46059
46062
|
};
|
|
46060
46063
|
|
|
46061
|
-
var getFloatingReferences = function getFloatingReferences(
|
|
46062
|
-
var open = _ref.open,
|
|
46063
|
-
onOpenChange = _ref.onOpenChange,
|
|
46064
|
-
anchor = _ref.anchor;
|
|
46064
|
+
var getFloatingReferences = function getFloatingReferences(open, onOpenChange) {
|
|
46065
46065
|
return {
|
|
46066
46066
|
open: open,
|
|
46067
|
-
elements: {
|
|
46068
|
-
reference: anchor
|
|
46069
|
-
},
|
|
46070
46067
|
onOpenChange: onOpenChange,
|
|
46071
46068
|
whileElementsMounted: autoUpdate,
|
|
46072
46069
|
middleware: [size({
|
|
46073
|
-
apply: function apply(
|
|
46074
|
-
var rects =
|
|
46075
|
-
availableHeight =
|
|
46076
|
-
elements =
|
|
46070
|
+
apply: function apply(_ref) {
|
|
46071
|
+
var rects = _ref.rects,
|
|
46072
|
+
availableHeight = _ref.availableHeight,
|
|
46073
|
+
elements = _ref.elements;
|
|
46077
46074
|
Object.assign(elements.floating.style, {
|
|
46078
46075
|
width: "".concat(rects.reference.width, "px"),
|
|
46079
46076
|
minWidth: 'fit-content',
|
|
@@ -46088,9 +46085,9 @@ var getFloatingReferences = function getFloatingReferences(_ref) {
|
|
|
46088
46085
|
})]
|
|
46089
46086
|
};
|
|
46090
46087
|
};
|
|
46091
|
-
var isMaxRangeExceeded = function isMaxRangeExceeded(
|
|
46092
|
-
var maxRange =
|
|
46093
|
-
selectedRange =
|
|
46088
|
+
var isMaxRangeExceeded = function isMaxRangeExceeded(_ref2) {
|
|
46089
|
+
var maxRange = _ref2.maxRange,
|
|
46090
|
+
selectedRange = _ref2.selectedRange;
|
|
46094
46091
|
if (maxRange === null) {
|
|
46095
46092
|
return false;
|
|
46096
46093
|
}
|
|
@@ -46125,10 +46122,10 @@ var getDateRangeTag = function getDateRangeTag() {
|
|
|
46125
46122
|
}
|
|
46126
46123
|
return 'day';
|
|
46127
46124
|
};
|
|
46128
|
-
var getDatePickerDisplayValue = function getDatePickerDisplayValue(
|
|
46129
|
-
var value =
|
|
46130
|
-
rangePicker =
|
|
46131
|
-
singlePicker =
|
|
46125
|
+
var getDatePickerDisplayValue = function getDatePickerDisplayValue(_ref3) {
|
|
46126
|
+
var value = _ref3.value,
|
|
46127
|
+
rangePicker = _ref3.rangePicker,
|
|
46128
|
+
singlePicker = _ref3.singlePicker;
|
|
46132
46129
|
if (rangePicker) {
|
|
46133
46130
|
var _startDate$getMonth$t, _endDate$getMonth$toS;
|
|
46134
46131
|
var startDate = fromUnixTime(value[0]);
|
|
@@ -46274,8 +46271,8 @@ var DatePicker = function DatePicker(props) {
|
|
|
46274
46271
|
rangePicker: range && (value === null || value === void 0 || (_value$filter = value.filter(Boolean)) === null || _value$filter === void 0 ? void 0 : _value$filter.length) > 0,
|
|
46275
46272
|
singlePicker: !range && value
|
|
46276
46273
|
});
|
|
46277
|
-
var datePickerFloatingReference = useFloating(getFloatingReferences(openDatePicker));
|
|
46278
|
-
var customRangeFloatingReference = useFloating(getFloatingReferences(openCustomRange));
|
|
46274
|
+
var datePickerFloatingReference = useFloating(getFloatingReferences(openDatePicker, setOpenDatePicker));
|
|
46275
|
+
var customRangeFloatingReference = useFloating(getFloatingReferences(openCustomRange, setOpenCustomRange));
|
|
46279
46276
|
useOutsideClickListener(datePickerFloatingReference.floating, function () {
|
|
46280
46277
|
return setOpenDatePicker(false);
|
|
46281
46278
|
});
|
|
@@ -46785,8 +46782,8 @@ BaseModal.defaultProps = {
|
|
|
46785
46782
|
noDismiss: false
|
|
46786
46783
|
};
|
|
46787
46784
|
|
|
46788
|
-
var css$D = ".
|
|
46789
|
-
var modules_ca1540aa = {"root":"
|
|
46785
|
+
var css$D = ".Dialog_module_root__b0f7da04 {\n padding: 0.25rem 0px;\n max-height: 14rem;\n background: var(--white);\n border-radius: 0.25rem;\n}\n.Dialog_module_root__b0f7da04.Dialog_module_sm__b0f7da04 {\n width: 21.25rem;\n}\n.Dialog_module_root__b0f7da04.Dialog_module_md__b0f7da04 {\n width: 35rem;\n}\n.Dialog_module_root__b0f7da04 .Dialog_module_header__b0f7da04 {\n font-weight: 600;\n font-size: 0.875rem;\n color: var(--black);\n}\n.Dialog_module_root__b0f7da04 .Dialog_module_footer__b0f7da04 {\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-items: center;\n gap: 1rem;\n}\n.Dialog_module_root__b0f7da04 .Dialog_module_footer__b0f7da04 .Dialog_module_cancel__b0f7da04[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: stretch;\n color: var(--grey1);\n border-radius: 0.25rem;\n border: 1px solid var(--grey4);\n}\n.Dialog_module_root__b0f7da04 .Dialog_module_description__b0f7da04 {\n padding: 0.5rem 0px;\n font-size: 0.75rem;\n}";
|
|
46786
|
+
var modules_ca1540aa = {"root":"Dialog_module_root__b0f7da04","sm":"Dialog_module_sm__b0f7da04","md":"Dialog_module_md__b0f7da04","header":"Dialog_module_header__b0f7da04","footer":"Dialog_module_footer__b0f7da04","cancel":"Dialog_module_cancel__b0f7da04","description":"Dialog_module_description__b0f7da04"};
|
|
46790
46787
|
n(css$D,{});
|
|
46791
46788
|
|
|
46792
46789
|
/* eslint-disable object-curly-newline */
|
|
@@ -46996,8 +46993,8 @@ function getPagination(curr, total, limit) {
|
|
|
46996
46993
|
return pages;
|
|
46997
46994
|
}
|
|
46998
46995
|
|
|
46999
|
-
var css$B = ".Pagination_module_root__2305e5f8 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: stretch;\n -ms-overflow-style: none;\n scrollbar-width: none;\n gap: 0.75rem;\n padding: 0.625rem 2.125rem;\n background: var(--dark-grey);\n margin-top: auto;\n width: 100%;\n height: 3.5rem;\n overflow: auto;\n transition-property: background-color, color, bottom, width;\n transition-duration: 0.33s;\n transition-timing-function: ease-out;\n}\n.Pagination_module_root__2305e5f8::-webkit-scrollbar {\n display: none;\n}\n.Pagination_module_root__2305e5f8.Pagination_module_floating__2305e5f8 {\n background: var(--dark-grey-o-85);\n position: absolute;\n border-radius: 6.25rem;\n width: 82%;\n bottom: 3rem;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8,\n.Pagination_module_root__2305e5f8 .Pagination_module_jumpToPage__2305e5f8,\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 {\n display: none;\n flex: 0 1 15%;\n background-color: transparent;\n padding: 0;\n height: 100%;\n}\n@media (min-width: 992px) {\n .Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n }\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 > [data-elem=component2] {\n flex: 0 1 auto;\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 .Pagination_module_rowSwitcherHandle__2305e5f8 {\n gap: 0.75rem;\n background-color: var(--grey);\n padding: 0;\n border-radius: 0.25rem;\n height: 100%;\n width: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 .Pagination_module_rowSwitcherHandle__2305e5f8 > [data-elem*=component] {\n overflow: hidden;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 .Pagination_module_rowSwitcherHandle__2305e5f8 > [data-elem=component2] {\n display: flex;\n flex: 0 0 auto;\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 .Pagination_module_rowSwitcherHandle__2305e5f8 > [data-elem=component2]::before {\n content: \"\";\n margin: auto;\n background: var(--white);\n width: 0.5px;\n height: 50%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 .Pagination_module_text__2305e5f8 {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n height: 100%;\n display: block;\n padding: 0.5rem;\n font-size: 0.875rem;\n font-weight: 500;\n color: var(--white);\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 .Pagination_module_dropdown__2305e5f8 {\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 .Pagination_module_dropdown__2305e5f8 > [data-elem=header] {\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 .Pagination_module_dropdown__2305e5f8 > [data-elem=header] > [data-elem=select] {\n height: 2.375rem;\n max-height: 100%;\n width: auto;\n min-width: -moz-fit-content;\n min-width: fit-content;\n padding: 0.625rem;\n background-color: var(--grey);\n border: none;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 .Pagination_module_dropdown__2305e5f8 > [data-elem=header] > [data-elem=select] > [data-elem=placeholder] {\n color: var(--white);\n font-size: 0.875rem;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 .Pagination_module_dropdown__2305e5f8 > [data-elem=header] > [data-elem=select] > svg {\n fill: var(--white);\n width: 0.813rem;\n height: 0.813rem;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 1.25rem;\n flex: 1 1 100%;\n}\n@media (min-width: 992px) {\n .Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 {\n flex: 1 1 40%;\n }\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 > .Pagination_module_button__2305e5f8.Pagination_module_disable__2305e5f8 {\n pointer-events: none;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 > .Pagination_module_button__2305e5f8 [data-elem=title] {\n color: var(--white);\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 > .Pagination_module_button__2305e5f8 .Pagination_module_icon__2305e5f8 {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--white);\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 > .Pagination_module_pageSelect__2305e5f8 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n gap: 0.625rem;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 > .Pagination_module_pageSelect__2305e5f8 .Pagination_module_number__2305e5f8 {\n cursor: pointer;\n border-radius: 50%;\n background-color: #e0e0e0;\n color: var(--black);\n width: 2.313rem;\n line-height: 2.313rem;\n text-align: center;\n font-size: 1rem;\n border: 1px solid transparent;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 > .Pagination_module_pageSelect__2305e5f8 .Pagination_module_number__2305e5f8:not([data-active=true]) {\n display: none;\n}\n@media (min-width: 768px) {\n .Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 > .Pagination_module_pageSelect__2305e5f8 .Pagination_module_number__2305e5f8:not([data-active=true]) {\n display: block;\n }\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 > .Pagination_module_pageSelect__2305e5f8 .Pagination_module_number__2305e5f8:hover {\n border: 1px solid var(--highlight);\n color: var(--highlight);\n background: var(--background);\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_pageNumbers__2305e5f8 > .Pagination_module_pageSelect__2305e5f8 .Pagination_module_number__2305e5f8.Pagination_module_active__2305e5f8 {\n background-color: var(--highlight);\n color: var(--white);\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 {\n display: none;\n padding: 0;\n flex: 0 1 30%;\n background: transparent;\n}\n@media (min-width: 992px) {\n .Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n }\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 > [data-elem*=component] {\n width: 100%;\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 > [data-elem*=component] > * {\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 > [data-elem*=component] > form {\n width: -moz-fit-content;\n width: fit-content;\n margin-left: auto;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 {\n width: 100%;\n background: transparent;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: stretch;\n gap: 0rem;\n padding: 0;\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 > [data-elem*=component] {\n overflow: hidden;\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 .Pagination_module_inputbox__2305e5f8 {\n max-width: 100%;\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 .Pagination_module_inputbox__2305e5f8 > label {\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 .Pagination_module_inputbox__2305e5f8 > label > [data-elem=base-cell] {\n border-radius: 0.313rem;\n background-color: transparent;\n color: var(--white);\n border-color: var(--grey1);\n border-radius: 0.25rem 0 0 0.25rem;\n height: 100%;\n width: 10rem;\n flex: 1;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 .Pagination_module_inputbox__2305e5f8 > label > [data-elem=base-cell] .Pagination_module_icon__2305e5f8 {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--grey1);\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 .Pagination_module_inputbox__2305e5f8 > label > [data-elem=base-cell] > [data-elem=component2] {\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 .Pagination_module_inputbox__2305e5f8 > label > [data-elem=base-cell] [data-elem=input] {\n text-align: center;\n color: var(--white);\n background-color: transparent;\n border: none;\n height: 100%;\n width: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 .Pagination_module_button__2305e5f8 {\n border-radius: 0rem 0.25rem 0.25rem 0rem;\n background-color: var(--grey1);\n padding: 0.75rem 0.5rem;\n height: 100%;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_form__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 .Pagination_module_button__2305e5f8 .Pagination_module_icon__2305e5f8 {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--white);\n flex-shrink: 0;\n}\n.Pagination_module_root__2305e5f8 .Pagination_module_totalData__2305e5f8 {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n display: none;\n margin: auto;\n color: var(--white);\n flex: 0 1 15%;\n}\n@media (min-width: 992px) {\n .Pagination_module_root__2305e5f8 .Pagination_module_totalData__2305e5f8 {\n display: inline;\n }\n}\n.Pagination_module_root__2305e5f8.Pagination_module_noTotalData__2305e5f8 .Pagination_module_rowSwitcher__2305e5f8 {\n flex: 0 1 20%;\n}\n.Pagination_module_root__2305e5f8.Pagination_module_noTotalData__2305e5f8 .Pagination_module_jumpToPage__2305e5f8 {\n flex: 1 1 60%;\n}\n.Pagination_module_root__2305e5f8.Pagination_module_noTotalData__2305e5f8 .Pagination_module_form__2305e5f8 {\n flex: 0 1 20%;\n}";
|
|
47000
|
-
var modules_a3d40e77 = {"root":"
|
|
46996
|
+
var css$B = ".Pagination_module_root__99afd7d1 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: stretch;\n -ms-overflow-style: none;\n scrollbar-width: none;\n gap: 0.75rem;\n padding: 0.625rem 2.125rem;\n background: var(--dark-grey);\n margin-top: auto;\n width: 100%;\n height: 3.5rem;\n overflow: auto;\n transition-property: background-color, color, bottom, width;\n transition-duration: 0.33s;\n transition-timing-function: ease-out;\n}\n.Pagination_module_root__99afd7d1::-webkit-scrollbar {\n display: none;\n}\n.Pagination_module_root__99afd7d1.Pagination_module_floating__99afd7d1 {\n background: var(--dark-grey-o-85);\n position: absolute;\n border-radius: 6.25rem;\n width: 82%;\n bottom: 3rem;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1,\n.Pagination_module_root__99afd7d1 .Pagination_module_jumpToPage__99afd7d1,\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 {\n display: none;\n flex: 0 1 15%;\n background-color: transparent;\n padding: 0;\n height: 100%;\n}\n@media (min-width: 992px) {\n .Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n }\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 > [data-elem=component2] {\n flex: 0 1 auto;\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 .Pagination_module_rowSwitcherHandle__99afd7d1 {\n gap: 0.75rem;\n background-color: var(--grey);\n padding: 0;\n border-radius: 0.25rem;\n height: 100%;\n width: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 .Pagination_module_rowSwitcherHandle__99afd7d1 > [data-elem*=component] {\n overflow: hidden;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 .Pagination_module_rowSwitcherHandle__99afd7d1 > [data-elem=component2] {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: stretch;\n flex: 0 0 auto;\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 .Pagination_module_rowSwitcherHandle__99afd7d1 > [data-elem=component2]::before {\n content: \"\";\n margin: auto;\n background: var(--white);\n width: 0.5px;\n height: 50%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 .Pagination_module_text__99afd7d1 {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n height: 100%;\n display: block;\n padding: 0.5rem;\n font-size: 0.875rem;\n font-weight: 500;\n color: var(--white);\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 .Pagination_module_dropdown__99afd7d1 {\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 .Pagination_module_dropdown__99afd7d1 > [data-elem=header] {\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 .Pagination_module_dropdown__99afd7d1 > [data-elem=header] > [data-elem=select] {\n height: 2.375rem;\n max-height: 100%;\n width: auto;\n min-width: -moz-fit-content;\n min-width: fit-content;\n padding: 0.625rem;\n background-color: var(--grey);\n border: none;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 .Pagination_module_dropdown__99afd7d1 > [data-elem=header] > [data-elem=select] > [data-elem=placeholder] {\n color: var(--white);\n font-size: 0.875rem;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 .Pagination_module_dropdown__99afd7d1 > [data-elem=header] > [data-elem=select] > svg {\n fill: var(--white);\n width: 0.813rem;\n height: 0.813rem;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 1.25rem;\n flex: 1 1 100%;\n}\n@media (min-width: 992px) {\n .Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 {\n flex: 1 1 40%;\n }\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 > .Pagination_module_button__99afd7d1.Pagination_module_disable__99afd7d1 {\n pointer-events: none;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 > .Pagination_module_button__99afd7d1 [data-elem=title] {\n color: var(--white);\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 > .Pagination_module_button__99afd7d1 .Pagination_module_icon__99afd7d1 {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--white);\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 > .Pagination_module_pageSelect__99afd7d1 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n gap: 0.625rem;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 > .Pagination_module_pageSelect__99afd7d1 .Pagination_module_number__99afd7d1 {\n cursor: pointer;\n border-radius: 50%;\n background-color: #e0e0e0;\n color: var(--black);\n width: 2.313rem;\n line-height: 2.313rem;\n text-align: center;\n font-size: 1rem;\n border: 1px solid transparent;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 > .Pagination_module_pageSelect__99afd7d1 .Pagination_module_number__99afd7d1:not([data-active=true]) {\n display: none;\n}\n@media (min-width: 768px) {\n .Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 > .Pagination_module_pageSelect__99afd7d1 .Pagination_module_number__99afd7d1:not([data-active=true]) {\n display: block;\n }\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 > .Pagination_module_pageSelect__99afd7d1 .Pagination_module_number__99afd7d1:hover {\n border: 1px solid var(--highlight);\n color: var(--highlight);\n background: var(--background);\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_pageNumbers__99afd7d1 > .Pagination_module_pageSelect__99afd7d1 .Pagination_module_number__99afd7d1.Pagination_module_active__99afd7d1 {\n background-color: var(--highlight);\n color: var(--white);\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 {\n display: none;\n padding: 0;\n flex: 0 1 30%;\n background: transparent;\n}\n@media (min-width: 992px) {\n .Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n }\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 > [data-elem*=component] {\n width: 100%;\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 > [data-elem*=component] > * {\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 > [data-elem*=component] > form {\n width: -moz-fit-content;\n width: fit-content;\n margin-left: auto;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 {\n width: 100%;\n background: transparent;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: stretch;\n gap: 0rem;\n padding: 0;\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 > [data-elem*=component] {\n overflow: hidden;\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 .Pagination_module_inputbox__99afd7d1 {\n max-width: 100%;\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 .Pagination_module_inputbox__99afd7d1 > label {\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 .Pagination_module_inputbox__99afd7d1 > label > [data-elem=base-cell] {\n border-radius: 0.313rem;\n background-color: transparent;\n color: var(--white);\n border-color: var(--grey1);\n border-radius: 0.25rem 0 0 0.25rem;\n height: 100%;\n width: 10rem;\n flex: 1;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 .Pagination_module_inputbox__99afd7d1 > label > [data-elem=base-cell] .Pagination_module_icon__99afd7d1 {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--grey1);\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 .Pagination_module_inputbox__99afd7d1 > label > [data-elem=base-cell] > [data-elem=component2] {\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 .Pagination_module_inputbox__99afd7d1 > label > [data-elem=base-cell] [data-elem=input] {\n text-align: center;\n color: var(--white);\n background-color: transparent;\n border: none;\n height: 100%;\n width: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 .Pagination_module_button__99afd7d1 {\n border-radius: 0rem 0.25rem 0.25rem 0rem;\n background-color: var(--grey1);\n padding: 0.75rem 0.5rem;\n height: 100%;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_form__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 .Pagination_module_button__99afd7d1 .Pagination_module_icon__99afd7d1 {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--white);\n flex-shrink: 0;\n}\n.Pagination_module_root__99afd7d1 .Pagination_module_totalData__99afd7d1 {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n display: none;\n margin: auto;\n color: var(--white);\n flex: 0 1 15%;\n}\n@media (min-width: 992px) {\n .Pagination_module_root__99afd7d1 .Pagination_module_totalData__99afd7d1 {\n display: inline;\n }\n}\n.Pagination_module_root__99afd7d1.Pagination_module_noTotalData__99afd7d1 .Pagination_module_rowSwitcher__99afd7d1 {\n flex: 0 1 20%;\n}\n.Pagination_module_root__99afd7d1.Pagination_module_noTotalData__99afd7d1 .Pagination_module_jumpToPage__99afd7d1 {\n flex: 1 1 60%;\n}\n.Pagination_module_root__99afd7d1.Pagination_module_noTotalData__99afd7d1 .Pagination_module_form__99afd7d1 {\n flex: 0 1 20%;\n}";
|
|
46997
|
+
var modules_a3d40e77 = {"root":"Pagination_module_root__99afd7d1","floating":"Pagination_module_floating__99afd7d1","row-switcher":"Pagination_module_rowSwitcher__99afd7d1","jump-to-page":"Pagination_module_jumpToPage__99afd7d1","form":"Pagination_module_form__99afd7d1","row-switcher-handle":"Pagination_module_rowSwitcherHandle__99afd7d1","text":"Pagination_module_text__99afd7d1","dropdown":"Pagination_module_dropdown__99afd7d1","page-numbers":"Pagination_module_pageNumbers__99afd7d1","button":"Pagination_module_button__99afd7d1","disable":"Pagination_module_disable__99afd7d1","icon":"Pagination_module_icon__99afd7d1","pageSelect":"Pagination_module_pageSelect__99afd7d1","number":"Pagination_module_number__99afd7d1","active":"Pagination_module_active__99afd7d1","inputbox":"Pagination_module_inputbox__99afd7d1","total-data":"Pagination_module_totalData__99afd7d1","no-total-data":"Pagination_module_noTotalData__99afd7d1"};
|
|
47001
46998
|
n(css$B,{});
|
|
47002
46999
|
|
|
47003
47000
|
var dropdownOptions = ['10', '25', '50', '100', '200', '250'];
|
|
@@ -49229,8 +49226,8 @@ Tabs.defaultProps = {
|
|
|
49229
49226
|
theme: 'light'
|
|
49230
49227
|
};
|
|
49231
49228
|
|
|
49232
|
-
var css$h = ".
|
|
49233
|
-
var modules_c7321921 = {"root":"
|
|
49229
|
+
var css$h = ".BaseSidePanel_module_root__6bcd651e {\n max-height: 100%;\n height: 100%;\n width: 30%;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n top: 0;\n background: var(--white);\n box-shadow: 0px 8px 20px rgba(24, 24, 24, 0.08);\n overflow-x: hidden;\n}\n.BaseSidePanel_module_root__6bcd651e.BaseSidePanel_module_close__6bcd651e {\n width: 0rem;\n}\n.BaseSidePanel_module_root__6bcd651e .BaseSidePanel_module_body__6bcd651e {\n flex: 1;\n overflow-y: auto;\n}";
|
|
49230
|
+
var modules_c7321921 = {"root":"BaseSidePanel_module_root__6bcd651e","close":"BaseSidePanel_module_close__6bcd651e","body":"BaseSidePanel_module_body__6bcd651e"};
|
|
49234
49231
|
n(css$h,{});
|
|
49235
49232
|
|
|
49236
49233
|
var BaseSidePanel = function BaseSidePanel(props) {
|