@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(clsx2.clsx(inputs));
|
|
5200
5199
|
}
|
|
@@ -5501,7 +5500,7 @@ var Select = ({
|
|
|
5501
5500
|
{
|
|
5502
5501
|
onClick: (e) => handleRemove(item, e),
|
|
5503
5502
|
className: "text-primary-1000 rounded p-0.5 hover:bg-blue-200",
|
|
5504
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5503
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "times-circle", size: 14 })
|
|
5505
5504
|
}
|
|
5506
5505
|
)
|
|
5507
5506
|
]
|
|
@@ -5549,11 +5548,11 @@ var Select = ({
|
|
|
5549
5548
|
type: "button",
|
|
5550
5549
|
onClick: handleClear,
|
|
5551
5550
|
className: "cursor-pointer rounded text-center text-gray-700",
|
|
5552
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5551
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "times-circle", size: 20 })
|
|
5553
5552
|
}
|
|
5554
5553
|
),
|
|
5555
5554
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5556
|
-
|
|
5555
|
+
Icon,
|
|
5557
5556
|
{
|
|
5558
5557
|
className: "text-gray-700",
|
|
5559
5558
|
name: isOpen ? "angle-up-small" : "angle-down-small",
|
|
@@ -5573,7 +5572,7 @@ var Select = ({
|
|
|
5573
5572
|
),
|
|
5574
5573
|
children: [
|
|
5575
5574
|
isSearchable && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 rounded-lg border border-gray-200 bg-white px-3.5 py-2.5", children: [
|
|
5576
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5575
|
+
/* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "search", size: 20, className: "text-gray-400" }),
|
|
5577
5576
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5578
5577
|
"input",
|
|
5579
5578
|
{
|