@mt-gloss/ui 0.0.13 → 0.0.14
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/{BaseAsyncButton-BBpPkYng.js → BaseAsyncButton-x5Us8SVv.js} +1 -1
- package/{Expandable-I5P7BFYW.js → Expandable-aJSmv_1C.js} +1 -1
- package/{UIContext-8dkjkIV1.js → UIContext-Cx54OlNB.js} +484 -470
- package/catalog.js +4 -4
- package/index.js +3 -3
- package/internals.js +3 -3
- package/package.json +1 -1
- package/ui.css +1 -1
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import { jsx as n, jsxs as b } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
3
|
-
import { createPortal as
|
|
4
|
-
import { AnimatePresence as
|
|
5
|
-
import { useFloating as
|
|
6
|
-
function
|
|
7
|
-
const t = {},
|
|
8
|
-
if (!s) return { style: t, dataAttrs:
|
|
9
|
-
for (const [
|
|
10
|
-
const i = s[
|
|
2
|
+
import p, { useState as C, createContext as $, useContext as w } from "react";
|
|
3
|
+
import { createPortal as R } from "react-dom";
|
|
4
|
+
import { AnimatePresence as P, motion as x } from "framer-motion";
|
|
5
|
+
import { useFloating as z, autoUpdate as M, offset as T, flip as D, shift as I, useDismiss as V, useRole as O, useInteractions as E } from "@floating-ui/react";
|
|
6
|
+
function u(s, a, e, o) {
|
|
7
|
+
const t = {}, l = {};
|
|
8
|
+
if (!s) return { style: t, dataAttrs: l };
|
|
9
|
+
for (const [r, d] of Object.entries(a)) {
|
|
10
|
+
const i = s[r];
|
|
11
11
|
i != null && i !== !1 && (t[d] = String(i));
|
|
12
12
|
}
|
|
13
13
|
if (e)
|
|
14
|
-
for (const [
|
|
15
|
-
const i = s[
|
|
16
|
-
i != null && i !== !1 && (
|
|
14
|
+
for (const [r, d] of Object.entries(e)) {
|
|
15
|
+
const i = s[r];
|
|
16
|
+
i != null && i !== !1 && (l[d] = String(i));
|
|
17
17
|
}
|
|
18
|
-
return { style: t, dataAttrs:
|
|
18
|
+
return { style: t, dataAttrs: l };
|
|
19
19
|
}
|
|
20
|
-
const
|
|
20
|
+
const H = {
|
|
21
21
|
bg: "--_bg",
|
|
22
22
|
color: "--_color",
|
|
23
23
|
borderColor: "--_border-color",
|
|
@@ -29,25 +29,25 @@ const O = {
|
|
|
29
29
|
fontWeight: "--_font-weight",
|
|
30
30
|
minHeight: "--_min-height",
|
|
31
31
|
gap: "--_gap"
|
|
32
|
-
},
|
|
32
|
+
}, G = {
|
|
33
33
|
display: "data-display"
|
|
34
34
|
};
|
|
35
|
-
function
|
|
36
|
-
const { as: a, definition: e, className: o, style: t, children:
|
|
37
|
-
return
|
|
35
|
+
function F(s) {
|
|
36
|
+
const { as: a, definition: e, className: o, style: t, children: l, disabled: r, loading: d, ...i } = s, c = a || "button", { style: g, dataAttrs: _ } = u(e, H, G);
|
|
37
|
+
return r && (_["data-disabled"] = ""), d && (_["data-loading"] = ""), /* @__PURE__ */ n(
|
|
38
38
|
c,
|
|
39
39
|
{
|
|
40
40
|
className: o ? `gloss-base-button ${o}` : "gloss-base-button",
|
|
41
41
|
style: { ...g, ...t },
|
|
42
|
-
disabled:
|
|
42
|
+
disabled: r || d,
|
|
43
43
|
..._,
|
|
44
44
|
...i,
|
|
45
|
-
children:
|
|
45
|
+
children: l
|
|
46
46
|
}
|
|
47
47
|
);
|
|
48
48
|
}
|
|
49
|
-
|
|
50
|
-
const
|
|
49
|
+
F.displayName = "BaseButton";
|
|
50
|
+
const Ha = {
|
|
51
51
|
// Brand
|
|
52
52
|
BrandPrimary: "var(--gloss-color-brand-primary)",
|
|
53
53
|
BrandPrimaryHover: "var(--gloss-color-brand-primary-hover)",
|
|
@@ -118,7 +118,7 @@ const Oa = {
|
|
|
118
118
|
Amber600: "var(--gloss-color-amber-600)",
|
|
119
119
|
// Base
|
|
120
120
|
White: "var(--gloss-color-white)"
|
|
121
|
-
},
|
|
121
|
+
}, Ga = {
|
|
122
122
|
None: "0",
|
|
123
123
|
Xs: "var(--gloss-spacing-1)",
|
|
124
124
|
Sm: "var(--gloss-spacing-2)",
|
|
@@ -130,7 +130,7 @@ const Oa = {
|
|
|
130
130
|
"4xl": "var(--gloss-spacing-10)",
|
|
131
131
|
"5xl": "var(--gloss-spacing-12)",
|
|
132
132
|
"6xl": "var(--gloss-spacing-16)"
|
|
133
|
-
},
|
|
133
|
+
}, Fa = {
|
|
134
134
|
Card: "var(--gloss-elevation-card)",
|
|
135
135
|
ButtonDefault: "var(--gloss-elevation-button-default)",
|
|
136
136
|
ButtonHover: "var(--gloss-elevation-button-hover)",
|
|
@@ -140,7 +140,7 @@ const Oa = {
|
|
|
140
140
|
InputFocus: "var(--gloss-elevation-input-focus)",
|
|
141
141
|
Sidebar: "var(--gloss-elevation-sidebar)",
|
|
142
142
|
None: "none"
|
|
143
|
-
},
|
|
143
|
+
}, Xa = {
|
|
144
144
|
None: "0",
|
|
145
145
|
Xs: "var(--gloss-radius-xs)",
|
|
146
146
|
Sm: "var(--gloss-radius-sm)",
|
|
@@ -148,7 +148,7 @@ const Oa = {
|
|
|
148
148
|
Lg: "var(--gloss-radius-lg)",
|
|
149
149
|
Xl: "var(--gloss-radius-xl)",
|
|
150
150
|
Full: "var(--gloss-radius-full)"
|
|
151
|
-
},
|
|
151
|
+
}, ja = {
|
|
152
152
|
Dropdown: "var(--gloss-z-dropdown)",
|
|
153
153
|
Sticky: "var(--gloss-z-sticky)",
|
|
154
154
|
Overlay: "var(--gloss-z-overlay)",
|
|
@@ -156,8 +156,8 @@ const Oa = {
|
|
|
156
156
|
Popover: "var(--gloss-z-popover)",
|
|
157
157
|
Toast: "var(--gloss-z-toast)"
|
|
158
158
|
};
|
|
159
|
-
function
|
|
160
|
-
const { as: a, definition: e, className: o, style: t, children:
|
|
159
|
+
function X(s) {
|
|
160
|
+
const { as: a, definition: e, className: o, style: t, children: l, ...r } = s, d = a || "div", i = { ...t };
|
|
161
161
|
e?.padding && (i["--_padding"] = e.padding), e?.paddingX && (i["--_px"] = e.paddingX), e?.paddingY && (i["--_py"] = e.paddingY), e?.margin && (i["--_margin"] = e.margin), e?.gap && (i["--_gap"] = e.gap), e?.bg && (i["--_bg"] = e.bg), e?.border && (i["--_border"] = e.border), e?.radius && (i["--_radius"] = e.radius);
|
|
162
162
|
const c = {};
|
|
163
163
|
return e?.display && (c["data-display"] = e.display), e?.direction && (c["data-direction"] = e.direction), e?.align && (c["data-align"] = e.align), e?.justify && (c["data-justify"] = e.justify), e?.wrap && (c["data-wrap"] = ""), e?.paddingX && (c["data-has-px"] = ""), e?.paddingY && (c["data-has-py"] = ""), /* @__PURE__ */ n(
|
|
@@ -166,14 +166,14 @@ function G(s) {
|
|
|
166
166
|
className: o ? `gloss-base-box ${o}` : "gloss-base-box",
|
|
167
167
|
style: i,
|
|
168
168
|
...c,
|
|
169
|
-
...
|
|
170
|
-
children:
|
|
169
|
+
...r,
|
|
170
|
+
children: l
|
|
171
171
|
}
|
|
172
172
|
);
|
|
173
173
|
}
|
|
174
|
-
|
|
175
|
-
function
|
|
176
|
-
const { as: a, definition: e, className: o, style: t, children:
|
|
174
|
+
X.displayName = "BaseBox";
|
|
175
|
+
function j(s) {
|
|
176
|
+
const { as: a, definition: e, className: o, style: t, children: l, ...r } = s, d = a || "div", i = { ...t };
|
|
177
177
|
e?.gap && (i["--_gap"] = e.gap), e?.padding && (i["--_padding"] = e.padding);
|
|
178
178
|
const c = {};
|
|
179
179
|
return e?.direction === "horizontal" && (c["data-direction"] = "horizontal"), e?.align && (c["data-align"] = e.align), e?.justify && (c["data-justify"] = e.justify), e?.wrap && (c["data-wrap"] = ""), /* @__PURE__ */ n(
|
|
@@ -182,29 +182,29 @@ function F(s) {
|
|
|
182
182
|
className: o ? `gloss-base-stack ${o}` : "gloss-base-stack",
|
|
183
183
|
style: i,
|
|
184
184
|
...c,
|
|
185
|
-
...
|
|
186
|
-
children:
|
|
185
|
+
...r,
|
|
186
|
+
children: l
|
|
187
187
|
}
|
|
188
188
|
);
|
|
189
189
|
}
|
|
190
|
-
|
|
191
|
-
function
|
|
192
|
-
const { as: a, definition: e, className: o, style: t, ...
|
|
190
|
+
j.displayName = "BaseStack";
|
|
191
|
+
function U(s) {
|
|
192
|
+
const { as: a, definition: e, className: o, style: t, ...l } = s, r = a || "hr", d = { ...t };
|
|
193
193
|
e?.color && (d["--_color"] = e.color), e?.thickness && (d["--_thickness"] = e.thickness), e?.spacing && (d["--_spacing"] = e.spacing);
|
|
194
194
|
const i = {};
|
|
195
195
|
return e?.orientation === "vertical" && (i["data-orientation"] = "vertical"), /* @__PURE__ */ n(
|
|
196
|
-
|
|
196
|
+
r,
|
|
197
197
|
{
|
|
198
198
|
className: o ? `gloss-base-divider ${o}` : "gloss-base-divider",
|
|
199
199
|
style: d,
|
|
200
200
|
...i,
|
|
201
|
-
...
|
|
201
|
+
...l
|
|
202
202
|
}
|
|
203
203
|
);
|
|
204
204
|
}
|
|
205
|
-
|
|
206
|
-
function
|
|
207
|
-
const { as: a, definition: e, className: o, style: t, children:
|
|
205
|
+
U.displayName = "BaseDivider";
|
|
206
|
+
function B(s) {
|
|
207
|
+
const { as: a, definition: e, className: o, style: t, children: l, ...r } = s, d = a || "span", i = { ...t };
|
|
208
208
|
e?.fontFamily && (i["--_font-family"] = e.fontFamily), e?.fontSize && (i["--_font-size"] = e.fontSize), e?.fontWeight && (i["--_font-weight"] = e.fontWeight), e?.lineHeight && (i["--_line-height"] = e.lineHeight), e?.letterSpacing && (i["--_letter-spacing"] = e.letterSpacing), e?.color && (i["--_color"] = e.color);
|
|
209
209
|
const c = {};
|
|
210
210
|
return e?.align && (c["data-align"] = e.align), e?.truncate && (c["data-truncate"] = ""), e?.wrap && (c["data-wrap"] = e.wrap), /* @__PURE__ */ n(
|
|
@@ -213,24 +213,24 @@ function h(s) {
|
|
|
213
213
|
className: o ? `gloss-base-typography ${o}` : "gloss-base-typography",
|
|
214
214
|
style: i,
|
|
215
215
|
...c,
|
|
216
|
-
...
|
|
217
|
-
children:
|
|
216
|
+
...r,
|
|
217
|
+
children: l
|
|
218
218
|
}
|
|
219
219
|
);
|
|
220
220
|
}
|
|
221
|
-
|
|
222
|
-
const
|
|
221
|
+
B.displayName = "BaseTypography";
|
|
222
|
+
const W = {
|
|
223
223
|
sm: 16,
|
|
224
224
|
md: 20,
|
|
225
225
|
lg: 24,
|
|
226
226
|
xl: 32
|
|
227
|
-
},
|
|
227
|
+
}, S = ({
|
|
228
228
|
name: s,
|
|
229
229
|
size: a = "md",
|
|
230
230
|
className: e = "",
|
|
231
231
|
...o
|
|
232
232
|
}) => {
|
|
233
|
-
const t =
|
|
233
|
+
const t = W[a];
|
|
234
234
|
return /* @__PURE__ */ n(
|
|
235
235
|
"svg",
|
|
236
236
|
{
|
|
@@ -244,87 +244,101 @@ const j = {
|
|
|
244
244
|
}
|
|
245
245
|
);
|
|
246
246
|
};
|
|
247
|
-
|
|
248
|
-
function
|
|
249
|
-
const { definition: a, name: e, icon: o, className: t, style:
|
|
247
|
+
S.displayName = "Icon";
|
|
248
|
+
function L(s) {
|
|
249
|
+
const { definition: a, name: e, icon: o, className: t, style: l } = s;
|
|
250
250
|
if (!e && !o) return null;
|
|
251
|
-
const
|
|
252
|
-
a?.color && (
|
|
251
|
+
const r = { ...l };
|
|
252
|
+
a?.color && (r["--_color"] = a.color);
|
|
253
253
|
const d = {};
|
|
254
254
|
return a?.size && (d["data-size"] = a.size), /* @__PURE__ */ n(
|
|
255
255
|
"span",
|
|
256
256
|
{
|
|
257
257
|
className: t ? `gloss-base-icon ${t}` : "gloss-base-icon",
|
|
258
|
-
style:
|
|
258
|
+
style: r,
|
|
259
259
|
...d,
|
|
260
|
-
children: e ? /* @__PURE__ */ n(
|
|
260
|
+
children: e ? /* @__PURE__ */ n(S, { name: e, size: a?.size ?? "md" }) : o
|
|
261
261
|
}
|
|
262
262
|
);
|
|
263
263
|
}
|
|
264
|
-
|
|
265
|
-
function
|
|
264
|
+
L.displayName = "BaseIcon";
|
|
265
|
+
function Y(s) {
|
|
266
266
|
const {
|
|
267
267
|
open: a,
|
|
268
268
|
placement: e = "bottom",
|
|
269
269
|
offsetValue: o = 8,
|
|
270
|
-
onOpenChange: t
|
|
271
|
-
anchorEl: r
|
|
270
|
+
onOpenChange: t
|
|
272
271
|
} = s;
|
|
273
|
-
return
|
|
272
|
+
return z({
|
|
274
273
|
open: a,
|
|
275
274
|
onOpenChange: t,
|
|
276
275
|
placement: e,
|
|
277
|
-
middleware: [
|
|
278
|
-
whileElementsMounted:
|
|
279
|
-
|
|
276
|
+
middleware: [T(o), D(), I()],
|
|
277
|
+
whileElementsMounted: M,
|
|
278
|
+
// Phase 6.1.1 bug fix 2026-04-16: use top/left positioning (not transform).
|
|
279
|
+
// BaseOverlay wraps content in framer-motion motion.div with animate={scale},
|
|
280
|
+
// which owns the `transform` CSS property. If floating-ui writes
|
|
281
|
+
// transform: translate(), framer's transform: scale() overrides it, yielding
|
|
282
|
+
// a no-translate overlay stuck at (0,0). With transform: false, floating-ui
|
|
283
|
+
// writes left/top instead — no conflict with framer.
|
|
284
|
+
transform: !1
|
|
280
285
|
});
|
|
281
286
|
}
|
|
282
|
-
function
|
|
287
|
+
function K(s) {
|
|
283
288
|
const {
|
|
284
289
|
context: a,
|
|
285
290
|
outsidePress: e = !0,
|
|
286
291
|
escapeKey: o = !0,
|
|
287
292
|
role: t = "dialog"
|
|
288
|
-
} = s,
|
|
289
|
-
|
|
290
|
-
|
|
293
|
+
} = s, l = V(a, { outsidePress: e, escapeKey: o }), r = O(a, { role: t }), { getFloatingProps: d, getReferenceProps: i } = E([
|
|
294
|
+
l,
|
|
295
|
+
r
|
|
291
296
|
]);
|
|
292
297
|
return { getFloatingProps: d, getReferenceProps: i };
|
|
293
298
|
}
|
|
294
|
-
function
|
|
295
|
-
const { definition: a, open: e, onDismiss: o, anchorRef: t, className:
|
|
296
|
-
!
|
|
297
|
-
}, c =
|
|
299
|
+
function A(s) {
|
|
300
|
+
const { definition: a, open: e, onDismiss: o, anchorRef: t, className: l, style: r, children: d } = s, i = (N) => {
|
|
301
|
+
!N && o && o();
|
|
302
|
+
}, [c, g] = p.useState(
|
|
303
|
+
t?.current ?? null
|
|
304
|
+
);
|
|
305
|
+
p.useEffect(() => {
|
|
306
|
+
g(t?.current ?? null);
|
|
307
|
+
});
|
|
308
|
+
const _ = Y({
|
|
298
309
|
open: e,
|
|
299
310
|
placement: a?.placement,
|
|
300
311
|
offsetValue: a?.offset,
|
|
301
|
-
onOpenChange: i
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
312
|
+
onOpenChange: i
|
|
313
|
+
});
|
|
314
|
+
p.useEffect(() => {
|
|
315
|
+
c && (_.refs.setReference(c), _.update());
|
|
316
|
+
}, [c, _.refs, _.update]);
|
|
317
|
+
const { getFloatingProps: f } = K({
|
|
318
|
+
context: _.context,
|
|
305
319
|
outsidePress: a?.dismissOnClickOutside ?? !0,
|
|
306
320
|
escapeKey: a?.dismissOnEscape ?? !0,
|
|
307
321
|
role: a?.role ?? "dialog"
|
|
308
|
-
}),
|
|
309
|
-
a?.bg && (
|
|
310
|
-
const
|
|
311
|
-
|
|
322
|
+
}), m = { ...r };
|
|
323
|
+
a?.bg && (m["--_bg"] = a.bg), a?.shadow && (m["--_shadow"] = a.shadow), a?.radius && (m["--_radius"] = a.radius), a?.padding && (m["--_padding"] = a.padding), a?.zIndex && (m["--_z-index"] = a.zIndex);
|
|
324
|
+
const v = a?.portal !== !1, y = !!c, h = /* @__PURE__ */ n(P, { children: e && /* @__PURE__ */ n(
|
|
325
|
+
x.div,
|
|
312
326
|
{
|
|
313
|
-
ref:
|
|
314
|
-
className:
|
|
315
|
-
style:
|
|
327
|
+
ref: _.refs.setFloating,
|
|
328
|
+
className: l ? `gloss-base-overlay ${l}` : "gloss-base-overlay",
|
|
329
|
+
style: y ? { ..._.floatingStyles, ...m } : m,
|
|
316
330
|
initial: { opacity: 0, scale: 0.95 },
|
|
317
331
|
animate: { opacity: 1, scale: 1 },
|
|
318
332
|
exit: { opacity: 0, scale: 0.95 },
|
|
319
333
|
transition: { duration: 0.15 },
|
|
320
|
-
...
|
|
334
|
+
...f(),
|
|
321
335
|
children: d
|
|
322
336
|
}
|
|
323
337
|
) });
|
|
324
|
-
return
|
|
338
|
+
return v && typeof document < "u" ? R(h, document.body) : h;
|
|
325
339
|
}
|
|
326
|
-
|
|
327
|
-
const
|
|
340
|
+
A.displayName = "BaseOverlay";
|
|
341
|
+
const Z = {
|
|
328
342
|
bg: "--_bg",
|
|
329
343
|
color: "--_color",
|
|
330
344
|
borderColor: "--_border-color",
|
|
@@ -334,17 +348,17 @@ const Y = {
|
|
|
334
348
|
fontSize: "--_font-size",
|
|
335
349
|
minHeight: "--_min-height",
|
|
336
350
|
placeholderColor: "--_placeholder-color"
|
|
337
|
-
},
|
|
338
|
-
({ definition: s, className: a, style: e, label: o, helperText: t, required:
|
|
339
|
-
const { style: c, dataAttrs: g } =
|
|
340
|
-
|
|
351
|
+
}, q = {}, J = p.forwardRef(
|
|
352
|
+
({ definition: s, className: a, style: e, label: o, helperText: t, required: l, status: r = "default", ...d }, i) => {
|
|
353
|
+
const { style: c, dataAttrs: g } = u(s, Z, q);
|
|
354
|
+
r !== "default" && (g["data-status"] = r), d.disabled && (g["data-disabled"] = ""), d.readOnly && (g["data-readonly"] = "");
|
|
341
355
|
const _ = /* @__PURE__ */ n(
|
|
342
356
|
"input",
|
|
343
357
|
{
|
|
344
358
|
ref: i,
|
|
345
359
|
className: a ? `gloss-base-input ${a}` : "gloss-base-input",
|
|
346
360
|
style: { ...c, ...e },
|
|
347
|
-
required:
|
|
361
|
+
required: l,
|
|
348
362
|
...g,
|
|
349
363
|
...d
|
|
350
364
|
}
|
|
@@ -352,15 +366,15 @@ const Y = {
|
|
|
352
366
|
return !o && !t ? _ : /* @__PURE__ */ b("div", { className: "gloss-base-input__wrapper", children: [
|
|
353
367
|
o && /* @__PURE__ */ b("label", { className: "gloss-base-input__label", children: [
|
|
354
368
|
o,
|
|
355
|
-
|
|
369
|
+
l && /* @__PURE__ */ n("span", { className: "gloss-base-input__required", children: "*" })
|
|
356
370
|
] }),
|
|
357
371
|
_,
|
|
358
372
|
t && /* @__PURE__ */ n("div", { className: "gloss-base-input__helper", children: t })
|
|
359
373
|
] });
|
|
360
374
|
}
|
|
361
375
|
);
|
|
362
|
-
|
|
363
|
-
const
|
|
376
|
+
J.displayName = "BaseInput";
|
|
377
|
+
const Q = {
|
|
364
378
|
bg: "--_bg",
|
|
365
379
|
color: "--_color",
|
|
366
380
|
borderColor: "--_border-color",
|
|
@@ -372,19 +386,19 @@ const q = {
|
|
|
372
386
|
placeholderColor: "--_placeholder-color",
|
|
373
387
|
minRows: "--_min-rows",
|
|
374
388
|
maxRows: "--_max-rows"
|
|
375
|
-
},
|
|
389
|
+
}, ee = {
|
|
376
390
|
resize: "data-resize"
|
|
377
|
-
},
|
|
378
|
-
({ definition: s, className: a, style: e, label: o, helperText: t, required:
|
|
379
|
-
const { style: c, dataAttrs: g } =
|
|
380
|
-
|
|
391
|
+
}, ae = p.forwardRef(
|
|
392
|
+
({ definition: s, className: a, style: e, label: o, helperText: t, required: l, status: r = "default", ...d }, i) => {
|
|
393
|
+
const { style: c, dataAttrs: g } = u(s, Q, ee);
|
|
394
|
+
r !== "default" && (g["data-status"] = r), d.disabled && (g["data-disabled"] = ""), d.readOnly && (g["data-readonly"] = "");
|
|
381
395
|
const _ = /* @__PURE__ */ n(
|
|
382
396
|
"textarea",
|
|
383
397
|
{
|
|
384
398
|
ref: i,
|
|
385
399
|
className: a ? `gloss-base-textarea ${a}` : "gloss-base-textarea",
|
|
386
400
|
style: { ...c, ...e },
|
|
387
|
-
required:
|
|
401
|
+
required: l,
|
|
388
402
|
...g,
|
|
389
403
|
...d
|
|
390
404
|
}
|
|
@@ -392,25 +406,25 @@ const q = {
|
|
|
392
406
|
return !o && !t ? _ : /* @__PURE__ */ b("div", { className: "gloss-base-textarea__wrapper", children: [
|
|
393
407
|
o && /* @__PURE__ */ b("label", { className: "gloss-base-textarea__label", children: [
|
|
394
408
|
o,
|
|
395
|
-
|
|
409
|
+
l && /* @__PURE__ */ n("span", { className: "gloss-base-textarea__required", children: "*" })
|
|
396
410
|
] }),
|
|
397
411
|
_,
|
|
398
412
|
t && /* @__PURE__ */ n("div", { className: "gloss-base-textarea__helper", children: t })
|
|
399
413
|
] });
|
|
400
414
|
}
|
|
401
415
|
);
|
|
402
|
-
|
|
403
|
-
const
|
|
416
|
+
ae.displayName = "BaseTextarea";
|
|
417
|
+
const se = {
|
|
404
418
|
trackBg: "--_track-bg",
|
|
405
419
|
trackBorder: "--_track-border",
|
|
406
420
|
checkColor: "--_check-color",
|
|
407
421
|
trackSize: "--_track-size",
|
|
408
422
|
trackRadius: "--_track-radius"
|
|
409
|
-
},
|
|
410
|
-
({ definition: s, className: a, style: e, indeterminate: o, children: t, checked:
|
|
411
|
-
const { style: c, dataAttrs: g } =
|
|
412
|
-
|
|
413
|
-
const _ =
|
|
423
|
+
}, oe = p.forwardRef(
|
|
424
|
+
({ definition: s, className: a, style: e, indeterminate: o, children: t, checked: l, disabled: r, ...d }, i) => {
|
|
425
|
+
const { style: c, dataAttrs: g } = u(s, se);
|
|
426
|
+
r && (g["data-disabled"] = ""), l && (g["data-checked"] = ""), o && (g["data-indeterminate"] = "");
|
|
427
|
+
const _ = p.useCallback(
|
|
414
428
|
(f) => {
|
|
415
429
|
f && (f.indeterminate = !!o), typeof i == "function" ? i(f) : i && (i.current = f);
|
|
416
430
|
},
|
|
@@ -429,8 +443,8 @@ const ee = {
|
|
|
429
443
|
ref: _,
|
|
430
444
|
type: "checkbox",
|
|
431
445
|
className: "gloss-base-checkbox__input",
|
|
432
|
-
checked:
|
|
433
|
-
disabled:
|
|
446
|
+
checked: l,
|
|
447
|
+
disabled: r,
|
|
434
448
|
...d
|
|
435
449
|
}
|
|
436
450
|
),
|
|
@@ -441,16 +455,16 @@ const ee = {
|
|
|
441
455
|
);
|
|
442
456
|
}
|
|
443
457
|
);
|
|
444
|
-
|
|
445
|
-
const
|
|
458
|
+
oe.displayName = "BaseCheckbox";
|
|
459
|
+
const te = {
|
|
446
460
|
trackBg: "--_track-bg",
|
|
447
461
|
trackBorder: "--_track-border",
|
|
448
462
|
dotColor: "--_dot-color",
|
|
449
463
|
trackSize: "--_track-size"
|
|
450
|
-
},
|
|
451
|
-
({ definition: s, className: a, style: e, children: o, checked: t, disabled:
|
|
452
|
-
const { style: i, dataAttrs: c } =
|
|
453
|
-
return
|
|
464
|
+
}, re = p.forwardRef(
|
|
465
|
+
({ definition: s, className: a, style: e, children: o, checked: t, disabled: l, ...r }, d) => {
|
|
466
|
+
const { style: i, dataAttrs: c } = u(s, te);
|
|
467
|
+
return l && (c["data-disabled"] = ""), t && (c["data-checked"] = ""), /* @__PURE__ */ b(
|
|
454
468
|
"label",
|
|
455
469
|
{
|
|
456
470
|
className: a ? `gloss-base-radio ${a}` : "gloss-base-radio",
|
|
@@ -464,8 +478,8 @@ const se = {
|
|
|
464
478
|
type: "radio",
|
|
465
479
|
className: "gloss-base-radio__input",
|
|
466
480
|
checked: t,
|
|
467
|
-
disabled:
|
|
468
|
-
...
|
|
481
|
+
disabled: l,
|
|
482
|
+
...r
|
|
469
483
|
}
|
|
470
484
|
),
|
|
471
485
|
/* @__PURE__ */ n("span", { className: "gloss-base-radio__track" }),
|
|
@@ -475,18 +489,18 @@ const se = {
|
|
|
475
489
|
);
|
|
476
490
|
}
|
|
477
491
|
);
|
|
478
|
-
|
|
479
|
-
const
|
|
492
|
+
re.displayName = "BaseRadio";
|
|
493
|
+
const le = {
|
|
480
494
|
trackBg: "--_track-bg",
|
|
481
495
|
trackBgActive: "--_track-bg-active",
|
|
482
496
|
thumbBg: "--_thumb-bg",
|
|
483
497
|
trackWidth: "--_track-width",
|
|
484
498
|
trackHeight: "--_track-height",
|
|
485
499
|
thumbSize: "--_thumb-size"
|
|
486
|
-
},
|
|
487
|
-
({ definition: s, className: a, style: e, children: o, checked: t, disabled:
|
|
488
|
-
const { style: i, dataAttrs: c } =
|
|
489
|
-
return
|
|
500
|
+
}, ie = p.forwardRef(
|
|
501
|
+
({ definition: s, className: a, style: e, children: o, checked: t, disabled: l, ...r }, d) => {
|
|
502
|
+
const { style: i, dataAttrs: c } = u(s, le);
|
|
503
|
+
return l && (c["data-disabled"] = ""), t && (c["data-checked"] = ""), /* @__PURE__ */ b(
|
|
490
504
|
"label",
|
|
491
505
|
{
|
|
492
506
|
className: a ? `gloss-base-toggle ${a}` : "gloss-base-toggle",
|
|
@@ -501,8 +515,8 @@ const te = {
|
|
|
501
515
|
role: "switch",
|
|
502
516
|
className: "gloss-base-toggle__input",
|
|
503
517
|
checked: t,
|
|
504
|
-
disabled:
|
|
505
|
-
...
|
|
518
|
+
disabled: l,
|
|
519
|
+
...r
|
|
506
520
|
}
|
|
507
521
|
),
|
|
508
522
|
/* @__PURE__ */ n("span", { className: "gloss-base-toggle__track", children: /* @__PURE__ */ n("span", { className: "gloss-base-toggle__thumb" }) }),
|
|
@@ -512,8 +526,8 @@ const te = {
|
|
|
512
526
|
);
|
|
513
527
|
}
|
|
514
528
|
);
|
|
515
|
-
|
|
516
|
-
const
|
|
529
|
+
ie.displayName = "BaseToggle";
|
|
530
|
+
const de = {
|
|
517
531
|
bg: "--_bg",
|
|
518
532
|
borderColor: "--_border-color",
|
|
519
533
|
radius: "--_radius",
|
|
@@ -521,21 +535,21 @@ const le = {
|
|
|
521
535
|
minHeight: "--_min-height",
|
|
522
536
|
padding: "--_padding"
|
|
523
537
|
};
|
|
524
|
-
function
|
|
525
|
-
const { definition: a, className: e, style: o, children: t, ...
|
|
538
|
+
function ne(s) {
|
|
539
|
+
const { definition: a, className: e, style: o, children: t, ...l } = s, { style: r, dataAttrs: d } = u(a, de);
|
|
526
540
|
return /* @__PURE__ */ n(
|
|
527
541
|
"div",
|
|
528
542
|
{
|
|
529
543
|
className: e ? `gloss-base-select ${e}` : "gloss-base-select",
|
|
530
|
-
style: { ...
|
|
544
|
+
style: { ...r, ...o },
|
|
531
545
|
...d,
|
|
532
|
-
...
|
|
546
|
+
...l,
|
|
533
547
|
children: t
|
|
534
548
|
}
|
|
535
549
|
);
|
|
536
550
|
}
|
|
537
|
-
|
|
538
|
-
const
|
|
551
|
+
ne.displayName = "BaseSelect";
|
|
552
|
+
const ce = p.forwardRef(
|
|
539
553
|
({ className: s, children: a, ...e }, o) => /* @__PURE__ */ n(
|
|
540
554
|
"button",
|
|
541
555
|
{
|
|
@@ -547,48 +561,48 @@ const de = u.forwardRef(
|
|
|
547
561
|
}
|
|
548
562
|
)
|
|
549
563
|
);
|
|
550
|
-
|
|
551
|
-
const
|
|
564
|
+
ce.displayName = "BaseSelectTrigger";
|
|
565
|
+
const ge = {
|
|
552
566
|
bg: "--_dropdown-bg",
|
|
553
567
|
borderColor: "--_dropdown-border-color",
|
|
554
568
|
radius: "--_dropdown-radius",
|
|
555
569
|
elevation: "--_dropdown-elevation",
|
|
556
570
|
maxHeight: "--_dropdown-max-height"
|
|
557
571
|
};
|
|
558
|
-
function
|
|
559
|
-
const { definition: a, className: e, style: o, children: t, ...
|
|
572
|
+
function _e(s) {
|
|
573
|
+
const { definition: a, className: e, style: o, children: t, ...l } = s, { style: r } = u(a, ge);
|
|
560
574
|
return /* @__PURE__ */ n(
|
|
561
575
|
"div",
|
|
562
576
|
{
|
|
563
577
|
className: e ? `gloss-base-select__dropdown ${e}` : "gloss-base-select__dropdown",
|
|
564
|
-
style: { ...
|
|
578
|
+
style: { ...r, ...o },
|
|
565
579
|
role: "listbox",
|
|
566
|
-
...
|
|
580
|
+
...l,
|
|
567
581
|
children: t
|
|
568
582
|
}
|
|
569
583
|
);
|
|
570
584
|
}
|
|
571
|
-
|
|
572
|
-
const
|
|
573
|
-
({ className: s, children: a, selected: e, disabled: o, ...t },
|
|
574
|
-
const
|
|
575
|
-
return e && (
|
|
585
|
+
_e.displayName = "BaseSelectDropdown";
|
|
586
|
+
const pe = p.forwardRef(
|
|
587
|
+
({ className: s, children: a, selected: e, disabled: o, ...t }, l) => {
|
|
588
|
+
const r = {};
|
|
589
|
+
return e && (r["data-selected"] = ""), o && (r["data-disabled"] = ""), /* @__PURE__ */ n(
|
|
576
590
|
"div",
|
|
577
591
|
{
|
|
578
|
-
ref:
|
|
592
|
+
ref: l,
|
|
579
593
|
role: "option",
|
|
580
594
|
"aria-selected": e,
|
|
581
595
|
"aria-disabled": o,
|
|
582
596
|
className: s ? `gloss-base-select__option ${s}` : "gloss-base-select__option",
|
|
583
|
-
...
|
|
597
|
+
...r,
|
|
584
598
|
...t,
|
|
585
599
|
children: a
|
|
586
600
|
}
|
|
587
601
|
);
|
|
588
602
|
}
|
|
589
603
|
);
|
|
590
|
-
|
|
591
|
-
function
|
|
604
|
+
pe.displayName = "BaseSelectOption";
|
|
605
|
+
function ue({ label: s, className: a, children: e, ...o }) {
|
|
592
606
|
return /* @__PURE__ */ b(
|
|
593
607
|
"div",
|
|
594
608
|
{
|
|
@@ -603,8 +617,8 @@ function _e({ label: s, className: a, children: e, ...o }) {
|
|
|
603
617
|
}
|
|
604
618
|
);
|
|
605
619
|
}
|
|
606
|
-
|
|
607
|
-
const
|
|
620
|
+
ue.displayName = "BaseSelectGroup";
|
|
621
|
+
const be = {
|
|
608
622
|
trackBg: "--_track-bg",
|
|
609
623
|
trackActiveBg: "--_track-active-bg",
|
|
610
624
|
thumbBg: "--_thumb-bg",
|
|
@@ -612,44 +626,44 @@ const pe = {
|
|
|
612
626
|
thumbSize: "--_thumb-size",
|
|
613
627
|
trackHeight: "--_track-height",
|
|
614
628
|
thumbShadow: "--_thumb-shadow"
|
|
615
|
-
},
|
|
616
|
-
function
|
|
629
|
+
}, fe = {};
|
|
630
|
+
function me({
|
|
617
631
|
definition: s,
|
|
618
632
|
className: a,
|
|
619
633
|
style: e,
|
|
620
634
|
orientation: o = "horizontal",
|
|
621
635
|
disabled: t,
|
|
622
|
-
children:
|
|
623
|
-
...
|
|
636
|
+
children: l,
|
|
637
|
+
...r
|
|
624
638
|
}) {
|
|
625
|
-
const { style: d, dataAttrs: i } =
|
|
639
|
+
const { style: d, dataAttrs: i } = u(s, be, fe);
|
|
626
640
|
return o !== "horizontal" && (i["data-orientation"] = o), t && (i["data-disabled"] = ""), /* @__PURE__ */ n(
|
|
627
641
|
"div",
|
|
628
642
|
{
|
|
629
643
|
className: a ? `gloss-base-slider ${a}` : "gloss-base-slider",
|
|
630
644
|
style: { ...d, ...e },
|
|
631
645
|
...i,
|
|
632
|
-
...
|
|
633
|
-
children:
|
|
646
|
+
...r,
|
|
647
|
+
children: l
|
|
634
648
|
}
|
|
635
649
|
);
|
|
636
650
|
}
|
|
637
|
-
|
|
638
|
-
const
|
|
651
|
+
me.displayName = "BaseSlider";
|
|
652
|
+
const ye = {
|
|
639
653
|
bg: "--_bg",
|
|
640
654
|
border: "--_border",
|
|
641
655
|
radius: "--_radius",
|
|
642
656
|
elevation: "--_elevation",
|
|
643
657
|
padding: "--_padding"
|
|
644
|
-
},
|
|
645
|
-
({ definition: s, className: a, style: e, children: o, ...t },
|
|
646
|
-
const { style:
|
|
658
|
+
}, ve = p.forwardRef(
|
|
659
|
+
({ definition: s, className: a, style: e, children: o, ...t }, l) => {
|
|
660
|
+
const { style: r, dataAttrs: d } = u(s, ye);
|
|
647
661
|
return /* @__PURE__ */ n(
|
|
648
662
|
"div",
|
|
649
663
|
{
|
|
650
|
-
ref:
|
|
664
|
+
ref: l,
|
|
651
665
|
className: a ? `gloss-base-card ${a}` : "gloss-base-card",
|
|
652
|
-
style: { ...
|
|
666
|
+
style: { ...r, ...e },
|
|
653
667
|
...d,
|
|
654
668
|
...t,
|
|
655
669
|
children: o
|
|
@@ -657,57 +671,57 @@ const fe = {
|
|
|
657
671
|
);
|
|
658
672
|
}
|
|
659
673
|
);
|
|
660
|
-
|
|
661
|
-
const
|
|
662
|
-
({ definition: s, className: a, style: e, children: o, ...t },
|
|
663
|
-
const
|
|
664
|
-
return s?.padding && (
|
|
674
|
+
ve.displayName = "BaseCard";
|
|
675
|
+
const he = p.forwardRef(
|
|
676
|
+
({ definition: s, className: a, style: e, children: o, ...t }, l) => {
|
|
677
|
+
const r = { ...e };
|
|
678
|
+
return s?.padding && (r["--_header-padding"] = s.padding), /* @__PURE__ */ n(
|
|
665
679
|
"div",
|
|
666
680
|
{
|
|
667
|
-
ref:
|
|
681
|
+
ref: l,
|
|
668
682
|
className: a ? `gloss-base-card__header ${a}` : "gloss-base-card__header",
|
|
669
|
-
style:
|
|
683
|
+
style: r,
|
|
670
684
|
...t,
|
|
671
685
|
children: o
|
|
672
686
|
}
|
|
673
687
|
);
|
|
674
688
|
}
|
|
675
689
|
);
|
|
676
|
-
|
|
677
|
-
const
|
|
678
|
-
({ definition: s, className: a, style: e, children: o, ...t },
|
|
679
|
-
const
|
|
680
|
-
return s?.padding && (
|
|
690
|
+
he.displayName = "BaseCardHeader";
|
|
691
|
+
const Be = p.forwardRef(
|
|
692
|
+
({ definition: s, className: a, style: e, children: o, ...t }, l) => {
|
|
693
|
+
const r = { ...e };
|
|
694
|
+
return s?.padding && (r["--_body-padding"] = s.padding), /* @__PURE__ */ n(
|
|
681
695
|
"div",
|
|
682
696
|
{
|
|
683
|
-
ref:
|
|
697
|
+
ref: l,
|
|
684
698
|
className: a ? `gloss-base-card__body ${a}` : "gloss-base-card__body",
|
|
685
|
-
style:
|
|
699
|
+
style: r,
|
|
686
700
|
...t,
|
|
687
701
|
children: o
|
|
688
702
|
}
|
|
689
703
|
);
|
|
690
704
|
}
|
|
691
705
|
);
|
|
692
|
-
|
|
693
|
-
const
|
|
694
|
-
({ definition: s, className: a, style: e, children: o, ...t },
|
|
695
|
-
const
|
|
696
|
-
return s?.padding && (
|
|
706
|
+
Be.displayName = "BaseCardBody";
|
|
707
|
+
const Se = p.forwardRef(
|
|
708
|
+
({ definition: s, className: a, style: e, children: o, ...t }, l) => {
|
|
709
|
+
const r = { ...e };
|
|
710
|
+
return s?.padding && (r["--_footer-padding"] = s.padding), /* @__PURE__ */ n(
|
|
697
711
|
"div",
|
|
698
712
|
{
|
|
699
|
-
ref:
|
|
713
|
+
ref: l,
|
|
700
714
|
className: a ? `gloss-base-card__footer ${a}` : "gloss-base-card__footer",
|
|
701
|
-
style:
|
|
715
|
+
style: r,
|
|
702
716
|
...t,
|
|
703
717
|
children: o
|
|
704
718
|
}
|
|
705
719
|
);
|
|
706
720
|
}
|
|
707
721
|
);
|
|
708
|
-
|
|
709
|
-
const
|
|
710
|
-
({ src: s, alt: a, height: e, className: o, style: t, children:
|
|
722
|
+
Se.displayName = "BaseCardFooter";
|
|
723
|
+
const Ae = p.forwardRef(
|
|
724
|
+
({ src: s, alt: a, height: e, className: o, style: t, children: l, ...r }, d) => {
|
|
711
725
|
const i = { ...t };
|
|
712
726
|
return e && (i.height = e), /* @__PURE__ */ n(
|
|
713
727
|
"div",
|
|
@@ -715,14 +729,14 @@ const Be = u.forwardRef(
|
|
|
715
729
|
ref: d,
|
|
716
730
|
className: o ? `gloss-base-card__media ${o}` : "gloss-base-card__media",
|
|
717
731
|
style: i,
|
|
718
|
-
...
|
|
719
|
-
children: s ? /* @__PURE__ */ n("img", { src: s, alt: a || "" }) :
|
|
732
|
+
...r,
|
|
733
|
+
children: s ? /* @__PURE__ */ n("img", { src: s, alt: a || "" }) : l
|
|
720
734
|
}
|
|
721
735
|
);
|
|
722
736
|
}
|
|
723
737
|
);
|
|
724
|
-
|
|
725
|
-
const
|
|
738
|
+
Ae.displayName = "BaseCardMedia";
|
|
739
|
+
const ke = p.forwardRef(
|
|
726
740
|
({ className: s, children: a, ...e }, o) => /* @__PURE__ */ n(
|
|
727
741
|
"h3",
|
|
728
742
|
{
|
|
@@ -733,8 +747,8 @@ const Se = u.forwardRef(
|
|
|
733
747
|
}
|
|
734
748
|
)
|
|
735
749
|
);
|
|
736
|
-
|
|
737
|
-
const
|
|
750
|
+
ke.displayName = "BaseCardTitle";
|
|
751
|
+
const Ne = p.forwardRef(
|
|
738
752
|
({ className: s, children: a, ...e }, o) => /* @__PURE__ */ n(
|
|
739
753
|
"p",
|
|
740
754
|
{
|
|
@@ -745,8 +759,8 @@ const Ae = u.forwardRef(
|
|
|
745
759
|
}
|
|
746
760
|
)
|
|
747
761
|
);
|
|
748
|
-
|
|
749
|
-
const
|
|
762
|
+
Ne.displayName = "BaseCardSubtitle";
|
|
763
|
+
const Ce = p.forwardRef(
|
|
750
764
|
({ className: s, children: a, ...e }, o) => /* @__PURE__ */ n(
|
|
751
765
|
"div",
|
|
752
766
|
{
|
|
@@ -757,20 +771,20 @@ const ke = u.forwardRef(
|
|
|
757
771
|
}
|
|
758
772
|
)
|
|
759
773
|
);
|
|
760
|
-
|
|
761
|
-
const
|
|
774
|
+
Ce.displayName = "BaseCardActions";
|
|
775
|
+
const $e = {
|
|
762
776
|
borderColor: "--_border-color",
|
|
763
777
|
radius: "--_radius",
|
|
764
778
|
gap: "--_gap"
|
|
765
|
-
},
|
|
766
|
-
({ definition: s, className: a, style: e, children: o, ...t },
|
|
767
|
-
const { style:
|
|
779
|
+
}, we = p.forwardRef(
|
|
780
|
+
({ definition: s, className: a, style: e, children: o, ...t }, l) => {
|
|
781
|
+
const { style: r, dataAttrs: d } = u(s, $e);
|
|
768
782
|
return /* @__PURE__ */ n(
|
|
769
783
|
"div",
|
|
770
784
|
{
|
|
771
|
-
ref:
|
|
785
|
+
ref: l,
|
|
772
786
|
className: a ? `gloss-base-accordion ${a}` : "gloss-base-accordion",
|
|
773
|
-
style: { ...
|
|
787
|
+
style: { ...r, ...e },
|
|
774
788
|
...d,
|
|
775
789
|
...t,
|
|
776
790
|
children: o
|
|
@@ -778,25 +792,25 @@ const Ne = {
|
|
|
778
792
|
);
|
|
779
793
|
}
|
|
780
794
|
);
|
|
781
|
-
|
|
782
|
-
const
|
|
783
|
-
({ className: s, style: a, children: e, open: o, ...t },
|
|
784
|
-
const
|
|
785
|
-
return o && (
|
|
795
|
+
we.displayName = "BaseAccordion";
|
|
796
|
+
const Re = p.forwardRef(
|
|
797
|
+
({ className: s, style: a, children: e, open: o, ...t }, l) => {
|
|
798
|
+
const r = {};
|
|
799
|
+
return o && (r["data-open"] = ""), /* @__PURE__ */ n(
|
|
786
800
|
"div",
|
|
787
801
|
{
|
|
788
|
-
ref:
|
|
802
|
+
ref: l,
|
|
789
803
|
className: s ? `gloss-base-accordion__item ${s}` : "gloss-base-accordion__item",
|
|
790
804
|
style: a,
|
|
791
|
-
...
|
|
805
|
+
...r,
|
|
792
806
|
...t,
|
|
793
807
|
children: e
|
|
794
808
|
}
|
|
795
809
|
);
|
|
796
810
|
}
|
|
797
811
|
);
|
|
798
|
-
|
|
799
|
-
const
|
|
812
|
+
Re.displayName = "BaseAccordionItem";
|
|
813
|
+
const Pe = p.forwardRef(
|
|
800
814
|
({ className: s, children: a, ...e }, o) => /* @__PURE__ */ n(
|
|
801
815
|
"button",
|
|
802
816
|
{
|
|
@@ -808,8 +822,8 @@ const we = u.forwardRef(
|
|
|
808
822
|
}
|
|
809
823
|
)
|
|
810
824
|
);
|
|
811
|
-
|
|
812
|
-
const
|
|
825
|
+
Pe.displayName = "BaseAccordionTrigger";
|
|
826
|
+
const xe = p.forwardRef(
|
|
813
827
|
({ className: s, style: a, children: e, ...o }, t) => /* @__PURE__ */ n(
|
|
814
828
|
"div",
|
|
815
829
|
{
|
|
@@ -821,24 +835,24 @@ const Pe = u.forwardRef(
|
|
|
821
835
|
}
|
|
822
836
|
)
|
|
823
837
|
);
|
|
824
|
-
|
|
825
|
-
const
|
|
838
|
+
xe.displayName = "BaseAccordionContent";
|
|
839
|
+
const ze = {
|
|
826
840
|
bg: "--_bg",
|
|
827
841
|
borderColor: "--_border-color",
|
|
828
842
|
radius: "--_radius",
|
|
829
843
|
elevation: "--_elevation",
|
|
830
844
|
padding: "--_padding",
|
|
831
845
|
minWidth: "--_min-width"
|
|
832
|
-
},
|
|
833
|
-
({ definition: s, className: a, style: e, children: o, ...t },
|
|
834
|
-
const { style:
|
|
846
|
+
}, Me = p.forwardRef(
|
|
847
|
+
({ definition: s, className: a, style: e, children: o, ...t }, l) => {
|
|
848
|
+
const { style: r, dataAttrs: d } = u(s, ze);
|
|
835
849
|
return /* @__PURE__ */ n(
|
|
836
850
|
"div",
|
|
837
851
|
{
|
|
838
|
-
ref:
|
|
852
|
+
ref: l,
|
|
839
853
|
role: "menu",
|
|
840
854
|
className: a ? `gloss-base-menu ${a}` : "gloss-base-menu",
|
|
841
|
-
style: { ...
|
|
855
|
+
style: { ...r, ...e },
|
|
842
856
|
...d,
|
|
843
857
|
...t,
|
|
844
858
|
children: o
|
|
@@ -846,8 +860,8 @@ const Re = {
|
|
|
846
860
|
);
|
|
847
861
|
}
|
|
848
862
|
);
|
|
849
|
-
|
|
850
|
-
function
|
|
863
|
+
Me.displayName = "BaseMenu";
|
|
864
|
+
function Te({ label: s, className: a, style: e, children: o, ...t }) {
|
|
851
865
|
return /* @__PURE__ */ b(
|
|
852
866
|
"div",
|
|
853
867
|
{
|
|
@@ -863,23 +877,23 @@ function ze({ label: s, className: a, style: e, children: o, ...t }) {
|
|
|
863
877
|
}
|
|
864
878
|
);
|
|
865
879
|
}
|
|
866
|
-
|
|
867
|
-
const
|
|
880
|
+
Te.displayName = "BaseMenuGroup";
|
|
881
|
+
const De = {
|
|
868
882
|
padding: "--_item-padding",
|
|
869
883
|
fontSize: "--_item-font-size",
|
|
870
884
|
color: "--_item-color",
|
|
871
885
|
hoverBg: "--_item-hover-bg"
|
|
872
|
-
},
|
|
873
|
-
({ definition: s, className: a, style: e, children: o, disabled: t, active:
|
|
874
|
-
const { style: c, dataAttrs: g } =
|
|
875
|
-
return t && (g["data-disabled"] = ""),
|
|
876
|
-
|
|
886
|
+
}, Ie = p.forwardRef(
|
|
887
|
+
({ definition: s, className: a, style: e, children: o, disabled: t, active: l, as: r = "div", ...d }, i) => {
|
|
888
|
+
const { style: c, dataAttrs: g } = u(s, De);
|
|
889
|
+
return t && (g["data-disabled"] = ""), l && (g["data-active"] = ""), /* @__PURE__ */ n(
|
|
890
|
+
r,
|
|
877
891
|
{
|
|
878
892
|
ref: i,
|
|
879
893
|
role: "menuitem",
|
|
880
894
|
tabIndex: t ? -1 : 0,
|
|
881
895
|
"aria-disabled": t || void 0,
|
|
882
|
-
"aria-current":
|
|
896
|
+
"aria-current": l ? "page" : void 0,
|
|
883
897
|
className: a ? `gloss-base-menu__item ${a}` : "gloss-base-menu__item",
|
|
884
898
|
style: { ...c, ...e },
|
|
885
899
|
...g,
|
|
@@ -889,8 +903,8 @@ const Me = {
|
|
|
889
903
|
);
|
|
890
904
|
}
|
|
891
905
|
);
|
|
892
|
-
|
|
893
|
-
function
|
|
906
|
+
Ie.displayName = "BaseMenuItem";
|
|
907
|
+
function Ve({ className: s }) {
|
|
894
908
|
return /* @__PURE__ */ n(
|
|
895
909
|
"div",
|
|
896
910
|
{
|
|
@@ -899,8 +913,8 @@ function De({ className: s }) {
|
|
|
899
913
|
}
|
|
900
914
|
);
|
|
901
915
|
}
|
|
902
|
-
|
|
903
|
-
const
|
|
916
|
+
Ve.displayName = "BaseMenuDivider";
|
|
917
|
+
const Oe = {
|
|
904
918
|
bg: "--_bg",
|
|
905
919
|
color: "--_color",
|
|
906
920
|
radius: "--_radius",
|
|
@@ -908,18 +922,18 @@ const Ie = {
|
|
|
908
922
|
fontSize: "--_font-size",
|
|
909
923
|
maxWidth: "--_max-width",
|
|
910
924
|
arrowSize: "--_arrow-size"
|
|
911
|
-
},
|
|
912
|
-
({ definition: s, className: a, style: e, children: o, placement: t = "top", ...
|
|
913
|
-
const { style: d, dataAttrs: i } =
|
|
925
|
+
}, Ee = {}, He = p.forwardRef(
|
|
926
|
+
({ definition: s, className: a, style: e, children: o, placement: t = "top", ...l }, r) => {
|
|
927
|
+
const { style: d, dataAttrs: i } = u(s, Oe, Ee);
|
|
914
928
|
return i["data-placement"] = t, /* @__PURE__ */ b(
|
|
915
929
|
"div",
|
|
916
930
|
{
|
|
917
|
-
ref:
|
|
931
|
+
ref: r,
|
|
918
932
|
role: "tooltip",
|
|
919
933
|
className: a ? `gloss-base-tooltip ${a}` : "gloss-base-tooltip",
|
|
920
934
|
style: { ...d, ...e },
|
|
921
935
|
...i,
|
|
922
|
-
...
|
|
936
|
+
...l,
|
|
923
937
|
children: [
|
|
924
938
|
/* @__PURE__ */ n("div", { className: "gloss-base-tooltip__content", children: o }),
|
|
925
939
|
/* @__PURE__ */ n("div", { className: "gloss-base-tooltip__arrow" })
|
|
@@ -928,17 +942,17 @@ const Ie = {
|
|
|
928
942
|
);
|
|
929
943
|
}
|
|
930
944
|
);
|
|
931
|
-
|
|
932
|
-
const
|
|
945
|
+
He.displayName = "BaseTooltip";
|
|
946
|
+
const Ge = {
|
|
933
947
|
activeColor: "--_active-color",
|
|
934
948
|
inactiveColor: "--_inactive-color",
|
|
935
949
|
hoverColor: "--_hover-color",
|
|
936
950
|
starSize: "--_star-size",
|
|
937
951
|
gap: "--_gap"
|
|
938
|
-
},
|
|
939
|
-
({ definition: s, className: a, style: e, children: o, readOnly: t, disabled:
|
|
940
|
-
const { style: i, dataAttrs: c } =
|
|
941
|
-
return t && (c["data-readonly"] = ""),
|
|
952
|
+
}, Fe = p.forwardRef(
|
|
953
|
+
({ definition: s, className: a, style: e, children: o, readOnly: t, disabled: l, ...r }, d) => {
|
|
954
|
+
const { style: i, dataAttrs: c } = u(s, Ge);
|
|
955
|
+
return t && (c["data-readonly"] = ""), l && (c["data-disabled"] = ""), /* @__PURE__ */ n(
|
|
942
956
|
"div",
|
|
943
957
|
{
|
|
944
958
|
ref: d,
|
|
@@ -946,60 +960,60 @@ const He = {
|
|
|
946
960
|
className: a ? `gloss-base-rating ${a}` : "gloss-base-rating",
|
|
947
961
|
style: { ...i, ...e },
|
|
948
962
|
...c,
|
|
949
|
-
...
|
|
963
|
+
...r,
|
|
950
964
|
children: o
|
|
951
965
|
}
|
|
952
966
|
);
|
|
953
967
|
}
|
|
954
968
|
);
|
|
955
|
-
|
|
956
|
-
const
|
|
969
|
+
Fe.displayName = "BaseRating";
|
|
970
|
+
const Xe = {
|
|
957
971
|
bg: "--_bg",
|
|
958
972
|
activeBg: "--_active-bg",
|
|
959
973
|
borderColor: "--_border-color",
|
|
960
974
|
radius: "--_radius",
|
|
961
975
|
padding: "--_padding",
|
|
962
976
|
fontSize: "--_font-size"
|
|
963
|
-
},
|
|
964
|
-
({ definition: s, className: a, style: e, children: o, disabled: t, ...
|
|
965
|
-
const { style: d, dataAttrs: i } =
|
|
977
|
+
}, je = p.forwardRef(
|
|
978
|
+
({ definition: s, className: a, style: e, children: o, disabled: t, ...l }, r) => {
|
|
979
|
+
const { style: d, dataAttrs: i } = u(s, Xe);
|
|
966
980
|
return t && (i["data-disabled"] = ""), /* @__PURE__ */ n(
|
|
967
981
|
"div",
|
|
968
982
|
{
|
|
969
|
-
ref:
|
|
983
|
+
ref: r,
|
|
970
984
|
role: "radiogroup",
|
|
971
985
|
className: a ? `gloss-base-segmented-control ${a}` : "gloss-base-segmented-control",
|
|
972
986
|
style: { ...d, ...e },
|
|
973
987
|
...i,
|
|
974
|
-
...
|
|
988
|
+
...l,
|
|
975
989
|
children: o
|
|
976
990
|
}
|
|
977
991
|
);
|
|
978
992
|
}
|
|
979
993
|
);
|
|
980
|
-
|
|
981
|
-
const
|
|
994
|
+
je.displayName = "BaseSegmentedControl";
|
|
995
|
+
const Ue = {
|
|
982
996
|
bg: "--_bg",
|
|
983
997
|
borderColor: "--_border-color",
|
|
984
998
|
radius: "--_radius",
|
|
985
999
|
elevation: "--_elevation",
|
|
986
1000
|
padding: "--_padding"
|
|
987
1001
|
};
|
|
988
|
-
function
|
|
989
|
-
const { style:
|
|
1002
|
+
function We({ definition: s, className: a, style: e, children: o, ...t }) {
|
|
1003
|
+
const { style: l, dataAttrs: r } = u(s, Ue);
|
|
990
1004
|
return /* @__PURE__ */ n(
|
|
991
1005
|
"div",
|
|
992
1006
|
{
|
|
993
1007
|
className: a ? `gloss-base-datepicker ${a}` : "gloss-base-datepicker",
|
|
994
|
-
style: { ...
|
|
995
|
-
...
|
|
1008
|
+
style: { ...l, ...e },
|
|
1009
|
+
...r,
|
|
996
1010
|
...t,
|
|
997
1011
|
children: o
|
|
998
1012
|
}
|
|
999
1013
|
);
|
|
1000
1014
|
}
|
|
1001
|
-
|
|
1002
|
-
function
|
|
1015
|
+
We.displayName = "BaseDatePicker";
|
|
1016
|
+
function Le({ className: s, style: a, children: e, ...o }) {
|
|
1003
1017
|
return /* @__PURE__ */ n(
|
|
1004
1018
|
"div",
|
|
1005
1019
|
{
|
|
@@ -1010,8 +1024,8 @@ function Ue({ className: s, style: a, children: e, ...o }) {
|
|
|
1010
1024
|
}
|
|
1011
1025
|
);
|
|
1012
1026
|
}
|
|
1013
|
-
|
|
1014
|
-
function
|
|
1027
|
+
Le.displayName = "BaseDatePickerHeader";
|
|
1028
|
+
function Ye({ className: s, style: a, children: e, ...o }) {
|
|
1015
1029
|
return /* @__PURE__ */ n(
|
|
1016
1030
|
"div",
|
|
1017
1031
|
{
|
|
@@ -1023,40 +1037,40 @@ function We({ className: s, style: a, children: e, ...o }) {
|
|
|
1023
1037
|
}
|
|
1024
1038
|
);
|
|
1025
1039
|
}
|
|
1026
|
-
|
|
1027
|
-
const
|
|
1040
|
+
Ye.displayName = "BaseDatePickerCalendar";
|
|
1041
|
+
const Ke = {
|
|
1028
1042
|
bg: "--_day-bg",
|
|
1029
1043
|
color: "--_day-color",
|
|
1030
1044
|
radius: "--_day-radius",
|
|
1031
1045
|
size: "--_day-size"
|
|
1032
1046
|
};
|
|
1033
|
-
function
|
|
1047
|
+
function Ze({
|
|
1034
1048
|
definition: s,
|
|
1035
1049
|
className: a,
|
|
1036
1050
|
style: e,
|
|
1037
1051
|
selected: o,
|
|
1038
1052
|
today: t,
|
|
1039
|
-
outsideMonth:
|
|
1040
|
-
disabled:
|
|
1053
|
+
outsideMonth: l,
|
|
1054
|
+
disabled: r,
|
|
1041
1055
|
children: d,
|
|
1042
1056
|
...i
|
|
1043
1057
|
}) {
|
|
1044
|
-
const { style: c, dataAttrs: g } =
|
|
1045
|
-
return o && (g["data-selected"] = ""), t && (g["data-today"] = ""),
|
|
1058
|
+
const { style: c, dataAttrs: g } = u(s, Ke);
|
|
1059
|
+
return o && (g["data-selected"] = ""), t && (g["data-today"] = ""), r && (g["data-disabled"] = ""), l && (g["data-outside-month"] = ""), /* @__PURE__ */ n(
|
|
1046
1060
|
"button",
|
|
1047
1061
|
{
|
|
1048
1062
|
type: "button",
|
|
1049
1063
|
className: a ? `gloss-base-datepicker__day ${a}` : "gloss-base-datepicker__day",
|
|
1050
1064
|
style: { ...c, ...e },
|
|
1051
|
-
disabled:
|
|
1065
|
+
disabled: r,
|
|
1052
1066
|
...g,
|
|
1053
1067
|
...i,
|
|
1054
1068
|
children: d
|
|
1055
1069
|
}
|
|
1056
1070
|
);
|
|
1057
1071
|
}
|
|
1058
|
-
|
|
1059
|
-
const
|
|
1072
|
+
Ze.displayName = "BaseDatePickerDay";
|
|
1073
|
+
const qe = {
|
|
1060
1074
|
bg: "--_bg",
|
|
1061
1075
|
borderColor: "--_border-color",
|
|
1062
1076
|
radius: "--_radius",
|
|
@@ -1064,21 +1078,21 @@ const Ke = {
|
|
|
1064
1078
|
padding: "--_padding",
|
|
1065
1079
|
cellHeight: "--_cell-height"
|
|
1066
1080
|
};
|
|
1067
|
-
function
|
|
1068
|
-
const { style:
|
|
1081
|
+
function Je({ definition: s, className: a, style: e, children: o, ...t }) {
|
|
1082
|
+
const { style: l, dataAttrs: r } = u(s, qe);
|
|
1069
1083
|
return /* @__PURE__ */ n(
|
|
1070
1084
|
"div",
|
|
1071
1085
|
{
|
|
1072
1086
|
className: a ? `gloss-base-timepicker ${a}` : "gloss-base-timepicker",
|
|
1073
|
-
style: { ...
|
|
1074
|
-
...
|
|
1087
|
+
style: { ...l, ...e },
|
|
1088
|
+
...r,
|
|
1075
1089
|
...t,
|
|
1076
1090
|
children: o
|
|
1077
1091
|
}
|
|
1078
1092
|
);
|
|
1079
1093
|
}
|
|
1080
|
-
|
|
1081
|
-
function
|
|
1094
|
+
Je.displayName = "BaseTimePicker";
|
|
1095
|
+
function Qe({ className: s, style: a, children: e, ...o }) {
|
|
1082
1096
|
return /* @__PURE__ */ n(
|
|
1083
1097
|
"div",
|
|
1084
1098
|
{
|
|
@@ -1090,8 +1104,8 @@ function qe({ className: s, style: a, children: e, ...o }) {
|
|
|
1090
1104
|
}
|
|
1091
1105
|
);
|
|
1092
1106
|
}
|
|
1093
|
-
|
|
1094
|
-
function
|
|
1107
|
+
Qe.displayName = "BaseTimePickerColumn";
|
|
1108
|
+
function ea({ className: s, style: a, selected: e, disabled: o, children: t, ...l }) {
|
|
1095
1109
|
return /* @__PURE__ */ n(
|
|
1096
1110
|
"button",
|
|
1097
1111
|
{
|
|
@@ -1103,48 +1117,48 @@ function Je({ className: s, style: a, selected: e, disabled: o, children: t, ...
|
|
|
1103
1117
|
disabled: o,
|
|
1104
1118
|
"data-selected": e ? "" : void 0,
|
|
1105
1119
|
"data-disabled": o ? "" : void 0,
|
|
1106
|
-
...
|
|
1120
|
+
...l,
|
|
1107
1121
|
children: t
|
|
1108
1122
|
}
|
|
1109
1123
|
);
|
|
1110
1124
|
}
|
|
1111
|
-
|
|
1112
|
-
const
|
|
1125
|
+
ea.displayName = "BaseTimePickerCell";
|
|
1126
|
+
const aa = {
|
|
1113
1127
|
bg: "--_bg",
|
|
1114
1128
|
borderColor: "--_border-color",
|
|
1115
1129
|
radius: "--_radius",
|
|
1116
1130
|
elevation: "--_elevation",
|
|
1117
1131
|
gap: "--_gap"
|
|
1118
1132
|
};
|
|
1119
|
-
function
|
|
1120
|
-
const { style:
|
|
1133
|
+
function sa({ definition: s, className: a, style: e, children: o, ...t }) {
|
|
1134
|
+
const { style: l, dataAttrs: r } = u(s, aa);
|
|
1121
1135
|
return /* @__PURE__ */ n(
|
|
1122
1136
|
"div",
|
|
1123
1137
|
{
|
|
1124
1138
|
className: a ? `gloss-base-daterangepicker ${a}` : "gloss-base-daterangepicker",
|
|
1125
|
-
style: { ...
|
|
1126
|
-
...
|
|
1139
|
+
style: { ...l, ...e },
|
|
1140
|
+
...r,
|
|
1127
1141
|
...t,
|
|
1128
1142
|
children: o
|
|
1129
1143
|
}
|
|
1130
1144
|
);
|
|
1131
1145
|
}
|
|
1132
|
-
|
|
1133
|
-
function
|
|
1146
|
+
sa.displayName = "BaseDateRangePicker";
|
|
1147
|
+
function oa({
|
|
1134
1148
|
className: s,
|
|
1135
1149
|
style: a,
|
|
1136
1150
|
selected: e,
|
|
1137
1151
|
today: o,
|
|
1138
1152
|
outsideMonth: t,
|
|
1139
|
-
rangeStart:
|
|
1140
|
-
rangeEnd:
|
|
1153
|
+
rangeStart: l,
|
|
1154
|
+
rangeEnd: r,
|
|
1141
1155
|
inRange: d,
|
|
1142
1156
|
disabled: i,
|
|
1143
1157
|
children: c,
|
|
1144
1158
|
...g
|
|
1145
1159
|
}) {
|
|
1146
1160
|
const _ = {};
|
|
1147
|
-
return e && (_["data-selected"] = ""), o && (_["data-today"] = ""), t && (_["data-outside-month"] = ""), i && (_["data-disabled"] = ""),
|
|
1161
|
+
return e && (_["data-selected"] = ""), o && (_["data-today"] = ""), t && (_["data-outside-month"] = ""), i && (_["data-disabled"] = ""), l && (_["data-range-start"] = ""), r && (_["data-range-end"] = ""), d && (_["data-in-range"] = ""), /* @__PURE__ */ n(
|
|
1148
1162
|
"button",
|
|
1149
1163
|
{
|
|
1150
1164
|
type: "button",
|
|
@@ -1157,8 +1171,8 @@ function aa({
|
|
|
1157
1171
|
}
|
|
1158
1172
|
);
|
|
1159
1173
|
}
|
|
1160
|
-
|
|
1161
|
-
const
|
|
1174
|
+
oa.displayName = "BaseDateRangePickerDay";
|
|
1175
|
+
const ta = {
|
|
1162
1176
|
bg: "--_bg",
|
|
1163
1177
|
color: "--_color",
|
|
1164
1178
|
borderColor: "--_border-color",
|
|
@@ -1168,21 +1182,21 @@ const sa = {
|
|
|
1168
1182
|
buttonBg: "--_button-bg",
|
|
1169
1183
|
minHeight: "--_min-height"
|
|
1170
1184
|
};
|
|
1171
|
-
function
|
|
1172
|
-
const { style:
|
|
1185
|
+
function ra({ definition: s, className: a, style: e, disabled: o, children: t, ...l }) {
|
|
1186
|
+
const { style: r, dataAttrs: d } = u(s, ta);
|
|
1173
1187
|
return o && (d["data-disabled"] = ""), /* @__PURE__ */ n(
|
|
1174
1188
|
"div",
|
|
1175
1189
|
{
|
|
1176
1190
|
className: a ? `gloss-base-numberinput ${a}` : "gloss-base-numberinput",
|
|
1177
|
-
style: { ...
|
|
1191
|
+
style: { ...r, ...e },
|
|
1178
1192
|
...d,
|
|
1179
|
-
...
|
|
1193
|
+
...l,
|
|
1180
1194
|
children: t
|
|
1181
1195
|
}
|
|
1182
1196
|
);
|
|
1183
1197
|
}
|
|
1184
|
-
|
|
1185
|
-
const
|
|
1198
|
+
ra.displayName = "BaseNumberInput";
|
|
1199
|
+
const la = {
|
|
1186
1200
|
bg: "--_bg",
|
|
1187
1201
|
color: "--_color",
|
|
1188
1202
|
borderColor: "--_border-color",
|
|
@@ -1193,17 +1207,17 @@ const ta = {
|
|
|
1193
1207
|
minHeight: "--_min-height",
|
|
1194
1208
|
placeholderColor: "--_placeholder-color",
|
|
1195
1209
|
placeholderCharColor: "--_placeholder-char-color"
|
|
1196
|
-
},
|
|
1197
|
-
({ definition: s, className: a, style: e, label: o, helperText: t, required:
|
|
1198
|
-
const { style: c, dataAttrs: g } =
|
|
1199
|
-
|
|
1210
|
+
}, ia = p.forwardRef(
|
|
1211
|
+
({ definition: s, className: a, style: e, label: o, helperText: t, required: l, status: r = "default", ...d }, i) => {
|
|
1212
|
+
const { style: c, dataAttrs: g } = u(s, la);
|
|
1213
|
+
r !== "default" && (g["data-status"] = r), d.disabled && (g["data-disabled"] = ""), d.readOnly && (g["data-readonly"] = "");
|
|
1200
1214
|
const _ = /* @__PURE__ */ n(
|
|
1201
1215
|
"input",
|
|
1202
1216
|
{
|
|
1203
1217
|
ref: i,
|
|
1204
1218
|
className: a ? `gloss-base-maskedinput ${a}` : "gloss-base-maskedinput",
|
|
1205
1219
|
style: { ...c, ...e },
|
|
1206
|
-
required:
|
|
1220
|
+
required: l,
|
|
1207
1221
|
...g,
|
|
1208
1222
|
...d
|
|
1209
1223
|
}
|
|
@@ -1211,15 +1225,15 @@ const ta = {
|
|
|
1211
1225
|
return !o && !t ? _ : /* @__PURE__ */ b("div", { className: "gloss-base-maskedinput__wrapper", children: [
|
|
1212
1226
|
o && /* @__PURE__ */ b("label", { className: "gloss-base-maskedinput__label", children: [
|
|
1213
1227
|
o,
|
|
1214
|
-
|
|
1228
|
+
l && /* @__PURE__ */ n("span", { className: "gloss-base-maskedinput__required", children: "*" })
|
|
1215
1229
|
] }),
|
|
1216
1230
|
_,
|
|
1217
1231
|
t && /* @__PURE__ */ n("div", { className: "gloss-base-maskedinput__helper", children: t })
|
|
1218
1232
|
] });
|
|
1219
1233
|
}
|
|
1220
1234
|
);
|
|
1221
|
-
|
|
1222
|
-
const
|
|
1235
|
+
ia.displayName = "BaseMaskedInput";
|
|
1236
|
+
const da = {
|
|
1223
1237
|
bg: "--_bg",
|
|
1224
1238
|
borderColor: "--_border-color",
|
|
1225
1239
|
borderStyle: "--_border-style",
|
|
@@ -1227,21 +1241,21 @@ const la = {
|
|
|
1227
1241
|
padding: "--_padding",
|
|
1228
1242
|
minHeight: "--_min-height"
|
|
1229
1243
|
};
|
|
1230
|
-
function
|
|
1231
|
-
const { style: d, dataAttrs: i } =
|
|
1244
|
+
function na({ definition: s, className: a, style: e, dragging: o, disabled: t, children: l, ...r }) {
|
|
1245
|
+
const { style: d, dataAttrs: i } = u(s, da);
|
|
1232
1246
|
return o && (i["data-dragging"] = ""), t && (i["data-disabled"] = ""), /* @__PURE__ */ n(
|
|
1233
1247
|
"div",
|
|
1234
1248
|
{
|
|
1235
1249
|
className: a ? `gloss-base-fileupload ${a}` : "gloss-base-fileupload",
|
|
1236
1250
|
style: { ...d, ...e },
|
|
1237
1251
|
...i,
|
|
1238
|
-
...
|
|
1239
|
-
children:
|
|
1252
|
+
...r,
|
|
1253
|
+
children: l
|
|
1240
1254
|
}
|
|
1241
1255
|
);
|
|
1242
1256
|
}
|
|
1243
|
-
|
|
1244
|
-
function
|
|
1257
|
+
na.displayName = "BaseFileUpload";
|
|
1258
|
+
function ca({ className: s, style: a, children: e, ...o }) {
|
|
1245
1259
|
return /* @__PURE__ */ n(
|
|
1246
1260
|
"div",
|
|
1247
1261
|
{
|
|
@@ -1252,8 +1266,8 @@ function da({ className: s, style: a, children: e, ...o }) {
|
|
|
1252
1266
|
}
|
|
1253
1267
|
);
|
|
1254
1268
|
}
|
|
1255
|
-
|
|
1256
|
-
function
|
|
1269
|
+
ca.displayName = "BaseFileUploadList";
|
|
1270
|
+
function ga({ className: s, style: a, error: e, children: o, ...t }) {
|
|
1257
1271
|
return /* @__PURE__ */ n(
|
|
1258
1272
|
"div",
|
|
1259
1273
|
{
|
|
@@ -1265,28 +1279,28 @@ function na({ className: s, style: a, error: e, children: o, ...t }) {
|
|
|
1265
1279
|
}
|
|
1266
1280
|
);
|
|
1267
1281
|
}
|
|
1268
|
-
|
|
1269
|
-
const
|
|
1282
|
+
ga.displayName = "BaseFileUploadItem";
|
|
1283
|
+
const _a = {
|
|
1270
1284
|
radius: "--_radius",
|
|
1271
1285
|
elevation: "--_elevation",
|
|
1272
1286
|
padding: "--_padding",
|
|
1273
1287
|
swatchSize: "--_swatch-size"
|
|
1274
1288
|
};
|
|
1275
|
-
function
|
|
1276
|
-
const { style:
|
|
1289
|
+
function pa({ definition: s, className: a, style: e, disabled: o, children: t, ...l }) {
|
|
1290
|
+
const { style: r, dataAttrs: d } = u(s, _a);
|
|
1277
1291
|
return o && (d["data-disabled"] = ""), /* @__PURE__ */ n(
|
|
1278
1292
|
"div",
|
|
1279
1293
|
{
|
|
1280
1294
|
className: a ? `gloss-base-colorpicker ${a}` : "gloss-base-colorpicker",
|
|
1281
|
-
style: { ...
|
|
1295
|
+
style: { ...r, ...e },
|
|
1282
1296
|
...d,
|
|
1283
|
-
...
|
|
1297
|
+
...l,
|
|
1284
1298
|
children: t
|
|
1285
1299
|
}
|
|
1286
1300
|
);
|
|
1287
1301
|
}
|
|
1288
|
-
|
|
1289
|
-
function
|
|
1302
|
+
pa.displayName = "BaseColorPicker";
|
|
1303
|
+
function ua({ className: s, style: a, children: e, ...o }) {
|
|
1290
1304
|
return /* @__PURE__ */ n(
|
|
1291
1305
|
"div",
|
|
1292
1306
|
{
|
|
@@ -1297,8 +1311,8 @@ function _a({ className: s, style: a, children: e, ...o }) {
|
|
|
1297
1311
|
}
|
|
1298
1312
|
);
|
|
1299
1313
|
}
|
|
1300
|
-
|
|
1301
|
-
function
|
|
1314
|
+
ua.displayName = "BaseColorPickerSaturation";
|
|
1315
|
+
function ba({ className: s, style: a, children: e, ...o }) {
|
|
1302
1316
|
return /* @__PURE__ */ n(
|
|
1303
1317
|
"div",
|
|
1304
1318
|
{
|
|
@@ -1309,8 +1323,8 @@ function pa({ className: s, style: a, children: e, ...o }) {
|
|
|
1309
1323
|
}
|
|
1310
1324
|
);
|
|
1311
1325
|
}
|
|
1312
|
-
|
|
1313
|
-
function
|
|
1326
|
+
ba.displayName = "BaseColorPickerHue";
|
|
1327
|
+
function fa({ className: s, style: a, children: e, ...o }) {
|
|
1314
1328
|
return /* @__PURE__ */ n(
|
|
1315
1329
|
"div",
|
|
1316
1330
|
{
|
|
@@ -1321,8 +1335,8 @@ function ua({ className: s, style: a, children: e, ...o }) {
|
|
|
1321
1335
|
}
|
|
1322
1336
|
);
|
|
1323
1337
|
}
|
|
1324
|
-
|
|
1325
|
-
function
|
|
1338
|
+
fa.displayName = "BaseColorPickerAlpha";
|
|
1339
|
+
function ma({ className: s, style: a, children: e, ...o }) {
|
|
1326
1340
|
return /* @__PURE__ */ n(
|
|
1327
1341
|
"div",
|
|
1328
1342
|
{
|
|
@@ -1333,8 +1347,8 @@ function ba({ className: s, style: a, children: e, ...o }) {
|
|
|
1333
1347
|
}
|
|
1334
1348
|
);
|
|
1335
1349
|
}
|
|
1336
|
-
|
|
1337
|
-
const
|
|
1350
|
+
ma.displayName = "BaseColorPickerSwatch";
|
|
1351
|
+
const ya = {
|
|
1338
1352
|
trackBg: "--_track-bg",
|
|
1339
1353
|
trackActiveBg: "--_track-active-bg",
|
|
1340
1354
|
thumbBg: "--_thumb-bg",
|
|
@@ -1343,33 +1357,33 @@ const fa = {
|
|
|
1343
1357
|
trackHeight: "--_track-height",
|
|
1344
1358
|
thumbShadow: "--_thumb-shadow"
|
|
1345
1359
|
};
|
|
1346
|
-
function
|
|
1360
|
+
function va({
|
|
1347
1361
|
definition: s,
|
|
1348
1362
|
className: a,
|
|
1349
1363
|
style: e,
|
|
1350
1364
|
orientation: o = "horizontal",
|
|
1351
1365
|
disabled: t,
|
|
1352
|
-
collision:
|
|
1353
|
-
children:
|
|
1366
|
+
collision: l,
|
|
1367
|
+
children: r,
|
|
1354
1368
|
...d
|
|
1355
1369
|
}) {
|
|
1356
|
-
const { style: i, dataAttrs: c } =
|
|
1357
|
-
return o !== "horizontal" && (c["data-orientation"] = o), t && (c["data-disabled"] = ""),
|
|
1370
|
+
const { style: i, dataAttrs: c } = u(s, ya);
|
|
1371
|
+
return o !== "horizontal" && (c["data-orientation"] = o), t && (c["data-disabled"] = ""), l && (c["data-collision"] = ""), /* @__PURE__ */ n(
|
|
1358
1372
|
"div",
|
|
1359
1373
|
{
|
|
1360
1374
|
className: a ? `gloss-base-rangeslider ${a}` : "gloss-base-rangeslider",
|
|
1361
1375
|
style: { ...i, ...e },
|
|
1362
1376
|
...c,
|
|
1363
1377
|
...d,
|
|
1364
|
-
children:
|
|
1378
|
+
children: r
|
|
1365
1379
|
}
|
|
1366
1380
|
);
|
|
1367
1381
|
}
|
|
1368
|
-
|
|
1369
|
-
const
|
|
1382
|
+
va.displayName = "BaseRangeSlider";
|
|
1383
|
+
const ha = function(a) {
|
|
1370
1384
|
const { as: e, className: o, ...t } = a;
|
|
1371
1385
|
return /* @__PURE__ */ n(
|
|
1372
|
-
|
|
1386
|
+
B,
|
|
1373
1387
|
{
|
|
1374
1388
|
as: e || "span",
|
|
1375
1389
|
className: o ? `gloss-base-text ${o}` : "gloss-base-text",
|
|
@@ -1377,15 +1391,15 @@ const ya = function(a) {
|
|
|
1377
1391
|
}
|
|
1378
1392
|
);
|
|
1379
1393
|
};
|
|
1380
|
-
|
|
1381
|
-
function
|
|
1394
|
+
ha.displayName = "BaseText";
|
|
1395
|
+
function Ba({
|
|
1382
1396
|
definition: s,
|
|
1383
1397
|
open: a,
|
|
1384
1398
|
onDismiss: e,
|
|
1385
1399
|
anchorRef: o,
|
|
1386
1400
|
className: t,
|
|
1387
|
-
style:
|
|
1388
|
-
children:
|
|
1401
|
+
style: l,
|
|
1402
|
+
children: r
|
|
1389
1403
|
}) {
|
|
1390
1404
|
const d = {
|
|
1391
1405
|
placement: s?.placement ?? "bottom",
|
|
@@ -1399,9 +1413,9 @@ function va({
|
|
|
1399
1413
|
radius: s?.radius,
|
|
1400
1414
|
padding: s?.padding,
|
|
1401
1415
|
zIndex: s?.zIndex
|
|
1402
|
-
}, i = s?.arrowSize ?? 8, c = { ...
|
|
1416
|
+
}, i = s?.arrowSize ?? 8, c = { ...l };
|
|
1403
1417
|
return s?.showArrow && (c["--_arrow-size"] = `${i}px`), /* @__PURE__ */ n(
|
|
1404
|
-
|
|
1418
|
+
A,
|
|
1405
1419
|
{
|
|
1406
1420
|
definition: d,
|
|
1407
1421
|
open: a,
|
|
@@ -1413,7 +1427,7 @@ function va({
|
|
|
1413
1427
|
className: t ? `gloss-base-popover ${t}` : "gloss-base-popover",
|
|
1414
1428
|
style: c,
|
|
1415
1429
|
children: [
|
|
1416
|
-
|
|
1430
|
+
r,
|
|
1417
1431
|
s?.showArrow && /* @__PURE__ */ n("div", { className: "gloss-base-popover__arrow" })
|
|
1418
1432
|
]
|
|
1419
1433
|
}
|
|
@@ -1421,21 +1435,21 @@ function va({
|
|
|
1421
1435
|
}
|
|
1422
1436
|
);
|
|
1423
1437
|
}
|
|
1424
|
-
|
|
1425
|
-
const
|
|
1438
|
+
Ba.displayName = "BasePopover";
|
|
1439
|
+
const Sa = {
|
|
1426
1440
|
size: "--_size",
|
|
1427
1441
|
bg: "--_bg",
|
|
1428
1442
|
color: "--_color",
|
|
1429
1443
|
fontSize: "--_font-size",
|
|
1430
1444
|
radius: "--_radius"
|
|
1431
1445
|
};
|
|
1432
|
-
function
|
|
1433
|
-
const { definition: a, src: e, alt: o, className: t, style:
|
|
1446
|
+
function Aa(s) {
|
|
1447
|
+
const { definition: a, src: e, alt: o, className: t, style: l, children: r, ...d } = s, [i, c] = C(!1), { style: g, dataAttrs: _ } = u(a, Sa), f = e && !i;
|
|
1434
1448
|
return /* @__PURE__ */ n(
|
|
1435
1449
|
"div",
|
|
1436
1450
|
{
|
|
1437
1451
|
className: t ? `gloss-base-avatar ${t}` : "gloss-base-avatar",
|
|
1438
|
-
style: { ...g, ...
|
|
1452
|
+
style: { ...g, ...l },
|
|
1439
1453
|
..._,
|
|
1440
1454
|
...d,
|
|
1441
1455
|
children: f ? /* @__PURE__ */ n(
|
|
@@ -1445,19 +1459,19 @@ function Ba(s) {
|
|
|
1445
1459
|
alt: o || "",
|
|
1446
1460
|
onError: () => c(!0)
|
|
1447
1461
|
}
|
|
1448
|
-
) :
|
|
1462
|
+
) : r
|
|
1449
1463
|
}
|
|
1450
1464
|
);
|
|
1451
1465
|
}
|
|
1452
|
-
|
|
1453
|
-
const
|
|
1466
|
+
Aa.displayName = "BaseAvatar";
|
|
1467
|
+
const ka = {
|
|
1454
1468
|
trackBg: "--_track-bg",
|
|
1455
1469
|
fillBg: "--_fill-bg",
|
|
1456
1470
|
height: "--_height",
|
|
1457
1471
|
radius: "--_radius"
|
|
1458
1472
|
};
|
|
1459
|
-
function
|
|
1460
|
-
const { definition: a, value: e, max: o = 100, indeterminate: t = !1, className:
|
|
1473
|
+
function Na(s) {
|
|
1474
|
+
const { definition: a, value: e, max: o = 100, indeterminate: t = !1, className: l, style: r, ...d } = s, { style: i, dataAttrs: c } = u(a, ka);
|
|
1461
1475
|
t && (c["data-indeterminate"] = "");
|
|
1462
1476
|
const g = t ? void 0 : `${Math.min(100, (e || 0) / (o || 100) * 100)}%`;
|
|
1463
1477
|
return /* @__PURE__ */ n(
|
|
@@ -1467,8 +1481,8 @@ function Aa(s) {
|
|
|
1467
1481
|
"aria-valuenow": t ? void 0 : e || 0,
|
|
1468
1482
|
"aria-valuemin": 0,
|
|
1469
1483
|
"aria-valuemax": o,
|
|
1470
|
-
className:
|
|
1471
|
-
style: { ...i, ...
|
|
1484
|
+
className: l ? `gloss-base-progress-bar ${l}` : "gloss-base-progress-bar",
|
|
1485
|
+
style: { ...i, ...r },
|
|
1472
1486
|
...c,
|
|
1473
1487
|
...d,
|
|
1474
1488
|
children: /* @__PURE__ */ n(
|
|
@@ -1481,8 +1495,8 @@ function Aa(s) {
|
|
|
1481
1495
|
}
|
|
1482
1496
|
);
|
|
1483
1497
|
}
|
|
1484
|
-
|
|
1485
|
-
const
|
|
1498
|
+
Na.displayName = "BaseProgressBar";
|
|
1499
|
+
const Ca = {
|
|
1486
1500
|
bg: "--_bg",
|
|
1487
1501
|
color: "--_color",
|
|
1488
1502
|
padding: "--_padding",
|
|
@@ -1491,21 +1505,21 @@ const ka = {
|
|
|
1491
1505
|
fontSize: "--_font-size",
|
|
1492
1506
|
fontWeight: "--_font-weight"
|
|
1493
1507
|
};
|
|
1494
|
-
function
|
|
1495
|
-
const { as: a, definition: e, className: o, style: t, dot:
|
|
1496
|
-
return
|
|
1508
|
+
function $a(s) {
|
|
1509
|
+
const { as: a, definition: e, className: o, style: t, dot: l, children: r, ...d } = s, i = a || "span", { style: c, dataAttrs: g } = u(e, Ca);
|
|
1510
|
+
return l && (g["data-dot"] = ""), /* @__PURE__ */ n(
|
|
1497
1511
|
i,
|
|
1498
1512
|
{
|
|
1499
1513
|
className: o ? `gloss-base-badge ${o}` : "gloss-base-badge",
|
|
1500
1514
|
style: { ...c, ...t },
|
|
1501
1515
|
...g,
|
|
1502
1516
|
...d,
|
|
1503
|
-
children: !
|
|
1517
|
+
children: !l && r
|
|
1504
1518
|
}
|
|
1505
1519
|
);
|
|
1506
1520
|
}
|
|
1507
|
-
|
|
1508
|
-
const
|
|
1521
|
+
$a.displayName = "BaseBadge";
|
|
1522
|
+
const wa = {
|
|
1509
1523
|
bg: "--_bg",
|
|
1510
1524
|
color: "--_color",
|
|
1511
1525
|
borderColor: "--_border-color",
|
|
@@ -1516,27 +1530,27 @@ const Ca = {
|
|
|
1516
1530
|
fontWeight: "--_font-weight",
|
|
1517
1531
|
gap: "--_gap"
|
|
1518
1532
|
};
|
|
1519
|
-
function
|
|
1533
|
+
function Ra(s) {
|
|
1520
1534
|
const {
|
|
1521
1535
|
as: a,
|
|
1522
1536
|
definition: e,
|
|
1523
1537
|
className: o,
|
|
1524
1538
|
style: t,
|
|
1525
|
-
disabled:
|
|
1526
|
-
clickable:
|
|
1539
|
+
disabled: l,
|
|
1540
|
+
clickable: r,
|
|
1527
1541
|
selected: d,
|
|
1528
1542
|
avatar: i,
|
|
1529
1543
|
leftIcon: c,
|
|
1530
1544
|
deleteButton: g,
|
|
1531
1545
|
children: _,
|
|
1532
1546
|
...f
|
|
1533
|
-
} = s,
|
|
1534
|
-
return
|
|
1535
|
-
|
|
1547
|
+
} = s, m = a || "span", { style: v, dataAttrs: y } = u(e, wa);
|
|
1548
|
+
return l && (y["data-disabled"] = ""), r && (y["data-clickable"] = ""), d && (y["data-selected"] = ""), /* @__PURE__ */ b(
|
|
1549
|
+
m,
|
|
1536
1550
|
{
|
|
1537
1551
|
className: o ? `gloss-base-chip ${o}` : "gloss-base-chip",
|
|
1538
|
-
style: { ...
|
|
1539
|
-
...
|
|
1552
|
+
style: { ...v, ...t },
|
|
1553
|
+
...y,
|
|
1540
1554
|
...f,
|
|
1541
1555
|
children: [
|
|
1542
1556
|
i && /* @__PURE__ */ n("span", { className: "gloss-base-chip__avatar", children: i }),
|
|
@@ -1547,18 +1561,18 @@ function $a(s) {
|
|
|
1547
1561
|
}
|
|
1548
1562
|
);
|
|
1549
1563
|
}
|
|
1550
|
-
|
|
1551
|
-
const
|
|
1564
|
+
Ra.displayName = "BaseChip";
|
|
1565
|
+
const Pa = {
|
|
1552
1566
|
color: "--_color",
|
|
1553
1567
|
fontSize: "--_font-size",
|
|
1554
1568
|
fontWeight: "--_font-weight",
|
|
1555
1569
|
gap: "--_gap"
|
|
1556
|
-
},
|
|
1570
|
+
}, xa = {
|
|
1557
1571
|
underline: "data-underline"
|
|
1558
1572
|
};
|
|
1559
|
-
function
|
|
1560
|
-
const { as: a, definition: e, className: o, style: t, disabled:
|
|
1561
|
-
return
|
|
1573
|
+
function za(s) {
|
|
1574
|
+
const { as: a, definition: e, className: o, style: t, disabled: l, leftIcon: r, rightIcon: d, children: i, ...c } = s, g = a || "a", { style: _, dataAttrs: f } = u(e, Pa, xa);
|
|
1575
|
+
return l && (f["data-disabled"] = ""), /* @__PURE__ */ b(
|
|
1562
1576
|
g,
|
|
1563
1577
|
{
|
|
1564
1578
|
className: o ? `gloss-base-link ${o}` : "gloss-base-link",
|
|
@@ -1566,24 +1580,24 @@ function Ra(s) {
|
|
|
1566
1580
|
...f,
|
|
1567
1581
|
...c,
|
|
1568
1582
|
children: [
|
|
1569
|
-
|
|
1583
|
+
r && /* @__PURE__ */ n("span", { className: "gloss-base-link__icon gloss-base-link__icon--left", children: r }),
|
|
1570
1584
|
/* @__PURE__ */ n("span", { className: "gloss-base-link__text", children: i }),
|
|
1571
1585
|
d && /* @__PURE__ */ n("span", { className: "gloss-base-link__icon gloss-base-link__icon--right", children: d })
|
|
1572
1586
|
]
|
|
1573
1587
|
}
|
|
1574
1588
|
);
|
|
1575
1589
|
}
|
|
1576
|
-
|
|
1577
|
-
const
|
|
1578
|
-
function
|
|
1579
|
-
return
|
|
1590
|
+
za.displayName = "BaseLink";
|
|
1591
|
+
const Ma = { region: null, density: "default" }, k = $(Ma);
|
|
1592
|
+
function Ua() {
|
|
1593
|
+
return w(k);
|
|
1580
1594
|
}
|
|
1581
|
-
function
|
|
1595
|
+
function Ta({ region: s, density: a = "default", children: e }) {
|
|
1582
1596
|
const o = { region: s, density: a };
|
|
1583
|
-
return
|
|
1584
|
-
|
|
1597
|
+
return p.createElement(
|
|
1598
|
+
k.Provider,
|
|
1585
1599
|
{ value: o },
|
|
1586
|
-
|
|
1600
|
+
p.createElement(
|
|
1587
1601
|
"div",
|
|
1588
1602
|
{
|
|
1589
1603
|
"data-region": s,
|
|
@@ -1594,80 +1608,80 @@ function za({ region: s, density: a = "default", children: e }) {
|
|
|
1594
1608
|
)
|
|
1595
1609
|
);
|
|
1596
1610
|
}
|
|
1597
|
-
|
|
1611
|
+
Ta.displayName = "UIContextProvider";
|
|
1598
1612
|
export {
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1613
|
+
sa as $,
|
|
1614
|
+
Ne as A,
|
|
1615
|
+
Ba as B,
|
|
1616
|
+
Ha as C,
|
|
1617
|
+
Ce as D,
|
|
1618
|
+
Fa as E,
|
|
1619
|
+
we as F,
|
|
1620
|
+
Re as G,
|
|
1621
|
+
Pe as H,
|
|
1622
|
+
xe as I,
|
|
1623
|
+
Me as J,
|
|
1624
|
+
Te as K,
|
|
1625
|
+
Ie as L,
|
|
1626
|
+
Ve as M,
|
|
1627
|
+
He as N,
|
|
1628
|
+
Fe as O,
|
|
1629
|
+
je as P,
|
|
1630
|
+
We as Q,
|
|
1631
|
+
Xa as R,
|
|
1632
|
+
Ga as S,
|
|
1633
|
+
Le as T,
|
|
1634
|
+
Ta as U,
|
|
1635
|
+
Ye as V,
|
|
1636
|
+
Ze as W,
|
|
1637
|
+
Je as X,
|
|
1638
|
+
Qe as Y,
|
|
1639
|
+
ja as Z,
|
|
1640
|
+
ea as _,
|
|
1641
|
+
k as a,
|
|
1642
|
+
oa as a0,
|
|
1643
|
+
ra as a1,
|
|
1644
|
+
ia as a2,
|
|
1645
|
+
na as a3,
|
|
1646
|
+
ca as a4,
|
|
1647
|
+
ga as a5,
|
|
1648
|
+
pa as a6,
|
|
1649
|
+
ua as a7,
|
|
1650
|
+
ba as a8,
|
|
1651
|
+
fa as a9,
|
|
1652
|
+
ma as aa,
|
|
1653
|
+
va as ab,
|
|
1654
|
+
ha as ac,
|
|
1655
|
+
Aa as ad,
|
|
1656
|
+
Na as ae,
|
|
1657
|
+
$a as af,
|
|
1658
|
+
Ra as ag,
|
|
1659
|
+
za as ah,
|
|
1660
|
+
S as ai,
|
|
1661
|
+
u as aj,
|
|
1662
|
+
A as b,
|
|
1663
|
+
X as c,
|
|
1664
|
+
j as d,
|
|
1665
|
+
U as e,
|
|
1666
|
+
B as f,
|
|
1667
|
+
L as g,
|
|
1668
|
+
F as h,
|
|
1669
|
+
J as i,
|
|
1670
|
+
ae as j,
|
|
1671
|
+
oe as k,
|
|
1672
|
+
re as l,
|
|
1673
|
+
ie as m,
|
|
1674
|
+
ne as n,
|
|
1675
|
+
ce as o,
|
|
1676
|
+
_e as p,
|
|
1677
|
+
pe as q,
|
|
1678
|
+
ue as r,
|
|
1679
|
+
me as s,
|
|
1680
|
+
ve as t,
|
|
1681
|
+
Ua as u,
|
|
1682
|
+
he as v,
|
|
1683
|
+
Be as w,
|
|
1684
|
+
Se as x,
|
|
1685
|
+
Ae as y,
|
|
1686
|
+
ke as z
|
|
1673
1687
|
};
|