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