@herca/r-kit 0.0.29 → 0.0.30
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
|
@@ -5194,7 +5194,6 @@ var Icon = ({
|
|
|
5194
5194
|
}
|
|
5195
5195
|
return /* @__PURE__ */ jsxRuntime.jsx(Component, { size, color, className });
|
|
5196
5196
|
};
|
|
5197
|
-
var Icon_default = Icon;
|
|
5198
5197
|
function cn(...inputs) {
|
|
5199
5198
|
return tailwindMerge.twMerge(clsx.clsx(inputs));
|
|
5200
5199
|
}
|
|
@@ -5343,7 +5342,7 @@ var Modal = ({
|
|
|
5343
5342
|
onClick: onClose,
|
|
5344
5343
|
className: "focus:ring-primary-300 absolute top-4 right-4 cursor-pointer rounded-sm p-1 text-gray-900 opacity-70 transition hover:opacity-100 focus:ring-2 focus:outline-none",
|
|
5345
5344
|
"aria-label": "Close",
|
|
5346
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5345
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "times", size: 24 })
|
|
5347
5346
|
}
|
|
5348
5347
|
),
|
|
5349
5348
|
hasHeader && /* @__PURE__ */ jsxRuntime.jsx(ModalHeader, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start justify-between gap-4", children: [
|
|
@@ -5358,7 +5357,7 @@ var Modal = ({
|
|
|
5358
5357
|
onClick: onClose,
|
|
5359
5358
|
className: "focus:ring-primary-300 mt-0.5 shrink-0 cursor-pointer rounded-sm p-1 text-gray-900 opacity-70 transition hover:opacity-100 focus:ring-2 focus:outline-none",
|
|
5360
5359
|
"aria-label": "Close",
|
|
5361
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5360
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "times", size: 20 })
|
|
5362
5361
|
}
|
|
5363
5362
|
)
|
|
5364
5363
|
] }) }),
|