@recursica/mantine-adapter 0.26.0 → 0.27.0
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/CHANGELOG.md +17 -0
- package/dist/mantine-adapter.cjs +1 -1
- package/dist/mantine-adapter.cjs.map +1 -1
- package/dist/mantine-adapter.css +1 -1
- package/dist/mantine-adapter.js +1289 -1254
- package/dist/mantine-adapter.js.map +1 -1
- package/dist/src/components/Accordion/Accordion.d.ts +3 -4
- package/dist/src/components/AutoComplete/AutoComplete.d.ts +4 -6
- package/dist/src/components/Avatar/Avatar.d.ts +2 -3
- package/dist/src/components/Badge/Badge.d.ts +1 -1
- package/dist/src/components/Button/Button.d.ts +1 -1
- package/dist/src/components/Card/Card.d.ts +10 -2
- package/dist/src/components/Checkbox/CheckboxGroup.d.ts +2 -6
- package/dist/src/components/Container/Container.d.ts +14 -2
- package/dist/src/components/DatePicker/DatePicker.d.ts +1 -5
- package/dist/src/components/Dropdown/Dropdown.d.ts +1 -1
- package/dist/src/components/Flex/Flex.d.ts +26 -3
- package/dist/src/components/FormControlWrapper/FormControlWrapper.d.ts +1 -0
- package/dist/src/components/Group/Group.d.ts +14 -2
- package/dist/src/components/Link/Link.d.ts +3 -4
- package/dist/src/components/Menu/Menu.d.ts +2 -2
- package/dist/src/components/Panel/Panel.d.ts +6 -4
- package/dist/src/components/Radio/RadioGroup.d.ts +2 -6
- package/dist/src/components/Slider/Slider.d.ts +1 -5
- package/dist/src/components/Stack/Stack.d.ts +27 -4
- package/dist/src/components/Stepper/Stepper.d.ts +4 -2
- package/dist/src/components/Switch/SwitchGroup.d.ts +2 -6
- package/dist/src/components/Table/Table.d.ts +16 -3
- package/dist/src/components/Tabs/Tabs.d.ts +4 -2
- package/dist/src/components/Text/Text.d.ts +3 -2
- package/dist/src/components/TextArea/TextArea.d.ts +1 -1
- package/dist/src/components/TextField/TextField.d.ts +1 -5
- package/dist/src/components/Title/Title.d.ts +2 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/utils/filterStylingProps.d.ts +1 -1
- package/package.json +2 -2
- package/src/components/Accordion/Accordion.tsx +1 -1
- package/src/components/AutoComplete/AutoComplete.tsx +13 -4
- package/src/components/Avatar/Avatar.tsx +1 -1
- package/src/components/Card/CARD_IMPLEMENTATION_NOTES.md +7 -0
- package/src/components/Card/Card.module.css +1 -0
- package/src/components/Card/Card.tsx +25 -1
- package/src/components/Checkbox/CheckboxGroup.tsx +6 -3
- package/src/components/Container/Container.tsx +4 -2
- package/src/components/DatePicker/DatePicker.tsx +1 -3
- package/src/components/Dropdown/Dropdown.tsx +4 -11
- package/src/components/Flex/Flex.tsx +7 -2
- package/src/components/FormControlWrapper/FormControlWrapper.tsx +1 -0
- package/src/components/Group/Group.tsx +7 -2
- package/src/components/Link/Link.tsx +3 -3
- package/src/components/Panel/PANEL_IMPLEMENTATION_NOTES.md +3 -3
- package/src/components/Panel/Panel.stories.tsx +8 -8
- package/src/components/Panel/Panel.tsx +11 -4
- package/src/components/Radio/RadioGroup.tsx +6 -3
- package/src/components/ReadOnlyField/ReadOnlyField.tsx +5 -1
- package/src/components/Stack/Stack.tsx +7 -2
- package/src/components/Stepper/Stepper.tsx +5 -1
- package/src/components/Switch/SwitchGroup.tsx +6 -3
- package/src/components/Table/Table.module.css +7 -0
- package/src/components/Table/Table.stories.tsx +33 -3
- package/src/components/Table/Table.tsx +56 -5
- package/src/components/Tabs/Tabs.tsx +5 -1
- package/src/components/Text/Text.tsx +3 -1
- package/src/components/TextArea/TextArea.tsx +2 -9
- package/src/components/Title/Title.tsx +3 -1
- package/src/index.ts +14 -0
- package/src/utils/filterStylingProps.ts +1 -0
package/dist/mantine-adapter.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { jsx as s, jsxs as z, Fragment as
|
|
2
|
-
import j, { forwardRef as h, useId as
|
|
3
|
-
import { Accordion as
|
|
4
|
-
import { DatePickerInput as
|
|
5
|
-
const
|
|
1
|
+
import { jsx as s, jsxs as z, Fragment as Oe } from "react/jsx-runtime";
|
|
2
|
+
import j, { forwardRef as h, useId as Kt, useEffect as Po, useState as fo } from "react";
|
|
3
|
+
import { Accordion as qe, Input as wo, Box as to, Autocomplete as Xt, Avatar as Jt, createPolymorphicComponent as te, Badge as Qt, Breadcrumbs as ea, Loader as oa, Button as ta, Card as Ue, Checkbox as go, Chip as aa, Container as ra, Select as sa, Flex as na, Group as la, HoverCard as ao, Anchor as ia, Menu as ae, Modal as K, NumberInput as ca, Pagination as ie, Drawer as ce, Popover as ro, Radio as To, SegmentedControl as da, Slider as pa, Stack as _a, Stepper as eo, Switch as So, CheckIcon as ma, CloseIcon as ua, Table as de, Tabs as Ze, Text as ba, Textarea as ya, TimelineItem as fa, Timeline as Na, Title as ha, Notification as $a, Tooltip as so } from "@mantine/core";
|
|
4
|
+
import { DatePickerInput as va } from "@mantine/dates";
|
|
5
|
+
const Ca = [
|
|
6
6
|
"className",
|
|
7
7
|
"classNames",
|
|
8
8
|
"style",
|
|
@@ -46,7 +46,7 @@ const ha = [
|
|
|
46
46
|
"mih",
|
|
47
47
|
"mah"
|
|
48
48
|
// Dimensions
|
|
49
|
-
],
|
|
49
|
+
], xo = /* @__PURE__ */ new Set([
|
|
50
50
|
"m",
|
|
51
51
|
"my",
|
|
52
52
|
"mx",
|
|
@@ -61,7 +61,7 @@ const ha = [
|
|
|
61
61
|
"left",
|
|
62
62
|
"bottom",
|
|
63
63
|
"right"
|
|
64
|
-
]),
|
|
64
|
+
]), je = {
|
|
65
65
|
"rec-none": "var(--recursica_brand_dimensions_general_none)",
|
|
66
66
|
"rec-sm": "var(--recursica_brand_dimensions_general_sm)",
|
|
67
67
|
"rec-default": "var(--recursica_brand_dimensions_general_default)",
|
|
@@ -70,38 +70,38 @@ const ha = [
|
|
|
70
70
|
"rec-xl": "var(--recursica_brand_dimensions_general_xl)",
|
|
71
71
|
"rec-2xl": "var(--recursica_brand_dimensions_general_2xl)"
|
|
72
72
|
};
|
|
73
|
-
function
|
|
74
|
-
const e = { ...
|
|
73
|
+
function no(i) {
|
|
74
|
+
const e = { ...i };
|
|
75
75
|
for (const [r, a] of Object.entries(e))
|
|
76
|
-
typeof a == "string" && a.startsWith("rec-") &&
|
|
76
|
+
typeof a == "string" && a.startsWith("rec-") && xo.has(r) && a in je && (e[r] = je[a]);
|
|
77
77
|
return e;
|
|
78
78
|
}
|
|
79
|
-
function
|
|
79
|
+
function N(i, e) {
|
|
80
80
|
if (e)
|
|
81
|
-
return
|
|
82
|
-
const r = { ...
|
|
83
|
-
for (const a of
|
|
81
|
+
return i;
|
|
82
|
+
const r = { ...i };
|
|
83
|
+
for (const a of Ca)
|
|
84
84
|
a in r && delete r[a];
|
|
85
|
-
for (const [a,
|
|
86
|
-
typeof
|
|
85
|
+
for (const [a, o] of Object.entries(r))
|
|
86
|
+
typeof o == "string" && o.startsWith("rec-") && xo.has(a) && o in je && (r[a] = je[o]);
|
|
87
87
|
return r;
|
|
88
88
|
}
|
|
89
|
-
const
|
|
90
|
-
root:
|
|
91
|
-
item:
|
|
92
|
-
noDivider:
|
|
93
|
-
control:
|
|
94
|
-
label:
|
|
95
|
-
chevron:
|
|
96
|
-
iconLeftWrapper:
|
|
97
|
-
panel:
|
|
98
|
-
content:
|
|
99
|
-
},
|
|
89
|
+
const Pa = "Accordion-module__root___Dem6d", wa = "Accordion-module__item___7ryVk", ga = "Accordion-module__noDivider___Ni2tT", Ta = "Accordion-module__control___b4wgX", Sa = "Accordion-module__label___Ss7uW", xa = "Accordion-module__chevron___i-HVZ", Aa = "Accordion-module__iconLeftWrapper___5oLen", Oa = "Accordion-module__panel___Wx50w", Wa = "Accordion-module__content___PEM9t", se = {
|
|
90
|
+
root: Pa,
|
|
91
|
+
item: wa,
|
|
92
|
+
noDivider: ga,
|
|
93
|
+
control: Ta,
|
|
94
|
+
label: Sa,
|
|
95
|
+
chevron: xa,
|
|
96
|
+
iconLeftWrapper: Aa,
|
|
97
|
+
panel: Oa,
|
|
98
|
+
content: Wa
|
|
99
|
+
}, Ao = function({
|
|
100
100
|
variant: e = "unstyled",
|
|
101
101
|
overStyled: r = !1,
|
|
102
102
|
...a
|
|
103
103
|
}) {
|
|
104
|
-
const
|
|
104
|
+
const o = N(a, r), t = {
|
|
105
105
|
root: se.root,
|
|
106
106
|
item: se.item,
|
|
107
107
|
control: se.control,
|
|
@@ -109,94 +109,94 @@ const $a = "Accordion-module__root___Dem6d", va = "Accordion-module__item___7ryV
|
|
|
109
109
|
chevron: se.chevron,
|
|
110
110
|
panel: se.panel,
|
|
111
111
|
content: se.content
|
|
112
|
-
}, n =
|
|
112
|
+
}, n = o.classNames;
|
|
113
113
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
114
114
|
const c = n;
|
|
115
115
|
Object.keys(c).forEach((d) => {
|
|
116
|
-
|
|
116
|
+
t[d] ? t[d] = `${t[d]} ${c[d]}` : t[d] = c[d];
|
|
117
117
|
});
|
|
118
118
|
}
|
|
119
|
-
const
|
|
119
|
+
const l = o.className;
|
|
120
120
|
return /* @__PURE__ */ s(
|
|
121
|
-
|
|
121
|
+
qe,
|
|
122
122
|
{
|
|
123
123
|
variant: e,
|
|
124
|
-
className:
|
|
125
|
-
classNames:
|
|
126
|
-
...
|
|
124
|
+
className: l,
|
|
125
|
+
classNames: t,
|
|
126
|
+
...o
|
|
127
127
|
}
|
|
128
128
|
);
|
|
129
129
|
};
|
|
130
|
-
|
|
131
|
-
const
|
|
132
|
-
const c =
|
|
130
|
+
Ao.displayName = "Accordion";
|
|
131
|
+
const Oo = h(function({ title: e, leftIcon: r, divider: a = !0, children: o, overStyled: t = !1, ...n }, l) {
|
|
132
|
+
const c = N(n, t), d = c.className, p = [a ? void 0 : se.noDivider, d].filter(Boolean).join(" ") || void 0;
|
|
133
133
|
return /* @__PURE__ */ s(
|
|
134
|
-
|
|
134
|
+
qe.Item,
|
|
135
135
|
{
|
|
136
|
-
ref:
|
|
136
|
+
ref: l,
|
|
137
137
|
className: p,
|
|
138
138
|
...c,
|
|
139
|
-
children: e ? /* @__PURE__ */ z(
|
|
140
|
-
/* @__PURE__ */ s(
|
|
141
|
-
/* @__PURE__ */ s(
|
|
142
|
-
] }) :
|
|
139
|
+
children: e ? /* @__PURE__ */ z(Oe, { children: [
|
|
140
|
+
/* @__PURE__ */ s(lo, { leftIcon: r, children: e }),
|
|
141
|
+
/* @__PURE__ */ s(io, { children: o })
|
|
142
|
+
] }) : o
|
|
143
143
|
}
|
|
144
144
|
);
|
|
145
145
|
});
|
|
146
|
-
|
|
147
|
-
const
|
|
148
|
-
const n =
|
|
146
|
+
Oo.displayName = "AccordionItem";
|
|
147
|
+
const lo = h(function({ leftIcon: e, children: r, overStyled: a = !1, ...o }, t) {
|
|
148
|
+
const n = N(o, a), l = n.className;
|
|
149
149
|
return /* @__PURE__ */ s(
|
|
150
|
-
|
|
150
|
+
qe.Control,
|
|
151
151
|
{
|
|
152
|
-
ref:
|
|
153
|
-
className:
|
|
152
|
+
ref: t,
|
|
153
|
+
className: l,
|
|
154
154
|
icon: e ? /* @__PURE__ */ s("span", { className: se.iconLeftWrapper, "aria-hidden": !0, children: e }) : void 0,
|
|
155
155
|
...n,
|
|
156
156
|
children: r
|
|
157
157
|
}
|
|
158
158
|
);
|
|
159
159
|
});
|
|
160
|
-
|
|
161
|
-
const
|
|
162
|
-
const
|
|
160
|
+
lo.displayName = "AccordionControl";
|
|
161
|
+
const io = h(function({ overStyled: e = !1, ...r }, a) {
|
|
162
|
+
const o = N(r, e), t = o.className;
|
|
163
163
|
return /* @__PURE__ */ s(
|
|
164
|
-
|
|
164
|
+
qe.Panel,
|
|
165
165
|
{
|
|
166
166
|
ref: a,
|
|
167
|
-
className:
|
|
168
|
-
...
|
|
167
|
+
className: t,
|
|
168
|
+
...o
|
|
169
169
|
}
|
|
170
170
|
);
|
|
171
171
|
});
|
|
172
|
-
|
|
173
|
-
const
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
const
|
|
178
|
-
root:
|
|
179
|
-
labelText:
|
|
180
|
-
required:
|
|
181
|
-
optionalText:
|
|
182
|
-
actionAreaWrapper:
|
|
183
|
-
editIconWrapper:
|
|
184
|
-
},
|
|
172
|
+
io.displayName = "AccordionPanel";
|
|
173
|
+
const co = Ao;
|
|
174
|
+
co.Item = Oo;
|
|
175
|
+
co.Control = lo;
|
|
176
|
+
co.Panel = io;
|
|
177
|
+
const La = "Label-module__root___e6HXZ", ka = "Label-module__labelText___rieFR", Ia = "Label-module__required___Ggrzc", Ma = "Label-module__optionalText___Y2yun", za = "Label-module__actionAreaWrapper___ELoZK", Ra = "Label-module__editIconWrapper___NG2xW", X = {
|
|
178
|
+
root: La,
|
|
179
|
+
labelText: ka,
|
|
180
|
+
required: Ia,
|
|
181
|
+
optionalText: Ma,
|
|
182
|
+
actionAreaWrapper: za,
|
|
183
|
+
editIconWrapper: Ra
|
|
184
|
+
}, Wo = h(function({
|
|
185
185
|
labelSize: e = "default",
|
|
186
186
|
labelAlignment: r,
|
|
187
187
|
required: a = !1,
|
|
188
|
-
labelOptionalText:
|
|
189
|
-
labelWithEditIcon:
|
|
188
|
+
labelOptionalText: o,
|
|
189
|
+
labelWithEditIcon: t,
|
|
190
190
|
labelActionArea: n,
|
|
191
|
-
onLabelEditClick:
|
|
191
|
+
onLabelEditClick: l,
|
|
192
192
|
children: c,
|
|
193
193
|
overStyled: d = !1,
|
|
194
194
|
...p
|
|
195
195
|
}, _) {
|
|
196
|
-
const
|
|
196
|
+
const f = r || "left";
|
|
197
197
|
let u;
|
|
198
|
-
a || (
|
|
199
|
-
const m =
|
|
198
|
+
a || (o === !0 ? u = "optional" : o && (u = o));
|
|
199
|
+
const m = N(p, d), b = m, P = {
|
|
200
200
|
label: X.root,
|
|
201
201
|
required: X.required
|
|
202
202
|
}, C = b.classNames;
|
|
@@ -206,25 +206,25 @@ const Aa = "Label-module__root___e6HXZ", Oa = "Label-module__labelText___rieFR",
|
|
|
206
206
|
}
|
|
207
207
|
const $ = b.className, y = $ ? `${X.root} ${$}` : X.root;
|
|
208
208
|
return /* @__PURE__ */ z(
|
|
209
|
-
|
|
209
|
+
wo.Label,
|
|
210
210
|
{
|
|
211
211
|
ref: _,
|
|
212
212
|
className: y,
|
|
213
213
|
classNames: P,
|
|
214
214
|
"data-size": e,
|
|
215
|
-
"data-alignment":
|
|
216
|
-
required: a && !
|
|
215
|
+
"data-alignment": f,
|
|
216
|
+
required: a && !t,
|
|
217
217
|
...m,
|
|
218
218
|
children: [
|
|
219
219
|
/* @__PURE__ */ s("span", { className: X.labelText, children: c }),
|
|
220
220
|
u && /* @__PURE__ */ s("span", { className: X.optionalText, children: typeof u == "string" ? `(${u})` : u }),
|
|
221
|
-
n ? /* @__PURE__ */ s("span", { className: X.actionAreaWrapper, children: n }) :
|
|
221
|
+
n ? /* @__PURE__ */ s("span", { className: X.actionAreaWrapper, children: n }) : t ? /* @__PURE__ */ s(
|
|
222
222
|
"button",
|
|
223
223
|
{
|
|
224
224
|
type: "button",
|
|
225
225
|
className: X.editIconWrapper,
|
|
226
226
|
"data-replaces-asterisk": a ? "true" : void 0,
|
|
227
|
-
onClick:
|
|
227
|
+
onClick: l,
|
|
228
228
|
"aria-label": "Edit",
|
|
229
229
|
children: /* @__PURE__ */ s(
|
|
230
230
|
"svg",
|
|
@@ -251,23 +251,23 @@ const Aa = "Label-module__root___e6HXZ", Oa = "Label-module__labelText___rieFR",
|
|
|
251
251
|
}
|
|
252
252
|
);
|
|
253
253
|
});
|
|
254
|
-
|
|
255
|
-
const
|
|
256
|
-
root:
|
|
257
|
-
leftSection:
|
|
258
|
-
rightSection:
|
|
254
|
+
Wo.displayName = "Label";
|
|
255
|
+
const Ba = "FormControlLayout-module__root___yNDhZ", Fa = "FormControlLayout-module__leftSection___GBM1r", Ea = "FormControlLayout-module__rightSection___bcL4v", Ee = {
|
|
256
|
+
root: Ba,
|
|
257
|
+
leftSection: Fa,
|
|
258
|
+
rightSection: Ea
|
|
259
259
|
}, Ne = h(function({
|
|
260
260
|
formLayout: e = "stacked",
|
|
261
261
|
labelSize: r = "default",
|
|
262
262
|
controlMaxWidth: a,
|
|
263
|
-
controlMinWidth:
|
|
264
|
-
leftSection:
|
|
263
|
+
controlMinWidth: o,
|
|
264
|
+
leftSection: t,
|
|
265
265
|
children: n,
|
|
266
|
-
className:
|
|
266
|
+
className: l,
|
|
267
267
|
style: c,
|
|
268
268
|
...d
|
|
269
269
|
}, p) {
|
|
270
|
-
const _ =
|
|
270
|
+
const _ = l ? `${Ee.root} ${l}` : Ee.root, u = t != null || e === "side-by-side";
|
|
271
271
|
return /* @__PURE__ */ z(
|
|
272
272
|
"div",
|
|
273
273
|
{
|
|
@@ -277,22 +277,22 @@ const Ma = "FormControlLayout-module__root___yNDhZ", za = "FormControlLayout-mod
|
|
|
277
277
|
style: {
|
|
278
278
|
...c,
|
|
279
279
|
...a ? { "--form-control-max-width": a } : {},
|
|
280
|
-
...
|
|
280
|
+
...o ? { "--form-control-min-width": o } : {}
|
|
281
281
|
},
|
|
282
282
|
...d,
|
|
283
283
|
children: [
|
|
284
|
-
u && /* @__PURE__ */ s("div", { className:
|
|
285
|
-
/* @__PURE__ */ s("div", { className:
|
|
284
|
+
u && /* @__PURE__ */ s("div", { className: Ee.leftSection, "data-size": r, children: t }),
|
|
285
|
+
/* @__PURE__ */ s("div", { className: Ee.rightSection, children: n })
|
|
286
286
|
]
|
|
287
287
|
}
|
|
288
288
|
);
|
|
289
289
|
});
|
|
290
290
|
Ne.displayName = "FormControlLayout";
|
|
291
|
-
const
|
|
292
|
-
root:
|
|
293
|
-
textWrapper:
|
|
294
|
-
iconWrapper:
|
|
295
|
-
},
|
|
291
|
+
const Va = "AssistiveElement-module__root___WhQ43", Da = "AssistiveElement-module__textWrapper___sfy5E", ja = "AssistiveElement-module__iconWrapper___gObRF", Qe = {
|
|
292
|
+
root: Va,
|
|
293
|
+
textWrapper: Da,
|
|
294
|
+
iconWrapper: ja
|
|
295
|
+
}, Ga = () => /* @__PURE__ */ z(
|
|
296
296
|
"svg",
|
|
297
297
|
{
|
|
298
298
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -308,7 +308,7 @@ const Ba = "AssistiveElement-module__root___WhQ43", Fa = "AssistiveElement-modul
|
|
|
308
308
|
/* @__PURE__ */ s("path", { d: "M12 8h.01" })
|
|
309
309
|
]
|
|
310
310
|
}
|
|
311
|
-
),
|
|
311
|
+
), Ha = () => /* @__PURE__ */ z(
|
|
312
312
|
"svg",
|
|
313
313
|
{
|
|
314
314
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -324,47 +324,47 @@ const Ba = "AssistiveElement-module__root___WhQ43", Fa = "AssistiveElement-modul
|
|
|
324
324
|
/* @__PURE__ */ s("path", { d: "M12 17h.01" })
|
|
325
325
|
]
|
|
326
326
|
}
|
|
327
|
-
),
|
|
327
|
+
), oo = h(function({
|
|
328
328
|
assistiveVariant: e = "help",
|
|
329
329
|
assistiveWithIcon: r = !0,
|
|
330
330
|
children: a,
|
|
331
|
-
className:
|
|
332
|
-
overStyled:
|
|
331
|
+
className: o,
|
|
332
|
+
overStyled: t = !1,
|
|
333
333
|
...n
|
|
334
|
-
},
|
|
335
|
-
const d =
|
|
334
|
+
}, l) {
|
|
335
|
+
const d = N(n, t), p = Qe.root, _ = o ? `${p} ${o}` : p, f = e === "error" ? Ha : Ga;
|
|
336
336
|
return /* @__PURE__ */ z(
|
|
337
337
|
"div",
|
|
338
338
|
{
|
|
339
|
-
ref:
|
|
339
|
+
ref: l,
|
|
340
340
|
className: _,
|
|
341
341
|
"data-variant": e,
|
|
342
342
|
style: d.style,
|
|
343
343
|
...d,
|
|
344
344
|
children: [
|
|
345
|
-
r && /* @__PURE__ */ s("span", { className:
|
|
346
|
-
/* @__PURE__ */ s("span", { className:
|
|
345
|
+
r && /* @__PURE__ */ s("span", { className: Qe.iconWrapper, children: /* @__PURE__ */ s(f, {}) }),
|
|
346
|
+
/* @__PURE__ */ s("span", { className: Qe.textWrapper, children: a })
|
|
347
347
|
]
|
|
348
348
|
}
|
|
349
349
|
);
|
|
350
350
|
});
|
|
351
|
-
|
|
352
|
-
const
|
|
353
|
-
root:
|
|
354
|
-
inputSection:
|
|
355
|
-
},
|
|
351
|
+
oo.displayName = "AssistiveElement";
|
|
352
|
+
const qa = "FormControlWrapper-module__root___c-UHo", Ua = "FormControlWrapper-module__inputSection___HenXk", No = {
|
|
353
|
+
root: qa,
|
|
354
|
+
inputSection: Ua
|
|
355
|
+
}, Ge = h(function({
|
|
356
356
|
formLayout: e,
|
|
357
357
|
labelSize: r,
|
|
358
358
|
labelAlignment: a,
|
|
359
|
-
labelOptionalText:
|
|
360
|
-
labelWithEditIcon:
|
|
359
|
+
labelOptionalText: o,
|
|
360
|
+
labelWithEditIcon: t,
|
|
361
361
|
labelActionArea: n,
|
|
362
|
-
onLabelEditClick:
|
|
362
|
+
onLabelEditClick: l,
|
|
363
363
|
label: c,
|
|
364
364
|
description: d,
|
|
365
365
|
assistiveText: p,
|
|
366
366
|
assistiveWithIcon: _ = !0,
|
|
367
|
-
controlMaxWidth:
|
|
367
|
+
controlMaxWidth: f,
|
|
368
368
|
controlMinWidth: u,
|
|
369
369
|
error: m,
|
|
370
370
|
required: b,
|
|
@@ -377,21 +377,21 @@ const ja = "FormControlWrapper-module__root___c-UHo", Ga = "FormControlWrapper-m
|
|
|
377
377
|
// Extracted safely preventing bleeding into HTML domains
|
|
378
378
|
...I
|
|
379
379
|
}, x) {
|
|
380
|
-
const S =
|
|
380
|
+
const S = Kt(), O = C || `recursica-fc-${S}`, W = p || d, w = W ? `${O}-assistive` : void 0, g = m ? `${O}-error` : void 0, R = N(I, A), T = y || R.className, ve = No.root, Ce = T ? `${ve} ${T}` : ve, U = j.isValidElement($) ? j.cloneElement(
|
|
381
381
|
$,
|
|
382
382
|
{
|
|
383
383
|
...W && !$.props["aria-describedby"] ? { "aria-describedby": w } : {},
|
|
384
384
|
...m && !$.props["aria-errormessage"] ? { "aria-errormessage": g } : {}
|
|
385
385
|
}
|
|
386
|
-
) : $,
|
|
387
|
-
|
|
386
|
+
) : $, Xe = c ? /* @__PURE__ */ s(
|
|
387
|
+
Wo,
|
|
388
388
|
{
|
|
389
389
|
id: O,
|
|
390
390
|
labelAlignment: a,
|
|
391
|
-
labelOptionalText:
|
|
392
|
-
labelWithEditIcon:
|
|
391
|
+
labelOptionalText: o,
|
|
392
|
+
labelWithEditIcon: t,
|
|
393
393
|
labelActionArea: n,
|
|
394
|
-
onLabelEditClick:
|
|
394
|
+
onLabelEditClick: l,
|
|
395
395
|
required: P ?? b,
|
|
396
396
|
...v === "div" ? { as: "div" } : {},
|
|
397
397
|
children: c
|
|
@@ -401,17 +401,17 @@ const ja = "FormControlWrapper-module__root___c-UHo", Ga = "FormControlWrapper-m
|
|
|
401
401
|
Ne,
|
|
402
402
|
{
|
|
403
403
|
ref: x,
|
|
404
|
-
className:
|
|
404
|
+
className: Ce,
|
|
405
405
|
formLayout: e,
|
|
406
406
|
labelSize: r,
|
|
407
|
-
controlMaxWidth:
|
|
407
|
+
controlMaxWidth: f,
|
|
408
408
|
controlMinWidth: u,
|
|
409
|
-
leftSection:
|
|
409
|
+
leftSection: Xe,
|
|
410
410
|
...R,
|
|
411
|
-
children: /* @__PURE__ */ z("div", { className:
|
|
411
|
+
children: /* @__PURE__ */ z("div", { className: No.inputSection, children: [
|
|
412
412
|
U,
|
|
413
413
|
m && /* @__PURE__ */ s(
|
|
414
|
-
|
|
414
|
+
oo,
|
|
415
415
|
{
|
|
416
416
|
id: g,
|
|
417
417
|
assistiveVariant: "error",
|
|
@@ -420,7 +420,7 @@ const ja = "FormControlWrapper-module__root___c-UHo", Ga = "FormControlWrapper-m
|
|
|
420
420
|
}
|
|
421
421
|
),
|
|
422
422
|
!m && W && /* @__PURE__ */ s(
|
|
423
|
-
|
|
423
|
+
oo,
|
|
424
424
|
{
|
|
425
425
|
id: w,
|
|
426
426
|
assistiveVariant: "help",
|
|
@@ -432,41 +432,41 @@ const ja = "FormControlWrapper-module__root___c-UHo", Ga = "FormControlWrapper-m
|
|
|
432
432
|
}
|
|
433
433
|
);
|
|
434
434
|
});
|
|
435
|
-
|
|
436
|
-
const
|
|
437
|
-
root:
|
|
438
|
-
contents:
|
|
439
|
-
},
|
|
440
|
-
const
|
|
435
|
+
Ge.displayName = "FormControlWrapper";
|
|
436
|
+
const Za = "_root_1qhn7_3", Ya = "_contents_1qhn7_18", xe = {
|
|
437
|
+
root: Za,
|
|
438
|
+
contents: Ya
|
|
439
|
+
}, Ka = h(function({ layer: i, contentsOnly: e, children: r, className: a, style: o, ...t }, n) {
|
|
440
|
+
const l = e ? a ? `${xe.root} ${xe.contents} ${a}` : `${xe.root} ${xe.contents}` : a ? `${xe.root} ${a}` : xe.root;
|
|
441
441
|
return /* @__PURE__ */ s(
|
|
442
442
|
"div",
|
|
443
443
|
{
|
|
444
444
|
ref: n,
|
|
445
|
-
className:
|
|
446
|
-
style:
|
|
447
|
-
...e ? {} : { "data-recursica-layer": String(
|
|
448
|
-
...
|
|
445
|
+
className: l,
|
|
446
|
+
style: o,
|
|
447
|
+
...e ? {} : { "data-recursica-layer": String(i) },
|
|
448
|
+
...t,
|
|
449
449
|
children: r
|
|
450
450
|
}
|
|
451
451
|
);
|
|
452
452
|
});
|
|
453
|
-
|
|
454
|
-
const
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
const
|
|
458
|
-
function
|
|
459
|
-
children:
|
|
453
|
+
Ka.displayName = "Layer";
|
|
454
|
+
const He = ({ emptyText: i = "N/A" }) => /* @__PURE__ */ s(j.Fragment, { children: i });
|
|
455
|
+
He.displayName = "EmptyValueRenderer";
|
|
456
|
+
He.check = (i) => i == null || i === "" || Array.isArray(i) && i.length === 0;
|
|
457
|
+
const ho = "data-recursica-theme";
|
|
458
|
+
function Kl({
|
|
459
|
+
children: i,
|
|
460
460
|
theme: e = "light"
|
|
461
461
|
}) {
|
|
462
|
-
return
|
|
462
|
+
return Po(() => {
|
|
463
463
|
const r = document.documentElement;
|
|
464
|
-
return r.setAttribute(
|
|
465
|
-
r.removeAttribute(
|
|
464
|
+
return r.setAttribute(ho, e), () => {
|
|
465
|
+
r.removeAttribute(ho);
|
|
466
466
|
};
|
|
467
|
-
}, [e]), /* @__PURE__ */ s(
|
|
467
|
+
}, [e]), /* @__PURE__ */ s(Oe, { children: i });
|
|
468
468
|
}
|
|
469
|
-
const
|
|
469
|
+
const Xl = [
|
|
470
470
|
"Accordion",
|
|
471
471
|
"AssistiveElement",
|
|
472
472
|
"Autocomplete",
|
|
@@ -514,74 +514,74 @@ const ql = [
|
|
|
514
514
|
"Toast",
|
|
515
515
|
"Tooltip",
|
|
516
516
|
"TransferList"
|
|
517
|
-
],
|
|
518
|
-
layoutOverride:
|
|
519
|
-
textField:
|
|
520
|
-
},
|
|
521
|
-
value:
|
|
517
|
+
], Xa = "ReadOnlyField-module__layoutOverride___9fSsG", Ja = "ReadOnlyField-module__textField___qKn25", Ae = {
|
|
518
|
+
layoutOverride: Xa,
|
|
519
|
+
textField: Ja
|
|
520
|
+
}, De = ({
|
|
521
|
+
value: i,
|
|
522
522
|
overStyled: e = !1,
|
|
523
523
|
...r
|
|
524
524
|
}) => {
|
|
525
|
-
const a =
|
|
525
|
+
const a = N(r, e), o = a.className;
|
|
526
526
|
return /* @__PURE__ */ s(
|
|
527
|
-
|
|
527
|
+
to,
|
|
528
528
|
{
|
|
529
529
|
component: "p",
|
|
530
|
-
className:
|
|
530
|
+
className: o ? `${Ae.textField} ${o}` : Ae.textField,
|
|
531
531
|
...a,
|
|
532
|
-
children:
|
|
532
|
+
children: i != null ? j.isValidElement(i) ? i : Array.isArray(i) ? i.join(", ") : String(i) : ""
|
|
533
533
|
}
|
|
534
534
|
);
|
|
535
535
|
};
|
|
536
|
-
|
|
537
|
-
const
|
|
536
|
+
De.displayName = "ReadOnlyTextField";
|
|
537
|
+
const Lo = h(
|
|
538
538
|
function({
|
|
539
539
|
value: e,
|
|
540
540
|
type: r = "text",
|
|
541
541
|
emptyValueComponent: a,
|
|
542
|
-
overStyled:
|
|
543
|
-
className:
|
|
542
|
+
overStyled: o = !1,
|
|
543
|
+
className: t,
|
|
544
544
|
style: n,
|
|
545
|
-
...
|
|
545
|
+
...l
|
|
546
546
|
}, c) {
|
|
547
547
|
let d = null;
|
|
548
|
-
const p =
|
|
548
|
+
const p = N(l, o), _ = a || He, u = (_.check ? _.check(e) : He.check(e)) ? /* @__PURE__ */ s(_, { value: e }) : e;
|
|
549
549
|
switch (r) {
|
|
550
550
|
case "boolean":
|
|
551
551
|
d = /* @__PURE__ */ s(
|
|
552
|
-
|
|
552
|
+
De,
|
|
553
553
|
{
|
|
554
554
|
value: e === !0 ? "True" : e === !1 ? "False" : u,
|
|
555
|
-
overStyled:
|
|
555
|
+
overStyled: o
|
|
556
556
|
}
|
|
557
557
|
);
|
|
558
558
|
break;
|
|
559
559
|
case "switch":
|
|
560
560
|
d = /* @__PURE__ */ s(
|
|
561
|
-
|
|
561
|
+
De,
|
|
562
562
|
{
|
|
563
563
|
value: e === !0 ? "On" : e === !1 ? "Off" : u,
|
|
564
|
-
overStyled:
|
|
564
|
+
overStyled: o
|
|
565
565
|
}
|
|
566
566
|
);
|
|
567
567
|
break;
|
|
568
568
|
case "text":
|
|
569
569
|
default:
|
|
570
570
|
d = /* @__PURE__ */ s(
|
|
571
|
-
|
|
571
|
+
De,
|
|
572
572
|
{
|
|
573
573
|
value: u,
|
|
574
|
-
overStyled:
|
|
574
|
+
overStyled: o
|
|
575
575
|
}
|
|
576
576
|
);
|
|
577
577
|
break;
|
|
578
578
|
}
|
|
579
|
-
const m =
|
|
579
|
+
const m = t ? `${Ae.layoutOverride} ${t}` : Ae.layoutOverride;
|
|
580
580
|
return /* @__PURE__ */ s(
|
|
581
|
-
|
|
581
|
+
Ge,
|
|
582
582
|
{
|
|
583
583
|
ref: c,
|
|
584
|
-
overStyled:
|
|
584
|
+
overStyled: o,
|
|
585
585
|
className: m,
|
|
586
586
|
style: n,
|
|
587
587
|
...p,
|
|
@@ -590,72 +590,72 @@ const Oo = h(
|
|
|
590
590
|
);
|
|
591
591
|
}
|
|
592
592
|
);
|
|
593
|
-
|
|
593
|
+
Lo.displayName = "ReadOnlyField";
|
|
594
594
|
const oe = h(function({
|
|
595
595
|
readOnly: e,
|
|
596
596
|
readOnlyComponent: r,
|
|
597
597
|
readOnlyType: a = "text",
|
|
598
|
-
readOnlyValue:
|
|
599
|
-
readOnlyNativeProps:
|
|
598
|
+
readOnlyValue: o,
|
|
599
|
+
readOnlyNativeProps: t,
|
|
600
600
|
emptyValueComponent: n,
|
|
601
|
-
activeComponent:
|
|
601
|
+
activeComponent: l,
|
|
602
602
|
overStyled: c,
|
|
603
603
|
onLabelEditClick: d,
|
|
604
604
|
...p
|
|
605
605
|
}, _) {
|
|
606
606
|
return e ? r ? /* @__PURE__ */ s(
|
|
607
|
-
|
|
607
|
+
Ge,
|
|
608
608
|
{
|
|
609
609
|
ref: _,
|
|
610
610
|
...p,
|
|
611
611
|
onLabelEditClick: d,
|
|
612
612
|
overStyled: c,
|
|
613
|
-
children: /* @__PURE__ */ s(r, { ...
|
|
613
|
+
children: /* @__PURE__ */ s(r, { ...t })
|
|
614
614
|
}
|
|
615
615
|
) : /* @__PURE__ */ s(
|
|
616
|
-
|
|
616
|
+
Lo,
|
|
617
617
|
{
|
|
618
618
|
ref: _,
|
|
619
619
|
type: a,
|
|
620
|
-
value:
|
|
620
|
+
value: o,
|
|
621
621
|
emptyValueComponent: n,
|
|
622
622
|
onLabelEditClick: d,
|
|
623
623
|
overStyled: c,
|
|
624
624
|
...p
|
|
625
625
|
}
|
|
626
626
|
) : /* @__PURE__ */ s(
|
|
627
|
-
|
|
627
|
+
Ge,
|
|
628
628
|
{
|
|
629
629
|
ref: _,
|
|
630
630
|
...p,
|
|
631
631
|
onLabelEditClick: d,
|
|
632
632
|
overStyled: c,
|
|
633
|
-
children:
|
|
633
|
+
children: l
|
|
634
634
|
}
|
|
635
635
|
);
|
|
636
636
|
});
|
|
637
637
|
oe.displayName = "WithReadOnlyWrapper";
|
|
638
|
-
const
|
|
639
|
-
layoutOverride:
|
|
640
|
-
root:
|
|
641
|
-
input:
|
|
642
|
-
section:
|
|
643
|
-
dropdown:
|
|
644
|
-
option:
|
|
645
|
-
},
|
|
638
|
+
const Qa = "AutoComplete-module__layoutOverride___-K9WL", er = "AutoComplete-module__root___kANza", or = "AutoComplete-module__input___g51MC", tr = "AutoComplete-module__section___WAbf1", ar = "AutoComplete-module__dropdown___NqO3E", rr = "AutoComplete-module__option___Y-Kja", V = {
|
|
639
|
+
layoutOverride: Qa,
|
|
640
|
+
root: er,
|
|
641
|
+
input: or,
|
|
642
|
+
section: tr,
|
|
643
|
+
dropdown: ar,
|
|
644
|
+
option: rr
|
|
645
|
+
}, sr = h(
|
|
646
646
|
function(e, r) {
|
|
647
647
|
const {
|
|
648
648
|
overStyled: a = !1,
|
|
649
|
-
formLayout:
|
|
649
|
+
formLayout: o = "stacked",
|
|
650
650
|
// Label & Wrapper Maps
|
|
651
|
-
labelSize:
|
|
651
|
+
labelSize: t,
|
|
652
652
|
labelAlignment: n,
|
|
653
|
-
labelOptionalText:
|
|
653
|
+
labelOptionalText: l,
|
|
654
654
|
labelWithEditIcon: c,
|
|
655
655
|
onLabelEditClick: d,
|
|
656
656
|
label: p,
|
|
657
657
|
assistiveText: _,
|
|
658
|
-
assistiveWithIcon:
|
|
658
|
+
assistiveWithIcon: f,
|
|
659
659
|
error: u,
|
|
660
660
|
required: m,
|
|
661
661
|
withAsterisk: b,
|
|
@@ -669,7 +669,7 @@ const Ka = "AutoComplete-module__layoutOverride___-K9WL", Xa = "AutoComplete-mod
|
|
|
669
669
|
value: x,
|
|
670
670
|
defaultValue: S,
|
|
671
671
|
...O
|
|
672
|
-
} = e, W =
|
|
672
|
+
} = e, W = N(O, a), w = W;
|
|
673
673
|
delete w.size, delete w.variant, delete w.radius;
|
|
674
674
|
const g = {
|
|
675
675
|
wrapper: V.root,
|
|
@@ -692,15 +692,15 @@ const Ka = "AutoComplete-module__layoutOverride___-K9WL", Xa = "AutoComplete-mod
|
|
|
692
692
|
controlMaxWidth: "var(--recursica_ui-kit_components_autocomplete_properties_max-width)",
|
|
693
693
|
controlMinWidth: "var(--recursica_ui-kit_components_autocomplete_properties_min-width)",
|
|
694
694
|
overStyled: a,
|
|
695
|
-
formLayout:
|
|
696
|
-
labelSize:
|
|
695
|
+
formLayout: o,
|
|
696
|
+
labelSize: t,
|
|
697
697
|
labelAlignment: n,
|
|
698
|
-
labelOptionalText:
|
|
698
|
+
labelOptionalText: l,
|
|
699
699
|
labelWithEditIcon: c,
|
|
700
700
|
onLabelEditClick: d,
|
|
701
701
|
label: p,
|
|
702
702
|
assistiveText: _,
|
|
703
|
-
assistiveWithIcon:
|
|
703
|
+
assistiveWithIcon: f,
|
|
704
704
|
error: u,
|
|
705
705
|
required: m,
|
|
706
706
|
withAsterisk: b,
|
|
@@ -714,7 +714,7 @@ const Ka = "AutoComplete-module__layoutOverride___-K9WL", Xa = "AutoComplete-mod
|
|
|
714
714
|
activeComponent: (
|
|
715
715
|
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
716
716
|
/* @__PURE__ */ s(
|
|
717
|
-
|
|
717
|
+
Xt,
|
|
718
718
|
{
|
|
719
719
|
ref: r,
|
|
720
720
|
classNames: g,
|
|
@@ -733,21 +733,21 @@ const Ka = "AutoComplete-module__layoutOverride___-K9WL", Xa = "AutoComplete-mod
|
|
|
733
733
|
);
|
|
734
734
|
}
|
|
735
735
|
);
|
|
736
|
-
|
|
737
|
-
const
|
|
738
|
-
root:
|
|
739
|
-
iconWrapper:
|
|
740
|
-
textWrapper:
|
|
741
|
-
image:
|
|
742
|
-
placeholder:
|
|
743
|
-
},
|
|
736
|
+
sr.displayName = "AutoComplete";
|
|
737
|
+
const nr = "Avatar-module__root___fXu-J", lr = "Avatar-module__iconWrapper___ojly2", ir = "Avatar-module__textWrapper___zp-jD", cr = "Avatar-module__image___ieqGp", dr = "Avatar-module__placeholder___IDW7-", Q = {
|
|
738
|
+
root: nr,
|
|
739
|
+
iconWrapper: lr,
|
|
740
|
+
textWrapper: ir,
|
|
741
|
+
image: cr,
|
|
742
|
+
placeholder: dr
|
|
743
|
+
}, ko = h(function({
|
|
744
744
|
size: e = "default",
|
|
745
745
|
variant: r = "solid",
|
|
746
746
|
icon: a,
|
|
747
|
-
children:
|
|
748
|
-
src:
|
|
747
|
+
children: o,
|
|
748
|
+
src: t,
|
|
749
749
|
overStyled: n = !1,
|
|
750
|
-
...
|
|
750
|
+
...l
|
|
751
751
|
}, c) {
|
|
752
752
|
const d = {
|
|
753
753
|
solid: "filled",
|
|
@@ -757,143 +757,143 @@ const ar = "Avatar-module__root___fXu-J", rr = "Avatar-module__iconWrapper___ojl
|
|
|
757
757
|
default: "md",
|
|
758
758
|
small: "sm",
|
|
759
759
|
large: "lg"
|
|
760
|
-
}, _ =
|
|
760
|
+
}, _ = N(l, n), f = _;
|
|
761
761
|
let u = "text";
|
|
762
|
-
|
|
762
|
+
t ? u = "image" : a && (u = "icon");
|
|
763
763
|
const m = {
|
|
764
764
|
root: Q.root,
|
|
765
765
|
image: Q.image,
|
|
766
766
|
placeholder: Q.placeholder
|
|
767
|
-
}, b =
|
|
767
|
+
}, b = f.classNames;
|
|
768
768
|
if (b && typeof b == "object" && !Array.isArray(b)) {
|
|
769
769
|
const C = b;
|
|
770
770
|
m.root = C.root ? `${Q.root} ${C.root}` : Q.root, m.image = C.image ? `${Q.image} ${C.image}` : Q.image, m.placeholder = C.placeholder ? `${Q.placeholder} ${C.placeholder}` : Q.placeholder;
|
|
771
771
|
}
|
|
772
|
-
const P =
|
|
772
|
+
const P = f.className;
|
|
773
773
|
return /* @__PURE__ */ s(
|
|
774
|
-
|
|
774
|
+
Jt,
|
|
775
775
|
{
|
|
776
776
|
ref: c,
|
|
777
777
|
className: P,
|
|
778
778
|
classNames: m,
|
|
779
779
|
variant: d[r],
|
|
780
780
|
size: p[e],
|
|
781
|
-
src:
|
|
781
|
+
src: t,
|
|
782
782
|
"data-variant": r,
|
|
783
783
|
"data-size": e,
|
|
784
784
|
"data-style": u,
|
|
785
785
|
..._,
|
|
786
|
-
children: a != null ? /* @__PURE__ */ s("span", { className: Q.iconWrapper, "aria-hidden": !0, children: a }) :
|
|
786
|
+
children: a != null ? /* @__PURE__ */ s("span", { className: Q.iconWrapper, "aria-hidden": !0, children: a }) : o != null ? /* @__PURE__ */ s("span", { className: Q.textWrapper, children: o }) : void 0
|
|
787
787
|
}
|
|
788
788
|
);
|
|
789
789
|
});
|
|
790
|
-
|
|
791
|
-
const
|
|
792
|
-
root:
|
|
793
|
-
},
|
|
794
|
-
const
|
|
790
|
+
ko.displayName = "Avatar";
|
|
791
|
+
const Jl = te(ko), pr = "Badge-module__root___5osNT", re = {
|
|
792
|
+
root: pr
|
|
793
|
+
}, Io = h(function({ variant: e = "primary-color", overStyled: r = !1, ...a }, o) {
|
|
794
|
+
const t = N(a, r), n = {
|
|
795
795
|
root: re.root,
|
|
796
796
|
section: re.section,
|
|
797
797
|
label: re.label
|
|
798
|
-
},
|
|
799
|
-
if (
|
|
800
|
-
const p =
|
|
798
|
+
}, l = t.classNames;
|
|
799
|
+
if (l && typeof l == "object" && !Array.isArray(l)) {
|
|
800
|
+
const p = l;
|
|
801
801
|
n.root = p.root ? `${re.root} ${p.root}` : re.root, n.section = p.section ?? re.section, n.label = p.label ?? re.label;
|
|
802
802
|
}
|
|
803
|
-
const c =
|
|
803
|
+
const c = t.className, d = c ? `${re.root} ${c}` : re.root;
|
|
804
804
|
return /* @__PURE__ */ s(
|
|
805
|
-
|
|
805
|
+
Qt,
|
|
806
806
|
{
|
|
807
|
-
ref:
|
|
807
|
+
ref: o,
|
|
808
808
|
variant: "filled",
|
|
809
809
|
"data-variant": e,
|
|
810
|
-
...
|
|
810
|
+
...t,
|
|
811
811
|
className: d,
|
|
812
812
|
classNames: n
|
|
813
813
|
}
|
|
814
814
|
);
|
|
815
815
|
});
|
|
816
|
-
|
|
817
|
-
const
|
|
818
|
-
root:
|
|
819
|
-
separator:
|
|
820
|
-
},
|
|
821
|
-
function({ overStyled: e = !1, separator: r = ">", ...a },
|
|
822
|
-
const
|
|
816
|
+
Io.displayName = "Badge";
|
|
817
|
+
const Ql = te(Io), _r = "Breadcrumb-module__root___x-9ln", mr = "Breadcrumb-module__separator___qrUX-", ue = {
|
|
818
|
+
root: _r,
|
|
819
|
+
separator: mr
|
|
820
|
+
}, ur = h(
|
|
821
|
+
function({ overStyled: e = !1, separator: r = ">", ...a }, o) {
|
|
822
|
+
const t = N(
|
|
823
823
|
{ separator: r, ...a },
|
|
824
824
|
e
|
|
825
825
|
), n = {
|
|
826
|
-
root:
|
|
827
|
-
separator:
|
|
828
|
-
},
|
|
829
|
-
if (
|
|
830
|
-
const p =
|
|
831
|
-
n.root = p.root ? `${
|
|
832
|
-
}
|
|
833
|
-
const c =
|
|
826
|
+
root: ue.root,
|
|
827
|
+
separator: ue.separator
|
|
828
|
+
}, l = t.classNames;
|
|
829
|
+
if (l && typeof l == "object" && !Array.isArray(l)) {
|
|
830
|
+
const p = l;
|
|
831
|
+
n.root = p.root ? `${ue.root} ${p.root}` : ue.root, n.separator = p.separator ? `${ue.separator} ${p.separator}` : ue.separator;
|
|
832
|
+
}
|
|
833
|
+
const c = t.className, d = c ? `${ue.root} ${c}` : ue.root;
|
|
834
834
|
return /* @__PURE__ */ s(
|
|
835
|
-
|
|
835
|
+
ea,
|
|
836
836
|
{
|
|
837
|
-
ref:
|
|
838
|
-
...
|
|
837
|
+
ref: o,
|
|
838
|
+
...t,
|
|
839
839
|
className: d,
|
|
840
840
|
classNames: n
|
|
841
841
|
}
|
|
842
842
|
);
|
|
843
843
|
}
|
|
844
844
|
);
|
|
845
|
-
|
|
846
|
-
const
|
|
847
|
-
root:
|
|
848
|
-
},
|
|
849
|
-
const
|
|
845
|
+
ur.displayName = "Breadcrumb";
|
|
846
|
+
const br = "Loader-module__root___6iYOP", ke = {
|
|
847
|
+
root: br
|
|
848
|
+
}, Mo = h(function({ variant: e = "oval", size: r = "default", overStyled: a = !1, ...o }, t) {
|
|
849
|
+
const l = {
|
|
850
850
|
sm: "small",
|
|
851
851
|
md: "default",
|
|
852
852
|
lg: "large",
|
|
853
853
|
small: "small",
|
|
854
854
|
default: "default",
|
|
855
855
|
large: "large"
|
|
856
|
-
}[r] || "default", c =
|
|
857
|
-
root:
|
|
856
|
+
}[r] || "default", c = N(o, a), d = {
|
|
857
|
+
root: ke.root
|
|
858
858
|
}, p = c.classNames;
|
|
859
859
|
if (p && typeof p == "object" && !Array.isArray(p)) {
|
|
860
860
|
const u = p;
|
|
861
|
-
d.root = u.root ? `${
|
|
861
|
+
d.root = u.root ? `${ke.root} ${u.root}` : ke.root;
|
|
862
862
|
}
|
|
863
|
-
const _ = c.className,
|
|
863
|
+
const _ = c.className, f = _ ? `${ke.root} ${_}` : ke.root;
|
|
864
864
|
return /* @__PURE__ */ s(
|
|
865
|
-
|
|
865
|
+
oa,
|
|
866
866
|
{
|
|
867
|
-
ref:
|
|
867
|
+
ref: t,
|
|
868
868
|
type: e,
|
|
869
869
|
"data-variant": e,
|
|
870
|
-
"data-size":
|
|
870
|
+
"data-size": l,
|
|
871
871
|
...c,
|
|
872
|
-
className:
|
|
872
|
+
className: f,
|
|
873
873
|
classNames: d
|
|
874
874
|
}
|
|
875
875
|
);
|
|
876
876
|
});
|
|
877
|
-
|
|
878
|
-
const
|
|
879
|
-
root:
|
|
880
|
-
loader:
|
|
881
|
-
label:
|
|
882
|
-
labelText:
|
|
883
|
-
iconWrapper:
|
|
884
|
-
section:
|
|
877
|
+
Mo.displayName = "Loader";
|
|
878
|
+
const yr = "Button-module__root___Q2R8-", fr = "Button-module__loader___X-9u-", Nr = "Button-module__label___UJ3Zt", hr = "Button-module__labelText___rFV5p", $r = "Button-module__iconWrapper___uEKPa", vr = "Button-module__section___f2mKr", J = {
|
|
879
|
+
root: yr,
|
|
880
|
+
loader: fr,
|
|
881
|
+
label: Nr,
|
|
882
|
+
labelText: hr,
|
|
883
|
+
iconWrapper: $r,
|
|
884
|
+
section: vr
|
|
885
885
|
};
|
|
886
|
-
function
|
|
887
|
-
return
|
|
886
|
+
function Cr(i) {
|
|
887
|
+
return i == null || i === "" ? !1 : typeof i == "string" ? i.trim() !== "" : !0;
|
|
888
888
|
}
|
|
889
|
-
const
|
|
889
|
+
const zo = h(function({
|
|
890
890
|
variant: e = "solid",
|
|
891
891
|
size: r = "default",
|
|
892
892
|
icon: a,
|
|
893
|
-
children:
|
|
894
|
-
overStyled:
|
|
893
|
+
children: o,
|
|
894
|
+
overStyled: t = !1,
|
|
895
895
|
loaderVariant: n = "oval",
|
|
896
|
-
loaderSize:
|
|
896
|
+
loaderSize: l,
|
|
897
897
|
useRecursicaLoader: c = !0,
|
|
898
898
|
...d
|
|
899
899
|
}, p) {
|
|
@@ -901,12 +901,12 @@ const Io = h(function({
|
|
|
901
901
|
solid: "filled",
|
|
902
902
|
outline: "outline",
|
|
903
903
|
text: "subtle"
|
|
904
|
-
},
|
|
904
|
+
}, f = {
|
|
905
905
|
default: "md",
|
|
906
906
|
small: "sm"
|
|
907
|
-
}, u =
|
|
907
|
+
}, u = N(d, t), m = u;
|
|
908
908
|
delete m.fullWidth;
|
|
909
|
-
const b = !!a || !!m.leftSection, P = !!m.rightSection, C =
|
|
909
|
+
const b = !!a || !!m.leftSection, P = !!m.rightSection, C = Cr(o), $ = (b || P) && !C;
|
|
910
910
|
let y = "label";
|
|
911
911
|
$ ? y = "icon-only" : (b || P) && (y = "icon-label"), typeof process < "u" && process.env.NODE_ENV !== "production" && $ && !m["aria-label"] && console.warn(
|
|
912
912
|
'[Recursica Button] Icon-only buttons must provide an accessible name. Pass aria-label (e.g. aria-label="Submit").'
|
|
@@ -921,19 +921,19 @@ const Io = h(function({
|
|
|
921
921
|
const w = v;
|
|
922
922
|
A.root = w.root ? `${J.root} ${w.root}` : J.root, A.section = w.section ?? J.section, A.label = w.label ?? J.label;
|
|
923
923
|
}
|
|
924
|
-
const I = m.className, x = I ? `${J.root} ${I}` : J.root, S = m.loaderProps, O =
|
|
924
|
+
const I = m.className, x = I ? `${J.root} ${I}` : J.root, S = m.loaderProps, O = l ?? (r === "small" ? "small" : "default");
|
|
925
925
|
let W = S;
|
|
926
926
|
return c && (W = {
|
|
927
|
-
children: /* @__PURE__ */ s(
|
|
927
|
+
children: /* @__PURE__ */ s(Mo, { variant: n, size: O }),
|
|
928
928
|
...S
|
|
929
929
|
}), /* @__PURE__ */ s(
|
|
930
|
-
|
|
930
|
+
ta,
|
|
931
931
|
{
|
|
932
932
|
ref: p,
|
|
933
933
|
className: x,
|
|
934
934
|
classNames: A,
|
|
935
935
|
variant: _[e],
|
|
936
|
-
size:
|
|
936
|
+
size: f[r],
|
|
937
937
|
loaderProps: W,
|
|
938
938
|
leftSection: a != null ? /* @__PURE__ */ s("span", { className: J.iconWrapper, "aria-hidden": !0, children: a }) : void 0,
|
|
939
939
|
"data-variant": e,
|
|
@@ -941,126 +941,138 @@ const Io = h(function({
|
|
|
941
941
|
"data-content": y,
|
|
942
942
|
...u,
|
|
943
943
|
disabled: !!m.disabled || !!m.loading,
|
|
944
|
-
children: /* @__PURE__ */ s("span", { className: J.labelText, children:
|
|
944
|
+
children: /* @__PURE__ */ s("span", { className: J.labelText, children: o })
|
|
945
945
|
}
|
|
946
946
|
);
|
|
947
947
|
});
|
|
948
|
-
|
|
949
|
-
const
|
|
950
|
-
|
|
951
|
-
),
|
|
952
|
-
root:
|
|
953
|
-
header:
|
|
954
|
-
footer:
|
|
955
|
-
section:
|
|
956
|
-
content:
|
|
957
|
-
},
|
|
958
|
-
const
|
|
948
|
+
zo.displayName = "Button";
|
|
949
|
+
const ei = te(
|
|
950
|
+
zo
|
|
951
|
+
), Pr = "Card-module__root___c9KvZ", wr = "Card-module__header___PTXf2", gr = "Card-module__footer___Mu-JC", Tr = "Card-module__section___BRT8H", Sr = "Card-module__content___oFIQa", le = {
|
|
952
|
+
root: Pr,
|
|
953
|
+
header: wr,
|
|
954
|
+
footer: gr,
|
|
955
|
+
section: Tr,
|
|
956
|
+
content: Sr
|
|
957
|
+
}, Ro = h(function({ overStyled: e = !1, ...r }, a) {
|
|
958
|
+
const o = N(r, e);
|
|
959
|
+
[
|
|
960
|
+
"flex",
|
|
961
|
+
"flexGrow",
|
|
962
|
+
"flexShrink",
|
|
963
|
+
"flexBasis",
|
|
964
|
+
"grow",
|
|
965
|
+
"h",
|
|
966
|
+
"height"
|
|
967
|
+
].forEach((d) => {
|
|
968
|
+
d in r && !(d in o) && (o[d] = r[d]);
|
|
969
|
+
});
|
|
970
|
+
const n = {
|
|
959
971
|
root: le.root
|
|
960
|
-
},
|
|
961
|
-
if (
|
|
962
|
-
const
|
|
963
|
-
Object.keys(
|
|
964
|
-
|
|
972
|
+
}, l = o.classNames;
|
|
973
|
+
if (l && typeof l == "object" && !Array.isArray(l)) {
|
|
974
|
+
const d = l;
|
|
975
|
+
Object.keys(d).forEach((p) => {
|
|
976
|
+
n[p] ? n[p] = `${n[p]} ${d[p]}` : n[p] = d[p];
|
|
965
977
|
});
|
|
966
978
|
}
|
|
967
|
-
const
|
|
979
|
+
const c = o.className;
|
|
968
980
|
return /* @__PURE__ */ s(
|
|
969
|
-
|
|
981
|
+
Ue,
|
|
970
982
|
{
|
|
971
983
|
ref: a,
|
|
972
|
-
className:
|
|
973
|
-
classNames:
|
|
974
|
-
...
|
|
984
|
+
className: c,
|
|
985
|
+
classNames: n,
|
|
986
|
+
...o
|
|
975
987
|
}
|
|
976
988
|
);
|
|
977
989
|
});
|
|
978
|
-
|
|
979
|
-
const
|
|
990
|
+
Ro.displayName = "Card";
|
|
991
|
+
const Bo = h(
|
|
980
992
|
function({ overStyled: e = !1, ...r }, a) {
|
|
981
|
-
const
|
|
993
|
+
const o = N(r, e), t = o.className;
|
|
982
994
|
return /* @__PURE__ */ s(
|
|
983
|
-
|
|
995
|
+
Ue.Section,
|
|
984
996
|
{
|
|
985
997
|
ref: a,
|
|
986
|
-
className:
|
|
987
|
-
...
|
|
998
|
+
className: t ? `${le.section} ${t}` : le.section,
|
|
999
|
+
...o
|
|
988
1000
|
}
|
|
989
1001
|
);
|
|
990
1002
|
}
|
|
991
1003
|
);
|
|
992
|
-
|
|
993
|
-
const
|
|
1004
|
+
Bo.displayName = "CardSection";
|
|
1005
|
+
const Fo = h(
|
|
994
1006
|
function({ overStyled: e = !1, ...r }, a) {
|
|
995
|
-
const
|
|
1007
|
+
const o = N(r, e), t = o.className;
|
|
996
1008
|
return /* @__PURE__ */ s(
|
|
997
|
-
|
|
1009
|
+
Ue.Section,
|
|
998
1010
|
{
|
|
999
1011
|
ref: a,
|
|
1000
|
-
className:
|
|
1001
|
-
...
|
|
1012
|
+
className: t ? `${le.header} ${t}` : le.header,
|
|
1013
|
+
...o
|
|
1002
1014
|
}
|
|
1003
1015
|
);
|
|
1004
1016
|
}
|
|
1005
1017
|
);
|
|
1006
|
-
|
|
1007
|
-
const
|
|
1018
|
+
Fo.displayName = "CardHeader";
|
|
1019
|
+
const Eo = h(
|
|
1008
1020
|
function({ overStyled: e = !1, ...r }, a) {
|
|
1009
|
-
const
|
|
1021
|
+
const o = N(r, e), t = o.className;
|
|
1010
1022
|
return /* @__PURE__ */ s(
|
|
1011
|
-
|
|
1023
|
+
Ue.Section,
|
|
1012
1024
|
{
|
|
1013
1025
|
ref: a,
|
|
1014
|
-
className:
|
|
1015
|
-
...
|
|
1026
|
+
className: t ? `${le.footer} ${t}` : le.footer,
|
|
1027
|
+
...o
|
|
1016
1028
|
}
|
|
1017
1029
|
);
|
|
1018
1030
|
}
|
|
1019
1031
|
);
|
|
1020
|
-
|
|
1021
|
-
const
|
|
1032
|
+
Eo.displayName = "CardFooter";
|
|
1033
|
+
const Vo = h(
|
|
1022
1034
|
function({ overStyled: e = !1, ...r }, a) {
|
|
1023
|
-
const
|
|
1035
|
+
const o = N(r, e), t = o.className;
|
|
1024
1036
|
return /* @__PURE__ */ s(
|
|
1025
1037
|
"div",
|
|
1026
1038
|
{
|
|
1027
1039
|
ref: a,
|
|
1028
|
-
className:
|
|
1029
|
-
...
|
|
1040
|
+
className: t ? `${le.content} ${t}` : le.content,
|
|
1041
|
+
...o
|
|
1030
1042
|
}
|
|
1031
1043
|
);
|
|
1032
1044
|
}
|
|
1033
1045
|
);
|
|
1034
|
-
|
|
1035
|
-
const
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
const
|
|
1041
|
-
groupRoot:
|
|
1042
|
-
root:
|
|
1043
|
-
body:
|
|
1044
|
-
inner:
|
|
1045
|
-
input:
|
|
1046
|
-
icon:
|
|
1047
|
-
labelWrapper:
|
|
1048
|
-
label:
|
|
1049
|
-
},
|
|
1046
|
+
Vo.displayName = "CardContent";
|
|
1047
|
+
const Do = te(Ro), Ye = Do;
|
|
1048
|
+
Ye.Section = Bo;
|
|
1049
|
+
Ye.Header = Fo;
|
|
1050
|
+
Ye.Footer = Eo;
|
|
1051
|
+
Ye.Content = Vo;
|
|
1052
|
+
const oi = Do, xr = "Checkbox-module__groupRoot___cBS0o", Ar = "Checkbox-module__root___mY3qk", Or = "Checkbox-module__body___5yC7q", Wr = "Checkbox-module__inner___rTke4", Lr = "Checkbox-module__input___2kt-h", kr = "Checkbox-module__icon___-O7i6", Ir = "Checkbox-module__labelWrapper___GpZkr", Mr = "Checkbox-module__label___cwRtI", B = {
|
|
1053
|
+
groupRoot: xr,
|
|
1054
|
+
root: Ar,
|
|
1055
|
+
body: Or,
|
|
1056
|
+
inner: Wr,
|
|
1057
|
+
input: Lr,
|
|
1058
|
+
icon: kr,
|
|
1059
|
+
labelWrapper: Ir,
|
|
1060
|
+
label: Mr
|
|
1061
|
+
}, jo = h(
|
|
1050
1062
|
function(e, r) {
|
|
1051
1063
|
const {
|
|
1052
1064
|
overStyled: a = !1,
|
|
1053
|
-
formLayout:
|
|
1065
|
+
formLayout: o = "stacked",
|
|
1054
1066
|
// Label Wrappers
|
|
1055
|
-
labelSize:
|
|
1067
|
+
labelSize: t,
|
|
1056
1068
|
labelAlignment: n,
|
|
1057
|
-
labelOptionalText:
|
|
1069
|
+
labelOptionalText: l,
|
|
1058
1070
|
labelWithEditIcon: c,
|
|
1059
1071
|
onLabelEditClick: d,
|
|
1060
1072
|
// Base Mantine Extracted Attributes
|
|
1061
1073
|
label: p,
|
|
1062
1074
|
description: _,
|
|
1063
|
-
assistiveText:
|
|
1075
|
+
assistiveText: f,
|
|
1064
1076
|
assistiveWithIcon: u,
|
|
1065
1077
|
error: m,
|
|
1066
1078
|
required: b,
|
|
@@ -1075,7 +1087,7 @@ const Kl = Eo, gr = "Checkbox-module__groupRoot___cBS0o", Tr = "Checkbox-module_
|
|
|
1075
1087
|
value: S,
|
|
1076
1088
|
defaultValue: O,
|
|
1077
1089
|
...W
|
|
1078
|
-
} = e, w =
|
|
1090
|
+
} = e, w = N(W, a), g = w;
|
|
1079
1091
|
return delete g.size, /* @__PURE__ */ s(
|
|
1080
1092
|
oe,
|
|
1081
1093
|
{
|
|
@@ -1085,15 +1097,15 @@ const Kl = Eo, gr = "Checkbox-module__groupRoot___cBS0o", Tr = "Checkbox-module_
|
|
|
1085
1097
|
controlMinWidth: void 0,
|
|
1086
1098
|
overStyled: a,
|
|
1087
1099
|
labelElement: "div",
|
|
1088
|
-
formLayout:
|
|
1089
|
-
labelSize:
|
|
1100
|
+
formLayout: o,
|
|
1101
|
+
labelSize: t,
|
|
1090
1102
|
labelAlignment: n,
|
|
1091
|
-
labelOptionalText:
|
|
1103
|
+
labelOptionalText: l,
|
|
1092
1104
|
labelWithEditIcon: c,
|
|
1093
1105
|
onLabelEditClick: d,
|
|
1094
1106
|
label: p,
|
|
1095
1107
|
description: _,
|
|
1096
|
-
assistiveText:
|
|
1108
|
+
assistiveText: f,
|
|
1097
1109
|
assistiveWithIcon: u,
|
|
1098
1110
|
error: m,
|
|
1099
1111
|
required: b,
|
|
@@ -1106,34 +1118,34 @@ const Kl = Eo, gr = "Checkbox-module__groupRoot___cBS0o", Tr = "Checkbox-module_
|
|
|
1106
1118
|
readOnlyValue: S !== void 0 ? S : O,
|
|
1107
1119
|
readOnlyNativeProps: e,
|
|
1108
1120
|
activeComponent: /* @__PURE__ */ s(
|
|
1109
|
-
|
|
1121
|
+
go.Group,
|
|
1110
1122
|
{
|
|
1111
1123
|
ref: r,
|
|
1112
1124
|
...w,
|
|
1113
1125
|
disabled: v || g.disabled,
|
|
1114
1126
|
value: S,
|
|
1115
1127
|
defaultValue: O,
|
|
1116
|
-
children: /* @__PURE__ */ s("div", { className: B.groupRoot, "data-layout":
|
|
1128
|
+
children: /* @__PURE__ */ s("div", { className: B.groupRoot, "data-layout": o, children: A })
|
|
1117
1129
|
}
|
|
1118
1130
|
)
|
|
1119
1131
|
}
|
|
1120
1132
|
);
|
|
1121
1133
|
}
|
|
1122
1134
|
);
|
|
1123
|
-
|
|
1124
|
-
const
|
|
1135
|
+
jo.displayName = "CheckboxGroup";
|
|
1136
|
+
const Go = h(
|
|
1125
1137
|
function(e, r) {
|
|
1126
1138
|
const {
|
|
1127
1139
|
overStyled: a = !1,
|
|
1128
|
-
readOnly:
|
|
1129
|
-
readOnlyComponent:
|
|
1140
|
+
readOnly: o,
|
|
1141
|
+
readOnlyComponent: t,
|
|
1130
1142
|
disabled: n,
|
|
1131
|
-
formLayout:
|
|
1143
|
+
formLayout: l,
|
|
1132
1144
|
labelSize: c,
|
|
1133
1145
|
controlMaxWidth: d,
|
|
1134
1146
|
controlMinWidth: p,
|
|
1135
1147
|
..._
|
|
1136
|
-
} = e,
|
|
1148
|
+
} = e, f = N(_, a), u = f;
|
|
1137
1149
|
delete u.size, delete u.color, delete u.radius, delete u.variant, delete u.iconColor;
|
|
1138
1150
|
const m = {
|
|
1139
1151
|
root: B.root,
|
|
@@ -1149,40 +1161,40 @@ const Do = h(
|
|
|
1149
1161
|
m.root = y.root ? `${B.root} ${y.root}` : B.root, m.body = y.body ? `${B.body} ${y.body}` : B.body, m.inner = y.inner ? `${B.inner} ${y.inner}` : B.inner, m.input = y.input ? `${B.input} ${y.input}` : B.input, m.icon = y.icon ? `${B.icon} ${y.icon}` : B.icon, m.labelWrapper = y.labelWrapper ? `${B.labelWrapper} ${y.labelWrapper}` : B.labelWrapper, m.label = y.label ? `${B.label} ${y.label}` : B.label;
|
|
1150
1162
|
}
|
|
1151
1163
|
const P = u.className, C = P ? `${B.root} ${P}` : B.root;
|
|
1152
|
-
if (
|
|
1164
|
+
if (o && t) {
|
|
1153
1165
|
const y = !!(u.checked ?? u.defaultChecked), v = /* @__PURE__ */ s(
|
|
1154
|
-
|
|
1166
|
+
t,
|
|
1155
1167
|
{
|
|
1156
1168
|
...e,
|
|
1157
1169
|
checked: y,
|
|
1158
1170
|
label: u.label
|
|
1159
1171
|
}
|
|
1160
1172
|
);
|
|
1161
|
-
return
|
|
1173
|
+
return l ? /* @__PURE__ */ s(
|
|
1162
1174
|
Ne,
|
|
1163
1175
|
{
|
|
1164
|
-
formLayout:
|
|
1176
|
+
formLayout: l,
|
|
1165
1177
|
labelSize: c,
|
|
1166
1178
|
controlMaxWidth: d,
|
|
1167
1179
|
controlMinWidth: p,
|
|
1168
1180
|
children: v
|
|
1169
1181
|
}
|
|
1170
|
-
) : /* @__PURE__ */ s(
|
|
1182
|
+
) : /* @__PURE__ */ s(Oe, { children: v });
|
|
1171
1183
|
}
|
|
1172
1184
|
const $ = /* @__PURE__ */ s(
|
|
1173
|
-
|
|
1185
|
+
go,
|
|
1174
1186
|
{
|
|
1175
1187
|
ref: r,
|
|
1176
1188
|
className: C,
|
|
1177
1189
|
classNames: m,
|
|
1178
|
-
disabled:
|
|
1179
|
-
...
|
|
1190
|
+
disabled: o || n,
|
|
1191
|
+
...f
|
|
1180
1192
|
}
|
|
1181
1193
|
);
|
|
1182
|
-
return
|
|
1194
|
+
return l ? /* @__PURE__ */ s(
|
|
1183
1195
|
Ne,
|
|
1184
1196
|
{
|
|
1185
|
-
formLayout:
|
|
1197
|
+
formLayout: l,
|
|
1186
1198
|
labelSize: c,
|
|
1187
1199
|
controlMaxWidth: d,
|
|
1188
1200
|
controlMinWidth: p,
|
|
@@ -1191,18 +1203,18 @@ const Do = h(
|
|
|
1191
1203
|
) : $;
|
|
1192
1204
|
}
|
|
1193
1205
|
);
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
const
|
|
1197
|
-
root:
|
|
1198
|
-
label:
|
|
1199
|
-
mantineIconWrapper:
|
|
1200
|
-
innerWrapper:
|
|
1201
|
-
children:
|
|
1202
|
-
leadingIcon:
|
|
1203
|
-
removeIcon:
|
|
1206
|
+
Go.displayName = "Checkbox";
|
|
1207
|
+
Go.Group = jo;
|
|
1208
|
+
const zr = "Chip-module__root___f5pFk", Rr = "Chip-module__label___Ov9pg", Br = "Chip-module__mantineIconWrapper___KLSz6", Fr = "Chip-module__innerWrapper___EnrTF", Er = "Chip-module__children___zbRAR", Vr = "Chip-module__leadingIcon___JBtjQ", Dr = "Chip-module__removeIcon___pVju-", H = {
|
|
1209
|
+
root: zr,
|
|
1210
|
+
label: Rr,
|
|
1211
|
+
mantineIconWrapper: Br,
|
|
1212
|
+
innerWrapper: Fr,
|
|
1213
|
+
children: Er,
|
|
1214
|
+
leadingIcon: Vr,
|
|
1215
|
+
removeIcon: Dr
|
|
1204
1216
|
};
|
|
1205
|
-
function
|
|
1217
|
+
function jr(i) {
|
|
1206
1218
|
return /* @__PURE__ */ z(
|
|
1207
1219
|
"svg",
|
|
1208
1220
|
{
|
|
@@ -1215,7 +1227,7 @@ function Er(l) {
|
|
|
1215
1227
|
strokeWidth: "2",
|
|
1216
1228
|
strokeLinecap: "round",
|
|
1217
1229
|
strokeLinejoin: "round",
|
|
1218
|
-
...
|
|
1230
|
+
...i,
|
|
1219
1231
|
children: [
|
|
1220
1232
|
/* @__PURE__ */ s("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
|
|
1221
1233
|
/* @__PURE__ */ s("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
|
|
@@ -1223,29 +1235,29 @@ function Er(l) {
|
|
|
1223
1235
|
}
|
|
1224
1236
|
);
|
|
1225
1237
|
}
|
|
1226
|
-
const
|
|
1238
|
+
const Gr = h(function({
|
|
1227
1239
|
error: e = !1,
|
|
1228
1240
|
icon: r,
|
|
1229
1241
|
onRemove: a,
|
|
1230
|
-
removeLabel:
|
|
1231
|
-
children:
|
|
1242
|
+
removeLabel: o = "Remove",
|
|
1243
|
+
children: t,
|
|
1232
1244
|
overStyled: n = !1,
|
|
1233
|
-
...
|
|
1245
|
+
...l
|
|
1234
1246
|
}, c) {
|
|
1235
|
-
const d =
|
|
1247
|
+
const d = N(l, n), p = d, _ = {
|
|
1236
1248
|
root: H.root,
|
|
1237
1249
|
label: H.label,
|
|
1238
1250
|
input: H.input,
|
|
1239
1251
|
iconWrapper: H.mantineIconWrapper,
|
|
1240
1252
|
checkIcon: H.checkIcon
|
|
1241
|
-
},
|
|
1242
|
-
if (
|
|
1243
|
-
const $ =
|
|
1253
|
+
}, f = p.classNames;
|
|
1254
|
+
if (f && typeof f == "object" && !Array.isArray(f)) {
|
|
1255
|
+
const $ = f;
|
|
1244
1256
|
_.root = $.root ? `${H.root} ${$.root}` : H.root, _.label = $.label ? `${H.label} ${$.label}` : H.label;
|
|
1245
1257
|
}
|
|
1246
|
-
const u = p.className, m = u ? `${H.root} ${u}` : H.root, b = e ? "" : void 0, P = !
|
|
1258
|
+
const u = p.className, m = u ? `${H.root} ${u}` : H.root, b = e ? "" : void 0, P = !t && (!!r || !!a), C = p.checked !== void 0 || p.defaultChecked !== void 0 || a !== void 0 || p.onClick !== void 0;
|
|
1247
1259
|
return /* @__PURE__ */ s(
|
|
1248
|
-
|
|
1260
|
+
aa,
|
|
1249
1261
|
{
|
|
1250
1262
|
ref: c,
|
|
1251
1263
|
className: m,
|
|
@@ -1256,7 +1268,7 @@ const Vr = h(function({
|
|
|
1256
1268
|
...d,
|
|
1257
1269
|
children: /* @__PURE__ */ z("span", { className: H.innerWrapper, children: [
|
|
1258
1270
|
r && /* @__PURE__ */ s("span", { className: H.leadingIcon, "aria-hidden": !0, children: r }),
|
|
1259
|
-
/* @__PURE__ */ s("span", { className: H.children, children:
|
|
1271
|
+
/* @__PURE__ */ s("span", { className: H.children, children: t }),
|
|
1260
1272
|
a && /* @__PURE__ */ s(
|
|
1261
1273
|
"span",
|
|
1262
1274
|
{
|
|
@@ -1265,76 +1277,76 @@ const Vr = h(function({
|
|
|
1265
1277
|
onClick: ($) => {
|
|
1266
1278
|
$.preventDefault(), $.stopPropagation(), a($);
|
|
1267
1279
|
},
|
|
1268
|
-
"aria-label":
|
|
1280
|
+
"aria-label": o,
|
|
1269
1281
|
onKeyDown: ($) => {
|
|
1270
1282
|
($.key === "Enter" || $.key === " ") && ($.preventDefault(), $.stopPropagation(), a(
|
|
1271
1283
|
$
|
|
1272
1284
|
));
|
|
1273
1285
|
},
|
|
1274
1286
|
tabIndex: 0,
|
|
1275
|
-
children: /* @__PURE__ */ s(
|
|
1287
|
+
children: /* @__PURE__ */ s(jr, {})
|
|
1276
1288
|
}
|
|
1277
1289
|
)
|
|
1278
1290
|
] })
|
|
1279
1291
|
}
|
|
1280
1292
|
);
|
|
1281
1293
|
});
|
|
1282
|
-
|
|
1283
|
-
const
|
|
1284
|
-
root:
|
|
1285
|
-
},
|
|
1286
|
-
function({ children: e, size: r, ...a },
|
|
1287
|
-
const
|
|
1294
|
+
Gr.displayName = "Chip";
|
|
1295
|
+
const Hr = "Container-module__root___UVssr", Ie = {
|
|
1296
|
+
root: Hr
|
|
1297
|
+
}, qr = h(
|
|
1298
|
+
function({ children: e, size: r, ...a }, o) {
|
|
1299
|
+
const t = {
|
|
1288
1300
|
"rec-sm": "sm",
|
|
1289
1301
|
"rec-default": "md",
|
|
1290
1302
|
"rec-md": "md",
|
|
1291
1303
|
"rec-lg": "lg",
|
|
1292
1304
|
"rec-xl": "xl",
|
|
1293
1305
|
"rec-2xl": "xl"
|
|
1294
|
-
}, n = typeof r == "string" &&
|
|
1295
|
-
root:
|
|
1306
|
+
}, n = typeof r == "string" && t[r] ? t[r] : r, l = {
|
|
1307
|
+
root: Ie.root
|
|
1296
1308
|
}, c = a.classNames;
|
|
1297
1309
|
if (c && typeof c == "object" && !Array.isArray(c)) {
|
|
1298
1310
|
const _ = c;
|
|
1299
|
-
|
|
1311
|
+
l.root = _.root ? `${Ie.root} ${_.root}` : Ie.root;
|
|
1300
1312
|
}
|
|
1301
|
-
const d = a.className, p = d ? `${
|
|
1313
|
+
const d = a.className, p = d ? `${Ie.root} ${d}` : Ie.root;
|
|
1302
1314
|
return /* @__PURE__ */ s(
|
|
1303
|
-
|
|
1315
|
+
ra,
|
|
1304
1316
|
{
|
|
1305
|
-
ref:
|
|
1317
|
+
ref: o,
|
|
1306
1318
|
size: n,
|
|
1307
1319
|
className: p,
|
|
1308
|
-
classNames:
|
|
1320
|
+
classNames: l,
|
|
1309
1321
|
...a,
|
|
1310
1322
|
children: e
|
|
1311
1323
|
}
|
|
1312
1324
|
);
|
|
1313
1325
|
}
|
|
1314
1326
|
);
|
|
1315
|
-
|
|
1316
|
-
const
|
|
1317
|
-
layoutOverride:
|
|
1318
|
-
root:
|
|
1319
|
-
input:
|
|
1320
|
-
section:
|
|
1321
|
-
dropdown:
|
|
1322
|
-
calendarHeader:
|
|
1323
|
-
day:
|
|
1324
|
-
},
|
|
1327
|
+
qr.displayName = "Container";
|
|
1328
|
+
const Ur = "DatePicker-module__layoutOverride___X9yaM", Zr = "DatePicker-module__root___6XvRT", Yr = "DatePicker-module__input___pcSW8", Kr = "DatePicker-module__section___n3iWA", Xr = "DatePicker-module__dropdown___wjt08", Jr = "DatePicker-module__calendarHeader___KHxno", Qr = "DatePicker-module__day___U03J2", Z = {
|
|
1329
|
+
layoutOverride: Ur,
|
|
1330
|
+
root: Zr,
|
|
1331
|
+
input: Yr,
|
|
1332
|
+
section: Kr,
|
|
1333
|
+
dropdown: Xr,
|
|
1334
|
+
calendarHeader: Jr,
|
|
1335
|
+
day: Qr
|
|
1336
|
+
}, es = h(
|
|
1325
1337
|
function(e, r) {
|
|
1326
1338
|
const {
|
|
1327
1339
|
overStyled: a = !1,
|
|
1328
|
-
formLayout:
|
|
1340
|
+
formLayout: o = "stacked",
|
|
1329
1341
|
// Label & Wrapper Maps
|
|
1330
|
-
labelSize:
|
|
1342
|
+
labelSize: t,
|
|
1331
1343
|
labelAlignment: n,
|
|
1332
|
-
labelOptionalText:
|
|
1344
|
+
labelOptionalText: l,
|
|
1333
1345
|
labelWithEditIcon: c,
|
|
1334
1346
|
onLabelEditClick: d,
|
|
1335
1347
|
label: p,
|
|
1336
1348
|
assistiveText: _,
|
|
1337
|
-
assistiveWithIcon:
|
|
1349
|
+
assistiveWithIcon: f,
|
|
1338
1350
|
error: u,
|
|
1339
1351
|
required: m,
|
|
1340
1352
|
withAsterisk: b,
|
|
@@ -1348,7 +1360,7 @@ const Gr = "DatePicker-module__layoutOverride___X9yaM", Hr = "DatePicker-module_
|
|
|
1348
1360
|
value: x,
|
|
1349
1361
|
defaultValue: S,
|
|
1350
1362
|
...O
|
|
1351
|
-
} = e, W =
|
|
1363
|
+
} = e, W = N(O, a), w = W;
|
|
1352
1364
|
delete w.size, delete w.variant, delete w.radius, delete w.description;
|
|
1353
1365
|
const g = {
|
|
1354
1366
|
wrapper: Z.root,
|
|
@@ -1372,15 +1384,15 @@ const Gr = "DatePicker-module__layoutOverride___X9yaM", Hr = "DatePicker-module_
|
|
|
1372
1384
|
controlMaxWidth: void 0,
|
|
1373
1385
|
controlMinWidth: void 0,
|
|
1374
1386
|
overStyled: a,
|
|
1375
|
-
formLayout:
|
|
1376
|
-
labelSize:
|
|
1387
|
+
formLayout: o,
|
|
1388
|
+
labelSize: t,
|
|
1377
1389
|
labelAlignment: n,
|
|
1378
|
-
labelOptionalText:
|
|
1390
|
+
labelOptionalText: l,
|
|
1379
1391
|
labelWithEditIcon: c,
|
|
1380
1392
|
onLabelEditClick: d,
|
|
1381
1393
|
label: p,
|
|
1382
1394
|
assistiveText: _,
|
|
1383
|
-
assistiveWithIcon:
|
|
1395
|
+
assistiveWithIcon: f,
|
|
1384
1396
|
error: u,
|
|
1385
1397
|
required: m,
|
|
1386
1398
|
withAsterisk: b,
|
|
@@ -1394,7 +1406,7 @@ const Gr = "DatePicker-module__layoutOverride___X9yaM", Hr = "DatePicker-module_
|
|
|
1394
1406
|
activeComponent: (
|
|
1395
1407
|
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
1396
1408
|
/* @__PURE__ */ s(
|
|
1397
|
-
|
|
1409
|
+
va,
|
|
1398
1410
|
{
|
|
1399
1411
|
ref: r,
|
|
1400
1412
|
classNames: g,
|
|
@@ -1417,28 +1429,28 @@ const Gr = "DatePicker-module__layoutOverride___X9yaM", Hr = "DatePicker-module_
|
|
|
1417
1429
|
);
|
|
1418
1430
|
}
|
|
1419
1431
|
);
|
|
1420
|
-
|
|
1421
|
-
const
|
|
1422
|
-
layoutOverride:
|
|
1423
|
-
root:
|
|
1424
|
-
input:
|
|
1425
|
-
section:
|
|
1426
|
-
dropdown:
|
|
1427
|
-
option:
|
|
1428
|
-
},
|
|
1432
|
+
es.displayName = "DatePicker";
|
|
1433
|
+
const os = "Dropdown-module__layoutOverride___FNcvP", ts = "Dropdown-module__root___uVyL0", as = "Dropdown-module__input___dK4dN", rs = "Dropdown-module__section___j3MRB", ss = "Dropdown-module__dropdown___gG-Sw", ns = "Dropdown-module__option___nAGU-", D = {
|
|
1434
|
+
layoutOverride: os,
|
|
1435
|
+
root: ts,
|
|
1436
|
+
input: as,
|
|
1437
|
+
section: rs,
|
|
1438
|
+
dropdown: ss,
|
|
1439
|
+
option: ns
|
|
1440
|
+
}, ls = h(
|
|
1429
1441
|
function(e, r) {
|
|
1430
1442
|
const {
|
|
1431
1443
|
overStyled: a = !1,
|
|
1432
|
-
formLayout:
|
|
1433
|
-
containerWidth:
|
|
1444
|
+
formLayout: o = "stacked",
|
|
1445
|
+
containerWidth: t,
|
|
1434
1446
|
// Label & Wrapper Maps
|
|
1435
1447
|
labelSize: n,
|
|
1436
|
-
labelAlignment:
|
|
1448
|
+
labelAlignment: l,
|
|
1437
1449
|
labelOptionalText: c,
|
|
1438
1450
|
labelWithEditIcon: d,
|
|
1439
1451
|
onLabelEditClick: p,
|
|
1440
1452
|
label: _,
|
|
1441
|
-
assistiveText:
|
|
1453
|
+
assistiveText: f,
|
|
1442
1454
|
assistiveWithIcon: u,
|
|
1443
1455
|
error: m,
|
|
1444
1456
|
required: b,
|
|
@@ -1454,7 +1466,7 @@ const Jr = "Dropdown-module__layoutOverride___FNcvP", Qr = "Dropdown-module__roo
|
|
|
1454
1466
|
defaultValue: O,
|
|
1455
1467
|
data: W,
|
|
1456
1468
|
...w
|
|
1457
|
-
} = e, g =
|
|
1469
|
+
} = e, g = N(w, a), L = g;
|
|
1458
1470
|
delete L.size, delete L.variant, delete L.radius;
|
|
1459
1471
|
const R = {
|
|
1460
1472
|
wrapper: D.root,
|
|
@@ -1468,26 +1480,26 @@ const Jr = "Dropdown-module__layoutOverride___FNcvP", Qr = "Dropdown-module__roo
|
|
|
1468
1480
|
const U = T;
|
|
1469
1481
|
R.wrapper = U.wrapper ? `${D.root} ${U.wrapper}` : D.root, R.input = U.input ? `${D.input} ${U.input}` : D.input, R.section = U.section ? `${D.section} ${U.section}` : D.section, R.dropdown = U.dropdown ? `${D.dropdown} ${U.dropdown}` : D.dropdown, R.option = U.option ? `${D.option} ${U.option}` : D.option;
|
|
1470
1482
|
}
|
|
1471
|
-
const
|
|
1483
|
+
const ve = {
|
|
1472
1484
|
...y || {},
|
|
1473
|
-
width:
|
|
1474
|
-
},
|
|
1485
|
+
width: t || "100%"
|
|
1486
|
+
}, Ce = $ ? `${D.layoutOverride} ${$}` : D.layoutOverride;
|
|
1475
1487
|
return /* @__PURE__ */ s(
|
|
1476
1488
|
oe,
|
|
1477
1489
|
{
|
|
1478
|
-
className:
|
|
1479
|
-
style:
|
|
1490
|
+
className: Ce,
|
|
1491
|
+
style: ve,
|
|
1480
1492
|
controlMaxWidth: "var(--recursica_ui-kit_components_dropdown_properties_max-width)",
|
|
1481
1493
|
controlMinWidth: "var(--recursica_ui-kit_components_dropdown_properties_min-width)",
|
|
1482
1494
|
overStyled: a,
|
|
1483
|
-
formLayout:
|
|
1495
|
+
formLayout: o,
|
|
1484
1496
|
labelSize: n,
|
|
1485
|
-
labelAlignment:
|
|
1497
|
+
labelAlignment: l,
|
|
1486
1498
|
labelOptionalText: c,
|
|
1487
1499
|
labelWithEditIcon: d,
|
|
1488
1500
|
onLabelEditClick: p,
|
|
1489
1501
|
label: _,
|
|
1490
|
-
assistiveText:
|
|
1502
|
+
assistiveText: f,
|
|
1491
1503
|
assistiveWithIcon: u,
|
|
1492
1504
|
error: m,
|
|
1493
1505
|
required: b,
|
|
@@ -1502,7 +1514,7 @@ const Jr = "Dropdown-module__layoutOverride___FNcvP", Qr = "Dropdown-module__roo
|
|
|
1502
1514
|
activeComponent: (
|
|
1503
1515
|
/* Naked Select execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
1504
1516
|
/* @__PURE__ */ s(
|
|
1505
|
-
|
|
1517
|
+
sa,
|
|
1506
1518
|
{
|
|
1507
1519
|
ref: r,
|
|
1508
1520
|
classNames: R,
|
|
@@ -1527,309 +1539,309 @@ const Jr = "Dropdown-module__layoutOverride___FNcvP", Qr = "Dropdown-module__roo
|
|
|
1527
1539
|
);
|
|
1528
1540
|
}
|
|
1529
1541
|
);
|
|
1530
|
-
|
|
1531
|
-
const
|
|
1532
|
-
root:
|
|
1533
|
-
},
|
|
1534
|
-
const
|
|
1535
|
-
root:
|
|
1536
|
-
}, c =
|
|
1542
|
+
ls.displayName = "Dropdown";
|
|
1543
|
+
const ti = (i) => /* @__PURE__ */ s("div", { ...i, children: "FileInput" }), ai = (i) => /* @__PURE__ */ s("div", { ...i, children: "FileUpload" }), is = "Flex-module__root___yYser", Me = {
|
|
1544
|
+
root: is
|
|
1545
|
+
}, Ho = h(function({ children: e, gap: r = "rec-default", rowGap: a, columnGap: o, ...t }, n) {
|
|
1546
|
+
const l = {
|
|
1547
|
+
root: Me.root
|
|
1548
|
+
}, c = t.classNames;
|
|
1537
1549
|
if (c && typeof c == "object" && !Array.isArray(c)) {
|
|
1538
1550
|
const _ = c;
|
|
1539
|
-
|
|
1551
|
+
l.root = _.root ? `${Me.root} ${_.root}` : Me.root;
|
|
1540
1552
|
}
|
|
1541
|
-
const d =
|
|
1553
|
+
const d = t.className, p = d ? `${Me.root} ${d}` : Me.root;
|
|
1542
1554
|
return /* @__PURE__ */ s(
|
|
1543
|
-
|
|
1555
|
+
na,
|
|
1544
1556
|
{
|
|
1545
1557
|
ref: n,
|
|
1546
1558
|
className: p,
|
|
1547
|
-
classNames:
|
|
1548
|
-
...
|
|
1559
|
+
classNames: l,
|
|
1560
|
+
...no({ gap: r, rowGap: a, columnGap: o, ...t }),
|
|
1549
1561
|
children: e
|
|
1550
1562
|
}
|
|
1551
1563
|
);
|
|
1552
1564
|
});
|
|
1553
|
-
|
|
1554
|
-
const
|
|
1555
|
-
root:
|
|
1556
|
-
},
|
|
1557
|
-
const
|
|
1558
|
-
root:
|
|
1565
|
+
Ho.displayName = "Flex";
|
|
1566
|
+
const ri = te(Ho), cs = "Group-module__root___ftO64", ze = {
|
|
1567
|
+
root: cs
|
|
1568
|
+
}, ds = h(function({ children: e, gap: r = "rec-default", ...a }, o) {
|
|
1569
|
+
const t = {
|
|
1570
|
+
root: ze.root
|
|
1559
1571
|
}, n = a.classNames;
|
|
1560
1572
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
1561
1573
|
const d = n;
|
|
1562
|
-
|
|
1574
|
+
t.root = d.root ? `${ze.root} ${d.root}` : ze.root;
|
|
1563
1575
|
}
|
|
1564
|
-
const
|
|
1576
|
+
const l = a.className, c = l ? `${ze.root} ${l}` : ze.root;
|
|
1565
1577
|
return /* @__PURE__ */ s(
|
|
1566
|
-
|
|
1578
|
+
la,
|
|
1567
1579
|
{
|
|
1568
|
-
ref:
|
|
1580
|
+
ref: o,
|
|
1569
1581
|
className: c,
|
|
1570
|
-
classNames:
|
|
1571
|
-
...
|
|
1582
|
+
classNames: t,
|
|
1583
|
+
...no({ gap: r, ...a }),
|
|
1572
1584
|
children: e
|
|
1573
1585
|
}
|
|
1574
1586
|
);
|
|
1575
1587
|
});
|
|
1576
|
-
|
|
1577
|
-
const
|
|
1578
|
-
dropdown:
|
|
1579
|
-
arrow:
|
|
1580
|
-
},
|
|
1588
|
+
ds.displayName = "Group";
|
|
1589
|
+
const ps = "HoverCard-module__dropdown___FBPFW", _s = "HoverCard-module__arrow___S9AkE", $o = {
|
|
1590
|
+
dropdown: ps,
|
|
1591
|
+
arrow: _s
|
|
1592
|
+
}, qo = function({
|
|
1581
1593
|
overStyled: e = !1,
|
|
1582
1594
|
withBeak: r = !0,
|
|
1583
1595
|
...a
|
|
1584
1596
|
}) {
|
|
1585
|
-
const
|
|
1586
|
-
dropdown:
|
|
1587
|
-
arrow:
|
|
1588
|
-
}, n =
|
|
1597
|
+
const o = N(a, e), t = {
|
|
1598
|
+
dropdown: $o.dropdown,
|
|
1599
|
+
arrow: $o.arrow
|
|
1600
|
+
}, n = o.classNames;
|
|
1589
1601
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
1590
1602
|
const p = n;
|
|
1591
1603
|
Object.keys(p).forEach((_) => {
|
|
1592
|
-
|
|
1604
|
+
t[_] ? t[_] = `${t[_]} ${p[_]}` : t[_] = p[_];
|
|
1593
1605
|
});
|
|
1594
1606
|
}
|
|
1595
|
-
const
|
|
1607
|
+
const l = o.arrowSize ?? 16, c = o.withArrow;
|
|
1596
1608
|
return /* @__PURE__ */ s(
|
|
1597
|
-
|
|
1609
|
+
ao,
|
|
1598
1610
|
{
|
|
1599
1611
|
position: "top",
|
|
1600
|
-
arrowSize:
|
|
1612
|
+
arrowSize: l,
|
|
1601
1613
|
withArrow: r ?? c,
|
|
1602
|
-
classNames:
|
|
1603
|
-
...
|
|
1614
|
+
classNames: t,
|
|
1615
|
+
...o
|
|
1604
1616
|
}
|
|
1605
1617
|
);
|
|
1606
1618
|
};
|
|
1607
|
-
|
|
1608
|
-
const
|
|
1609
|
-
return /* @__PURE__ */ s(
|
|
1619
|
+
qo.displayName = "HoverCard";
|
|
1620
|
+
const Uo = function(e) {
|
|
1621
|
+
return /* @__PURE__ */ s(ao.Target, { ...e });
|
|
1610
1622
|
};
|
|
1611
|
-
|
|
1612
|
-
const
|
|
1623
|
+
Uo.displayName = "HoverCardTarget";
|
|
1624
|
+
const Zo = function({
|
|
1613
1625
|
overStyled: e = !1,
|
|
1614
1626
|
...r
|
|
1615
1627
|
}) {
|
|
1616
|
-
const a =
|
|
1628
|
+
const a = N(r, e), o = a.className;
|
|
1617
1629
|
return /* @__PURE__ */ s(
|
|
1618
|
-
|
|
1630
|
+
ao.Dropdown,
|
|
1619
1631
|
{
|
|
1620
|
-
className:
|
|
1632
|
+
className: o,
|
|
1621
1633
|
...a
|
|
1622
1634
|
}
|
|
1623
1635
|
);
|
|
1624
1636
|
};
|
|
1625
|
-
|
|
1626
|
-
const
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
const
|
|
1630
|
-
root:
|
|
1631
|
-
iconWrapper:
|
|
1632
|
-
labelText:
|
|
1633
|
-
},
|
|
1634
|
-
const n =
|
|
1635
|
-
root:
|
|
1636
|
-
}, d =
|
|
1637
|
+
Zo.displayName = "HoverCardDropdown";
|
|
1638
|
+
const Yo = qo;
|
|
1639
|
+
Yo.Target = Uo;
|
|
1640
|
+
Yo.Dropdown = Zo;
|
|
1641
|
+
const ms = "Link-module__root___I0VGE", us = "Link-module__iconWrapper___W-LlF", bs = "Link-module__labelText___wSvUy", we = {
|
|
1642
|
+
root: ms,
|
|
1643
|
+
iconWrapper: us,
|
|
1644
|
+
labelText: bs
|
|
1645
|
+
}, Ko = h(function({ icon: e, children: r, overStyled: a = !1, ...o }, t) {
|
|
1646
|
+
const n = N(o, a), l = n, c = {
|
|
1647
|
+
root: we.root
|
|
1648
|
+
}, d = l.classNames;
|
|
1637
1649
|
if (d && typeof d == "object" && !Array.isArray(d)) {
|
|
1638
|
-
const
|
|
1639
|
-
c.root =
|
|
1650
|
+
const f = d;
|
|
1651
|
+
c.root = f.root ? `${we.root} ${f.root}` : we.root;
|
|
1640
1652
|
}
|
|
1641
|
-
const p =
|
|
1653
|
+
const p = l.className, _ = p ? `${we.root} ${p}` : we.root;
|
|
1642
1654
|
return /* @__PURE__ */ z(
|
|
1643
|
-
|
|
1655
|
+
ia,
|
|
1644
1656
|
{
|
|
1645
|
-
ref:
|
|
1657
|
+
ref: t,
|
|
1646
1658
|
className: _,
|
|
1647
1659
|
classNames: c,
|
|
1648
1660
|
underline: "never",
|
|
1649
1661
|
...e ? { "data-has-icon": "" } : {},
|
|
1650
1662
|
...n,
|
|
1651
1663
|
children: [
|
|
1652
|
-
e && /* @__PURE__ */ s("span", { className:
|
|
1653
|
-
/* @__PURE__ */ s("span", { className:
|
|
1664
|
+
e && /* @__PURE__ */ s("span", { className: we.iconWrapper, "aria-hidden": !0, children: e }),
|
|
1665
|
+
/* @__PURE__ */ s("span", { className: we.labelText, children: r })
|
|
1654
1666
|
]
|
|
1655
1667
|
}
|
|
1656
1668
|
);
|
|
1657
1669
|
});
|
|
1658
|
-
|
|
1659
|
-
const
|
|
1660
|
-
dropdown:
|
|
1661
|
-
item:
|
|
1662
|
-
itemLabel:
|
|
1663
|
-
itemSection:
|
|
1664
|
-
divider:
|
|
1665
|
-
label:
|
|
1666
|
-
chevron:
|
|
1667
|
-
},
|
|
1668
|
-
const a =
|
|
1669
|
-
dropdown:
|
|
1670
|
-
item:
|
|
1671
|
-
itemLabel:
|
|
1672
|
-
itemSection:
|
|
1673
|
-
divider:
|
|
1674
|
-
label:
|
|
1675
|
-
chevron:
|
|
1676
|
-
},
|
|
1677
|
-
if (
|
|
1678
|
-
const n =
|
|
1679
|
-
Object.keys(n).forEach((
|
|
1680
|
-
|
|
1670
|
+
Ko.displayName = "Link";
|
|
1671
|
+
const si = te(Ko), ys = "Menu-module__dropdown___j4xuA", fs = "Menu-module__item___NMXha", Ns = "Menu-module__itemLabel___zvcqC", hs = "Menu-module__itemSection___pRIcn", $s = "Menu-module__divider___wPiNq", vs = "Menu-module__label___4FBGa", Cs = "Menu-module__chevron___hEEiy", ge = {
|
|
1672
|
+
dropdown: ys,
|
|
1673
|
+
item: fs,
|
|
1674
|
+
itemLabel: Ns,
|
|
1675
|
+
itemSection: hs,
|
|
1676
|
+
divider: $s,
|
|
1677
|
+
label: vs,
|
|
1678
|
+
chevron: Cs
|
|
1679
|
+
}, Xo = function({ overStyled: e = !1, ...r }) {
|
|
1680
|
+
const a = N(r, e), o = {
|
|
1681
|
+
dropdown: ge.dropdown,
|
|
1682
|
+
item: ge.item,
|
|
1683
|
+
itemLabel: ge.itemLabel,
|
|
1684
|
+
itemSection: ge.itemSection,
|
|
1685
|
+
divider: ge.divider,
|
|
1686
|
+
label: ge.label,
|
|
1687
|
+
chevron: ge.chevron
|
|
1688
|
+
}, t = a.classNames;
|
|
1689
|
+
if (t && typeof t == "object" && !Array.isArray(t)) {
|
|
1690
|
+
const n = t;
|
|
1691
|
+
Object.keys(n).forEach((l) => {
|
|
1692
|
+
o[l] ? o[l] = `${o[l]} ${n[l]}` : o[l] = n[l];
|
|
1681
1693
|
});
|
|
1682
1694
|
}
|
|
1683
1695
|
return /* @__PURE__ */ s(
|
|
1684
1696
|
ae,
|
|
1685
1697
|
{
|
|
1686
|
-
classNames:
|
|
1698
|
+
classNames: o,
|
|
1687
1699
|
...a
|
|
1688
1700
|
}
|
|
1689
1701
|
);
|
|
1690
1702
|
};
|
|
1691
|
-
|
|
1692
|
-
const
|
|
1703
|
+
Xo.displayName = "Menu";
|
|
1704
|
+
const Jo = function(e) {
|
|
1693
1705
|
return /* @__PURE__ */ s(ae.Target, { ...e });
|
|
1694
1706
|
};
|
|
1695
|
-
|
|
1696
|
-
const
|
|
1707
|
+
Jo.displayName = "MenuTarget";
|
|
1708
|
+
const Qo = h(
|
|
1697
1709
|
function({ overStyled: e = !1, ...r }, a) {
|
|
1698
|
-
const
|
|
1710
|
+
const o = N(r, e), t = o.className;
|
|
1699
1711
|
return /* @__PURE__ */ s(
|
|
1700
1712
|
ae.Dropdown,
|
|
1701
1713
|
{
|
|
1702
1714
|
ref: a,
|
|
1703
|
-
className:
|
|
1704
|
-
...
|
|
1715
|
+
className: t,
|
|
1716
|
+
...o
|
|
1705
1717
|
}
|
|
1706
1718
|
);
|
|
1707
1719
|
}
|
|
1708
1720
|
);
|
|
1709
|
-
|
|
1710
|
-
const
|
|
1721
|
+
Qo.displayName = "MenuDropdown";
|
|
1722
|
+
const et = h(
|
|
1711
1723
|
function({ overStyled: e = !1, ...r }, a) {
|
|
1712
|
-
const
|
|
1713
|
-
e || delete
|
|
1714
|
-
const n =
|
|
1724
|
+
const o = N(r, e), t = o;
|
|
1725
|
+
e || delete t.color;
|
|
1726
|
+
const n = t.className;
|
|
1715
1727
|
return /* @__PURE__ */ s(
|
|
1716
1728
|
ae.Item,
|
|
1717
1729
|
{
|
|
1718
1730
|
ref: a,
|
|
1719
1731
|
className: n,
|
|
1720
|
-
...
|
|
1732
|
+
...o
|
|
1721
1733
|
}
|
|
1722
1734
|
);
|
|
1723
1735
|
}
|
|
1724
1736
|
);
|
|
1725
|
-
|
|
1726
|
-
const
|
|
1737
|
+
et.displayName = "MenuItem";
|
|
1738
|
+
const Ps = te(et), ot = h(
|
|
1727
1739
|
function({ overStyled: e = !1, ...r }, a) {
|
|
1728
|
-
const
|
|
1740
|
+
const o = N(r, e), t = o.className;
|
|
1729
1741
|
return /* @__PURE__ */ s(
|
|
1730
1742
|
ae.Divider,
|
|
1731
1743
|
{
|
|
1732
1744
|
ref: a,
|
|
1733
|
-
className:
|
|
1734
|
-
...
|
|
1745
|
+
className: t,
|
|
1746
|
+
...o
|
|
1735
1747
|
}
|
|
1736
1748
|
);
|
|
1737
1749
|
}
|
|
1738
1750
|
);
|
|
1739
|
-
|
|
1740
|
-
const
|
|
1741
|
-
const
|
|
1751
|
+
ot.displayName = "MenuDivider";
|
|
1752
|
+
const tt = h(function({ overStyled: e = !1, ...r }, a) {
|
|
1753
|
+
const o = N(r, e), t = o.className;
|
|
1742
1754
|
return /* @__PURE__ */ s(
|
|
1743
1755
|
ae.Label,
|
|
1744
1756
|
{
|
|
1745
1757
|
ref: a,
|
|
1746
|
-
className:
|
|
1747
|
-
...
|
|
1758
|
+
className: t,
|
|
1759
|
+
...o
|
|
1748
1760
|
}
|
|
1749
1761
|
);
|
|
1750
1762
|
});
|
|
1751
|
-
|
|
1752
|
-
const
|
|
1763
|
+
tt.displayName = "MenuLabel";
|
|
1764
|
+
const at = function(e) {
|
|
1753
1765
|
return /* @__PURE__ */ s(ae.Sub, { ...e });
|
|
1754
1766
|
};
|
|
1755
|
-
|
|
1756
|
-
const
|
|
1767
|
+
at.displayName = "MenuSub";
|
|
1768
|
+
const rt = function(e) {
|
|
1757
1769
|
return /* @__PURE__ */ s(ae.Sub.Target, { ...e });
|
|
1758
1770
|
};
|
|
1759
|
-
|
|
1760
|
-
const
|
|
1771
|
+
rt.displayName = "MenuSubTarget";
|
|
1772
|
+
const st = h(
|
|
1761
1773
|
function({ overStyled: e = !1, ...r }, a) {
|
|
1762
|
-
const
|
|
1763
|
-
e || delete
|
|
1764
|
-
const n =
|
|
1774
|
+
const o = N(r, e), t = o;
|
|
1775
|
+
e || delete t.color;
|
|
1776
|
+
const n = t.className;
|
|
1765
1777
|
return /* @__PURE__ */ s(
|
|
1766
1778
|
ae.Sub.Item,
|
|
1767
1779
|
{
|
|
1768
1780
|
ref: a,
|
|
1769
1781
|
className: n,
|
|
1770
|
-
...
|
|
1782
|
+
...o
|
|
1771
1783
|
}
|
|
1772
1784
|
);
|
|
1773
1785
|
}
|
|
1774
1786
|
);
|
|
1775
|
-
|
|
1776
|
-
const
|
|
1777
|
-
|
|
1778
|
-
),
|
|
1787
|
+
st.displayName = "MenuSubItem";
|
|
1788
|
+
const ws = te(
|
|
1789
|
+
st
|
|
1790
|
+
), nt = h(
|
|
1779
1791
|
function({ overStyled: e = !1, ...r }, a) {
|
|
1780
|
-
const
|
|
1792
|
+
const o = N(r, e), t = o.className;
|
|
1781
1793
|
return /* @__PURE__ */ s(
|
|
1782
1794
|
ae.Sub.Dropdown,
|
|
1783
1795
|
{
|
|
1784
1796
|
ref: a,
|
|
1785
|
-
className:
|
|
1786
|
-
...
|
|
1797
|
+
className: t,
|
|
1798
|
+
...o
|
|
1787
1799
|
}
|
|
1788
1800
|
);
|
|
1789
1801
|
}
|
|
1790
1802
|
);
|
|
1791
|
-
|
|
1792
|
-
const
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
const
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
const
|
|
1804
|
-
root:
|
|
1805
|
-
inner:
|
|
1806
|
-
content:
|
|
1807
|
-
header:
|
|
1808
|
-
title:
|
|
1809
|
-
bodyWrapper:
|
|
1810
|
-
scrollArea:
|
|
1811
|
-
footer:
|
|
1812
|
-
close:
|
|
1813
|
-
},
|
|
1803
|
+
nt.displayName = "MenuSubDropdown";
|
|
1804
|
+
const Ke = at;
|
|
1805
|
+
Ke.Target = rt;
|
|
1806
|
+
Ke.Item = ws;
|
|
1807
|
+
Ke.Dropdown = nt;
|
|
1808
|
+
const We = Xo;
|
|
1809
|
+
We.Target = Jo;
|
|
1810
|
+
We.Dropdown = Qo;
|
|
1811
|
+
We.Item = Ps;
|
|
1812
|
+
We.Divider = ot;
|
|
1813
|
+
We.Label = tt;
|
|
1814
|
+
We.Sub = Ke;
|
|
1815
|
+
const gs = "Modal-module__root___ytPLl", Ts = "Modal-module__inner___SSUJE", Ss = "Modal-module__content___dWO-B", xs = "Modal-module__header___ILG9i", As = "Modal-module__title___A5OeE", Os = "Modal-module__bodyWrapper___5CCL-", Ws = "Modal-module__scrollArea___KD-hm", Ls = "Modal-module__footer___rro2w", ks = "Modal-module__close___-ER1C", ne = {
|
|
1816
|
+
root: gs,
|
|
1817
|
+
inner: Ts,
|
|
1818
|
+
content: Ss,
|
|
1819
|
+
header: xs,
|
|
1820
|
+
title: As,
|
|
1821
|
+
bodyWrapper: Os,
|
|
1822
|
+
scrollArea: Ws,
|
|
1823
|
+
footer: Ls,
|
|
1824
|
+
close: ks
|
|
1825
|
+
}, lt = j.forwardRef(function({
|
|
1814
1826
|
overStyled: e = !1,
|
|
1815
1827
|
children: r,
|
|
1816
1828
|
title: a,
|
|
1817
|
-
withCloseButton:
|
|
1818
|
-
overlayProps:
|
|
1829
|
+
withCloseButton: o = !0,
|
|
1830
|
+
overlayProps: t,
|
|
1819
1831
|
withOverlay: n = !0,
|
|
1820
|
-
closeButtonProps:
|
|
1832
|
+
closeButtonProps: l,
|
|
1821
1833
|
...c
|
|
1822
1834
|
}, d) {
|
|
1823
|
-
const p =
|
|
1835
|
+
const p = N(c, e), _ = {
|
|
1824
1836
|
root: ne.root,
|
|
1825
1837
|
inner: ne.inner,
|
|
1826
1838
|
content: ne.content,
|
|
1827
1839
|
header: ne.header,
|
|
1828
1840
|
title: ne.title,
|
|
1829
1841
|
close: ne.close
|
|
1830
|
-
},
|
|
1831
|
-
if (
|
|
1832
|
-
const u =
|
|
1842
|
+
}, f = p.classNames;
|
|
1843
|
+
if (f && typeof f == "object" && !Array.isArray(f)) {
|
|
1844
|
+
const u = f;
|
|
1833
1845
|
Object.keys(u).forEach((m) => {
|
|
1834
1846
|
_[m] ? _[m] = `${_[m]} ${u[m]}` : _[m] = u[m];
|
|
1835
1847
|
});
|
|
@@ -1841,20 +1853,20 @@ const Cs = "Modal-module__root___ytPLl", Ps = "Modal-module__inner___SSUJE", ws
|
|
|
1841
1853
|
classNames: _,
|
|
1842
1854
|
...p,
|
|
1843
1855
|
children: [
|
|
1844
|
-
n && /* @__PURE__ */ s(K.Overlay, { ...
|
|
1856
|
+
n && /* @__PURE__ */ s(K.Overlay, { ...t }),
|
|
1845
1857
|
/* @__PURE__ */ z(K.Content, { children: [
|
|
1846
|
-
(a ||
|
|
1858
|
+
(a || o) && /* @__PURE__ */ z(K.Header, { children: [
|
|
1847
1859
|
a && /* @__PURE__ */ s(K.Title, { children: a }),
|
|
1848
|
-
|
|
1860
|
+
o && /* @__PURE__ */ s(K.CloseButton, { ...l })
|
|
1849
1861
|
] }),
|
|
1850
|
-
/* @__PURE__ */ s(
|
|
1862
|
+
/* @__PURE__ */ s(_o, { children: r })
|
|
1851
1863
|
] })
|
|
1852
1864
|
]
|
|
1853
1865
|
}
|
|
1854
1866
|
);
|
|
1855
1867
|
});
|
|
1856
|
-
|
|
1857
|
-
const
|
|
1868
|
+
lt.displayName = "Modal";
|
|
1869
|
+
const po = j.forwardRef(function({ className: e, ...r }, a) {
|
|
1858
1870
|
return /* @__PURE__ */ s(
|
|
1859
1871
|
"div",
|
|
1860
1872
|
{
|
|
@@ -1864,29 +1876,29 @@ const io = j.forwardRef(function({ className: e, ...r }, a) {
|
|
|
1864
1876
|
}
|
|
1865
1877
|
);
|
|
1866
1878
|
});
|
|
1867
|
-
|
|
1868
|
-
const
|
|
1869
|
-
const n = j.useRef(null), [
|
|
1879
|
+
po.displayName = "Modal.Footer";
|
|
1880
|
+
const _o = j.forwardRef(function({ className: e, onScroll: r, children: a, ...o }, t) {
|
|
1881
|
+
const n = j.useRef(null), [l, c] = j.useState(!1), [d, p] = j.useState(!1), _ = j.useCallback(() => {
|
|
1870
1882
|
if (n.current) {
|
|
1871
1883
|
const { scrollTop: b, scrollHeight: P, clientHeight: C } = n.current;
|
|
1872
1884
|
c(b > 0), p(Math.ceil(b + C) < P);
|
|
1873
1885
|
}
|
|
1874
1886
|
}, []);
|
|
1875
1887
|
j.useEffect(() => (_(), window.addEventListener("resize", _), () => window.removeEventListener("resize", _)), [_, a]);
|
|
1876
|
-
const
|
|
1888
|
+
const f = (b) => {
|
|
1877
1889
|
_(), r == null || r(b);
|
|
1878
1890
|
};
|
|
1879
1891
|
let u = null;
|
|
1880
1892
|
const m = [];
|
|
1881
1893
|
return j.Children.forEach(a, (b) => {
|
|
1882
1894
|
var P;
|
|
1883
|
-
j.isValidElement(b) && (b.type ===
|
|
1895
|
+
j.isValidElement(b) && (b.type === po || ((P = b.type) == null ? void 0 : P.displayName) === "Modal.Footer") ? u = b : m.push(b);
|
|
1884
1896
|
}), /* @__PURE__ */ z(
|
|
1885
1897
|
K.Body,
|
|
1886
1898
|
{
|
|
1887
|
-
...
|
|
1899
|
+
...o,
|
|
1888
1900
|
ref: (b) => {
|
|
1889
|
-
typeof
|
|
1901
|
+
typeof t == "function" ? t(b) : t && (t.current = b);
|
|
1890
1902
|
},
|
|
1891
1903
|
className: `${ne.bodyWrapper} ${e || ""}`,
|
|
1892
1904
|
children: [
|
|
@@ -1894,8 +1906,8 @@ const co = j.forwardRef(function({ className: e, onScroll: r, children: a, ...t
|
|
|
1894
1906
|
"div",
|
|
1895
1907
|
{
|
|
1896
1908
|
ref: n,
|
|
1897
|
-
onScroll:
|
|
1898
|
-
"data-scrolled-top":
|
|
1909
|
+
onScroll: f,
|
|
1910
|
+
"data-scrolled-top": l || void 0,
|
|
1899
1911
|
"data-scrolled-bottom": d || void 0,
|
|
1900
1912
|
className: ne.scrollArea,
|
|
1901
1913
|
children: m
|
|
@@ -1906,37 +1918,37 @@ const co = j.forwardRef(function({ className: e, onScroll: r, children: a, ...t
|
|
|
1906
1918
|
}
|
|
1907
1919
|
);
|
|
1908
1920
|
});
|
|
1909
|
-
|
|
1910
|
-
const
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
const
|
|
1920
|
-
layoutOverride:
|
|
1921
|
-
root:
|
|
1922
|
-
input:
|
|
1923
|
-
section:
|
|
1924
|
-
controls:
|
|
1925
|
-
control:
|
|
1926
|
-
},
|
|
1921
|
+
_o.displayName = "Modal.Body";
|
|
1922
|
+
const he = lt;
|
|
1923
|
+
he.Root = K.Root;
|
|
1924
|
+
he.Overlay = K.Overlay;
|
|
1925
|
+
he.Content = K.Content;
|
|
1926
|
+
he.Header = K.Header;
|
|
1927
|
+
he.Title = K.Title;
|
|
1928
|
+
he.CloseButton = K.CloseButton;
|
|
1929
|
+
he.Body = _o;
|
|
1930
|
+
he.Footer = po;
|
|
1931
|
+
const Is = "NumberInput-module__layoutOverride___5-9T4", Ms = "NumberInput-module__root___C6rAn", zs = "NumberInput-module__input___Ss8p7", Rs = "NumberInput-module__section___MijP0", Bs = "NumberInput-module__controls___8UfQ2", Fs = "NumberInput-module__control___Qre9-", Te = {
|
|
1932
|
+
layoutOverride: Is,
|
|
1933
|
+
root: Ms,
|
|
1934
|
+
input: zs,
|
|
1935
|
+
section: Rs,
|
|
1936
|
+
controls: Bs,
|
|
1937
|
+
control: Fs
|
|
1938
|
+
}, Es = h(
|
|
1927
1939
|
function(e, r) {
|
|
1928
1940
|
const {
|
|
1929
1941
|
overStyled: a = !1,
|
|
1930
|
-
formLayout:
|
|
1942
|
+
formLayout: o = "stacked",
|
|
1931
1943
|
// Label & Wrapper Maps
|
|
1932
|
-
labelSize:
|
|
1944
|
+
labelSize: t,
|
|
1933
1945
|
labelAlignment: n,
|
|
1934
|
-
labelOptionalText:
|
|
1946
|
+
labelOptionalText: l,
|
|
1935
1947
|
labelWithEditIcon: c,
|
|
1936
1948
|
onLabelEditClick: d,
|
|
1937
1949
|
label: p,
|
|
1938
1950
|
assistiveText: _,
|
|
1939
|
-
assistiveWithIcon:
|
|
1951
|
+
assistiveWithIcon: f,
|
|
1940
1952
|
error: u,
|
|
1941
1953
|
required: m,
|
|
1942
1954
|
withAsterisk: b,
|
|
@@ -1951,16 +1963,16 @@ const Ws = "NumberInput-module__layoutOverride___5-9T4", Ls = "NumberInput-modul
|
|
|
1951
1963
|
defaultValue: S,
|
|
1952
1964
|
hideControls: O = !1,
|
|
1953
1965
|
...W
|
|
1954
|
-
} = e, w =
|
|
1966
|
+
} = e, w = N(W, a), g = w;
|
|
1955
1967
|
delete g.size, delete g.variant, delete g.radius;
|
|
1956
1968
|
const L = {
|
|
1957
|
-
wrapper:
|
|
1969
|
+
wrapper: Te.root,
|
|
1958
1970
|
// The nested Input internal relative wrapper bounding box
|
|
1959
|
-
input:
|
|
1960
|
-
section:
|
|
1961
|
-
controls:
|
|
1962
|
-
control:
|
|
1963
|
-
}, R = C ? `${
|
|
1971
|
+
input: Te.input,
|
|
1972
|
+
section: Te.section,
|
|
1973
|
+
controls: Te.controls,
|
|
1974
|
+
control: Te.control
|
|
1975
|
+
}, R = C ? `${Te.layoutOverride} ${C}` : Te.layoutOverride;
|
|
1964
1976
|
return /* @__PURE__ */ s(
|
|
1965
1977
|
oe,
|
|
1966
1978
|
{
|
|
@@ -1969,15 +1981,15 @@ const Ws = "NumberInput-module__layoutOverride___5-9T4", Ls = "NumberInput-modul
|
|
|
1969
1981
|
controlMaxWidth: "var(--recursica_ui-kit_components_number-input_properties_max-width)",
|
|
1970
1982
|
controlMinWidth: "var(--recursica_ui-kit_components_number-input_properties_min-width)",
|
|
1971
1983
|
overStyled: a,
|
|
1972
|
-
formLayout:
|
|
1973
|
-
labelSize:
|
|
1984
|
+
formLayout: o,
|
|
1985
|
+
labelSize: t,
|
|
1974
1986
|
labelAlignment: n,
|
|
1975
|
-
labelOptionalText:
|
|
1987
|
+
labelOptionalText: l,
|
|
1976
1988
|
labelWithEditIcon: c,
|
|
1977
1989
|
onLabelEditClick: d,
|
|
1978
1990
|
label: p,
|
|
1979
1991
|
assistiveText: _,
|
|
1980
|
-
assistiveWithIcon:
|
|
1992
|
+
assistiveWithIcon: f,
|
|
1981
1993
|
error: u,
|
|
1982
1994
|
required: m,
|
|
1983
1995
|
withAsterisk: b,
|
|
@@ -1991,7 +2003,7 @@ const Ws = "NumberInput-module__layoutOverride___5-9T4", Ls = "NumberInput-modul
|
|
|
1991
2003
|
activeComponent: (
|
|
1992
2004
|
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
1993
2005
|
/* @__PURE__ */ s(
|
|
1994
|
-
|
|
2006
|
+
ca,
|
|
1995
2007
|
{
|
|
1996
2008
|
ref: r,
|
|
1997
2009
|
classNames: L,
|
|
@@ -2018,20 +2030,20 @@ const Ws = "NumberInput-module__layoutOverride___5-9T4", Ls = "NumberInput-modul
|
|
|
2018
2030
|
);
|
|
2019
2031
|
}
|
|
2020
2032
|
);
|
|
2021
|
-
|
|
2022
|
-
const
|
|
2023
|
-
root:
|
|
2024
|
-
control:
|
|
2025
|
-
dots:
|
|
2026
|
-
iconWithLabel:
|
|
2027
|
-
baseIcon:
|
|
2028
|
-
},
|
|
2029
|
-
next:
|
|
2030
|
-
prev:
|
|
2031
|
-
first:
|
|
2032
|
-
last:
|
|
2033
|
-
},
|
|
2034
|
-
type:
|
|
2033
|
+
Es.displayName = "NumberInput";
|
|
2034
|
+
const Vs = "Pagination-module__root___ITRjt", Ds = "Pagination-module__control___40yNT", js = "Pagination-module__dots___Yl9da", Gs = "Pagination-module__iconWithLabel___pLM4O", Hs = "Pagination-module__baseIcon___Qw3bJ", G = {
|
|
2035
|
+
root: Vs,
|
|
2036
|
+
control: Ds,
|
|
2037
|
+
dots: js,
|
|
2038
|
+
iconWithLabel: Gs,
|
|
2039
|
+
baseIcon: Hs
|
|
2040
|
+
}, qs = "M8.781 8l-3.3-3.3.943-.943L10.667 8l-4.243 4.243-.943-.943 3.3-3.3z", Us = "M7.219 8l3.3 3.3-.943.943L5.333 8l4.243-4.243.943.943-3.3 3.3z", Zs = "M6.85355 3.85355C7.04882 3.65829 7.04882 3.34171 6.85355 3.14645C6.65829 2.95118 6.34171 2.95118 6.14645 3.14645L2.14645 7.14645C1.95118 7.34171 1.95118 7.65829 2.14645 7.85355L6.14645 11.8536C6.34171 12.0488 6.65829 12.0488 6.85355 11.8536C7.04882 11.6583 7.04882 11.3417 6.85355 11.1464L3.20711 7.5L6.85355 3.85355ZM12.8536 3.85355C13.0488 3.65829 13.0488 3.34171 12.8536 3.14645C12.6583 2.95118 12.3417 2.95118 12.1464 3.14645L8.14645 7.14645C7.95118 7.34171 7.95118 7.65829 8.14645 7.85355L12.1464 11.8536C12.3417 12.0488 12.6583 12.0488 12.8536 11.8536C13.0488 11.6583 13.0488 11.3417 12.8536 11.1464L9.20711 7.5L12.8536 3.85355Z", Ys = "M2.14645 11.1464C1.95118 11.3417 1.95118 11.6583 2.14645 11.8536C2.34171 12.0488 2.65829 12.0488 2.85355 11.8536L6.85355 7.85355C7.04882 7.65829 7.04882 7.34171 6.85355 7.14645L2.85355 3.14645C2.65829 2.95118 2.34171 2.95118 2.14645 3.14645C1.95118 3.34171 1.95118 3.65829 2.14645 3.85355L5.79289 7.5L2.14645 11.1464ZM8.14645 11.1464C7.95118 11.3417 7.95118 11.6583 8.14645 11.8536C8.34171 12.0488 8.65829 12.0488 8.85355 11.8536L12.8536 7.85355C13.0488 7.65829 13.0488 7.34171 12.8536 7.14645L8.85355 3.14645C8.65829 2.95118 8.34171 2.95118 8.14645 3.14645C7.95118 3.34171 7.95118 3.65829 8.14645 3.85355L11.7929 7.5L8.14645 11.1464Z", Ks = {
|
|
2041
|
+
next: qs,
|
|
2042
|
+
prev: Us,
|
|
2043
|
+
first: Zs,
|
|
2044
|
+
last: Ys
|
|
2045
|
+
}, Be = ({
|
|
2046
|
+
type: i,
|
|
2035
2047
|
className: e,
|
|
2036
2048
|
...r
|
|
2037
2049
|
}) => /* @__PURE__ */ s(
|
|
@@ -2041,122 +2053,122 @@ const Bs = "Pagination-module__root___ITRjt", Fs = "Pagination-module__control__
|
|
|
2041
2053
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2042
2054
|
className: `${G.baseIcon} ${e || ""}`.trim(),
|
|
2043
2055
|
...r,
|
|
2044
|
-
children: /* @__PURE__ */ s("path", { d:
|
|
2056
|
+
children: /* @__PURE__ */ s("path", { d: Ks[i], fill: "currentColor" })
|
|
2045
2057
|
}
|
|
2046
|
-
),
|
|
2058
|
+
), it = (i) => /* @__PURE__ */ z("div", { className: G.iconWithLabel, children: [
|
|
2047
2059
|
/* @__PURE__ */ s("span", { children: "Next" }),
|
|
2048
|
-
/* @__PURE__ */ s(
|
|
2049
|
-
] }),
|
|
2050
|
-
/* @__PURE__ */ s(
|
|
2060
|
+
/* @__PURE__ */ s(Be, { type: "next", ...i })
|
|
2061
|
+
] }), ct = (i) => /* @__PURE__ */ z("div", { className: G.iconWithLabel, children: [
|
|
2062
|
+
/* @__PURE__ */ s(Be, { type: "prev", ...i }),
|
|
2051
2063
|
/* @__PURE__ */ s("span", { children: "Prev" })
|
|
2052
|
-
] }),
|
|
2053
|
-
/* @__PURE__ */ s(
|
|
2064
|
+
] }), dt = (i) => /* @__PURE__ */ z("div", { className: G.iconWithLabel, children: [
|
|
2065
|
+
/* @__PURE__ */ s(Be, { type: "first", ...i }),
|
|
2054
2066
|
/* @__PURE__ */ s("span", { children: "First" })
|
|
2055
|
-
] }),
|
|
2067
|
+
] }), pt = (i) => /* @__PURE__ */ z("div", { className: G.iconWithLabel, children: [
|
|
2056
2068
|
/* @__PURE__ */ s("span", { children: "Last" }),
|
|
2057
|
-
/* @__PURE__ */ s(
|
|
2069
|
+
/* @__PURE__ */ s(Be, { type: "last", ...i })
|
|
2058
2070
|
] });
|
|
2059
|
-
function
|
|
2071
|
+
function _t(i) {
|
|
2060
2072
|
const e = {
|
|
2061
2073
|
root: G.root,
|
|
2062
2074
|
control: G.control,
|
|
2063
2075
|
dots: G.dots
|
|
2064
|
-
}, r =
|
|
2076
|
+
}, r = i.classNames;
|
|
2065
2077
|
if (r && typeof r == "object" && !Array.isArray(r)) {
|
|
2066
|
-
const
|
|
2067
|
-
e.root =
|
|
2078
|
+
const t = r;
|
|
2079
|
+
e.root = t.root ? `${G.root} ${t.root}` : G.root, e.control = t.control ? `${G.control} ${t.control}` : G.control, e.dots = t.dots ? `${G.dots} ${t.dots}` : G.dots;
|
|
2068
2080
|
}
|
|
2069
|
-
const a =
|
|
2081
|
+
const a = i.className;
|
|
2070
2082
|
return { className: a ? `${G.root} ${a}` : G.root, classNames: e };
|
|
2071
2083
|
}
|
|
2072
|
-
const
|
|
2084
|
+
const mt = h(
|
|
2073
2085
|
function({ overStyled: e = !1, ...r }, a) {
|
|
2074
|
-
const
|
|
2075
|
-
|
|
2086
|
+
const o = N(r, e), t = _t(
|
|
2087
|
+
o
|
|
2076
2088
|
);
|
|
2077
2089
|
return /* @__PURE__ */ s(
|
|
2078
2090
|
ie.Root,
|
|
2079
2091
|
{
|
|
2080
2092
|
ref: a,
|
|
2081
|
-
className:
|
|
2082
|
-
classNames:
|
|
2083
|
-
...
|
|
2093
|
+
className: t.className,
|
|
2094
|
+
classNames: t.classNames,
|
|
2095
|
+
...o
|
|
2084
2096
|
}
|
|
2085
2097
|
);
|
|
2086
2098
|
}
|
|
2087
2099
|
);
|
|
2088
|
-
|
|
2089
|
-
const
|
|
2090
|
-
const
|
|
2100
|
+
mt.displayName = "Pagination.Root";
|
|
2101
|
+
const ut = h(function({ withLabel: e, icon: r, ...a }, o) {
|
|
2102
|
+
const t = r || (e ? it : void 0);
|
|
2091
2103
|
return /* @__PURE__ */ s(
|
|
2092
2104
|
ie.Next,
|
|
2093
2105
|
{
|
|
2094
|
-
ref:
|
|
2106
|
+
ref: o,
|
|
2095
2107
|
"data-variant": "text",
|
|
2096
|
-
icon:
|
|
2108
|
+
icon: t,
|
|
2097
2109
|
...a
|
|
2098
2110
|
}
|
|
2099
2111
|
);
|
|
2100
2112
|
});
|
|
2101
|
-
|
|
2102
|
-
const
|
|
2103
|
-
const
|
|
2113
|
+
ut.displayName = "Pagination.Next";
|
|
2114
|
+
const bt = h(function({ withLabel: e, icon: r, ...a }, o) {
|
|
2115
|
+
const t = r || (e ? ct : void 0);
|
|
2104
2116
|
return /* @__PURE__ */ s(
|
|
2105
2117
|
ie.Previous,
|
|
2106
2118
|
{
|
|
2107
|
-
ref:
|
|
2119
|
+
ref: o,
|
|
2108
2120
|
"data-variant": "text",
|
|
2109
|
-
icon:
|
|
2121
|
+
icon: t,
|
|
2110
2122
|
...a
|
|
2111
2123
|
}
|
|
2112
2124
|
);
|
|
2113
2125
|
});
|
|
2114
|
-
|
|
2115
|
-
const
|
|
2116
|
-
const
|
|
2126
|
+
bt.displayName = "Pagination.Previous";
|
|
2127
|
+
const yt = h(function({ withLabel: e, icon: r, ...a }, o) {
|
|
2128
|
+
const t = r || (e ? dt : void 0);
|
|
2117
2129
|
return /* @__PURE__ */ s(
|
|
2118
2130
|
ie.First,
|
|
2119
2131
|
{
|
|
2120
|
-
ref:
|
|
2132
|
+
ref: o,
|
|
2121
2133
|
"data-variant": "text",
|
|
2122
|
-
icon:
|
|
2134
|
+
icon: t,
|
|
2123
2135
|
...a
|
|
2124
2136
|
}
|
|
2125
2137
|
);
|
|
2126
2138
|
});
|
|
2127
|
-
|
|
2128
|
-
const
|
|
2129
|
-
const
|
|
2139
|
+
yt.displayName = "Pagination.First";
|
|
2140
|
+
const ft = h(function({ withLabel: e, icon: r, ...a }, o) {
|
|
2141
|
+
const t = r || (e ? pt : void 0);
|
|
2130
2142
|
return /* @__PURE__ */ s(
|
|
2131
2143
|
ie.Last,
|
|
2132
2144
|
{
|
|
2133
|
-
ref:
|
|
2145
|
+
ref: o,
|
|
2134
2146
|
"data-variant": "text",
|
|
2135
|
-
icon:
|
|
2147
|
+
icon: t,
|
|
2136
2148
|
...a
|
|
2137
2149
|
}
|
|
2138
2150
|
);
|
|
2139
2151
|
});
|
|
2140
|
-
|
|
2141
|
-
const
|
|
2142
|
-
function({ overStyled: e = !1, getControlProps: r, withLabels: a, ...
|
|
2143
|
-
const n =
|
|
2152
|
+
ft.displayName = "Pagination.Last";
|
|
2153
|
+
const Nt = h(
|
|
2154
|
+
function({ overStyled: e = !1, getControlProps: r, withLabels: a, ...o }, t) {
|
|
2155
|
+
const n = N(o, e), l = _t(
|
|
2144
2156
|
n
|
|
2145
2157
|
), c = (p) => {
|
|
2146
2158
|
const _ = { "data-variant": "text" };
|
|
2147
2159
|
return r ? { ..._, ...r(p) } : _;
|
|
2148
2160
|
}, d = a ? {
|
|
2149
|
-
nextIcon:
|
|
2150
|
-
previousIcon:
|
|
2151
|
-
firstIcon:
|
|
2152
|
-
lastIcon:
|
|
2161
|
+
nextIcon: it,
|
|
2162
|
+
previousIcon: ct,
|
|
2163
|
+
firstIcon: dt,
|
|
2164
|
+
lastIcon: pt
|
|
2153
2165
|
} : {};
|
|
2154
2166
|
return /* @__PURE__ */ s(
|
|
2155
2167
|
ie,
|
|
2156
2168
|
{
|
|
2157
|
-
ref:
|
|
2158
|
-
className:
|
|
2159
|
-
classNames:
|
|
2169
|
+
ref: t,
|
|
2170
|
+
className: l.className,
|
|
2171
|
+
classNames: l.classNames,
|
|
2160
2172
|
getControlProps: c,
|
|
2161
2173
|
...d,
|
|
2162
2174
|
...n
|
|
@@ -2164,43 +2176,43 @@ const yt = h(
|
|
|
2164
2176
|
);
|
|
2165
2177
|
}
|
|
2166
2178
|
);
|
|
2167
|
-
|
|
2168
|
-
const
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
const
|
|
2179
|
-
content:
|
|
2180
|
-
inner:
|
|
2181
|
-
header:
|
|
2182
|
-
title:
|
|
2183
|
-
titleTruncate:
|
|
2184
|
-
body:
|
|
2185
|
-
footer:
|
|
2186
|
-
},
|
|
2179
|
+
Nt.displayName = "Pagination";
|
|
2180
|
+
const pe = Nt;
|
|
2181
|
+
pe.Root = mt;
|
|
2182
|
+
pe.Items = ie.Items;
|
|
2183
|
+
pe.Control = ie.Control;
|
|
2184
|
+
pe.Dots = ie.Dots;
|
|
2185
|
+
pe.Next = ut;
|
|
2186
|
+
pe.Previous = bt;
|
|
2187
|
+
pe.First = yt;
|
|
2188
|
+
pe.Last = ft;
|
|
2189
|
+
pe.Icon = Be;
|
|
2190
|
+
const Xs = "Panel-module__content___wdGo-", Js = "Panel-module__inner___ruA2b", Qs = "Panel-module__header___o7SiC", en = "Panel-module__title___181OP", on = "Panel-module__titleTruncate___fuP6V Panel-module__title___181OP", tn = "Panel-module__body___SEC3T", an = "Panel-module__footer___t6-hz", fe = {
|
|
2191
|
+
content: Xs,
|
|
2192
|
+
inner: Js,
|
|
2193
|
+
header: Qs,
|
|
2194
|
+
title: en,
|
|
2195
|
+
titleTruncate: on,
|
|
2196
|
+
body: tn,
|
|
2197
|
+
footer: an
|
|
2198
|
+
}, ht = function({
|
|
2187
2199
|
overStyled: e = !1,
|
|
2188
|
-
|
|
2200
|
+
placement: r = "right",
|
|
2189
2201
|
keepMounted: a = !0,
|
|
2190
|
-
wrapHeaderText:
|
|
2191
|
-
...
|
|
2202
|
+
wrapHeaderText: o = !1,
|
|
2203
|
+
...t
|
|
2192
2204
|
}) {
|
|
2193
|
-
const n =
|
|
2194
|
-
content:
|
|
2195
|
-
header:
|
|
2196
|
-
title:
|
|
2197
|
-
body:
|
|
2198
|
-
inner:
|
|
2205
|
+
const n = N(t, e), l = {
|
|
2206
|
+
content: fe.content,
|
|
2207
|
+
header: fe.header,
|
|
2208
|
+
title: o ? fe.titleTruncate : fe.title,
|
|
2209
|
+
body: fe.body,
|
|
2210
|
+
inner: fe.inner
|
|
2199
2211
|
}, c = n.classNames;
|
|
2200
2212
|
if (c && typeof c == "object" && !Array.isArray(c)) {
|
|
2201
2213
|
const d = c;
|
|
2202
2214
|
Object.keys(d).forEach((p) => {
|
|
2203
|
-
|
|
2215
|
+
l[p] ? l[p] = `${l[p]} ${d[p]}` : l[p] = d[p];
|
|
2204
2216
|
});
|
|
2205
2217
|
}
|
|
2206
2218
|
return /* @__PURE__ */ s(
|
|
@@ -2208,106 +2220,106 @@ const Zs = "Panel-module__content___wdGo-", Ys = "Panel-module__inner___ruA2b",
|
|
|
2208
2220
|
{
|
|
2209
2221
|
position: r,
|
|
2210
2222
|
keepMounted: a,
|
|
2211
|
-
closeOnClickOutside:
|
|
2223
|
+
closeOnClickOutside: t.closeOnClickOutside ?? !!t.opened,
|
|
2212
2224
|
...n,
|
|
2213
|
-
classNames:
|
|
2225
|
+
classNames: l
|
|
2214
2226
|
}
|
|
2215
2227
|
);
|
|
2216
2228
|
};
|
|
2217
|
-
|
|
2218
|
-
const
|
|
2229
|
+
ht.displayName = "Panel";
|
|
2230
|
+
const $t = h(
|
|
2219
2231
|
function({ overStyled: e = !1, ...r }, a) {
|
|
2220
|
-
const
|
|
2221
|
-
return /* @__PURE__ */ s("div", { ref: a, className: n, ...
|
|
2232
|
+
const o = N(r, e), t = o.className, n = t ? `${fe.footer} ${t}` : fe.footer;
|
|
2233
|
+
return /* @__PURE__ */ s("div", { ref: a, className: n, ...o });
|
|
2222
2234
|
}
|
|
2223
2235
|
);
|
|
2224
|
-
|
|
2225
|
-
const
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
const
|
|
2236
|
-
dropdown:
|
|
2237
|
-
arrow:
|
|
2238
|
-
},
|
|
2236
|
+
$t.displayName = "PanelFooter";
|
|
2237
|
+
const _e = ht;
|
|
2238
|
+
_e.Root = ce.Root;
|
|
2239
|
+
_e.Overlay = ce.Overlay;
|
|
2240
|
+
_e.Content = ce.Content;
|
|
2241
|
+
_e.Header = ce.Header;
|
|
2242
|
+
_e.Title = ce.Title;
|
|
2243
|
+
_e.CloseButton = ce.CloseButton;
|
|
2244
|
+
_e.Body = ce.Body;
|
|
2245
|
+
_e.Stack = ce.Stack;
|
|
2246
|
+
_e.Footer = $t;
|
|
2247
|
+
const rn = "Popover-module__dropdown___svhS6", sn = "Popover-module__arrow___5A-0e", vo = {
|
|
2248
|
+
dropdown: rn,
|
|
2249
|
+
arrow: sn
|
|
2250
|
+
}, vt = function({
|
|
2239
2251
|
overStyled: e = !1,
|
|
2240
2252
|
withBeak: r = !0,
|
|
2241
2253
|
...a
|
|
2242
2254
|
}) {
|
|
2243
|
-
const
|
|
2244
|
-
dropdown:
|
|
2245
|
-
arrow:
|
|
2246
|
-
}, n =
|
|
2255
|
+
const o = N(a, e), t = {
|
|
2256
|
+
dropdown: vo.dropdown,
|
|
2257
|
+
arrow: vo.arrow
|
|
2258
|
+
}, n = o.classNames;
|
|
2247
2259
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
2248
2260
|
const p = n;
|
|
2249
2261
|
Object.keys(p).forEach((_) => {
|
|
2250
|
-
|
|
2262
|
+
t[_] ? t[_] = `${t[_]} ${p[_]}` : t[_] = p[_];
|
|
2251
2263
|
});
|
|
2252
2264
|
}
|
|
2253
|
-
const
|
|
2265
|
+
const l = o.arrowSize ?? 16, c = o.withArrow;
|
|
2254
2266
|
return /* @__PURE__ */ s(
|
|
2255
|
-
|
|
2267
|
+
ro,
|
|
2256
2268
|
{
|
|
2257
2269
|
position: "top",
|
|
2258
|
-
arrowSize:
|
|
2270
|
+
arrowSize: l,
|
|
2259
2271
|
withArrow: r ?? c,
|
|
2260
|
-
classNames:
|
|
2261
|
-
...
|
|
2272
|
+
classNames: t,
|
|
2273
|
+
...o
|
|
2262
2274
|
}
|
|
2263
2275
|
);
|
|
2264
2276
|
};
|
|
2265
|
-
|
|
2266
|
-
const
|
|
2267
|
-
return /* @__PURE__ */ s(
|
|
2277
|
+
vt.displayName = "Popover";
|
|
2278
|
+
const Ct = function(e) {
|
|
2279
|
+
return /* @__PURE__ */ s(ro.Target, { ...e });
|
|
2268
2280
|
};
|
|
2269
|
-
|
|
2270
|
-
const
|
|
2281
|
+
Ct.displayName = "PopoverTarget";
|
|
2282
|
+
const Pt = function({
|
|
2271
2283
|
overStyled: e = !1,
|
|
2272
2284
|
...r
|
|
2273
2285
|
}) {
|
|
2274
|
-
const a =
|
|
2286
|
+
const a = N(r, e), o = a.className;
|
|
2275
2287
|
return /* @__PURE__ */ s(
|
|
2276
|
-
|
|
2288
|
+
ro.Dropdown,
|
|
2277
2289
|
{
|
|
2278
|
-
className:
|
|
2290
|
+
className: o,
|
|
2279
2291
|
...a
|
|
2280
2292
|
}
|
|
2281
2293
|
);
|
|
2282
2294
|
};
|
|
2283
|
-
|
|
2284
|
-
const
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
const
|
|
2288
|
-
groupRoot:
|
|
2289
|
-
root:
|
|
2290
|
-
body:
|
|
2291
|
-
inner:
|
|
2292
|
-
radio:
|
|
2293
|
-
icon:
|
|
2294
|
-
labelWrapper:
|
|
2295
|
-
label:
|
|
2296
|
-
},
|
|
2295
|
+
Pt.displayName = "PopoverDropdown";
|
|
2296
|
+
const wt = vt;
|
|
2297
|
+
wt.Target = Ct;
|
|
2298
|
+
wt.Dropdown = Pt;
|
|
2299
|
+
const nn = "Radio-module__groupRoot___bfUii", ln = "Radio-module__root___kAjTD", cn = "Radio-module__body___q2Wpj", dn = "Radio-module__inner___QaTBB", pn = "Radio-module__radio___MfgN-", _n = "Radio-module__icon___DWznm", mn = "Radio-module__labelWrapper___dB0Gi", un = "Radio-module__label___vAFIP", F = {
|
|
2300
|
+
groupRoot: nn,
|
|
2301
|
+
root: ln,
|
|
2302
|
+
body: cn,
|
|
2303
|
+
inner: dn,
|
|
2304
|
+
radio: pn,
|
|
2305
|
+
icon: _n,
|
|
2306
|
+
labelWrapper: mn,
|
|
2307
|
+
label: un
|
|
2308
|
+
}, gt = h(
|
|
2297
2309
|
function(e, r) {
|
|
2298
2310
|
const {
|
|
2299
2311
|
overStyled: a = !1,
|
|
2300
|
-
formLayout:
|
|
2312
|
+
formLayout: o = "stacked",
|
|
2301
2313
|
// Label Wrappers
|
|
2302
|
-
labelSize:
|
|
2314
|
+
labelSize: t,
|
|
2303
2315
|
labelAlignment: n,
|
|
2304
|
-
labelOptionalText:
|
|
2316
|
+
labelOptionalText: l,
|
|
2305
2317
|
labelWithEditIcon: c,
|
|
2306
2318
|
onLabelEditClick: d,
|
|
2307
2319
|
// Base Mantine Extracted Attributes
|
|
2308
2320
|
label: p,
|
|
2309
2321
|
description: _,
|
|
2310
|
-
assistiveText:
|
|
2322
|
+
assistiveText: f,
|
|
2311
2323
|
assistiveWithIcon: u,
|
|
2312
2324
|
error: m,
|
|
2313
2325
|
required: b,
|
|
@@ -2322,7 +2334,7 @@ const an = "Radio-module__groupRoot___bfUii", rn = "Radio-module__root___kAjTD",
|
|
|
2322
2334
|
value: S,
|
|
2323
2335
|
defaultValue: O,
|
|
2324
2336
|
...W
|
|
2325
|
-
} = e, w =
|
|
2337
|
+
} = e, w = N(W, a), g = w;
|
|
2326
2338
|
return delete g.size, /* @__PURE__ */ s(
|
|
2327
2339
|
oe,
|
|
2328
2340
|
{
|
|
@@ -2332,15 +2344,15 @@ const an = "Radio-module__groupRoot___bfUii", rn = "Radio-module__root___kAjTD",
|
|
|
2332
2344
|
controlMinWidth: void 0,
|
|
2333
2345
|
overStyled: a,
|
|
2334
2346
|
labelElement: "div",
|
|
2335
|
-
formLayout:
|
|
2336
|
-
labelSize:
|
|
2347
|
+
formLayout: o,
|
|
2348
|
+
labelSize: t,
|
|
2337
2349
|
labelAlignment: n,
|
|
2338
|
-
labelOptionalText:
|
|
2350
|
+
labelOptionalText: l,
|
|
2339
2351
|
labelWithEditIcon: c,
|
|
2340
2352
|
onLabelEditClick: d,
|
|
2341
2353
|
label: p,
|
|
2342
2354
|
description: _,
|
|
2343
|
-
assistiveText:
|
|
2355
|
+
assistiveText: f,
|
|
2344
2356
|
assistiveWithIcon: u,
|
|
2345
2357
|
error: m,
|
|
2346
2358
|
required: b,
|
|
@@ -2353,44 +2365,44 @@ const an = "Radio-module__groupRoot___bfUii", rn = "Radio-module__root___kAjTD",
|
|
|
2353
2365
|
readOnlyValue: S !== void 0 ? S : O,
|
|
2354
2366
|
readOnlyNativeProps: e,
|
|
2355
2367
|
activeComponent: /* @__PURE__ */ s(
|
|
2356
|
-
|
|
2368
|
+
To.Group,
|
|
2357
2369
|
{
|
|
2358
2370
|
ref: r,
|
|
2359
2371
|
...w,
|
|
2360
2372
|
disabled: v || g.disabled,
|
|
2361
2373
|
value: S,
|
|
2362
2374
|
defaultValue: O,
|
|
2363
|
-
children: /* @__PURE__ */ s("div", { className: F.groupRoot, "data-layout":
|
|
2375
|
+
children: /* @__PURE__ */ s("div", { className: F.groupRoot, "data-layout": o, children: A })
|
|
2364
2376
|
}
|
|
2365
2377
|
)
|
|
2366
2378
|
}
|
|
2367
2379
|
);
|
|
2368
2380
|
}
|
|
2369
2381
|
);
|
|
2370
|
-
|
|
2371
|
-
const
|
|
2382
|
+
gt.displayName = "RadioGroup";
|
|
2383
|
+
const bn = ({ className: i, style: e }) => /* @__PURE__ */ s(
|
|
2372
2384
|
"svg",
|
|
2373
2385
|
{
|
|
2374
2386
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2375
2387
|
viewBox: "0 0 16 16",
|
|
2376
2388
|
fill: "currentColor",
|
|
2377
|
-
className:
|
|
2389
|
+
className: i,
|
|
2378
2390
|
style: e,
|
|
2379
2391
|
children: /* @__PURE__ */ s("circle", { cx: "8", cy: "8", r: "5" })
|
|
2380
2392
|
}
|
|
2381
|
-
),
|
|
2393
|
+
), Tt = h(
|
|
2382
2394
|
function(e, r) {
|
|
2383
2395
|
const {
|
|
2384
2396
|
overStyled: a = !1,
|
|
2385
|
-
readOnly:
|
|
2386
|
-
readOnlyComponent:
|
|
2397
|
+
readOnly: o,
|
|
2398
|
+
readOnlyComponent: t,
|
|
2387
2399
|
disabled: n,
|
|
2388
|
-
formLayout:
|
|
2400
|
+
formLayout: l,
|
|
2389
2401
|
labelSize: c,
|
|
2390
2402
|
controlMaxWidth: d,
|
|
2391
2403
|
controlMinWidth: p,
|
|
2392
2404
|
..._
|
|
2393
|
-
} = e,
|
|
2405
|
+
} = e, f = N(_, a), u = f;
|
|
2394
2406
|
delete u.size, delete u.color, delete u.radius, delete u.variant, delete u.iconColor;
|
|
2395
2407
|
const m = {
|
|
2396
2408
|
root: F.root,
|
|
@@ -2406,41 +2418,41 @@ const _n = ({ className: l, style: e }) => /* @__PURE__ */ s(
|
|
|
2406
2418
|
m.root = y.root ? `${F.root} ${y.root}` : F.root, m.body = y.body ? `${F.body} ${y.body}` : F.body, m.inner = y.inner ? `${F.inner} ${y.inner}` : F.inner, m.radio = y.radio ? `${F.radio} ${y.radio}` : F.radio, m.icon = y.icon ? `${F.icon} ${y.icon}` : F.icon, m.labelWrapper = y.labelWrapper ? `${F.labelWrapper} ${y.labelWrapper}` : F.labelWrapper, m.label = y.label ? `${F.label} ${y.label}` : F.label;
|
|
2407
2419
|
}
|
|
2408
2420
|
const P = u.className, C = P ? `${F.root} ${P}` : F.root;
|
|
2409
|
-
if (
|
|
2421
|
+
if (o && t) {
|
|
2410
2422
|
const y = !!(u.checked ?? u.defaultChecked), v = /* @__PURE__ */ s(
|
|
2411
|
-
|
|
2423
|
+
t,
|
|
2412
2424
|
{
|
|
2413
2425
|
...e,
|
|
2414
2426
|
checked: y,
|
|
2415
2427
|
label: u.label
|
|
2416
2428
|
}
|
|
2417
2429
|
);
|
|
2418
|
-
return
|
|
2430
|
+
return l ? /* @__PURE__ */ s(
|
|
2419
2431
|
Ne,
|
|
2420
2432
|
{
|
|
2421
|
-
formLayout:
|
|
2433
|
+
formLayout: l,
|
|
2422
2434
|
labelSize: c,
|
|
2423
2435
|
controlMaxWidth: d,
|
|
2424
2436
|
controlMinWidth: p,
|
|
2425
2437
|
children: v
|
|
2426
2438
|
}
|
|
2427
|
-
) : /* @__PURE__ */ s(
|
|
2439
|
+
) : /* @__PURE__ */ s(Oe, { children: v });
|
|
2428
2440
|
}
|
|
2429
2441
|
const $ = /* @__PURE__ */ s(
|
|
2430
|
-
|
|
2442
|
+
To,
|
|
2431
2443
|
{
|
|
2432
2444
|
ref: r,
|
|
2433
|
-
icon:
|
|
2445
|
+
icon: bn,
|
|
2434
2446
|
className: C,
|
|
2435
2447
|
classNames: m,
|
|
2436
|
-
disabled:
|
|
2437
|
-
...
|
|
2448
|
+
disabled: o || n,
|
|
2449
|
+
...f
|
|
2438
2450
|
}
|
|
2439
2451
|
);
|
|
2440
|
-
return
|
|
2452
|
+
return l ? /* @__PURE__ */ s(
|
|
2441
2453
|
Ne,
|
|
2442
2454
|
{
|
|
2443
|
-
formLayout:
|
|
2455
|
+
formLayout: l,
|
|
2444
2456
|
labelSize: c,
|
|
2445
2457
|
controlMaxWidth: d,
|
|
2446
2458
|
controlMinWidth: p,
|
|
@@ -2449,69 +2461,69 @@ const _n = ({ className: l, style: e }) => /* @__PURE__ */ s(
|
|
|
2449
2461
|
) : $;
|
|
2450
2462
|
}
|
|
2451
2463
|
);
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
const
|
|
2455
|
-
|
|
2464
|
+
Tt.displayName = "Radio";
|
|
2465
|
+
Tt.Group = gt;
|
|
2466
|
+
const yn = ({ checked: i, label: e }) => /* @__PURE__ */ z(
|
|
2467
|
+
to,
|
|
2456
2468
|
{
|
|
2457
2469
|
component: "span",
|
|
2458
|
-
className:
|
|
2470
|
+
className: Ae.textField,
|
|
2459
2471
|
style: { display: "inline-flex", gap: "8px", alignItems: "baseline" },
|
|
2460
2472
|
children: [
|
|
2461
2473
|
e && /* @__PURE__ */ z("span", { style: { fontWeight: 500 }, children: [
|
|
2462
2474
|
e,
|
|
2463
2475
|
":"
|
|
2464
2476
|
] }),
|
|
2465
|
-
/* @__PURE__ */ s("span", { children:
|
|
2477
|
+
/* @__PURE__ */ s("span", { children: i ? "On" : "Off" })
|
|
2466
2478
|
]
|
|
2467
2479
|
}
|
|
2468
2480
|
);
|
|
2469
|
-
|
|
2470
|
-
const
|
|
2471
|
-
|
|
2481
|
+
yn.displayName = "ReadOnlySwitchField";
|
|
2482
|
+
const fn = ({ checked: i, label: e }) => /* @__PURE__ */ z(
|
|
2483
|
+
to,
|
|
2472
2484
|
{
|
|
2473
2485
|
component: "span",
|
|
2474
|
-
className:
|
|
2486
|
+
className: Ae.textField,
|
|
2475
2487
|
style: { display: "inline-flex", gap: "8px", alignItems: "baseline" },
|
|
2476
2488
|
children: [
|
|
2477
2489
|
e && /* @__PURE__ */ z("span", { style: { fontWeight: 500 }, children: [
|
|
2478
2490
|
e,
|
|
2479
2491
|
":"
|
|
2480
2492
|
] }),
|
|
2481
|
-
/* @__PURE__ */ s("span", { children:
|
|
2493
|
+
/* @__PURE__ */ s("span", { children: i ? "True" : "False" })
|
|
2482
2494
|
]
|
|
2483
2495
|
}
|
|
2484
2496
|
);
|
|
2485
|
-
|
|
2486
|
-
const
|
|
2487
|
-
root:
|
|
2488
|
-
label:
|
|
2489
|
-
control:
|
|
2490
|
-
indicator:
|
|
2497
|
+
fn.displayName = "ReadOnlyBooleanField";
|
|
2498
|
+
const Nn = "SegmentedControl-module__root___JFRhg", hn = "SegmentedControl-module__label___mS17q", $n = "SegmentedControl-module__control___znOdQ", vn = "SegmentedControl-module__indicator___ZMcJy", Y = {
|
|
2499
|
+
root: Nn,
|
|
2500
|
+
label: hn,
|
|
2501
|
+
control: $n,
|
|
2502
|
+
indicator: vn
|
|
2491
2503
|
};
|
|
2492
|
-
function
|
|
2504
|
+
function Cn(i) {
|
|
2493
2505
|
const e = {
|
|
2494
2506
|
root: Y.root,
|
|
2495
2507
|
control: Y.control,
|
|
2496
2508
|
label: Y.label,
|
|
2497
2509
|
indicator: Y.indicator
|
|
2498
|
-
}, r =
|
|
2510
|
+
}, r = i.classNames;
|
|
2499
2511
|
if (r && typeof r == "object" && !Array.isArray(r)) {
|
|
2500
|
-
const
|
|
2501
|
-
e.root =
|
|
2512
|
+
const t = r;
|
|
2513
|
+
e.root = t.root ? `${Y.root} ${t.root}` : Y.root, e.control = t.control ? `${Y.control} ${t.control}` : Y.control, e.label = t.label ? `${Y.label} ${t.label}` : Y.label, e.indicator = t.indicator ? `${Y.indicator} ${t.indicator}` : Y.indicator;
|
|
2502
2514
|
}
|
|
2503
|
-
const a =
|
|
2515
|
+
const a = i.className;
|
|
2504
2516
|
return { className: a ? `${Y.root} ${a}` : Y.root, classNames: e };
|
|
2505
2517
|
}
|
|
2506
|
-
const
|
|
2507
|
-
function({ overStyled: e = !1, orientation: r = "horizontal", fullWidth: a, ...
|
|
2508
|
-
const n =
|
|
2509
|
-
delete
|
|
2510
|
-
const c =
|
|
2518
|
+
const St = h(
|
|
2519
|
+
function({ overStyled: e = !1, orientation: r = "horizontal", fullWidth: a, ...o }, t) {
|
|
2520
|
+
const n = N(o, e), l = n;
|
|
2521
|
+
delete l.disabled;
|
|
2522
|
+
const c = Cn(l);
|
|
2511
2523
|
return /* @__PURE__ */ s(
|
|
2512
|
-
|
|
2524
|
+
da,
|
|
2513
2525
|
{
|
|
2514
|
-
ref:
|
|
2526
|
+
ref: t,
|
|
2515
2527
|
className: c.className,
|
|
2516
2528
|
classNames: c.classNames,
|
|
2517
2529
|
orientation: r,
|
|
@@ -2522,36 +2534,36 @@ const gt = h(
|
|
|
2522
2534
|
);
|
|
2523
2535
|
}
|
|
2524
2536
|
);
|
|
2525
|
-
|
|
2526
|
-
const
|
|
2527
|
-
layoutOverride:
|
|
2528
|
-
sliderContainer:
|
|
2529
|
-
sliderTrackWrapper:
|
|
2530
|
-
iconWrapper:
|
|
2531
|
-
sliderRoot:
|
|
2532
|
-
sliderTrack:
|
|
2533
|
-
sliderBar:
|
|
2534
|
-
sliderThumb:
|
|
2535
|
-
sliderMark:
|
|
2536
|
-
minMaxGuide:
|
|
2537
|
-
rightGuideContainer:
|
|
2538
|
-
currentValue:
|
|
2539
|
-
inputField:
|
|
2540
|
-
readOnlyValue:
|
|
2541
|
-
},
|
|
2537
|
+
St.displayName = "SegmentedControl";
|
|
2538
|
+
const ni = St, Pn = "Slider-module__layoutOverride___zYPun", wn = "Slider-module__sliderContainer___y8I0J", gn = "Slider-module__sliderTrackWrapper___UHpVh", Tn = "Slider-module__iconWrapper___uqHpC", Sn = "Slider-module__sliderRoot___LI86H", xn = "Slider-module__sliderTrack___oqnlG", An = "Slider-module__sliderBar___TI4VY", On = "Slider-module__sliderThumb___OFn8p", Wn = "Slider-module__sliderMark___1lM2B", Ln = "Slider-module__minMaxGuide___TaGqz", kn = "Slider-module__rightGuideContainer___8dOT8", In = "Slider-module__currentValue___dGV2T", Mn = "Slider-module__inputField___6x578", zn = "Slider-module__readOnlyValue___-ZzMW", k = {
|
|
2539
|
+
layoutOverride: Pn,
|
|
2540
|
+
sliderContainer: wn,
|
|
2541
|
+
sliderTrackWrapper: gn,
|
|
2542
|
+
iconWrapper: Tn,
|
|
2543
|
+
sliderRoot: Sn,
|
|
2544
|
+
sliderTrack: xn,
|
|
2545
|
+
sliderBar: An,
|
|
2546
|
+
sliderThumb: On,
|
|
2547
|
+
sliderMark: Wn,
|
|
2548
|
+
minMaxGuide: Ln,
|
|
2549
|
+
rightGuideContainer: kn,
|
|
2550
|
+
currentValue: In,
|
|
2551
|
+
inputField: Mn,
|
|
2552
|
+
readOnlyValue: zn
|
|
2553
|
+
}, Rn = ({ value: i }) => /* @__PURE__ */ s("div", { className: k.readOnlyValue, children: i }), Bn = h(
|
|
2542
2554
|
function(e, r) {
|
|
2543
2555
|
const {
|
|
2544
2556
|
overStyled: a = !1,
|
|
2545
|
-
formLayout:
|
|
2557
|
+
formLayout: o = "stacked",
|
|
2546
2558
|
// Label & Wrapper Maps
|
|
2547
|
-
labelSize:
|
|
2559
|
+
labelSize: t,
|
|
2548
2560
|
labelAlignment: n,
|
|
2549
|
-
labelOptionalText:
|
|
2561
|
+
labelOptionalText: l,
|
|
2550
2562
|
labelWithEditIcon: c,
|
|
2551
2563
|
labelActionArea: d,
|
|
2552
2564
|
onLabelEditClick: p,
|
|
2553
2565
|
label: _,
|
|
2554
|
-
tooltipLabel:
|
|
2566
|
+
tooltipLabel: f,
|
|
2555
2567
|
assistiveText: u,
|
|
2556
2568
|
assistiveWithIcon: m,
|
|
2557
2569
|
error: b,
|
|
@@ -2571,56 +2583,56 @@ const oi = gt, $n = "Slider-module__layoutOverride___zYPun", vn = "Slider-module
|
|
|
2571
2583
|
showMinMaxLabels: L = !0,
|
|
2572
2584
|
min: R = 0,
|
|
2573
2585
|
max: T = 100,
|
|
2574
|
-
step:
|
|
2575
|
-
onChange:
|
|
2586
|
+
step: ve = 1,
|
|
2587
|
+
onChange: Ce,
|
|
2576
2588
|
onChangeEnd: U,
|
|
2577
|
-
...
|
|
2578
|
-
} = e, [
|
|
2579
|
-
|
|
2589
|
+
...Xe
|
|
2590
|
+
} = e, [Dt, jt] = fo(() => O !== void 0 ? O : W !== void 0 ? W : R), me = O !== void 0 ? O : Dt, [Gt, Je] = fo(
|
|
2591
|
+
me.toString()
|
|
2580
2592
|
);
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
}, [
|
|
2584
|
-
const
|
|
2585
|
-
O === void 0 &&
|
|
2586
|
-
},
|
|
2587
|
-
const
|
|
2588
|
-
|
|
2589
|
-
const
|
|
2590
|
-
if (!isNaN(
|
|
2591
|
-
const
|
|
2592
|
-
|
|
2593
|
+
Po(() => {
|
|
2594
|
+
Je(me.toString());
|
|
2595
|
+
}, [me]);
|
|
2596
|
+
const mo = (E) => {
|
|
2597
|
+
O === void 0 && jt(E), Ce == null || Ce(E);
|
|
2598
|
+
}, Ht = (E) => {
|
|
2599
|
+
const bo = E.target.value;
|
|
2600
|
+
Je(bo);
|
|
2601
|
+
const yo = parseFloat(bo);
|
|
2602
|
+
if (!isNaN(yo)) {
|
|
2603
|
+
const Yt = Math.max(R, Math.min(T, yo));
|
|
2604
|
+
mo(Yt);
|
|
2593
2605
|
}
|
|
2594
|
-
},
|
|
2595
|
-
|
|
2596
|
-
},
|
|
2597
|
-
delete
|
|
2598
|
-
const
|
|
2606
|
+
}, qt = () => {
|
|
2607
|
+
Je(me.toString());
|
|
2608
|
+
}, uo = N(Xe, a), Le = uo;
|
|
2609
|
+
delete Le.size, delete Le.variant, delete Le.radius, delete Le.wrapperProps;
|
|
2610
|
+
const Pe = {
|
|
2599
2611
|
root: k.sliderRoot,
|
|
2600
2612
|
track: k.sliderTrack,
|
|
2601
2613
|
bar: k.sliderBar,
|
|
2602
2614
|
thumb: k.sliderThumb,
|
|
2603
2615
|
mark: k.sliderMark,
|
|
2604
2616
|
markLabel: k.sliderMarkLabel
|
|
2605
|
-
},
|
|
2606
|
-
if (
|
|
2607
|
-
const E =
|
|
2608
|
-
|
|
2617
|
+
}, Fe = Le.classNames;
|
|
2618
|
+
if (Fe && typeof Fe == "object" && !Array.isArray(Fe)) {
|
|
2619
|
+
const E = Fe;
|
|
2620
|
+
Pe.root = E.root ? `${k.sliderRoot} ${E.root}` : k.sliderRoot, Pe.track = E.track ? `${k.sliderTrack} ${E.track}` : k.sliderTrack, Pe.bar = E.bar ? `${k.sliderBar} ${E.bar}` : k.sliderBar, Pe.thumb = E.thumb ? `${k.sliderThumb} ${E.thumb}` : k.sliderThumb, Pe.mark = E.mark ? `${k.sliderMark} ${E.mark}` : k.sliderMark, Pe.markLabel = E.markLabel ? `${k.sliderMarkLabel} ${E.markLabel}` : k.sliderMarkLabel;
|
|
2609
2621
|
}
|
|
2610
|
-
const
|
|
2622
|
+
const Ut = y ? `${k.layoutOverride} ${y}` : k.layoutOverride, Zt = w ? /* @__PURE__ */ s("span", { className: k.iconWrapper, "aria-hidden": !0, children: w }) : null;
|
|
2611
2623
|
return /* @__PURE__ */ s(
|
|
2612
2624
|
oe,
|
|
2613
2625
|
{
|
|
2614
2626
|
ref: r,
|
|
2615
|
-
className:
|
|
2627
|
+
className: Ut,
|
|
2616
2628
|
style: A,
|
|
2617
2629
|
controlMaxWidth: void 0,
|
|
2618
2630
|
controlMinWidth: void 0,
|
|
2619
2631
|
overStyled: a,
|
|
2620
|
-
formLayout:
|
|
2621
|
-
labelSize:
|
|
2632
|
+
formLayout: o,
|
|
2633
|
+
labelSize: t,
|
|
2622
2634
|
labelAlignment: n,
|
|
2623
|
-
labelOptionalText:
|
|
2635
|
+
labelOptionalText: l,
|
|
2624
2636
|
labelWithEditIcon: c,
|
|
2625
2637
|
labelActionArea: d,
|
|
2626
2638
|
onLabelEditClick: p,
|
|
@@ -2632,38 +2644,38 @@ const oi = gt, $n = "Slider-module__layoutOverride___zYPun", vn = "Slider-module
|
|
|
2632
2644
|
withAsterisk: C,
|
|
2633
2645
|
id: $,
|
|
2634
2646
|
readOnly: I,
|
|
2635
|
-
readOnlyComponent: x ||
|
|
2647
|
+
readOnlyComponent: x || Rn,
|
|
2636
2648
|
emptyValueComponent: S,
|
|
2637
2649
|
readOnlyType: "text",
|
|
2638
|
-
readOnlyValue:
|
|
2639
|
-
readOnlyNativeProps: { value:
|
|
2650
|
+
readOnlyValue: me,
|
|
2651
|
+
readOnlyNativeProps: { value: me },
|
|
2640
2652
|
activeComponent: /* @__PURE__ */ z(
|
|
2641
2653
|
"div",
|
|
2642
2654
|
{
|
|
2643
2655
|
className: k.sliderContainer,
|
|
2644
|
-
"data-form-layout":
|
|
2656
|
+
"data-form-layout": o,
|
|
2645
2657
|
"data-disabled": v ? "true" : void 0,
|
|
2646
2658
|
"data-error": b ? "true" : void 0,
|
|
2647
2659
|
children: [
|
|
2648
|
-
|
|
2660
|
+
Zt,
|
|
2649
2661
|
L && /* @__PURE__ */ s("span", { className: k.minMaxGuide, children: R }),
|
|
2650
2662
|
/* @__PURE__ */ s("div", { className: k.sliderTrackWrapper, children: /* @__PURE__ */ s(
|
|
2651
|
-
|
|
2663
|
+
pa,
|
|
2652
2664
|
{
|
|
2653
|
-
classNames:
|
|
2665
|
+
classNames: Pe,
|
|
2654
2666
|
disabled: v,
|
|
2655
|
-
value:
|
|
2656
|
-
onChange:
|
|
2667
|
+
value: me,
|
|
2668
|
+
onChange: mo,
|
|
2657
2669
|
onChangeEnd: U,
|
|
2658
2670
|
min: R,
|
|
2659
2671
|
max: T,
|
|
2660
|
-
step:
|
|
2661
|
-
label:
|
|
2662
|
-
...
|
|
2672
|
+
step: ve,
|
|
2673
|
+
label: f,
|
|
2674
|
+
...uo
|
|
2663
2675
|
}
|
|
2664
2676
|
) }),
|
|
2665
2677
|
/* @__PURE__ */ z("div", { className: k.rightGuideContainer, children: [
|
|
2666
|
-
!g && /* @__PURE__ */ s("span", { className: k.currentValue, children:
|
|
2678
|
+
!g && /* @__PURE__ */ s("span", { className: k.currentValue, children: me }),
|
|
2667
2679
|
L && /* @__PURE__ */ s("span", { className: k.minMaxGuide, children: T })
|
|
2668
2680
|
] }),
|
|
2669
2681
|
g && /* @__PURE__ */ s(
|
|
@@ -2671,12 +2683,12 @@ const oi = gt, $n = "Slider-module__layoutOverride___zYPun", vn = "Slider-module
|
|
|
2671
2683
|
{
|
|
2672
2684
|
type: "number",
|
|
2673
2685
|
className: k.inputField,
|
|
2674
|
-
value:
|
|
2675
|
-
onChange:
|
|
2676
|
-
onBlur:
|
|
2686
|
+
value: Gt,
|
|
2687
|
+
onChange: Ht,
|
|
2688
|
+
onBlur: qt,
|
|
2677
2689
|
min: R,
|
|
2678
2690
|
max: T,
|
|
2679
|
-
step:
|
|
2691
|
+
step: ve,
|
|
2680
2692
|
disabled: v,
|
|
2681
2693
|
"data-error": b ? "true" : void 0
|
|
2682
2694
|
}
|
|
@@ -2688,65 +2700,65 @@ const oi = gt, $n = "Slider-module__layoutOverride___zYPun", vn = "Slider-module
|
|
|
2688
2700
|
);
|
|
2689
2701
|
}
|
|
2690
2702
|
);
|
|
2691
|
-
|
|
2692
|
-
const
|
|
2693
|
-
root:
|
|
2694
|
-
},
|
|
2695
|
-
const
|
|
2696
|
-
root:
|
|
2703
|
+
Bn.displayName = "Slider";
|
|
2704
|
+
const Fn = "Stack-module__root___NUN-x", Re = {
|
|
2705
|
+
root: Fn
|
|
2706
|
+
}, xt = h(function({ children: e, gap: r = "rec-default", ...a }, o) {
|
|
2707
|
+
const t = {
|
|
2708
|
+
root: Re.root
|
|
2697
2709
|
}, n = a.classNames;
|
|
2698
2710
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
2699
2711
|
const d = n;
|
|
2700
|
-
|
|
2712
|
+
t.root = d.root ? `${Re.root} ${d.root}` : Re.root;
|
|
2701
2713
|
}
|
|
2702
|
-
const
|
|
2714
|
+
const l = a.className, c = l ? `${Re.root} ${l}` : Re.root;
|
|
2703
2715
|
return /* @__PURE__ */ s(
|
|
2704
|
-
|
|
2716
|
+
_a,
|
|
2705
2717
|
{
|
|
2706
|
-
ref:
|
|
2718
|
+
ref: o,
|
|
2707
2719
|
className: c,
|
|
2708
|
-
classNames:
|
|
2709
|
-
...
|
|
2720
|
+
classNames: t,
|
|
2721
|
+
...no({ gap: r, ...a }),
|
|
2710
2722
|
children: e
|
|
2711
2723
|
}
|
|
2712
2724
|
);
|
|
2713
2725
|
});
|
|
2714
|
-
|
|
2715
|
-
const
|
|
2716
|
-
root:
|
|
2717
|
-
horizontal:
|
|
2718
|
-
steps:
|
|
2719
|
-
step:
|
|
2720
|
-
stepBody:
|
|
2721
|
-
stepLabel:
|
|
2722
|
-
stepDescription:
|
|
2723
|
-
separator:
|
|
2724
|
-
vertical:
|
|
2725
|
-
large:
|
|
2726
|
-
small:
|
|
2727
|
-
stepIcon:
|
|
2728
|
-
stepCompletedIcon:
|
|
2729
|
-
verticalSeparator:
|
|
2730
|
-
content:
|
|
2731
|
-
},
|
|
2726
|
+
xt.displayName = "Stack";
|
|
2727
|
+
const li = te(xt), En = "Stepper-module__root___jbSYO", Vn = "Stepper-module__horizontal___USHT1", Dn = "Stepper-module__steps___4HPO6", jn = "Stepper-module__step___s2nqL", Gn = "Stepper-module__stepBody___TBvys", Hn = "Stepper-module__stepLabel___N6nuy", qn = "Stepper-module__stepDescription___DnDAy", Un = "Stepper-module__separator___pU0No", Zn = "Stepper-module__vertical___d4mOs", Yn = "Stepper-module__large___J18-y", Kn = "Stepper-module__small___Ub-zb", Xn = "Stepper-module__stepIcon___YQHNq", Jn = "Stepper-module__stepCompletedIcon___B9MeL", Qn = "Stepper-module__verticalSeparator___frWc1", el = "Stepper-module__content___J-h8X", q = {
|
|
2728
|
+
root: En,
|
|
2729
|
+
horizontal: Vn,
|
|
2730
|
+
steps: Dn,
|
|
2731
|
+
step: jn,
|
|
2732
|
+
stepBody: Gn,
|
|
2733
|
+
stepLabel: Hn,
|
|
2734
|
+
stepDescription: qn,
|
|
2735
|
+
separator: Un,
|
|
2736
|
+
vertical: Zn,
|
|
2737
|
+
large: Yn,
|
|
2738
|
+
small: Kn,
|
|
2739
|
+
stepIcon: Xn,
|
|
2740
|
+
stepCompletedIcon: Jn,
|
|
2741
|
+
verticalSeparator: Qn,
|
|
2742
|
+
content: el
|
|
2743
|
+
}, At = h(
|
|
2732
2744
|
function(e, r) {
|
|
2733
2745
|
const {
|
|
2734
2746
|
overStyled: a = !1,
|
|
2735
|
-
size:
|
|
2736
|
-
orientation:
|
|
2747
|
+
size: o = "large",
|
|
2748
|
+
orientation: t = "horizontal",
|
|
2737
2749
|
className: n,
|
|
2738
|
-
style:
|
|
2750
|
+
style: l,
|
|
2739
2751
|
...c
|
|
2740
|
-
} = e, d =
|
|
2752
|
+
} = e, d = N(c, a);
|
|
2741
2753
|
return /* @__PURE__ */ s(
|
|
2742
|
-
|
|
2754
|
+
eo,
|
|
2743
2755
|
{
|
|
2744
2756
|
ref: r,
|
|
2745
|
-
orientation:
|
|
2746
|
-
className: `${q.root} ${
|
|
2747
|
-
style:
|
|
2748
|
-
"data-size":
|
|
2749
|
-
"data-orientation":
|
|
2757
|
+
orientation: t,
|
|
2758
|
+
className: `${q.root} ${t === "horizontal" ? q.horizontal : q.vertical} ${o === "large" ? q.large : q.small} ${n || ""}`,
|
|
2759
|
+
style: l,
|
|
2760
|
+
"data-size": o,
|
|
2761
|
+
"data-orientation": t,
|
|
2750
2762
|
classNames: {
|
|
2751
2763
|
steps: q.steps,
|
|
2752
2764
|
step: q.step,
|
|
@@ -2763,37 +2775,37 @@ const ti = te(Tt), Rn = "Stepper-module__root___jbSYO", Bn = "Stepper-module__ho
|
|
|
2763
2775
|
}
|
|
2764
2776
|
);
|
|
2765
2777
|
}
|
|
2766
|
-
),
|
|
2767
|
-
Step:
|
|
2768
|
-
Completed:
|
|
2778
|
+
), ii = Object.assign(At, {
|
|
2779
|
+
Step: eo.Step,
|
|
2780
|
+
Completed: eo.Completed
|
|
2769
2781
|
});
|
|
2770
|
-
|
|
2771
|
-
const
|
|
2772
|
-
root:
|
|
2773
|
-
body:
|
|
2774
|
-
track:
|
|
2775
|
-
thumb:
|
|
2776
|
-
labelWrapper:
|
|
2777
|
-
label:
|
|
2778
|
-
thumbIconWrapper:
|
|
2779
|
-
checkIcon:
|
|
2780
|
-
closeIcon:
|
|
2781
|
-
groupRoot:
|
|
2782
|
-
},
|
|
2782
|
+
At.displayName = "Stepper";
|
|
2783
|
+
const ol = "Switch-module__root___Y5Ydi", tl = "Switch-module__body___Sw9Wr", al = "Switch-module__track___7ObdZ", rl = "Switch-module__thumb___-FTeK", sl = "Switch-module__labelWrapper___YSOwx", nl = "Switch-module__label___LrH7V", ll = "Switch-module__thumbIconWrapper___sCY-1", il = "Switch-module__checkIcon___ZBAQN", cl = "Switch-module__closeIcon___bLLGw", dl = "Switch-module__groupRoot___-Uepi", M = {
|
|
2784
|
+
root: ol,
|
|
2785
|
+
body: tl,
|
|
2786
|
+
track: al,
|
|
2787
|
+
thumb: rl,
|
|
2788
|
+
labelWrapper: sl,
|
|
2789
|
+
label: nl,
|
|
2790
|
+
thumbIconWrapper: ll,
|
|
2791
|
+
checkIcon: il,
|
|
2792
|
+
closeIcon: cl,
|
|
2793
|
+
groupRoot: dl
|
|
2794
|
+
}, Ot = h(
|
|
2783
2795
|
function(e, r) {
|
|
2784
2796
|
const {
|
|
2785
2797
|
overStyled: a = !1,
|
|
2786
|
-
formLayout:
|
|
2798
|
+
formLayout: o = "stacked",
|
|
2787
2799
|
// Label Wrappers
|
|
2788
|
-
labelSize:
|
|
2800
|
+
labelSize: t,
|
|
2789
2801
|
labelAlignment: n,
|
|
2790
|
-
labelOptionalText:
|
|
2802
|
+
labelOptionalText: l,
|
|
2791
2803
|
labelWithEditIcon: c,
|
|
2792
2804
|
onLabelEditClick: d,
|
|
2793
2805
|
// Base Mantine Extracted Attributes
|
|
2794
2806
|
label: p,
|
|
2795
2807
|
description: _,
|
|
2796
|
-
assistiveText:
|
|
2808
|
+
assistiveText: f,
|
|
2797
2809
|
assistiveWithIcon: u,
|
|
2798
2810
|
error: m,
|
|
2799
2811
|
required: b,
|
|
@@ -2808,7 +2820,7 @@ const Jn = "Switch-module__root___Y5Ydi", Qn = "Switch-module__body___Sw9Wr", el
|
|
|
2808
2820
|
value: S,
|
|
2809
2821
|
defaultValue: O,
|
|
2810
2822
|
...W
|
|
2811
|
-
} = e, w =
|
|
2823
|
+
} = e, w = N(W, a), g = w;
|
|
2812
2824
|
return delete g.size, /* @__PURE__ */ s(
|
|
2813
2825
|
oe,
|
|
2814
2826
|
{
|
|
@@ -2818,15 +2830,15 @@ const Jn = "Switch-module__root___Y5Ydi", Qn = "Switch-module__body___Sw9Wr", el
|
|
|
2818
2830
|
controlMinWidth: void 0,
|
|
2819
2831
|
overStyled: a,
|
|
2820
2832
|
labelElement: "div",
|
|
2821
|
-
formLayout:
|
|
2822
|
-
labelSize:
|
|
2833
|
+
formLayout: o,
|
|
2834
|
+
labelSize: t,
|
|
2823
2835
|
labelAlignment: n,
|
|
2824
|
-
labelOptionalText:
|
|
2836
|
+
labelOptionalText: l,
|
|
2825
2837
|
labelWithEditIcon: c,
|
|
2826
2838
|
onLabelEditClick: d,
|
|
2827
2839
|
label: p,
|
|
2828
2840
|
description: _,
|
|
2829
|
-
assistiveText:
|
|
2841
|
+
assistiveText: f,
|
|
2830
2842
|
assistiveWithIcon: u,
|
|
2831
2843
|
error: m,
|
|
2832
2844
|
required: b,
|
|
@@ -2839,35 +2851,35 @@ const Jn = "Switch-module__root___Y5Ydi", Qn = "Switch-module__body___Sw9Wr", el
|
|
|
2839
2851
|
readOnlyValue: S !== void 0 ? S : O,
|
|
2840
2852
|
readOnlyNativeProps: e,
|
|
2841
2853
|
activeComponent: /* @__PURE__ */ s(
|
|
2842
|
-
|
|
2854
|
+
So.Group,
|
|
2843
2855
|
{
|
|
2844
2856
|
ref: r,
|
|
2845
2857
|
...w,
|
|
2846
2858
|
disabled: v || g.disabled,
|
|
2847
2859
|
value: S,
|
|
2848
2860
|
defaultValue: O,
|
|
2849
|
-
children: /* @__PURE__ */ s("div", { className: M.groupRoot, "data-layout":
|
|
2861
|
+
children: /* @__PURE__ */ s("div", { className: M.groupRoot, "data-layout": o, children: A })
|
|
2850
2862
|
}
|
|
2851
2863
|
)
|
|
2852
2864
|
}
|
|
2853
2865
|
);
|
|
2854
2866
|
}
|
|
2855
2867
|
);
|
|
2856
|
-
|
|
2857
|
-
const
|
|
2868
|
+
Ot.displayName = "SwitchGroup";
|
|
2869
|
+
const Wt = h(
|
|
2858
2870
|
function(e, r) {
|
|
2859
2871
|
const {
|
|
2860
2872
|
overStyled: a = !1,
|
|
2861
|
-
readOnly:
|
|
2862
|
-
readOnlyComponent:
|
|
2873
|
+
readOnly: o,
|
|
2874
|
+
readOnlyComponent: t,
|
|
2863
2875
|
disabled: n,
|
|
2864
|
-
thumbIcon:
|
|
2876
|
+
thumbIcon: l,
|
|
2865
2877
|
formLayout: c,
|
|
2866
2878
|
labelSize: d,
|
|
2867
2879
|
controlMaxWidth: p,
|
|
2868
2880
|
controlMinWidth: _,
|
|
2869
|
-
...
|
|
2870
|
-
} = e, u = f
|
|
2881
|
+
...f
|
|
2882
|
+
} = e, u = N(f, a), m = u;
|
|
2871
2883
|
delete m.size, delete m.color, delete m.radius, delete m.variant;
|
|
2872
2884
|
const b = {
|
|
2873
2885
|
root: M.root,
|
|
@@ -2883,9 +2895,9 @@ const At = h(
|
|
|
2883
2895
|
b.root = v.root ? `${M.root} ${v.root}` : M.root, b.body = v.body ? `${M.body} ${v.body}` : M.body, b.track = v.track ? `${M.track} ${v.track}` : M.track, b.thumb = v.thumb ? `${M.thumb} ${v.thumb}` : M.thumb, b.trackLabel = v.trackLabel ? `${M.trackLabel} ${v.trackLabel}` : M.trackLabel, b.labelWrapper = v.labelWrapper ? `${M.labelWrapper} ${v.labelWrapper}` : M.labelWrapper, b.label = v.label ? `${M.label} ${v.label}` : M.label;
|
|
2884
2896
|
}
|
|
2885
2897
|
const C = m.className, $ = C ? `${M.root} ${C}` : M.root;
|
|
2886
|
-
if (
|
|
2898
|
+
if (o && t) {
|
|
2887
2899
|
const v = !!(m.checked ?? m.defaultChecked), x = /* @__PURE__ */ s(
|
|
2888
|
-
|
|
2900
|
+
t,
|
|
2889
2901
|
{
|
|
2890
2902
|
...e,
|
|
2891
2903
|
checked: v,
|
|
@@ -2901,20 +2913,20 @@ const At = h(
|
|
|
2901
2913
|
controlMinWidth: _,
|
|
2902
2914
|
children: x
|
|
2903
2915
|
}
|
|
2904
|
-
) : /* @__PURE__ */ s(
|
|
2916
|
+
) : /* @__PURE__ */ s(Oe, { children: x });
|
|
2905
2917
|
}
|
|
2906
2918
|
const y = /* @__PURE__ */ z("div", { className: M.thumbIconWrapper, children: [
|
|
2907
|
-
/* @__PURE__ */ s(
|
|
2908
|
-
/* @__PURE__ */ s(
|
|
2919
|
+
/* @__PURE__ */ s(ma, { className: M.checkIcon }),
|
|
2920
|
+
/* @__PURE__ */ s(ua, { className: M.closeIcon })
|
|
2909
2921
|
] }), A = /* @__PURE__ */ s(
|
|
2910
|
-
|
|
2922
|
+
So,
|
|
2911
2923
|
{
|
|
2912
2924
|
ref: r,
|
|
2913
2925
|
className: $,
|
|
2914
2926
|
classNames: b,
|
|
2915
|
-
disabled:
|
|
2916
|
-
"data-disabled":
|
|
2917
|
-
thumbIcon:
|
|
2927
|
+
disabled: o || n,
|
|
2928
|
+
"data-disabled": o || n || void 0,
|
|
2929
|
+
thumbIcon: l ?? y,
|
|
2918
2930
|
...u
|
|
2919
2931
|
}
|
|
2920
2932
|
);
|
|
@@ -2930,113 +2942,136 @@ const At = h(
|
|
|
2930
2942
|
) : A;
|
|
2931
2943
|
}
|
|
2932
2944
|
);
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
const
|
|
2936
|
-
root:
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2945
|
+
Wt.displayName = "Switch";
|
|
2946
|
+
Wt.Group = Ot;
|
|
2947
|
+
const pl = "Table-module__root___aMWWS", _l = {
|
|
2948
|
+
root: pl
|
|
2949
|
+
}, Lt = h(function({ overStyled: e = !1, className: r, ...a }, o) {
|
|
2950
|
+
const t = N(a, e), n = t.className, l = _l.root, c = n ? `${l} ${n}` : l;
|
|
2951
|
+
return /* @__PURE__ */ s(
|
|
2952
|
+
de,
|
|
2953
|
+
{
|
|
2954
|
+
ref: o,
|
|
2955
|
+
className: c,
|
|
2956
|
+
...t
|
|
2957
|
+
}
|
|
2958
|
+
);
|
|
2959
|
+
});
|
|
2960
|
+
Lt.displayName = "Table";
|
|
2961
|
+
const $e = Lt;
|
|
2962
|
+
$e.Thead = de.Thead;
|
|
2963
|
+
$e.Tbody = de.Tbody;
|
|
2964
|
+
$e.Tr = de.Tr;
|
|
2965
|
+
$e.Th = de.Th;
|
|
2966
|
+
$e.Td = de.Td;
|
|
2967
|
+
$e.Tfoot = de.Tfoot;
|
|
2968
|
+
$e.Caption = de.Caption;
|
|
2969
|
+
$e.ScrollContainer = de.ScrollContainer;
|
|
2970
|
+
const ml = "Tabs-module__root___-VKVI", ul = "Tabs-module__list___qRVME", bl = "Tabs-module__tab___IdDYc", yl = "Tabs-module__panel___08i9c", Ve = {
|
|
2971
|
+
root: ml,
|
|
2972
|
+
list: ul,
|
|
2973
|
+
tab: bl,
|
|
2974
|
+
panel: yl
|
|
2975
|
+
}, kt = h(function(e, r) {
|
|
2941
2976
|
const {
|
|
2942
2977
|
variant: a = "default",
|
|
2943
|
-
orientation:
|
|
2944
|
-
overStyled:
|
|
2978
|
+
orientation: o = "horizontal",
|
|
2979
|
+
overStyled: t = !1,
|
|
2945
2980
|
className: n,
|
|
2946
|
-
...
|
|
2947
|
-
} = e, c =
|
|
2981
|
+
...l
|
|
2982
|
+
} = e, c = N(l, t);
|
|
2948
2983
|
return /* @__PURE__ */ s(
|
|
2949
|
-
|
|
2984
|
+
Ze,
|
|
2950
2985
|
{
|
|
2951
2986
|
ref: r,
|
|
2952
2987
|
variant: a,
|
|
2953
|
-
orientation:
|
|
2954
|
-
className: `${
|
|
2988
|
+
orientation: o,
|
|
2989
|
+
className: `${Ve.root} ${n || ""}`,
|
|
2955
2990
|
"data-variant": a,
|
|
2956
|
-
"data-orientation":
|
|
2991
|
+
"data-orientation": o,
|
|
2957
2992
|
classNames: {
|
|
2958
|
-
list:
|
|
2959
|
-
tab:
|
|
2960
|
-
panel:
|
|
2993
|
+
list: Ve.list,
|
|
2994
|
+
tab: Ve.tab,
|
|
2995
|
+
panel: Ve.panel
|
|
2961
2996
|
},
|
|
2962
2997
|
...c
|
|
2963
2998
|
}
|
|
2964
2999
|
);
|
|
2965
3000
|
});
|
|
2966
|
-
|
|
2967
|
-
const
|
|
3001
|
+
kt.displayName = "Tabs";
|
|
3002
|
+
const It = h(
|
|
2968
3003
|
function(e, r) {
|
|
2969
|
-
const { overStyled: a = !1, ...
|
|
3004
|
+
const { overStyled: a = !1, ...o } = e;
|
|
2970
3005
|
return /* @__PURE__ */ s(
|
|
2971
|
-
|
|
3006
|
+
Ze.List,
|
|
2972
3007
|
{
|
|
2973
3008
|
ref: r,
|
|
2974
|
-
...
|
|
3009
|
+
...N(o, a)
|
|
2975
3010
|
}
|
|
2976
3011
|
);
|
|
2977
3012
|
}
|
|
2978
3013
|
);
|
|
2979
|
-
|
|
2980
|
-
const
|
|
3014
|
+
It.displayName = "Tabs.List";
|
|
3015
|
+
const Mt = h(
|
|
2981
3016
|
function(e, r) {
|
|
2982
|
-
const { overStyled: a = !1, ...
|
|
3017
|
+
const { overStyled: a = !1, ...o } = e;
|
|
2983
3018
|
return /* @__PURE__ */ s(
|
|
2984
|
-
|
|
3019
|
+
Ze.Tab,
|
|
2985
3020
|
{
|
|
2986
3021
|
ref: r,
|
|
2987
|
-
...
|
|
3022
|
+
...N(o, a)
|
|
2988
3023
|
}
|
|
2989
3024
|
);
|
|
2990
3025
|
}
|
|
2991
3026
|
);
|
|
2992
|
-
|
|
2993
|
-
const
|
|
3027
|
+
Mt.displayName = "Tabs.Tab";
|
|
3028
|
+
const zt = h(
|
|
2994
3029
|
function(e, r) {
|
|
2995
|
-
const { overStyled: a = !1, ...
|
|
3030
|
+
const { overStyled: a = !1, ...o } = e;
|
|
2996
3031
|
return /* @__PURE__ */ s(
|
|
2997
|
-
|
|
3032
|
+
Ze.Panel,
|
|
2998
3033
|
{
|
|
2999
3034
|
ref: r,
|
|
3000
|
-
...
|
|
3035
|
+
...N(o, a)
|
|
3001
3036
|
}
|
|
3002
3037
|
);
|
|
3003
3038
|
}
|
|
3004
3039
|
);
|
|
3005
|
-
|
|
3006
|
-
const
|
|
3007
|
-
List:
|
|
3008
|
-
Tab:
|
|
3009
|
-
Panel:
|
|
3010
|
-
}),
|
|
3011
|
-
const
|
|
3040
|
+
zt.displayName = "Tabs.Panel";
|
|
3041
|
+
const ci = Object.assign(kt, {
|
|
3042
|
+
List: It,
|
|
3043
|
+
Tab: Mt,
|
|
3044
|
+
Panel: zt
|
|
3045
|
+
}), Rt = h(function({ overStyled: e = !1, variant: r = "body", ...a }, o) {
|
|
3046
|
+
const t = N(a, e), n = t.className, l = `recursica_brand_typography_${r}`, c = n ? `${l} ${n}` : l;
|
|
3012
3047
|
return /* @__PURE__ */ s(
|
|
3013
|
-
|
|
3048
|
+
ba,
|
|
3014
3049
|
{
|
|
3015
|
-
ref:
|
|
3050
|
+
ref: o,
|
|
3016
3051
|
className: c,
|
|
3017
|
-
...
|
|
3052
|
+
...t
|
|
3018
3053
|
}
|
|
3019
3054
|
);
|
|
3020
3055
|
});
|
|
3021
|
-
|
|
3022
|
-
const
|
|
3023
|
-
layoutOverride:
|
|
3024
|
-
root:
|
|
3025
|
-
input:
|
|
3026
|
-
},
|
|
3056
|
+
Rt.displayName = "Text";
|
|
3057
|
+
const di = te(Rt), fl = "TextArea-module__layoutOverride___4MCdm", Nl = "TextArea-module__root___3dyeu", hl = "TextArea-module__input___8l36v", be = {
|
|
3058
|
+
layoutOverride: fl,
|
|
3059
|
+
root: Nl,
|
|
3060
|
+
input: hl
|
|
3061
|
+
}, $l = h(
|
|
3027
3062
|
function(e, r) {
|
|
3028
3063
|
const {
|
|
3029
3064
|
overStyled: a = !1,
|
|
3030
|
-
formLayout:
|
|
3065
|
+
formLayout: o = "stacked",
|
|
3031
3066
|
// Label & Wrapper Maps
|
|
3032
|
-
labelSize:
|
|
3067
|
+
labelSize: t,
|
|
3033
3068
|
labelAlignment: n,
|
|
3034
|
-
labelOptionalText:
|
|
3069
|
+
labelOptionalText: l,
|
|
3035
3070
|
labelWithEditIcon: c,
|
|
3036
3071
|
onLabelEditClick: d,
|
|
3037
3072
|
label: p,
|
|
3038
3073
|
assistiveText: _,
|
|
3039
|
-
assistiveWithIcon:
|
|
3074
|
+
assistiveWithIcon: f,
|
|
3040
3075
|
error: u,
|
|
3041
3076
|
required: m,
|
|
3042
3077
|
withAsterisk: b,
|
|
@@ -3050,18 +3085,18 @@ const ni = te(It), _l = "TextArea-module__layoutOverride___4MCdm", ml = "TextAre
|
|
|
3050
3085
|
value: x,
|
|
3051
3086
|
defaultValue: S,
|
|
3052
3087
|
...O
|
|
3053
|
-
} = e, W =
|
|
3088
|
+
} = e, W = N(O, a), w = W;
|
|
3054
3089
|
delete w.size, delete w.variant, delete w.radius;
|
|
3055
3090
|
const g = {
|
|
3056
|
-
wrapper:
|
|
3091
|
+
wrapper: be.root,
|
|
3057
3092
|
// The nested Input internal relative wrapper bounding box
|
|
3058
|
-
input:
|
|
3093
|
+
input: be.input
|
|
3059
3094
|
}, L = w.classNames;
|
|
3060
3095
|
if (L && typeof L == "object" && !Array.isArray(L)) {
|
|
3061
3096
|
const T = L;
|
|
3062
|
-
g.wrapper = T.wrapper ? `${
|
|
3097
|
+
g.wrapper = T.wrapper ? `${be.root} ${T.wrapper}` : be.root, g.input = T.input ? `${be.input} ${T.input}` : be.input;
|
|
3063
3098
|
}
|
|
3064
|
-
const R = C ? `${
|
|
3099
|
+
const R = C ? `${be.layoutOverride} ${C}` : be.layoutOverride;
|
|
3065
3100
|
return /* @__PURE__ */ s(
|
|
3066
3101
|
oe,
|
|
3067
3102
|
{
|
|
@@ -3070,15 +3105,15 @@ const ni = te(It), _l = "TextArea-module__layoutOverride___4MCdm", ml = "TextAre
|
|
|
3070
3105
|
controlMaxWidth: "var(--recursica_ui-kit_components_textarea_properties_max-width)",
|
|
3071
3106
|
controlMinWidth: "var(--recursica_ui-kit_components_textarea_properties_min-width)",
|
|
3072
3107
|
overStyled: a,
|
|
3073
|
-
formLayout:
|
|
3074
|
-
labelSize:
|
|
3108
|
+
formLayout: o,
|
|
3109
|
+
labelSize: t,
|
|
3075
3110
|
labelAlignment: n,
|
|
3076
|
-
labelOptionalText:
|
|
3111
|
+
labelOptionalText: l,
|
|
3077
3112
|
labelWithEditIcon: c,
|
|
3078
3113
|
onLabelEditClick: d,
|
|
3079
3114
|
label: p,
|
|
3080
3115
|
assistiveText: _,
|
|
3081
|
-
assistiveWithIcon:
|
|
3116
|
+
assistiveWithIcon: f,
|
|
3082
3117
|
error: u,
|
|
3083
3118
|
required: m,
|
|
3084
3119
|
withAsterisk: b,
|
|
@@ -3092,7 +3127,7 @@ const ni = te(It), _l = "TextArea-module__layoutOverride___4MCdm", ml = "TextAre
|
|
|
3092
3127
|
activeComponent: (
|
|
3093
3128
|
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
3094
3129
|
/* @__PURE__ */ s(
|
|
3095
|
-
|
|
3130
|
+
ya,
|
|
3096
3131
|
{
|
|
3097
3132
|
ref: r,
|
|
3098
3133
|
classNames: g,
|
|
@@ -3116,26 +3151,26 @@ const ni = te(It), _l = "TextArea-module__layoutOverride___4MCdm", ml = "TextAre
|
|
|
3116
3151
|
);
|
|
3117
3152
|
}
|
|
3118
3153
|
);
|
|
3119
|
-
|
|
3120
|
-
const
|
|
3121
|
-
layoutOverride:
|
|
3122
|
-
root:
|
|
3123
|
-
input:
|
|
3124
|
-
section:
|
|
3125
|
-
},
|
|
3154
|
+
$l.displayName = "TextArea";
|
|
3155
|
+
const vl = "TextField-module__layoutOverride___SNZqc", Cl = "TextField-module__root___2ZYkG", Pl = "TextField-module__input___RL-My", wl = "TextField-module__section___bCIJ0", ee = {
|
|
3156
|
+
layoutOverride: vl,
|
|
3157
|
+
root: Cl,
|
|
3158
|
+
input: Pl,
|
|
3159
|
+
section: wl
|
|
3160
|
+
}, gl = h(
|
|
3126
3161
|
function(e, r) {
|
|
3127
3162
|
const {
|
|
3128
3163
|
overStyled: a = !1,
|
|
3129
|
-
formLayout:
|
|
3164
|
+
formLayout: o = "stacked",
|
|
3130
3165
|
// Label & Wrapper Maps
|
|
3131
|
-
labelSize:
|
|
3166
|
+
labelSize: t,
|
|
3132
3167
|
labelAlignment: n,
|
|
3133
|
-
labelOptionalText:
|
|
3168
|
+
labelOptionalText: l,
|
|
3134
3169
|
labelWithEditIcon: c,
|
|
3135
3170
|
onLabelEditClick: d,
|
|
3136
3171
|
label: p,
|
|
3137
3172
|
assistiveText: _,
|
|
3138
|
-
assistiveWithIcon:
|
|
3173
|
+
assistiveWithIcon: f,
|
|
3139
3174
|
error: u,
|
|
3140
3175
|
required: m,
|
|
3141
3176
|
withAsterisk: b,
|
|
@@ -3149,7 +3184,7 @@ const yl = "TextField-module__layoutOverride___SNZqc", Nl = "TextField-module__r
|
|
|
3149
3184
|
value: x,
|
|
3150
3185
|
defaultValue: S,
|
|
3151
3186
|
...O
|
|
3152
|
-
} = e, W =
|
|
3187
|
+
} = e, W = N(O, a), w = W;
|
|
3153
3188
|
delete w.size, delete w.variant, delete w.radius;
|
|
3154
3189
|
const g = {
|
|
3155
3190
|
wrapper: ee.root,
|
|
@@ -3170,15 +3205,15 @@ const yl = "TextField-module__layoutOverride___SNZqc", Nl = "TextField-module__r
|
|
|
3170
3205
|
controlMaxWidth: "var(--recursica_ui-kit_components_text-field_properties_max-width)",
|
|
3171
3206
|
controlMinWidth: "var(--recursica_ui-kit_components_text-field_properties_min-width)",
|
|
3172
3207
|
overStyled: a,
|
|
3173
|
-
formLayout:
|
|
3174
|
-
labelSize:
|
|
3208
|
+
formLayout: o,
|
|
3209
|
+
labelSize: t,
|
|
3175
3210
|
labelAlignment: n,
|
|
3176
|
-
labelOptionalText:
|
|
3211
|
+
labelOptionalText: l,
|
|
3177
3212
|
labelWithEditIcon: c,
|
|
3178
3213
|
onLabelEditClick: d,
|
|
3179
3214
|
label: p,
|
|
3180
3215
|
assistiveText: _,
|
|
3181
|
-
assistiveWithIcon:
|
|
3216
|
+
assistiveWithIcon: f,
|
|
3182
3217
|
error: u,
|
|
3183
3218
|
required: m,
|
|
3184
3219
|
withAsterisk: b,
|
|
@@ -3192,7 +3227,7 @@ const yl = "TextField-module__layoutOverride___SNZqc", Nl = "TextField-module__r
|
|
|
3192
3227
|
activeComponent: (
|
|
3193
3228
|
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
3194
3229
|
/* @__PURE__ */ s(
|
|
3195
|
-
|
|
3230
|
+
wo,
|
|
3196
3231
|
{
|
|
3197
3232
|
ref: r,
|
|
3198
3233
|
classNames: g,
|
|
@@ -3211,236 +3246,236 @@ const yl = "TextField-module__layoutOverride___SNZqc", Nl = "TextField-module__r
|
|
|
3211
3246
|
);
|
|
3212
3247
|
}
|
|
3213
3248
|
);
|
|
3214
|
-
|
|
3215
|
-
const
|
|
3216
|
-
root:
|
|
3217
|
-
item:
|
|
3218
|
-
itemBody:
|
|
3219
|
-
itemBullet:
|
|
3220
|
-
itemTitle:
|
|
3221
|
-
itemContent:
|
|
3222
|
-
description:
|
|
3223
|
-
timestamp:
|
|
3224
|
-
},
|
|
3249
|
+
gl.displayName = "TextField";
|
|
3250
|
+
const pi = (i) => /* @__PURE__ */ s("div", { ...i, children: "TimePicker" }), Tl = "Timeline-module__root___LwRdZ", Sl = "Timeline-module__item___T5xdQ", xl = "Timeline-module__itemBody___XAV-E", Al = "Timeline-module__itemBullet___rPXCy", Ol = "Timeline-module__itemTitle___GgRRW", Wl = "Timeline-module__itemContent___vurs-", Ll = "Timeline-module__description___f9sxV", kl = "Timeline-module__timestamp___owiRu", ye = {
|
|
3251
|
+
root: Tl,
|
|
3252
|
+
item: Sl,
|
|
3253
|
+
itemBody: xl,
|
|
3254
|
+
itemBullet: Al,
|
|
3255
|
+
itemTitle: Ol,
|
|
3256
|
+
itemContent: Wl,
|
|
3257
|
+
description: Ll,
|
|
3258
|
+
timestamp: kl
|
|
3259
|
+
}, Bt = j.forwardRef(
|
|
3225
3260
|
function({
|
|
3226
3261
|
overStyled: e = !1,
|
|
3227
3262
|
timestamp: r,
|
|
3228
3263
|
bulletVariant: a = "default",
|
|
3229
|
-
children:
|
|
3230
|
-
...
|
|
3264
|
+
children: o,
|
|
3265
|
+
...t
|
|
3231
3266
|
}, n) {
|
|
3232
|
-
const
|
|
3233
|
-
item:
|
|
3234
|
-
itemBody:
|
|
3235
|
-
itemContent:
|
|
3236
|
-
itemBullet:
|
|
3237
|
-
itemTitle:
|
|
3238
|
-
}, d =
|
|
3267
|
+
const l = N(t, e), c = {
|
|
3268
|
+
item: ye.item,
|
|
3269
|
+
itemBody: ye.itemBody,
|
|
3270
|
+
itemContent: ye.itemContent,
|
|
3271
|
+
itemBullet: ye.itemBullet,
|
|
3272
|
+
itemTitle: ye.itemTitle
|
|
3273
|
+
}, d = l.classNames;
|
|
3239
3274
|
if (d && typeof d == "object" && !Array.isArray(d)) {
|
|
3240
3275
|
const _ = d;
|
|
3241
|
-
Object.keys(_).forEach((
|
|
3242
|
-
c[
|
|
3276
|
+
Object.keys(_).forEach((f) => {
|
|
3277
|
+
c[f] ? c[f] = `${c[f]} ${_[f]}` : c[f] = _[f];
|
|
3243
3278
|
});
|
|
3244
3279
|
}
|
|
3245
|
-
const p = r ? /* @__PURE__ */ z(
|
|
3246
|
-
|
|
3247
|
-
/* @__PURE__ */ s("div", { className:
|
|
3248
|
-
] }) :
|
|
3280
|
+
const p = r ? /* @__PURE__ */ z(Oe, { children: [
|
|
3281
|
+
o && /* @__PURE__ */ s("div", { className: ye.description, children: o }),
|
|
3282
|
+
/* @__PURE__ */ s("div", { className: ye.timestamp, children: r })
|
|
3283
|
+
] }) : o;
|
|
3249
3284
|
return /* @__PURE__ */ s(
|
|
3250
|
-
|
|
3285
|
+
fa,
|
|
3251
3286
|
{
|
|
3252
3287
|
ref: n,
|
|
3253
3288
|
classNames: c,
|
|
3254
3289
|
"data-variant": a,
|
|
3255
|
-
...
|
|
3290
|
+
...l,
|
|
3256
3291
|
children: p
|
|
3257
3292
|
}
|
|
3258
3293
|
);
|
|
3259
3294
|
}
|
|
3260
3295
|
);
|
|
3261
|
-
|
|
3262
|
-
const
|
|
3296
|
+
Bt.displayName = "TimelineItem";
|
|
3297
|
+
const Ft = j.forwardRef(
|
|
3263
3298
|
function({ overStyled: e = !1, ...r }, a) {
|
|
3264
|
-
const
|
|
3265
|
-
root:
|
|
3266
|
-
}, n =
|
|
3299
|
+
const o = N(r, e), t = {
|
|
3300
|
+
root: ye.root
|
|
3301
|
+
}, n = o.classNames;
|
|
3267
3302
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
3268
|
-
const
|
|
3269
|
-
Object.keys(
|
|
3270
|
-
|
|
3303
|
+
const l = n;
|
|
3304
|
+
Object.keys(l).forEach((c) => {
|
|
3305
|
+
t[c] ? t[c] = `${t[c]} ${l[c]}` : t[c] = l[c];
|
|
3271
3306
|
});
|
|
3272
3307
|
}
|
|
3273
3308
|
return /* @__PURE__ */ s(
|
|
3274
|
-
|
|
3309
|
+
Na,
|
|
3275
3310
|
{
|
|
3276
3311
|
ref: a,
|
|
3277
|
-
classNames:
|
|
3278
|
-
...
|
|
3312
|
+
classNames: t,
|
|
3313
|
+
...o
|
|
3279
3314
|
}
|
|
3280
3315
|
);
|
|
3281
3316
|
}
|
|
3282
3317
|
);
|
|
3283
|
-
|
|
3284
|
-
const
|
|
3285
|
-
|
|
3286
|
-
const
|
|
3287
|
-
const
|
|
3318
|
+
Ft.displayName = "Timeline";
|
|
3319
|
+
const Il = Ft;
|
|
3320
|
+
Il.Item = Bt;
|
|
3321
|
+
const Ml = h(function({ overStyled: e = !1, order: r = 1, ...a }, o) {
|
|
3322
|
+
const t = N(a, e), n = t.className, l = `recursica_brand_typography_h${r}`, c = n ? `${l} ${n}` : l;
|
|
3288
3323
|
return /* @__PURE__ */ s(
|
|
3289
|
-
|
|
3324
|
+
ha,
|
|
3290
3325
|
{
|
|
3291
|
-
ref:
|
|
3326
|
+
ref: o,
|
|
3292
3327
|
order: r,
|
|
3293
3328
|
className: c,
|
|
3294
|
-
...
|
|
3329
|
+
...t
|
|
3295
3330
|
}
|
|
3296
3331
|
);
|
|
3297
3332
|
});
|
|
3298
|
-
|
|
3299
|
-
const
|
|
3300
|
-
root:
|
|
3301
|
-
icon:
|
|
3302
|
-
loader:
|
|
3303
|
-
title:
|
|
3304
|
-
description:
|
|
3305
|
-
closeButton:
|
|
3306
|
-
body:
|
|
3307
|
-
},
|
|
3333
|
+
Ml.displayName = "Title";
|
|
3334
|
+
const zl = "Toast-module__root___MUvfI", Rl = "Toast-module__icon___VwvE1", Bl = "Toast-module__loader___8Gxd-", Fl = "Toast-module__title___-H6R2", El = "Toast-module__description___-QwfC", Vl = "Toast-module__closeButton___vGr7g", Dl = "Toast-module__body___VLkXA", Se = {
|
|
3335
|
+
root: zl,
|
|
3336
|
+
icon: Rl,
|
|
3337
|
+
loader: Bl,
|
|
3338
|
+
title: Fl,
|
|
3339
|
+
description: El,
|
|
3340
|
+
closeButton: Vl,
|
|
3341
|
+
body: Dl
|
|
3342
|
+
}, jl = j.forwardRef(
|
|
3308
3343
|
function({
|
|
3309
3344
|
overStyled: e = !1,
|
|
3310
3345
|
variant: r = "default",
|
|
3311
3346
|
withCloseButton: a = !0,
|
|
3312
|
-
...
|
|
3313
|
-
},
|
|
3314
|
-
const n =
|
|
3315
|
-
root:
|
|
3316
|
-
body:
|
|
3317
|
-
title:
|
|
3318
|
-
description:
|
|
3319
|
-
closeButton:
|
|
3320
|
-
icon:
|
|
3321
|
-
loader:
|
|
3347
|
+
...o
|
|
3348
|
+
}, t) {
|
|
3349
|
+
const n = N(o, e), l = {
|
|
3350
|
+
root: Se.root,
|
|
3351
|
+
body: Se.body,
|
|
3352
|
+
title: Se.title,
|
|
3353
|
+
description: Se.description,
|
|
3354
|
+
closeButton: Se.closeButton,
|
|
3355
|
+
icon: Se.icon,
|
|
3356
|
+
loader: Se.loader
|
|
3322
3357
|
}, c = n.classNames;
|
|
3323
3358
|
if (c && typeof c == "object" && !Array.isArray(c)) {
|
|
3324
3359
|
const d = c;
|
|
3325
3360
|
Object.keys(d).forEach((p) => {
|
|
3326
|
-
|
|
3361
|
+
l[p] ? l[p] = `${l[p]} ${d[p]}` : l[p] = d[p];
|
|
3327
3362
|
});
|
|
3328
3363
|
}
|
|
3329
3364
|
return /* @__PURE__ */ s(
|
|
3330
|
-
|
|
3365
|
+
$a,
|
|
3331
3366
|
{
|
|
3332
|
-
ref:
|
|
3367
|
+
ref: t,
|
|
3333
3368
|
withCloseButton: a,
|
|
3334
3369
|
withBorder: !1,
|
|
3335
3370
|
"data-variant": r,
|
|
3336
|
-
classNames:
|
|
3371
|
+
classNames: l,
|
|
3337
3372
|
loading: !1,
|
|
3338
3373
|
...n
|
|
3339
3374
|
}
|
|
3340
3375
|
);
|
|
3341
3376
|
}
|
|
3342
3377
|
);
|
|
3343
|
-
|
|
3344
|
-
const
|
|
3345
|
-
tooltip:
|
|
3346
|
-
arrow:
|
|
3347
|
-
},
|
|
3378
|
+
jl.displayName = "Toast";
|
|
3379
|
+
const Gl = "Tooltip-module__tooltip___UA7H9", Hl = "Tooltip-module__arrow___4zROk", Co = {
|
|
3380
|
+
tooltip: Gl,
|
|
3381
|
+
arrow: Hl
|
|
3382
|
+
}, Et = function({
|
|
3348
3383
|
overStyled: e = !1,
|
|
3349
3384
|
withBeak: r = !0,
|
|
3350
3385
|
...a
|
|
3351
3386
|
}) {
|
|
3352
|
-
const
|
|
3353
|
-
tooltip:
|
|
3354
|
-
arrow:
|
|
3355
|
-
}, n =
|
|
3387
|
+
const o = N(a, e), t = {
|
|
3388
|
+
tooltip: Co.tooltip,
|
|
3389
|
+
arrow: Co.arrow
|
|
3390
|
+
}, n = o.classNames;
|
|
3356
3391
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
3357
3392
|
const p = n;
|
|
3358
3393
|
Object.keys(p).forEach((_) => {
|
|
3359
|
-
|
|
3394
|
+
t[_] ? t[_] = `${t[_]} ${p[_]}` : t[_] = p[_];
|
|
3360
3395
|
});
|
|
3361
3396
|
}
|
|
3362
|
-
const
|
|
3397
|
+
const l = o.arrowSize ?? 16, c = o.withArrow;
|
|
3363
3398
|
return /* @__PURE__ */ s(
|
|
3364
|
-
|
|
3399
|
+
so,
|
|
3365
3400
|
{
|
|
3366
3401
|
position: "top",
|
|
3367
3402
|
multiline: !0,
|
|
3368
|
-
arrowSize:
|
|
3403
|
+
arrowSize: l,
|
|
3369
3404
|
withArrow: r ?? c,
|
|
3370
|
-
classNames:
|
|
3371
|
-
...
|
|
3405
|
+
classNames: t,
|
|
3406
|
+
...o
|
|
3372
3407
|
}
|
|
3373
3408
|
);
|
|
3374
3409
|
};
|
|
3375
|
-
|
|
3376
|
-
const
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
const
|
|
3410
|
+
Et.displayName = "Tooltip";
|
|
3411
|
+
const Vt = Et;
|
|
3412
|
+
Vt.Floating = so.Floating;
|
|
3413
|
+
Vt.Group = so.Group;
|
|
3414
|
+
const _i = (i) => /* @__PURE__ */ s("div", { ...i, children: "TransferList" });
|
|
3380
3415
|
export {
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3416
|
+
co as Accordion,
|
|
3417
|
+
lo as AccordionControl,
|
|
3418
|
+
Oo as AccordionItem,
|
|
3419
|
+
io as AccordionPanel,
|
|
3420
|
+
sr as AutoComplete,
|
|
3421
|
+
Jl as Avatar,
|
|
3422
|
+
Ql as Badge,
|
|
3423
|
+
ur as Breadcrumb,
|
|
3424
|
+
ei as Button,
|
|
3425
|
+
oi as Card,
|
|
3426
|
+
Vo as CardContent,
|
|
3427
|
+
Eo as CardFooter,
|
|
3428
|
+
Fo as CardHeader,
|
|
3429
|
+
Bo as CardSection,
|
|
3430
|
+
Go as Checkbox,
|
|
3431
|
+
jo as CheckboxGroup,
|
|
3432
|
+
Gr as Chip,
|
|
3433
|
+
qr as Container,
|
|
3434
|
+
es as DatePicker,
|
|
3435
|
+
ls as Dropdown,
|
|
3436
|
+
He as EmptyValueRenderer,
|
|
3437
|
+
ti as FileInput,
|
|
3438
|
+
ai as FileUpload,
|
|
3439
|
+
ri as Flex,
|
|
3405
3440
|
Ne as FormControlLayout,
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3441
|
+
ds as Group,
|
|
3442
|
+
Yo as HoverCard,
|
|
3443
|
+
Wo as Label,
|
|
3444
|
+
Ka as Layer,
|
|
3445
|
+
si as Link,
|
|
3446
|
+
Mo as Loader,
|
|
3447
|
+
We as Menu,
|
|
3448
|
+
he as Modal,
|
|
3449
|
+
Es as NumberInput,
|
|
3450
|
+
pe as Pagination,
|
|
3451
|
+
_e as Panel,
|
|
3452
|
+
$t as PanelFooter,
|
|
3453
|
+
wt as Popover,
|
|
3454
|
+
Xl as RECURSICA_COMPONENTS,
|
|
3455
|
+
Tt as Radio,
|
|
3456
|
+
gt as RadioGroup,
|
|
3457
|
+
fn as ReadOnlyBooleanField,
|
|
3458
|
+
Lo as ReadOnlyField,
|
|
3459
|
+
yn as ReadOnlySwitchField,
|
|
3460
|
+
De as ReadOnlyTextField,
|
|
3461
|
+
Kl as RecursicaThemeProvider,
|
|
3462
|
+
ni as SegmentedControl,
|
|
3463
|
+
Bn as Slider,
|
|
3464
|
+
li as Stack,
|
|
3465
|
+
ii as Stepper,
|
|
3466
|
+
Wt as Switch,
|
|
3467
|
+
Ot as SwitchGroup,
|
|
3468
|
+
$e as Table,
|
|
3469
|
+
ci as Tabs,
|
|
3470
|
+
di as Text,
|
|
3471
|
+
$l as TextArea,
|
|
3472
|
+
gl as TextField,
|
|
3473
|
+
pi as TimePicker,
|
|
3474
|
+
Il as Timeline,
|
|
3475
|
+
Ml as Title,
|
|
3476
|
+
jl as Toast,
|
|
3477
|
+
Vt as Tooltip,
|
|
3478
|
+
_i as TransferList,
|
|
3444
3479
|
oe as WithReadOnlyWrapper
|
|
3445
3480
|
};
|
|
3446
3481
|
//# sourceMappingURL=mantine-adapter.js.map
|