@recursica/mantine-adapter 0.12.0 → 0.13.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 +6 -0
- package/dist/mantine-adapter.cjs +1 -1
- package/dist/mantine-adapter.cjs.map +1 -1
- package/dist/mantine-adapter.js +666 -664
- package/dist/mantine-adapter.js.map +1 -1
- package/dist/src/components/Avatar/Avatar.d.ts +16 -2
- package/dist/src/components/Badge/Badge.d.ts +14 -1
- package/dist/src/components/Button/Button.d.ts +19 -1
- package/dist/src/components/Card/Card.d.ts +21 -6
- package/dist/src/components/Flex/Flex.d.ts +19 -1
- package/dist/src/components/Menu/Menu.d.ts +32 -2
- package/dist/src/components/Text/Text.d.ts +16 -1
- package/package.json +1 -1
- package/src/components/Avatar/Avatar.tsx +30 -17
- package/src/components/Badge/Badge.tsx +9 -2
- package/src/components/Button/Button.tsx +96 -84
- package/src/components/Card/Card.tsx +27 -7
- package/src/components/Flex/Flex.tsx +14 -2
- package/src/components/Menu/Menu.tsx +42 -22
- package/src/components/Text/Text.tsx +16 -6
package/dist/mantine-adapter.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { jsx as e, jsxs as E, Fragment as
|
|
2
|
-
import B, { forwardRef as $, useId as
|
|
3
|
-
import { Accordion as
|
|
4
|
-
const
|
|
1
|
+
import { jsx as e, jsxs as E, Fragment as de } from "react/jsx-runtime";
|
|
2
|
+
import B, { forwardRef as $, useId as _o, useEffect as bo } from "react";
|
|
3
|
+
import { Accordion as he, Avatar as yo, createPolymorphicComponent as Q, Badge as ho, Breadcrumbs as fo, Button as No, Card as fe, Input as Se, Box as ge, Checkbox as Te, Chip as $o, Container as vo, Select as Co, Flex as go, Group as xo, Loader as wo, Menu as q, Radio as Ie, Stack as Po, Switch as Le, CheckIcon as Wo, CloseIcon as Ao, Text as ko, Textarea as So, Title as To } from "@mantine/core";
|
|
4
|
+
const Io = [
|
|
5
5
|
"className",
|
|
6
6
|
"classNames",
|
|
7
7
|
"style",
|
|
@@ -45,7 +45,7 @@ const wo = [
|
|
|
45
45
|
"mih",
|
|
46
46
|
"mah"
|
|
47
47
|
// Dimensions
|
|
48
|
-
],
|
|
48
|
+
], Lo = /* @__PURE__ */ new Set([
|
|
49
49
|
"m",
|
|
50
50
|
"my",
|
|
51
51
|
"mx",
|
|
@@ -60,7 +60,7 @@ const wo = [
|
|
|
60
60
|
"left",
|
|
61
61
|
"bottom",
|
|
62
62
|
"right"
|
|
63
|
-
]),
|
|
63
|
+
]), We = {
|
|
64
64
|
"rec-none": "var(--recursica_brand_dimensions_general_none)",
|
|
65
65
|
"rec-sm": "var(--recursica_brand_dimensions_general_sm)",
|
|
66
66
|
"rec-default": "var(--recursica_brand_dimensions_general_default)",
|
|
@@ -73,23 +73,23 @@ function v(r, o) {
|
|
|
73
73
|
if (o)
|
|
74
74
|
return r;
|
|
75
75
|
const n = { ...r };
|
|
76
|
-
for (const s of
|
|
76
|
+
for (const s of Io)
|
|
77
77
|
s in n && delete n[s];
|
|
78
78
|
for (const [s, t] of Object.entries(n))
|
|
79
|
-
typeof t == "string" && t.startsWith("rec-") &&
|
|
79
|
+
typeof t == "string" && t.startsWith("rec-") && Lo.has(s) && t in We && (n[s] = We[t]);
|
|
80
80
|
return n;
|
|
81
81
|
}
|
|
82
|
-
const
|
|
83
|
-
root:
|
|
84
|
-
item:
|
|
85
|
-
noDivider:
|
|
86
|
-
control:
|
|
87
|
-
label:
|
|
88
|
-
chevron:
|
|
89
|
-
iconLeftWrapper:
|
|
90
|
-
panel:
|
|
91
|
-
content:
|
|
92
|
-
},
|
|
82
|
+
const Ro = "Accordion-module__root___Dem6d", Oo = "Accordion-module__item___7ryVk", zo = "Accordion-module__noDivider___Ni2tT", Mo = "Accordion-module__control___b4wgX", Fo = "Accordion-module__label___Ss7uW", Eo = "Accordion-module__chevron___i-HVZ", Bo = "Accordion-module__iconLeftWrapper___5oLen", jo = "Accordion-module__panel___Wx50w", Do = "Accordion-module__content___PEM9t", H = {
|
|
83
|
+
root: Ro,
|
|
84
|
+
item: Oo,
|
|
85
|
+
noDivider: zo,
|
|
86
|
+
control: Mo,
|
|
87
|
+
label: Fo,
|
|
88
|
+
chevron: Eo,
|
|
89
|
+
iconLeftWrapper: Bo,
|
|
90
|
+
panel: jo,
|
|
91
|
+
content: Do
|
|
92
|
+
}, Re = function({
|
|
93
93
|
variant: o = "unstyled",
|
|
94
94
|
overStyled: n = !1,
|
|
95
95
|
...s
|
|
@@ -111,7 +111,7 @@ const Wo = "Accordion-module__root___Dem6d", ko = "Accordion-module__item___7ryV
|
|
|
111
111
|
}
|
|
112
112
|
const l = t.className;
|
|
113
113
|
return /* @__PURE__ */ e(
|
|
114
|
-
|
|
114
|
+
he,
|
|
115
115
|
{
|
|
116
116
|
variant: o,
|
|
117
117
|
className: l,
|
|
@@ -120,27 +120,27 @@ const Wo = "Accordion-module__root___Dem6d", ko = "Accordion-module__item___7ryV
|
|
|
120
120
|
}
|
|
121
121
|
);
|
|
122
122
|
};
|
|
123
|
-
|
|
124
|
-
const
|
|
123
|
+
Re.displayName = "Accordion";
|
|
124
|
+
const Oe = $(function({ title: o, leftIcon: n, divider: s = !0, children: t, overStyled: a = !1, ...c }, l) {
|
|
125
125
|
const d = v(c, a), i = d.className, p = [s ? void 0 : H.noDivider, i].filter(Boolean).join(" ") || void 0;
|
|
126
126
|
return /* @__PURE__ */ e(
|
|
127
|
-
|
|
127
|
+
he.Item,
|
|
128
128
|
{
|
|
129
129
|
ref: l,
|
|
130
130
|
className: p,
|
|
131
131
|
...d,
|
|
132
|
-
children: o ? /* @__PURE__ */ E(
|
|
133
|
-
/* @__PURE__ */ e(
|
|
134
|
-
/* @__PURE__ */ e(
|
|
132
|
+
children: o ? /* @__PURE__ */ E(de, { children: [
|
|
133
|
+
/* @__PURE__ */ e(xe, { leftIcon: n, children: o }),
|
|
134
|
+
/* @__PURE__ */ e(we, { children: t })
|
|
135
135
|
] }) : t
|
|
136
136
|
}
|
|
137
137
|
);
|
|
138
138
|
});
|
|
139
|
-
|
|
140
|
-
const
|
|
139
|
+
Oe.displayName = "AccordionItem";
|
|
140
|
+
const xe = $(function({ leftIcon: o, children: n, overStyled: s = !1, ...t }, a) {
|
|
141
141
|
const c = v(t, s), l = c.className;
|
|
142
142
|
return /* @__PURE__ */ e(
|
|
143
|
-
|
|
143
|
+
he.Control,
|
|
144
144
|
{
|
|
145
145
|
ref: a,
|
|
146
146
|
className: l,
|
|
@@ -150,11 +150,11 @@ const ge = $(function({ leftIcon: o, children: n, overStyled: s = !1, ...t }, a)
|
|
|
150
150
|
}
|
|
151
151
|
);
|
|
152
152
|
});
|
|
153
|
-
|
|
154
|
-
const
|
|
153
|
+
xe.displayName = "AccordionControl";
|
|
154
|
+
const we = $(function({ overStyled: o = !1, ...n }, s) {
|
|
155
155
|
const t = v(n, o), a = t.className;
|
|
156
156
|
return /* @__PURE__ */ e(
|
|
157
|
-
|
|
157
|
+
he.Panel,
|
|
158
158
|
{
|
|
159
159
|
ref: s,
|
|
160
160
|
className: a,
|
|
@@ -162,70 +162,68 @@ const xe = $(function({ overStyled: o = !1, ...n }, s) {
|
|
|
162
162
|
}
|
|
163
163
|
);
|
|
164
164
|
});
|
|
165
|
-
|
|
166
|
-
const
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
const
|
|
171
|
-
root:
|
|
172
|
-
iconWrapper:
|
|
173
|
-
textWrapper:
|
|
174
|
-
image:
|
|
175
|
-
placeholder:
|
|
176
|
-
},
|
|
165
|
+
we.displayName = "AccordionPanel";
|
|
166
|
+
const Pe = Re;
|
|
167
|
+
Pe.Item = Oe;
|
|
168
|
+
Pe.Control = xe;
|
|
169
|
+
Pe.Panel = we;
|
|
170
|
+
const Vo = "Avatar-module__root___fXu-J", Go = "Avatar-module__iconWrapper___ojly2", qo = "Avatar-module__textWrapper___zp-jD", Yo = "Avatar-module__image___ieqGp", Zo = "Avatar-module__placeholder___IDW7-", V = {
|
|
171
|
+
root: Vo,
|
|
172
|
+
iconWrapper: Go,
|
|
173
|
+
textWrapper: qo,
|
|
174
|
+
image: Yo,
|
|
175
|
+
placeholder: Zo
|
|
176
|
+
}, ze = $(function({
|
|
177
177
|
size: o = "default",
|
|
178
178
|
variant: n = "solid",
|
|
179
179
|
icon: s,
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
}, p) {
|
|
187
|
-
const u = {
|
|
180
|
+
children: t,
|
|
181
|
+
src: a,
|
|
182
|
+
overStyled: c = !1,
|
|
183
|
+
...l
|
|
184
|
+
}, d) {
|
|
185
|
+
const i = {
|
|
188
186
|
solid: "filled",
|
|
189
187
|
outline: "outline",
|
|
190
188
|
ghost: "transparent"
|
|
191
|
-
},
|
|
189
|
+
}, p = {
|
|
192
190
|
default: "md",
|
|
193
191
|
small: "sm",
|
|
194
192
|
large: "lg"
|
|
195
|
-
};
|
|
196
|
-
let
|
|
197
|
-
|
|
193
|
+
}, m = v(l, c), y = m;
|
|
194
|
+
let u = "text";
|
|
195
|
+
a ? u = "image" : s && (u = "icon");
|
|
198
196
|
const _ = {
|
|
199
197
|
root: V.root,
|
|
200
198
|
image: V.image,
|
|
201
199
|
placeholder: V.placeholder
|
|
202
|
-
};
|
|
203
|
-
if (
|
|
204
|
-
const h =
|
|
200
|
+
}, f = y.classNames;
|
|
201
|
+
if (f && typeof f == "object" && !Array.isArray(f)) {
|
|
202
|
+
const h = f;
|
|
205
203
|
_.root = h.root ? `${V.root} ${h.root}` : V.root, _.image = h.image ? `${V.image} ${h.image}` : V.image, _.placeholder = h.placeholder ? `${V.placeholder} ${h.placeholder}` : V.placeholder;
|
|
206
204
|
}
|
|
205
|
+
const C = y.className;
|
|
207
206
|
return /* @__PURE__ */ e(
|
|
208
|
-
|
|
207
|
+
yo,
|
|
209
208
|
{
|
|
210
|
-
ref:
|
|
211
|
-
className:
|
|
209
|
+
ref: d,
|
|
210
|
+
className: C,
|
|
212
211
|
classNames: _,
|
|
213
|
-
variant:
|
|
214
|
-
size:
|
|
215
|
-
|
|
216
|
-
src: d,
|
|
212
|
+
variant: i[n],
|
|
213
|
+
size: p[o],
|
|
214
|
+
src: a,
|
|
217
215
|
"data-variant": n,
|
|
218
216
|
"data-size": o,
|
|
219
|
-
"data-style":
|
|
220
|
-
...
|
|
221
|
-
children: s != null ? /* @__PURE__ */ e("span", { className: V.iconWrapper, "aria-hidden": !0, children: s }) :
|
|
217
|
+
"data-style": u,
|
|
218
|
+
...m,
|
|
219
|
+
children: s != null ? /* @__PURE__ */ e("span", { className: V.iconWrapper, "aria-hidden": !0, children: s }) : t != null ? /* @__PURE__ */ e("span", { className: V.textWrapper, children: t }) : void 0
|
|
222
220
|
}
|
|
223
221
|
);
|
|
224
222
|
});
|
|
225
|
-
|
|
226
|
-
const
|
|
227
|
-
root:
|
|
228
|
-
},
|
|
223
|
+
ze.displayName = "Avatar";
|
|
224
|
+
const Zr = Q(ze), Ho = "Badge-module__root___5osNT", Y = {
|
|
225
|
+
root: Ho
|
|
226
|
+
}, Me = $(function({ variant: o = "primary-color", overStyled: n = !1, ...s }, t) {
|
|
229
227
|
const a = v(s, n), c = {
|
|
230
228
|
root: Y.root,
|
|
231
229
|
section: Y.section,
|
|
@@ -237,7 +235,7 @@ const Do = "Badge-module__root___5osNT", Y = {
|
|
|
237
235
|
}
|
|
238
236
|
const d = a.className, i = d ? `${Y.root} ${d}` : Y.root;
|
|
239
237
|
return /* @__PURE__ */ e(
|
|
240
|
-
|
|
238
|
+
ho,
|
|
241
239
|
{
|
|
242
240
|
ref: t,
|
|
243
241
|
variant: "filled",
|
|
@@ -248,11 +246,11 @@ const Do = "Badge-module__root___5osNT", Y = {
|
|
|
248
246
|
}
|
|
249
247
|
);
|
|
250
248
|
});
|
|
251
|
-
|
|
252
|
-
const
|
|
253
|
-
root:
|
|
254
|
-
separator:
|
|
255
|
-
},
|
|
249
|
+
Me.displayName = "Badge";
|
|
250
|
+
const Hr = Q(Me), Ko = "Breadcrumb-module__root___x-9ln", Uo = "Breadcrumb-module__separator___qrUX-", U = {
|
|
251
|
+
root: Ko,
|
|
252
|
+
separator: Uo
|
|
253
|
+
}, Xo = $(
|
|
256
254
|
function({ overStyled: o = !1, separator: n = ">", ...s }, t) {
|
|
257
255
|
const a = v(
|
|
258
256
|
{ separator: n, ...s },
|
|
@@ -267,7 +265,7 @@ const Go = "Breadcrumb-module__root___x-9ln", qo = "Breadcrumb-module__separator
|
|
|
267
265
|
}
|
|
268
266
|
const d = a.className, i = d ? `${U.root} ${d}` : U.root;
|
|
269
267
|
return /* @__PURE__ */ e(
|
|
270
|
-
|
|
268
|
+
fo,
|
|
271
269
|
{
|
|
272
270
|
ref: t,
|
|
273
271
|
...a,
|
|
@@ -277,75 +275,75 @@ const Go = "Breadcrumb-module__root___x-9ln", qo = "Breadcrumb-module__separator
|
|
|
277
275
|
);
|
|
278
276
|
}
|
|
279
277
|
);
|
|
280
|
-
|
|
281
|
-
const
|
|
282
|
-
root:
|
|
283
|
-
label:
|
|
284
|
-
labelText:
|
|
285
|
-
iconWrapper:
|
|
286
|
-
section:
|
|
278
|
+
Xo.displayName = "Breadcrumb";
|
|
279
|
+
const Qo = "Button-module__root___Q2R8-", Jo = "Button-module__label___UJ3Zt", et = "Button-module__labelText___rFV5p", ot = "Button-module__iconWrapper___uEKPa", tt = "Button-module__section___f2mKr", G = {
|
|
280
|
+
root: Qo,
|
|
281
|
+
label: Jo,
|
|
282
|
+
labelText: et,
|
|
283
|
+
iconWrapper: ot,
|
|
284
|
+
section: tt
|
|
287
285
|
};
|
|
288
|
-
function
|
|
286
|
+
function rt(r) {
|
|
289
287
|
return r == null || r === "" ? !1 : typeof r == "string" ? r.trim() !== "" : !0;
|
|
290
288
|
}
|
|
291
|
-
const
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
h.root = b.root ? `${G.root} ${b.root}` : G.root, h.section = b.section ?? G.section, h.label = b.label ?? G.label;
|
|
321
|
-
}
|
|
322
|
-
const f = u.className, g = f ? `${G.root} ${f}` : G.root;
|
|
323
|
-
return /* @__PURE__ */ e(
|
|
324
|
-
mo,
|
|
325
|
-
{
|
|
326
|
-
ref: l,
|
|
327
|
-
className: g,
|
|
328
|
-
classNames: h,
|
|
329
|
-
variant: d[o],
|
|
330
|
-
size: i[n],
|
|
331
|
-
leftSection: s != null ? /* @__PURE__ */ e("span", { className: G.iconWrapper, "aria-hidden": !0, children: s }) : void 0,
|
|
332
|
-
"data-variant": o,
|
|
333
|
-
"data-size": n,
|
|
334
|
-
..._ ? { "data-icon-only": "" } : {},
|
|
335
|
-
...p,
|
|
336
|
-
children: /* @__PURE__ */ e("span", { className: G.labelText, children: t })
|
|
337
|
-
}
|
|
338
|
-
);
|
|
289
|
+
const Fe = $(function({
|
|
290
|
+
variant: o = "solid",
|
|
291
|
+
size: n = "default",
|
|
292
|
+
icon: s,
|
|
293
|
+
children: t,
|
|
294
|
+
overStyled: a = !1,
|
|
295
|
+
...c
|
|
296
|
+
}, l) {
|
|
297
|
+
const d = {
|
|
298
|
+
solid: "filled",
|
|
299
|
+
outline: "outline",
|
|
300
|
+
text: "subtle"
|
|
301
|
+
}, i = {
|
|
302
|
+
default: "md",
|
|
303
|
+
small: "sm"
|
|
304
|
+
}, p = v(c, a), m = p;
|
|
305
|
+
delete m.fullWidth;
|
|
306
|
+
const y = !!s || !!m.leftSection, u = !!m.rightSection, _ = (y || u) && !rt(t);
|
|
307
|
+
typeof process < "u" && process.env.NODE_ENV !== "production" && _ && !m["aria-label"] && console.warn(
|
|
308
|
+
'[Recursica Button] Icon-only buttons must provide an accessible name. Pass aria-label (e.g. aria-label="Submit").'
|
|
309
|
+
);
|
|
310
|
+
const f = {
|
|
311
|
+
root: G.root,
|
|
312
|
+
section: G.section,
|
|
313
|
+
label: G.label
|
|
314
|
+
}, C = m.classNames;
|
|
315
|
+
if (C && typeof C == "object" && !Array.isArray(C)) {
|
|
316
|
+
const b = C;
|
|
317
|
+
f.root = b.root ? `${G.root} ${b.root}` : G.root, f.section = b.section ?? G.section, f.label = b.label ?? G.label;
|
|
339
318
|
}
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
319
|
+
const h = m.className, g = h ? `${G.root} ${h}` : G.root;
|
|
320
|
+
return /* @__PURE__ */ e(
|
|
321
|
+
No,
|
|
322
|
+
{
|
|
323
|
+
ref: l,
|
|
324
|
+
className: g,
|
|
325
|
+
classNames: f,
|
|
326
|
+
variant: d[o],
|
|
327
|
+
size: i[n],
|
|
328
|
+
leftSection: s != null ? /* @__PURE__ */ e("span", { className: G.iconWrapper, "aria-hidden": !0, children: s }) : void 0,
|
|
329
|
+
"data-variant": o,
|
|
330
|
+
"data-size": n,
|
|
331
|
+
..._ ? { "data-icon-only": "" } : {},
|
|
332
|
+
...p,
|
|
333
|
+
children: /* @__PURE__ */ e("span", { className: G.labelText, children: t })
|
|
334
|
+
}
|
|
335
|
+
);
|
|
336
|
+
});
|
|
337
|
+
Fe.displayName = "Button";
|
|
338
|
+
const Kr = Q(
|
|
339
|
+
Fe
|
|
340
|
+
), at = "Card-module__root___c9KvZ", st = "Card-module__header___PTXf2", nt = "Card-module__footer___Mu-JC", lt = "Card-module__section___BRT8H", ct = "Card-module__content___oFIQa", K = {
|
|
341
|
+
root: at,
|
|
342
|
+
header: st,
|
|
343
|
+
footer: nt,
|
|
344
|
+
section: lt,
|
|
345
|
+
content: ct
|
|
346
|
+
}, Ee = $(function({ overStyled: o = !1, ...n }, s) {
|
|
349
347
|
const t = v(n, o), a = {
|
|
350
348
|
root: K.root
|
|
351
349
|
}, c = t.classNames;
|
|
@@ -357,7 +355,7 @@ const et = "Card-module__root___c9KvZ", ot = "Card-module__header___PTXf2", tt =
|
|
|
357
355
|
}
|
|
358
356
|
const l = t.className;
|
|
359
357
|
return /* @__PURE__ */ e(
|
|
360
|
-
|
|
358
|
+
fe,
|
|
361
359
|
{
|
|
362
360
|
ref: s,
|
|
363
361
|
className: l,
|
|
@@ -366,12 +364,12 @@ const et = "Card-module__root___c9KvZ", ot = "Card-module__header___PTXf2", tt =
|
|
|
366
364
|
}
|
|
367
365
|
);
|
|
368
366
|
});
|
|
369
|
-
|
|
370
|
-
const
|
|
367
|
+
Ee.displayName = "Card";
|
|
368
|
+
const Be = $(
|
|
371
369
|
function({ overStyled: o = !1, ...n }, s) {
|
|
372
370
|
const t = v(n, o), a = t.className;
|
|
373
371
|
return /* @__PURE__ */ e(
|
|
374
|
-
|
|
372
|
+
fe.Section,
|
|
375
373
|
{
|
|
376
374
|
ref: s,
|
|
377
375
|
className: a ? `${K.section} ${a}` : K.section,
|
|
@@ -380,12 +378,12 @@ const ze = $(
|
|
|
380
378
|
);
|
|
381
379
|
}
|
|
382
380
|
);
|
|
383
|
-
|
|
384
|
-
const
|
|
381
|
+
Be.displayName = "CardSection";
|
|
382
|
+
const je = $(
|
|
385
383
|
function({ overStyled: o = !1, ...n }, s) {
|
|
386
384
|
const t = v(n, o), a = t.className;
|
|
387
385
|
return /* @__PURE__ */ e(
|
|
388
|
-
|
|
386
|
+
fe.Section,
|
|
389
387
|
{
|
|
390
388
|
ref: s,
|
|
391
389
|
className: a ? `${K.header} ${a}` : K.header,
|
|
@@ -394,12 +392,12 @@ const Me = $(
|
|
|
394
392
|
);
|
|
395
393
|
}
|
|
396
394
|
);
|
|
397
|
-
|
|
398
|
-
const
|
|
395
|
+
je.displayName = "CardHeader";
|
|
396
|
+
const De = $(
|
|
399
397
|
function({ overStyled: o = !1, ...n }, s) {
|
|
400
398
|
const t = v(n, o), a = t.className;
|
|
401
399
|
return /* @__PURE__ */ e(
|
|
402
|
-
|
|
400
|
+
fe.Section,
|
|
403
401
|
{
|
|
404
402
|
ref: s,
|
|
405
403
|
className: a ? `${K.footer} ${a}` : K.footer,
|
|
@@ -408,8 +406,8 @@ const Fe = $(
|
|
|
408
406
|
);
|
|
409
407
|
}
|
|
410
408
|
);
|
|
411
|
-
|
|
412
|
-
const
|
|
409
|
+
De.displayName = "CardFooter";
|
|
410
|
+
const Ve = $(
|
|
413
411
|
function({ overStyled: o = !1, ...n }, s) {
|
|
414
412
|
const t = v(n, o), a = t.className;
|
|
415
413
|
return /* @__PURE__ */ e(
|
|
@@ -422,20 +420,20 @@ const Ee = $(
|
|
|
422
420
|
);
|
|
423
421
|
}
|
|
424
422
|
);
|
|
425
|
-
|
|
426
|
-
const
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
const
|
|
432
|
-
root:
|
|
433
|
-
labelText:
|
|
434
|
-
required:
|
|
435
|
-
optionalText:
|
|
436
|
-
actionAreaWrapper:
|
|
437
|
-
editIconWrapper:
|
|
438
|
-
},
|
|
423
|
+
Ve.displayName = "CardContent";
|
|
424
|
+
const Ge = Q(Ee), Ne = Ge;
|
|
425
|
+
Ne.Section = Be;
|
|
426
|
+
Ne.Header = je;
|
|
427
|
+
Ne.Footer = De;
|
|
428
|
+
Ne.Content = Ve;
|
|
429
|
+
const Ur = Ge, it = "Label-module__root___e6HXZ", dt = "Label-module__labelText___rieFR", pt = "Label-module__required___Ggrzc", mt = "Label-module__optionalText___Y2yun", ut = "Label-module__actionAreaWrapper___ELoZK", _t = "Label-module__editIconWrapper___NG2xW", D = {
|
|
430
|
+
root: it,
|
|
431
|
+
labelText: dt,
|
|
432
|
+
required: pt,
|
|
433
|
+
optionalText: mt,
|
|
434
|
+
actionAreaWrapper: ut,
|
|
435
|
+
editIconWrapper: _t
|
|
436
|
+
}, qe = $(function({
|
|
439
437
|
labelSize: o = "default",
|
|
440
438
|
labelAlignment: n,
|
|
441
439
|
required: s = !1,
|
|
@@ -446,23 +444,23 @@ const st = "Label-module__root___e6HXZ", nt = "Label-module__labelText___rieFR",
|
|
|
446
444
|
children: d,
|
|
447
445
|
overStyled: i = !1,
|
|
448
446
|
...p
|
|
449
|
-
},
|
|
447
|
+
}, m) {
|
|
450
448
|
const y = n || "left";
|
|
451
|
-
let
|
|
452
|
-
s || (t === !0 ?
|
|
453
|
-
const _ = v(p, i),
|
|
449
|
+
let u;
|
|
450
|
+
s || (t === !0 ? u = "optional" : t && (u = t));
|
|
451
|
+
const _ = v(p, i), f = _, C = {
|
|
454
452
|
label: D.root,
|
|
455
453
|
required: D.required
|
|
456
|
-
},
|
|
457
|
-
if (
|
|
458
|
-
const P =
|
|
454
|
+
}, h = f.classNames;
|
|
455
|
+
if (h && typeof h == "object" && !Array.isArray(h)) {
|
|
456
|
+
const P = h;
|
|
459
457
|
C.label = P.label ? `${D.root} ${P.label}` : D.root, C.required = P.required ? `${D.required} ${P.required}` : D.required;
|
|
460
458
|
}
|
|
461
|
-
const g =
|
|
459
|
+
const g = f.className, b = g ? `${D.root} ${g}` : D.root;
|
|
462
460
|
return /* @__PURE__ */ E(
|
|
463
|
-
|
|
461
|
+
Se.Label,
|
|
464
462
|
{
|
|
465
|
-
ref:
|
|
463
|
+
ref: m,
|
|
466
464
|
className: b,
|
|
467
465
|
classNames: C,
|
|
468
466
|
"data-size": o,
|
|
@@ -471,7 +469,7 @@ const st = "Label-module__root___e6HXZ", nt = "Label-module__labelText___rieFR",
|
|
|
471
469
|
..._,
|
|
472
470
|
children: [
|
|
473
471
|
/* @__PURE__ */ e("span", { className: D.labelText, children: d }),
|
|
474
|
-
|
|
472
|
+
u && /* @__PURE__ */ e("span", { className: D.optionalText, children: typeof u == "string" ? `(${u})` : u }),
|
|
475
473
|
c ? /* @__PURE__ */ e("span", { className: D.actionAreaWrapper, children: c }) : a ? /* @__PURE__ */ e(
|
|
476
474
|
"button",
|
|
477
475
|
{
|
|
@@ -505,11 +503,11 @@ const st = "Label-module__root___e6HXZ", nt = "Label-module__labelText___rieFR",
|
|
|
505
503
|
}
|
|
506
504
|
);
|
|
507
505
|
});
|
|
508
|
-
|
|
509
|
-
const
|
|
510
|
-
root:
|
|
511
|
-
leftSection:
|
|
512
|
-
rightSection:
|
|
506
|
+
qe.displayName = "Label";
|
|
507
|
+
const bt = "FormControlLayout-module__root___yNDhZ", yt = "FormControlLayout-module__leftSection___GBM1r", ht = "FormControlLayout-module__rightSection___bcL4v", me = {
|
|
508
|
+
root: bt,
|
|
509
|
+
leftSection: yt,
|
|
510
|
+
rightSection: ht
|
|
513
511
|
}, X = $(function({
|
|
514
512
|
formLayout: o = "stacked",
|
|
515
513
|
labelSize: n = "default",
|
|
@@ -521,12 +519,12 @@ const pt = "FormControlLayout-module__root___yNDhZ", mt = "FormControlLayout-mod
|
|
|
521
519
|
style: d,
|
|
522
520
|
...i
|
|
523
521
|
}, p) {
|
|
524
|
-
const
|
|
522
|
+
const m = l ? `${me.root} ${l}` : me.root, u = a != null || o === "side-by-side";
|
|
525
523
|
return /* @__PURE__ */ E(
|
|
526
524
|
"div",
|
|
527
525
|
{
|
|
528
526
|
ref: p,
|
|
529
|
-
className:
|
|
527
|
+
className: m,
|
|
530
528
|
"data-form-layout": o,
|
|
531
529
|
style: {
|
|
532
530
|
...d,
|
|
@@ -535,18 +533,18 @@ const pt = "FormControlLayout-module__root___yNDhZ", mt = "FormControlLayout-mod
|
|
|
535
533
|
},
|
|
536
534
|
...i,
|
|
537
535
|
children: [
|
|
538
|
-
|
|
539
|
-
/* @__PURE__ */ e("div", { className:
|
|
536
|
+
u && /* @__PURE__ */ e("div", { className: me.leftSection, "data-size": n, children: a }),
|
|
537
|
+
/* @__PURE__ */ e("div", { className: me.rightSection, children: c })
|
|
540
538
|
]
|
|
541
539
|
}
|
|
542
540
|
);
|
|
543
541
|
});
|
|
544
542
|
X.displayName = "FormControlLayout";
|
|
545
|
-
const
|
|
546
|
-
root:
|
|
547
|
-
textWrapper:
|
|
548
|
-
iconWrapper:
|
|
549
|
-
},
|
|
543
|
+
const ft = "AssistiveElement-module__root___WhQ43", Nt = "AssistiveElement-module__textWrapper___sfy5E", $t = "AssistiveElement-module__iconWrapper___gObRF", ve = {
|
|
544
|
+
root: ft,
|
|
545
|
+
textWrapper: Nt,
|
|
546
|
+
iconWrapper: $t
|
|
547
|
+
}, vt = () => /* @__PURE__ */ E(
|
|
550
548
|
"svg",
|
|
551
549
|
{
|
|
552
550
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -562,7 +560,7 @@ const _t = "AssistiveElement-module__root___WhQ43", bt = "AssistiveElement-modul
|
|
|
562
560
|
/* @__PURE__ */ e("path", { d: "M12 8h.01" })
|
|
563
561
|
]
|
|
564
562
|
}
|
|
565
|
-
),
|
|
563
|
+
), Ct = () => /* @__PURE__ */ E(
|
|
566
564
|
"svg",
|
|
567
565
|
{
|
|
568
566
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -578,7 +576,7 @@ const _t = "AssistiveElement-module__root___WhQ43", bt = "AssistiveElement-modul
|
|
|
578
576
|
/* @__PURE__ */ e("path", { d: "M12 17h.01" })
|
|
579
577
|
]
|
|
580
578
|
}
|
|
581
|
-
),
|
|
579
|
+
), Ce = $(function({
|
|
582
580
|
assistiveVariant: o = "help",
|
|
583
581
|
assistiveWithIcon: n = !0,
|
|
584
582
|
children: s,
|
|
@@ -586,26 +584,26 @@ const _t = "AssistiveElement-module__root___WhQ43", bt = "AssistiveElement-modul
|
|
|
586
584
|
overStyled: a = !1,
|
|
587
585
|
...c
|
|
588
586
|
}, l) {
|
|
589
|
-
const i = v(c, a), p =
|
|
587
|
+
const i = v(c, a), p = ve.root, m = t ? `${p} ${t}` : p, y = o === "error" ? Ct : vt;
|
|
590
588
|
return /* @__PURE__ */ E(
|
|
591
589
|
"div",
|
|
592
590
|
{
|
|
593
591
|
ref: l,
|
|
594
|
-
className:
|
|
592
|
+
className: m,
|
|
595
593
|
"data-variant": o,
|
|
596
594
|
style: i.style,
|
|
597
595
|
...i,
|
|
598
596
|
children: [
|
|
599
|
-
n && /* @__PURE__ */ e("span", { className:
|
|
600
|
-
/* @__PURE__ */ e("span", { className:
|
|
597
|
+
n && /* @__PURE__ */ e("span", { className: ve.iconWrapper, children: /* @__PURE__ */ e(y, {}) }),
|
|
598
|
+
/* @__PURE__ */ e("span", { className: ve.textWrapper, children: s })
|
|
601
599
|
]
|
|
602
600
|
}
|
|
603
601
|
);
|
|
604
602
|
});
|
|
605
|
-
|
|
606
|
-
const
|
|
607
|
-
inputSection:
|
|
608
|
-
},
|
|
603
|
+
Ce.displayName = "AssistiveElement";
|
|
604
|
+
const gt = "FormControlWrapper-module__inputSection___HenXk", Ae = {
|
|
605
|
+
inputSection: gt
|
|
606
|
+
}, _e = $(function({
|
|
609
607
|
formLayout: o,
|
|
610
608
|
labelSize: n,
|
|
611
609
|
labelAlignment: s,
|
|
@@ -616,13 +614,13 @@ const Nt = "FormControlWrapper-module__inputSection___HenXk", We = {
|
|
|
616
614
|
label: d,
|
|
617
615
|
description: i,
|
|
618
616
|
assistiveText: p,
|
|
619
|
-
assistiveWithIcon:
|
|
617
|
+
assistiveWithIcon: m = !0,
|
|
620
618
|
controlMaxWidth: y,
|
|
621
|
-
controlMinWidth:
|
|
619
|
+
controlMinWidth: u,
|
|
622
620
|
error: _,
|
|
623
|
-
required:
|
|
621
|
+
required: f,
|
|
624
622
|
withAsterisk: C,
|
|
625
|
-
id:
|
|
623
|
+
id: h,
|
|
626
624
|
children: g,
|
|
627
625
|
className: b,
|
|
628
626
|
overStyled: P = !1,
|
|
@@ -630,14 +628,14 @@ const Nt = "FormControlWrapper-module__inputSection___HenXk", We = {
|
|
|
630
628
|
// Extracted safely preventing bleeding into HTML domains
|
|
631
629
|
...z
|
|
632
630
|
}, L) {
|
|
633
|
-
const
|
|
631
|
+
const k = _o(), R = h || `recursica-fc-${k}`, O = p || i, S = O ? `${R}-assistive` : void 0, T = _ ? `${R}-error` : void 0, I = v(z, P), J = b || I.className, pe = Ae.root, j = J ? `${pe} ${J}` : pe, mo = B.isValidElement(g) ? B.cloneElement(
|
|
634
632
|
g,
|
|
635
633
|
{
|
|
636
634
|
...O && !g.props["aria-describedby"] ? { "aria-describedby": S } : {},
|
|
637
635
|
..._ && !g.props["aria-errormessage"] ? { "aria-errormessage": T } : {}
|
|
638
636
|
}
|
|
639
|
-
) : g,
|
|
640
|
-
|
|
637
|
+
) : g, uo = d ? /* @__PURE__ */ e(
|
|
638
|
+
qe,
|
|
641
639
|
{
|
|
642
640
|
id: R,
|
|
643
641
|
labelAlignment: s,
|
|
@@ -645,7 +643,7 @@ const Nt = "FormControlWrapper-module__inputSection___HenXk", We = {
|
|
|
645
643
|
labelWithEditIcon: a,
|
|
646
644
|
labelActionArea: c,
|
|
647
645
|
onLabelEditClick: l,
|
|
648
|
-
required: C ??
|
|
646
|
+
required: C ?? f,
|
|
649
647
|
...N === "div" ? { as: "div" } : {},
|
|
650
648
|
children: d
|
|
651
649
|
}
|
|
@@ -658,26 +656,26 @@ const Nt = "FormControlWrapper-module__inputSection___HenXk", We = {
|
|
|
658
656
|
formLayout: o,
|
|
659
657
|
labelSize: n,
|
|
660
658
|
controlMaxWidth: y,
|
|
661
|
-
controlMinWidth:
|
|
662
|
-
leftSection:
|
|
659
|
+
controlMinWidth: u,
|
|
660
|
+
leftSection: uo,
|
|
663
661
|
...I,
|
|
664
|
-
children: /* @__PURE__ */ E("div", { className:
|
|
665
|
-
|
|
662
|
+
children: /* @__PURE__ */ E("div", { className: Ae.inputSection, children: [
|
|
663
|
+
mo,
|
|
666
664
|
_ && /* @__PURE__ */ e(
|
|
667
|
-
|
|
665
|
+
Ce,
|
|
668
666
|
{
|
|
669
667
|
id: T,
|
|
670
668
|
assistiveVariant: "error",
|
|
671
|
-
assistiveWithIcon:
|
|
669
|
+
assistiveWithIcon: m,
|
|
672
670
|
children: _
|
|
673
671
|
}
|
|
674
672
|
),
|
|
675
673
|
!_ && O && /* @__PURE__ */ e(
|
|
676
|
-
|
|
674
|
+
Ce,
|
|
677
675
|
{
|
|
678
676
|
id: S,
|
|
679
677
|
assistiveVariant: "help",
|
|
680
|
-
assistiveWithIcon:
|
|
678
|
+
assistiveWithIcon: m,
|
|
681
679
|
children: O
|
|
682
680
|
}
|
|
683
681
|
)
|
|
@@ -685,12 +683,12 @@ const Nt = "FormControlWrapper-module__inputSection___HenXk", We = {
|
|
|
685
683
|
}
|
|
686
684
|
);
|
|
687
685
|
});
|
|
688
|
-
|
|
689
|
-
const
|
|
690
|
-
root:
|
|
691
|
-
contents:
|
|
692
|
-
},
|
|
693
|
-
const l = o ? s ? `${
|
|
686
|
+
_e.displayName = "FormControlWrapper";
|
|
687
|
+
const xt = "_root_1qhn7_3", wt = "_contents_1qhn7_18", te = {
|
|
688
|
+
root: xt,
|
|
689
|
+
contents: wt
|
|
690
|
+
}, Pt = $(function({ layer: r, contentsOnly: o, children: n, className: s, style: t, ...a }, c) {
|
|
691
|
+
const l = o ? s ? `${te.root} ${te.contents} ${s}` : `${te.root} ${te.contents}` : s ? `${te.root} ${s}` : te.root;
|
|
694
692
|
return /* @__PURE__ */ e(
|
|
695
693
|
"div",
|
|
696
694
|
{
|
|
@@ -703,60 +701,60 @@ const $t = "_root_1qhn7_3", vt = "_contents_1qhn7_18", oe = {
|
|
|
703
701
|
}
|
|
704
702
|
);
|
|
705
703
|
});
|
|
706
|
-
|
|
707
|
-
const
|
|
708
|
-
|
|
709
|
-
|
|
704
|
+
Pt.displayName = "Layer";
|
|
705
|
+
const be = ({ emptyText: r = "N/A" }) => /* @__PURE__ */ e(B.Fragment, { children: r });
|
|
706
|
+
be.displayName = "EmptyValueRenderer";
|
|
707
|
+
be.check = (r) => r == null || r === "" || Array.isArray(r) && r.length === 0;
|
|
710
708
|
const ke = "data-recursica-theme";
|
|
711
|
-
function
|
|
709
|
+
function Xr({
|
|
712
710
|
children: r,
|
|
713
711
|
theme: o = "light"
|
|
714
712
|
}) {
|
|
715
|
-
return
|
|
713
|
+
return bo(() => {
|
|
716
714
|
const n = document.documentElement;
|
|
717
715
|
return n.setAttribute(ke, o), () => {
|
|
718
716
|
n.removeAttribute(ke);
|
|
719
717
|
};
|
|
720
|
-
}, [o]), /* @__PURE__ */ e(
|
|
718
|
+
}, [o]), /* @__PURE__ */ e(de, { children: r });
|
|
721
719
|
}
|
|
722
|
-
const
|
|
723
|
-
textField:
|
|
724
|
-
},
|
|
720
|
+
const Wt = "ReadOnlyField-module__textField___qKn25", ye = {
|
|
721
|
+
textField: Wt
|
|
722
|
+
}, ue = ({
|
|
725
723
|
value: r,
|
|
726
724
|
overStyled: o = !1,
|
|
727
725
|
...n
|
|
728
726
|
}) => {
|
|
729
727
|
const s = v(n, o), t = s.className;
|
|
730
728
|
return /* @__PURE__ */ e(
|
|
731
|
-
|
|
729
|
+
ge,
|
|
732
730
|
{
|
|
733
731
|
component: "p",
|
|
734
|
-
className: t ? `${
|
|
732
|
+
className: t ? `${ye.textField} ${t}` : ye.textField,
|
|
735
733
|
...s,
|
|
736
734
|
children: r != null ? B.isValidElement(r) ? r : Array.isArray(r) ? r.join(", ") : String(r) : ""
|
|
737
735
|
}
|
|
738
736
|
);
|
|
739
737
|
};
|
|
740
|
-
|
|
741
|
-
const
|
|
738
|
+
ue.displayName = "ReadOnlyTextField";
|
|
739
|
+
const Ye = $(
|
|
742
740
|
function({ value: o, type: n = "text", emptyValueComponent: s, overStyled: t = !1, ...a }, c) {
|
|
743
741
|
let l = null;
|
|
744
|
-
const d = v(a, t), i = s ||
|
|
742
|
+
const d = v(a, t), i = s || be, m = (i.check ? i.check(o) : be.check(o)) ? /* @__PURE__ */ e(i, { value: o }) : o;
|
|
745
743
|
switch (n) {
|
|
746
744
|
case "boolean":
|
|
747
745
|
l = /* @__PURE__ */ e(
|
|
748
|
-
|
|
746
|
+
ue,
|
|
749
747
|
{
|
|
750
|
-
value: o === !0 ? "True" : o === !1 ? "False" :
|
|
748
|
+
value: o === !0 ? "True" : o === !1 ? "False" : m,
|
|
751
749
|
overStyled: t
|
|
752
750
|
}
|
|
753
751
|
);
|
|
754
752
|
break;
|
|
755
753
|
case "switch":
|
|
756
754
|
l = /* @__PURE__ */ e(
|
|
757
|
-
|
|
755
|
+
ue,
|
|
758
756
|
{
|
|
759
|
-
value: o === !0 ? "On" : o === !1 ? "Off" :
|
|
757
|
+
value: o === !0 ? "On" : o === !1 ? "Off" : m,
|
|
760
758
|
overStyled: t
|
|
761
759
|
}
|
|
762
760
|
);
|
|
@@ -764,16 +762,16 @@ const je = $(
|
|
|
764
762
|
case "text":
|
|
765
763
|
default:
|
|
766
764
|
l = /* @__PURE__ */ e(
|
|
767
|
-
|
|
765
|
+
ue,
|
|
768
766
|
{
|
|
769
|
-
value:
|
|
767
|
+
value: m,
|
|
770
768
|
overStyled: t
|
|
771
769
|
}
|
|
772
770
|
);
|
|
773
771
|
break;
|
|
774
772
|
}
|
|
775
773
|
return /* @__PURE__ */ e(
|
|
776
|
-
|
|
774
|
+
_e,
|
|
777
775
|
{
|
|
778
776
|
ref: c,
|
|
779
777
|
overStyled: t,
|
|
@@ -783,8 +781,8 @@ const je = $(
|
|
|
783
781
|
);
|
|
784
782
|
}
|
|
785
783
|
);
|
|
786
|
-
|
|
787
|
-
const
|
|
784
|
+
Ye.displayName = "ReadOnlyField";
|
|
785
|
+
const oe = $(function({
|
|
788
786
|
readOnly: o,
|
|
789
787
|
readOnlyComponent: n,
|
|
790
788
|
readOnlyType: s = "text",
|
|
@@ -795,20 +793,20 @@ const ee = $(function({
|
|
|
795
793
|
overStyled: d,
|
|
796
794
|
onLabelEditClick: i,
|
|
797
795
|
...p
|
|
798
|
-
},
|
|
796
|
+
}, m) {
|
|
799
797
|
return o ? n ? /* @__PURE__ */ e(
|
|
800
|
-
|
|
798
|
+
_e,
|
|
801
799
|
{
|
|
802
|
-
ref:
|
|
800
|
+
ref: m,
|
|
803
801
|
...p,
|
|
804
802
|
onLabelEditClick: i,
|
|
805
803
|
overStyled: d,
|
|
806
804
|
children: /* @__PURE__ */ e(n, { ...a })
|
|
807
805
|
}
|
|
808
806
|
) : /* @__PURE__ */ e(
|
|
809
|
-
|
|
807
|
+
Ye,
|
|
810
808
|
{
|
|
811
|
-
ref:
|
|
809
|
+
ref: m,
|
|
812
810
|
type: s,
|
|
813
811
|
value: t,
|
|
814
812
|
emptyValueComponent: c,
|
|
@@ -817,9 +815,9 @@ const ee = $(function({
|
|
|
817
815
|
...p
|
|
818
816
|
}
|
|
819
817
|
) : /* @__PURE__ */ e(
|
|
820
|
-
|
|
818
|
+
_e,
|
|
821
819
|
{
|
|
822
|
-
ref:
|
|
820
|
+
ref: m,
|
|
823
821
|
...p,
|
|
824
822
|
onLabelEditClick: i,
|
|
825
823
|
overStyled: d,
|
|
@@ -827,17 +825,17 @@ const ee = $(function({
|
|
|
827
825
|
}
|
|
828
826
|
);
|
|
829
827
|
});
|
|
830
|
-
|
|
831
|
-
const
|
|
832
|
-
groupRoot:
|
|
833
|
-
root:
|
|
834
|
-
body:
|
|
835
|
-
inner:
|
|
836
|
-
input:
|
|
837
|
-
icon:
|
|
838
|
-
labelWrapper:
|
|
839
|
-
label:
|
|
840
|
-
},
|
|
828
|
+
oe.displayName = "WithReadOnlyWrapper";
|
|
829
|
+
const At = "Checkbox-module__groupRoot___cBS0o", kt = "Checkbox-module__root___mY3qk", St = "Checkbox-module__body___5yC7q", Tt = "Checkbox-module__inner___rTke4", It = "Checkbox-module__input___2kt-h", Lt = "Checkbox-module__icon___-O7i6", Rt = "Checkbox-module__labelWrapper___GpZkr", Ot = "Checkbox-module__label___cwRtI", W = {
|
|
830
|
+
groupRoot: At,
|
|
831
|
+
root: kt,
|
|
832
|
+
body: St,
|
|
833
|
+
inner: Tt,
|
|
834
|
+
input: It,
|
|
835
|
+
icon: Lt,
|
|
836
|
+
labelWrapper: Rt,
|
|
837
|
+
label: Ot
|
|
838
|
+
}, Ze = $(
|
|
841
839
|
function(o, n) {
|
|
842
840
|
const {
|
|
843
841
|
overStyled: s = !1,
|
|
@@ -850,25 +848,25 @@ const xt = "Checkbox-module__groupRoot___cBS0o", wt = "Checkbox-module__root___m
|
|
|
850
848
|
onLabelEditClick: i,
|
|
851
849
|
// Base Mantine Extracted Attributes
|
|
852
850
|
label: p,
|
|
853
|
-
description:
|
|
851
|
+
description: m,
|
|
854
852
|
assistiveText: y,
|
|
855
|
-
assistiveWithIcon:
|
|
853
|
+
assistiveWithIcon: u,
|
|
856
854
|
error: _,
|
|
857
|
-
required:
|
|
855
|
+
required: f,
|
|
858
856
|
withAsterisk: C,
|
|
859
|
-
id:
|
|
857
|
+
id: h,
|
|
860
858
|
className: g,
|
|
861
859
|
style: b,
|
|
862
860
|
children: P,
|
|
863
861
|
readOnly: N,
|
|
864
862
|
readOnlyComponent: z,
|
|
865
863
|
emptyValueComponent: L,
|
|
866
|
-
value:
|
|
864
|
+
value: k,
|
|
867
865
|
defaultValue: R,
|
|
868
866
|
...O
|
|
869
867
|
} = o, S = v(O, s), T = S;
|
|
870
868
|
return delete T.size, /* @__PURE__ */ e(
|
|
871
|
-
|
|
869
|
+
oe,
|
|
872
870
|
{
|
|
873
871
|
className: g,
|
|
874
872
|
style: b,
|
|
@@ -883,26 +881,26 @@ const xt = "Checkbox-module__groupRoot___cBS0o", wt = "Checkbox-module__root___m
|
|
|
883
881
|
labelWithEditIcon: d,
|
|
884
882
|
onLabelEditClick: i,
|
|
885
883
|
label: p,
|
|
886
|
-
description:
|
|
884
|
+
description: m,
|
|
887
885
|
assistiveText: y,
|
|
888
|
-
assistiveWithIcon:
|
|
886
|
+
assistiveWithIcon: u,
|
|
889
887
|
error: _,
|
|
890
|
-
required:
|
|
888
|
+
required: f,
|
|
891
889
|
withAsterisk: C,
|
|
892
|
-
id:
|
|
890
|
+
id: h,
|
|
893
891
|
readOnly: N && !!z,
|
|
894
892
|
readOnlyComponent: z,
|
|
895
893
|
emptyValueComponent: L,
|
|
896
894
|
readOnlyType: "text",
|
|
897
|
-
readOnlyValue:
|
|
895
|
+
readOnlyValue: k !== void 0 ? k : R,
|
|
898
896
|
readOnlyNativeProps: o,
|
|
899
897
|
activeComponent: /* @__PURE__ */ e(
|
|
900
|
-
|
|
898
|
+
Te.Group,
|
|
901
899
|
{
|
|
902
900
|
ref: n,
|
|
903
901
|
...S,
|
|
904
902
|
disabled: N || T.disabled,
|
|
905
|
-
value:
|
|
903
|
+
value: k,
|
|
906
904
|
defaultValue: R,
|
|
907
905
|
children: /* @__PURE__ */ e("div", { className: W.groupRoot, "data-layout": t, children: B.Children.map(P, (x) => B.isValidElement(x) ? B.cloneElement(x, {
|
|
908
906
|
disabled: N || x.props.disabled
|
|
@@ -913,8 +911,8 @@ const xt = "Checkbox-module__groupRoot___cBS0o", wt = "Checkbox-module__root___m
|
|
|
913
911
|
);
|
|
914
912
|
}
|
|
915
913
|
);
|
|
916
|
-
|
|
917
|
-
const
|
|
914
|
+
Ze.displayName = "CheckboxGroup";
|
|
915
|
+
const He = $(
|
|
918
916
|
function(o, n) {
|
|
919
917
|
const {
|
|
920
918
|
overStyled: s = !1,
|
|
@@ -925,9 +923,9 @@ const Ve = $(
|
|
|
925
923
|
labelSize: d,
|
|
926
924
|
controlMaxWidth: i,
|
|
927
925
|
controlMinWidth: p,
|
|
928
|
-
...
|
|
929
|
-
} = o, y = v(
|
|
930
|
-
delete
|
|
926
|
+
...m
|
|
927
|
+
} = o, y = v(m, s), u = y;
|
|
928
|
+
delete u.size, delete u.color, delete u.radius, delete u.variant, delete u.iconColor;
|
|
931
929
|
const _ = {
|
|
932
930
|
root: W.root,
|
|
933
931
|
body: W.body,
|
|
@@ -936,19 +934,19 @@ const Ve = $(
|
|
|
936
934
|
icon: W.icon,
|
|
937
935
|
labelWrapper: W.labelWrapper,
|
|
938
936
|
label: W.label
|
|
939
|
-
},
|
|
940
|
-
if (
|
|
941
|
-
const b =
|
|
937
|
+
}, f = u.classNames;
|
|
938
|
+
if (f && typeof f == "object" && !Array.isArray(f)) {
|
|
939
|
+
const b = f;
|
|
942
940
|
_.root = b.root ? `${W.root} ${b.root}` : W.root, _.body = b.body ? `${W.body} ${b.body}` : W.body, _.inner = b.inner ? `${W.inner} ${b.inner}` : W.inner, _.input = b.input ? `${W.input} ${b.input}` : W.input, _.icon = b.icon ? `${W.icon} ${b.icon}` : W.icon, _.labelWrapper = b.labelWrapper ? `${W.labelWrapper} ${b.labelWrapper}` : W.labelWrapper, _.label = b.label ? `${W.label} ${b.label}` : W.label;
|
|
943
941
|
}
|
|
944
|
-
const C =
|
|
942
|
+
const C = u.className, h = C ? `${W.root} ${C}` : W.root;
|
|
945
943
|
if (t && a) {
|
|
946
|
-
const b = !!(
|
|
944
|
+
const b = !!(u.checked ?? u.defaultChecked), N = /* @__PURE__ */ e(
|
|
947
945
|
a,
|
|
948
946
|
{
|
|
949
947
|
...o,
|
|
950
948
|
checked: b,
|
|
951
|
-
label:
|
|
949
|
+
label: u.label
|
|
952
950
|
}
|
|
953
951
|
);
|
|
954
952
|
return l ? /* @__PURE__ */ e(
|
|
@@ -960,13 +958,13 @@ const Ve = $(
|
|
|
960
958
|
controlMinWidth: p,
|
|
961
959
|
children: N
|
|
962
960
|
}
|
|
963
|
-
) : /* @__PURE__ */ e(
|
|
961
|
+
) : /* @__PURE__ */ e(de, { children: N });
|
|
964
962
|
}
|
|
965
963
|
const g = /* @__PURE__ */ e(
|
|
966
|
-
|
|
964
|
+
Te,
|
|
967
965
|
{
|
|
968
966
|
ref: n,
|
|
969
|
-
className:
|
|
967
|
+
className: h,
|
|
970
968
|
classNames: _,
|
|
971
969
|
disabled: t || c,
|
|
972
970
|
...y
|
|
@@ -984,18 +982,18 @@ const Ve = $(
|
|
|
984
982
|
) : g;
|
|
985
983
|
}
|
|
986
984
|
);
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
const
|
|
990
|
-
root:
|
|
991
|
-
label:
|
|
992
|
-
mantineIconWrapper:
|
|
993
|
-
innerWrapper:
|
|
994
|
-
children:
|
|
995
|
-
leadingIcon:
|
|
996
|
-
removeIcon:
|
|
985
|
+
He.displayName = "Checkbox";
|
|
986
|
+
He.Group = Ze;
|
|
987
|
+
const zt = "Chip-module__root___f5pFk", Mt = "Chip-module__label___Ov9pg", Ft = "Chip-module__mantineIconWrapper___KLSz6", Et = "Chip-module__innerWrapper___EnrTF", Bt = "Chip-module__children___zbRAR", jt = "Chip-module__leadingIcon___JBtjQ", Dt = "Chip-module__removeIcon___pVju-", M = {
|
|
988
|
+
root: zt,
|
|
989
|
+
label: Mt,
|
|
990
|
+
mantineIconWrapper: Ft,
|
|
991
|
+
innerWrapper: Et,
|
|
992
|
+
children: Bt,
|
|
993
|
+
leadingIcon: jt,
|
|
994
|
+
removeIcon: Dt
|
|
997
995
|
};
|
|
998
|
-
function
|
|
996
|
+
function Vt(r) {
|
|
999
997
|
return /* @__PURE__ */ E(
|
|
1000
998
|
"svg",
|
|
1001
999
|
{
|
|
@@ -1016,7 +1014,7 @@ function Et(r) {
|
|
|
1016
1014
|
}
|
|
1017
1015
|
);
|
|
1018
1016
|
}
|
|
1019
|
-
const
|
|
1017
|
+
const Gt = $(function({
|
|
1020
1018
|
error: o = !1,
|
|
1021
1019
|
icon: n,
|
|
1022
1020
|
onRemove: s,
|
|
@@ -1025,7 +1023,7 @@ const Bt = $(function({
|
|
|
1025
1023
|
overStyled: c = !1,
|
|
1026
1024
|
...l
|
|
1027
1025
|
}, d) {
|
|
1028
|
-
const i = v(l, c), p = i,
|
|
1026
|
+
const i = v(l, c), p = i, m = {
|
|
1029
1027
|
root: M.root,
|
|
1030
1028
|
label: M.label,
|
|
1031
1029
|
input: M.input,
|
|
@@ -1033,16 +1031,16 @@ const Bt = $(function({
|
|
|
1033
1031
|
checkIcon: M.checkIcon
|
|
1034
1032
|
}, y = p.classNames;
|
|
1035
1033
|
if (y && typeof y == "object" && !Array.isArray(y)) {
|
|
1036
|
-
const
|
|
1037
|
-
|
|
1034
|
+
const h = y;
|
|
1035
|
+
m.root = h.root ? `${M.root} ${h.root}` : M.root, m.label = h.label ? `${M.label} ${h.label}` : M.label;
|
|
1038
1036
|
}
|
|
1039
|
-
const
|
|
1037
|
+
const u = p.className, _ = u ? `${M.root} ${u}` : M.root;
|
|
1040
1038
|
return /* @__PURE__ */ e(
|
|
1041
|
-
|
|
1039
|
+
$o,
|
|
1042
1040
|
{
|
|
1043
1041
|
ref: d,
|
|
1044
1042
|
className: _,
|
|
1045
|
-
classNames:
|
|
1043
|
+
classNames: m,
|
|
1046
1044
|
...(o ? "" : void 0) !== void 0 ? { "data-error": "" } : {},
|
|
1047
1045
|
...!a && (!!n || !!s) ? { "data-icon-only": "" } : {},
|
|
1048
1046
|
...i,
|
|
@@ -1054,27 +1052,27 @@ const Bt = $(function({
|
|
|
1054
1052
|
{
|
|
1055
1053
|
role: "button",
|
|
1056
1054
|
className: M.removeIcon,
|
|
1057
|
-
onClick: (
|
|
1058
|
-
|
|
1055
|
+
onClick: (h) => {
|
|
1056
|
+
h.preventDefault(), h.stopPropagation(), s(h);
|
|
1059
1057
|
},
|
|
1060
1058
|
"aria-label": t,
|
|
1061
|
-
onKeyDown: (
|
|
1062
|
-
(
|
|
1063
|
-
|
|
1059
|
+
onKeyDown: (h) => {
|
|
1060
|
+
(h.key === "Enter" || h.key === " ") && (h.preventDefault(), h.stopPropagation(), s(
|
|
1061
|
+
h
|
|
1064
1062
|
));
|
|
1065
1063
|
},
|
|
1066
1064
|
tabIndex: 0,
|
|
1067
|
-
children: /* @__PURE__ */ e(
|
|
1065
|
+
children: /* @__PURE__ */ e(Vt, {})
|
|
1068
1066
|
}
|
|
1069
1067
|
)
|
|
1070
1068
|
] })
|
|
1071
1069
|
}
|
|
1072
1070
|
);
|
|
1073
1071
|
});
|
|
1074
|
-
|
|
1075
|
-
const
|
|
1076
|
-
root:
|
|
1077
|
-
},
|
|
1072
|
+
Gt.displayName = "Chip";
|
|
1073
|
+
const qt = "Container-module__root___UVssr", se = {
|
|
1074
|
+
root: qt
|
|
1075
|
+
}, Yt = $(
|
|
1078
1076
|
function({ children: o, size: n, overStyled: s = !1, ...t }, a) {
|
|
1079
1077
|
const c = v(t, s), l = c, d = {
|
|
1080
1078
|
"rec-sm": "sm",
|
|
@@ -1084,19 +1082,19 @@ const jt = "Container-module__root___UVssr", ae = {
|
|
|
1084
1082
|
"rec-xl": "xl",
|
|
1085
1083
|
"rec-2xl": "xl"
|
|
1086
1084
|
}, i = typeof n == "string" && d[n] ? d[n] : n, p = {
|
|
1087
|
-
root:
|
|
1088
|
-
},
|
|
1089
|
-
if (
|
|
1090
|
-
const _ =
|
|
1091
|
-
p.root = _.root ? `${
|
|
1085
|
+
root: se.root
|
|
1086
|
+
}, m = l.classNames;
|
|
1087
|
+
if (m && typeof m == "object" && !Array.isArray(m)) {
|
|
1088
|
+
const _ = m;
|
|
1089
|
+
p.root = _.root ? `${se.root} ${_.root}` : se.root;
|
|
1092
1090
|
}
|
|
1093
|
-
const y = l.className,
|
|
1091
|
+
const y = l.className, u = y ? `${se.root} ${y}` : se.root;
|
|
1094
1092
|
return /* @__PURE__ */ e(
|
|
1095
|
-
|
|
1093
|
+
vo,
|
|
1096
1094
|
{
|
|
1097
1095
|
ref: a,
|
|
1098
1096
|
size: i,
|
|
1099
|
-
className:
|
|
1097
|
+
className: u,
|
|
1100
1098
|
classNames: p,
|
|
1101
1099
|
...c,
|
|
1102
1100
|
children: o
|
|
@@ -1104,14 +1102,14 @@ const jt = "Container-module__root___UVssr", ae = {
|
|
|
1104
1102
|
);
|
|
1105
1103
|
}
|
|
1106
1104
|
);
|
|
1107
|
-
|
|
1108
|
-
const
|
|
1109
|
-
root:
|
|
1110
|
-
input:
|
|
1111
|
-
section:
|
|
1112
|
-
dropdown:
|
|
1113
|
-
option:
|
|
1114
|
-
},
|
|
1105
|
+
Yt.displayName = "Container";
|
|
1106
|
+
const Qr = (r) => /* @__PURE__ */ e("div", { ...r, children: "DatePicker" }), Zt = "Dropdown-module__root___uVyL0", Ht = "Dropdown-module__input___dK4dN", Kt = "Dropdown-module__section___j3MRB", Ut = "Dropdown-module__dropdown___gG-Sw", Xt = "Dropdown-module__option___nAGU-", F = {
|
|
1107
|
+
root: Zt,
|
|
1108
|
+
input: Ht,
|
|
1109
|
+
section: Kt,
|
|
1110
|
+
dropdown: Ut,
|
|
1111
|
+
option: Xt
|
|
1112
|
+
}, Qt = $(
|
|
1115
1113
|
function(o, n) {
|
|
1116
1114
|
const {
|
|
1117
1115
|
overStyled: s = !1,
|
|
@@ -1123,20 +1121,20 @@ const Gr = (r) => /* @__PURE__ */ e("div", { ...r, children: "DatePicker" }), Vt
|
|
|
1123
1121
|
labelOptionalText: d,
|
|
1124
1122
|
labelWithEditIcon: i,
|
|
1125
1123
|
onLabelEditClick: p,
|
|
1126
|
-
label:
|
|
1124
|
+
label: m,
|
|
1127
1125
|
assistiveText: y,
|
|
1128
|
-
assistiveWithIcon:
|
|
1126
|
+
assistiveWithIcon: u,
|
|
1129
1127
|
error: _,
|
|
1130
|
-
required:
|
|
1128
|
+
required: f,
|
|
1131
1129
|
withAsterisk: C,
|
|
1132
|
-
id:
|
|
1130
|
+
id: h,
|
|
1133
1131
|
className: g,
|
|
1134
1132
|
style: b,
|
|
1135
1133
|
disabled: P,
|
|
1136
1134
|
readOnly: N,
|
|
1137
1135
|
readOnlyComponent: z,
|
|
1138
1136
|
emptyValueComponent: L,
|
|
1139
|
-
value:
|
|
1137
|
+
value: k,
|
|
1140
1138
|
defaultValue: R,
|
|
1141
1139
|
data: O,
|
|
1142
1140
|
...S
|
|
@@ -1149,20 +1147,20 @@ const Gr = (r) => /* @__PURE__ */ e("div", { ...r, children: "DatePicker" }), Vt
|
|
|
1149
1147
|
section: F.section,
|
|
1150
1148
|
dropdown: F.dropdown,
|
|
1151
1149
|
option: F.option
|
|
1152
|
-
},
|
|
1153
|
-
if (
|
|
1154
|
-
const j =
|
|
1150
|
+
}, J = x.classNames;
|
|
1151
|
+
if (J && typeof J == "object" && !Array.isArray(J)) {
|
|
1152
|
+
const j = J;
|
|
1155
1153
|
I.wrapper = j.wrapper ? `${F.root} ${j.wrapper}` : F.root, I.input = j.input ? `${F.input} ${j.input}` : F.input, I.section = j.section ? `${F.section} ${j.section}` : F.section, I.dropdown = j.dropdown ? `${F.dropdown} ${j.dropdown}` : F.dropdown, I.option = j.option ? `${F.option} ${j.option}` : F.option;
|
|
1156
1154
|
}
|
|
1157
|
-
const
|
|
1155
|
+
const pe = {
|
|
1158
1156
|
...b || {},
|
|
1159
1157
|
width: a || "100%"
|
|
1160
1158
|
};
|
|
1161
1159
|
return /* @__PURE__ */ e(
|
|
1162
|
-
|
|
1160
|
+
oe,
|
|
1163
1161
|
{
|
|
1164
1162
|
className: g,
|
|
1165
|
-
style:
|
|
1163
|
+
style: pe,
|
|
1166
1164
|
controlMaxWidth: "var(--recursica_ui-kit_components_dropdown_properties_max-width)",
|
|
1167
1165
|
controlMinWidth: "var(--recursica_ui-kit_components_dropdown_properties_min-width)",
|
|
1168
1166
|
overStyled: s,
|
|
@@ -1172,28 +1170,28 @@ const Gr = (r) => /* @__PURE__ */ e("div", { ...r, children: "DatePicker" }), Vt
|
|
|
1172
1170
|
labelOptionalText: d,
|
|
1173
1171
|
labelWithEditIcon: i,
|
|
1174
1172
|
onLabelEditClick: p,
|
|
1175
|
-
label:
|
|
1173
|
+
label: m,
|
|
1176
1174
|
assistiveText: y,
|
|
1177
|
-
assistiveWithIcon:
|
|
1175
|
+
assistiveWithIcon: u,
|
|
1178
1176
|
error: _,
|
|
1179
|
-
required:
|
|
1177
|
+
required: f,
|
|
1180
1178
|
withAsterisk: C,
|
|
1181
|
-
id:
|
|
1179
|
+
id: h,
|
|
1182
1180
|
readOnly: N,
|
|
1183
1181
|
readOnlyComponent: z,
|
|
1184
1182
|
emptyValueComponent: L,
|
|
1185
1183
|
readOnlyType: "text",
|
|
1186
|
-
readOnlyValue:
|
|
1184
|
+
readOnlyValue: k !== void 0 ? String(k) : R ? String(R) : void 0,
|
|
1187
1185
|
readOnlyNativeProps: o,
|
|
1188
1186
|
activeComponent: (
|
|
1189
1187
|
/* Naked Select execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
1190
1188
|
/* @__PURE__ */ e(
|
|
1191
|
-
|
|
1189
|
+
Co,
|
|
1192
1190
|
{
|
|
1193
1191
|
ref: n,
|
|
1194
1192
|
classNames: I,
|
|
1195
1193
|
disabled: P,
|
|
1196
|
-
value:
|
|
1194
|
+
value: k,
|
|
1197
1195
|
defaultValue: R,
|
|
1198
1196
|
data: O || [],
|
|
1199
1197
|
label: void 0,
|
|
@@ -1213,56 +1211,56 @@ const Gr = (r) => /* @__PURE__ */ e("div", { ...r, children: "DatePicker" }), Vt
|
|
|
1213
1211
|
);
|
|
1214
1212
|
}
|
|
1215
1213
|
);
|
|
1216
|
-
|
|
1217
|
-
const
|
|
1218
|
-
root:
|
|
1219
|
-
},
|
|
1214
|
+
Qt.displayName = "Dropdown";
|
|
1215
|
+
const Jr = (r) => /* @__PURE__ */ e("div", { ...r, children: "FileInput" }), ea = (r) => /* @__PURE__ */ e("div", { ...r, children: "FileUpload" }), Jt = "Flex-module__root___yYser", ne = {
|
|
1216
|
+
root: Jt
|
|
1217
|
+
}, Ke = $(function({ children: o, overStyled: n = !1, gap: s = "rec-default", ...t }, a) {
|
|
1220
1218
|
const c = v({ ...t, gap: s }, n), l = c, d = {
|
|
1221
|
-
root:
|
|
1219
|
+
root: ne.root
|
|
1222
1220
|
}, i = l.classNames;
|
|
1223
1221
|
if (i && typeof i == "object" && !Array.isArray(i)) {
|
|
1224
1222
|
const y = i;
|
|
1225
|
-
d.root = y.root ? `${
|
|
1223
|
+
d.root = y.root ? `${ne.root} ${y.root}` : ne.root;
|
|
1226
1224
|
}
|
|
1227
|
-
const p = l.className,
|
|
1225
|
+
const p = l.className, m = p ? `${ne.root} ${p}` : ne.root;
|
|
1228
1226
|
return /* @__PURE__ */ e(
|
|
1229
|
-
|
|
1227
|
+
go,
|
|
1230
1228
|
{
|
|
1231
1229
|
ref: a,
|
|
1232
|
-
className:
|
|
1230
|
+
className: m,
|
|
1233
1231
|
classNames: d,
|
|
1234
1232
|
...c,
|
|
1235
1233
|
children: o
|
|
1236
1234
|
}
|
|
1237
1235
|
);
|
|
1238
1236
|
});
|
|
1239
|
-
|
|
1240
|
-
const
|
|
1241
|
-
root:
|
|
1242
|
-
},
|
|
1237
|
+
Ke.displayName = "Flex";
|
|
1238
|
+
const oa = Q(Ke), er = "Group-module__root___ftO64", le = {
|
|
1239
|
+
root: er
|
|
1240
|
+
}, or = $(function({ children: o, overStyled: n = !1, gap: s = "rec-default", ...t }, a) {
|
|
1243
1241
|
const c = v({ ...t, gap: s }, n), l = c, d = {
|
|
1244
|
-
root:
|
|
1242
|
+
root: le.root
|
|
1245
1243
|
}, i = l.classNames;
|
|
1246
1244
|
if (i && typeof i == "object" && !Array.isArray(i)) {
|
|
1247
1245
|
const y = i;
|
|
1248
|
-
d.root = y.root ? `${
|
|
1246
|
+
d.root = y.root ? `${le.root} ${y.root}` : le.root;
|
|
1249
1247
|
}
|
|
1250
|
-
const p = l.className,
|
|
1248
|
+
const p = l.className, m = p ? `${le.root} ${p}` : le.root;
|
|
1251
1249
|
return /* @__PURE__ */ e(
|
|
1252
|
-
|
|
1250
|
+
xo,
|
|
1253
1251
|
{
|
|
1254
1252
|
ref: a,
|
|
1255
|
-
className:
|
|
1253
|
+
className: m,
|
|
1256
1254
|
classNames: d,
|
|
1257
1255
|
...c,
|
|
1258
1256
|
children: o
|
|
1259
1257
|
}
|
|
1260
1258
|
);
|
|
1261
1259
|
});
|
|
1262
|
-
|
|
1263
|
-
const
|
|
1264
|
-
root:
|
|
1265
|
-
},
|
|
1260
|
+
or.displayName = "Group";
|
|
1261
|
+
const ta = (r) => /* @__PURE__ */ e("div", { ...r, children: "HoverCard" }), ra = (r) => /* @__PURE__ */ e("div", { ...r, children: "Link" }), tr = "Loader-module__root___6iYOP", ce = {
|
|
1262
|
+
root: tr
|
|
1263
|
+
}, rr = $(function({ variant: o = "oval", size: n = "default", overStyled: s = !1, ...t }, a) {
|
|
1266
1264
|
const l = {
|
|
1267
1265
|
sm: "small",
|
|
1268
1266
|
md: "default",
|
|
@@ -1271,15 +1269,15 @@ const Zr = (r) => /* @__PURE__ */ e("div", { ...r, children: "HoverCard" }), Hr
|
|
|
1271
1269
|
default: "default",
|
|
1272
1270
|
large: "large"
|
|
1273
1271
|
}[n] || "default", d = v(t, s), i = {
|
|
1274
|
-
root:
|
|
1272
|
+
root: ce.root
|
|
1275
1273
|
}, p = d.classNames;
|
|
1276
1274
|
if (p && typeof p == "object" && !Array.isArray(p)) {
|
|
1277
|
-
const
|
|
1278
|
-
i.root =
|
|
1275
|
+
const u = p;
|
|
1276
|
+
i.root = u.root ? `${ce.root} ${u.root}` : ce.root;
|
|
1279
1277
|
}
|
|
1280
|
-
const
|
|
1278
|
+
const m = d.className, y = m ? `${ce.root} ${m}` : ce.root;
|
|
1281
1279
|
return /* @__PURE__ */ e(
|
|
1282
|
-
|
|
1280
|
+
wo,
|
|
1283
1281
|
{
|
|
1284
1282
|
ref: a,
|
|
1285
1283
|
type: o,
|
|
@@ -1291,24 +1289,24 @@ const Zr = (r) => /* @__PURE__ */ e("div", { ...r, children: "HoverCard" }), Hr
|
|
|
1291
1289
|
}
|
|
1292
1290
|
);
|
|
1293
1291
|
});
|
|
1294
|
-
|
|
1295
|
-
const
|
|
1296
|
-
dropdown:
|
|
1297
|
-
item:
|
|
1298
|
-
itemLabel:
|
|
1299
|
-
itemSection:
|
|
1300
|
-
divider:
|
|
1301
|
-
label:
|
|
1302
|
-
chevron:
|
|
1303
|
-
},
|
|
1292
|
+
rr.displayName = "Loader";
|
|
1293
|
+
const ar = "Menu-module__dropdown___j4xuA", sr = "Menu-module__item___NMXha", nr = "Menu-module__itemLabel___zvcqC", lr = "Menu-module__itemSection___pRIcn", cr = "Menu-module__divider___wPiNq", ir = "Menu-module__label___4FBGa", dr = "Menu-module__chevron___hEEiy", ee = {
|
|
1294
|
+
dropdown: ar,
|
|
1295
|
+
item: sr,
|
|
1296
|
+
itemLabel: nr,
|
|
1297
|
+
itemSection: lr,
|
|
1298
|
+
divider: cr,
|
|
1299
|
+
label: ir,
|
|
1300
|
+
chevron: dr
|
|
1301
|
+
}, Ue = function({ overStyled: o = !1, ...n }) {
|
|
1304
1302
|
const s = v(n, o), t = {
|
|
1305
|
-
dropdown:
|
|
1306
|
-
item:
|
|
1307
|
-
itemLabel:
|
|
1308
|
-
itemSection:
|
|
1309
|
-
divider:
|
|
1310
|
-
label:
|
|
1311
|
-
chevron:
|
|
1303
|
+
dropdown: ee.dropdown,
|
|
1304
|
+
item: ee.item,
|
|
1305
|
+
itemLabel: ee.itemLabel,
|
|
1306
|
+
itemSection: ee.itemSection,
|
|
1307
|
+
divider: ee.divider,
|
|
1308
|
+
label: ee.label,
|
|
1309
|
+
chevron: ee.chevron
|
|
1312
1310
|
}, a = s.classNames;
|
|
1313
1311
|
if (a && typeof a == "object" && !Array.isArray(a)) {
|
|
1314
1312
|
const c = a;
|
|
@@ -1324,12 +1322,12 @@ const or = "Menu-module__dropdown___j4xuA", tr = "Menu-module__item___NMXha", rr
|
|
|
1324
1322
|
}
|
|
1325
1323
|
);
|
|
1326
1324
|
};
|
|
1327
|
-
|
|
1328
|
-
const
|
|
1325
|
+
Ue.displayName = "Menu";
|
|
1326
|
+
const Xe = function(o) {
|
|
1329
1327
|
return /* @__PURE__ */ e(q.Target, { ...o });
|
|
1330
1328
|
};
|
|
1331
|
-
|
|
1332
|
-
const
|
|
1329
|
+
Xe.displayName = "MenuTarget";
|
|
1330
|
+
const Qe = $(
|
|
1333
1331
|
function({ overStyled: o = !1, ...n }, s) {
|
|
1334
1332
|
const t = v(n, o), a = t.className;
|
|
1335
1333
|
return /* @__PURE__ */ e(
|
|
@@ -1342,22 +1340,24 @@ const Ye = $(
|
|
|
1342
1340
|
);
|
|
1343
1341
|
}
|
|
1344
1342
|
);
|
|
1345
|
-
|
|
1346
|
-
const
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1343
|
+
Qe.displayName = "MenuDropdown";
|
|
1344
|
+
const Je = $(
|
|
1345
|
+
function({ overStyled: o = !1, ...n }, s) {
|
|
1346
|
+
const t = v(n, o), a = t;
|
|
1347
|
+
o || delete a.color;
|
|
1348
|
+
const c = a.className;
|
|
1349
|
+
return /* @__PURE__ */ e(
|
|
1350
|
+
q.Item,
|
|
1351
|
+
{
|
|
1352
|
+
ref: s,
|
|
1353
|
+
className: c,
|
|
1354
|
+
...t
|
|
1355
|
+
}
|
|
1356
|
+
);
|
|
1357
|
+
}
|
|
1358
|
+
);
|
|
1359
|
+
Je.displayName = "MenuItem";
|
|
1360
|
+
const pr = Q(Je), eo = $(
|
|
1361
1361
|
function({ overStyled: o = !1, ...n }, s) {
|
|
1362
1362
|
const t = v(n, o), a = t.className;
|
|
1363
1363
|
return /* @__PURE__ */ e(
|
|
@@ -1370,8 +1370,8 @@ const He = $(
|
|
|
1370
1370
|
);
|
|
1371
1371
|
}
|
|
1372
1372
|
);
|
|
1373
|
-
|
|
1374
|
-
const
|
|
1373
|
+
eo.displayName = "MenuDivider";
|
|
1374
|
+
const oo = $(function({ overStyled: o = !1, ...n }, s) {
|
|
1375
1375
|
const t = v(n, o), a = t.className;
|
|
1376
1376
|
return /* @__PURE__ */ e(
|
|
1377
1377
|
q.Label,
|
|
@@ -1382,16 +1382,16 @@ const Ke = $(function({ overStyled: o = !1, ...n }, s) {
|
|
|
1382
1382
|
}
|
|
1383
1383
|
);
|
|
1384
1384
|
});
|
|
1385
|
-
|
|
1386
|
-
const
|
|
1385
|
+
oo.displayName = "MenuLabel";
|
|
1386
|
+
const to = function(o) {
|
|
1387
1387
|
return /* @__PURE__ */ e(q.Sub, { ...o });
|
|
1388
1388
|
};
|
|
1389
|
-
|
|
1390
|
-
const
|
|
1389
|
+
to.displayName = "MenuSub";
|
|
1390
|
+
const ro = function(o) {
|
|
1391
1391
|
return /* @__PURE__ */ e(q.Sub.Target, { ...o });
|
|
1392
1392
|
};
|
|
1393
|
-
|
|
1394
|
-
const
|
|
1393
|
+
ro.displayName = "MenuSubTarget";
|
|
1394
|
+
const ao = $(
|
|
1395
1395
|
function({ overStyled: o = !1, ...n }, s) {
|
|
1396
1396
|
const t = v(n, o), a = t;
|
|
1397
1397
|
o || delete a.color;
|
|
@@ -1406,8 +1406,10 @@ const Qe = $(
|
|
|
1406
1406
|
);
|
|
1407
1407
|
}
|
|
1408
1408
|
);
|
|
1409
|
-
|
|
1410
|
-
const
|
|
1409
|
+
ao.displayName = "MenuSubItem";
|
|
1410
|
+
const mr = Q(
|
|
1411
|
+
ao
|
|
1412
|
+
), so = $(
|
|
1411
1413
|
function({ overStyled: o = !1, ...n }, s) {
|
|
1412
1414
|
const t = v(n, o), a = t.className;
|
|
1413
1415
|
return /* @__PURE__ */ e(
|
|
@@ -1420,28 +1422,28 @@ const Je = $(
|
|
|
1420
1422
|
);
|
|
1421
1423
|
}
|
|
1422
1424
|
);
|
|
1423
|
-
|
|
1424
|
-
const
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
const
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
const
|
|
1436
|
-
groupRoot:
|
|
1437
|
-
root:
|
|
1438
|
-
body:
|
|
1439
|
-
inner:
|
|
1440
|
-
radio:
|
|
1441
|
-
icon:
|
|
1442
|
-
labelWrapper:
|
|
1443
|
-
label:
|
|
1444
|
-
},
|
|
1425
|
+
so.displayName = "MenuSubDropdown";
|
|
1426
|
+
const $e = to;
|
|
1427
|
+
$e.Target = ro;
|
|
1428
|
+
$e.Item = mr;
|
|
1429
|
+
$e.Dropdown = so;
|
|
1430
|
+
const ae = Ue;
|
|
1431
|
+
ae.Target = Xe;
|
|
1432
|
+
ae.Dropdown = Qe;
|
|
1433
|
+
ae.Item = pr;
|
|
1434
|
+
ae.Divider = eo;
|
|
1435
|
+
ae.Label = oo;
|
|
1436
|
+
ae.Sub = $e;
|
|
1437
|
+
const aa = (r) => /* @__PURE__ */ e("div", { ...r, children: "Modal" }), sa = (r) => /* @__PURE__ */ e("div", { ...r, children: "NumberInput" }), na = (r) => /* @__PURE__ */ e("div", { ...r, children: "Pagination" }), la = (r) => /* @__PURE__ */ e("div", { ...r, children: "Panel" }), ca = (r) => /* @__PURE__ */ e("div", { ...r, children: "Popover" }), ur = "Radio-module__groupRoot___bfUii", _r = "Radio-module__root___kAjTD", br = "Radio-module__body___q2Wpj", yr = "Radio-module__inner___QaTBB", hr = "Radio-module__radio___MfgN-", fr = "Radio-module__icon___DWznm", Nr = "Radio-module__labelWrapper___dB0Gi", $r = "Radio-module__label___vAFIP", A = {
|
|
1438
|
+
groupRoot: ur,
|
|
1439
|
+
root: _r,
|
|
1440
|
+
body: br,
|
|
1441
|
+
inner: yr,
|
|
1442
|
+
radio: hr,
|
|
1443
|
+
icon: fr,
|
|
1444
|
+
labelWrapper: Nr,
|
|
1445
|
+
label: $r
|
|
1446
|
+
}, no = $(
|
|
1445
1447
|
function(o, n) {
|
|
1446
1448
|
const {
|
|
1447
1449
|
overStyled: s = !1,
|
|
@@ -1454,25 +1456,25 @@ const Kr = (r) => /* @__PURE__ */ e("div", { ...r, children: "Modal" }), Ur = (r
|
|
|
1454
1456
|
onLabelEditClick: i,
|
|
1455
1457
|
// Base Mantine Extracted Attributes
|
|
1456
1458
|
label: p,
|
|
1457
|
-
description:
|
|
1459
|
+
description: m,
|
|
1458
1460
|
assistiveText: y,
|
|
1459
|
-
assistiveWithIcon:
|
|
1461
|
+
assistiveWithIcon: u,
|
|
1460
1462
|
error: _,
|
|
1461
|
-
required:
|
|
1463
|
+
required: f,
|
|
1462
1464
|
withAsterisk: C,
|
|
1463
|
-
id:
|
|
1465
|
+
id: h,
|
|
1464
1466
|
className: g,
|
|
1465
1467
|
style: b,
|
|
1466
1468
|
children: P,
|
|
1467
1469
|
readOnly: N,
|
|
1468
1470
|
readOnlyComponent: z,
|
|
1469
1471
|
emptyValueComponent: L,
|
|
1470
|
-
value:
|
|
1472
|
+
value: k,
|
|
1471
1473
|
defaultValue: R,
|
|
1472
1474
|
...O
|
|
1473
1475
|
} = o, S = v(O, s), T = S;
|
|
1474
1476
|
return delete T.size, /* @__PURE__ */ e(
|
|
1475
|
-
|
|
1477
|
+
oe,
|
|
1476
1478
|
{
|
|
1477
1479
|
className: g,
|
|
1478
1480
|
style: b,
|
|
@@ -1487,28 +1489,28 @@ const Kr = (r) => /* @__PURE__ */ e("div", { ...r, children: "Modal" }), Ur = (r
|
|
|
1487
1489
|
labelWithEditIcon: d,
|
|
1488
1490
|
onLabelEditClick: i,
|
|
1489
1491
|
label: p,
|
|
1490
|
-
description:
|
|
1492
|
+
description: m,
|
|
1491
1493
|
assistiveText: y,
|
|
1492
|
-
assistiveWithIcon:
|
|
1494
|
+
assistiveWithIcon: u,
|
|
1493
1495
|
error: _,
|
|
1494
|
-
required:
|
|
1496
|
+
required: f,
|
|
1495
1497
|
withAsterisk: C,
|
|
1496
|
-
id:
|
|
1498
|
+
id: h,
|
|
1497
1499
|
readOnly: N && !!z,
|
|
1498
1500
|
readOnlyComponent: z,
|
|
1499
1501
|
emptyValueComponent: L,
|
|
1500
1502
|
readOnlyType: "text",
|
|
1501
|
-
readOnlyValue:
|
|
1503
|
+
readOnlyValue: k !== void 0 ? k : R,
|
|
1502
1504
|
readOnlyNativeProps: o,
|
|
1503
1505
|
activeComponent: /* @__PURE__ */ e(
|
|
1504
|
-
|
|
1506
|
+
Ie.Group,
|
|
1505
1507
|
{
|
|
1506
1508
|
ref: n,
|
|
1507
1509
|
...S,
|
|
1508
1510
|
disabled: N || T.disabled,
|
|
1509
|
-
value:
|
|
1511
|
+
value: k,
|
|
1510
1512
|
defaultValue: R,
|
|
1511
|
-
children: /* @__PURE__ */ e("div", { className:
|
|
1513
|
+
children: /* @__PURE__ */ e("div", { className: A.groupRoot, "data-layout": t, children: B.Children.map(P, (x) => B.isValidElement(x) ? B.cloneElement(x, {
|
|
1512
1514
|
disabled: N || x.props.disabled
|
|
1513
1515
|
}) : x) })
|
|
1514
1516
|
}
|
|
@@ -1517,8 +1519,8 @@ const Kr = (r) => /* @__PURE__ */ e("div", { ...r, children: "Modal" }), Ur = (r
|
|
|
1517
1519
|
);
|
|
1518
1520
|
}
|
|
1519
1521
|
);
|
|
1520
|
-
|
|
1521
|
-
const
|
|
1522
|
+
no.displayName = "RadioGroup";
|
|
1523
|
+
const vr = ({ className: r, style: o }) => /* @__PURE__ */ e(
|
|
1522
1524
|
"svg",
|
|
1523
1525
|
{
|
|
1524
1526
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1528,7 +1530,7 @@ const yr = ({ className: r, style: o }) => /* @__PURE__ */ e(
|
|
|
1528
1530
|
style: o,
|
|
1529
1531
|
children: /* @__PURE__ */ e("circle", { cx: "8", cy: "8", r: "5" })
|
|
1530
1532
|
}
|
|
1531
|
-
),
|
|
1533
|
+
), lo = $(
|
|
1532
1534
|
function(o, n) {
|
|
1533
1535
|
const {
|
|
1534
1536
|
overStyled: s = !1,
|
|
@@ -1539,30 +1541,30 @@ const yr = ({ className: r, style: o }) => /* @__PURE__ */ e(
|
|
|
1539
1541
|
labelSize: d,
|
|
1540
1542
|
controlMaxWidth: i,
|
|
1541
1543
|
controlMinWidth: p,
|
|
1542
|
-
...
|
|
1543
|
-
} = o, y = v(
|
|
1544
|
-
delete
|
|
1544
|
+
...m
|
|
1545
|
+
} = o, y = v(m, s), u = y;
|
|
1546
|
+
delete u.size, delete u.color, delete u.radius, delete u.variant, delete u.iconColor;
|
|
1545
1547
|
const _ = {
|
|
1546
|
-
root:
|
|
1547
|
-
body:
|
|
1548
|
-
inner:
|
|
1549
|
-
radio:
|
|
1550
|
-
icon:
|
|
1551
|
-
labelWrapper:
|
|
1552
|
-
label:
|
|
1553
|
-
},
|
|
1554
|
-
if (
|
|
1555
|
-
const b =
|
|
1556
|
-
_.root = b.root ? `${
|
|
1548
|
+
root: A.root,
|
|
1549
|
+
body: A.body,
|
|
1550
|
+
inner: A.inner,
|
|
1551
|
+
radio: A.radio,
|
|
1552
|
+
icon: A.icon,
|
|
1553
|
+
labelWrapper: A.labelWrapper,
|
|
1554
|
+
label: A.label
|
|
1555
|
+
}, f = u.classNames;
|
|
1556
|
+
if (f && typeof f == "object" && !Array.isArray(f)) {
|
|
1557
|
+
const b = f;
|
|
1558
|
+
_.root = b.root ? `${A.root} ${b.root}` : A.root, _.body = b.body ? `${A.body} ${b.body}` : A.body, _.inner = b.inner ? `${A.inner} ${b.inner}` : A.inner, _.radio = b.radio ? `${A.radio} ${b.radio}` : A.radio, _.icon = b.icon ? `${A.icon} ${b.icon}` : A.icon, _.labelWrapper = b.labelWrapper ? `${A.labelWrapper} ${b.labelWrapper}` : A.labelWrapper, _.label = b.label ? `${A.label} ${b.label}` : A.label;
|
|
1557
1559
|
}
|
|
1558
|
-
const C =
|
|
1560
|
+
const C = u.className, h = C ? `${A.root} ${C}` : A.root;
|
|
1559
1561
|
if (t && a) {
|
|
1560
|
-
const b = !!(
|
|
1562
|
+
const b = !!(u.checked ?? u.defaultChecked), N = /* @__PURE__ */ e(
|
|
1561
1563
|
a,
|
|
1562
1564
|
{
|
|
1563
1565
|
...o,
|
|
1564
1566
|
checked: b,
|
|
1565
|
-
label:
|
|
1567
|
+
label: u.label
|
|
1566
1568
|
}
|
|
1567
1569
|
);
|
|
1568
1570
|
return l ? /* @__PURE__ */ e(
|
|
@@ -1574,14 +1576,14 @@ const yr = ({ className: r, style: o }) => /* @__PURE__ */ e(
|
|
|
1574
1576
|
controlMinWidth: p,
|
|
1575
1577
|
children: N
|
|
1576
1578
|
}
|
|
1577
|
-
) : /* @__PURE__ */ e(
|
|
1579
|
+
) : /* @__PURE__ */ e(de, { children: N });
|
|
1578
1580
|
}
|
|
1579
1581
|
const g = /* @__PURE__ */ e(
|
|
1580
|
-
|
|
1582
|
+
Ie,
|
|
1581
1583
|
{
|
|
1582
1584
|
ref: n,
|
|
1583
|
-
icon:
|
|
1584
|
-
className:
|
|
1585
|
+
icon: vr,
|
|
1586
|
+
className: h,
|
|
1585
1587
|
classNames: _,
|
|
1586
1588
|
disabled: t || c,
|
|
1587
1589
|
...y
|
|
@@ -1599,13 +1601,13 @@ const yr = ({ className: r, style: o }) => /* @__PURE__ */ e(
|
|
|
1599
1601
|
) : g;
|
|
1600
1602
|
}
|
|
1601
1603
|
);
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
const
|
|
1605
|
-
|
|
1604
|
+
lo.displayName = "Radio";
|
|
1605
|
+
lo.Group = no;
|
|
1606
|
+
const Cr = ({ checked: r, label: o }) => /* @__PURE__ */ E(
|
|
1607
|
+
ge,
|
|
1606
1608
|
{
|
|
1607
1609
|
component: "span",
|
|
1608
|
-
className:
|
|
1610
|
+
className: ye.textField,
|
|
1609
1611
|
style: { display: "inline-flex", gap: "8px", alignItems: "baseline" },
|
|
1610
1612
|
children: [
|
|
1611
1613
|
o && /* @__PURE__ */ E("span", { style: { fontWeight: 500 }, children: [
|
|
@@ -1616,12 +1618,12 @@ const hr = ({ checked: r, label: o }) => /* @__PURE__ */ E(
|
|
|
1616
1618
|
]
|
|
1617
1619
|
}
|
|
1618
1620
|
);
|
|
1619
|
-
|
|
1620
|
-
const
|
|
1621
|
-
|
|
1621
|
+
Cr.displayName = "ReadOnlySwitchField";
|
|
1622
|
+
const gr = ({ checked: r, label: o }) => /* @__PURE__ */ E(
|
|
1623
|
+
ge,
|
|
1622
1624
|
{
|
|
1623
1625
|
component: "span",
|
|
1624
|
-
className:
|
|
1626
|
+
className: ye.textField,
|
|
1625
1627
|
style: { display: "inline-flex", gap: "8px", alignItems: "baseline" },
|
|
1626
1628
|
children: [
|
|
1627
1629
|
o && /* @__PURE__ */ E("span", { style: { fontWeight: 500 }, children: [
|
|
@@ -1632,42 +1634,42 @@ const fr = ({ checked: r, label: o }) => /* @__PURE__ */ E(
|
|
|
1632
1634
|
]
|
|
1633
1635
|
}
|
|
1634
1636
|
);
|
|
1635
|
-
|
|
1636
|
-
const
|
|
1637
|
-
root:
|
|
1638
|
-
},
|
|
1637
|
+
gr.displayName = "ReadOnlyBooleanField";
|
|
1638
|
+
const ia = (r) => /* @__PURE__ */ e("div", { ...r, children: "Search" }), da = (r) => /* @__PURE__ */ e("div", { ...r, children: "SegmentedControl" }), pa = (r) => /* @__PURE__ */ e("div", { ...r, children: "Slider" }), xr = "Stack-module__root___NUN-x", ie = {
|
|
1639
|
+
root: xr
|
|
1640
|
+
}, wr = $(function({ children: o, overStyled: n = !1, gap: s = "rec-default", ...t }, a) {
|
|
1639
1641
|
const c = v({ ...t, gap: s }, n), l = c, d = {
|
|
1640
|
-
root:
|
|
1642
|
+
root: ie.root
|
|
1641
1643
|
}, i = l.classNames;
|
|
1642
1644
|
if (i && typeof i == "object" && !Array.isArray(i)) {
|
|
1643
1645
|
const y = i;
|
|
1644
|
-
d.root = y.root ? `${
|
|
1646
|
+
d.root = y.root ? `${ie.root} ${y.root}` : ie.root;
|
|
1645
1647
|
}
|
|
1646
|
-
const p = l.className,
|
|
1648
|
+
const p = l.className, m = p ? `${ie.root} ${p}` : ie.root;
|
|
1647
1649
|
return /* @__PURE__ */ e(
|
|
1648
|
-
|
|
1650
|
+
Po,
|
|
1649
1651
|
{
|
|
1650
1652
|
ref: a,
|
|
1651
|
-
className:
|
|
1653
|
+
className: m,
|
|
1652
1654
|
classNames: d,
|
|
1653
1655
|
...c,
|
|
1654
1656
|
children: o
|
|
1655
1657
|
}
|
|
1656
1658
|
);
|
|
1657
1659
|
});
|
|
1658
|
-
|
|
1659
|
-
const
|
|
1660
|
-
root:
|
|
1661
|
-
body:
|
|
1662
|
-
track:
|
|
1663
|
-
thumb:
|
|
1664
|
-
labelWrapper:
|
|
1665
|
-
label:
|
|
1666
|
-
thumbIconWrapper:
|
|
1667
|
-
checkIcon:
|
|
1668
|
-
closeIcon:
|
|
1669
|
-
groupRoot:
|
|
1670
|
-
},
|
|
1660
|
+
wr.displayName = "Stack";
|
|
1661
|
+
const ma = (r) => /* @__PURE__ */ e("div", { ...r, children: "Stepper" }), Pr = "Switch-module__root___Y5Ydi", Wr = "Switch-module__body___Sw9Wr", Ar = "Switch-module__track___7ObdZ", kr = "Switch-module__thumb___-FTeK", Sr = "Switch-module__labelWrapper___YSOwx", Tr = "Switch-module__label___LrH7V", Ir = "Switch-module__thumbIconWrapper___sCY-1", Lr = "Switch-module__checkIcon___ZBAQN", Rr = "Switch-module__closeIcon___bLLGw", Or = "Switch-module__groupRoot___-Uepi", w = {
|
|
1662
|
+
root: Pr,
|
|
1663
|
+
body: Wr,
|
|
1664
|
+
track: Ar,
|
|
1665
|
+
thumb: kr,
|
|
1666
|
+
labelWrapper: Sr,
|
|
1667
|
+
label: Tr,
|
|
1668
|
+
thumbIconWrapper: Ir,
|
|
1669
|
+
checkIcon: Lr,
|
|
1670
|
+
closeIcon: Rr,
|
|
1671
|
+
groupRoot: Or
|
|
1672
|
+
}, co = $(
|
|
1671
1673
|
function(o, n) {
|
|
1672
1674
|
const {
|
|
1673
1675
|
overStyled: s = !1,
|
|
@@ -1680,25 +1682,25 @@ const ra = (r) => /* @__PURE__ */ e("div", { ...r, children: "Stepper" }), vr =
|
|
|
1680
1682
|
onLabelEditClick: i,
|
|
1681
1683
|
// Base Mantine Extracted Attributes
|
|
1682
1684
|
label: p,
|
|
1683
|
-
description:
|
|
1685
|
+
description: m,
|
|
1684
1686
|
assistiveText: y,
|
|
1685
|
-
assistiveWithIcon:
|
|
1687
|
+
assistiveWithIcon: u,
|
|
1686
1688
|
error: _,
|
|
1687
|
-
required:
|
|
1689
|
+
required: f,
|
|
1688
1690
|
withAsterisk: C,
|
|
1689
|
-
id:
|
|
1691
|
+
id: h,
|
|
1690
1692
|
className: g,
|
|
1691
1693
|
style: b,
|
|
1692
1694
|
children: P,
|
|
1693
1695
|
readOnly: N,
|
|
1694
1696
|
readOnlyComponent: z,
|
|
1695
1697
|
emptyValueComponent: L,
|
|
1696
|
-
value:
|
|
1698
|
+
value: k,
|
|
1697
1699
|
defaultValue: R,
|
|
1698
1700
|
...O
|
|
1699
1701
|
} = o, S = v(O, s), T = S;
|
|
1700
1702
|
return delete T.size, /* @__PURE__ */ e(
|
|
1701
|
-
|
|
1703
|
+
oe,
|
|
1702
1704
|
{
|
|
1703
1705
|
className: g,
|
|
1704
1706
|
style: b,
|
|
@@ -1713,26 +1715,26 @@ const ra = (r) => /* @__PURE__ */ e("div", { ...r, children: "Stepper" }), vr =
|
|
|
1713
1715
|
labelWithEditIcon: d,
|
|
1714
1716
|
onLabelEditClick: i,
|
|
1715
1717
|
label: p,
|
|
1716
|
-
description:
|
|
1718
|
+
description: m,
|
|
1717
1719
|
assistiveText: y,
|
|
1718
|
-
assistiveWithIcon:
|
|
1720
|
+
assistiveWithIcon: u,
|
|
1719
1721
|
error: _,
|
|
1720
|
-
required:
|
|
1722
|
+
required: f,
|
|
1721
1723
|
withAsterisk: C,
|
|
1722
|
-
id:
|
|
1724
|
+
id: h,
|
|
1723
1725
|
readOnly: N && !!z,
|
|
1724
1726
|
readOnlyComponent: z,
|
|
1725
1727
|
emptyValueComponent: L,
|
|
1726
1728
|
readOnlyType: "text",
|
|
1727
|
-
readOnlyValue:
|
|
1729
|
+
readOnlyValue: k !== void 0 ? k : R,
|
|
1728
1730
|
readOnlyNativeProps: o,
|
|
1729
1731
|
activeComponent: /* @__PURE__ */ e(
|
|
1730
|
-
|
|
1732
|
+
Le.Group,
|
|
1731
1733
|
{
|
|
1732
1734
|
ref: n,
|
|
1733
1735
|
...S,
|
|
1734
1736
|
disabled: N || T.disabled,
|
|
1735
|
-
value:
|
|
1737
|
+
value: k,
|
|
1736
1738
|
defaultValue: R,
|
|
1737
1739
|
children: /* @__PURE__ */ e("div", { className: w.groupRoot, children: B.Children.map(P, (x) => B.isValidElement(x) ? B.cloneElement(x, {
|
|
1738
1740
|
disabled: N || x.props.disabled
|
|
@@ -1743,8 +1745,8 @@ const ra = (r) => /* @__PURE__ */ e("div", { ...r, children: "Stepper" }), vr =
|
|
|
1743
1745
|
);
|
|
1744
1746
|
}
|
|
1745
1747
|
);
|
|
1746
|
-
|
|
1747
|
-
const
|
|
1748
|
+
co.displayName = "SwitchGroup";
|
|
1749
|
+
const io = $(
|
|
1748
1750
|
function(o, n) {
|
|
1749
1751
|
const {
|
|
1750
1752
|
overStyled: s = !1,
|
|
@@ -1755,11 +1757,11 @@ const ro = $(
|
|
|
1755
1757
|
formLayout: d,
|
|
1756
1758
|
labelSize: i,
|
|
1757
1759
|
controlMaxWidth: p,
|
|
1758
|
-
controlMinWidth:
|
|
1760
|
+
controlMinWidth: m,
|
|
1759
1761
|
...y
|
|
1760
|
-
} = o,
|
|
1762
|
+
} = o, u = v(y, s), _ = u;
|
|
1761
1763
|
delete _.size, delete _.color, delete _.radius, delete _.variant;
|
|
1762
|
-
const
|
|
1764
|
+
const f = {
|
|
1763
1765
|
root: w.root,
|
|
1764
1766
|
body: w.body,
|
|
1765
1767
|
track: w.track,
|
|
@@ -1770,9 +1772,9 @@ const ro = $(
|
|
|
1770
1772
|
}, C = _.classNames;
|
|
1771
1773
|
if (C && typeof C == "object" && !Array.isArray(C)) {
|
|
1772
1774
|
const N = C;
|
|
1773
|
-
|
|
1775
|
+
f.root = N.root ? `${w.root} ${N.root}` : w.root, f.body = N.body ? `${w.body} ${N.body}` : w.body, f.track = N.track ? `${w.track} ${N.track}` : w.track, f.thumb = N.thumb ? `${w.thumb} ${N.thumb}` : w.thumb, f.trackLabel = N.trackLabel ? `${w.trackLabel} ${N.trackLabel}` : w.trackLabel, f.labelWrapper = N.labelWrapper ? `${w.labelWrapper} ${N.labelWrapper}` : w.labelWrapper, f.label = N.label ? `${w.label} ${N.label}` : w.label;
|
|
1774
1776
|
}
|
|
1775
|
-
const
|
|
1777
|
+
const h = _.className, g = h ? `${w.root} ${h}` : w.root;
|
|
1776
1778
|
if (t && a) {
|
|
1777
1779
|
const N = !!(_.checked ?? _.defaultChecked), L = /* @__PURE__ */ e(
|
|
1778
1780
|
a,
|
|
@@ -1788,23 +1790,23 @@ const ro = $(
|
|
|
1788
1790
|
formLayout: d,
|
|
1789
1791
|
labelSize: i,
|
|
1790
1792
|
controlMaxWidth: p,
|
|
1791
|
-
controlMinWidth:
|
|
1793
|
+
controlMinWidth: m,
|
|
1792
1794
|
children: L
|
|
1793
1795
|
}
|
|
1794
|
-
) : /* @__PURE__ */ e(
|
|
1796
|
+
) : /* @__PURE__ */ e(de, { children: L });
|
|
1795
1797
|
}
|
|
1796
1798
|
const b = /* @__PURE__ */ E("div", { className: w.thumbIconWrapper, children: [
|
|
1797
|
-
/* @__PURE__ */ e(
|
|
1798
|
-
/* @__PURE__ */ e(
|
|
1799
|
+
/* @__PURE__ */ e(Wo, { className: w.checkIcon }),
|
|
1800
|
+
/* @__PURE__ */ e(Ao, { className: w.closeIcon })
|
|
1799
1801
|
] }), P = /* @__PURE__ */ e(
|
|
1800
|
-
|
|
1802
|
+
Le,
|
|
1801
1803
|
{
|
|
1802
1804
|
ref: n,
|
|
1803
1805
|
className: g,
|
|
1804
|
-
classNames:
|
|
1806
|
+
classNames: f,
|
|
1805
1807
|
disabled: t || c,
|
|
1806
1808
|
thumbIcon: l ?? b,
|
|
1807
|
-
...
|
|
1809
|
+
...u
|
|
1808
1810
|
}
|
|
1809
1811
|
);
|
|
1810
1812
|
return d ? /* @__PURE__ */ e(
|
|
@@ -1813,18 +1815,18 @@ const ro = $(
|
|
|
1813
1815
|
formLayout: d,
|
|
1814
1816
|
labelSize: i,
|
|
1815
1817
|
controlMaxWidth: p,
|
|
1816
|
-
controlMinWidth:
|
|
1818
|
+
controlMinWidth: m,
|
|
1817
1819
|
children: P
|
|
1818
1820
|
}
|
|
1819
1821
|
) : P;
|
|
1820
1822
|
}
|
|
1821
1823
|
);
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
const
|
|
1824
|
+
io.displayName = "Switch";
|
|
1825
|
+
io.Group = co;
|
|
1826
|
+
const ua = (r) => /* @__PURE__ */ e("div", { ...r, children: "Table" }), _a = (r) => /* @__PURE__ */ e("div", { ...r, children: "Tabs" }), po = $(function({ overStyled: o = !1, variant: n = "body", ...s }, t) {
|
|
1825
1827
|
const a = v(s, o), c = a.className, l = `recursica_brand_typography_${n}`, d = c ? `${l} ${c}` : l;
|
|
1826
1828
|
return /* @__PURE__ */ e(
|
|
1827
|
-
|
|
1829
|
+
ko,
|
|
1828
1830
|
{
|
|
1829
1831
|
ref: t,
|
|
1830
1832
|
className: d,
|
|
@@ -1832,11 +1834,11 @@ const aa = (r) => /* @__PURE__ */ e("div", { ...r, children: "Table" }), sa = (r
|
|
|
1832
1834
|
}
|
|
1833
1835
|
);
|
|
1834
1836
|
});
|
|
1835
|
-
|
|
1836
|
-
const
|
|
1837
|
-
root:
|
|
1838
|
-
input:
|
|
1839
|
-
},
|
|
1837
|
+
po.displayName = "Text";
|
|
1838
|
+
const ba = Q(po), zr = "TextArea-module__root___3dyeu", Mr = "TextArea-module__input___8l36v", re = {
|
|
1839
|
+
root: zr,
|
|
1840
|
+
input: Mr
|
|
1841
|
+
}, Fr = $(
|
|
1840
1842
|
function(o, n) {
|
|
1841
1843
|
const {
|
|
1842
1844
|
overStyled: s = !1,
|
|
@@ -1848,36 +1850,36 @@ const Ir = "TextArea-module__root___3dyeu", Lr = "TextArea-module__input___8l36v
|
|
|
1848
1850
|
labelWithEditIcon: d,
|
|
1849
1851
|
onLabelEditClick: i,
|
|
1850
1852
|
label: p,
|
|
1851
|
-
assistiveText:
|
|
1853
|
+
assistiveText: m,
|
|
1852
1854
|
assistiveWithIcon: y,
|
|
1853
|
-
error:
|
|
1855
|
+
error: u,
|
|
1854
1856
|
required: _,
|
|
1855
|
-
withAsterisk:
|
|
1857
|
+
withAsterisk: f,
|
|
1856
1858
|
id: C,
|
|
1857
|
-
className:
|
|
1859
|
+
className: h,
|
|
1858
1860
|
style: g,
|
|
1859
1861
|
disabled: b,
|
|
1860
1862
|
readOnly: P,
|
|
1861
1863
|
readOnlyComponent: N,
|
|
1862
1864
|
emptyValueComponent: z,
|
|
1863
1865
|
value: L,
|
|
1864
|
-
defaultValue:
|
|
1866
|
+
defaultValue: k,
|
|
1865
1867
|
...R
|
|
1866
1868
|
} = o, O = v(R, s), S = O;
|
|
1867
1869
|
delete S.size, delete S.variant, delete S.radius;
|
|
1868
1870
|
const T = {
|
|
1869
|
-
wrapper:
|
|
1871
|
+
wrapper: re.root,
|
|
1870
1872
|
// The nested Input internal relative wrapper bounding box
|
|
1871
|
-
input:
|
|
1873
|
+
input: re.input
|
|
1872
1874
|
}, x = S.classNames;
|
|
1873
1875
|
if (x && typeof x == "object" && !Array.isArray(x)) {
|
|
1874
1876
|
const I = x;
|
|
1875
|
-
T.wrapper = I.wrapper ? `${
|
|
1877
|
+
T.wrapper = I.wrapper ? `${re.root} ${I.wrapper}` : re.root, T.input = I.input ? `${re.input} ${I.input}` : re.input;
|
|
1876
1878
|
}
|
|
1877
1879
|
return /* @__PURE__ */ e(
|
|
1878
|
-
|
|
1880
|
+
oe,
|
|
1879
1881
|
{
|
|
1880
|
-
className:
|
|
1882
|
+
className: h,
|
|
1881
1883
|
style: g,
|
|
1882
1884
|
controlMaxWidth: "var(--recursica_ui-kit_components_text-field_properties_max-width)",
|
|
1883
1885
|
controlMinWidth: "var(--recursica_ui-kit_components_text-field_properties_min-width)",
|
|
@@ -1889,28 +1891,28 @@ const Ir = "TextArea-module__root___3dyeu", Lr = "TextArea-module__input___8l36v
|
|
|
1889
1891
|
labelWithEditIcon: d,
|
|
1890
1892
|
onLabelEditClick: i,
|
|
1891
1893
|
label: p,
|
|
1892
|
-
assistiveText:
|
|
1894
|
+
assistiveText: m,
|
|
1893
1895
|
assistiveWithIcon: y,
|
|
1894
|
-
error:
|
|
1896
|
+
error: u,
|
|
1895
1897
|
required: _,
|
|
1896
|
-
withAsterisk:
|
|
1898
|
+
withAsterisk: f,
|
|
1897
1899
|
id: C,
|
|
1898
1900
|
readOnly: P,
|
|
1899
1901
|
readOnlyComponent: N,
|
|
1900
1902
|
emptyValueComponent: z,
|
|
1901
1903
|
readOnlyType: "text",
|
|
1902
|
-
readOnlyValue: L !== void 0 ? L :
|
|
1904
|
+
readOnlyValue: L !== void 0 ? L : k,
|
|
1903
1905
|
readOnlyNativeProps: o,
|
|
1904
1906
|
activeComponent: (
|
|
1905
1907
|
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
1906
1908
|
/* @__PURE__ */ e(
|
|
1907
|
-
|
|
1909
|
+
So,
|
|
1908
1910
|
{
|
|
1909
1911
|
ref: n,
|
|
1910
1912
|
classNames: T,
|
|
1911
1913
|
disabled: b,
|
|
1912
1914
|
value: L,
|
|
1913
|
-
defaultValue:
|
|
1915
|
+
defaultValue: k,
|
|
1914
1916
|
label: void 0,
|
|
1915
1917
|
description: void 0,
|
|
1916
1918
|
error: void 0,
|
|
@@ -1918,7 +1920,7 @@ const Ir = "TextArea-module__root___3dyeu", Lr = "TextArea-module__input___8l36v
|
|
|
1918
1920
|
withAsterisk: void 0,
|
|
1919
1921
|
wrapperProps: {
|
|
1920
1922
|
"data-disabled": b ? "true" : void 0,
|
|
1921
|
-
"data-error":
|
|
1923
|
+
"data-error": u ? "true" : void 0
|
|
1922
1924
|
},
|
|
1923
1925
|
...O
|
|
1924
1926
|
}
|
|
@@ -1928,12 +1930,12 @@ const Ir = "TextArea-module__root___3dyeu", Lr = "TextArea-module__input___8l36v
|
|
|
1928
1930
|
);
|
|
1929
1931
|
}
|
|
1930
1932
|
);
|
|
1931
|
-
|
|
1932
|
-
const
|
|
1933
|
-
root:
|
|
1934
|
-
input:
|
|
1935
|
-
section:
|
|
1936
|
-
},
|
|
1933
|
+
Fr.displayName = "TextArea";
|
|
1934
|
+
const Er = "TextField-module__root___2ZYkG", Br = "TextField-module__input___RL-My", jr = "TextField-module__section___bCIJ0", Z = {
|
|
1935
|
+
root: Er,
|
|
1936
|
+
input: Br,
|
|
1937
|
+
section: jr
|
|
1938
|
+
}, Dr = $(
|
|
1937
1939
|
function(o, n) {
|
|
1938
1940
|
const {
|
|
1939
1941
|
overStyled: s = !1,
|
|
@@ -1945,20 +1947,20 @@ const Or = "TextField-module__root___2ZYkG", zr = "TextField-module__input___RL-
|
|
|
1945
1947
|
labelWithEditIcon: d,
|
|
1946
1948
|
onLabelEditClick: i,
|
|
1947
1949
|
label: p,
|
|
1948
|
-
assistiveText:
|
|
1950
|
+
assistiveText: m,
|
|
1949
1951
|
assistiveWithIcon: y,
|
|
1950
|
-
error:
|
|
1952
|
+
error: u,
|
|
1951
1953
|
required: _,
|
|
1952
|
-
withAsterisk:
|
|
1954
|
+
withAsterisk: f,
|
|
1953
1955
|
id: C,
|
|
1954
|
-
className:
|
|
1956
|
+
className: h,
|
|
1955
1957
|
style: g,
|
|
1956
1958
|
disabled: b,
|
|
1957
1959
|
readOnly: P,
|
|
1958
1960
|
readOnlyComponent: N,
|
|
1959
1961
|
emptyValueComponent: z,
|
|
1960
1962
|
value: L,
|
|
1961
|
-
defaultValue:
|
|
1963
|
+
defaultValue: k,
|
|
1962
1964
|
...R
|
|
1963
1965
|
} = o, O = v(R, s), S = O;
|
|
1964
1966
|
delete S.size, delete S.variant, delete S.radius;
|
|
@@ -1973,9 +1975,9 @@ const Or = "TextField-module__root___2ZYkG", zr = "TextField-module__input___RL-
|
|
|
1973
1975
|
T.wrapper = I.wrapper ? `${Z.root} ${I.wrapper}` : Z.root, T.input = I.input ? `${Z.input} ${I.input}` : Z.input, T.section = I.section ? `${Z.section} ${I.section}` : Z.section;
|
|
1974
1976
|
}
|
|
1975
1977
|
return /* @__PURE__ */ e(
|
|
1976
|
-
|
|
1978
|
+
oe,
|
|
1977
1979
|
{
|
|
1978
|
-
className:
|
|
1980
|
+
className: h,
|
|
1979
1981
|
style: g,
|
|
1980
1982
|
controlMaxWidth: "var(--recursica_ui-kit_components_text-field_properties_max-width)",
|
|
1981
1983
|
controlMinWidth: "var(--recursica_ui-kit_components_text-field_properties_min-width)",
|
|
@@ -1987,31 +1989,31 @@ const Or = "TextField-module__root___2ZYkG", zr = "TextField-module__input___RL-
|
|
|
1987
1989
|
labelWithEditIcon: d,
|
|
1988
1990
|
onLabelEditClick: i,
|
|
1989
1991
|
label: p,
|
|
1990
|
-
assistiveText:
|
|
1992
|
+
assistiveText: m,
|
|
1991
1993
|
assistiveWithIcon: y,
|
|
1992
|
-
error:
|
|
1994
|
+
error: u,
|
|
1993
1995
|
required: _,
|
|
1994
|
-
withAsterisk:
|
|
1996
|
+
withAsterisk: f,
|
|
1995
1997
|
id: C,
|
|
1996
1998
|
readOnly: P,
|
|
1997
1999
|
readOnlyComponent: N,
|
|
1998
2000
|
emptyValueComponent: z,
|
|
1999
2001
|
readOnlyType: "text",
|
|
2000
|
-
readOnlyValue: L !== void 0 ? L :
|
|
2002
|
+
readOnlyValue: L !== void 0 ? L : k,
|
|
2001
2003
|
readOnlyNativeProps: o,
|
|
2002
2004
|
activeComponent: (
|
|
2003
2005
|
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
2004
2006
|
/* @__PURE__ */ e(
|
|
2005
|
-
|
|
2007
|
+
Se,
|
|
2006
2008
|
{
|
|
2007
2009
|
ref: n,
|
|
2008
2010
|
classNames: T,
|
|
2009
2011
|
disabled: b,
|
|
2010
2012
|
value: L,
|
|
2011
|
-
defaultValue:
|
|
2013
|
+
defaultValue: k,
|
|
2012
2014
|
wrapperProps: {
|
|
2013
2015
|
"data-disabled": b ? "true" : void 0,
|
|
2014
|
-
"data-error":
|
|
2016
|
+
"data-error": u ? "true" : void 0
|
|
2015
2017
|
},
|
|
2016
2018
|
...O
|
|
2017
2019
|
}
|
|
@@ -2021,11 +2023,11 @@ const Or = "TextField-module__root___2ZYkG", zr = "TextField-module__input___RL-
|
|
|
2021
2023
|
);
|
|
2022
2024
|
}
|
|
2023
2025
|
);
|
|
2024
|
-
|
|
2025
|
-
const
|
|
2026
|
+
Dr.displayName = "TextField";
|
|
2027
|
+
const ya = (r) => /* @__PURE__ */ e("div", { ...r, children: "TimePicker" }), ha = (r) => /* @__PURE__ */ e("div", { ...r, children: "Timeline" }), Vr = $(function({ overStyled: o = !1, order: n = 1, ...s }, t) {
|
|
2026
2028
|
const a = v(s, o), c = a.className, l = `recursica_brand_typography_h${n}`, d = c ? `${l} ${c}` : l;
|
|
2027
2029
|
return /* @__PURE__ */ e(
|
|
2028
|
-
|
|
2030
|
+
To,
|
|
2029
2031
|
{
|
|
2030
2032
|
ref: t,
|
|
2031
2033
|
order: n,
|
|
@@ -2034,70 +2036,70 @@ const na = (r) => /* @__PURE__ */ e("div", { ...r, children: "TimePicker" }), la
|
|
|
2034
2036
|
}
|
|
2035
2037
|
);
|
|
2036
2038
|
});
|
|
2037
|
-
|
|
2038
|
-
const
|
|
2039
|
+
Vr.displayName = "Title";
|
|
2040
|
+
const fa = (r) => /* @__PURE__ */ e("div", { ...r, children: "Toast" }), Na = (r) => /* @__PURE__ */ e("div", { ...r, children: "Tooltip" }), $a = (r) => /* @__PURE__ */ e("div", { ...r, children: "TransferList" });
|
|
2039
2041
|
export {
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2042
|
+
Pe as Accordion,
|
|
2043
|
+
xe as AccordionControl,
|
|
2044
|
+
Oe as AccordionItem,
|
|
2045
|
+
we as AccordionPanel,
|
|
2046
|
+
Zr as Avatar,
|
|
2047
|
+
Hr as Badge,
|
|
2048
|
+
Xo as Breadcrumb,
|
|
2049
|
+
Kr as Button,
|
|
2050
|
+
Ur as Card,
|
|
2051
|
+
Ve as CardContent,
|
|
2052
|
+
De as CardFooter,
|
|
2053
|
+
je as CardHeader,
|
|
2054
|
+
Be as CardSection,
|
|
2055
|
+
He as Checkbox,
|
|
2056
|
+
Ze as CheckboxGroup,
|
|
2057
|
+
Gt as Chip,
|
|
2058
|
+
Yt as Container,
|
|
2059
|
+
Qr as DatePicker,
|
|
2060
|
+
Qt as Dropdown,
|
|
2061
|
+
be as EmptyValueRenderer,
|
|
2062
|
+
Jr as FileInput,
|
|
2063
|
+
ea as FileUpload,
|
|
2064
|
+
oa as Flex,
|
|
2063
2065
|
X as FormControlLayout,
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2066
|
+
or as Group,
|
|
2067
|
+
ta as HoverCard,
|
|
2068
|
+
qe as Label,
|
|
2069
|
+
Pt as Layer,
|
|
2070
|
+
ra as Link,
|
|
2071
|
+
rr as Loader,
|
|
2072
|
+
ae as Menu,
|
|
2073
|
+
aa as Modal,
|
|
2074
|
+
sa as NumberInput,
|
|
2075
|
+
na as Pagination,
|
|
2076
|
+
la as Panel,
|
|
2077
|
+
ca as Popover,
|
|
2078
|
+
lo as Radio,
|
|
2079
|
+
no as RadioGroup,
|
|
2080
|
+
gr as ReadOnlyBooleanField,
|
|
2081
|
+
Ye as ReadOnlyField,
|
|
2082
|
+
Cr as ReadOnlySwitchField,
|
|
2083
|
+
ue as ReadOnlyTextField,
|
|
2084
|
+
Xr as RecursicaThemeProvider,
|
|
2085
|
+
ia as Search,
|
|
2086
|
+
da as SegmentedControl,
|
|
2087
|
+
pa as Slider,
|
|
2088
|
+
wr as Stack,
|
|
2089
|
+
ma as Stepper,
|
|
2090
|
+
io as Switch,
|
|
2091
|
+
co as SwitchGroup,
|
|
2092
|
+
ua as Table,
|
|
2093
|
+
_a as Tabs,
|
|
2094
|
+
ba as Text,
|
|
2095
|
+
Fr as TextArea,
|
|
2096
|
+
Dr as TextField,
|
|
2097
|
+
ya as TimePicker,
|
|
2098
|
+
ha as Timeline,
|
|
2099
|
+
Vr as Title,
|
|
2100
|
+
fa as Toast,
|
|
2101
|
+
Na as Tooltip,
|
|
2102
|
+
$a as TransferList,
|
|
2103
|
+
oe as WithReadOnlyWrapper
|
|
2102
2104
|
};
|
|
2103
2105
|
//# sourceMappingURL=mantine-adapter.js.map
|