@konoma-development/react-components 0.1.2 → 0.1.4
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.
|
@@ -7530,7 +7530,7 @@ const IMaskInputFn = (props, ref) => React__default.createElement(IMaskInputClas
|
|
|
7530
7530
|
const IMaskInput = React__default.forwardRef(IMaskInputFn);
|
|
7531
7531
|
|
|
7532
7532
|
const baseClasses$b = {
|
|
7533
|
-
classes: "w-full h-10 rounded-krc-input px-3 py-2 outline-hidden placeholder:text-secondary-500 placeholder:text-sm text-secondary-900 text-sm disabled:pointer-events-none ",
|
|
7533
|
+
classes: "w-full h-10 rounded-krc-input px-3 py-2 outline-hidden placeholder:text-secondary-500 placeholder:text-sm text-secondary-900 text-sm disabled:pointer-events-none bg-white",
|
|
7534
7534
|
wrapperClasses: "group flex flex-col gap-1",
|
|
7535
7535
|
labelClasses: "flex flex-row justify-start text-sm font-medium text-secondary-900",
|
|
7536
7536
|
iconLeftClasses: "absolute bottom-0 left-3 top-0 my-auto h-5 w-5 text-secondary-300",
|
|
@@ -7562,6 +7562,7 @@ function Input$2({
|
|
|
7562
7562
|
textRight,
|
|
7563
7563
|
centered,
|
|
7564
7564
|
error,
|
|
7565
|
+
step,
|
|
7565
7566
|
required,
|
|
7566
7567
|
name,
|
|
7567
7568
|
value,
|
|
@@ -7621,6 +7622,7 @@ function Input$2({
|
|
|
7621
7622
|
radix: ".",
|
|
7622
7623
|
unmask: true,
|
|
7623
7624
|
ref,
|
|
7625
|
+
step,
|
|
7624
7626
|
inputRef,
|
|
7625
7627
|
placeholder,
|
|
7626
7628
|
value: value?.toString(),
|
|
@@ -7653,6 +7655,7 @@ function Input$2({
|
|
|
7653
7655
|
ref.current?.showPicker();
|
|
7654
7656
|
onClick(e);
|
|
7655
7657
|
},
|
|
7658
|
+
step,
|
|
7656
7659
|
onBlur,
|
|
7657
7660
|
onKeyDown,
|
|
7658
7661
|
className: classesFull.join(" "),
|
|
@@ -16139,6 +16142,12 @@ function Select({
|
|
|
16139
16142
|
instanceId: useId$1(),
|
|
16140
16143
|
classNamePrefix: "select",
|
|
16141
16144
|
className: wrapperClasses,
|
|
16145
|
+
styles: {
|
|
16146
|
+
control: (base) => ({
|
|
16147
|
+
...base,
|
|
16148
|
+
borderRadius: void 0
|
|
16149
|
+
})
|
|
16150
|
+
},
|
|
16142
16151
|
isSearchable: searchable,
|
|
16143
16152
|
menuPlacement: "auto",
|
|
16144
16153
|
isDisabled: disabled,
|
|
@@ -16223,7 +16232,7 @@ function Select({
|
|
|
16223
16232
|
}
|
|
16224
16233
|
|
|
16225
16234
|
const baseClasses$9 = {
|
|
16226
|
-
classes: "w-full h-10 rounded-krc-phone-input rounded-l-none px-3 py-2 outline-hidden placeholder:text-secondary-500 placeholder:text-sm text-secondary-900 text-sm disabled:pointer-events-none ",
|
|
16235
|
+
classes: "w-full h-10 rounded-krc-phone-input rounded-l-none px-3 py-2 outline-hidden placeholder:text-secondary-500 placeholder:text-sm text-secondary-900 text-sm disabled:pointer-events-none bg-white",
|
|
16227
16236
|
wrapperClasses: "group flex flex-col gap-1",
|
|
16228
16237
|
labelClasses: "flex flex-row justify-start text-sm font-medium text-secondary-900",
|
|
16229
16238
|
wrapperLeftClasses: "absolute bottom-0 left-3 top-0 my-auto h-5 w-5 text-sm text-secondary-900",
|
|
@@ -24216,11 +24225,7 @@ function Table({
|
|
|
24216
24225
|
})
|
|
24217
24226
|
);
|
|
24218
24227
|
},
|
|
24219
|
-
className: [
|
|
24220
|
-
headerClasses,
|
|
24221
|
-
hasFilters ? "h-24" : "h-12",
|
|
24222
|
-
column.sortKey ? "cursor-pointer" : ""
|
|
24223
|
-
].join(" "),
|
|
24228
|
+
className: [headerClasses, hasFilters ? "h-24" : "h-12", column.sortKey ? "cursor-pointer" : ""].join(" "),
|
|
24224
24229
|
children: [
|
|
24225
24230
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-row items-center gap-2 w-full justify-between", children: [
|
|
24226
24231
|
/* @__PURE__ */ jsx$1("span", { children: column.title }),
|
|
@@ -24291,11 +24296,7 @@ function Table({
|
|
|
24291
24296
|
minWidth: column.initialWidth,
|
|
24292
24297
|
maxWidth: column.initialWidth
|
|
24293
24298
|
},
|
|
24294
|
-
className: [
|
|
24295
|
-
headerClasses,
|
|
24296
|
-
hasFilters ? "h-24" : "h-12",
|
|
24297
|
-
column.sortKey ? "cursor-pointer" : ""
|
|
24298
|
-
].join(" "),
|
|
24299
|
+
className: [headerClasses, hasFilters ? "h-24" : "h-12", column.sortKey ? "cursor-pointer" : ""].join(" "),
|
|
24299
24300
|
onClick: () => {
|
|
24300
24301
|
return column.sortKey && onSort(
|
|
24301
24302
|
Object.assign({}, column, {
|