cr-ui-lib 1.1.62 → 1.1.63
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 +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5097,7 +5097,7 @@ var DynamicTableV2 = ({
|
|
|
5097
5097
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5098
5098
|
"span",
|
|
5099
5099
|
{
|
|
5100
|
-
className: "text-[12px] font-normal text-
|
|
5100
|
+
className: "text-[12px] font-normal text-gray-600",
|
|
5101
5101
|
style: { marginTop: "3px" },
|
|
5102
5102
|
children: "Rows Per Page:"
|
|
5103
5103
|
}
|
|
@@ -5110,12 +5110,12 @@ var DynamicTableV2 = ({
|
|
|
5110
5110
|
onChange: (e) => pagination == null ? void 0 : pagination.handleRowsPerPageChange(
|
|
5111
5111
|
Number(e.target.value)
|
|
5112
5112
|
),
|
|
5113
|
-
className: "appearance-none border broder-1 rounded-[2px] gap-2px pr-[2px] pt-[1px] pl-[8px] h-[20px] w-[50px]",
|
|
5113
|
+
className: "appearance-none border broder-1 rounded-[2px] gap-2px pr-[2px] text-gray-600 pt-[1px] pl-[8px] h-[20px] w-[50px]",
|
|
5114
5114
|
style: {
|
|
5115
5115
|
borderColor: "#E0E1E6",
|
|
5116
5116
|
fontSize: "12px"
|
|
5117
5117
|
},
|
|
5118
|
-
children: perPagesOptions.map((v, i) => /* @__PURE__ */ jsxRuntime.jsx("option", { value: v, children: v }, i))
|
|
5118
|
+
children: perPagesOptions.map((v, i) => /* @__PURE__ */ jsxRuntime.jsx("option", { value: v, className: "text-gray-600", children: v }, i))
|
|
5119
5119
|
}
|
|
5120
5120
|
),
|
|
5121
5121
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute right-[5px] bottom-1/2 top-1/2 pt-[5px] transform -translate-y-1/2 w-3 h-3 text-gray-400 pointer-events-none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -5146,7 +5146,7 @@ var DynamicTableV2 = ({
|
|
|
5146
5146
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5147
5147
|
"span",
|
|
5148
5148
|
{
|
|
5149
|
-
className: "text-[12px] font-normal text-
|
|
5149
|
+
className: "text-[12px] font-normal text-gray-600",
|
|
5150
5150
|
style: { marginTop: "3px" },
|
|
5151
5151
|
children: pagination ? `${(pagination.page - 1) * pagination.per_page + 1} - ${Math.min(
|
|
5152
5152
|
pagination.page * pagination.per_page,
|
|
@@ -5427,7 +5427,7 @@ var PopupWrapper = ({
|
|
|
5427
5427
|
className
|
|
5428
5428
|
),
|
|
5429
5429
|
children: [
|
|
5430
|
-
hasClosePopup && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex justify-end
|
|
5430
|
+
hasClosePopup && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex justify-end", children: /* @__PURE__ */ jsxRuntime.jsx("div", { onClick: closePopup, className: "cursor-pointer", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5431
5431
|
"svg",
|
|
5432
5432
|
{
|
|
5433
5433
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5443,7 +5443,7 @@ var PopupWrapper = ({
|
|
|
5443
5443
|
}
|
|
5444
5444
|
)
|
|
5445
5445
|
}
|
|
5446
|
-
) }),
|
|
5446
|
+
) }) }),
|
|
5447
5447
|
children
|
|
5448
5448
|
]
|
|
5449
5449
|
}
|