@recursica/mantine-adapter 0.19.0 → 0.20.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.css +1 -1
- package/dist/mantine-adapter.js +661 -658
- package/dist/mantine-adapter.js.map +1 -1
- package/dist/src/components/Stack/Stack.d.ts +9 -1
- package/dist/src/utils/filterStylingProps.d.ts +2 -0
- package/package.json +1 -1
- package/src/Introduction.stories.tsx +77 -103
- package/src/OverStyling.tsx +216 -171
- package/src/components/Button/Button.module.css +21 -4
- package/src/components/Button/Button.stories.tsx +14 -0
- package/src/components/Flex/Flex.tsx +9 -4
- package/src/components/Group/Group.tsx +5 -3
- package/src/components/Stack/Stack.tsx +9 -5
- package/src/utils/filterStylingProps.ts +17 -1
package/dist/mantine-adapter.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as r, jsxs as z, Fragment as Ne } from "react/jsx-runtime";
|
|
2
|
-
import L, { forwardRef as h, useId as
|
|
3
|
-
import { Accordion as
|
|
4
|
-
const
|
|
2
|
+
import L, { forwardRef as h, useId as gt, useEffect as Pt } from "react";
|
|
3
|
+
import { Accordion as Re, Avatar as wt, createPolymorphicComponent as Y, Badge as Tt, Breadcrumbs as xt, Button as St, Card as ke, Input as ao, Box as Ve, Checkbox as ro, Chip as At, Container as Wt, Select as Lt, Flex as It, Group as Ot, HoverCard as Ge, Anchor as zt, Loader as Rt, Menu as K, Modal as G, NumberInput as kt, Pagination as te, Drawer as se, Popover as qe, Radio as no, SegmentedControl as Mt, Stack as Bt, Stepper as je, Switch as lo, CheckIcon as Ft, CloseIcon as Et, Tabs as Me, Text as jt, Textarea as Dt, TimelineItem as Vt, Timeline as Gt, Title as qt, Notification as Ht, Tooltip as He } from "@mantine/core";
|
|
4
|
+
const Ut = [
|
|
5
5
|
"className",
|
|
6
6
|
"classNames",
|
|
7
7
|
"style",
|
|
@@ -45,7 +45,7 @@ const Gt = [
|
|
|
45
45
|
"mih",
|
|
46
46
|
"mah"
|
|
47
47
|
// Dimensions
|
|
48
|
-
],
|
|
48
|
+
], io = /* @__PURE__ */ new Set([
|
|
49
49
|
"m",
|
|
50
50
|
"my",
|
|
51
51
|
"mx",
|
|
@@ -60,7 +60,7 @@ const Gt = [
|
|
|
60
60
|
"left",
|
|
61
61
|
"bottom",
|
|
62
62
|
"right"
|
|
63
|
-
]),
|
|
63
|
+
]), Le = {
|
|
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)",
|
|
@@ -69,39 +69,45 @@ const Gt = [
|
|
|
69
69
|
"rec-xl": "var(--recursica_brand_dimensions_general_xl)",
|
|
70
70
|
"rec-2xl": "var(--recursica_brand_dimensions_general_2xl)"
|
|
71
71
|
};
|
|
72
|
+
function Ue(l) {
|
|
73
|
+
const e = { ...l };
|
|
74
|
+
for (const [a, s] of Object.entries(e))
|
|
75
|
+
typeof s == "string" && s.startsWith("rec-") && io.has(a) && s in Le && (e[a] = Le[s]);
|
|
76
|
+
return e;
|
|
77
|
+
}
|
|
72
78
|
function f(l, e) {
|
|
73
79
|
if (e)
|
|
74
80
|
return l;
|
|
75
81
|
const a = { ...l };
|
|
76
|
-
for (const s of
|
|
82
|
+
for (const s of Ut)
|
|
77
83
|
s in a && delete a[s];
|
|
78
84
|
for (const [s, t] of Object.entries(a))
|
|
79
|
-
typeof t == "string" && t.startsWith("rec-") &&
|
|
85
|
+
typeof t == "string" && t.startsWith("rec-") && io.has(s) && t in Le && (a[s] = Le[t]);
|
|
80
86
|
return a;
|
|
81
87
|
}
|
|
82
|
-
const
|
|
83
|
-
root:
|
|
84
|
-
item:
|
|
85
|
-
noDivider:
|
|
86
|
-
control:
|
|
87
|
-
label:
|
|
88
|
-
chevron:
|
|
89
|
-
iconLeftWrapper:
|
|
90
|
-
panel:
|
|
91
|
-
content:
|
|
92
|
-
},
|
|
88
|
+
const Zt = "Accordion-module__root___Dem6d", Yt = "Accordion-module__item___7ryVk", Kt = "Accordion-module__noDivider___Ni2tT", Qt = "Accordion-module__control___b4wgX", Jt = "Accordion-module__label___Ss7uW", Xt = "Accordion-module__chevron___i-HVZ", es = "Accordion-module__iconLeftWrapper___5oLen", os = "Accordion-module__panel___Wx50w", ts = "Accordion-module__content___PEM9t", X = {
|
|
89
|
+
root: Zt,
|
|
90
|
+
item: Yt,
|
|
91
|
+
noDivider: Kt,
|
|
92
|
+
control: Qt,
|
|
93
|
+
label: Jt,
|
|
94
|
+
chevron: Xt,
|
|
95
|
+
iconLeftWrapper: es,
|
|
96
|
+
panel: os,
|
|
97
|
+
content: ts
|
|
98
|
+
}, co = function({
|
|
93
99
|
variant: e = "unstyled",
|
|
94
100
|
overStyled: a = !1,
|
|
95
101
|
...s
|
|
96
102
|
}) {
|
|
97
103
|
const t = f(s, a), o = {
|
|
98
|
-
root:
|
|
99
|
-
item:
|
|
100
|
-
control:
|
|
101
|
-
label:
|
|
102
|
-
chevron:
|
|
103
|
-
panel:
|
|
104
|
-
content:
|
|
104
|
+
root: X.root,
|
|
105
|
+
item: X.item,
|
|
106
|
+
control: X.control,
|
|
107
|
+
label: X.label,
|
|
108
|
+
chevron: X.chevron,
|
|
109
|
+
panel: X.panel,
|
|
110
|
+
content: X.content
|
|
105
111
|
}, n = t.classNames;
|
|
106
112
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
107
113
|
const c = n;
|
|
@@ -111,7 +117,7 @@ const Ht = "Accordion-module__root___Dem6d", Ut = "Accordion-module__item___7ryV
|
|
|
111
117
|
}
|
|
112
118
|
const i = t.className;
|
|
113
119
|
return /* @__PURE__ */ r(
|
|
114
|
-
|
|
120
|
+
Re,
|
|
115
121
|
{
|
|
116
122
|
variant: e,
|
|
117
123
|
className: i,
|
|
@@ -120,41 +126,41 @@ const Ht = "Accordion-module__root___Dem6d", Ut = "Accordion-module__item___7ryV
|
|
|
120
126
|
}
|
|
121
127
|
);
|
|
122
128
|
};
|
|
123
|
-
|
|
124
|
-
const
|
|
125
|
-
const c = f(n, o), d = c.className, p = [s ? void 0 :
|
|
129
|
+
co.displayName = "Accordion";
|
|
130
|
+
const po = h(function({ title: e, leftIcon: a, divider: s = !0, children: t, overStyled: o = !1, ...n }, i) {
|
|
131
|
+
const c = f(n, o), d = c.className, p = [s ? void 0 : X.noDivider, d].filter(Boolean).join(" ") || void 0;
|
|
126
132
|
return /* @__PURE__ */ r(
|
|
127
|
-
|
|
133
|
+
Re.Item,
|
|
128
134
|
{
|
|
129
135
|
ref: i,
|
|
130
136
|
className: p,
|
|
131
137
|
...c,
|
|
132
138
|
children: e ? /* @__PURE__ */ z(Ne, { children: [
|
|
133
|
-
/* @__PURE__ */ r(
|
|
134
|
-
/* @__PURE__ */ r(
|
|
139
|
+
/* @__PURE__ */ r(Ze, { leftIcon: a, children: e }),
|
|
140
|
+
/* @__PURE__ */ r(Ye, { children: t })
|
|
135
141
|
] }) : t
|
|
136
142
|
}
|
|
137
143
|
);
|
|
138
144
|
});
|
|
139
|
-
|
|
140
|
-
const
|
|
145
|
+
po.displayName = "AccordionItem";
|
|
146
|
+
const Ze = h(function({ leftIcon: e, children: a, overStyled: s = !1, ...t }, o) {
|
|
141
147
|
const n = f(t, s), i = n.className;
|
|
142
148
|
return /* @__PURE__ */ r(
|
|
143
|
-
|
|
149
|
+
Re.Control,
|
|
144
150
|
{
|
|
145
151
|
ref: o,
|
|
146
152
|
className: i,
|
|
147
|
-
icon: e ? /* @__PURE__ */ r("span", { className:
|
|
153
|
+
icon: e ? /* @__PURE__ */ r("span", { className: X.iconLeftWrapper, "aria-hidden": !0, children: e }) : void 0,
|
|
148
154
|
...n,
|
|
149
155
|
children: a
|
|
150
156
|
}
|
|
151
157
|
);
|
|
152
158
|
});
|
|
153
|
-
|
|
154
|
-
const
|
|
159
|
+
Ze.displayName = "AccordionControl";
|
|
160
|
+
const Ye = h(function({ overStyled: e = !1, ...a }, s) {
|
|
155
161
|
const t = f(a, e), o = t.className;
|
|
156
162
|
return /* @__PURE__ */ r(
|
|
157
|
-
|
|
163
|
+
Re.Panel,
|
|
158
164
|
{
|
|
159
165
|
ref: s,
|
|
160
166
|
className: o,
|
|
@@ -162,18 +168,18 @@ const Ue = h(function({ overStyled: e = !1, ...a }, s) {
|
|
|
162
168
|
}
|
|
163
169
|
);
|
|
164
170
|
});
|
|
165
|
-
|
|
166
|
-
const
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
const
|
|
171
|
-
root:
|
|
172
|
-
iconWrapper:
|
|
173
|
-
textWrapper:
|
|
174
|
-
image:
|
|
175
|
-
placeholder:
|
|
176
|
-
},
|
|
171
|
+
Ye.displayName = "AccordionPanel";
|
|
172
|
+
const Ke = co;
|
|
173
|
+
Ke.Item = po;
|
|
174
|
+
Ke.Control = Ze;
|
|
175
|
+
Ke.Panel = Ye;
|
|
176
|
+
const ss = "Avatar-module__root___fXu-J", as = "Avatar-module__iconWrapper___ojly2", rs = "Avatar-module__textWrapper___zp-jD", ns = "Avatar-module__image___ieqGp", ls = "Avatar-module__placeholder___IDW7-", U = {
|
|
177
|
+
root: ss,
|
|
178
|
+
iconWrapper: as,
|
|
179
|
+
textWrapper: rs,
|
|
180
|
+
image: ns,
|
|
181
|
+
placeholder: ls
|
|
182
|
+
}, mo = h(function({
|
|
177
183
|
size: e = "default",
|
|
178
184
|
variant: a = "solid",
|
|
179
185
|
icon: s,
|
|
@@ -204,7 +210,7 @@ const os = "Avatar-module__root___fXu-J", ts = "Avatar-module__iconWrapper___ojl
|
|
|
204
210
|
}
|
|
205
211
|
const C = N.className;
|
|
206
212
|
return /* @__PURE__ */ r(
|
|
207
|
-
|
|
213
|
+
wt,
|
|
208
214
|
{
|
|
209
215
|
ref: c,
|
|
210
216
|
className: C,
|
|
@@ -220,22 +226,22 @@ const os = "Avatar-module__root___fXu-J", ts = "Avatar-module__iconWrapper___ojl
|
|
|
220
226
|
}
|
|
221
227
|
);
|
|
222
228
|
});
|
|
223
|
-
|
|
224
|
-
const
|
|
225
|
-
root:
|
|
226
|
-
},
|
|
229
|
+
mo.displayName = "Avatar";
|
|
230
|
+
const Rn = Y(mo), is = "Badge-module__root___5osNT", Q = {
|
|
231
|
+
root: is
|
|
232
|
+
}, _o = h(function({ variant: e = "primary-color", overStyled: a = !1, ...s }, t) {
|
|
227
233
|
const o = f(s, a), n = {
|
|
228
|
-
root:
|
|
229
|
-
section:
|
|
230
|
-
label:
|
|
234
|
+
root: Q.root,
|
|
235
|
+
section: Q.section,
|
|
236
|
+
label: Q.label
|
|
231
237
|
}, i = o.classNames;
|
|
232
238
|
if (i && typeof i == "object" && !Array.isArray(i)) {
|
|
233
239
|
const p = i;
|
|
234
|
-
n.root = p.root ? `${
|
|
240
|
+
n.root = p.root ? `${Q.root} ${p.root}` : Q.root, n.section = p.section ?? Q.section, n.label = p.label ?? Q.label;
|
|
235
241
|
}
|
|
236
|
-
const c = o.className, d = c ? `${
|
|
242
|
+
const c = o.className, d = c ? `${Q.root} ${c}` : Q.root;
|
|
237
243
|
return /* @__PURE__ */ r(
|
|
238
|
-
|
|
244
|
+
Tt,
|
|
239
245
|
{
|
|
240
246
|
ref: t,
|
|
241
247
|
variant: "filled",
|
|
@@ -246,11 +252,11 @@ const zn = oe(co), ns = "Badge-module__root___5osNT", K = {
|
|
|
246
252
|
}
|
|
247
253
|
);
|
|
248
254
|
});
|
|
249
|
-
|
|
250
|
-
const
|
|
251
|
-
root:
|
|
252
|
-
separator:
|
|
253
|
-
},
|
|
255
|
+
_o.displayName = "Badge";
|
|
256
|
+
const kn = Y(_o), cs = "Breadcrumb-module__root___x-9ln", ds = "Breadcrumb-module__separator___qrUX-", ne = {
|
|
257
|
+
root: cs,
|
|
258
|
+
separator: ds
|
|
259
|
+
}, ps = h(
|
|
254
260
|
function({ overStyled: e = !1, separator: a = ">", ...s }, t) {
|
|
255
261
|
const o = f(
|
|
256
262
|
{ separator: a, ...s },
|
|
@@ -265,7 +271,7 @@ const Rn = oe(po), ls = "Breadcrumb-module__root___x-9ln", is = "Breadcrumb-modu
|
|
|
265
271
|
}
|
|
266
272
|
const c = o.className, d = c ? `${ne.root} ${c}` : ne.root;
|
|
267
273
|
return /* @__PURE__ */ r(
|
|
268
|
-
|
|
274
|
+
xt,
|
|
269
275
|
{
|
|
270
276
|
ref: t,
|
|
271
277
|
...o,
|
|
@@ -275,18 +281,18 @@ const Rn = oe(po), ls = "Breadcrumb-module__root___x-9ln", is = "Breadcrumb-modu
|
|
|
275
281
|
);
|
|
276
282
|
}
|
|
277
283
|
);
|
|
278
|
-
|
|
279
|
-
const
|
|
280
|
-
root:
|
|
281
|
-
label:
|
|
282
|
-
labelText:
|
|
283
|
-
iconWrapper:
|
|
284
|
-
section:
|
|
284
|
+
ps.displayName = "Breadcrumb";
|
|
285
|
+
const ms = "Button-module__root___Q2R8-", _s = "Button-module__label___UJ3Zt", us = "Button-module__labelText___rFV5p", bs = "Button-module__iconWrapper___uEKPa", ys = "Button-module__section___f2mKr", Z = {
|
|
286
|
+
root: ms,
|
|
287
|
+
label: _s,
|
|
288
|
+
labelText: us,
|
|
289
|
+
iconWrapper: bs,
|
|
290
|
+
section: ys
|
|
285
291
|
};
|
|
286
|
-
function
|
|
292
|
+
function fs(l) {
|
|
287
293
|
return l == null || l === "" ? !1 : typeof l == "string" ? l.trim() !== "" : !0;
|
|
288
294
|
}
|
|
289
|
-
const
|
|
295
|
+
const uo = h(function({
|
|
290
296
|
variant: e = "solid",
|
|
291
297
|
size: a = "default",
|
|
292
298
|
icon: s,
|
|
@@ -303,7 +309,7 @@ const mo = h(function({
|
|
|
303
309
|
small: "sm"
|
|
304
310
|
}, p = f(n, o), m = p;
|
|
305
311
|
delete m.fullWidth;
|
|
306
|
-
const N = !!s || !!m.leftSection, _ = !!m.rightSection, u = (N || _) && !
|
|
312
|
+
const N = !!s || !!m.leftSection, _ = !!m.rightSection, u = (N || _) && !fs(t);
|
|
307
313
|
typeof process < "u" && process.env.NODE_ENV !== "production" && u && !m["aria-label"] && console.warn(
|
|
308
314
|
'[Recursica Button] Icon-only buttons must provide an accessible name. Pass aria-label (e.g. aria-label="Submit").'
|
|
309
315
|
);
|
|
@@ -318,7 +324,7 @@ const mo = h(function({
|
|
|
318
324
|
}
|
|
319
325
|
const $ = m.className, g = $ ? `${Z.root} ${$}` : Z.root;
|
|
320
326
|
return /* @__PURE__ */ r(
|
|
321
|
-
|
|
327
|
+
St,
|
|
322
328
|
{
|
|
323
329
|
ref: i,
|
|
324
330
|
className: g,
|
|
@@ -334,18 +340,18 @@ const mo = h(function({
|
|
|
334
340
|
}
|
|
335
341
|
);
|
|
336
342
|
});
|
|
337
|
-
|
|
338
|
-
const
|
|
339
|
-
|
|
340
|
-
),
|
|
341
|
-
root:
|
|
342
|
-
header:
|
|
343
|
-
footer:
|
|
344
|
-
section:
|
|
345
|
-
content:
|
|
346
|
-
},
|
|
343
|
+
uo.displayName = "Button";
|
|
344
|
+
const Mn = Y(
|
|
345
|
+
uo
|
|
346
|
+
), Ns = "Card-module__root___c9KvZ", hs = "Card-module__header___PTXf2 recursica_brand_typography_h3", $s = "Card-module__footer___Mu-JC", vs = "Card-module__section___BRT8H", Cs = "Card-module__content___oFIQa", oe = {
|
|
347
|
+
root: Ns,
|
|
348
|
+
header: hs,
|
|
349
|
+
footer: $s,
|
|
350
|
+
section: vs,
|
|
351
|
+
content: Cs
|
|
352
|
+
}, bo = h(function({ overStyled: e = !1, ...a }, s) {
|
|
347
353
|
const t = f(a, e), o = {
|
|
348
|
-
root:
|
|
354
|
+
root: oe.root
|
|
349
355
|
}, n = t.classNames;
|
|
350
356
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
351
357
|
const c = n;
|
|
@@ -355,7 +361,7 @@ const kn = oe(
|
|
|
355
361
|
}
|
|
356
362
|
const i = t.className;
|
|
357
363
|
return /* @__PURE__ */ r(
|
|
358
|
-
|
|
364
|
+
ke,
|
|
359
365
|
{
|
|
360
366
|
ref: s,
|
|
361
367
|
className: i,
|
|
@@ -364,76 +370,76 @@ const kn = oe(
|
|
|
364
370
|
}
|
|
365
371
|
);
|
|
366
372
|
});
|
|
367
|
-
|
|
368
|
-
const
|
|
373
|
+
bo.displayName = "Card";
|
|
374
|
+
const yo = h(
|
|
369
375
|
function({ overStyled: e = !1, ...a }, s) {
|
|
370
376
|
const t = f(a, e), o = t.className;
|
|
371
377
|
return /* @__PURE__ */ r(
|
|
372
|
-
|
|
378
|
+
ke.Section,
|
|
373
379
|
{
|
|
374
380
|
ref: s,
|
|
375
|
-
className: o ? `${
|
|
381
|
+
className: o ? `${oe.section} ${o}` : oe.section,
|
|
376
382
|
...t
|
|
377
383
|
}
|
|
378
384
|
);
|
|
379
385
|
}
|
|
380
386
|
);
|
|
381
|
-
|
|
382
|
-
const
|
|
387
|
+
yo.displayName = "CardSection";
|
|
388
|
+
const fo = h(
|
|
383
389
|
function({ overStyled: e = !1, ...a }, s) {
|
|
384
390
|
const t = f(a, e), o = t.className;
|
|
385
391
|
return /* @__PURE__ */ r(
|
|
386
|
-
|
|
392
|
+
ke.Section,
|
|
387
393
|
{
|
|
388
394
|
ref: s,
|
|
389
|
-
className: o ? `${
|
|
395
|
+
className: o ? `${oe.header} ${o}` : oe.header,
|
|
390
396
|
...t
|
|
391
397
|
}
|
|
392
398
|
);
|
|
393
399
|
}
|
|
394
400
|
);
|
|
395
|
-
|
|
396
|
-
const
|
|
401
|
+
fo.displayName = "CardHeader";
|
|
402
|
+
const No = h(
|
|
397
403
|
function({ overStyled: e = !1, ...a }, s) {
|
|
398
404
|
const t = f(a, e), o = t.className;
|
|
399
405
|
return /* @__PURE__ */ r(
|
|
400
|
-
|
|
406
|
+
ke.Section,
|
|
401
407
|
{
|
|
402
408
|
ref: s,
|
|
403
|
-
className: o ? `${
|
|
409
|
+
className: o ? `${oe.footer} ${o}` : oe.footer,
|
|
404
410
|
...t
|
|
405
411
|
}
|
|
406
412
|
);
|
|
407
413
|
}
|
|
408
414
|
);
|
|
409
|
-
|
|
410
|
-
const
|
|
415
|
+
No.displayName = "CardFooter";
|
|
416
|
+
const ho = h(
|
|
411
417
|
function({ overStyled: e = !1, ...a }, s) {
|
|
412
418
|
const t = f(a, e), o = t.className;
|
|
413
419
|
return /* @__PURE__ */ r(
|
|
414
420
|
"div",
|
|
415
421
|
{
|
|
416
422
|
ref: s,
|
|
417
|
-
className: o ? `${
|
|
423
|
+
className: o ? `${oe.content} ${o}` : oe.content,
|
|
418
424
|
...t
|
|
419
425
|
}
|
|
420
426
|
);
|
|
421
427
|
}
|
|
422
428
|
);
|
|
423
|
-
|
|
424
|
-
const
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
const
|
|
430
|
-
root:
|
|
431
|
-
labelText:
|
|
432
|
-
required:
|
|
433
|
-
optionalText:
|
|
434
|
-
actionAreaWrapper:
|
|
435
|
-
editIconWrapper:
|
|
436
|
-
},
|
|
429
|
+
ho.displayName = "CardContent";
|
|
430
|
+
const $o = Y(bo), Be = $o;
|
|
431
|
+
Be.Section = yo;
|
|
432
|
+
Be.Header = fo;
|
|
433
|
+
Be.Footer = No;
|
|
434
|
+
Be.Content = ho;
|
|
435
|
+
const Bn = $o, gs = "Label-module__root___e6HXZ", Ps = "Label-module__labelText___rieFR", ws = "Label-module__required___Ggrzc", Ts = "Label-module__optionalText___Y2yun", xs = "Label-module__actionAreaWrapper___ELoZK", Ss = "Label-module__editIconWrapper___NG2xW", H = {
|
|
436
|
+
root: gs,
|
|
437
|
+
labelText: Ps,
|
|
438
|
+
required: ws,
|
|
439
|
+
optionalText: Ts,
|
|
440
|
+
actionAreaWrapper: xs,
|
|
441
|
+
editIconWrapper: Ss
|
|
442
|
+
}, vo = h(function({
|
|
437
443
|
labelSize: e = "default",
|
|
438
444
|
labelAlignment: a,
|
|
439
445
|
required: s = !1,
|
|
@@ -458,7 +464,7 @@ const Mn = No, vs = "Label-module__root___e6HXZ", Cs = "Label-module__labelText_
|
|
|
458
464
|
}
|
|
459
465
|
const g = b.className, y = g ? `${H.root} ${g}` : H.root;
|
|
460
466
|
return /* @__PURE__ */ z(
|
|
461
|
-
|
|
467
|
+
ao.Label,
|
|
462
468
|
{
|
|
463
469
|
ref: m,
|
|
464
470
|
className: y,
|
|
@@ -503,11 +509,11 @@ const Mn = No, vs = "Label-module__root___e6HXZ", Cs = "Label-module__labelText_
|
|
|
503
509
|
}
|
|
504
510
|
);
|
|
505
511
|
});
|
|
506
|
-
|
|
507
|
-
const
|
|
508
|
-
root:
|
|
509
|
-
leftSection:
|
|
510
|
-
rightSection:
|
|
512
|
+
vo.displayName = "Label";
|
|
513
|
+
const As = "FormControlLayout-module__root___yNDhZ", Ws = "FormControlLayout-module__leftSection___GBM1r", Ls = "FormControlLayout-module__rightSection___bcL4v", Se = {
|
|
514
|
+
root: As,
|
|
515
|
+
leftSection: Ws,
|
|
516
|
+
rightSection: Ls
|
|
511
517
|
}, ce = h(function({
|
|
512
518
|
formLayout: e = "stacked",
|
|
513
519
|
labelSize: a = "default",
|
|
@@ -540,11 +546,11 @@ const xs = "FormControlLayout-module__root___yNDhZ", Ss = "FormControlLayout-mod
|
|
|
540
546
|
);
|
|
541
547
|
});
|
|
542
548
|
ce.displayName = "FormControlLayout";
|
|
543
|
-
const
|
|
544
|
-
root:
|
|
545
|
-
textWrapper:
|
|
546
|
-
iconWrapper:
|
|
547
|
-
},
|
|
549
|
+
const Is = "AssistiveElement-module__root___WhQ43", Os = "AssistiveElement-module__textWrapper___sfy5E", zs = "AssistiveElement-module__iconWrapper___gObRF", Ee = {
|
|
550
|
+
root: Is,
|
|
551
|
+
textWrapper: Os,
|
|
552
|
+
iconWrapper: zs
|
|
553
|
+
}, Rs = () => /* @__PURE__ */ z(
|
|
548
554
|
"svg",
|
|
549
555
|
{
|
|
550
556
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -560,7 +566,7 @@ const Ws = "AssistiveElement-module__root___WhQ43", Ls = "AssistiveElement-modul
|
|
|
560
566
|
/* @__PURE__ */ r("path", { d: "M12 8h.01" })
|
|
561
567
|
]
|
|
562
568
|
}
|
|
563
|
-
),
|
|
569
|
+
), ks = () => /* @__PURE__ */ z(
|
|
564
570
|
"svg",
|
|
565
571
|
{
|
|
566
572
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -576,7 +582,7 @@ const Ws = "AssistiveElement-module__root___WhQ43", Ls = "AssistiveElement-modul
|
|
|
576
582
|
/* @__PURE__ */ r("path", { d: "M12 17h.01" })
|
|
577
583
|
]
|
|
578
584
|
}
|
|
579
|
-
),
|
|
585
|
+
), De = h(function({
|
|
580
586
|
assistiveVariant: e = "help",
|
|
581
587
|
assistiveWithIcon: a = !0,
|
|
582
588
|
children: s,
|
|
@@ -584,7 +590,7 @@ const Ws = "AssistiveElement-module__root___WhQ43", Ls = "AssistiveElement-modul
|
|
|
584
590
|
overStyled: o = !1,
|
|
585
591
|
...n
|
|
586
592
|
}, i) {
|
|
587
|
-
const d = f(n, o), p =
|
|
593
|
+
const d = f(n, o), p = Ee.root, m = t ? `${p} ${t}` : p, N = e === "error" ? ks : Rs;
|
|
588
594
|
return /* @__PURE__ */ z(
|
|
589
595
|
"div",
|
|
590
596
|
{
|
|
@@ -594,16 +600,16 @@ const Ws = "AssistiveElement-module__root___WhQ43", Ls = "AssistiveElement-modul
|
|
|
594
600
|
style: d.style,
|
|
595
601
|
...d,
|
|
596
602
|
children: [
|
|
597
|
-
a && /* @__PURE__ */ r("span", { className:
|
|
598
|
-
/* @__PURE__ */ r("span", { className:
|
|
603
|
+
a && /* @__PURE__ */ r("span", { className: Ee.iconWrapper, children: /* @__PURE__ */ r(N, {}) }),
|
|
604
|
+
/* @__PURE__ */ r("span", { className: Ee.textWrapper, children: s })
|
|
599
605
|
]
|
|
600
606
|
}
|
|
601
607
|
);
|
|
602
608
|
});
|
|
603
|
-
|
|
604
|
-
const
|
|
605
|
-
inputSection:
|
|
606
|
-
},
|
|
609
|
+
De.displayName = "AssistiveElement";
|
|
610
|
+
const Ms = "FormControlWrapper-module__inputSection___HenXk", Xe = {
|
|
611
|
+
inputSection: Ms
|
|
612
|
+
}, Ie = h(function({
|
|
607
613
|
formLayout: e,
|
|
608
614
|
labelSize: a,
|
|
609
615
|
labelAlignment: s,
|
|
@@ -628,14 +634,14 @@ const Rs = "FormControlWrapper-module__inputSection___HenXk", Je = {
|
|
|
628
634
|
// Extracted safely preventing bleeding into HTML domains
|
|
629
635
|
...B
|
|
630
636
|
}, A) {
|
|
631
|
-
const T =
|
|
637
|
+
const T = gt(), R = $ || `recursica-fc-${T}`, M = p || d, W = M ? `${R}-assistive` : void 0, w = u ? `${R}-error` : void 0, k = f(B, S), me = y || k.className, xe = Xe.root, q = me ? `${xe} ${me}` : xe, vt = L.isValidElement(g) ? L.cloneElement(
|
|
632
638
|
g,
|
|
633
639
|
{
|
|
634
640
|
...M && !g.props["aria-describedby"] ? { "aria-describedby": W } : {},
|
|
635
641
|
...u && !g.props["aria-errormessage"] ? { "aria-errormessage": w } : {}
|
|
636
642
|
}
|
|
637
|
-
) : g,
|
|
638
|
-
|
|
643
|
+
) : g, Ct = c ? /* @__PURE__ */ r(
|
|
644
|
+
vo,
|
|
639
645
|
{
|
|
640
646
|
id: R,
|
|
641
647
|
labelAlignment: s,
|
|
@@ -657,12 +663,12 @@ const Rs = "FormControlWrapper-module__inputSection___HenXk", Je = {
|
|
|
657
663
|
labelSize: a,
|
|
658
664
|
controlMaxWidth: N,
|
|
659
665
|
controlMinWidth: _,
|
|
660
|
-
leftSection:
|
|
666
|
+
leftSection: Ct,
|
|
661
667
|
...k,
|
|
662
|
-
children: /* @__PURE__ */ z("div", { className:
|
|
663
|
-
|
|
668
|
+
children: /* @__PURE__ */ z("div", { className: Xe.inputSection, children: [
|
|
669
|
+
vt,
|
|
664
670
|
u && /* @__PURE__ */ r(
|
|
665
|
-
|
|
671
|
+
De,
|
|
666
672
|
{
|
|
667
673
|
id: w,
|
|
668
674
|
assistiveVariant: "error",
|
|
@@ -671,7 +677,7 @@ const Rs = "FormControlWrapper-module__inputSection___HenXk", Je = {
|
|
|
671
677
|
}
|
|
672
678
|
),
|
|
673
679
|
!u && M && /* @__PURE__ */ r(
|
|
674
|
-
|
|
680
|
+
De,
|
|
675
681
|
{
|
|
676
682
|
id: W,
|
|
677
683
|
assistiveVariant: "help",
|
|
@@ -683,11 +689,11 @@ const Rs = "FormControlWrapper-module__inputSection___HenXk", Je = {
|
|
|
683
689
|
}
|
|
684
690
|
);
|
|
685
691
|
});
|
|
686
|
-
|
|
687
|
-
const
|
|
688
|
-
root:
|
|
689
|
-
contents:
|
|
690
|
-
},
|
|
692
|
+
Ie.displayName = "FormControlWrapper";
|
|
693
|
+
const Bs = "_root_1qhn7_3", Fs = "_contents_1qhn7_18", ye = {
|
|
694
|
+
root: Bs,
|
|
695
|
+
contents: Fs
|
|
696
|
+
}, Es = h(function({ layer: l, contentsOnly: e, children: a, className: s, style: t, ...o }, n) {
|
|
691
697
|
const i = e ? s ? `${ye.root} ${ye.contents} ${s}` : `${ye.root} ${ye.contents}` : s ? `${ye.root} ${s}` : ye.root;
|
|
692
698
|
return /* @__PURE__ */ r(
|
|
693
699
|
"div",
|
|
@@ -701,24 +707,24 @@ const ks = "_root_1qhn7_3", Ms = "_contents_1qhn7_18", ye = {
|
|
|
701
707
|
}
|
|
702
708
|
);
|
|
703
709
|
});
|
|
704
|
-
|
|
705
|
-
const
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
const
|
|
709
|
-
function
|
|
710
|
+
Es.displayName = "Layer";
|
|
711
|
+
const Oe = ({ emptyText: l = "N/A" }) => /* @__PURE__ */ r(L.Fragment, { children: l });
|
|
712
|
+
Oe.displayName = "EmptyValueRenderer";
|
|
713
|
+
Oe.check = (l) => l == null || l === "" || Array.isArray(l) && l.length === 0;
|
|
714
|
+
const eo = "data-recursica-theme";
|
|
715
|
+
function Fn({
|
|
710
716
|
children: l,
|
|
711
717
|
theme: e = "light"
|
|
712
718
|
}) {
|
|
713
|
-
return
|
|
719
|
+
return Pt(() => {
|
|
714
720
|
const a = document.documentElement;
|
|
715
|
-
return a.setAttribute(
|
|
716
|
-
a.removeAttribute(
|
|
721
|
+
return a.setAttribute(eo, e), () => {
|
|
722
|
+
a.removeAttribute(eo);
|
|
717
723
|
};
|
|
718
724
|
}, [e]), /* @__PURE__ */ r(Ne, { children: l });
|
|
719
725
|
}
|
|
720
|
-
const
|
|
721
|
-
textField:
|
|
726
|
+
const js = "ReadOnlyField-module__textField___qKn25", ze = {
|
|
727
|
+
textField: js
|
|
722
728
|
}, We = ({
|
|
723
729
|
value: l,
|
|
724
730
|
overStyled: e = !1,
|
|
@@ -726,20 +732,20 @@ const Fs = "ReadOnlyField-module__textField___qKn25", Oe = {
|
|
|
726
732
|
}) => {
|
|
727
733
|
const s = f(a, e), t = s.className;
|
|
728
734
|
return /* @__PURE__ */ r(
|
|
729
|
-
|
|
735
|
+
Ve,
|
|
730
736
|
{
|
|
731
737
|
component: "p",
|
|
732
|
-
className: t ? `${
|
|
738
|
+
className: t ? `${ze.textField} ${t}` : ze.textField,
|
|
733
739
|
...s,
|
|
734
740
|
children: l != null ? L.isValidElement(l) ? l : Array.isArray(l) ? l.join(", ") : String(l) : ""
|
|
735
741
|
}
|
|
736
742
|
);
|
|
737
743
|
};
|
|
738
744
|
We.displayName = "ReadOnlyTextField";
|
|
739
|
-
const
|
|
745
|
+
const Co = h(
|
|
740
746
|
function({ value: e, type: a = "text", emptyValueComponent: s, overStyled: t = !1, ...o }, n) {
|
|
741
747
|
let i = null;
|
|
742
|
-
const c = f(o, t), d = s ||
|
|
748
|
+
const c = f(o, t), d = s || Oe, m = (d.check ? d.check(e) : Oe.check(e)) ? /* @__PURE__ */ r(d, { value: e }) : e;
|
|
743
749
|
switch (a) {
|
|
744
750
|
case "boolean":
|
|
745
751
|
i = /* @__PURE__ */ r(
|
|
@@ -771,7 +777,7 @@ const $o = h(
|
|
|
771
777
|
break;
|
|
772
778
|
}
|
|
773
779
|
return /* @__PURE__ */ r(
|
|
774
|
-
|
|
780
|
+
Ie,
|
|
775
781
|
{
|
|
776
782
|
ref: n,
|
|
777
783
|
overStyled: t,
|
|
@@ -781,7 +787,7 @@ const $o = h(
|
|
|
781
787
|
);
|
|
782
788
|
}
|
|
783
789
|
);
|
|
784
|
-
|
|
790
|
+
Co.displayName = "ReadOnlyField";
|
|
785
791
|
const de = h(function({
|
|
786
792
|
readOnly: e,
|
|
787
793
|
readOnlyComponent: a,
|
|
@@ -795,7 +801,7 @@ const de = h(function({
|
|
|
795
801
|
...p
|
|
796
802
|
}, m) {
|
|
797
803
|
return e ? a ? /* @__PURE__ */ r(
|
|
798
|
-
|
|
804
|
+
Ie,
|
|
799
805
|
{
|
|
800
806
|
ref: m,
|
|
801
807
|
...p,
|
|
@@ -804,7 +810,7 @@ const de = h(function({
|
|
|
804
810
|
children: /* @__PURE__ */ r(a, { ...o })
|
|
805
811
|
}
|
|
806
812
|
) : /* @__PURE__ */ r(
|
|
807
|
-
|
|
813
|
+
Co,
|
|
808
814
|
{
|
|
809
815
|
ref: m,
|
|
810
816
|
type: s,
|
|
@@ -815,7 +821,7 @@ const de = h(function({
|
|
|
815
821
|
...p
|
|
816
822
|
}
|
|
817
823
|
) : /* @__PURE__ */ r(
|
|
818
|
-
|
|
824
|
+
Ie,
|
|
819
825
|
{
|
|
820
826
|
ref: m,
|
|
821
827
|
...p,
|
|
@@ -826,16 +832,16 @@ const de = h(function({
|
|
|
826
832
|
);
|
|
827
833
|
});
|
|
828
834
|
de.displayName = "WithReadOnlyWrapper";
|
|
829
|
-
const
|
|
830
|
-
groupRoot:
|
|
831
|
-
root:
|
|
832
|
-
body:
|
|
833
|
-
inner:
|
|
834
|
-
input:
|
|
835
|
-
icon:
|
|
836
|
-
labelWrapper:
|
|
837
|
-
label:
|
|
838
|
-
},
|
|
835
|
+
const Ds = "Checkbox-module__groupRoot___cBS0o", Vs = "Checkbox-module__root___mY3qk", Gs = "Checkbox-module__body___5yC7q", qs = "Checkbox-module__inner___rTke4", Hs = "Checkbox-module__input___2kt-h", Us = "Checkbox-module__icon___-O7i6", Zs = "Checkbox-module__labelWrapper___GpZkr", Ys = "Checkbox-module__label___cwRtI", I = {
|
|
836
|
+
groupRoot: Ds,
|
|
837
|
+
root: Vs,
|
|
838
|
+
body: Gs,
|
|
839
|
+
inner: qs,
|
|
840
|
+
input: Hs,
|
|
841
|
+
icon: Us,
|
|
842
|
+
labelWrapper: Zs,
|
|
843
|
+
label: Ys
|
|
844
|
+
}, go = h(
|
|
839
845
|
function(e, a) {
|
|
840
846
|
const {
|
|
841
847
|
overStyled: s = !1,
|
|
@@ -895,7 +901,7 @@ const Es = "Checkbox-module__groupRoot___cBS0o", js = "Checkbox-module__root___m
|
|
|
895
901
|
readOnlyValue: T !== void 0 ? T : R,
|
|
896
902
|
readOnlyNativeProps: e,
|
|
897
903
|
activeComponent: /* @__PURE__ */ r(
|
|
898
|
-
|
|
904
|
+
ro.Group,
|
|
899
905
|
{
|
|
900
906
|
ref: a,
|
|
901
907
|
...W,
|
|
@@ -911,8 +917,8 @@ const Es = "Checkbox-module__groupRoot___cBS0o", js = "Checkbox-module__root___m
|
|
|
911
917
|
);
|
|
912
918
|
}
|
|
913
919
|
);
|
|
914
|
-
|
|
915
|
-
const
|
|
920
|
+
go.displayName = "CheckboxGroup";
|
|
921
|
+
const Po = h(
|
|
916
922
|
function(e, a) {
|
|
917
923
|
const {
|
|
918
924
|
overStyled: s = !1,
|
|
@@ -961,7 +967,7 @@ const Co = h(
|
|
|
961
967
|
) : /* @__PURE__ */ r(Ne, { children: v });
|
|
962
968
|
}
|
|
963
969
|
const g = /* @__PURE__ */ r(
|
|
964
|
-
|
|
970
|
+
ro,
|
|
965
971
|
{
|
|
966
972
|
ref: a,
|
|
967
973
|
className: $,
|
|
@@ -982,18 +988,18 @@ const Co = h(
|
|
|
982
988
|
) : g;
|
|
983
989
|
}
|
|
984
990
|
);
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
const
|
|
988
|
-
root:
|
|
989
|
-
label:
|
|
990
|
-
mantineIconWrapper:
|
|
991
|
-
innerWrapper:
|
|
992
|
-
children:
|
|
993
|
-
leadingIcon:
|
|
994
|
-
removeIcon:
|
|
991
|
+
Po.displayName = "Checkbox";
|
|
992
|
+
Po.Group = go;
|
|
993
|
+
const Ks = "Chip-module__root___f5pFk", Qs = "Chip-module__label___Ov9pg", Js = "Chip-module__mantineIconWrapper___KLSz6", Xs = "Chip-module__innerWrapper___EnrTF", ea = "Chip-module__children___zbRAR", oa = "Chip-module__leadingIcon___JBtjQ", ta = "Chip-module__removeIcon___pVju-", E = {
|
|
994
|
+
root: Ks,
|
|
995
|
+
label: Qs,
|
|
996
|
+
mantineIconWrapper: Js,
|
|
997
|
+
innerWrapper: Xs,
|
|
998
|
+
children: ea,
|
|
999
|
+
leadingIcon: oa,
|
|
1000
|
+
removeIcon: ta
|
|
995
1001
|
};
|
|
996
|
-
function
|
|
1002
|
+
function sa(l) {
|
|
997
1003
|
return /* @__PURE__ */ z(
|
|
998
1004
|
"svg",
|
|
999
1005
|
{
|
|
@@ -1014,7 +1020,7 @@ function oa(l) {
|
|
|
1014
1020
|
}
|
|
1015
1021
|
);
|
|
1016
1022
|
}
|
|
1017
|
-
const
|
|
1023
|
+
const aa = h(function({
|
|
1018
1024
|
error: e = !1,
|
|
1019
1025
|
icon: a,
|
|
1020
1026
|
onRemove: s,
|
|
@@ -1036,7 +1042,7 @@ const ta = h(function({
|
|
|
1036
1042
|
}
|
|
1037
1043
|
const _ = p.className, u = _ ? `${E.root} ${_}` : E.root;
|
|
1038
1044
|
return /* @__PURE__ */ r(
|
|
1039
|
-
|
|
1045
|
+
At,
|
|
1040
1046
|
{
|
|
1041
1047
|
ref: c,
|
|
1042
1048
|
className: u,
|
|
@@ -1062,17 +1068,17 @@ const ta = h(function({
|
|
|
1062
1068
|
));
|
|
1063
1069
|
},
|
|
1064
1070
|
tabIndex: 0,
|
|
1065
|
-
children: /* @__PURE__ */ r(
|
|
1071
|
+
children: /* @__PURE__ */ r(sa, {})
|
|
1066
1072
|
}
|
|
1067
1073
|
)
|
|
1068
1074
|
] })
|
|
1069
1075
|
}
|
|
1070
1076
|
);
|
|
1071
1077
|
});
|
|
1072
|
-
|
|
1073
|
-
const
|
|
1074
|
-
root:
|
|
1075
|
-
},
|
|
1078
|
+
aa.displayName = "Chip";
|
|
1079
|
+
const ra = "Container-module__root___UVssr", $e = {
|
|
1080
|
+
root: ra
|
|
1081
|
+
}, na = h(
|
|
1076
1082
|
function({ children: e, size: a, ...s }, t) {
|
|
1077
1083
|
const o = {
|
|
1078
1084
|
"rec-sm": "sm",
|
|
@@ -1090,7 +1096,7 @@ const sa = "Container-module__root___UVssr", $e = {
|
|
|
1090
1096
|
}
|
|
1091
1097
|
const d = s.className, p = d ? `${$e.root} ${d}` : $e.root;
|
|
1092
1098
|
return /* @__PURE__ */ r(
|
|
1093
|
-
|
|
1099
|
+
Wt,
|
|
1094
1100
|
{
|
|
1095
1101
|
ref: t,
|
|
1096
1102
|
size: n,
|
|
@@ -1102,14 +1108,14 @@ const sa = "Container-module__root___UVssr", $e = {
|
|
|
1102
1108
|
);
|
|
1103
1109
|
}
|
|
1104
1110
|
);
|
|
1105
|
-
|
|
1106
|
-
const
|
|
1107
|
-
root:
|
|
1108
|
-
input:
|
|
1109
|
-
section:
|
|
1110
|
-
dropdown:
|
|
1111
|
-
option:
|
|
1112
|
-
},
|
|
1111
|
+
na.displayName = "Container";
|
|
1112
|
+
const En = (l) => /* @__PURE__ */ r("div", { ...l, children: "DatePicker" }), la = "Dropdown-module__root___uVyL0", ia = "Dropdown-module__input___dK4dN", ca = "Dropdown-module__section___j3MRB", da = "Dropdown-module__dropdown___gG-Sw", pa = "Dropdown-module__option___nAGU-", j = {
|
|
1113
|
+
root: la,
|
|
1114
|
+
input: ia,
|
|
1115
|
+
section: ca,
|
|
1116
|
+
dropdown: da,
|
|
1117
|
+
option: pa
|
|
1118
|
+
}, ma = h(
|
|
1113
1119
|
function(e, a) {
|
|
1114
1120
|
const {
|
|
1115
1121
|
overStyled: s = !1,
|
|
@@ -1186,7 +1192,7 @@ const Fn = (l) => /* @__PURE__ */ r("div", { ...l, children: "DatePicker" }), ra
|
|
|
1186
1192
|
activeComponent: (
|
|
1187
1193
|
/* Naked Select execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
1188
1194
|
/* @__PURE__ */ r(
|
|
1189
|
-
|
|
1195
|
+
Lt,
|
|
1190
1196
|
{
|
|
1191
1197
|
ref: a,
|
|
1192
1198
|
classNames: k,
|
|
@@ -1211,34 +1217,33 @@ const Fn = (l) => /* @__PURE__ */ r("div", { ...l, children: "DatePicker" }), ra
|
|
|
1211
1217
|
);
|
|
1212
1218
|
}
|
|
1213
1219
|
);
|
|
1214
|
-
|
|
1215
|
-
const
|
|
1216
|
-
root:
|
|
1217
|
-
},
|
|
1218
|
-
const
|
|
1220
|
+
ma.displayName = "Dropdown";
|
|
1221
|
+
const jn = (l) => /* @__PURE__ */ r("div", { ...l, children: "FileInput" }), Dn = (l) => /* @__PURE__ */ r("div", { ...l, children: "FileUpload" }), _a = "Flex-module__root___yYser", ve = {
|
|
1222
|
+
root: _a
|
|
1223
|
+
}, wo = h(function({ children: e, gap: a = "rec-default", rowGap: s, columnGap: t, ...o }, n) {
|
|
1224
|
+
const i = {
|
|
1219
1225
|
root: ve.root
|
|
1220
|
-
},
|
|
1221
|
-
if (
|
|
1222
|
-
const
|
|
1223
|
-
|
|
1226
|
+
}, c = o.classNames;
|
|
1227
|
+
if (c && typeof c == "object" && !Array.isArray(c)) {
|
|
1228
|
+
const m = c;
|
|
1229
|
+
i.root = m.root ? `${ve.root} ${m.root}` : ve.root;
|
|
1224
1230
|
}
|
|
1225
|
-
const
|
|
1231
|
+
const d = o.className, p = d ? `${ve.root} ${d}` : ve.root;
|
|
1226
1232
|
return /* @__PURE__ */ r(
|
|
1227
|
-
|
|
1233
|
+
It,
|
|
1228
1234
|
{
|
|
1229
|
-
ref:
|
|
1230
|
-
className:
|
|
1231
|
-
classNames:
|
|
1232
|
-
gap: a,
|
|
1233
|
-
...s,
|
|
1235
|
+
ref: n,
|
|
1236
|
+
className: p,
|
|
1237
|
+
classNames: i,
|
|
1238
|
+
...Ue({ gap: a, rowGap: s, columnGap: t, ...o }),
|
|
1234
1239
|
children: e
|
|
1235
1240
|
}
|
|
1236
1241
|
);
|
|
1237
1242
|
});
|
|
1238
|
-
|
|
1239
|
-
const
|
|
1240
|
-
root:
|
|
1241
|
-
},
|
|
1243
|
+
wo.displayName = "Flex";
|
|
1244
|
+
const Vn = Y(wo), ua = "Group-module__root___ftO64", Ce = {
|
|
1245
|
+
root: ua
|
|
1246
|
+
}, ba = h(function({ children: e, gap: a = "rec-default", ...s }, t) {
|
|
1242
1247
|
const o = {
|
|
1243
1248
|
root: Ce.root
|
|
1244
1249
|
}, n = s.classNames;
|
|
@@ -1248,29 +1253,28 @@ const Dn = oe(go), ma = "Group-module__root___ftO64", Ce = {
|
|
|
1248
1253
|
}
|
|
1249
1254
|
const i = s.className, c = i ? `${Ce.root} ${i}` : Ce.root;
|
|
1250
1255
|
return /* @__PURE__ */ r(
|
|
1251
|
-
|
|
1256
|
+
Ot,
|
|
1252
1257
|
{
|
|
1253
1258
|
ref: t,
|
|
1254
1259
|
className: c,
|
|
1255
1260
|
classNames: o,
|
|
1256
|
-
gap: a,
|
|
1257
|
-
...s,
|
|
1261
|
+
...Ue({ gap: a, ...s }),
|
|
1258
1262
|
children: e
|
|
1259
1263
|
}
|
|
1260
1264
|
);
|
|
1261
1265
|
});
|
|
1262
|
-
|
|
1263
|
-
const
|
|
1264
|
-
dropdown:
|
|
1265
|
-
arrow:
|
|
1266
|
-
},
|
|
1266
|
+
ba.displayName = "Group";
|
|
1267
|
+
const ya = "HoverCard-module__dropdown___FBPFW", fa = "HoverCard-module__arrow___S9AkE", oo = {
|
|
1268
|
+
dropdown: ya,
|
|
1269
|
+
arrow: fa
|
|
1270
|
+
}, To = function({
|
|
1267
1271
|
overStyled: e = !1,
|
|
1268
1272
|
withBeak: a = !0,
|
|
1269
1273
|
...s
|
|
1270
1274
|
}) {
|
|
1271
1275
|
const t = f(s, e), o = {
|
|
1272
|
-
dropdown:
|
|
1273
|
-
arrow:
|
|
1276
|
+
dropdown: oo.dropdown,
|
|
1277
|
+
arrow: oo.arrow
|
|
1274
1278
|
}, n = t.classNames;
|
|
1275
1279
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
1276
1280
|
const p = n;
|
|
@@ -1280,7 +1284,7 @@ const ua = "HoverCard-module__dropdown___FBPFW", ba = "HoverCard-module__arrow__
|
|
|
1280
1284
|
}
|
|
1281
1285
|
const i = t.arrowSize ?? 16, c = t.withArrow;
|
|
1282
1286
|
return /* @__PURE__ */ r(
|
|
1283
|
-
|
|
1287
|
+
Ge,
|
|
1284
1288
|
{
|
|
1285
1289
|
position: "top",
|
|
1286
1290
|
arrowSize: i,
|
|
@@ -1290,33 +1294,33 @@ const ua = "HoverCard-module__dropdown___FBPFW", ba = "HoverCard-module__arrow__
|
|
|
1290
1294
|
}
|
|
1291
1295
|
);
|
|
1292
1296
|
};
|
|
1293
|
-
|
|
1294
|
-
const
|
|
1295
|
-
return /* @__PURE__ */ r(
|
|
1297
|
+
To.displayName = "HoverCard";
|
|
1298
|
+
const xo = function(e) {
|
|
1299
|
+
return /* @__PURE__ */ r(Ge.Target, { ...e });
|
|
1296
1300
|
};
|
|
1297
|
-
|
|
1298
|
-
const
|
|
1301
|
+
xo.displayName = "HoverCardTarget";
|
|
1302
|
+
const So = function({
|
|
1299
1303
|
overStyled: e = !1,
|
|
1300
1304
|
...a
|
|
1301
1305
|
}) {
|
|
1302
1306
|
const s = f(a, e), t = s.className;
|
|
1303
1307
|
return /* @__PURE__ */ r(
|
|
1304
|
-
|
|
1308
|
+
Ge.Dropdown,
|
|
1305
1309
|
{
|
|
1306
1310
|
className: t,
|
|
1307
1311
|
...s
|
|
1308
1312
|
}
|
|
1309
1313
|
);
|
|
1310
1314
|
};
|
|
1311
|
-
|
|
1312
|
-
const
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
const
|
|
1316
|
-
root:
|
|
1317
|
-
iconWrapper:
|
|
1318
|
-
labelText:
|
|
1319
|
-
},
|
|
1315
|
+
So.displayName = "HoverCardDropdown";
|
|
1316
|
+
const Ao = To;
|
|
1317
|
+
Ao.Target = xo;
|
|
1318
|
+
Ao.Dropdown = So;
|
|
1319
|
+
const Na = "Link-module__root___I0VGE", ha = "Link-module__iconWrapper___W-LlF", $a = "Link-module__labelText___wSvUy", _e = {
|
|
1320
|
+
root: Na,
|
|
1321
|
+
iconWrapper: ha,
|
|
1322
|
+
labelText: $a
|
|
1323
|
+
}, Wo = h(function({ icon: e, children: a, overStyled: s = !1, ...t }, o) {
|
|
1320
1324
|
const n = f(t, s), i = n, c = {
|
|
1321
1325
|
root: _e.root
|
|
1322
1326
|
}, d = i.classNames;
|
|
@@ -1326,7 +1330,7 @@ const ya = "Link-module__root___I0VGE", fa = "Link-module__iconWrapper___W-LlF",
|
|
|
1326
1330
|
}
|
|
1327
1331
|
const p = i.className, m = p ? `${_e.root} ${p}` : _e.root;
|
|
1328
1332
|
return /* @__PURE__ */ z(
|
|
1329
|
-
|
|
1333
|
+
zt,
|
|
1330
1334
|
{
|
|
1331
1335
|
ref: o,
|
|
1332
1336
|
className: m,
|
|
@@ -1341,10 +1345,10 @@ const ya = "Link-module__root___I0VGE", fa = "Link-module__iconWrapper___W-LlF",
|
|
|
1341
1345
|
}
|
|
1342
1346
|
);
|
|
1343
1347
|
});
|
|
1344
|
-
|
|
1345
|
-
const
|
|
1346
|
-
root:
|
|
1347
|
-
},
|
|
1348
|
+
Wo.displayName = "Link";
|
|
1349
|
+
const Gn = Y(Wo), va = "Loader-module__root___6iYOP", ge = {
|
|
1350
|
+
root: va
|
|
1351
|
+
}, Ca = h(function({ variant: e = "oval", size: a = "default", overStyled: s = !1, ...t }, o) {
|
|
1348
1352
|
const i = {
|
|
1349
1353
|
sm: "small",
|
|
1350
1354
|
md: "default",
|
|
@@ -1361,7 +1365,7 @@ const Vn = oe(So), ha = "Loader-module__root___6iYOP", ge = {
|
|
|
1361
1365
|
}
|
|
1362
1366
|
const m = c.className, N = m ? `${ge.root} ${m}` : ge.root;
|
|
1363
1367
|
return /* @__PURE__ */ r(
|
|
1364
|
-
|
|
1368
|
+
Rt,
|
|
1365
1369
|
{
|
|
1366
1370
|
ref: o,
|
|
1367
1371
|
type: e,
|
|
@@ -1373,16 +1377,16 @@ const Vn = oe(So), ha = "Loader-module__root___6iYOP", ge = {
|
|
|
1373
1377
|
}
|
|
1374
1378
|
);
|
|
1375
1379
|
});
|
|
1376
|
-
|
|
1377
|
-
const
|
|
1378
|
-
dropdown:
|
|
1379
|
-
item:
|
|
1380
|
-
itemLabel:
|
|
1381
|
-
itemSection:
|
|
1382
|
-
divider:
|
|
1383
|
-
label:
|
|
1384
|
-
chevron:
|
|
1385
|
-
},
|
|
1380
|
+
Ca.displayName = "Loader";
|
|
1381
|
+
const ga = "Menu-module__dropdown___j4xuA", Pa = "Menu-module__item___NMXha", wa = "Menu-module__itemLabel___zvcqC", Ta = "Menu-module__itemSection___pRIcn", xa = "Menu-module__divider___wPiNq", Sa = "Menu-module__label___4FBGa", Aa = "Menu-module__chevron___hEEiy", ue = {
|
|
1382
|
+
dropdown: ga,
|
|
1383
|
+
item: Pa,
|
|
1384
|
+
itemLabel: wa,
|
|
1385
|
+
itemSection: Ta,
|
|
1386
|
+
divider: xa,
|
|
1387
|
+
label: Sa,
|
|
1388
|
+
chevron: Aa
|
|
1389
|
+
}, Lo = function({ overStyled: e = !1, ...a }) {
|
|
1386
1390
|
const s = f(a, e), t = {
|
|
1387
1391
|
dropdown: ue.dropdown,
|
|
1388
1392
|
item: ue.item,
|
|
@@ -1399,23 +1403,23 @@ const va = "Menu-module__dropdown___j4xuA", Ca = "Menu-module__item___NMXha", ga
|
|
|
1399
1403
|
});
|
|
1400
1404
|
}
|
|
1401
1405
|
return /* @__PURE__ */ r(
|
|
1402
|
-
|
|
1406
|
+
K,
|
|
1403
1407
|
{
|
|
1404
1408
|
classNames: t,
|
|
1405
1409
|
...s
|
|
1406
1410
|
}
|
|
1407
1411
|
);
|
|
1408
1412
|
};
|
|
1409
|
-
|
|
1410
|
-
const
|
|
1411
|
-
return /* @__PURE__ */ r(
|
|
1413
|
+
Lo.displayName = "Menu";
|
|
1414
|
+
const Io = function(e) {
|
|
1415
|
+
return /* @__PURE__ */ r(K.Target, { ...e });
|
|
1412
1416
|
};
|
|
1413
|
-
|
|
1414
|
-
const
|
|
1417
|
+
Io.displayName = "MenuTarget";
|
|
1418
|
+
const Oo = h(
|
|
1415
1419
|
function({ overStyled: e = !1, ...a }, s) {
|
|
1416
1420
|
const t = f(a, e), o = t.className;
|
|
1417
1421
|
return /* @__PURE__ */ r(
|
|
1418
|
-
|
|
1422
|
+
K.Dropdown,
|
|
1419
1423
|
{
|
|
1420
1424
|
ref: s,
|
|
1421
1425
|
className: o,
|
|
@@ -1424,14 +1428,14 @@ const Lo = h(
|
|
|
1424
1428
|
);
|
|
1425
1429
|
}
|
|
1426
1430
|
);
|
|
1427
|
-
|
|
1428
|
-
const
|
|
1431
|
+
Oo.displayName = "MenuDropdown";
|
|
1432
|
+
const zo = h(
|
|
1429
1433
|
function({ overStyled: e = !1, ...a }, s) {
|
|
1430
1434
|
const t = f(a, e), o = t;
|
|
1431
1435
|
e || delete o.color;
|
|
1432
1436
|
const n = o.className;
|
|
1433
1437
|
return /* @__PURE__ */ r(
|
|
1434
|
-
|
|
1438
|
+
K.Item,
|
|
1435
1439
|
{
|
|
1436
1440
|
ref: s,
|
|
1437
1441
|
className: n,
|
|
@@ -1440,12 +1444,12 @@ const Io = h(
|
|
|
1440
1444
|
);
|
|
1441
1445
|
}
|
|
1442
1446
|
);
|
|
1443
|
-
|
|
1444
|
-
const
|
|
1447
|
+
zo.displayName = "MenuItem";
|
|
1448
|
+
const Wa = Y(zo), Ro = h(
|
|
1445
1449
|
function({ overStyled: e = !1, ...a }, s) {
|
|
1446
1450
|
const t = f(a, e), o = t.className;
|
|
1447
1451
|
return /* @__PURE__ */ r(
|
|
1448
|
-
|
|
1452
|
+
K.Divider,
|
|
1449
1453
|
{
|
|
1450
1454
|
ref: s,
|
|
1451
1455
|
className: o,
|
|
@@ -1454,11 +1458,11 @@ const Sa = oe(Io), Oo = h(
|
|
|
1454
1458
|
);
|
|
1455
1459
|
}
|
|
1456
1460
|
);
|
|
1457
|
-
|
|
1458
|
-
const
|
|
1461
|
+
Ro.displayName = "MenuDivider";
|
|
1462
|
+
const ko = h(function({ overStyled: e = !1, ...a }, s) {
|
|
1459
1463
|
const t = f(a, e), o = t.className;
|
|
1460
1464
|
return /* @__PURE__ */ r(
|
|
1461
|
-
|
|
1465
|
+
K.Label,
|
|
1462
1466
|
{
|
|
1463
1467
|
ref: s,
|
|
1464
1468
|
className: o,
|
|
@@ -1466,22 +1470,22 @@ const zo = h(function({ overStyled: e = !1, ...a }, s) {
|
|
|
1466
1470
|
}
|
|
1467
1471
|
);
|
|
1468
1472
|
});
|
|
1469
|
-
|
|
1470
|
-
const
|
|
1471
|
-
return /* @__PURE__ */ r(
|
|
1473
|
+
ko.displayName = "MenuLabel";
|
|
1474
|
+
const Mo = function(e) {
|
|
1475
|
+
return /* @__PURE__ */ r(K.Sub, { ...e });
|
|
1472
1476
|
};
|
|
1473
|
-
|
|
1474
|
-
const
|
|
1475
|
-
return /* @__PURE__ */ r(
|
|
1477
|
+
Mo.displayName = "MenuSub";
|
|
1478
|
+
const Bo = function(e) {
|
|
1479
|
+
return /* @__PURE__ */ r(K.Sub.Target, { ...e });
|
|
1476
1480
|
};
|
|
1477
|
-
|
|
1478
|
-
const
|
|
1481
|
+
Bo.displayName = "MenuSubTarget";
|
|
1482
|
+
const Fo = h(
|
|
1479
1483
|
function({ overStyled: e = !1, ...a }, s) {
|
|
1480
1484
|
const t = f(a, e), o = t;
|
|
1481
1485
|
e || delete o.color;
|
|
1482
1486
|
const n = o.className;
|
|
1483
1487
|
return /* @__PURE__ */ r(
|
|
1484
|
-
|
|
1488
|
+
K.Sub.Item,
|
|
1485
1489
|
{
|
|
1486
1490
|
ref: s,
|
|
1487
1491
|
className: n,
|
|
@@ -1490,14 +1494,14 @@ const Mo = h(
|
|
|
1490
1494
|
);
|
|
1491
1495
|
}
|
|
1492
1496
|
);
|
|
1493
|
-
|
|
1494
|
-
const
|
|
1495
|
-
|
|
1496
|
-
),
|
|
1497
|
+
Fo.displayName = "MenuSubItem";
|
|
1498
|
+
const La = Y(
|
|
1499
|
+
Fo
|
|
1500
|
+
), Eo = h(
|
|
1497
1501
|
function({ overStyled: e = !1, ...a }, s) {
|
|
1498
1502
|
const t = f(a, e), o = t.className;
|
|
1499
1503
|
return /* @__PURE__ */ r(
|
|
1500
|
-
|
|
1504
|
+
K.Sub.Dropdown,
|
|
1501
1505
|
{
|
|
1502
1506
|
ref: s,
|
|
1503
1507
|
className: o,
|
|
@@ -1506,29 +1510,29 @@ const Aa = oe(
|
|
|
1506
1510
|
);
|
|
1507
1511
|
}
|
|
1508
1512
|
);
|
|
1509
|
-
|
|
1510
|
-
const
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
const he =
|
|
1515
|
-
he.Target =
|
|
1516
|
-
he.Dropdown =
|
|
1517
|
-
he.Item =
|
|
1518
|
-
he.Divider =
|
|
1519
|
-
he.Label =
|
|
1520
|
-
he.Sub =
|
|
1521
|
-
const
|
|
1522
|
-
root:
|
|
1523
|
-
inner:
|
|
1524
|
-
content:
|
|
1525
|
-
header:
|
|
1526
|
-
title:
|
|
1527
|
-
bodyWrapper:
|
|
1528
|
-
scrollArea:
|
|
1529
|
-
footer:
|
|
1530
|
-
close:
|
|
1531
|
-
},
|
|
1513
|
+
Eo.displayName = "MenuSubDropdown";
|
|
1514
|
+
const Fe = Mo;
|
|
1515
|
+
Fe.Target = Bo;
|
|
1516
|
+
Fe.Item = La;
|
|
1517
|
+
Fe.Dropdown = Eo;
|
|
1518
|
+
const he = Lo;
|
|
1519
|
+
he.Target = Io;
|
|
1520
|
+
he.Dropdown = Oo;
|
|
1521
|
+
he.Item = Wa;
|
|
1522
|
+
he.Divider = Ro;
|
|
1523
|
+
he.Label = ko;
|
|
1524
|
+
he.Sub = Fe;
|
|
1525
|
+
const Ia = "Modal-module__root___ytPLl", Oa = "Modal-module__inner___SSUJE", za = "Modal-module__content___dWO-B", Ra = "Modal-module__header___ILG9i", ka = "Modal-module__title___A5OeE recursica_brand_typography_h2", Ma = "Modal-module__bodyWrapper___5CCL-", Ba = "Modal-module__scrollArea___KD-hm recursica_brand_typography_body", Fa = "Modal-module__footer___rro2w", Ea = "Modal-module__close___-ER1C", ee = {
|
|
1526
|
+
root: Ia,
|
|
1527
|
+
inner: Oa,
|
|
1528
|
+
content: za,
|
|
1529
|
+
header: Ra,
|
|
1530
|
+
title: ka,
|
|
1531
|
+
bodyWrapper: Ma,
|
|
1532
|
+
scrollArea: Ba,
|
|
1533
|
+
footer: Fa,
|
|
1534
|
+
close: Ea
|
|
1535
|
+
}, jo = L.forwardRef(function({
|
|
1532
1536
|
overStyled: e = !1,
|
|
1533
1537
|
children: a,
|
|
1534
1538
|
title: s,
|
|
@@ -1539,12 +1543,12 @@ const Wa = "Modal-module__root___ytPLl", La = "Modal-module__inner___SSUJE", Ia
|
|
|
1539
1543
|
...c
|
|
1540
1544
|
}, d) {
|
|
1541
1545
|
const p = f(c, e), m = {
|
|
1542
|
-
root:
|
|
1543
|
-
inner:
|
|
1544
|
-
content:
|
|
1545
|
-
header:
|
|
1546
|
-
title:
|
|
1547
|
-
close:
|
|
1546
|
+
root: ee.root,
|
|
1547
|
+
inner: ee.inner,
|
|
1548
|
+
content: ee.content,
|
|
1549
|
+
header: ee.header,
|
|
1550
|
+
title: ee.title,
|
|
1551
|
+
close: ee.close
|
|
1548
1552
|
}, N = p.classNames;
|
|
1549
1553
|
if (N && typeof N == "object" && !Array.isArray(N)) {
|
|
1550
1554
|
const _ = N;
|
|
@@ -1565,25 +1569,25 @@ const Wa = "Modal-module__root___ytPLl", La = "Modal-module__inner___SSUJE", Ia
|
|
|
1565
1569
|
s && /* @__PURE__ */ r(G.Title, { children: s }),
|
|
1566
1570
|
t && /* @__PURE__ */ r(G.CloseButton, { ...i })
|
|
1567
1571
|
] }),
|
|
1568
|
-
/* @__PURE__ */ r(
|
|
1572
|
+
/* @__PURE__ */ r(Je, { children: a })
|
|
1569
1573
|
] })
|
|
1570
1574
|
]
|
|
1571
1575
|
}
|
|
1572
1576
|
);
|
|
1573
1577
|
});
|
|
1574
|
-
|
|
1575
|
-
const
|
|
1578
|
+
jo.displayName = "Modal";
|
|
1579
|
+
const Qe = L.forwardRef(function({ className: e, ...a }, s) {
|
|
1576
1580
|
return /* @__PURE__ */ r(
|
|
1577
1581
|
"div",
|
|
1578
1582
|
{
|
|
1579
1583
|
ref: s,
|
|
1580
|
-
className: `${
|
|
1584
|
+
className: `${ee.footer} ${e || ""}`,
|
|
1581
1585
|
...a
|
|
1582
1586
|
}
|
|
1583
1587
|
);
|
|
1584
1588
|
});
|
|
1585
|
-
|
|
1586
|
-
const
|
|
1589
|
+
Qe.displayName = "Modal.Footer";
|
|
1590
|
+
const Je = L.forwardRef(function({ className: e, onScroll: a, children: s, ...t }, o) {
|
|
1587
1591
|
const n = L.useRef(null), [i, c] = L.useState(!1), [d, p] = L.useState(!1), m = L.useCallback(() => {
|
|
1588
1592
|
if (n.current) {
|
|
1589
1593
|
const { scrollTop: b, scrollHeight: C, clientHeight: $ } = n.current;
|
|
@@ -1598,7 +1602,7 @@ const Ke = L.forwardRef(function({ className: e, onScroll: a, children: s, ...t
|
|
|
1598
1602
|
const u = [];
|
|
1599
1603
|
return L.Children.forEach(s, (b) => {
|
|
1600
1604
|
var C;
|
|
1601
|
-
L.isValidElement(b) && (b.type ===
|
|
1605
|
+
L.isValidElement(b) && (b.type === Qe || ((C = b.type) == null ? void 0 : C.displayName) === "Modal.Footer") ? _ = b : u.push(b);
|
|
1602
1606
|
}), /* @__PURE__ */ z(
|
|
1603
1607
|
G.Body,
|
|
1604
1608
|
{
|
|
@@ -1606,7 +1610,7 @@ const Ke = L.forwardRef(function({ className: e, onScroll: a, children: s, ...t
|
|
|
1606
1610
|
ref: (b) => {
|
|
1607
1611
|
typeof o == "function" ? o(b) : o && (o.current = b);
|
|
1608
1612
|
},
|
|
1609
|
-
className: `${
|
|
1613
|
+
className: `${ee.bodyWrapper} ${e || ""}`,
|
|
1610
1614
|
children: [
|
|
1611
1615
|
/* @__PURE__ */ r(
|
|
1612
1616
|
"div",
|
|
@@ -1615,7 +1619,7 @@ const Ke = L.forwardRef(function({ className: e, onScroll: a, children: s, ...t
|
|
|
1615
1619
|
onScroll: N,
|
|
1616
1620
|
"data-scrolled-top": i || void 0,
|
|
1617
1621
|
"data-scrolled-bottom": d || void 0,
|
|
1618
|
-
className:
|
|
1622
|
+
className: ee.scrollArea,
|
|
1619
1623
|
children: u
|
|
1620
1624
|
}
|
|
1621
1625
|
),
|
|
@@ -1624,23 +1628,23 @@ const Ke = L.forwardRef(function({ className: e, onScroll: a, children: s, ...t
|
|
|
1624
1628
|
}
|
|
1625
1629
|
);
|
|
1626
1630
|
});
|
|
1627
|
-
|
|
1628
|
-
const pe =
|
|
1631
|
+
Je.displayName = "Modal.Body";
|
|
1632
|
+
const pe = jo;
|
|
1629
1633
|
pe.Root = G.Root;
|
|
1630
1634
|
pe.Overlay = G.Overlay;
|
|
1631
1635
|
pe.Content = G.Content;
|
|
1632
1636
|
pe.Header = G.Header;
|
|
1633
1637
|
pe.Title = G.Title;
|
|
1634
1638
|
pe.CloseButton = G.CloseButton;
|
|
1635
|
-
pe.Body =
|
|
1636
|
-
pe.Footer =
|
|
1637
|
-
const
|
|
1638
|
-
root:
|
|
1639
|
-
input:
|
|
1640
|
-
section:
|
|
1641
|
-
controls:
|
|
1642
|
-
control:
|
|
1643
|
-
},
|
|
1639
|
+
pe.Body = Je;
|
|
1640
|
+
pe.Footer = Qe;
|
|
1641
|
+
const ja = "NumberInput-module__root___C6rAn", Da = "NumberInput-module__input___Ss8p7", Va = "NumberInput-module__section___MijP0", Ga = "NumberInput-module__controls___8UfQ2", qa = "NumberInput-module__control___Qre9-", Pe = {
|
|
1642
|
+
root: ja,
|
|
1643
|
+
input: Da,
|
|
1644
|
+
section: Va,
|
|
1645
|
+
controls: Ga,
|
|
1646
|
+
control: qa
|
|
1647
|
+
}, Ha = h(
|
|
1644
1648
|
function(e, a) {
|
|
1645
1649
|
const {
|
|
1646
1650
|
overStyled: s = !1,
|
|
@@ -1708,7 +1712,7 @@ const Fa = "NumberInput-module__root___C6rAn", Ea = "NumberInput-module__input__
|
|
|
1708
1712
|
activeComponent: (
|
|
1709
1713
|
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
1710
1714
|
/* @__PURE__ */ r(
|
|
1711
|
-
|
|
1715
|
+
kt,
|
|
1712
1716
|
{
|
|
1713
1717
|
ref: a,
|
|
1714
1718
|
classNames: P,
|
|
@@ -1735,18 +1739,18 @@ const Fa = "NumberInput-module__root___C6rAn", Ea = "NumberInput-module__input__
|
|
|
1735
1739
|
);
|
|
1736
1740
|
}
|
|
1737
1741
|
);
|
|
1738
|
-
|
|
1739
|
-
const
|
|
1740
|
-
root:
|
|
1741
|
-
control:
|
|
1742
|
-
dots:
|
|
1743
|
-
iconWithLabel:
|
|
1744
|
-
baseIcon:
|
|
1745
|
-
},
|
|
1746
|
-
next:
|
|
1747
|
-
prev:
|
|
1748
|
-
first:
|
|
1749
|
-
last:
|
|
1742
|
+
Ha.displayName = "NumberInput";
|
|
1743
|
+
const Ua = "Pagination-module__root___ITRjt", Za = "Pagination-module__control___40yNT", Ya = "Pagination-module__dots___Yl9da", Ka = "Pagination-module__iconWithLabel___pLM4O", Qa = "Pagination-module__baseIcon___Qw3bJ", F = {
|
|
1744
|
+
root: Ua,
|
|
1745
|
+
control: Za,
|
|
1746
|
+
dots: Ya,
|
|
1747
|
+
iconWithLabel: Ka,
|
|
1748
|
+
baseIcon: Qa
|
|
1749
|
+
}, Ja = "M8.781 8l-3.3-3.3.943-.943L10.667 8l-4.243 4.243-.943-.943 3.3-3.3z", Xa = "M7.219 8l3.3 3.3-.943.943L5.333 8l4.243-4.243.943.943-3.3 3.3z", er = "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", or = "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", tr = {
|
|
1750
|
+
next: Ja,
|
|
1751
|
+
prev: Xa,
|
|
1752
|
+
first: er,
|
|
1753
|
+
last: or
|
|
1750
1754
|
}, Te = ({
|
|
1751
1755
|
type: l,
|
|
1752
1756
|
className: e,
|
|
@@ -1758,22 +1762,22 @@ const qa = "Pagination-module__root___ITRjt", Ha = "Pagination-module__control__
|
|
|
1758
1762
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1759
1763
|
className: `${F.baseIcon} ${e || ""}`.trim(),
|
|
1760
1764
|
...a,
|
|
1761
|
-
children: /* @__PURE__ */ r("path", { d:
|
|
1765
|
+
children: /* @__PURE__ */ r("path", { d: tr[l], fill: "currentColor" })
|
|
1762
1766
|
}
|
|
1763
|
-
),
|
|
1767
|
+
), Do = (l) => /* @__PURE__ */ z("div", { className: F.iconWithLabel, children: [
|
|
1764
1768
|
/* @__PURE__ */ r("span", { children: "Next" }),
|
|
1765
1769
|
/* @__PURE__ */ r(Te, { type: "next", ...l })
|
|
1766
|
-
] }),
|
|
1770
|
+
] }), Vo = (l) => /* @__PURE__ */ z("div", { className: F.iconWithLabel, children: [
|
|
1767
1771
|
/* @__PURE__ */ r(Te, { type: "prev", ...l }),
|
|
1768
1772
|
/* @__PURE__ */ r("span", { children: "Prev" })
|
|
1769
|
-
] }),
|
|
1773
|
+
] }), Go = (l) => /* @__PURE__ */ z("div", { className: F.iconWithLabel, children: [
|
|
1770
1774
|
/* @__PURE__ */ r(Te, { type: "first", ...l }),
|
|
1771
1775
|
/* @__PURE__ */ r("span", { children: "First" })
|
|
1772
|
-
] }),
|
|
1776
|
+
] }), qo = (l) => /* @__PURE__ */ z("div", { className: F.iconWithLabel, children: [
|
|
1773
1777
|
/* @__PURE__ */ r("span", { children: "Last" }),
|
|
1774
1778
|
/* @__PURE__ */ r(Te, { type: "last", ...l })
|
|
1775
1779
|
] });
|
|
1776
|
-
function
|
|
1780
|
+
function Ho(l) {
|
|
1777
1781
|
const e = {
|
|
1778
1782
|
root: F.root,
|
|
1779
1783
|
control: F.control,
|
|
@@ -1786,9 +1790,9 @@ function Go(l) {
|
|
|
1786
1790
|
const s = l.className;
|
|
1787
1791
|
return { className: s ? `${F.root} ${s}` : F.root, classNames: e };
|
|
1788
1792
|
}
|
|
1789
|
-
const
|
|
1793
|
+
const Uo = h(
|
|
1790
1794
|
function({ overStyled: e = !1, ...a }, s) {
|
|
1791
|
-
const t = f(a, e), o =
|
|
1795
|
+
const t = f(a, e), o = Ho(
|
|
1792
1796
|
t
|
|
1793
1797
|
);
|
|
1794
1798
|
return /* @__PURE__ */ r(
|
|
@@ -1802,9 +1806,9 @@ const qo = h(
|
|
|
1802
1806
|
);
|
|
1803
1807
|
}
|
|
1804
1808
|
);
|
|
1805
|
-
|
|
1806
|
-
const
|
|
1807
|
-
const o = a || (e ?
|
|
1809
|
+
Uo.displayName = "Pagination.Root";
|
|
1810
|
+
const Zo = h(function({ withLabel: e, icon: a, ...s }, t) {
|
|
1811
|
+
const o = a || (e ? Do : void 0);
|
|
1808
1812
|
return /* @__PURE__ */ r(
|
|
1809
1813
|
te.Next,
|
|
1810
1814
|
{
|
|
@@ -1815,9 +1819,9 @@ const Ho = h(function({ withLabel: e, icon: a, ...s }, t) {
|
|
|
1815
1819
|
}
|
|
1816
1820
|
);
|
|
1817
1821
|
});
|
|
1818
|
-
|
|
1819
|
-
const
|
|
1820
|
-
const o = a || (e ?
|
|
1822
|
+
Zo.displayName = "Pagination.Next";
|
|
1823
|
+
const Yo = h(function({ withLabel: e, icon: a, ...s }, t) {
|
|
1824
|
+
const o = a || (e ? Vo : void 0);
|
|
1821
1825
|
return /* @__PURE__ */ r(
|
|
1822
1826
|
te.Previous,
|
|
1823
1827
|
{
|
|
@@ -1828,9 +1832,9 @@ const Uo = h(function({ withLabel: e, icon: a, ...s }, t) {
|
|
|
1828
1832
|
}
|
|
1829
1833
|
);
|
|
1830
1834
|
});
|
|
1831
|
-
|
|
1832
|
-
const
|
|
1833
|
-
const o = a || (e ?
|
|
1835
|
+
Yo.displayName = "Pagination.Previous";
|
|
1836
|
+
const Ko = h(function({ withLabel: e, icon: a, ...s }, t) {
|
|
1837
|
+
const o = a || (e ? Go : void 0);
|
|
1834
1838
|
return /* @__PURE__ */ r(
|
|
1835
1839
|
te.First,
|
|
1836
1840
|
{
|
|
@@ -1841,9 +1845,9 @@ const Zo = h(function({ withLabel: e, icon: a, ...s }, t) {
|
|
|
1841
1845
|
}
|
|
1842
1846
|
);
|
|
1843
1847
|
});
|
|
1844
|
-
|
|
1845
|
-
const
|
|
1846
|
-
const o = a || (e ?
|
|
1848
|
+
Ko.displayName = "Pagination.First";
|
|
1849
|
+
const Qo = h(function({ withLabel: e, icon: a, ...s }, t) {
|
|
1850
|
+
const o = a || (e ? qo : void 0);
|
|
1847
1851
|
return /* @__PURE__ */ r(
|
|
1848
1852
|
te.Last,
|
|
1849
1853
|
{
|
|
@@ -1854,19 +1858,19 @@ const Yo = h(function({ withLabel: e, icon: a, ...s }, t) {
|
|
|
1854
1858
|
}
|
|
1855
1859
|
);
|
|
1856
1860
|
});
|
|
1857
|
-
|
|
1858
|
-
const
|
|
1861
|
+
Qo.displayName = "Pagination.Last";
|
|
1862
|
+
const Jo = h(
|
|
1859
1863
|
function({ overStyled: e = !1, getControlProps: a, withLabels: s, ...t }, o) {
|
|
1860
|
-
const n = f(t, e), i =
|
|
1864
|
+
const n = f(t, e), i = Ho(
|
|
1861
1865
|
n
|
|
1862
1866
|
), c = (p) => {
|
|
1863
1867
|
const m = { "data-variant": "text" };
|
|
1864
1868
|
return a ? { ...m, ...a(p) } : m;
|
|
1865
1869
|
}, d = s ? {
|
|
1866
|
-
nextIcon:
|
|
1867
|
-
previousIcon:
|
|
1868
|
-
firstIcon:
|
|
1869
|
-
lastIcon:
|
|
1870
|
+
nextIcon: Do,
|
|
1871
|
+
previousIcon: Vo,
|
|
1872
|
+
firstIcon: Go,
|
|
1873
|
+
lastIcon: qo
|
|
1870
1874
|
} : {};
|
|
1871
1875
|
return /* @__PURE__ */ r(
|
|
1872
1876
|
te,
|
|
@@ -1881,26 +1885,26 @@ const Ko = h(
|
|
|
1881
1885
|
);
|
|
1882
1886
|
}
|
|
1883
1887
|
);
|
|
1884
|
-
|
|
1885
|
-
const ae =
|
|
1886
|
-
ae.Root =
|
|
1888
|
+
Jo.displayName = "Pagination";
|
|
1889
|
+
const ae = Jo;
|
|
1890
|
+
ae.Root = Uo;
|
|
1887
1891
|
ae.Items = te.Items;
|
|
1888
1892
|
ae.Control = te.Control;
|
|
1889
1893
|
ae.Dots = te.Dots;
|
|
1890
|
-
ae.Next =
|
|
1891
|
-
ae.Previous =
|
|
1892
|
-
ae.First =
|
|
1893
|
-
ae.Last =
|
|
1894
|
+
ae.Next = Zo;
|
|
1895
|
+
ae.Previous = Yo;
|
|
1896
|
+
ae.First = Ko;
|
|
1897
|
+
ae.Last = Qo;
|
|
1894
1898
|
ae.Icon = Te;
|
|
1895
|
-
const
|
|
1896
|
-
content:
|
|
1897
|
-
inner:
|
|
1898
|
-
header:
|
|
1899
|
-
title:
|
|
1900
|
-
titleTruncate:
|
|
1901
|
-
body:
|
|
1902
|
-
footer:
|
|
1903
|
-
},
|
|
1899
|
+
const sr = "Panel-module__content___wdGo-", ar = "Panel-module__inner___ruA2b", rr = "Panel-module__header___o7SiC", nr = "Panel-module__title___181OP recursica_brand_typography_h3", lr = "Panel-module__titleTruncate___fuP6V Panel-module__title___181OP recursica_brand_typography_h3", ir = "Panel-module__body___SEC3T", cr = "Panel-module__footer___t6-hz", ie = {
|
|
1900
|
+
content: sr,
|
|
1901
|
+
inner: ar,
|
|
1902
|
+
header: rr,
|
|
1903
|
+
title: nr,
|
|
1904
|
+
titleTruncate: lr,
|
|
1905
|
+
body: ir,
|
|
1906
|
+
footer: cr
|
|
1907
|
+
}, Xo = function({
|
|
1904
1908
|
overStyled: e = !1,
|
|
1905
1909
|
position: a = "right",
|
|
1906
1910
|
keepMounted: s = !0,
|
|
@@ -1931,15 +1935,15 @@ const or = "Panel-module__content___wdGo-", tr = "Panel-module__inner___ruA2b",
|
|
|
1931
1935
|
}
|
|
1932
1936
|
);
|
|
1933
1937
|
};
|
|
1934
|
-
|
|
1935
|
-
const
|
|
1938
|
+
Xo.displayName = "Panel";
|
|
1939
|
+
const et = h(
|
|
1936
1940
|
function({ overStyled: e = !1, ...a }, s) {
|
|
1937
1941
|
const t = f(a, e), o = t.className, n = o ? `${ie.footer} ${o}` : ie.footer;
|
|
1938
1942
|
return /* @__PURE__ */ r("div", { ref: s, className: n, ...t });
|
|
1939
1943
|
}
|
|
1940
1944
|
);
|
|
1941
|
-
|
|
1942
|
-
const re =
|
|
1945
|
+
et.displayName = "PanelFooter";
|
|
1946
|
+
const re = Xo;
|
|
1943
1947
|
re.Root = se.Root;
|
|
1944
1948
|
re.Overlay = se.Overlay;
|
|
1945
1949
|
re.Content = se.Content;
|
|
@@ -1948,18 +1952,18 @@ re.Title = se.Title;
|
|
|
1948
1952
|
re.CloseButton = se.CloseButton;
|
|
1949
1953
|
re.Body = se.Body;
|
|
1950
1954
|
re.Stack = se.Stack;
|
|
1951
|
-
re.Footer =
|
|
1952
|
-
const
|
|
1953
|
-
dropdown:
|
|
1954
|
-
arrow:
|
|
1955
|
-
},
|
|
1955
|
+
re.Footer = et;
|
|
1956
|
+
const dr = "Popover-module__dropdown___svhS6", pr = "Popover-module__arrow___5A-0e", to = {
|
|
1957
|
+
dropdown: dr,
|
|
1958
|
+
arrow: pr
|
|
1959
|
+
}, ot = function({
|
|
1956
1960
|
overStyled: e = !1,
|
|
1957
1961
|
withBeak: a = !0,
|
|
1958
1962
|
...s
|
|
1959
1963
|
}) {
|
|
1960
1964
|
const t = f(s, e), o = {
|
|
1961
|
-
dropdown:
|
|
1962
|
-
arrow:
|
|
1965
|
+
dropdown: to.dropdown,
|
|
1966
|
+
arrow: to.arrow
|
|
1963
1967
|
}, n = t.classNames;
|
|
1964
1968
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
1965
1969
|
const p = n;
|
|
@@ -1969,7 +1973,7 @@ const ir = "Popover-module__dropdown___svhS6", cr = "Popover-module__arrow___5A-
|
|
|
1969
1973
|
}
|
|
1970
1974
|
const i = t.arrowSize ?? 16, c = t.withArrow;
|
|
1971
1975
|
return /* @__PURE__ */ r(
|
|
1972
|
-
|
|
1976
|
+
qe,
|
|
1973
1977
|
{
|
|
1974
1978
|
position: "top",
|
|
1975
1979
|
arrowSize: i,
|
|
@@ -1979,38 +1983,38 @@ const ir = "Popover-module__dropdown___svhS6", cr = "Popover-module__arrow___5A-
|
|
|
1979
1983
|
}
|
|
1980
1984
|
);
|
|
1981
1985
|
};
|
|
1982
|
-
|
|
1983
|
-
const
|
|
1984
|
-
return /* @__PURE__ */ r(
|
|
1986
|
+
ot.displayName = "Popover";
|
|
1987
|
+
const tt = function(e) {
|
|
1988
|
+
return /* @__PURE__ */ r(qe.Target, { ...e });
|
|
1985
1989
|
};
|
|
1986
|
-
|
|
1987
|
-
const
|
|
1990
|
+
tt.displayName = "PopoverTarget";
|
|
1991
|
+
const st = function({
|
|
1988
1992
|
overStyled: e = !1,
|
|
1989
1993
|
...a
|
|
1990
1994
|
}) {
|
|
1991
1995
|
const s = f(a, e), t = s.className;
|
|
1992
1996
|
return /* @__PURE__ */ r(
|
|
1993
|
-
|
|
1997
|
+
qe.Dropdown,
|
|
1994
1998
|
{
|
|
1995
1999
|
className: t,
|
|
1996
2000
|
...s
|
|
1997
2001
|
}
|
|
1998
2002
|
);
|
|
1999
2003
|
};
|
|
2000
|
-
|
|
2001
|
-
const
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
const
|
|
2005
|
-
groupRoot:
|
|
2006
|
-
root:
|
|
2007
|
-
body:
|
|
2008
|
-
inner:
|
|
2009
|
-
radio:
|
|
2010
|
-
icon:
|
|
2011
|
-
labelWrapper:
|
|
2012
|
-
label:
|
|
2013
|
-
},
|
|
2004
|
+
st.displayName = "PopoverDropdown";
|
|
2005
|
+
const at = ot;
|
|
2006
|
+
at.Target = tt;
|
|
2007
|
+
at.Dropdown = st;
|
|
2008
|
+
const mr = "Radio-module__groupRoot___bfUii", _r = "Radio-module__root___kAjTD", ur = "Radio-module__body___q2Wpj", br = "Radio-module__inner___QaTBB", yr = "Radio-module__radio___MfgN-", fr = "Radio-module__icon___DWznm", Nr = "Radio-module__labelWrapper___dB0Gi", hr = "Radio-module__label___vAFIP", O = {
|
|
2009
|
+
groupRoot: mr,
|
|
2010
|
+
root: _r,
|
|
2011
|
+
body: ur,
|
|
2012
|
+
inner: br,
|
|
2013
|
+
radio: yr,
|
|
2014
|
+
icon: fr,
|
|
2015
|
+
labelWrapper: Nr,
|
|
2016
|
+
label: hr
|
|
2017
|
+
}, rt = h(
|
|
2014
2018
|
function(e, a) {
|
|
2015
2019
|
const {
|
|
2016
2020
|
overStyled: s = !1,
|
|
@@ -2070,7 +2074,7 @@ const dr = "Radio-module__groupRoot___bfUii", pr = "Radio-module__root___kAjTD",
|
|
|
2070
2074
|
readOnlyValue: T !== void 0 ? T : R,
|
|
2071
2075
|
readOnlyNativeProps: e,
|
|
2072
2076
|
activeComponent: /* @__PURE__ */ r(
|
|
2073
|
-
|
|
2077
|
+
no.Group,
|
|
2074
2078
|
{
|
|
2075
2079
|
ref: a,
|
|
2076
2080
|
...W,
|
|
@@ -2086,8 +2090,8 @@ const dr = "Radio-module__groupRoot___bfUii", pr = "Radio-module__root___kAjTD",
|
|
|
2086
2090
|
);
|
|
2087
2091
|
}
|
|
2088
2092
|
);
|
|
2089
|
-
|
|
2090
|
-
const
|
|
2093
|
+
rt.displayName = "RadioGroup";
|
|
2094
|
+
const $r = ({ className: l, style: e }) => /* @__PURE__ */ r(
|
|
2091
2095
|
"svg",
|
|
2092
2096
|
{
|
|
2093
2097
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2097,7 +2101,7 @@ const Nr = ({ className: l, style: e }) => /* @__PURE__ */ r(
|
|
|
2097
2101
|
style: e,
|
|
2098
2102
|
children: /* @__PURE__ */ r("circle", { cx: "8", cy: "8", r: "5" })
|
|
2099
2103
|
}
|
|
2100
|
-
),
|
|
2104
|
+
), nt = h(
|
|
2101
2105
|
function(e, a) {
|
|
2102
2106
|
const {
|
|
2103
2107
|
overStyled: s = !1,
|
|
@@ -2146,10 +2150,10 @@ const Nr = ({ className: l, style: e }) => /* @__PURE__ */ r(
|
|
|
2146
2150
|
) : /* @__PURE__ */ r(Ne, { children: v });
|
|
2147
2151
|
}
|
|
2148
2152
|
const g = /* @__PURE__ */ r(
|
|
2149
|
-
|
|
2153
|
+
no,
|
|
2150
2154
|
{
|
|
2151
2155
|
ref: a,
|
|
2152
|
-
icon:
|
|
2156
|
+
icon: $r,
|
|
2153
2157
|
className: $,
|
|
2154
2158
|
classNames: u,
|
|
2155
2159
|
disabled: t || n,
|
|
@@ -2168,13 +2172,13 @@ const Nr = ({ className: l, style: e }) => /* @__PURE__ */ r(
|
|
|
2168
2172
|
) : g;
|
|
2169
2173
|
}
|
|
2170
2174
|
);
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
const
|
|
2174
|
-
|
|
2175
|
+
nt.displayName = "Radio";
|
|
2176
|
+
nt.Group = rt;
|
|
2177
|
+
const vr = ({ checked: l, label: e }) => /* @__PURE__ */ z(
|
|
2178
|
+
Ve,
|
|
2175
2179
|
{
|
|
2176
2180
|
component: "span",
|
|
2177
|
-
className:
|
|
2181
|
+
className: ze.textField,
|
|
2178
2182
|
style: { display: "inline-flex", gap: "8px", alignItems: "baseline" },
|
|
2179
2183
|
children: [
|
|
2180
2184
|
e && /* @__PURE__ */ z("span", { style: { fontWeight: 500 }, children: [
|
|
@@ -2185,12 +2189,12 @@ const hr = ({ checked: l, label: e }) => /* @__PURE__ */ z(
|
|
|
2185
2189
|
]
|
|
2186
2190
|
}
|
|
2187
2191
|
);
|
|
2188
|
-
|
|
2189
|
-
const
|
|
2190
|
-
|
|
2192
|
+
vr.displayName = "ReadOnlySwitchField";
|
|
2193
|
+
const Cr = ({ checked: l, label: e }) => /* @__PURE__ */ z(
|
|
2194
|
+
Ve,
|
|
2191
2195
|
{
|
|
2192
2196
|
component: "span",
|
|
2193
|
-
className:
|
|
2197
|
+
className: ze.textField,
|
|
2194
2198
|
style: { display: "inline-flex", gap: "8px", alignItems: "baseline" },
|
|
2195
2199
|
children: [
|
|
2196
2200
|
e && /* @__PURE__ */ z("span", { style: { fontWeight: 500 }, children: [
|
|
@@ -2201,14 +2205,14 @@ const $r = ({ checked: l, label: e }) => /* @__PURE__ */ z(
|
|
|
2201
2205
|
]
|
|
2202
2206
|
}
|
|
2203
2207
|
);
|
|
2204
|
-
|
|
2205
|
-
const
|
|
2206
|
-
root:
|
|
2207
|
-
label:
|
|
2208
|
-
control:
|
|
2209
|
-
indicator:
|
|
2208
|
+
Cr.displayName = "ReadOnlyBooleanField";
|
|
2209
|
+
const gr = "SegmentedControl-module__root___JFRhg", Pr = "SegmentedControl-module__label___mS17q", wr = "SegmentedControl-module__control___znOdQ", Tr = "SegmentedControl-module__indicator___ZMcJy", V = {
|
|
2210
|
+
root: gr,
|
|
2211
|
+
label: Pr,
|
|
2212
|
+
control: wr,
|
|
2213
|
+
indicator: Tr
|
|
2210
2214
|
};
|
|
2211
|
-
function
|
|
2215
|
+
function xr(l) {
|
|
2212
2216
|
const e = {
|
|
2213
2217
|
root: V.root,
|
|
2214
2218
|
control: V.control,
|
|
@@ -2222,13 +2226,13 @@ function wr(l) {
|
|
|
2222
2226
|
const s = l.className;
|
|
2223
2227
|
return { className: s ? `${V.root} ${s}` : V.root, classNames: e };
|
|
2224
2228
|
}
|
|
2225
|
-
const
|
|
2229
|
+
const lt = h(
|
|
2226
2230
|
function({ overStyled: e = !1, orientation: a = "horizontal", fullWidth: s, ...t }, o) {
|
|
2227
|
-
const n = f(t, e), i =
|
|
2231
|
+
const n = f(t, e), i = xr(
|
|
2228
2232
|
n
|
|
2229
2233
|
);
|
|
2230
2234
|
return /* @__PURE__ */ r(
|
|
2231
|
-
|
|
2235
|
+
Mt,
|
|
2232
2236
|
{
|
|
2233
2237
|
ref: o,
|
|
2234
2238
|
className: i.className,
|
|
@@ -2241,10 +2245,10 @@ const rt = h(
|
|
|
2241
2245
|
);
|
|
2242
2246
|
}
|
|
2243
2247
|
);
|
|
2244
|
-
|
|
2245
|
-
const
|
|
2246
|
-
root:
|
|
2247
|
-
},
|
|
2248
|
+
lt.displayName = "SegmentedControl";
|
|
2249
|
+
const qn = lt, Hn = (l) => /* @__PURE__ */ r("div", { ...l, children: "Slider" }), Sr = "Stack-module__root___NUN-x", we = {
|
|
2250
|
+
root: Sr
|
|
2251
|
+
}, it = h(function({ children: e, gap: a = "rec-default", ...s }, t) {
|
|
2248
2252
|
const o = {
|
|
2249
2253
|
root: we.root
|
|
2250
2254
|
}, n = s.classNames;
|
|
@@ -2254,35 +2258,34 @@ const Gn = rt, qn = (l) => /* @__PURE__ */ r("div", { ...l, children: "Slider" }
|
|
|
2254
2258
|
}
|
|
2255
2259
|
const i = s.className, c = i ? `${we.root} ${i}` : we.root;
|
|
2256
2260
|
return /* @__PURE__ */ r(
|
|
2257
|
-
|
|
2261
|
+
Bt,
|
|
2258
2262
|
{
|
|
2259
2263
|
ref: t,
|
|
2260
2264
|
className: c,
|
|
2261
2265
|
classNames: o,
|
|
2262
|
-
gap: a,
|
|
2263
|
-
...s,
|
|
2266
|
+
...Ue({ gap: a, ...s }),
|
|
2264
2267
|
children: e
|
|
2265
2268
|
}
|
|
2266
2269
|
);
|
|
2267
2270
|
});
|
|
2268
|
-
|
|
2269
|
-
const
|
|
2270
|
-
root:
|
|
2271
|
-
horizontal:
|
|
2272
|
-
steps:
|
|
2273
|
-
step:
|
|
2274
|
-
stepBody:
|
|
2275
|
-
stepLabel:
|
|
2276
|
-
stepDescription:
|
|
2277
|
-
separator:
|
|
2278
|
-
vertical:
|
|
2279
|
-
large:
|
|
2280
|
-
small:
|
|
2281
|
-
stepIcon:
|
|
2282
|
-
stepCompletedIcon:
|
|
2283
|
-
verticalSeparator:
|
|
2284
|
-
content:
|
|
2285
|
-
},
|
|
2271
|
+
it.displayName = "Stack";
|
|
2272
|
+
const Un = Y(it), Ar = "Stepper-module__root___jbSYO", Wr = "Stepper-module__horizontal___USHT1", Lr = "Stepper-module__steps___4HPO6", Ir = "Stepper-module__step___s2nqL", Or = "Stepper-module__stepBody___TBvys", zr = "Stepper-module__stepLabel___N6nuy", Rr = "Stepper-module__stepDescription___DnDAy", kr = "Stepper-module__separator___pU0No", Mr = "Stepper-module__vertical___d4mOs", Br = "Stepper-module__large___J18-y", Fr = "Stepper-module__small___Ub-zb", Er = "Stepper-module__stepIcon___YQHNq", jr = "Stepper-module__stepCompletedIcon___B9MeL", Dr = "Stepper-module__verticalSeparator___frWc1", Vr = "Stepper-module__content___J-h8X", D = {
|
|
2273
|
+
root: Ar,
|
|
2274
|
+
horizontal: Wr,
|
|
2275
|
+
steps: Lr,
|
|
2276
|
+
step: Ir,
|
|
2277
|
+
stepBody: Or,
|
|
2278
|
+
stepLabel: zr,
|
|
2279
|
+
stepDescription: Rr,
|
|
2280
|
+
separator: kr,
|
|
2281
|
+
vertical: Mr,
|
|
2282
|
+
large: Br,
|
|
2283
|
+
small: Fr,
|
|
2284
|
+
stepIcon: Er,
|
|
2285
|
+
stepCompletedIcon: jr,
|
|
2286
|
+
verticalSeparator: Dr,
|
|
2287
|
+
content: Vr
|
|
2288
|
+
}, ct = h(
|
|
2286
2289
|
function(e, a) {
|
|
2287
2290
|
const {
|
|
2288
2291
|
overStyled: s = !1,
|
|
@@ -2293,7 +2296,7 @@ const Sr = "Stepper-module__root___jbSYO", Ar = "Stepper-module__horizontal___US
|
|
|
2293
2296
|
...c
|
|
2294
2297
|
} = e, d = f(c, s);
|
|
2295
2298
|
return /* @__PURE__ */ r(
|
|
2296
|
-
|
|
2299
|
+
je,
|
|
2297
2300
|
{
|
|
2298
2301
|
ref: a,
|
|
2299
2302
|
orientation: o,
|
|
@@ -2317,23 +2320,23 @@ const Sr = "Stepper-module__root___jbSYO", Ar = "Stepper-module__horizontal___US
|
|
|
2317
2320
|
}
|
|
2318
2321
|
);
|
|
2319
2322
|
}
|
|
2320
|
-
),
|
|
2321
|
-
Step:
|
|
2322
|
-
Completed:
|
|
2323
|
+
), Zn = Object.assign(ct, {
|
|
2324
|
+
Step: je.Step,
|
|
2325
|
+
Completed: je.Completed
|
|
2323
2326
|
});
|
|
2324
|
-
|
|
2325
|
-
const
|
|
2326
|
-
root:
|
|
2327
|
-
body:
|
|
2328
|
-
track:
|
|
2329
|
-
thumb:
|
|
2330
|
-
labelWrapper:
|
|
2331
|
-
label:
|
|
2332
|
-
thumbIconWrapper:
|
|
2333
|
-
checkIcon:
|
|
2334
|
-
closeIcon:
|
|
2335
|
-
groupRoot:
|
|
2336
|
-
},
|
|
2327
|
+
ct.displayName = "Stepper";
|
|
2328
|
+
const Gr = "Switch-module__root___Y5Ydi", qr = "Switch-module__body___Sw9Wr", Hr = "Switch-module__track___7ObdZ", Ur = "Switch-module__thumb___-FTeK", Zr = "Switch-module__labelWrapper___YSOwx", Yr = "Switch-module__label___LrH7V", Kr = "Switch-module__thumbIconWrapper___sCY-1", Qr = "Switch-module__checkIcon___ZBAQN", Jr = "Switch-module__closeIcon___bLLGw", Xr = "Switch-module__groupRoot___-Uepi", x = {
|
|
2329
|
+
root: Gr,
|
|
2330
|
+
body: qr,
|
|
2331
|
+
track: Hr,
|
|
2332
|
+
thumb: Ur,
|
|
2333
|
+
labelWrapper: Zr,
|
|
2334
|
+
label: Yr,
|
|
2335
|
+
thumbIconWrapper: Kr,
|
|
2336
|
+
checkIcon: Qr,
|
|
2337
|
+
closeIcon: Jr,
|
|
2338
|
+
groupRoot: Xr
|
|
2339
|
+
}, dt = h(
|
|
2337
2340
|
function(e, a) {
|
|
2338
2341
|
const {
|
|
2339
2342
|
overStyled: s = !1,
|
|
@@ -2393,7 +2396,7 @@ const Vr = "Switch-module__root___Y5Ydi", Gr = "Switch-module__body___Sw9Wr", qr
|
|
|
2393
2396
|
readOnlyValue: T !== void 0 ? T : R,
|
|
2394
2397
|
readOnlyNativeProps: e,
|
|
2395
2398
|
activeComponent: /* @__PURE__ */ r(
|
|
2396
|
-
|
|
2399
|
+
lo.Group,
|
|
2397
2400
|
{
|
|
2398
2401
|
ref: a,
|
|
2399
2402
|
...W,
|
|
@@ -2409,8 +2412,8 @@ const Vr = "Switch-module__root___Y5Ydi", Gr = "Switch-module__body___Sw9Wr", qr
|
|
|
2409
2412
|
);
|
|
2410
2413
|
}
|
|
2411
2414
|
);
|
|
2412
|
-
|
|
2413
|
-
const
|
|
2415
|
+
dt.displayName = "SwitchGroup";
|
|
2416
|
+
const pt = h(
|
|
2414
2417
|
function(e, a) {
|
|
2415
2418
|
const {
|
|
2416
2419
|
overStyled: s = !1,
|
|
@@ -2460,10 +2463,10 @@ const it = h(
|
|
|
2460
2463
|
) : /* @__PURE__ */ r(Ne, { children: A });
|
|
2461
2464
|
}
|
|
2462
2465
|
const y = /* @__PURE__ */ z("div", { className: x.thumbIconWrapper, children: [
|
|
2463
|
-
/* @__PURE__ */ r(
|
|
2464
|
-
/* @__PURE__ */ r(
|
|
2466
|
+
/* @__PURE__ */ r(Ft, { className: x.checkIcon }),
|
|
2467
|
+
/* @__PURE__ */ r(Et, { className: x.closeIcon })
|
|
2465
2468
|
] }), S = /* @__PURE__ */ r(
|
|
2466
|
-
|
|
2469
|
+
lo,
|
|
2467
2470
|
{
|
|
2468
2471
|
ref: a,
|
|
2469
2472
|
className: g,
|
|
@@ -2485,14 +2488,14 @@ const it = h(
|
|
|
2485
2488
|
) : S;
|
|
2486
2489
|
}
|
|
2487
2490
|
);
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
const
|
|
2491
|
-
root:
|
|
2492
|
-
list:
|
|
2493
|
-
tab:
|
|
2494
|
-
panel:
|
|
2495
|
-
},
|
|
2491
|
+
pt.displayName = "Switch";
|
|
2492
|
+
pt.Group = dt;
|
|
2493
|
+
const Yn = (l) => /* @__PURE__ */ r("div", { ...l, children: "Table" }), en = "Tabs-module__root___-VKVI", on = "Tabs-module__list___qRVME", tn = "Tabs-module__tab___IdDYc", sn = "Tabs-module__panel___08i9c", Ae = {
|
|
2494
|
+
root: en,
|
|
2495
|
+
list: on,
|
|
2496
|
+
tab: tn,
|
|
2497
|
+
panel: sn
|
|
2498
|
+
}, mt = h(function(e, a) {
|
|
2496
2499
|
const {
|
|
2497
2500
|
variant: s = "default",
|
|
2498
2501
|
orientation: t = "horizontal",
|
|
@@ -2501,7 +2504,7 @@ const Un = (l) => /* @__PURE__ */ r("div", { ...l, children: "Table" }), Xr = "T
|
|
|
2501
2504
|
...i
|
|
2502
2505
|
} = e, c = f(i, o);
|
|
2503
2506
|
return /* @__PURE__ */ r(
|
|
2504
|
-
|
|
2507
|
+
Me,
|
|
2505
2508
|
{
|
|
2506
2509
|
ref: a,
|
|
2507
2510
|
variant: s,
|
|
@@ -2518,12 +2521,12 @@ const Un = (l) => /* @__PURE__ */ r("div", { ...l, children: "Table" }), Xr = "T
|
|
|
2518
2521
|
}
|
|
2519
2522
|
);
|
|
2520
2523
|
});
|
|
2521
|
-
|
|
2522
|
-
const
|
|
2524
|
+
mt.displayName = "Tabs";
|
|
2525
|
+
const _t = h(
|
|
2523
2526
|
function(e, a) {
|
|
2524
2527
|
const { overStyled: s = !1, ...t } = e;
|
|
2525
2528
|
return /* @__PURE__ */ r(
|
|
2526
|
-
|
|
2529
|
+
Me.List,
|
|
2527
2530
|
{
|
|
2528
2531
|
ref: a,
|
|
2529
2532
|
...f(t, s)
|
|
@@ -2531,12 +2534,12 @@ const dt = h(
|
|
|
2531
2534
|
);
|
|
2532
2535
|
}
|
|
2533
2536
|
);
|
|
2534
|
-
|
|
2535
|
-
const
|
|
2537
|
+
_t.displayName = "Tabs.List";
|
|
2538
|
+
const ut = h(
|
|
2536
2539
|
function(e, a) {
|
|
2537
2540
|
const { overStyled: s = !1, ...t } = e;
|
|
2538
2541
|
return /* @__PURE__ */ r(
|
|
2539
|
-
|
|
2542
|
+
Me.Tab,
|
|
2540
2543
|
{
|
|
2541
2544
|
ref: a,
|
|
2542
2545
|
...f(t, s)
|
|
@@ -2544,12 +2547,12 @@ const pt = h(
|
|
|
2544
2547
|
);
|
|
2545
2548
|
}
|
|
2546
2549
|
);
|
|
2547
|
-
|
|
2548
|
-
const
|
|
2550
|
+
ut.displayName = "Tabs.Tab";
|
|
2551
|
+
const bt = h(
|
|
2549
2552
|
function(e, a) {
|
|
2550
2553
|
const { overStyled: s = !1, ...t } = e;
|
|
2551
2554
|
return /* @__PURE__ */ r(
|
|
2552
|
-
|
|
2555
|
+
Me.Panel,
|
|
2553
2556
|
{
|
|
2554
2557
|
ref: a,
|
|
2555
2558
|
...f(t, s)
|
|
@@ -2557,15 +2560,15 @@ const mt = h(
|
|
|
2557
2560
|
);
|
|
2558
2561
|
}
|
|
2559
2562
|
);
|
|
2560
|
-
|
|
2561
|
-
const
|
|
2562
|
-
List:
|
|
2563
|
-
Tab:
|
|
2564
|
-
Panel:
|
|
2565
|
-
}),
|
|
2563
|
+
bt.displayName = "Tabs.Panel";
|
|
2564
|
+
const Kn = Object.assign(mt, {
|
|
2565
|
+
List: _t,
|
|
2566
|
+
Tab: ut,
|
|
2567
|
+
Panel: bt
|
|
2568
|
+
}), yt = h(function({ overStyled: e = !1, variant: a = "body", ...s }, t) {
|
|
2566
2569
|
const o = f(s, e), n = o.className, i = `recursica_brand_typography_${a}`, c = n ? `${i} ${n}` : i;
|
|
2567
2570
|
return /* @__PURE__ */ r(
|
|
2568
|
-
|
|
2571
|
+
jt,
|
|
2569
2572
|
{
|
|
2570
2573
|
ref: t,
|
|
2571
2574
|
className: c,
|
|
@@ -2573,11 +2576,11 @@ const Zn = Object.assign(ct, {
|
|
|
2573
2576
|
}
|
|
2574
2577
|
);
|
|
2575
2578
|
});
|
|
2576
|
-
|
|
2577
|
-
const
|
|
2578
|
-
root:
|
|
2579
|
-
input:
|
|
2580
|
-
},
|
|
2579
|
+
yt.displayName = "Text";
|
|
2580
|
+
const Qn = Y(yt), an = "TextArea-module__root___3dyeu", rn = "TextArea-module__input___8l36v", fe = {
|
|
2581
|
+
root: an,
|
|
2582
|
+
input: rn
|
|
2583
|
+
}, nn = h(
|
|
2581
2584
|
function(e, a) {
|
|
2582
2585
|
const {
|
|
2583
2586
|
overStyled: s = !1,
|
|
@@ -2645,7 +2648,7 @@ const Yn = oe(_t), sn = "TextArea-module__root___3dyeu", an = "TextArea-module__
|
|
|
2645
2648
|
activeComponent: (
|
|
2646
2649
|
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
2647
2650
|
/* @__PURE__ */ r(
|
|
2648
|
-
|
|
2651
|
+
Dt,
|
|
2649
2652
|
{
|
|
2650
2653
|
ref: a,
|
|
2651
2654
|
classNames: w,
|
|
@@ -2669,12 +2672,12 @@ const Yn = oe(_t), sn = "TextArea-module__root___3dyeu", an = "TextArea-module__
|
|
|
2669
2672
|
);
|
|
2670
2673
|
}
|
|
2671
2674
|
);
|
|
2672
|
-
|
|
2673
|
-
const
|
|
2674
|
-
root:
|
|
2675
|
-
input:
|
|
2676
|
-
section:
|
|
2677
|
-
},
|
|
2675
|
+
nn.displayName = "TextArea";
|
|
2676
|
+
const ln = "TextField-module__root___2ZYkG", cn = "TextField-module__input___RL-My", dn = "TextField-module__section___bCIJ0", J = {
|
|
2677
|
+
root: ln,
|
|
2678
|
+
input: cn,
|
|
2679
|
+
section: dn
|
|
2680
|
+
}, pn = h(
|
|
2678
2681
|
function(e, a) {
|
|
2679
2682
|
const {
|
|
2680
2683
|
overStyled: s = !1,
|
|
@@ -2704,14 +2707,14 @@ const nn = "TextField-module__root___2ZYkG", ln = "TextField-module__input___RL-
|
|
|
2704
2707
|
} = e, M = f(R, s), W = M;
|
|
2705
2708
|
delete W.size, delete W.variant, delete W.radius;
|
|
2706
2709
|
const w = {
|
|
2707
|
-
wrapper:
|
|
2710
|
+
wrapper: J.root,
|
|
2708
2711
|
// The nested Input internal relative wrapper bounding box
|
|
2709
|
-
input:
|
|
2710
|
-
section:
|
|
2712
|
+
input: J.input,
|
|
2713
|
+
section: J.section
|
|
2711
2714
|
}, P = W.classNames;
|
|
2712
2715
|
if (P && typeof P == "object" && !Array.isArray(P)) {
|
|
2713
2716
|
const k = P;
|
|
2714
|
-
w.wrapper = k.wrapper ? `${
|
|
2717
|
+
w.wrapper = k.wrapper ? `${J.root} ${k.wrapper}` : J.root, w.input = k.input ? `${J.input} ${k.input}` : J.input, w.section = k.section ? `${J.section} ${k.section}` : J.section;
|
|
2715
2718
|
}
|
|
2716
2719
|
return /* @__PURE__ */ r(
|
|
2717
2720
|
de,
|
|
@@ -2743,7 +2746,7 @@ const nn = "TextField-module__root___2ZYkG", ln = "TextField-module__input___RL-
|
|
|
2743
2746
|
activeComponent: (
|
|
2744
2747
|
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
2745
2748
|
/* @__PURE__ */ r(
|
|
2746
|
-
|
|
2749
|
+
ao,
|
|
2747
2750
|
{
|
|
2748
2751
|
ref: a,
|
|
2749
2752
|
classNames: w,
|
|
@@ -2762,17 +2765,17 @@ const nn = "TextField-module__root___2ZYkG", ln = "TextField-module__input___RL-
|
|
|
2762
2765
|
);
|
|
2763
2766
|
}
|
|
2764
2767
|
);
|
|
2765
|
-
|
|
2766
|
-
const
|
|
2767
|
-
root:
|
|
2768
|
-
item:
|
|
2769
|
-
itemBody:
|
|
2770
|
-
itemBullet:
|
|
2771
|
-
itemTitle:
|
|
2772
|
-
itemContent:
|
|
2773
|
-
description:
|
|
2774
|
-
timestamp:
|
|
2775
|
-
},
|
|
2768
|
+
pn.displayName = "TextField";
|
|
2769
|
+
const Jn = (l) => /* @__PURE__ */ r("div", { ...l, children: "TimePicker" }), mn = "Timeline-module__root___LwRdZ", _n = "Timeline-module__item___T5xdQ", un = "Timeline-module__itemBody___XAV-E", bn = "Timeline-module__itemBullet___rPXCy", yn = "Timeline-module__itemTitle___GgRRW", fn = "Timeline-module__itemContent___vurs-", Nn = "Timeline-module__description___f9sxV", hn = "Timeline-module__timestamp___owiRu", le = {
|
|
2770
|
+
root: mn,
|
|
2771
|
+
item: _n,
|
|
2772
|
+
itemBody: un,
|
|
2773
|
+
itemBullet: bn,
|
|
2774
|
+
itemTitle: yn,
|
|
2775
|
+
itemContent: fn,
|
|
2776
|
+
description: Nn,
|
|
2777
|
+
timestamp: hn
|
|
2778
|
+
}, ft = L.forwardRef(
|
|
2776
2779
|
function({
|
|
2777
2780
|
overStyled: e = !1,
|
|
2778
2781
|
timestamp: a,
|
|
@@ -2798,7 +2801,7 @@ const Kn = (l) => /* @__PURE__ */ r("div", { ...l, children: "TimePicker" }), pn
|
|
|
2798
2801
|
/* @__PURE__ */ r("div", { className: le.timestamp, children: a })
|
|
2799
2802
|
] }) : t;
|
|
2800
2803
|
return /* @__PURE__ */ r(
|
|
2801
|
-
|
|
2804
|
+
Vt,
|
|
2802
2805
|
{
|
|
2803
2806
|
ref: n,
|
|
2804
2807
|
classNames: c,
|
|
@@ -2809,8 +2812,8 @@ const Kn = (l) => /* @__PURE__ */ r("div", { ...l, children: "TimePicker" }), pn
|
|
|
2809
2812
|
);
|
|
2810
2813
|
}
|
|
2811
2814
|
);
|
|
2812
|
-
|
|
2813
|
-
const
|
|
2815
|
+
ft.displayName = "TimelineItem";
|
|
2816
|
+
const Nt = L.forwardRef(
|
|
2814
2817
|
function({ overStyled: e = !1, ...a }, s) {
|
|
2815
2818
|
const t = f(a, e), o = {
|
|
2816
2819
|
root: le.root
|
|
@@ -2822,7 +2825,7 @@ const bt = L.forwardRef(
|
|
|
2822
2825
|
});
|
|
2823
2826
|
}
|
|
2824
2827
|
return /* @__PURE__ */ r(
|
|
2825
|
-
|
|
2828
|
+
Gt,
|
|
2826
2829
|
{
|
|
2827
2830
|
ref: s,
|
|
2828
2831
|
classNames: o,
|
|
@@ -2831,13 +2834,13 @@ const bt = L.forwardRef(
|
|
|
2831
2834
|
);
|
|
2832
2835
|
}
|
|
2833
2836
|
);
|
|
2834
|
-
|
|
2835
|
-
const
|
|
2836
|
-
|
|
2837
|
-
const
|
|
2837
|
+
Nt.displayName = "Timeline";
|
|
2838
|
+
const $n = Nt;
|
|
2839
|
+
$n.Item = ft;
|
|
2840
|
+
const vn = h(function({ overStyled: e = !1, order: a = 1, ...s }, t) {
|
|
2838
2841
|
const o = f(s, e), n = o.className, i = `recursica_brand_typography_h${a}`, c = n ? `${i} ${n}` : i;
|
|
2839
2842
|
return /* @__PURE__ */ r(
|
|
2840
|
-
|
|
2843
|
+
qt,
|
|
2841
2844
|
{
|
|
2842
2845
|
ref: t,
|
|
2843
2846
|
order: a,
|
|
@@ -2846,16 +2849,16 @@ const $n = h(function({ overStyled: e = !1, order: a = 1, ...s }, t) {
|
|
|
2846
2849
|
}
|
|
2847
2850
|
);
|
|
2848
2851
|
});
|
|
2849
|
-
|
|
2850
|
-
const
|
|
2851
|
-
root:
|
|
2852
|
-
icon:
|
|
2853
|
-
loader:
|
|
2854
|
-
title:
|
|
2855
|
-
description:
|
|
2856
|
-
closeButton:
|
|
2857
|
-
body:
|
|
2858
|
-
},
|
|
2852
|
+
vn.displayName = "Title";
|
|
2853
|
+
const Cn = "Toast-module__root___MUvfI", gn = "Toast-module__icon___VwvE1", Pn = "Toast-module__loader___8Gxd-", wn = "Toast-module__title___-H6R2", Tn = "Toast-module__description___-QwfC", xn = "Toast-module__closeButton___vGr7g", Sn = "Toast-module__body___VLkXA", be = {
|
|
2854
|
+
root: Cn,
|
|
2855
|
+
icon: gn,
|
|
2856
|
+
loader: Pn,
|
|
2857
|
+
title: wn,
|
|
2858
|
+
description: Tn,
|
|
2859
|
+
closeButton: xn,
|
|
2860
|
+
body: Sn
|
|
2861
|
+
}, An = L.forwardRef(
|
|
2859
2862
|
function({
|
|
2860
2863
|
overStyled: e = !1,
|
|
2861
2864
|
variant: a = "default",
|
|
@@ -2878,7 +2881,7 @@ const vn = "Toast-module__root___MUvfI", Cn = "Toast-module__icon___VwvE1", gn =
|
|
|
2878
2881
|
});
|
|
2879
2882
|
}
|
|
2880
2883
|
return /* @__PURE__ */ r(
|
|
2881
|
-
|
|
2884
|
+
Ht,
|
|
2882
2885
|
{
|
|
2883
2886
|
ref: o,
|
|
2884
2887
|
withCloseButton: s,
|
|
@@ -2891,18 +2894,18 @@ const vn = "Toast-module__root___MUvfI", Cn = "Toast-module__icon___VwvE1", gn =
|
|
|
2891
2894
|
);
|
|
2892
2895
|
}
|
|
2893
2896
|
);
|
|
2894
|
-
|
|
2895
|
-
const
|
|
2896
|
-
tooltip:
|
|
2897
|
-
arrow:
|
|
2898
|
-
},
|
|
2897
|
+
An.displayName = "Toast";
|
|
2898
|
+
const Wn = "Tooltip-module__tooltip___UA7H9", Ln = "Tooltip-module__arrow___4zROk", so = {
|
|
2899
|
+
tooltip: Wn,
|
|
2900
|
+
arrow: Ln
|
|
2901
|
+
}, ht = function({
|
|
2899
2902
|
overStyled: e = !1,
|
|
2900
2903
|
withBeak: a = !0,
|
|
2901
2904
|
...s
|
|
2902
2905
|
}) {
|
|
2903
2906
|
const t = f(s, e), o = {
|
|
2904
|
-
tooltip:
|
|
2905
|
-
arrow:
|
|
2907
|
+
tooltip: so.tooltip,
|
|
2908
|
+
arrow: so.arrow
|
|
2906
2909
|
}, n = t.classNames;
|
|
2907
2910
|
if (n && typeof n == "object" && !Array.isArray(n)) {
|
|
2908
2911
|
const p = n;
|
|
@@ -2912,7 +2915,7 @@ const An = "Tooltip-module__tooltip___UA7H9", Wn = "Tooltip-module__arrow___4zRO
|
|
|
2912
2915
|
}
|
|
2913
2916
|
const i = t.arrowSize ?? 16, c = t.withArrow;
|
|
2914
2917
|
return /* @__PURE__ */ r(
|
|
2915
|
-
|
|
2918
|
+
He,
|
|
2916
2919
|
{
|
|
2917
2920
|
position: "top",
|
|
2918
2921
|
multiline: !0,
|
|
@@ -2923,73 +2926,73 @@ const An = "Tooltip-module__tooltip___UA7H9", Wn = "Tooltip-module__arrow___4zRO
|
|
|
2923
2926
|
}
|
|
2924
2927
|
);
|
|
2925
2928
|
};
|
|
2926
|
-
|
|
2927
|
-
const
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
const
|
|
2929
|
+
ht.displayName = "Tooltip";
|
|
2930
|
+
const $t = ht;
|
|
2931
|
+
$t.Floating = He.Floating;
|
|
2932
|
+
$t.Group = He.Group;
|
|
2933
|
+
const Xn = (l) => /* @__PURE__ */ r("div", { ...l, children: "TransferList" });
|
|
2931
2934
|
export {
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2935
|
+
Ke as Accordion,
|
|
2936
|
+
Ze as AccordionControl,
|
|
2937
|
+
po as AccordionItem,
|
|
2938
|
+
Ye as AccordionPanel,
|
|
2939
|
+
Rn as Avatar,
|
|
2940
|
+
kn as Badge,
|
|
2941
|
+
ps as Breadcrumb,
|
|
2942
|
+
Mn as Button,
|
|
2943
|
+
Bn as Card,
|
|
2944
|
+
ho as CardContent,
|
|
2945
|
+
No as CardFooter,
|
|
2946
|
+
fo as CardHeader,
|
|
2947
|
+
yo as CardSection,
|
|
2948
|
+
Po as Checkbox,
|
|
2949
|
+
go as CheckboxGroup,
|
|
2950
|
+
aa as Chip,
|
|
2951
|
+
na as Container,
|
|
2952
|
+
En as DatePicker,
|
|
2953
|
+
ma as Dropdown,
|
|
2954
|
+
Oe as EmptyValueRenderer,
|
|
2955
|
+
jn as FileInput,
|
|
2956
|
+
Dn as FileUpload,
|
|
2957
|
+
Vn as Flex,
|
|
2955
2958
|
ce as FormControlLayout,
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2959
|
+
ba as Group,
|
|
2960
|
+
Ao as HoverCard,
|
|
2961
|
+
vo as Label,
|
|
2962
|
+
Es as Layer,
|
|
2963
|
+
Gn as Link,
|
|
2964
|
+
Ca as Loader,
|
|
2962
2965
|
he as Menu,
|
|
2963
2966
|
pe as Modal,
|
|
2964
|
-
|
|
2967
|
+
Ha as NumberInput,
|
|
2965
2968
|
ae as Pagination,
|
|
2966
2969
|
re as Panel,
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2970
|
+
et as PanelFooter,
|
|
2971
|
+
at as Popover,
|
|
2972
|
+
nt as Radio,
|
|
2973
|
+
rt as RadioGroup,
|
|
2974
|
+
Cr as ReadOnlyBooleanField,
|
|
2975
|
+
Co as ReadOnlyField,
|
|
2976
|
+
vr as ReadOnlySwitchField,
|
|
2974
2977
|
We as ReadOnlyTextField,
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2978
|
+
Fn as RecursicaThemeProvider,
|
|
2979
|
+
qn as SegmentedControl,
|
|
2980
|
+
Hn as Slider,
|
|
2981
|
+
Un as Stack,
|
|
2982
|
+
Zn as Stepper,
|
|
2983
|
+
pt as Switch,
|
|
2984
|
+
dt as SwitchGroup,
|
|
2985
|
+
Yn as Table,
|
|
2986
|
+
Kn as Tabs,
|
|
2987
|
+
Qn as Text,
|
|
2988
|
+
nn as TextArea,
|
|
2989
|
+
pn as TextField,
|
|
2990
|
+
Jn as TimePicker,
|
|
2991
|
+
$n as Timeline,
|
|
2992
|
+
vn as Title,
|
|
2993
|
+
An as Toast,
|
|
2994
|
+
$t as Tooltip,
|
|
2995
|
+
Xn as TransferList,
|
|
2993
2996
|
de as WithReadOnlyWrapper
|
|
2994
2997
|
};
|
|
2995
2998
|
//# sourceMappingURL=mantine-adapter.js.map
|