@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/esm/index.js
CHANGED
|
@@ -44996,7 +44996,8 @@ var DropdownItem = /*#__PURE__*/forwardRef(function DropdownItem(props, ref) {
|
|
|
44996
44996
|
dataAttrs = props.dataAttrs,
|
|
44997
44997
|
className = props.className,
|
|
44998
44998
|
tabIndex = props.tabIndex,
|
|
44999
|
-
disabled = props.disabled
|
|
44999
|
+
disabled = props.disabled,
|
|
45000
|
+
customComponent = props.customComponent;
|
|
45000
45001
|
var action = null;
|
|
45001
45002
|
switch (variant) {
|
|
45002
45003
|
case 'checkbox':
|
|
@@ -45028,7 +45029,7 @@ var DropdownItem = /*#__PURE__*/forwardRef(function DropdownItem(props, ref) {
|
|
|
45028
45029
|
role: "option",
|
|
45029
45030
|
"aria-selected": selected,
|
|
45030
45031
|
onKeyDown: onKeyDown,
|
|
45031
|
-
children: [action, /*#__PURE__*/jsx("span", {
|
|
45032
|
+
children: [action, customComponent !== null && customComponent !== void 0 ? customComponent : /*#__PURE__*/jsx("span", {
|
|
45032
45033
|
"data-elem": "title",
|
|
45033
45034
|
children: title
|
|
45034
45035
|
})]
|
|
@@ -45040,14 +45041,16 @@ DropdownItem.propTypes = {
|
|
|
45040
45041
|
variant: propTypesExports.oneOf(['default', 'checkbox', 'radio']),
|
|
45041
45042
|
selected: propTypesExports.bool,
|
|
45042
45043
|
// eslint-disable-next-line react/forbid-prop-types
|
|
45043
|
-
dataAttrs: propTypesExports.object
|
|
45044
|
+
dataAttrs: propTypesExports.object,
|
|
45045
|
+
customComponent: propTypesExports.node
|
|
45044
45046
|
};
|
|
45045
45047
|
DropdownItem.defaultProps = {
|
|
45046
45048
|
className: '',
|
|
45047
45049
|
title: '',
|
|
45048
45050
|
variant: 'default',
|
|
45049
45051
|
dataAttrs: {},
|
|
45050
|
-
selected: false
|
|
45052
|
+
selected: false,
|
|
45053
|
+
customComponent: null
|
|
45051
45054
|
};
|
|
45052
45055
|
|
|
45053
45056
|
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}";
|
|
@@ -46038,22 +46041,16 @@ var dateRanges$1 = function dateRanges() {
|
|
|
46038
46041
|
}];
|
|
46039
46042
|
};
|
|
46040
46043
|
|
|
46041
|
-
var getFloatingReferences = function getFloatingReferences(
|
|
46042
|
-
var open = _ref.open,
|
|
46043
|
-
onOpenChange = _ref.onOpenChange,
|
|
46044
|
-
anchor = _ref.anchor;
|
|
46044
|
+
var getFloatingReferences = function getFloatingReferences(open, onOpenChange) {
|
|
46045
46045
|
return {
|
|
46046
46046
|
open: open,
|
|
46047
|
-
elements: {
|
|
46048
|
-
reference: anchor
|
|
46049
|
-
},
|
|
46050
46047
|
onOpenChange: onOpenChange,
|
|
46051
46048
|
whileElementsMounted: autoUpdate,
|
|
46052
46049
|
middleware: [size({
|
|
46053
|
-
apply: function apply(
|
|
46054
|
-
var rects =
|
|
46055
|
-
availableHeight =
|
|
46056
|
-
elements =
|
|
46050
|
+
apply: function apply(_ref) {
|
|
46051
|
+
var rects = _ref.rects,
|
|
46052
|
+
availableHeight = _ref.availableHeight,
|
|
46053
|
+
elements = _ref.elements;
|
|
46057
46054
|
Object.assign(elements.floating.style, {
|
|
46058
46055
|
width: "".concat(rects.reference.width, "px"),
|
|
46059
46056
|
minWidth: 'fit-content',
|
|
@@ -46068,9 +46065,9 @@ var getFloatingReferences = function getFloatingReferences(_ref) {
|
|
|
46068
46065
|
})]
|
|
46069
46066
|
};
|
|
46070
46067
|
};
|
|
46071
|
-
var isMaxRangeExceeded = function isMaxRangeExceeded(
|
|
46072
|
-
var maxRange =
|
|
46073
|
-
selectedRange =
|
|
46068
|
+
var isMaxRangeExceeded = function isMaxRangeExceeded(_ref2) {
|
|
46069
|
+
var maxRange = _ref2.maxRange,
|
|
46070
|
+
selectedRange = _ref2.selectedRange;
|
|
46074
46071
|
if (maxRange === null) {
|
|
46075
46072
|
return false;
|
|
46076
46073
|
}
|
|
@@ -46105,10 +46102,10 @@ var getDateRangeTag = function getDateRangeTag() {
|
|
|
46105
46102
|
}
|
|
46106
46103
|
return 'day';
|
|
46107
46104
|
};
|
|
46108
|
-
var getDatePickerDisplayValue = function getDatePickerDisplayValue(
|
|
46109
|
-
var value =
|
|
46110
|
-
rangePicker =
|
|
46111
|
-
singlePicker =
|
|
46105
|
+
var getDatePickerDisplayValue = function getDatePickerDisplayValue(_ref3) {
|
|
46106
|
+
var value = _ref3.value,
|
|
46107
|
+
rangePicker = _ref3.rangePicker,
|
|
46108
|
+
singlePicker = _ref3.singlePicker;
|
|
46112
46109
|
if (rangePicker) {
|
|
46113
46110
|
var _startDate$getMonth$t, _endDate$getMonth$toS;
|
|
46114
46111
|
var startDate = fromUnixTime(value[0]);
|
|
@@ -46254,8 +46251,8 @@ var DatePicker = function DatePicker(props) {
|
|
|
46254
46251
|
rangePicker: range && (value === null || value === void 0 || (_value$filter = value.filter(Boolean)) === null || _value$filter === void 0 ? void 0 : _value$filter.length) > 0,
|
|
46255
46252
|
singlePicker: !range && value
|
|
46256
46253
|
});
|
|
46257
|
-
var datePickerFloatingReference = useFloating(getFloatingReferences(openDatePicker));
|
|
46258
|
-
var customRangeFloatingReference = useFloating(getFloatingReferences(openCustomRange));
|
|
46254
|
+
var datePickerFloatingReference = useFloating(getFloatingReferences(openDatePicker, setOpenDatePicker));
|
|
46255
|
+
var customRangeFloatingReference = useFloating(getFloatingReferences(openCustomRange, setOpenCustomRange));
|
|
46259
46256
|
useOutsideClickListener(datePickerFloatingReference.floating, function () {
|
|
46260
46257
|
return setOpenDatePicker(false);
|
|
46261
46258
|
});
|
|
@@ -46765,8 +46762,8 @@ BaseModal.defaultProps = {
|
|
|
46765
46762
|
noDismiss: false
|
|
46766
46763
|
};
|
|
46767
46764
|
|
|
46768
|
-
var css$D = ".
|
|
46769
|
-
var modules_ca1540aa = {"root":"
|
|
46765
|
+
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}";
|
|
46766
|
+
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"};
|
|
46770
46767
|
n(css$D,{});
|
|
46771
46768
|
|
|
46772
46769
|
/* eslint-disable object-curly-newline */
|
|
@@ -46976,8 +46973,8 @@ function getPagination(curr, total, limit) {
|
|
|
46976
46973
|
return pages;
|
|
46977
46974
|
}
|
|
46978
46975
|
|
|
46979
|
-
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}";
|
|
46980
|
-
var modules_a3d40e77 = {"root":"
|
|
46976
|
+
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}";
|
|
46977
|
+
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"};
|
|
46981
46978
|
n(css$B,{});
|
|
46982
46979
|
|
|
46983
46980
|
var dropdownOptions = ['10', '25', '50', '100', '200', '250'];
|
|
@@ -49209,8 +49206,8 @@ Tabs.defaultProps = {
|
|
|
49209
49206
|
theme: 'light'
|
|
49210
49207
|
};
|
|
49211
49208
|
|
|
49212
|
-
var css$h = ".
|
|
49213
|
-
var modules_c7321921 = {"root":"
|
|
49209
|
+
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}";
|
|
49210
|
+
var modules_c7321921 = {"root":"BaseSidePanel_module_root__6bcd651e","close":"BaseSidePanel_module_close__6bcd651e","body":"BaseSidePanel_module_body__6bcd651e"};
|
|
49214
49211
|
n(css$h,{});
|
|
49215
49212
|
|
|
49216
49213
|
var BaseSidePanel = function BaseSidePanel(props) {
|