@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.js
CHANGED
@@ -1681,6 +1681,8 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
1681
1681
|
{
|
1682
1682
|
colSpan: header.colSpan,
|
1683
1683
|
width: `${header.getSize()}px`,
|
1684
|
+
_first: { paddingLeft: `${paddingRowX + 8}px` },
|
1685
|
+
_last: { paddingRight: `${paddingRowX + 8}px` },
|
1684
1686
|
...styles == null ? void 0 : styles.tableColumnHeader,
|
1685
1687
|
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
1686
1688
|
import_react30.Flex,
|
@@ -1695,7 +1697,16 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
1695
1697
|
},
|
1696
1698
|
header.id
|
1697
1699
|
)) }, headerGroup.id)) }),
|
1698
|
-
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_react30.Tbody, { children: [...Array(5)].map((num) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_react30.Tr, { mx: "2", children: [...Array(generateColumn().length)].map((i) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
1700
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_react30.Tbody, { children: [...Array(5)].map((num) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_react30.Tr, { mx: "2", children: [...Array(generateColumn().length)].map((i) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
1701
|
+
import_react30.Td,
|
1702
|
+
{
|
1703
|
+
width: 210,
|
1704
|
+
_first: { paddingLeft: `${paddingRowX + 8}px` },
|
1705
|
+
_last: { paddingRight: `${paddingRowX + 8}px` },
|
1706
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_react30.Skeleton, { startColor: "neutral.100", endColor: "neutral.200", h: "20px", w: "70%" }, i)
|
1707
|
+
},
|
1708
|
+
i
|
1709
|
+
)) }, num)) })
|
1699
1710
|
] }) : /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_react30.Table, { ...styles == null ? void 0 : styles.table, children: [
|
1700
1711
|
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
1701
1712
|
import_react30.Thead,
|
@@ -5909,6 +5920,9 @@ var Styles2 = () => {
|
|
5909
5920
|
import_react93.Global,
|
5910
5921
|
{
|
5911
5922
|
styles: `
|
5923
|
+
:root {
|
5924
|
+
--toastify-toast-padding: 16px;
|
5925
|
+
}
|
5912
5926
|
.Toastify__toast-container {
|
5913
5927
|
width: 380px;
|
5914
5928
|
}
|