@herca/r-kit 0.0.29 → 0.0.31
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/components/breadcrumbs/index.cjs +1 -2
- package/dist/components/breadcrumbs/index.cjs.map +1 -1
- package/dist/components/breadcrumbs/index.js +1 -2
- package/dist/components/breadcrumbs/index.js.map +1 -1
- package/dist/components/calendar/index.cjs +16 -17
- package/dist/components/calendar/index.cjs.map +1 -1
- package/dist/components/calendar/index.js +16 -17
- package/dist/components/calendar/index.js.map +1 -1
- package/dist/components/counter/index.cjs +1 -2
- package/dist/components/counter/index.cjs.map +1 -1
- package/dist/components/counter/index.js +1 -2
- package/dist/components/counter/index.js.map +1 -1
- package/dist/components/date-picker/index.cjs +18 -19
- package/dist/components/date-picker/index.cjs.map +1 -1
- package/dist/components/date-picker/index.js +18 -19
- package/dist/components/date-picker/index.js.map +1 -1
- package/dist/components/input-file/index.cjs +11 -12
- package/dist/components/input-file/index.cjs.map +1 -1
- package/dist/components/input-file/index.js +11 -12
- package/dist/components/input-file/index.js.map +1 -1
- package/dist/components/modal/index.cjs +2 -3
- package/dist/components/modal/index.cjs.map +1 -1
- package/dist/components/modal/index.js +2 -3
- package/dist/components/modal/index.js.map +1 -1
- package/dist/components/select/index.cjs +4 -5
- package/dist/components/select/index.cjs.map +1 -1
- package/dist/components/select/index.js +4 -5
- package/dist/components/select/index.js.map +1 -1
- package/dist/components/sidebar/index.cjs +4 -5
- package/dist/components/sidebar/index.cjs.map +1 -1
- package/dist/components/sidebar/index.js +4 -5
- package/dist/components/sidebar/index.js.map +1 -1
- package/dist/components/table/index.cjs +4 -5
- package/dist/components/table/index.cjs.map +1 -1
- package/dist/components/table/index.js +4 -5
- package/dist/components/table/index.js.map +1 -1
- package/dist/components/toast/index.cjs +2 -3
- package/dist/components/toast/index.cjs.map +1 -1
- package/dist/components/toast/index.js +2 -3
- package/dist/components/toast/index.js.map +1 -1
- package/dist/index.cjs +35 -36
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +35 -36
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -5269,7 +5269,6 @@ var Icon = ({
|
|
|
5269
5269
|
}
|
|
5270
5270
|
return /* @__PURE__ */ jsxRuntime.jsx(Component, { size, color, className });
|
|
5271
5271
|
};
|
|
5272
|
-
var Icon_default = Icon;
|
|
5273
5272
|
var inputVariants = classVarianceAuthority.cva(
|
|
5274
5273
|
"w-full min-w-0 rounded-lg border bg-transparent px-3 py-2 text-base font-medium text-gray-800 shadow-xs transition outline-none placeholder:text-gray-500",
|
|
5275
5274
|
{
|
|
@@ -5671,7 +5670,7 @@ function TableCellHead({
|
|
|
5671
5670
|
type: "button",
|
|
5672
5671
|
children: [
|
|
5673
5672
|
/* @__PURE__ */ jsxRuntime.jsx(Text, { as: "h5", variant: "t1", weight: "semibold", children: value }),
|
|
5674
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5673
|
+
/* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "sort-vertical", size: 16, className: "shrink-0" })
|
|
5675
5674
|
]
|
|
5676
5675
|
}
|
|
5677
5676
|
) : children });
|
|
@@ -5772,7 +5771,7 @@ function TablePagination({
|
|
|
5772
5771
|
value,
|
|
5773
5772
|
rightAddonClassName: "pl-0! pr-1!",
|
|
5774
5773
|
rightAddon: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5775
|
-
|
|
5774
|
+
Icon,
|
|
5776
5775
|
{
|
|
5777
5776
|
name: "angle-down-small",
|
|
5778
5777
|
className: "text-gray-900",
|
|
@@ -5825,7 +5824,7 @@ function TablePagination({
|
|
|
5825
5824
|
disabled: currentPage <= 1,
|
|
5826
5825
|
className: "cursor-pointer disabled:opacity-40",
|
|
5827
5826
|
onClick: () => prevOnClick?.(),
|
|
5828
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5827
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "angles-left-small", size: 20 })
|
|
5829
5828
|
}
|
|
5830
5829
|
),
|
|
5831
5830
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex gap-1", children: generatePages(currentPage, totalPage).map((item, index) => {
|
|
@@ -5867,7 +5866,7 @@ function TablePagination({
|
|
|
5867
5866
|
disabled: currentPage >= totalPage,
|
|
5868
5867
|
className: "cursor-pointer disabled:opacity-40",
|
|
5869
5868
|
onClick: () => nextOnClick?.(),
|
|
5870
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5869
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "angles-right-small", size: 20 })
|
|
5871
5870
|
}
|
|
5872
5871
|
)
|
|
5873
5872
|
] })
|