@digital-ai/dot-components 3.5.1 → 3.5.2
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/index.esm.js +23 -18
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -11307,28 +11307,32 @@ const StyledTablePaginationCustomActions = styled.div`
|
|
|
11307
11307
|
}
|
|
11308
11308
|
}
|
|
11309
11309
|
|
|
11310
|
-
.page-selection {
|
|
11311
|
-
|
|
11312
|
-
padding: ${theme.spacing(1, 0)};
|
|
11313
|
-
display: flex;
|
|
11310
|
+
.dot-page-selection-popper {
|
|
11311
|
+
z-index: ${levelTop};
|
|
11314
11312
|
|
|
11315
|
-
.
|
|
11316
|
-
|
|
11317
|
-
|
|
11318
|
-
|
|
11313
|
+
.page-selection {
|
|
11314
|
+
width: ${theme.spacing(7)};
|
|
11315
|
+
padding: ${theme.spacing(1, 0)};
|
|
11316
|
+
display: flex;
|
|
11319
11317
|
|
|
11320
|
-
|
|
11321
|
-
|
|
11322
|
-
|
|
11323
|
-
|
|
11318
|
+
.pagination-page-picker {
|
|
11319
|
+
max-height: ${theme.spacing(18)};
|
|
11320
|
+
width: 100%;
|
|
11321
|
+
overflow: auto;
|
|
11322
|
+
|
|
11323
|
+
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
11324
|
+
::-webkit-scrollbar {
|
|
11325
|
+
display: none;
|
|
11326
|
+
}
|
|
11324
11327
|
|
|
11325
|
-
|
|
11326
|
-
|
|
11327
|
-
|
|
11328
|
+
/* Hide scrollbar for IE, Edge and Firefox */
|
|
11329
|
+
-ms-overflow-style: none; /* IE and Edge */
|
|
11330
|
+
scrollbar-width: none; /* Firefox */
|
|
11328
11331
|
|
|
11329
|
-
|
|
11330
|
-
|
|
11331
|
-
|
|
11332
|
+
.page-number-item {
|
|
11333
|
+
height: ${theme.spacing(4)};
|
|
11334
|
+
text-align: center;
|
|
11335
|
+
}
|
|
11332
11336
|
}
|
|
11333
11337
|
}
|
|
11334
11338
|
}
|
|
@@ -11431,6 +11435,7 @@ const DotTablePaginationCustomActions = props => {
|
|
|
11431
11435
|
onClick: handleNextButtonClick
|
|
11432
11436
|
}), jsx(Popper, {
|
|
11433
11437
|
anchorEl: pagePickerButtonRef === null || pagePickerButtonRef === void 0 ? void 0 : pagePickerButtonRef.current,
|
|
11438
|
+
className: "dot-page-selection-popper",
|
|
11434
11439
|
disablePortal: true,
|
|
11435
11440
|
open: showPageSelectionPopper,
|
|
11436
11441
|
placement: "top",
|