jett.admin.npmpackage 1.0.96 → 1.0.98
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.css +3 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -1299,7 +1299,7 @@ var Pagination = ({
|
|
|
1299
1299
|
tableHeader,
|
|
1300
1300
|
isHideCheckbox
|
|
1301
1301
|
},
|
|
1302
|
-
|
|
1302
|
+
data.map((item, index) => {
|
|
1303
1303
|
return /* @__PURE__ */ import_react15.default.createElement(
|
|
1304
1304
|
ComponentType,
|
|
1305
1305
|
{
|
|
@@ -1381,7 +1381,7 @@ var Pagination = ({
|
|
|
1381
1381
|
{
|
|
1382
1382
|
key: pageNum,
|
|
1383
1383
|
onClick: () => handlePageChange(pageNum),
|
|
1384
|
-
className: `flex items-center justify-center min-w-9 h-9 px-3 rounded-md border border-[#e5e5e5] dark:border-[#303036] text-sm transition-colors ${currentPage === pageNum ? "bg-primary text-white border-primary dark:bg-primary" : "bg-white text-black hover:bg-gray-50 dark:bg-[#18181b] dark:text-white dark:hover:bg-[#27272a]"}`
|
|
1384
|
+
className: `flex items-center justify-center min-w-9 h-9 px-3 cursor-pointer rounded-md border border-[#e5e5e5] dark:border-[#303036] text-sm transition-colors ${currentPage === pageNum ? "bg-primary text-white border-primary dark:bg-primary" : "bg-white text-black hover:bg-gray-50 dark:bg-[#18181b] dark:text-white dark:hover:bg-[#27272a]"}`
|
|
1385
1385
|
},
|
|
1386
1386
|
pageNum
|
|
1387
1387
|
)), /* @__PURE__ */ import_react15.default.createElement(
|
package/dist/index.mjs
CHANGED
|
@@ -1265,7 +1265,7 @@ var Pagination = ({
|
|
|
1265
1265
|
tableHeader,
|
|
1266
1266
|
isHideCheckbox
|
|
1267
1267
|
},
|
|
1268
|
-
|
|
1268
|
+
data.map((item, index) => {
|
|
1269
1269
|
return /* @__PURE__ */ React15.createElement(
|
|
1270
1270
|
ComponentType,
|
|
1271
1271
|
{
|
|
@@ -1347,7 +1347,7 @@ var Pagination = ({
|
|
|
1347
1347
|
{
|
|
1348
1348
|
key: pageNum,
|
|
1349
1349
|
onClick: () => handlePageChange(pageNum),
|
|
1350
|
-
className: `flex items-center justify-center min-w-9 h-9 px-3 rounded-md border border-[#e5e5e5] dark:border-[#303036] text-sm transition-colors ${currentPage === pageNum ? "bg-primary text-white border-primary dark:bg-primary" : "bg-white text-black hover:bg-gray-50 dark:bg-[#18181b] dark:text-white dark:hover:bg-[#27272a]"}`
|
|
1350
|
+
className: `flex items-center justify-center min-w-9 h-9 px-3 cursor-pointer rounded-md border border-[#e5e5e5] dark:border-[#303036] text-sm transition-colors ${currentPage === pageNum ? "bg-primary text-white border-primary dark:bg-primary" : "bg-white text-black hover:bg-gray-50 dark:bg-[#18181b] dark:text-white dark:hover:bg-[#27272a]"}`
|
|
1351
1351
|
},
|
|
1352
1352
|
pageNum
|
|
1353
1353
|
)), /* @__PURE__ */ React15.createElement(
|