@ctlyst.id/internal-ui 5.5.5 → 5.5.7
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/index.js +15 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
@@ -1325,6 +1325,8 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
1325
1325
|
{
|
1326
1326
|
colSpan: header.colSpan,
|
1327
1327
|
width: `${header.getSize()}px`,
|
1328
|
+
_first: { paddingLeft: `${paddingRowX + 8}px` },
|
1329
|
+
_last: { paddingRight: `${paddingRowX + 8}px` },
|
1328
1330
|
...styles == null ? void 0 : styles.tableColumnHeader,
|
1329
1331
|
children: /* @__PURE__ */ jsx24(
|
1330
1332
|
Flex2,
|
@@ -1339,7 +1341,16 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
1339
1341
|
},
|
1340
1342
|
header.id
|
1341
1343
|
)) }, headerGroup.id)) }),
|
1342
|
-
/* @__PURE__ */ jsx24(Tbody, { children: [...Array(5)].map((num) => /* @__PURE__ */ jsx24(Tr, { mx: "2", children: [...Array(generateColumn().length)].map((i) => /* @__PURE__ */ jsx24(
|
1344
|
+
/* @__PURE__ */ jsx24(Tbody, { children: [...Array(5)].map((num) => /* @__PURE__ */ jsx24(Tr, { mx: "2", children: [...Array(generateColumn().length)].map((i) => /* @__PURE__ */ jsx24(
|
1345
|
+
Td,
|
1346
|
+
{
|
1347
|
+
width: 210,
|
1348
|
+
_first: { paddingLeft: `${paddingRowX + 8}px` },
|
1349
|
+
_last: { paddingRight: `${paddingRowX + 8}px` },
|
1350
|
+
children: /* @__PURE__ */ jsx24(Skeleton2, { startColor: "neutral.100", endColor: "neutral.200", h: "20px", w: "70%" }, i)
|
1351
|
+
},
|
1352
|
+
i
|
1353
|
+
)) }, num)) })
|
1343
1354
|
] }) : /* @__PURE__ */ jsxs8(Table, { ...styles == null ? void 0 : styles.table, children: [
|
1344
1355
|
/* @__PURE__ */ jsx24(
|
1345
1356
|
Thead,
|
@@ -5759,6 +5770,9 @@ var Styles2 = () => {
|
|
5759
5770
|
Global2,
|
5760
5771
|
{
|
5761
5772
|
styles: `
|
5773
|
+
:root {
|
5774
|
+
--toastify-toast-padding: 16px;
|
5775
|
+
}
|
5762
5776
|
.Toastify__toast-container {
|
5763
5777
|
width: 380px;
|
5764
5778
|
}
|