asma-ui-core 3.58.3 → 3.58.5
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/asma-ui-core.css +1 -1
- package/dist/components/custom/pathfinder-card/Pathfinder.module.js +15 -0
- package/dist/components/custom/pathfinder-card/PathfinderCard.js +107 -106
- package/dist/components/inputs/dynamic-select/components/DynamicSelectAutocomplete.js +22 -22
- package/dist/components/inputs/input-field/StyledInputField.js +77 -77
- package/dist/src/components/inputs/input-field/StyledInputField.d.ts +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
var e = "_root_t64s4_1", _ = "_shell_t64s4_5", a = "_shellCompact_t64s4_9", t = "_shellExpanded_t64s4_13", s = "_content_t64s4_17", r = "_compactItems_t64s4_21", o = "_expandedItems_t64s4_25", l = "_measureRow_t64s4_29", m = "_measureLayer_t64s4_33", v = "_chevron_t64s4_37", d = {
|
|
2
|
+
root: e,
|
|
3
|
+
shell: _,
|
|
4
|
+
shellCompact: a,
|
|
5
|
+
shellExpanded: t,
|
|
6
|
+
content: s,
|
|
7
|
+
compactItems: r,
|
|
8
|
+
expandedItems: o,
|
|
9
|
+
measureRow: l,
|
|
10
|
+
measureLayer: m,
|
|
11
|
+
chevron: v
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
d as default
|
|
15
|
+
};
|
|
@@ -1,146 +1,147 @@
|
|
|
1
|
-
import { cn as
|
|
2
|
-
import { ChevronDownIcon as
|
|
3
|
-
import { ChevronUpIcon as
|
|
4
|
-
import
|
|
5
|
-
import {
|
|
6
|
-
|
|
1
|
+
import { cn as I } from "../../../helpers/cn.js";
|
|
2
|
+
import { ChevronDownIcon as z } from "../../icons/chevron-down-icon/ChevronDownIcon.js";
|
|
3
|
+
import { ChevronUpIcon as B } from "../../icons/chevron-up-icon/ChevronUpIcon.js";
|
|
4
|
+
import h from "./Pathfinder.module.js";
|
|
5
|
+
import { useCallback as R, useEffect as y, useLayoutEffect as F, useMemo as C, useRef as w, useState as x, useSyncExternalStore as O } from "react";
|
|
6
|
+
import { Fragment as j, jsx as e, jsxs as N } from "react/jsx-runtime";
|
|
7
|
+
var P = typeof window < "u" ? F : y;
|
|
7
8
|
function D() {
|
|
8
|
-
const [i, n] =
|
|
9
|
+
const [i, n] = x(null), d = R((t) => {
|
|
9
10
|
n(t);
|
|
10
|
-
}, []),
|
|
11
|
+
}, []), s = R(() => i ? Math.floor(i.getBoundingClientRect().width) : 0, [i]);
|
|
11
12
|
return {
|
|
12
|
-
ref:
|
|
13
|
-
width:
|
|
13
|
+
ref: d,
|
|
14
|
+
width: O(R((t) => {
|
|
14
15
|
if (!i || typeof ResizeObserver > "u") return () => {
|
|
15
16
|
console.log("Node is missing or ResizeObserver is undefined");
|
|
16
17
|
};
|
|
17
|
-
let
|
|
18
|
-
const
|
|
19
|
-
cancelAnimationFrame(
|
|
18
|
+
let a = 0;
|
|
19
|
+
const o = new ResizeObserver(() => {
|
|
20
|
+
cancelAnimationFrame(a), a = requestAnimationFrame(t);
|
|
20
21
|
});
|
|
21
|
-
return
|
|
22
|
-
cancelAnimationFrame(
|
|
22
|
+
return o.observe(i), () => {
|
|
23
|
+
cancelAnimationFrame(a), o.disconnect();
|
|
23
24
|
};
|
|
24
|
-
}, [i]),
|
|
25
|
+
}, [i]), s, () => 0)
|
|
25
26
|
};
|
|
26
27
|
}
|
|
27
|
-
function
|
|
28
|
-
return [...i].sort((n,
|
|
29
|
-
const
|
|
30
|
-
return
|
|
28
|
+
function M(i) {
|
|
29
|
+
return [...i].sort((n, d) => {
|
|
30
|
+
const s = n.order ?? 0, t = d.order ?? 0;
|
|
31
|
+
return s !== t ? s - t : n.id.localeCompare(d.id);
|
|
31
32
|
});
|
|
32
33
|
}
|
|
33
|
-
function
|
|
34
|
-
const { items: n, leadSlot:
|
|
34
|
+
function _(i) {
|
|
35
|
+
const { items: n, leadSlot: d, actionSlot: s } = i, t = w({}), a = w(null), o = w(null), [l, p] = x({
|
|
35
36
|
itemWidths: {},
|
|
36
37
|
leadWidth: 0,
|
|
37
38
|
actionWidth: 0
|
|
38
|
-
}),
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
}), f = w(l);
|
|
40
|
+
y(() => {
|
|
41
|
+
f.current = l;
|
|
41
42
|
}, [l]);
|
|
42
|
-
const
|
|
43
|
-
t.current[
|
|
43
|
+
const v = R((c) => (m) => {
|
|
44
|
+
t.current[c] = m;
|
|
44
45
|
}, []);
|
|
45
|
-
return
|
|
46
|
-
const
|
|
47
|
-
for (const
|
|
48
|
-
const
|
|
49
|
-
|
|
46
|
+
return P(() => {
|
|
47
|
+
const c = {};
|
|
48
|
+
for (const u of n) {
|
|
49
|
+
const k = t.current[u.id], r = Math.ceil(k?.getBoundingClientRect().width ?? u.estimatedWidth ?? 0);
|
|
50
|
+
c[u.id] = r;
|
|
50
51
|
}
|
|
51
|
-
const
|
|
52
|
-
(!(Object.keys(
|
|
53
|
-
itemWidths:
|
|
54
|
-
leadWidth:
|
|
55
|
-
actionWidth:
|
|
52
|
+
const m = d ? Math.ceil(a.current?.getBoundingClientRect().width ?? 0) : 0, g = s ? Math.ceil(o.current?.getBoundingClientRect().width ?? 0) : 0, W = f.current;
|
|
53
|
+
(!(Object.keys(W.itemWidths).length === Object.keys(c).length && n.every((u) => W.itemWidths[u.id] === c[u.id])) || W.leadWidth !== m || W.actionWidth !== g) && p({
|
|
54
|
+
itemWidths: c,
|
|
55
|
+
leadWidth: m,
|
|
56
|
+
actionWidth: g
|
|
56
57
|
});
|
|
57
58
|
}, [
|
|
58
59
|
n,
|
|
59
|
-
|
|
60
|
-
|
|
60
|
+
d,
|
|
61
|
+
s
|
|
61
62
|
]), {
|
|
62
63
|
measurements: l,
|
|
63
|
-
registerItemRef:
|
|
64
|
-
leadRef:
|
|
65
|
-
actionRef:
|
|
64
|
+
registerItemRef: v,
|
|
65
|
+
leadRef: a,
|
|
66
|
+
actionRef: o
|
|
66
67
|
};
|
|
67
68
|
}
|
|
68
69
|
function q(i) {
|
|
69
|
-
const { items: n, availableWidth:
|
|
70
|
-
let
|
|
71
|
-
for (const l of
|
|
72
|
-
const p = Math.max(0, t[l.id] ?? l.estimatedWidth ?? 0),
|
|
73
|
-
if (
|
|
74
|
-
|
|
70
|
+
const { items: n, availableWidth: d, gapPx: s, itemWidths: t } = i, a = [];
|
|
71
|
+
let o = 0;
|
|
72
|
+
for (const l of M(n)) {
|
|
73
|
+
const p = Math.max(0, t[l.id] ?? l.estimatedWidth ?? 0), f = a.length === 0 ? p : o + s + p;
|
|
74
|
+
if (f > d) break;
|
|
75
|
+
a.push(l), o = f;
|
|
75
76
|
}
|
|
76
|
-
return
|
|
77
|
+
return a;
|
|
77
78
|
}
|
|
78
|
-
function
|
|
79
|
-
return /* @__PURE__ */ e(
|
|
79
|
+
function b({ item: i, compact: n }) {
|
|
80
|
+
return /* @__PURE__ */ e(j, { children: i.render({ compact: n }) });
|
|
80
81
|
}
|
|
81
|
-
function
|
|
82
|
-
const { ref: p, width:
|
|
83
|
-
items:
|
|
84
|
-
leadSlot:
|
|
82
|
+
function Q({ items: i, expanded: n, onToggleExpanded: d, leadSlot: s, actionSlot: t, className: a, leadReservePx: o = 140, actionReservePx: l = 44 }) {
|
|
83
|
+
const { ref: p, width: f } = D(), v = !n, c = C(() => M(i), [i]), { measurements: m, registerItemRef: g, leadRef: W, actionRef: u } = _({
|
|
84
|
+
items: c,
|
|
85
|
+
leadSlot: s,
|
|
85
86
|
actionSlot: t
|
|
86
|
-
}),
|
|
87
|
-
if (n) return
|
|
88
|
-
const
|
|
87
|
+
}), k = C(() => {
|
|
88
|
+
if (n) return c;
|
|
89
|
+
const r = 24, A = 40, E = s ? Math.max(o, m.leadWidth + 12) : 0, L = t ? Math.max(l, m.actionWidth) : 0;
|
|
89
90
|
return q({
|
|
90
|
-
items:
|
|
91
|
-
availableWidth: Math.max(0,
|
|
91
|
+
items: c,
|
|
92
|
+
availableWidth: Math.max(0, f - r - A - E - L - 24),
|
|
92
93
|
gapPx: 12,
|
|
93
|
-
itemWidths:
|
|
94
|
+
itemWidths: m.itemWidths
|
|
94
95
|
});
|
|
95
96
|
}, [
|
|
96
97
|
n,
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
98
|
+
c,
|
|
99
|
+
f,
|
|
100
|
+
s,
|
|
100
101
|
t,
|
|
101
|
-
|
|
102
|
+
o,
|
|
102
103
|
l,
|
|
103
|
-
|
|
104
|
+
m
|
|
104
105
|
]);
|
|
105
|
-
return /* @__PURE__ */
|
|
106
|
+
return /* @__PURE__ */ N("div", {
|
|
106
107
|
ref: p,
|
|
107
|
-
className:
|
|
108
|
+
className: I(h.root, v ? "overflow-hidden" : "overflow-visible", a),
|
|
108
109
|
"aria-expanded": n,
|
|
109
110
|
role: "button",
|
|
110
111
|
tabIndex: 0,
|
|
111
|
-
onClick:
|
|
112
|
-
onKeyDown: (
|
|
113
|
-
(
|
|
112
|
+
onClick: d,
|
|
113
|
+
onKeyDown: (r) => {
|
|
114
|
+
(r.key === "Enter" || r.key === " ") && (r.preventDefault(), d());
|
|
114
115
|
},
|
|
115
116
|
children: [
|
|
116
|
-
/* @__PURE__ */
|
|
117
|
-
className:
|
|
118
|
-
children: [
|
|
117
|
+
/* @__PURE__ */ N("div", {
|
|
118
|
+
className: I(h.shell, v ? h.shellCompact : h.shellExpanded),
|
|
119
|
+
children: [s ? /* @__PURE__ */ e("div", {
|
|
119
120
|
className: "shrink-0",
|
|
120
|
-
children:
|
|
121
|
+
children: s
|
|
121
122
|
}) : null, /* @__PURE__ */ e("div", {
|
|
122
|
-
className:
|
|
123
|
-
children:
|
|
124
|
-
className:
|
|
125
|
-
children:
|
|
123
|
+
className: h.content,
|
|
124
|
+
children: v ? /* @__PURE__ */ e("div", {
|
|
125
|
+
className: h.compactItems,
|
|
126
|
+
children: k.map((r) => /* @__PURE__ */ e("div", {
|
|
126
127
|
className: "shrink-0 whitespace-nowrap",
|
|
127
|
-
children: /* @__PURE__ */ e(
|
|
128
|
-
item:
|
|
129
|
-
compact:
|
|
128
|
+
children: /* @__PURE__ */ e(b, {
|
|
129
|
+
item: r,
|
|
130
|
+
compact: v
|
|
130
131
|
})
|
|
131
|
-
},
|
|
132
|
-
}) : /* @__PURE__ */
|
|
133
|
-
className:
|
|
134
|
-
children: [
|
|
132
|
+
}, r.id))
|
|
133
|
+
}) : /* @__PURE__ */ N("div", {
|
|
134
|
+
className: h.expandedItems,
|
|
135
|
+
children: [c.map((r) => /* @__PURE__ */ e("div", {
|
|
135
136
|
className: "shrink-0 whitespace-nowrap",
|
|
136
|
-
children: /* @__PURE__ */ e(
|
|
137
|
-
item:
|
|
138
|
-
compact:
|
|
137
|
+
children: /* @__PURE__ */ e(b, {
|
|
138
|
+
item: r,
|
|
139
|
+
compact: v
|
|
139
140
|
})
|
|
140
|
-
},
|
|
141
|
+
}, r.id)), t ? /* @__PURE__ */ e("div", {
|
|
141
142
|
className: "shrink-0",
|
|
142
143
|
children: /* @__PURE__ */ e("div", {
|
|
143
|
-
ref:
|
|
144
|
+
ref: u,
|
|
144
145
|
children: t
|
|
145
146
|
})
|
|
146
147
|
}) : null]
|
|
@@ -148,34 +149,34 @@ function J({ items: i, expanded: n, onToggleExpanded: o, leadSlot: r, actionSlot
|
|
|
148
149
|
})]
|
|
149
150
|
}),
|
|
150
151
|
/* @__PURE__ */ e("div", {
|
|
151
|
-
className:
|
|
152
|
-
children: n ? /* @__PURE__ */ e(
|
|
152
|
+
className: h.chevron,
|
|
153
|
+
children: n ? /* @__PURE__ */ e(B, { className: "size-6" }) : /* @__PURE__ */ e(z, { className: "size-6" })
|
|
153
154
|
}),
|
|
154
155
|
/* @__PURE__ */ e("div", {
|
|
155
156
|
"aria-hidden": !0,
|
|
156
|
-
className:
|
|
157
|
-
children: /* @__PURE__ */
|
|
158
|
-
className:
|
|
157
|
+
className: h.measureLayer,
|
|
158
|
+
children: /* @__PURE__ */ N("div", {
|
|
159
|
+
className: h.measureRow,
|
|
159
160
|
children: [
|
|
160
|
-
|
|
161
|
+
s ? /* @__PURE__ */ e("div", {
|
|
161
162
|
className: "shrink-0",
|
|
162
163
|
children: /* @__PURE__ */ e("div", {
|
|
163
|
-
ref:
|
|
164
|
-
children:
|
|
164
|
+
ref: W,
|
|
165
|
+
children: s
|
|
165
166
|
})
|
|
166
167
|
}) : null,
|
|
167
|
-
|
|
168
|
-
ref:
|
|
168
|
+
c.map((r) => /* @__PURE__ */ e("div", {
|
|
169
|
+
ref: g(r.id),
|
|
169
170
|
className: "shrink-0 whitespace-nowrap",
|
|
170
|
-
children: /* @__PURE__ */ e(
|
|
171
|
-
item:
|
|
171
|
+
children: /* @__PURE__ */ e(b, {
|
|
172
|
+
item: r,
|
|
172
173
|
compact: !0
|
|
173
174
|
})
|
|
174
|
-
},
|
|
175
|
+
}, r.id)),
|
|
175
176
|
t ? /* @__PURE__ */ e("div", {
|
|
176
177
|
className: "shrink-0",
|
|
177
178
|
children: /* @__PURE__ */ e("div", {
|
|
178
|
-
ref:
|
|
179
|
+
ref: u,
|
|
179
180
|
children: t
|
|
180
181
|
})
|
|
181
182
|
}) : null
|
|
@@ -186,5 +187,5 @@ function J({ items: i, expanded: n, onToggleExpanded: o, leadSlot: r, actionSlot
|
|
|
186
187
|
});
|
|
187
188
|
}
|
|
188
189
|
export {
|
|
189
|
-
|
|
190
|
+
Q as PathfinderCard
|
|
190
191
|
};
|
|
@@ -8,44 +8,44 @@ import { StyledTooltip as j } from "../../../data-display/tooltip/StyledTooltip.
|
|
|
8
8
|
import { StyledInputField as le } from "../../input-field/StyledInputField.js";
|
|
9
9
|
import { StyledSelectAutocomplete as ae } from "../../select-autocomplete/StyledSelectAutocomplete.js";
|
|
10
10
|
import { DynamicInteractiveChipGroup as re } from "./DynamicInteractiveChipGroup.js";
|
|
11
|
-
import { createElement as B, forwardRef as oe, useCallback as
|
|
11
|
+
import { createElement as B, forwardRef as oe, useCallback as b, useState as ne } from "react";
|
|
12
12
|
import { Fragment as L, jsx as l, jsxs as T } from "react/jsx-runtime";
|
|
13
13
|
var ye = oe((S, q) => {
|
|
14
|
-
const [E, k] = ne(!1), { options:
|
|
15
|
-
const t =
|
|
14
|
+
const [E, k] = ne(!1), { options: f, dataTest: g, value: x, readOnly: u, multiple: o, required: F, onChange: y, size: z, title: C, noOptionsText: K, placeholder: _, disabled: I, helperText: H, disableHelperText: R, error: G, valueKey: A = "value", labelKey: W = "label", renderLabel: i, getOptionTooltip: N, startAdornment: J, autocompleteProps: n, loading: m, maxTags: M, onFocus: Q, onBlur: U } = S, v = f.length < 11, s = (e) => typeof e == "object" ? e?.[W]?.toString() ?? "" : e?.toString() ?? "", p = b((e) => typeof e == "object" ? e?.[A] : e, [A]), P = b((e, t) => p(e) === p(t), [p]), w = (e) => {
|
|
15
|
+
const t = p(e);
|
|
16
16
|
return t == null ? "" : typeof t == "string" || typeof t == "number" || typeof t == "boolean" ? String(t) : e == null ? "" : s(e);
|
|
17
|
-
}, V =
|
|
17
|
+
}, V = b((e) => {
|
|
18
18
|
k(!0), n?.onOpen?.(e);
|
|
19
|
-
}, [n]), X =
|
|
19
|
+
}, [n]), X = b((e, t) => {
|
|
20
20
|
k(!1), n?.onClose?.(e, t);
|
|
21
21
|
}, [n]);
|
|
22
22
|
if (o && u) return /* @__PURE__ */ l(re, { ...S });
|
|
23
|
-
const O =
|
|
23
|
+
const O = C ? `${g}-title` : void 0;
|
|
24
24
|
return /* @__PURE__ */ T("div", {
|
|
25
25
|
className: "flex w-full flex-col gap-y-1",
|
|
26
|
-
children: [
|
|
26
|
+
children: [C && /* @__PURE__ */ l("span", {
|
|
27
27
|
id: O,
|
|
28
28
|
className: "text-base font-semibold text-delta-800",
|
|
29
|
-
children:
|
|
29
|
+
children: C
|
|
30
30
|
}), /* @__PURE__ */ l(ae, {
|
|
31
31
|
open: E,
|
|
32
32
|
onOpen: V,
|
|
33
33
|
onClose: X,
|
|
34
34
|
disableCloseOnSelect: o,
|
|
35
|
-
dataTest:
|
|
35
|
+
dataTest: g,
|
|
36
36
|
disabled: !!I || !!m,
|
|
37
37
|
noOptionsText: K,
|
|
38
38
|
loading: m,
|
|
39
39
|
readOnly: u,
|
|
40
|
-
value:
|
|
40
|
+
value: x,
|
|
41
41
|
size: z,
|
|
42
42
|
disableClearable: F,
|
|
43
|
-
options:
|
|
43
|
+
options: f,
|
|
44
44
|
fullWidth: !0,
|
|
45
45
|
classes: { listbox: "max-h-[300px]" },
|
|
46
46
|
getOptionLabel: n?.getOptionLabel ?? s,
|
|
47
47
|
onChange: (e, t) => {
|
|
48
|
-
|
|
48
|
+
y(t);
|
|
49
49
|
},
|
|
50
50
|
filterSelectedOptions: !1,
|
|
51
51
|
isOptionEqualToValue: n?.isOptionEqualToValue ?? P,
|
|
@@ -53,7 +53,7 @@ var ye = oe((S, q) => {
|
|
|
53
53
|
multiple: o,
|
|
54
54
|
renderValue: o ? (e) => {
|
|
55
55
|
if (!Array.isArray(e)) return null;
|
|
56
|
-
const t = e, c = M ??
|
|
56
|
+
const t = e, c = M ?? f.length, a = t.slice(0, c), d = t.length - c;
|
|
57
57
|
return [...a.map((r) => /* @__PURE__ */ l($, {
|
|
58
58
|
dataTest: `${w(r)}-chip`,
|
|
59
59
|
readOnly: u,
|
|
@@ -65,7 +65,7 @@ var ye = oe((S, q) => {
|
|
|
65
65
|
},
|
|
66
66
|
disabled: !!I || !!m,
|
|
67
67
|
onDelete: () => {
|
|
68
|
-
Array.isArray(
|
|
68
|
+
Array.isArray(x) && y(x.filter((h) => !P(h, r)));
|
|
69
69
|
}
|
|
70
70
|
}, w(r))), d > 0 ? /* @__PURE__ */ l($, {
|
|
71
71
|
dataTest: "remaining-count-tag-chip",
|
|
@@ -84,11 +84,11 @@ var ye = oe((S, q) => {
|
|
|
84
84
|
renderOption: (e, t, c) => {
|
|
85
85
|
const a = typeof t == "object" ? !!t?.disabled : !1, d = N ? N(t) : null;
|
|
86
86
|
if (o) {
|
|
87
|
-
const
|
|
87
|
+
const h = c.selected;
|
|
88
88
|
return /* @__PURE__ */ B("li", {
|
|
89
89
|
...e,
|
|
90
90
|
role: "option",
|
|
91
|
-
"aria-selected":
|
|
91
|
+
"aria-selected": h,
|
|
92
92
|
key: e.id,
|
|
93
93
|
onClick: a ? void 0 : e.onClick,
|
|
94
94
|
className: D("flex min-h-10 cursor-pointer items-center gap-x-1 bg-white px-2 text-base aria-selected:bg-gama-50 hover:bg-gama-50", a && "cursor-not-allowed bg-delta-50 aria-selected:!bg-delta-50 hover:!bg-delta-50 [&_*]:cursor-not-allowed"),
|
|
@@ -102,7 +102,7 @@ var ye = oe((S, q) => {
|
|
|
102
102
|
size: "small",
|
|
103
103
|
decorative: !0,
|
|
104
104
|
className: "min-w-[36px]",
|
|
105
|
-
checked:
|
|
105
|
+
checked: h
|
|
106
106
|
}), i ? i(t) : /* @__PURE__ */ l("span", {
|
|
107
107
|
className: "h-fit text-base text-delta-700",
|
|
108
108
|
children: s(t)
|
|
@@ -135,7 +135,7 @@ var ye = oe((S, q) => {
|
|
|
135
135
|
}));
|
|
136
136
|
},
|
|
137
137
|
renderInput: (e) => /* @__PURE__ */ l(le, {
|
|
138
|
-
dataTest: `${
|
|
138
|
+
dataTest: `${g}-input-field`,
|
|
139
139
|
...e,
|
|
140
140
|
inputRef: q,
|
|
141
141
|
error: G,
|
|
@@ -146,19 +146,19 @@ var ye = oe((S, q) => {
|
|
|
146
146
|
readOnly: u,
|
|
147
147
|
onFocus: Q,
|
|
148
148
|
onBlur: U,
|
|
149
|
-
onKeyDown:
|
|
150
|
-
autoComplete:
|
|
149
|
+
onKeyDown: v ? (t) => t.preventDefault() : void 0,
|
|
150
|
+
autoComplete: "off",
|
|
151
151
|
slotProps: {
|
|
152
152
|
...e.slotProps,
|
|
153
153
|
input: {
|
|
154
154
|
...e.slotProps?.input ?? {},
|
|
155
155
|
startAdornment: J ?? e.slotProps?.input?.startAdornment,
|
|
156
|
-
style:
|
|
156
|
+
style: v ? { caretColor: "transparent" } : {}
|
|
157
157
|
},
|
|
158
158
|
htmlInput: {
|
|
159
159
|
...e.slotProps?.htmlInput ?? {},
|
|
160
160
|
...O ? { "aria-labelledby": O } : {},
|
|
161
|
-
style:
|
|
161
|
+
style: v ? { caretColor: "transparent" } : {}
|
|
162
162
|
}
|
|
163
163
|
}
|
|
164
164
|
}),
|