@herca/r-kit 0.0.28 → 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
|
@@ -5188,7 +5188,6 @@ var Icon = ({
|
|
|
5188
5188
|
}
|
|
5189
5189
|
return /* @__PURE__ */ jsx(Component, { size, color, className });
|
|
5190
5190
|
};
|
|
5191
|
-
var Icon_default = Icon;
|
|
5192
5191
|
function cn(...inputs) {
|
|
5193
5192
|
return twMerge(clsx(inputs));
|
|
5194
5193
|
}
|
|
@@ -5337,7 +5336,7 @@ var Modal = ({
|
|
|
5337
5336
|
onClick: onClose,
|
|
5338
5337
|
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",
|
|
5339
5338
|
"aria-label": "Close",
|
|
5340
|
-
children: /* @__PURE__ */ jsx(
|
|
5339
|
+
children: /* @__PURE__ */ jsx(Icon, { name: "times", size: 24 })
|
|
5341
5340
|
}
|
|
5342
5341
|
),
|
|
5343
5342
|
hasHeader && /* @__PURE__ */ jsx(ModalHeader, { children: /* @__PURE__ */ jsxs("div", { className: "flex items-start justify-between gap-4", children: [
|
|
@@ -5352,7 +5351,7 @@ var Modal = ({
|
|
|
5352
5351
|
onClick: onClose,
|
|
5353
5352
|
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",
|
|
5354
5353
|
"aria-label": "Close",
|
|
5355
|
-
children: /* @__PURE__ */ jsx(
|
|
5354
|
+
children: /* @__PURE__ */ jsx(Icon, { name: "times", size: 20 })
|
|
5356
5355
|
}
|
|
5357
5356
|
)
|
|
5358
5357
|
] }) }),
|