@rehagro/ui 1.0.58 → 1.0.60
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/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +130 -110
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +130 -110
- package/dist/index.mjs.map +1 -1
- package/dist/native.js.map +1 -1
- package/dist/native.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -960,6 +960,10 @@ type TableProps<T> = Omit<React__default.HTMLAttributes<HTMLTableElement>, "chil
|
|
|
960
960
|
rowClickable?: boolean;
|
|
961
961
|
/** Callback invoked when a row is clicked: `(row, index, event)` */
|
|
962
962
|
onRowClick?: (row: T, index: number, event?: React__default.MouseEvent<HTMLTableRowElement>) => void;
|
|
963
|
+
/** Disables all editable controls inside table cells ("select", "date", "textInput") */
|
|
964
|
+
disableEditableControls?: boolean;
|
|
965
|
+
/** @deprecated Use `disableEditableControls` instead */
|
|
966
|
+
disableEditableSelects?: boolean;
|
|
963
967
|
};
|
|
964
968
|
declare const Table: <T>(props: TableProps<T> & {
|
|
965
969
|
ref?: React__default.ForwardedRef<HTMLTableElement>;
|
package/dist/index.d.ts
CHANGED
|
@@ -960,6 +960,10 @@ type TableProps<T> = Omit<React__default.HTMLAttributes<HTMLTableElement>, "chil
|
|
|
960
960
|
rowClickable?: boolean;
|
|
961
961
|
/** Callback invoked when a row is clicked: `(row, index, event)` */
|
|
962
962
|
onRowClick?: (row: T, index: number, event?: React__default.MouseEvent<HTMLTableRowElement>) => void;
|
|
963
|
+
/** Disables all editable controls inside table cells ("select", "date", "textInput") */
|
|
964
|
+
disableEditableControls?: boolean;
|
|
965
|
+
/** @deprecated Use `disableEditableControls` instead */
|
|
966
|
+
disableEditableSelects?: boolean;
|
|
963
967
|
};
|
|
964
968
|
declare const Table: <T>(props: TableProps<T> & {
|
|
965
969
|
ref?: React__default.ForwardedRef<HTMLTableElement>;
|
package/dist/index.js
CHANGED
|
@@ -2844,6 +2844,17 @@ function getClockPosition(index, radius) {
|
|
|
2844
2844
|
top: `calc(50% + ${Math.sin(angle) * radius}px)`
|
|
2845
2845
|
};
|
|
2846
2846
|
}
|
|
2847
|
+
function getRehagroPortalStyle(source) {
|
|
2848
|
+
const root = source?.closest(".rh-root");
|
|
2849
|
+
if (!root) return void 0;
|
|
2850
|
+
const variables = {};
|
|
2851
|
+
for (let index = 0; index < root.style.length; index += 1) {
|
|
2852
|
+
const property = root.style.item(index);
|
|
2853
|
+
if (!property.startsWith("--rh-")) continue;
|
|
2854
|
+
variables[property] = root.style.getPropertyValue(property);
|
|
2855
|
+
}
|
|
2856
|
+
return variables;
|
|
2857
|
+
}
|
|
2847
2858
|
var TimePicker = React9.forwardRef(
|
|
2848
2859
|
function TimePicker2(props, ref) {
|
|
2849
2860
|
const {
|
|
@@ -3159,128 +3170,129 @@ var TimePicker = React9.forwardRef(
|
|
|
3159
3170
|
]
|
|
3160
3171
|
}
|
|
3161
3172
|
),
|
|
3162
|
-
isOpen && presentation === "clock" &&
|
|
3163
|
-
"div",
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
/* @__PURE__ */ jsxRuntime.
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3173
|
+
isOpen && presentation === "clock" && typeof document !== "undefined" && reactDom.createPortal(
|
|
3174
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "rh-root", style: getRehagroPortalStyle(wrapperRef.current), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3175
|
+
"div",
|
|
3176
|
+
{
|
|
3177
|
+
role: "presentation",
|
|
3178
|
+
className: "rh-fixed rh-inset-0 rh-z-50 rh-flex rh-items-center rh-justify-center rh-bg-text/50 rh-p-4",
|
|
3179
|
+
onMouseDown: (event) => {
|
|
3180
|
+
if (event.target === event.currentTarget) closeClockDialog();
|
|
3181
|
+
},
|
|
3182
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3183
|
+
"div",
|
|
3184
|
+
{
|
|
3185
|
+
ref: dropdownRef,
|
|
3186
|
+
role: "dialog",
|
|
3187
|
+
"aria-modal": "true",
|
|
3188
|
+
"aria-label": "Seletor de hora",
|
|
3189
|
+
className: "rh-flex rh-w-full rh-max-w-[360px] rh-flex-col rh-rounded-sm rh-bg-surface rh-p-6 rh-text-text",
|
|
3190
|
+
style: { boxShadow: "0 24px 48px rgb(8 11 18 / 0.24)" },
|
|
3191
|
+
children: [
|
|
3192
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "rh-text-sm rh-font-normal rh-uppercase rh-text-text-muted", children: "Selecione a hora" }),
|
|
3193
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rh-mt-6 rh-flex rh-items-center rh-justify-between", children: [
|
|
3194
|
+
isManualClockInput ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rh-flex rh-items-center rh-gap-2", children: [
|
|
3195
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3196
|
+
"input",
|
|
3197
|
+
{
|
|
3198
|
+
"aria-label": "Hora",
|
|
3199
|
+
inputMode: "numeric",
|
|
3200
|
+
maxLength: 2,
|
|
3201
|
+
value: pad(pendingHour),
|
|
3202
|
+
onChange: (event) => handleManualClockChange("hour", event.target.value),
|
|
3203
|
+
className: "rh-h-12 rh-w-14 rh-rounded-xs rh-border rh-border-border rh-bg-surface rh-text-center rh-text-2xl rh-font-semibold rh-text-text rh-outline-none focus:rh-border-primary focus:rh-ring-2 focus:rh-ring-gray-200"
|
|
3204
|
+
}
|
|
3205
|
+
),
|
|
3206
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "rh-text-2xl rh-font-semibold rh-text-text-muted", children: ":" }),
|
|
3207
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3208
|
+
"input",
|
|
3209
|
+
{
|
|
3210
|
+
"aria-label": "Minuto",
|
|
3211
|
+
inputMode: "numeric",
|
|
3212
|
+
maxLength: 2,
|
|
3213
|
+
value: pad(pendingMinute),
|
|
3214
|
+
onChange: (event) => handleManualClockChange("minute", event.target.value),
|
|
3215
|
+
className: "rh-h-12 rh-w-14 rh-rounded-xs rh-border rh-border-border rh-bg-surface rh-text-center rh-text-2xl rh-font-semibold rh-text-text rh-outline-none focus:rh-border-primary focus:rh-ring-2 focus:rh-ring-gray-200"
|
|
3216
|
+
}
|
|
3217
|
+
)
|
|
3218
|
+
] }) : /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rh-flex rh-items-center rh-gap-1 rh-text-2xl rh-font-semibold", children: [
|
|
3219
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3220
|
+
"button",
|
|
3221
|
+
{
|
|
3222
|
+
type: "button",
|
|
3223
|
+
onClick: () => setClockStep("hour"),
|
|
3224
|
+
className: [
|
|
3225
|
+
"rh-rounded-xs rh-px-1 rh-transition-colors rh-duration-150",
|
|
3226
|
+
clockStep === "hour" ? "rh-text-text" : "rh-text-text-muted hover:rh-bg-background"
|
|
3227
|
+
].join(" "),
|
|
3228
|
+
children: clockDisplayText.slice(0, 2)
|
|
3229
|
+
}
|
|
3230
|
+
),
|
|
3231
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "rh-text-text-muted", children: ":" }),
|
|
3232
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3233
|
+
"button",
|
|
3234
|
+
{
|
|
3235
|
+
type: "button",
|
|
3236
|
+
onClick: () => setClockStep("minute"),
|
|
3237
|
+
className: [
|
|
3238
|
+
"rh-rounded-xs rh-px-1 rh-transition-colors rh-duration-150",
|
|
3239
|
+
clockStep === "minute" ? "rh-text-text" : "rh-text-text-muted hover:rh-bg-background"
|
|
3240
|
+
].join(" "),
|
|
3241
|
+
children: clockDisplayText.slice(3, 5)
|
|
3242
|
+
}
|
|
3243
|
+
)
|
|
3244
|
+
] }),
|
|
3195
3245
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3196
|
-
"
|
|
3246
|
+
"button",
|
|
3197
3247
|
{
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
className: "rh-h-12 rh-w-14 rh-rounded-xs rh-border rh-border-border rh-bg-surface rh-text-center rh-text-2xl rh-font-semibold rh-text-text rh-outline-none focus:rh-border-primary focus:rh-ring-2 focus:rh-ring-gray-200"
|
|
3248
|
+
type: "button",
|
|
3249
|
+
"aria-label": isManualClockInput ? "Voltar ao rel\xF3gio" : "Digitar hor\xE1rio manualmente",
|
|
3250
|
+
onClick: () => setIsManualClockInput((current) => !current),
|
|
3251
|
+
className: "rh-rounded-full rh-p-2 rh-text-text hover:rh-bg-background",
|
|
3252
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(PencilIcon, {})
|
|
3204
3253
|
}
|
|
3205
3254
|
)
|
|
3206
|
-
] })
|
|
3255
|
+
] }),
|
|
3256
|
+
!isManualClockInput && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "rh-mx-auto rh-mt-8 rh-flex rh-h-[256px] rh-w-[256px] rh-items-center rh-justify-center rh-rounded-full rh-bg-background", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rh-relative rh-h-full rh-w-full", children: [
|
|
3257
|
+
clockStep === "hour" ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
3258
|
+
CLOCK_HOURS_OUTER.map(
|
|
3259
|
+
(hour, index) => clockHourButton(hour, index, 102)
|
|
3260
|
+
),
|
|
3261
|
+
CLOCK_HOURS_INNER.map(
|
|
3262
|
+
(hour, index) => clockHourButton(hour, index, 68)
|
|
3263
|
+
)
|
|
3264
|
+
] }) : CLOCK_MINUTES.map((minute, index) => clockMinuteButton(minute, index)),
|
|
3265
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "rh-absolute rh-left-1/2 rh-top-1/2 rh-h-2 rh-w-2 -rh-translate-x-1/2 -rh-translate-y-1/2 rh-rounded-full rh-bg-primary" })
|
|
3266
|
+
] }) }),
|
|
3267
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rh-mt-8 rh-flex rh-justify-end rh-gap-6", children: [
|
|
3207
3268
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3208
3269
|
"button",
|
|
3209
3270
|
{
|
|
3210
3271
|
type: "button",
|
|
3211
|
-
onClick:
|
|
3212
|
-
className:
|
|
3213
|
-
|
|
3214
|
-
clockStep === "hour" ? "rh-text-text" : "rh-text-text-muted hover:rh-bg-background"
|
|
3215
|
-
].join(" "),
|
|
3216
|
-
children: clockDisplayText.slice(0, 2)
|
|
3272
|
+
onClick: closeClockDialog,
|
|
3273
|
+
className: "rh-text-base rh-font-medium rh-uppercase rh-text-primary hover:rh-opacity-80",
|
|
3274
|
+
children: "Cancelar"
|
|
3217
3275
|
}
|
|
3218
3276
|
),
|
|
3219
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "rh-text-text-muted", children: ":" }),
|
|
3220
3277
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3221
3278
|
"button",
|
|
3222
3279
|
{
|
|
3223
3280
|
type: "button",
|
|
3224
|
-
onClick: () =>
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
children:
|
|
3281
|
+
onClick: () => {
|
|
3282
|
+
if (hasPendingValue) commit(pendingHour, pendingMinute);
|
|
3283
|
+
else closeClockDialog();
|
|
3284
|
+
},
|
|
3285
|
+
className: "rh-text-base rh-font-medium rh-uppercase rh-text-primary hover:rh-opacity-80",
|
|
3286
|
+
children: "OK"
|
|
3230
3287
|
}
|
|
3231
3288
|
)
|
|
3232
|
-
] })
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
className: "rh-rounded-full rh-p-2 rh-text-text hover:rh-bg-background",
|
|
3240
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(PencilIcon, {})
|
|
3241
|
-
}
|
|
3242
|
-
)
|
|
3243
|
-
] }),
|
|
3244
|
-
!isManualClockInput && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "rh-mx-auto rh-mt-8 rh-flex rh-h-[256px] rh-w-[256px] rh-items-center rh-justify-center rh-rounded-full rh-bg-background", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rh-relative rh-h-full rh-w-full", children: [
|
|
3245
|
-
clockStep === "hour" ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
3246
|
-
CLOCK_HOURS_OUTER.map(
|
|
3247
|
-
(hour, index) => clockHourButton(hour, index, 102)
|
|
3248
|
-
),
|
|
3249
|
-
CLOCK_HOURS_INNER.map(
|
|
3250
|
-
(hour, index) => clockHourButton(hour, index, 68)
|
|
3251
|
-
)
|
|
3252
|
-
] }) : CLOCK_MINUTES.map(
|
|
3253
|
-
(minute, index) => clockMinuteButton(minute, index)
|
|
3254
|
-
),
|
|
3255
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "rh-absolute rh-left-1/2 rh-top-1/2 rh-h-2 rh-w-2 -rh-translate-x-1/2 -rh-translate-y-1/2 rh-rounded-full rh-bg-primary" })
|
|
3256
|
-
] }) }),
|
|
3257
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rh-mt-8 rh-flex rh-justify-end rh-gap-6", children: [
|
|
3258
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3259
|
-
"button",
|
|
3260
|
-
{
|
|
3261
|
-
type: "button",
|
|
3262
|
-
onClick: closeClockDialog,
|
|
3263
|
-
className: "rh-text-base rh-font-medium rh-uppercase rh-text-primary hover:rh-opacity-80",
|
|
3264
|
-
children: "Cancelar"
|
|
3265
|
-
}
|
|
3266
|
-
),
|
|
3267
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3268
|
-
"button",
|
|
3269
|
-
{
|
|
3270
|
-
type: "button",
|
|
3271
|
-
onClick: () => {
|
|
3272
|
-
if (hasPendingValue) commit(pendingHour, pendingMinute);
|
|
3273
|
-
else closeClockDialog();
|
|
3274
|
-
},
|
|
3275
|
-
className: "rh-text-base rh-font-medium rh-uppercase rh-text-primary hover:rh-opacity-80",
|
|
3276
|
-
children: "OK"
|
|
3277
|
-
}
|
|
3278
|
-
)
|
|
3279
|
-
] })
|
|
3280
|
-
]
|
|
3281
|
-
}
|
|
3282
|
-
)
|
|
3283
|
-
}
|
|
3289
|
+
] })
|
|
3290
|
+
]
|
|
3291
|
+
}
|
|
3292
|
+
)
|
|
3293
|
+
}
|
|
3294
|
+
) }),
|
|
3295
|
+
document.body
|
|
3284
3296
|
),
|
|
3285
3297
|
helperText && !isHelperDismissed && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3286
3298
|
"span",
|
|
@@ -4561,7 +4573,8 @@ var CustomSelect = ({
|
|
|
4561
4573
|
textColor,
|
|
4562
4574
|
placeholderColor,
|
|
4563
4575
|
backgroundColor,
|
|
4564
|
-
type = "select"
|
|
4576
|
+
type = "select",
|
|
4577
|
+
disabled = false
|
|
4565
4578
|
}) => {
|
|
4566
4579
|
const [isOpen, setIsOpen] = React9.useState(false);
|
|
4567
4580
|
const [dropdownStyle, setDropdownStyle] = React9.useState({});
|
|
@@ -4595,6 +4608,7 @@ var CustomSelect = ({
|
|
|
4595
4608
|
};
|
|
4596
4609
|
};
|
|
4597
4610
|
const openDropdown = () => {
|
|
4611
|
+
if (disabled) return;
|
|
4598
4612
|
if (!isOpen) setDropdownStyle(calcPosition());
|
|
4599
4613
|
setIsOpen((prev) => !prev);
|
|
4600
4614
|
};
|
|
@@ -4643,6 +4657,7 @@ var CustomSelect = ({
|
|
|
4643
4657
|
{
|
|
4644
4658
|
ref: textAreaRef,
|
|
4645
4659
|
value,
|
|
4660
|
+
disabled,
|
|
4646
4661
|
placeholder,
|
|
4647
4662
|
rows: 1,
|
|
4648
4663
|
onClick: (e) => e.stopPropagation(),
|
|
@@ -4654,7 +4669,7 @@ var CustomSelect = ({
|
|
|
4654
4669
|
color: inputTextColor,
|
|
4655
4670
|
backgroundColor: backgroundColor || "transparent"
|
|
4656
4671
|
},
|
|
4657
|
-
className: "rh-table-textarea rh-flex rh-items-center rh-leading-[20px] rh-py-[7px] rh-w-full rh-min-h-[40px] rh-text-sm rh-px-1 rh-border rh-bg-surface rh-rounded-xs rh-border-transparent rh-line-height-[20px] rh-outline-none rh-resize-none rh-overflow-hidden hover:rh-border-primary hover:rh-ring-2 hover:rh-ring-gray-200"
|
|
4672
|
+
className: "rh-table-textarea rh-flex rh-items-center rh-leading-[20px] rh-py-[7px] rh-w-full rh-min-h-[40px] rh-text-sm rh-px-1 rh-border rh-bg-surface rh-rounded-xs rh-border-transparent rh-line-height-[20px] rh-outline-none rh-resize-none rh-overflow-hidden hover:rh-border-primary hover:rh-ring-2 hover:rh-ring-gray-200 disabled:rh-opacity-60 disabled:rh-cursor-not-allowed disabled:hover:rh-border-transparent disabled:hover:rh-ring-0"
|
|
4658
4673
|
}
|
|
4659
4674
|
),
|
|
4660
4675
|
/* @__PURE__ */ jsxRuntime.jsx("style", { children: `.rh-table-textarea::placeholder { color: ${inputPlaceholderColor}; }` })
|
|
@@ -4665,12 +4680,13 @@ var CustomSelect = ({
|
|
|
4665
4680
|
"button",
|
|
4666
4681
|
{
|
|
4667
4682
|
type: "button",
|
|
4683
|
+
disabled,
|
|
4668
4684
|
onClick: (e) => {
|
|
4669
4685
|
e.stopPropagation();
|
|
4670
4686
|
openDropdown();
|
|
4671
4687
|
},
|
|
4672
4688
|
style: { backgroundColor: backgroundColor || void 0 },
|
|
4673
|
-
className: "rh-w-full rh-min-h-[40px] rh-flex rh-items-center rh-border rh-bg-surface rh-rounded-sm rh-border-transparent rh-justify-between rh-py-2 hover:rh-border-primary hover:rh-ring-2 hover:rh-ring-gray-200 rh-cursor-pointer rh-text-left",
|
|
4689
|
+
className: "rh-w-full rh-min-h-[40px] rh-flex rh-items-center rh-border rh-bg-surface rh-rounded-sm rh-border-transparent rh-justify-between rh-py-2 hover:rh-border-primary hover:rh-ring-2 hover:rh-ring-gray-200 rh-cursor-pointer rh-text-left disabled:rh-cursor-not-allowed disabled:rh-opacity-60 disabled:hover:rh-border-transparent disabled:hover:rh-ring-0",
|
|
4674
4690
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "rh-flex rh-items-center rh-gap-2 rh-flex-1 rh-px-0.5", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4675
4691
|
"span",
|
|
4676
4692
|
{
|
|
@@ -4756,6 +4772,8 @@ function TableInner({
|
|
|
4756
4772
|
rowKey,
|
|
4757
4773
|
rowClickable = false,
|
|
4758
4774
|
onRowClick,
|
|
4775
|
+
disableEditableControls = false,
|
|
4776
|
+
disableEditableSelects = false,
|
|
4759
4777
|
size = "md",
|
|
4760
4778
|
variant = "default",
|
|
4761
4779
|
sort,
|
|
@@ -4775,6 +4793,7 @@ function TableInner({
|
|
|
4775
4793
|
className = "",
|
|
4776
4794
|
...rest
|
|
4777
4795
|
}, ref) {
|
|
4796
|
+
const shouldDisableEditableControls = disableEditableControls || disableEditableSelects;
|
|
4778
4797
|
const handleSort = (column) => {
|
|
4779
4798
|
if (!column.sortable || !onSortChange) return;
|
|
4780
4799
|
const newDirection = sort?.key === column.key ? sort.direction === "asc" ? "desc" : sort.direction === "desc" ? null : "asc" : "asc";
|
|
@@ -4867,7 +4886,7 @@ function TableInner({
|
|
|
4867
4886
|
}
|
|
4868
4887
|
return column.editablePlaceholderColor;
|
|
4869
4888
|
};
|
|
4870
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "rh-w-full rh-rounded
|
|
4889
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "rh-w-full rh-rounded", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4871
4890
|
"table",
|
|
4872
4891
|
{
|
|
4873
4892
|
ref,
|
|
@@ -4985,6 +5004,7 @@ function TableInner({
|
|
|
4985
5004
|
CustomSelect,
|
|
4986
5005
|
{
|
|
4987
5006
|
type: column.type ?? "select",
|
|
5007
|
+
disabled: shouldDisableEditableControls,
|
|
4988
5008
|
options: column.choices,
|
|
4989
5009
|
value: column.editableValue(row),
|
|
4990
5010
|
placeholder: column.editablePlaceholder,
|