@rolster/react-components 18.24.9 → 18.24.11
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/assets/{index-Jhih2qiU.css → index-A_JkPXhq.css} +65 -18
- package/dist/cjs/index.js +7 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/es/assets/{index-Jhih2qiU.css → index-A_JkPXhq.css} +65 -18
- package/dist/es/index.js +7 -7
- package/dist/es/index.js.map +1 -1
- package/dist/esm/components/molecules/Pagination/Pagination.css +42 -17
- package/dist/esm/components/molecules/Pagination/Pagination.css.map +1 -1
- package/dist/esm/components/molecules/Pagination/Pagination.js +7 -7
- package/dist/esm/components/molecules/Pagination/Pagination.js.map +1 -1
- package/dist/esm/components/organisms/BottomSheet/BottomSheet.css +23 -1
- package/dist/esm/components/organisms/BottomSheet/BottomSheet.css.map +1 -1
- package/package.json +2 -2
|
@@ -1433,30 +1433,43 @@
|
|
|
1433
1433
|
} /*# sourceMappingURL=LabelSwitch.css.map */
|
|
1434
1434
|
|
|
1435
1435
|
.rls-pagination {
|
|
1436
|
+
--pvt-dimension: var(--rlc-pagination-dimension, var(--rls-sizing-x16));
|
|
1437
|
+
--pvt-description-display: block;
|
|
1438
|
+
--pvt-count-display: none;
|
|
1436
1439
|
position: relative;
|
|
1437
1440
|
display: flex;
|
|
1438
|
-
justify-content: center;
|
|
1439
1441
|
width: 100%;
|
|
1442
|
+
column-gap: var(--rlc-pagination-column-gap, var(--rls-sizing-x4));
|
|
1443
|
+
justify-content: center;
|
|
1444
|
+
align-items: center;
|
|
1440
1445
|
overflow: hidden;
|
|
1441
|
-
height: var(
|
|
1442
|
-
|
|
1446
|
+
height: var(
|
|
1447
|
+
--rlc-pagination-height,
|
|
1448
|
+
calc(var(--pvt-dimension) + var(--rls-sizing-x4))
|
|
1449
|
+
);
|
|
1450
|
+
padding: var(--rlc-pagination-padding, 0rem var(--rls-sizing-x6));
|
|
1443
1451
|
box-sizing: border-box;
|
|
1444
1452
|
}
|
|
1453
|
+
.rls-pagination__body {
|
|
1454
|
+
display: flex;
|
|
1455
|
+
width: auto;
|
|
1456
|
+
column-gap: var(--rls-sizing-x8);
|
|
1457
|
+
align-items: center;
|
|
1458
|
+
}
|
|
1445
1459
|
.rls-pagination__pages {
|
|
1446
1460
|
display: flex;
|
|
1447
|
-
gap: var(--rls-sizing-x4);
|
|
1448
1461
|
width: auto;
|
|
1449
|
-
|
|
1462
|
+
column-gap: var(--rls-sizing-x4);
|
|
1463
|
+
align-items: center;
|
|
1450
1464
|
}
|
|
1451
1465
|
.rls-pagination__page {
|
|
1452
1466
|
background: var(--rls-app-color-200);
|
|
1453
1467
|
color: var(--rls-app-color-900);
|
|
1454
1468
|
cursor: default;
|
|
1455
|
-
margin: auto 0rem;
|
|
1456
1469
|
text-align: center;
|
|
1457
|
-
width: var(--
|
|
1458
|
-
height: var(--
|
|
1459
|
-
line-height: var(--
|
|
1470
|
+
width: var(--pvt-dimension);
|
|
1471
|
+
height: var(--pvt-dimension);
|
|
1472
|
+
line-height: var(--pvt-dimension);
|
|
1460
1473
|
border-radius: var(--rls-sizing-x2);
|
|
1461
1474
|
font-size: var(--rls-body-font-size);
|
|
1462
1475
|
letter-spacing: var(--rls-body-letter-spacing);
|
|
@@ -1470,26 +1483,31 @@
|
|
|
1470
1483
|
color: var(--rls-app-color-050);
|
|
1471
1484
|
}
|
|
1472
1485
|
.rls-pagination__description {
|
|
1473
|
-
|
|
1474
|
-
margin: 0rem var(--rls-sizing-x4);
|
|
1486
|
+
display: var(--pvt-description-display);
|
|
1475
1487
|
width: auto;
|
|
1476
|
-
height: var(--rls-sizing-x20);
|
|
1477
|
-
line-height: var(--rls-sizing-x20);
|
|
1478
1488
|
font-size: var(--rls-body-font-size);
|
|
1479
1489
|
font-weight: var(--rls-font-weight-bold);
|
|
1480
1490
|
letter-spacing: var(--rls-body-letter-spacing);
|
|
1491
|
+
color: var(--rls-app-color-900);
|
|
1492
|
+
}
|
|
1493
|
+
.rls-pagination__count {
|
|
1494
|
+
display: var(--pvt-count-display);
|
|
1495
|
+
font-size: var(--rls-body-font-size);
|
|
1496
|
+
font-weight: var(--rls-font-weight-bold);
|
|
1497
|
+
letter-spacing: var(--rls-body-letter-spacing);
|
|
1498
|
+
color: var(--rls-app-color-900);
|
|
1481
1499
|
}
|
|
1482
1500
|
.rls-pagination__actions {
|
|
1501
|
+
display: flex;
|
|
1483
1502
|
width: auto;
|
|
1503
|
+
column-gap: var(--rls-sizing-x2);
|
|
1484
1504
|
}
|
|
1485
1505
|
.rls-pagination__action {
|
|
1506
|
+
--rlc-icon-dimension: calc(var(--pvt-dimension) - var(--rls-sizing-x4));
|
|
1486
1507
|
background: none;
|
|
1487
1508
|
outline: none;
|
|
1488
1509
|
color: var(--rls-app-color-600);
|
|
1489
|
-
|
|
1490
|
-
width: var(--rls-sizing-x18);
|
|
1491
|
-
padding: var(--rls-sizing-x3);
|
|
1492
|
-
margin: var(--rls-sizing-x1) 0rem;
|
|
1510
|
+
padding: var(--rls-sizing-x2);
|
|
1493
1511
|
}
|
|
1494
1512
|
.rls-pagination__action:hover {
|
|
1495
1513
|
color: var(--rls-theme-color-300);
|
|
@@ -1498,6 +1516,13 @@
|
|
|
1498
1516
|
.rls-pagination__action:disabled {
|
|
1499
1517
|
pointer-events: none;
|
|
1500
1518
|
opacity: 0.5;
|
|
1519
|
+
}
|
|
1520
|
+
@media screen and (max-width: 640px) {
|
|
1521
|
+
.rls-pagination {
|
|
1522
|
+
--pvt-description-display: none;
|
|
1523
|
+
--pvt-count-display: block;
|
|
1524
|
+
padding: 0rem;
|
|
1525
|
+
}
|
|
1501
1526
|
} /*# sourceMappingURL=Pagination.css.map */
|
|
1502
1527
|
|
|
1503
1528
|
.rls-picker-day {
|
|
@@ -1938,6 +1963,7 @@
|
|
|
1938
1963
|
.rls-bottom-sheet {
|
|
1939
1964
|
--pvt-component-transform: translateY(100%);
|
|
1940
1965
|
--pvt-component-height: 0rem;
|
|
1966
|
+
--pvt-component-max-height: 75%;
|
|
1941
1967
|
--pvt-component-opacity: 0;
|
|
1942
1968
|
--pvt-component-visibility: hidden;
|
|
1943
1969
|
--pvt-backdrop-opacity: 0;
|
|
@@ -1961,10 +1987,12 @@
|
|
|
1961
1987
|
}
|
|
1962
1988
|
.rls-bottom-sheet__component {
|
|
1963
1989
|
position: absolute;
|
|
1990
|
+
display: flex;
|
|
1964
1991
|
bottom: 0px;
|
|
1965
1992
|
width: 100%;
|
|
1966
1993
|
max-width: 240rem;
|
|
1967
|
-
max-height:
|
|
1994
|
+
max-height: var(--pvt-component-max-height);
|
|
1995
|
+
flex-direction: column;
|
|
1968
1996
|
opacity: var(--pvt-component-opacity);
|
|
1969
1997
|
visibility: var(--pvt-component-visibility);
|
|
1970
1998
|
z-index: var(--rls-z-index-2);
|
|
@@ -1975,6 +2003,15 @@
|
|
|
1975
2003
|
transform 240ms 0ms var(--rls-deceleration-curve),
|
|
1976
2004
|
visibility 240ms 0ms var(--rls-deceleration-curve);
|
|
1977
2005
|
}
|
|
2006
|
+
.rls-bottom-sheet__component::before {
|
|
2007
|
+
display: block;
|
|
2008
|
+
content: '';
|
|
2009
|
+
width: var(--rls-sizing-x24);
|
|
2010
|
+
height: var(--rls-sizing-x2);
|
|
2011
|
+
border-radius: var(--rls-sizing-x2);
|
|
2012
|
+
background: var(--rls-app-color-300);
|
|
2013
|
+
margin: var(--rls-sizing-x3) auto;
|
|
2014
|
+
}
|
|
1978
2015
|
.rls-bottom-sheet__backdrop {
|
|
1979
2016
|
position: absolute;
|
|
1980
2017
|
display: block;
|
|
@@ -1988,6 +2025,16 @@
|
|
|
1988
2025
|
backdrop-filter: blur(2px);
|
|
1989
2026
|
transition: opacity 120ms 0ms var(--rls-deceleration-curve),
|
|
1990
2027
|
bottom 120ms 0ms var(--rls-deceleration-curve);
|
|
2028
|
+
}
|
|
2029
|
+
@media screen and (max-height: 960px) {
|
|
2030
|
+
.rls-bottom-sheet {
|
|
2031
|
+
--pvt-component-max-height: calc(100% - 48rem);
|
|
2032
|
+
}
|
|
2033
|
+
}
|
|
2034
|
+
@media screen and (max-height: 720px) {
|
|
2035
|
+
.rls-bottom-sheet {
|
|
2036
|
+
--pvt-component-max-height: calc(100% - 32rem);
|
|
2037
|
+
}
|
|
1991
2038
|
} /*# sourceMappingURL=BottomSheet.css.map */
|
|
1992
2039
|
|
|
1993
2040
|
.rls-card {
|
package/dist/cjs/index.js
CHANGED
|
@@ -2021,13 +2021,13 @@ function RlsPagination({ suggestions, count, filter, onPagination }) {
|
|
|
2021
2021
|
const goLastPagination = require$$0.useCallback(() => {
|
|
2022
2022
|
refreshPagination(controller.current?.goLastPage());
|
|
2023
2023
|
}, []);
|
|
2024
|
-
return (jsxRuntimeExports.jsxs("div", { className: "rls-pagination", children: [jsxRuntimeExports.jsxs("div", { className: "rls-pagination__actions", children: [jsxRuntimeExports.jsx("button", { className: "rls-pagination__action", onClick: goFirstPagination, disabled: template?.firstPage, children: jsxRuntimeExports.jsx(RlsIcon, { value: "arrowhead-left" }) }), jsxRuntimeExports.jsx("button", { className: "rls-pagination__action", onClick: goPreviousPagination, disabled: template?.firstPage, children: jsxRuntimeExports.jsx(RlsIcon, { value: "arrow-ios-left" }) })] }), jsxRuntimeExports.jsx("div", { className: "rls-pagination__pages", children: template?.pages.map((page, index) => {
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2024
|
+
return (jsxRuntimeExports.jsxs("div", { className: "rls-pagination", children: [jsxRuntimeExports.jsxs("div", { className: "rls-pagination__actions", children: [jsxRuntimeExports.jsx("button", { className: "rls-pagination__action", onClick: goFirstPagination, disabled: template?.firstPage, children: jsxRuntimeExports.jsx(RlsIcon, { value: "arrowhead-left" }) }), jsxRuntimeExports.jsx("button", { className: "rls-pagination__action", onClick: goPreviousPagination, disabled: template?.firstPage, children: jsxRuntimeExports.jsx(RlsIcon, { value: "arrow-ios-left" }) })] }), jsxRuntimeExports.jsxs("div", { className: "rls-pagination__body", children: [jsxRuntimeExports.jsx("div", { className: "rls-pagination__pages", children: template?.pages.map((page, index) => {
|
|
2025
|
+
return (jsxRuntimeExports.jsx("div", { className: renderClassStatus('rls-pagination__page', {
|
|
2026
|
+
active: page.active
|
|
2027
|
+
}), onClick: () => {
|
|
2028
|
+
goToPagination(page);
|
|
2029
|
+
}, children: page.label }, index));
|
|
2030
|
+
}) }), jsxRuntimeExports.jsx("div", { className: "rls-pagination__description", children: template?.description }), jsxRuntimeExports.jsx("span", { className: "rls-pagination__count", children: suggestions.length })] }), jsxRuntimeExports.jsxs("div", { className: "rls-pagination__actions", children: [jsxRuntimeExports.jsx("button", { className: "rls-pagination__action", onClick: goNextPagination, disabled: template?.lastPage, children: jsxRuntimeExports.jsx(RlsIcon, { value: "arrow-ios-right" }) }), jsxRuntimeExports.jsx("button", { className: "rls-pagination__action", onClick: goLastPagination, disabled: template?.lastPage, children: jsxRuntimeExports.jsx(RlsIcon, { value: "arrowhead-right" }) })] })] }));
|
|
2031
2031
|
}
|
|
2032
2032
|
|
|
2033
2033
|
function RlsPickerDayHeaders() {
|