@aggc/ui 0.4.0 → 0.5.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/README.md +19 -0
- package/dist/chunks/UiSkeleton.vue_vue_type_script_setup_true_lang-Lghyrtms.js +1201 -0
- package/dist/chunks/pageHeader-CcJrPX_8.js +522 -0
- package/dist/components/PageSurface.styles.d.ts +1 -0
- package/dist/components/PageSurface.vue.d.ts +13 -0
- package/dist/components/ResultPanel.styles.d.ts +64 -0
- package/dist/components/ResultPanel.vue.d.ts +16 -0
- package/dist/components/SectionCard.styles.d.ts +13 -0
- package/dist/components/SectionCard.vue.d.ts +27 -0
- package/dist/components/StatusBadge.styles.d.ts +24 -0
- package/dist/components/StatusBadge.vue.d.ts +18 -0
- package/dist/components/UiButton.styles.d.ts +54 -0
- package/dist/components/UiButton.vue.d.ts +28 -0
- package/dist/components/UiCheckbox.styles.d.ts +42 -0
- package/dist/components/UiCheckbox.vue.d.ts +37 -0
- package/dist/components/UiField.styles.d.ts +7 -0
- package/dist/components/UiField.vue.d.ts +22 -0
- package/dist/components/UiLoadingState.styles.d.ts +4 -0
- package/dist/components/UiLoadingState.vue.d.ts +10 -0
- package/dist/components/UiSegmentedControl.styles.d.ts +23 -0
- package/dist/components/UiSegmentedControl.vue.d.ts +14 -0
- package/dist/components/UiSelect.styles.d.ts +104 -0
- package/dist/components/UiSelect.vue.d.ts +35 -0
- package/dist/components/UiSkeleton.styles.d.ts +67 -0
- package/dist/components/UiSkeleton.vue.d.ts +12 -0
- package/dist/components/index.d.ts +11 -0
- package/dist/components.d.ts +1 -0
- package/dist/components.js +14 -0
- package/dist/css.d.ts +2 -0
- package/dist/css.js +1 -0
- package/dist/fonts.css +6 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +65 -0
- package/dist/styles/index.d.ts +20 -0
- package/dist/styles/layouts/cluster.d.ts +27 -0
- package/dist/styles/layouts/page.d.ts +2 -0
- package/dist/styles/layouts/split.d.ts +22 -0
- package/dist/styles/layouts/stack.d.ts +19 -0
- package/dist/styles/patterns/actionToolbar.d.ts +1 -0
- package/dist/styles/patterns/emptyState.d.ts +2 -0
- package/dist/styles/patterns/infoPanel.d.ts +2 -0
- package/dist/styles/patterns/metricGrid.d.ts +22 -0
- package/dist/styles/patterns/pageHeader.d.ts +3 -0
- package/dist/styles/patterns/resultRegion.d.ts +1 -0
- package/dist/styles/patterns/selectableListDetail.d.ts +3 -0
- package/dist/styles/primitives/feedback.d.ts +4 -0
- package/dist/styles/primitives/fields.d.ts +3 -0
- package/dist/styles/primitives/surfaces.d.ts +3 -0
- package/dist/styles/primitives/typography.d.ts +6 -0
- package/dist/styles/recipes/badge.recipe.d.ts +32 -0
- package/dist/styles/recipes/button.recipe.d.ts +51 -0
- package/dist/styles/recipes/card.recipe.d.ts +59 -0
- package/dist/styles/recipes/dropdown.recipe.d.ts +25 -0
- package/dist/styles/recipes/input.recipe.d.ts +32 -0
- package/dist/styles.d.ts +1 -0
- package/dist/styles.js +429 -0
- package/dist/tokens/colors.d.ts +360 -0
- package/dist/tokens/core-colors.d.ts +238 -0
- package/dist/tokens/desktop-colors.d.ts +132 -0
- package/dist/tokens/index.d.ts +7 -0
- package/dist/tokens/motion.d.ts +10 -0
- package/dist/tokens/radius.d.ts +5 -0
- package/dist/tokens/spacing.d.ts +8 -0
- package/dist/tokens/typography.d.ts +10 -0
- package/dist/tokens-core.d.ts +5 -0
- package/dist/tokens-core.js +69 -0
- package/dist/tokens-desktop.d.ts +1 -0
- package/dist/tokens-desktop.js +30 -0
- package/dist/tokens.d.ts +1 -0
- package/dist/tokens.js +16 -0
- package/dist/ui.css +2026 -0
- package/package.json +3 -2
- package/src/components/PageSurface.styles.ts +3 -0
- package/src/components/PageSurface.vue +9 -0
- package/src/components/ResultPanel.styles.ts +108 -0
- package/src/components/ResultPanel.test.ts +22 -0
- package/src/components/ResultPanel.vue +70 -0
- package/src/components/SectionCard.styles.ts +65 -0
- package/src/components/SectionCard.test.ts +22 -0
- package/src/components/SectionCard.vue +51 -0
- package/src/components/StatusBadge.styles.ts +49 -0
- package/src/components/StatusBadge.test.ts +18 -0
- package/src/components/StatusBadge.vue +18 -0
- package/src/components/UiButton.styles.ts +29 -0
- package/src/components/UiButton.test.ts +21 -0
- package/src/components/UiButton.vue +46 -0
- package/src/components/UiCheckbox.styles.ts +118 -0
- package/src/components/UiCheckbox.test.ts +18 -0
- package/src/components/UiCheckbox.vue +72 -0
- package/src/components/UiField.styles.ts +35 -0
- package/src/components/UiField.test.ts +22 -0
- package/src/components/UiField.vue +36 -0
- package/src/components/UiLoadingState.styles.ts +36 -0
- package/src/components/UiLoadingState.vue +34 -0
- package/src/components/UiSegmentedControl.styles.ts +49 -0
- package/src/components/UiSegmentedControl.vue +30 -0
- package/src/components/UiSelect.styles.ts +214 -0
- package/src/components/UiSelect.test.ts +49 -0
- package/src/components/UiSelect.vue +256 -0
- package/src/components/UiSkeleton.styles.ts +93 -0
- package/src/components/UiSkeleton.vue +48 -0
- package/src/components/index.ts +11 -0
- package/src/components.ts +1 -0
- package/src/css/base.css +62 -0
- package/src/css/fonts.css +6 -0
- package/src/css/index.css +2 -0
- package/src/css/storybook.css +15 -0
- package/src/env.d.ts +1 -0
- package/src/index.ts +3 -0
- package/src/stories/feedback/ResultPanel.stories.ts +76 -0
- package/src/stories/feedback/StatusBadge.stories.ts +50 -0
- package/src/stories/feedback/UiLoadingState.stories.ts +52 -0
- package/src/stories/feedback/UiSkeleton.stories.ts +85 -0
- package/src/stories/forms/UiCheckbox.stories.ts +104 -0
- package/src/stories/forms/UiField.stories.ts +87 -0
- package/src/stories/forms/UiSelect.stories.ts +134 -0
- package/src/stories/layout/PageSurface.stories.ts +53 -0
- package/src/stories/layout/SectionCard.stories.ts +85 -0
- package/src/stories/primitives/UiButton.stories.ts +145 -0
- package/src/stories/primitives/UiSegmentedControl.stories.ts +67 -0
- package/src/stories/support/StoryThemeFrame.vue +101 -0
- package/src/stories/support/sources.ts +374 -0
- package/src/stories/support/storyStyles.ts +150 -0
- package/src/styles/README.md +23 -0
- package/src/styles/index.ts +20 -0
- package/src/styles/layouts/cluster.ts +27 -0
- package/src/styles/layouts/page.ts +22 -0
- package/src/styles/layouts/split.ts +26 -0
- package/src/styles/layouts/stack.ts +21 -0
- package/src/styles/patterns/actionToolbar.ts +8 -0
- package/src/styles/patterns/emptyState.ts +23 -0
- package/src/styles/patterns/infoPanel.ts +22 -0
- package/src/styles/patterns/metricGrid.ts +19 -0
- package/src/styles/patterns/pageHeader.ts +19 -0
- package/src/styles/patterns/resultRegion.ts +7 -0
- package/src/styles/patterns/selectableListDetail.ts +21 -0
- package/src/styles/primitives/feedback.ts +23 -0
- package/src/styles/primitives/fields.ts +76 -0
- package/src/styles/primitives/surfaces.ts +52 -0
- package/src/styles/primitives/typography.ts +42 -0
- package/src/styles/recipes/badge.recipe.ts +54 -0
- package/src/styles/recipes/button.recipe.ts +115 -0
- package/src/styles/recipes/card.recipe.ts +64 -0
- package/src/styles/recipes/dropdown.recipe.ts +40 -0
- package/src/styles/recipes/input.recipe.ts +59 -0
- package/src/styles.ts +1 -0
- package/src/test/setup.ts +1 -0
- package/src/tokens/colors.ts +16 -0
- package/src/tokens/core-colors.ts +53 -0
- package/src/tokens/desktop-colors.ts +37 -0
- package/src/tokens/index.ts +8 -0
- package/src/tokens/motion.ts +6 -0
- package/src/tokens/radius.ts +3 -0
- package/src/tokens/spacing.ts +4 -0
- package/src/tokens/typography.ts +6 -0
- package/src/tokens-core.ts +5 -0
- package/src/tokens-desktop.ts +1 -0
- package/src/tokens.ts +1 -0
|
@@ -0,0 +1,522 @@
|
|
|
1
|
+
function _(r) {
|
|
2
|
+
return typeof r == "object" && r != null && !Array.isArray(r);
|
|
3
|
+
}
|
|
4
|
+
var V = (r) => typeof r == "object" && r !== null;
|
|
5
|
+
function T(r) {
|
|
6
|
+
return Object.fromEntries(Object.entries(r ?? {}).filter(([t, o]) => o !== void 0));
|
|
7
|
+
}
|
|
8
|
+
var F = (r) => r === "base";
|
|
9
|
+
function D(r) {
|
|
10
|
+
return r.slice().filter((t) => !F(t));
|
|
11
|
+
}
|
|
12
|
+
function C(r) {
|
|
13
|
+
return String.fromCharCode(r + (r > 25 ? 39 : 97));
|
|
14
|
+
}
|
|
15
|
+
function L(r) {
|
|
16
|
+
let t = "", o;
|
|
17
|
+
for (o = Math.abs(r); o > 52; o = o / 52 | 0) t = C(o % 52) + t;
|
|
18
|
+
return C(o % 52) + t;
|
|
19
|
+
}
|
|
20
|
+
function Y(r, t) {
|
|
21
|
+
let o = t.length;
|
|
22
|
+
for (; o; ) r = r * 33 ^ t.charCodeAt(--o);
|
|
23
|
+
return r;
|
|
24
|
+
}
|
|
25
|
+
function X(r) {
|
|
26
|
+
return L(Y(5381, r) >>> 0);
|
|
27
|
+
}
|
|
28
|
+
var E = /\s*!(important)?/i;
|
|
29
|
+
function H(r) {
|
|
30
|
+
return typeof r == "string" ? E.test(r) : !1;
|
|
31
|
+
}
|
|
32
|
+
function N(r) {
|
|
33
|
+
return typeof r == "string" ? r.replace(E, "").trim() : r;
|
|
34
|
+
}
|
|
35
|
+
function P(r) {
|
|
36
|
+
return typeof r == "string" ? r.replaceAll(" ", "_") : r;
|
|
37
|
+
}
|
|
38
|
+
var y = (r) => {
|
|
39
|
+
const t = /* @__PURE__ */ new Map();
|
|
40
|
+
return (...e) => {
|
|
41
|
+
const n = JSON.stringify(e);
|
|
42
|
+
if (t.has(n))
|
|
43
|
+
return t.get(n);
|
|
44
|
+
const i = r(...e);
|
|
45
|
+
return t.set(n, i), i;
|
|
46
|
+
};
|
|
47
|
+
}, q = /* @__PURE__ */ new Set(["__proto__", "constructor", "prototype"]);
|
|
48
|
+
function v(...r) {
|
|
49
|
+
return r.reduce((t, o) => (o && Object.keys(o).forEach((e) => {
|
|
50
|
+
if (q.has(e)) return;
|
|
51
|
+
const n = t[e], i = o[e];
|
|
52
|
+
_(n) && _(i) ? t[e] = v(n, i) : t[e] = i;
|
|
53
|
+
}), t), {});
|
|
54
|
+
}
|
|
55
|
+
var G = (r) => r != null;
|
|
56
|
+
function W(r, t, o = {}) {
|
|
57
|
+
const { stop: e, getKey: n } = o;
|
|
58
|
+
function i(a, s = []) {
|
|
59
|
+
if (V(a)) {
|
|
60
|
+
const d = {};
|
|
61
|
+
for (const [b, u] of Object.entries(a)) {
|
|
62
|
+
const p = n?.(b, u) ?? b, l = [...s, p];
|
|
63
|
+
if (e?.(a, l))
|
|
64
|
+
return t(a, s);
|
|
65
|
+
const g = i(u, l);
|
|
66
|
+
G(g) && (d[p] = g);
|
|
67
|
+
}
|
|
68
|
+
return d;
|
|
69
|
+
}
|
|
70
|
+
return t(a, s);
|
|
71
|
+
}
|
|
72
|
+
return i(r);
|
|
73
|
+
}
|
|
74
|
+
function K(r, t) {
|
|
75
|
+
return r.reduce(
|
|
76
|
+
(o, e, n) => {
|
|
77
|
+
const i = t[n];
|
|
78
|
+
return e != null && (o[i] = e), o;
|
|
79
|
+
},
|
|
80
|
+
{}
|
|
81
|
+
);
|
|
82
|
+
}
|
|
83
|
+
function j(r, t, o = !0) {
|
|
84
|
+
const { utility: e, conditions: n } = t, { hasShorthand: i, resolveShorthand: a } = e;
|
|
85
|
+
return W(
|
|
86
|
+
r,
|
|
87
|
+
(s) => Array.isArray(s) ? K(s, n.breakpoints.keys) : s,
|
|
88
|
+
{
|
|
89
|
+
stop: (s) => Array.isArray(s),
|
|
90
|
+
getKey: o ? (s) => i ? a(s) : s : void 0
|
|
91
|
+
}
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
var $ = {
|
|
95
|
+
shift: (r) => r,
|
|
96
|
+
finalize: (r) => r,
|
|
97
|
+
breakpoints: { keys: [] }
|
|
98
|
+
}, Z = (r) => typeof r == "string" ? r.replaceAll(/[\n\s]+/g, " ") : r;
|
|
99
|
+
function U(r) {
|
|
100
|
+
const { utility: t, hash: o, conditions: e = $ } = r, n = (a) => [t.prefix, a].filter(Boolean).join("-"), i = (a, s) => {
|
|
101
|
+
let d;
|
|
102
|
+
if (o) {
|
|
103
|
+
const b = [...e.finalize(a), s];
|
|
104
|
+
d = n(t.toHash(b, X));
|
|
105
|
+
} else
|
|
106
|
+
d = [...e.finalize(a), n(s)].join(":");
|
|
107
|
+
return d;
|
|
108
|
+
};
|
|
109
|
+
return y(({ base: a, ...s } = {}) => {
|
|
110
|
+
const d = Object.assign(s, a), b = j(d, r), u = /* @__PURE__ */ new Set();
|
|
111
|
+
return W(b, (p, l) => {
|
|
112
|
+
if (p == null) return;
|
|
113
|
+
const g = H(p), [f, ...m] = e.shift(l), x = D(m), S = t.transform(f, N(Z(p)));
|
|
114
|
+
let k = i(x, S.className);
|
|
115
|
+
g && (k = `${k}!`), u.add(k);
|
|
116
|
+
}), Array.from(u).join(" ");
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
function J(...r) {
|
|
120
|
+
return r.flat().filter((t) => _(t) && Object.keys(T(t)).length > 0);
|
|
121
|
+
}
|
|
122
|
+
function Q(r) {
|
|
123
|
+
function t(n) {
|
|
124
|
+
const i = J(...n);
|
|
125
|
+
return i.length === 1 ? i : i.map((a) => j(a, r));
|
|
126
|
+
}
|
|
127
|
+
function o(...n) {
|
|
128
|
+
return v(...t(n));
|
|
129
|
+
}
|
|
130
|
+
function e(...n) {
|
|
131
|
+
return Object.assign({}, ...t(n));
|
|
132
|
+
}
|
|
133
|
+
return { mergeCss: y(o), assignCss: e };
|
|
134
|
+
}
|
|
135
|
+
var rr = /([A-Z])/g, tr = /^ms-/, or = y((r) => r.startsWith("--") ? r : r.replace(rr, "-$1").replace(tr, "-ms-").toLowerCase()), er = "cm,mm,Q,in,pc,pt,px,em,ex,ch,rem,lh,rlh,vw,vh,vmin,vmax,vb,vi,svw,svh,lvw,lvh,dvw,dvh,cqw,cqh,cqi,cqb,cqmin,cqmax,%";
|
|
136
|
+
`${er.split(",").join("|")}`;
|
|
137
|
+
function nr(r, ...t) {
|
|
138
|
+
const o = Object.getOwnPropertyDescriptors(r), e = Object.keys(o), n = (a) => {
|
|
139
|
+
const s = {};
|
|
140
|
+
for (let d = 0; d < a.length; d++) {
|
|
141
|
+
const b = a[d];
|
|
142
|
+
o[b] && (Object.defineProperty(s, b, o[b]), delete o[b]);
|
|
143
|
+
}
|
|
144
|
+
return s;
|
|
145
|
+
}, i = (a) => n(Array.isArray(a) ? a : e.filter(a));
|
|
146
|
+
return t.map(i).concat(n(e));
|
|
147
|
+
}
|
|
148
|
+
var ir = (...r) => {
|
|
149
|
+
const t = r.reduce((o, e) => (e && e.forEach((n) => o.add(n)), o), /* @__PURE__ */ new Set([]));
|
|
150
|
+
return Array.from(t);
|
|
151
|
+
};
|
|
152
|
+
const ar = "_hover,_focus,_focusWithin,_focusVisible,_disabled,_active,_visited,_target,_readOnly,_readWrite,_empty,_checked,_enabled,_expanded,_highlighted,_complete,_incomplete,_dragging,_before,_after,_firstLetter,_firstLine,_marker,_selection,_file,_backdrop,_first,_last,_only,_even,_odd,_firstOfType,_lastOfType,_onlyOfType,_peerFocus,_peerHover,_peerActive,_peerFocusWithin,_peerFocusVisible,_peerDisabled,_peerChecked,_peerInvalid,_peerExpanded,_peerPlaceholderShown,_groupFocus,_groupHover,_groupActive,_groupFocusWithin,_groupFocusVisible,_groupDisabled,_groupChecked,_groupExpanded,_groupInvalid,_indeterminate,_required,_valid,_invalid,_autofill,_inRange,_outOfRange,_placeholder,_placeholderShown,_pressed,_selected,_grabbed,_underValue,_overValue,_atValue,_default,_optional,_open,_closed,_fullscreen,_loading,_hidden,_current,_currentPage,_currentStep,_today,_unavailable,_rangeStart,_rangeEnd,_now,_topmost,_motionReduce,_motionSafe,_print,_landscape,_portrait,_dark,_light,_osDark,_osLight,_highContrast,_lessContrast,_moreContrast,_ltr,_rtl,_scrollbar,_scrollbarThumb,_scrollbarTrack,_horizontal,_vertical,_icon,_starting,_noscript,_invertedColors,sm,smOnly,smDown,md,mdOnly,mdDown,lg,lgOnly,lgDown,xl,xlOnly,xlDown,2xl,2xlOnly,2xlDown,smToMd,smToLg,smToXl,smTo2xl,mdToLg,mdToXl,mdTo2xl,lgToXl,lgTo2xl,xlTo2xl,@/xs,@/sm,@/md,@/lg,@/xl,@/2xl,@/3xl,@/4xl,@/5xl,@/6xl,@/7xl,@/8xl,base", I = new Set(ar.split(",")), sr = /^@|&|&$/;
|
|
153
|
+
function R(r) {
|
|
154
|
+
return I.has(r) || sr.test(r);
|
|
155
|
+
}
|
|
156
|
+
const lr = /^_/, dr = /&|@/;
|
|
157
|
+
function cr(r) {
|
|
158
|
+
return r.map((t) => I.has(t) ? t.replace(lr, "") : dr.test(t) ? `[${P(t.trim())}]` : t);
|
|
159
|
+
}
|
|
160
|
+
function br(r) {
|
|
161
|
+
return r.sort((t, o) => {
|
|
162
|
+
const e = R(t), n = R(o);
|
|
163
|
+
return e && !n ? 1 : !e && n ? -1 : 0;
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
const gr = "aspectRatio:asp,boxDecorationBreak:bx-db,zIndex:z,boxSizing:bx-s,objectPosition:obj-p,objectFit:obj-f,overscrollBehavior:ovs-b,overscrollBehaviorX:ovs-bx,overscrollBehaviorY:ovs-by,position:pos/1,top:top,left:left,inset:inset,insetInline:inset-x/insetX,insetBlock:inset-y/insetY,insetBlockEnd:inset-be,insetBlockStart:inset-bs,insetInlineEnd:inset-e/insetEnd/end,insetInlineStart:inset-s/insetStart/start,right:right,bottom:bottom,float:float,visibility:vis,display:d,hideFrom:hide,hideBelow:show,flexBasis:flex-b,flex:flex,flexDirection:flex-d/flexDir,flexGrow:flex-g,flexShrink:flex-sh,gridTemplateColumns:grid-tc,gridTemplateRows:grid-tr,gridColumn:grid-c,gridRow:grid-r,gridColumnStart:grid-cs,gridColumnEnd:grid-ce,gridAutoFlow:grid-af,gridAutoColumns:grid-ac,gridAutoRows:grid-ar,gap:gap,gridGap:grid-g,gridRowGap:grid-rg,gridColumnGap:grid-cg,rowGap:rg,columnGap:cg,justifyContent:jc,alignContent:ac,alignItems:ai,alignSelf:as,padding:p/1,paddingLeft:pl/1,paddingRight:pr/1,paddingTop:pt/1,paddingBottom:pb/1,paddingBlock:py/1/paddingY,paddingBlockEnd:pbe,paddingBlockStart:pbs,paddingInline:px/paddingX/1,paddingInlineEnd:pe/1/paddingEnd,paddingInlineStart:ps/1/paddingStart,marginLeft:ml/1,marginRight:mr/1,marginTop:mt/1,marginBottom:mb/1,margin:m/1,marginBlock:my/1/marginY,marginBlockEnd:mbe,marginBlockStart:mbs,marginInline:mx/1/marginX,marginInlineEnd:me/1/marginEnd,marginInlineStart:ms/1/marginStart,spaceX:sx,spaceY:sy,outlineWidth:ring-w/ringWidth,outlineColor:ring-c/ringColor,outline:ring/1,outlineOffset:ring-o/ringOffset,focusRing:focus-ring,focusVisibleRing:focus-v-ring,focusRingColor:focus-ring-c,focusRingOffset:focus-ring-o,focusRingWidth:focus-ring-w,focusRingStyle:focus-ring-s,divideX:dvd-x,divideY:dvd-y,divideColor:dvd-c,divideStyle:dvd-s,width:w/1,inlineSize:w-is,minWidth:min-w/minW,minInlineSize:min-w-is,maxWidth:max-w/maxW,maxInlineSize:max-w-is,height:h/1,blockSize:h-bs,minHeight:min-h/minH,minBlockSize:min-h-bs,maxHeight:max-h/maxH,maxBlockSize:max-b,boxSize:size,color:c,fontFamily:ff,fontSize:fs,fontSizeAdjust:fs-a,fontPalette:fp,fontKerning:fk,fontFeatureSettings:ff-s,fontWeight:fw,fontSmoothing:fsmt,fontVariant:fv,fontVariantAlternates:fv-alt,fontVariantCaps:fv-caps,fontVariationSettings:fv-s,fontVariantNumeric:fv-num,letterSpacing:ls,lineHeight:lh,textAlign:ta,textDecoration:td,textDecorationColor:td-c,textEmphasisColor:te-c,textDecorationStyle:td-s,textDecorationThickness:td-t,textUnderlineOffset:tu-o,textTransform:tt,textIndent:ti,textShadow:tsh,textShadowColor:tsh-c/textShadowColor,WebkitTextFillColor:wktf-c,textOverflow:tov,verticalAlign:va,wordBreak:wb,textWrap:tw,truncate:trunc,lineClamp:lc,listStyleType:li-t,listStylePosition:li-pos,listStyleImage:li-img,listStyle:li-s,backgroundPosition:bg-p/bgPosition,backgroundPositionX:bg-p-x/bgPositionX,backgroundPositionY:bg-p-y/bgPositionY,backgroundAttachment:bg-a/bgAttachment,backgroundClip:bg-cp/bgClip,background:bg/1,backgroundColor:bg-c/bgColor,backgroundOrigin:bg-o/bgOrigin,backgroundImage:bg-i/bgImage,backgroundRepeat:bg-r/bgRepeat,backgroundBlendMode:bg-bm/bgBlendMode,backgroundSize:bg-s/bgSize,backgroundGradient:bg-grad/bgGradient,backgroundLinear:bg-linear/bgLinear,backgroundRadial:bg-radial/bgRadial,backgroundConic:bg-conic/bgConic,textGradient:txt-grad,gradientFromPosition:grad-from-pos,gradientToPosition:grad-to-pos,gradientFrom:grad-from,gradientTo:grad-to,gradientVia:grad-via,gradientViaPosition:grad-via-pos,borderRadius:bdr/rounded,borderTopLeftRadius:bdr-tl/roundedTopLeft,borderTopRightRadius:bdr-tr/roundedTopRight,borderBottomRightRadius:bdr-br/roundedBottomRight,borderBottomLeftRadius:bdr-bl/roundedBottomLeft,borderTopRadius:bdr-t/roundedTop,borderRightRadius:bdr-r/roundedRight,borderBottomRadius:bdr-b/roundedBottom,borderLeftRadius:bdr-l/roundedLeft,borderStartStartRadius:bdr-ss/roundedStartStart,borderStartEndRadius:bdr-se/roundedStartEnd,borderStartRadius:bdr-s/roundedStart,borderEndStartRadius:bdr-es/roundedEndStart,borderEndEndRadius:bdr-ee/roundedEndEnd,borderEndRadius:bdr-e/roundedEnd,border:bd,borderWidth:bd-w,borderTopWidth:bd-t-w,borderLeftWidth:bd-l-w,borderRightWidth:bd-r-w,borderBottomWidth:bd-b-w,borderBlockStartWidth:bd-bs-w,borderBlockEndWidth:bd-be-w,borderColor:bd-c,borderInline:bd-x/borderX,borderInlineWidth:bd-x-w/borderXWidth,borderInlineColor:bd-x-c/borderXColor,borderBlock:bd-y/borderY,borderBlockWidth:bd-y-w/borderYWidth,borderBlockColor:bd-y-c/borderYColor,borderLeft:bd-l,borderLeftColor:bd-l-c,borderInlineStart:bd-s/borderStart,borderInlineStartWidth:bd-s-w/borderStartWidth,borderInlineStartColor:bd-s-c/borderStartColor,borderRight:bd-r,borderRightColor:bd-r-c,borderInlineEnd:bd-e/borderEnd,borderInlineEndWidth:bd-e-w/borderEndWidth,borderInlineEndColor:bd-e-c/borderEndColor,borderTop:bd-t,borderTopColor:bd-t-c,borderBottom:bd-b,borderBottomColor:bd-b-c,borderBlockEnd:bd-be,borderBlockEndColor:bd-be-c,borderBlockStart:bd-bs,borderBlockStartColor:bd-bs-c,opacity:op,boxShadow:bx-sh/shadow,boxShadowColor:bx-sh-c/shadowColor,mixBlendMode:mix-bm,filter:filter,brightness:brightness,contrast:contrast,grayscale:grayscale,hueRotate:hue-rotate,invert:invert,saturate:saturate,sepia:sepia,dropShadow:drop-shadow,blur:blur,backdropFilter:bkdp,backdropBlur:bkdp-blur,backdropBrightness:bkdp-brightness,backdropContrast:bkdp-contrast,backdropGrayscale:bkdp-grayscale,backdropHueRotate:bkdp-hue-rotate,backdropInvert:bkdp-invert,backdropOpacity:bkdp-opacity,backdropSaturate:bkdp-saturate,backdropSepia:bkdp-sepia,borderCollapse:bd-cl,borderSpacing:bd-sp,borderSpacingX:bd-sx,borderSpacingY:bd-sy,tableLayout:tbl,transitionTimingFunction:trs-tmf,transitionDelay:trs-dly,transitionDuration:trs-dur,transitionProperty:trs-prop,transition:trs,animation:anim,animationName:anim-n,animationTimingFunction:anim-tmf,animationDuration:anim-dur,animationDelay:anim-dly,animationPlayState:anim-ps,animationComposition:anim-comp,animationFillMode:anim-fm,animationDirection:anim-dir,animationIterationCount:anim-ic,animationRange:anim-r,animationState:anim-s,animationRangeStart:anim-rs,animationRangeEnd:anim-re,animationTimeline:anim-tl,transformOrigin:trf-o,transformBox:trf-b,transformStyle:trf-s,transform:trf,rotate:rotate,rotateX:rotate-x,rotateY:rotate-y,rotateZ:rotate-z,scale:scale,scaleX:scale-x,scaleY:scale-y,translate:translate,translateX:translate-x/x,translateY:translate-y/y,translateZ:translate-z/z,accentColor:ac-c,caretColor:ca-c,scrollBehavior:scr-bhv,scrollbar:scr-bar,scrollbarColor:scr-bar-c,scrollbarGutter:scr-bar-g,scrollbarWidth:scr-bar-w,scrollMargin:scr-m,scrollMarginLeft:scr-ml,scrollMarginRight:scr-mr,scrollMarginTop:scr-mt,scrollMarginBottom:scr-mb,scrollMarginBlock:scr-my/scrollMarginY,scrollMarginBlockEnd:scr-mbe,scrollMarginBlockStart:scr-mbt,scrollMarginInline:scr-mx/scrollMarginX,scrollMarginInlineEnd:scr-me,scrollMarginInlineStart:scr-ms,scrollPadding:scr-p,scrollPaddingBlock:scr-py/scrollPaddingY,scrollPaddingBlockStart:scr-pbs,scrollPaddingBlockEnd:scr-pbe,scrollPaddingInline:scr-px/scrollPaddingX,scrollPaddingInlineEnd:scr-pe,scrollPaddingInlineStart:scr-ps,scrollPaddingLeft:scr-pl,scrollPaddingRight:scr-pr,scrollPaddingTop:scr-pt,scrollPaddingBottom:scr-pb,scrollSnapAlign:scr-sa,scrollSnapStop:scrs-s,scrollSnapType:scrs-t,scrollSnapStrictness:scrs-strt,scrollSnapMargin:scrs-m,scrollSnapMarginTop:scrs-mt,scrollSnapMarginBottom:scrs-mb,scrollSnapMarginLeft:scrs-ml,scrollSnapMarginRight:scrs-mr,scrollSnapCoordinate:scrs-c,scrollSnapDestination:scrs-d,scrollSnapPointsX:scrs-px,scrollSnapPointsY:scrs-py,scrollSnapTypeX:scrs-tx,scrollSnapTypeY:scrs-ty,scrollTimeline:scrtl,scrollTimelineAxis:scrtl-a,scrollTimelineName:scrtl-n,touchAction:tch-a,userSelect:us,overflow:ov,overflowWrap:ov-wrap,overflowX:ov-x,overflowY:ov-y,overflowAnchor:ov-a,overflowBlock:ov-b,overflowInline:ov-i,overflowClipBox:ovcp-bx,overflowClipMargin:ovcp-m,overscrollBehaviorBlock:ovs-bb,overscrollBehaviorInline:ovs-bi,fill:fill,stroke:stk,strokeWidth:stk-w,strokeDasharray:stk-dsh,strokeDashoffset:stk-do,strokeLinecap:stk-lc,strokeLinejoin:stk-lj,strokeMiterlimit:stk-ml,strokeOpacity:stk-op,srOnly:sr,debug:debug,appearance:ap,backfaceVisibility:bfv,clipPath:cp-path,hyphens:hy,mask:msk,maskImage:msk-i,maskSize:msk-s,textSizeAdjust:txt-adj,container:cq,containerName:cq-n,containerType:cq-t,cursor:cursor,textStyle:textStyle", A = /* @__PURE__ */ new Map(), z = /* @__PURE__ */ new Map();
|
|
167
|
+
gr.split(",").forEach((r) => {
|
|
168
|
+
const [t, o] = r.split(":"), [e, ...n] = o.split("/");
|
|
169
|
+
A.set(t, e), n.length && n.forEach((i) => {
|
|
170
|
+
z.set(i === "1" ? e : i, t);
|
|
171
|
+
});
|
|
172
|
+
});
|
|
173
|
+
const B = (r) => z.get(r) || r, M = {
|
|
174
|
+
conditions: {
|
|
175
|
+
shift: br,
|
|
176
|
+
finalize: cr,
|
|
177
|
+
breakpoints: { keys: ["base", "sm", "md", "lg", "xl", "2xl"] }
|
|
178
|
+
},
|
|
179
|
+
utility: {
|
|
180
|
+
transform: (r, t) => {
|
|
181
|
+
const o = B(r);
|
|
182
|
+
return { className: `${A.get(o) || or(o)}_${P(t)}` };
|
|
183
|
+
},
|
|
184
|
+
hasShorthand: !0,
|
|
185
|
+
toHash: (r, t) => t(r.join(":")),
|
|
186
|
+
resolveShorthand: B
|
|
187
|
+
}
|
|
188
|
+
}, pr = U(M), c = (...r) => pr(h(...r));
|
|
189
|
+
c.raw = (...r) => h(...r);
|
|
190
|
+
const { mergeCss: h } = Q(M);
|
|
191
|
+
function fr() {
|
|
192
|
+
let r = "", t = 0, o;
|
|
193
|
+
for (; t < arguments.length; )
|
|
194
|
+
(o = arguments[t++]) && typeof o == "string" && (r && (r += " "), r += o);
|
|
195
|
+
return r;
|
|
196
|
+
}
|
|
197
|
+
const O = (r) => ({
|
|
198
|
+
base: {},
|
|
199
|
+
variants: {},
|
|
200
|
+
defaultVariants: {},
|
|
201
|
+
compoundVariants: [],
|
|
202
|
+
...r
|
|
203
|
+
});
|
|
204
|
+
function w(r) {
|
|
205
|
+
const { base: t, variants: o, defaultVariants: e, compoundVariants: n } = O(r), i = (l) => ({ ...e, ...T(l) });
|
|
206
|
+
function a(l = {}) {
|
|
207
|
+
const g = i(l);
|
|
208
|
+
let f = { ...t };
|
|
209
|
+
for (const [x, S] of Object.entries(g))
|
|
210
|
+
o[x]?.[S] && (f = h(f, o[x][S]));
|
|
211
|
+
const m = ur(n, g);
|
|
212
|
+
return h(f, m);
|
|
213
|
+
}
|
|
214
|
+
function s(l) {
|
|
215
|
+
const g = O(l.config), f = ir(l.variantKeys, Object.keys(o));
|
|
216
|
+
return w({
|
|
217
|
+
base: h(t, g.base),
|
|
218
|
+
variants: Object.fromEntries(
|
|
219
|
+
f.map((m) => [m, h(o[m], g.variants[m])])
|
|
220
|
+
),
|
|
221
|
+
defaultVariants: v(e, g.defaultVariants),
|
|
222
|
+
compoundVariants: [...n, ...g.compoundVariants]
|
|
223
|
+
});
|
|
224
|
+
}
|
|
225
|
+
function d(l) {
|
|
226
|
+
return c(a(l));
|
|
227
|
+
}
|
|
228
|
+
const b = Object.keys(o);
|
|
229
|
+
function u(l) {
|
|
230
|
+
return nr(l, b);
|
|
231
|
+
}
|
|
232
|
+
const p = Object.fromEntries(Object.entries(o).map(([l, g]) => [l, Object.keys(g)]));
|
|
233
|
+
return Object.assign(y(d), {
|
|
234
|
+
__cva__: !0,
|
|
235
|
+
variantMap: p,
|
|
236
|
+
variantKeys: b,
|
|
237
|
+
raw: a,
|
|
238
|
+
config: r,
|
|
239
|
+
merge: s,
|
|
240
|
+
splitVariantProps: u,
|
|
241
|
+
getVariantProps: i
|
|
242
|
+
});
|
|
243
|
+
}
|
|
244
|
+
function ur(r, t) {
|
|
245
|
+
let o = {};
|
|
246
|
+
return r.forEach((e) => {
|
|
247
|
+
Object.entries(e).every(([i, a]) => i === "css" ? !0 : (Array.isArray(a) ? a : [a]).some((d) => t[i] === d)) && (o = h(o, e.css));
|
|
248
|
+
}), o;
|
|
249
|
+
}
|
|
250
|
+
const mr = c({
|
|
251
|
+
position: "relative",
|
|
252
|
+
overflow: "hidden",
|
|
253
|
+
borderRadius: "3xl",
|
|
254
|
+
borderWidth: "1px",
|
|
255
|
+
borderColor: "border.subtle",
|
|
256
|
+
bg: "bg.card",
|
|
257
|
+
backdropFilter: "blur(28px) saturate(155%)",
|
|
258
|
+
boxShadow: "0 25px 30px -35px rgba(15,23,42,0.42)",
|
|
259
|
+
_before: {
|
|
260
|
+
content: '""',
|
|
261
|
+
position: "absolute",
|
|
262
|
+
inset: "0",
|
|
263
|
+
pointerEvents: "none",
|
|
264
|
+
background: "linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.04) 18%, rgba(255,255,255,0) 100%)"
|
|
265
|
+
},
|
|
266
|
+
_dark: {
|
|
267
|
+
backdropFilter: "blur(12px) saturate(110%)",
|
|
268
|
+
boxShadow: "0 16px 34px -28px rgba(0,0,0,0.92)",
|
|
269
|
+
_before: {
|
|
270
|
+
background: "none"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}), hr = c({
|
|
274
|
+
borderRadius: "2xl",
|
|
275
|
+
borderWidth: "1px",
|
|
276
|
+
borderColor: "border.soft",
|
|
277
|
+
bg: "bg.cardAlt",
|
|
278
|
+
backdropFilter: "blur(24px) saturate(145%)",
|
|
279
|
+
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.22)",
|
|
280
|
+
_dark: {
|
|
281
|
+
backdropFilter: "blur(10px) saturate(105%)",
|
|
282
|
+
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.03)"
|
|
283
|
+
}
|
|
284
|
+
}), xr = c({
|
|
285
|
+
borderRadius: "2xl",
|
|
286
|
+
borderWidth: "1px",
|
|
287
|
+
borderColor: "border.default",
|
|
288
|
+
bg: "bg.cardStrong",
|
|
289
|
+
backdropFilter: "blur(24px) saturate(145%)",
|
|
290
|
+
boxShadow: "0 16px 32px -28px rgba(15,23,42,0.42)",
|
|
291
|
+
_dark: {
|
|
292
|
+
boxShadow: "0 16px 34px -28px rgba(0,0,0,0.92)"
|
|
293
|
+
}
|
|
294
|
+
}), Sr = c({
|
|
295
|
+
fontSize: "xs",
|
|
296
|
+
textTransform: "uppercase",
|
|
297
|
+
letterSpacing: "0.12em",
|
|
298
|
+
color: "text.muted",
|
|
299
|
+
fontWeight: "700"
|
|
300
|
+
}), yr = c({
|
|
301
|
+
fontFamily: "heading",
|
|
302
|
+
fontSize: { base: "2xl", md: "3xl" },
|
|
303
|
+
lineHeight: "1",
|
|
304
|
+
color: "text.primary"
|
|
305
|
+
}), kr = c({
|
|
306
|
+
color: "text.secondary",
|
|
307
|
+
lineHeight: "1.65",
|
|
308
|
+
fontSize: "sm"
|
|
309
|
+
}), _r = c({
|
|
310
|
+
color: "text.secondary",
|
|
311
|
+
fontSize: "sm",
|
|
312
|
+
lineHeight: "1.6"
|
|
313
|
+
}), vr = c({
|
|
314
|
+
color: "text.primary",
|
|
315
|
+
fontWeight: "700",
|
|
316
|
+
lineHeight: "1.1"
|
|
317
|
+
}), wr = c({
|
|
318
|
+
whiteSpace: "pre-wrap",
|
|
319
|
+
fontFamily: "mono",
|
|
320
|
+
fontSize: "sm",
|
|
321
|
+
lineHeight: "1.65",
|
|
322
|
+
color: "text.secondary"
|
|
323
|
+
}), Cr = w({
|
|
324
|
+
base: {
|
|
325
|
+
position: "relative",
|
|
326
|
+
display: "inline-flex",
|
|
327
|
+
alignItems: "center",
|
|
328
|
+
justifyContent: "center",
|
|
329
|
+
gap: "2",
|
|
330
|
+
borderRadius: "xl",
|
|
331
|
+
px: "4",
|
|
332
|
+
py: "3",
|
|
333
|
+
fontSize: "sm",
|
|
334
|
+
fontWeight: "700",
|
|
335
|
+
letterSpacing: "0.01em",
|
|
336
|
+
backdropFilter: "blur(22px) saturate(140%)",
|
|
337
|
+
transition: "all 160ms ease",
|
|
338
|
+
userSelect: "none",
|
|
339
|
+
whiteSpace: "nowrap"
|
|
340
|
+
},
|
|
341
|
+
variants: {
|
|
342
|
+
variant: {
|
|
343
|
+
solid: {
|
|
344
|
+
bg: "linear-gradient(135deg, rgba(31,67,182,0.96) 0%, rgba(49,94,255,0.92) 100%)",
|
|
345
|
+
color: "text.inverse",
|
|
346
|
+
borderWidth: "1px",
|
|
347
|
+
borderColor: "rgba(255,255,255,0.18)",
|
|
348
|
+
boxShadow: "0 22px 36px -24px rgba(49,94,255,0.78), inset 0 1px 0 rgba(255,255,255,0.24)",
|
|
349
|
+
_dark: {
|
|
350
|
+
color: "#f7f9fd",
|
|
351
|
+
borderColor: "rgba(255,255,255,0.06)",
|
|
352
|
+
boxShadow: "0 22px 40px -24px rgba(71,121,255,0.55), inset 0 1px 0 rgba(255,255,255,0.18)"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
outline: {
|
|
356
|
+
bg: "bg.buttonOutline",
|
|
357
|
+
color: "text.secondary",
|
|
358
|
+
borderWidth: "1px",
|
|
359
|
+
borderColor: "border.default",
|
|
360
|
+
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.18)",
|
|
361
|
+
_dark: {
|
|
362
|
+
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.04)"
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
subtle: {
|
|
366
|
+
bg: "bg.accentSoft",
|
|
367
|
+
color: "text.accent",
|
|
368
|
+
borderWidth: "1px",
|
|
369
|
+
borderColor: "badge.infoBorder",
|
|
370
|
+
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.22)",
|
|
371
|
+
_dark: {
|
|
372
|
+
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.04)"
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
disabled: {
|
|
377
|
+
true: {
|
|
378
|
+
cursor: "not-allowed",
|
|
379
|
+
opacity: 0.5
|
|
380
|
+
},
|
|
381
|
+
false: {
|
|
382
|
+
cursor: "pointer"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
loading: {
|
|
386
|
+
true: {
|
|
387
|
+
cursor: "not-allowed",
|
|
388
|
+
opacity: 0.5
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
compoundVariants: [
|
|
393
|
+
{
|
|
394
|
+
variant: "solid",
|
|
395
|
+
disabled: !1,
|
|
396
|
+
loading: !1,
|
|
397
|
+
css: {
|
|
398
|
+
_hover: {
|
|
399
|
+
transform: "translateY(-1px)",
|
|
400
|
+
boxShadow: "0 24px 42px -24px rgba(49,94,255,0.82), inset 0 1px 0 rgba(255,255,255,0.28)"
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
variant: "outline",
|
|
406
|
+
disabled: !1,
|
|
407
|
+
loading: !1,
|
|
408
|
+
css: {
|
|
409
|
+
_hover: {
|
|
410
|
+
color: "text.primary",
|
|
411
|
+
borderColor: "border.strong",
|
|
412
|
+
bg: "bg.cardStrong",
|
|
413
|
+
transform: "translateY(-1px)"
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
variant: "subtle",
|
|
419
|
+
disabled: !1,
|
|
420
|
+
loading: !1,
|
|
421
|
+
css: {
|
|
422
|
+
_hover: {
|
|
423
|
+
bg: "bg.selected",
|
|
424
|
+
borderColor: "border.accent",
|
|
425
|
+
transform: "translateY(-1px)"
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
],
|
|
430
|
+
defaultVariants: {
|
|
431
|
+
variant: "solid",
|
|
432
|
+
disabled: !1,
|
|
433
|
+
loading: !1
|
|
434
|
+
}
|
|
435
|
+
}), Rr = w({
|
|
436
|
+
base: {
|
|
437
|
+
borderWidth: "1px",
|
|
438
|
+
borderColor: "border.subtle",
|
|
439
|
+
bg: "bg.menu",
|
|
440
|
+
backdropFilter: "blur(34px) saturate(165%)",
|
|
441
|
+
boxShadow: "0 32px 70px -40px rgba(15,23,42,0.5)"
|
|
442
|
+
},
|
|
443
|
+
variants: {
|
|
444
|
+
placement: {
|
|
445
|
+
anchored: {
|
|
446
|
+
position: "absolute",
|
|
447
|
+
top: "calc(100% + 10px)",
|
|
448
|
+
left: "0",
|
|
449
|
+
right: "0"
|
|
450
|
+
},
|
|
451
|
+
floating: {
|
|
452
|
+
position: "fixed"
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
density: {
|
|
456
|
+
cozy: {
|
|
457
|
+
borderRadius: "2xl",
|
|
458
|
+
p: "2",
|
|
459
|
+
gap: "1"
|
|
460
|
+
},
|
|
461
|
+
compact: {
|
|
462
|
+
borderRadius: "xl",
|
|
463
|
+
p: "1.5",
|
|
464
|
+
gap: "0.5"
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
defaultVariants: {
|
|
469
|
+
placement: "anchored",
|
|
470
|
+
density: "cozy"
|
|
471
|
+
}
|
|
472
|
+
}), Br = c({
|
|
473
|
+
width: "100%",
|
|
474
|
+
display: "grid",
|
|
475
|
+
gap: "5",
|
|
476
|
+
alignContent: "start",
|
|
477
|
+
height: "100%",
|
|
478
|
+
minHeight: "0",
|
|
479
|
+
overflow: "hidden",
|
|
480
|
+
minWidth: "0"
|
|
481
|
+
}), Or = c({
|
|
482
|
+
display: "grid",
|
|
483
|
+
gap: "4",
|
|
484
|
+
height: "100%",
|
|
485
|
+
minHeight: "0",
|
|
486
|
+
overflowY: "auto",
|
|
487
|
+
paddingRight: "1",
|
|
488
|
+
alignContent: "start"
|
|
489
|
+
}), Tr = c({
|
|
490
|
+
display: "flex",
|
|
491
|
+
alignItems: "flex-start",
|
|
492
|
+
justifyContent: "space-between",
|
|
493
|
+
gap: "4",
|
|
494
|
+
flexDirection: { base: "column", md: "row" }
|
|
495
|
+
}), Er = c({
|
|
496
|
+
display: "grid",
|
|
497
|
+
gap: "2",
|
|
498
|
+
minWidth: "0"
|
|
499
|
+
}), Pr = c({
|
|
500
|
+
flexShrink: "0"
|
|
501
|
+
});
|
|
502
|
+
export {
|
|
503
|
+
Sr as a,
|
|
504
|
+
Cr as b,
|
|
505
|
+
wr as c,
|
|
506
|
+
Rr as d,
|
|
507
|
+
xr as e,
|
|
508
|
+
Er as f,
|
|
509
|
+
Tr as g,
|
|
510
|
+
_r as h,
|
|
511
|
+
hr as i,
|
|
512
|
+
Br as j,
|
|
513
|
+
Or as k,
|
|
514
|
+
yr as l,
|
|
515
|
+
vr as m,
|
|
516
|
+
mr as n,
|
|
517
|
+
w as o,
|
|
518
|
+
Pr as p,
|
|
519
|
+
fr as q,
|
|
520
|
+
c as r,
|
|
521
|
+
kr as s
|
|
522
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const pageSurfaceClass: string;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
export declare const resultPanelClass: import("../../styled-system/types").RecipeRuntimeFn<{
|
|
2
|
+
ok: {
|
|
3
|
+
true: {
|
|
4
|
+
borderColor: "result.okBorder";
|
|
5
|
+
bg: "result.okBg";
|
|
6
|
+
};
|
|
7
|
+
false: {
|
|
8
|
+
borderColor: "result.failBorder";
|
|
9
|
+
bg: "result.failBg";
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
}>;
|
|
13
|
+
export declare const resultPanelRootClass: (ok: boolean) => string;
|
|
14
|
+
export declare const resultPanelHeaderClass: string;
|
|
15
|
+
export declare const resultPanelSummaryClass: string;
|
|
16
|
+
export declare const resultPanelIconClass: import("../../styled-system/types").RecipeRuntimeFn<{
|
|
17
|
+
ok: {
|
|
18
|
+
true: {
|
|
19
|
+
bg: "bg.accentSoft";
|
|
20
|
+
color: "text.accent";
|
|
21
|
+
};
|
|
22
|
+
false: {
|
|
23
|
+
bg: "badge.warningBg";
|
|
24
|
+
color: "badge.warningText";
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
}>;
|
|
28
|
+
export declare const resultPanelTitleClass: string;
|
|
29
|
+
export declare const resultPanelSectionClass: import("../../styled-system/types").RecipeRuntimeFn<{
|
|
30
|
+
spaced: {
|
|
31
|
+
true: {
|
|
32
|
+
mb: "3";
|
|
33
|
+
};
|
|
34
|
+
false: {
|
|
35
|
+
mb: "0";
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}>;
|
|
39
|
+
export declare const resultPanelSectionTitleClass: import("../../styled-system/types").RecipeRuntimeFn<{
|
|
40
|
+
tone: {
|
|
41
|
+
detail: {
|
|
42
|
+
color: "result.detailText";
|
|
43
|
+
};
|
|
44
|
+
warning: {
|
|
45
|
+
color: "result.warningLabel";
|
|
46
|
+
};
|
|
47
|
+
error: {
|
|
48
|
+
color: "result.errorLabel";
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}>;
|
|
52
|
+
export declare const resultPanelListClass: import("../../styled-system/types").RecipeRuntimeFn<{
|
|
53
|
+
tone: {
|
|
54
|
+
detail: {
|
|
55
|
+
color: "result.bodyText";
|
|
56
|
+
};
|
|
57
|
+
warning: {
|
|
58
|
+
color: "result.warningBody";
|
|
59
|
+
};
|
|
60
|
+
error: {
|
|
61
|
+
color: "result.errorBody";
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
}>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
ok: boolean;
|
|
3
|
+
summary: string;
|
|
4
|
+
warnings?: string[];
|
|
5
|
+
errors?: string[];
|
|
6
|
+
messages?: string[];
|
|
7
|
+
live?: "polite" | "assertive" | "off";
|
|
8
|
+
passLabel?: string;
|
|
9
|
+
failLabel?: string;
|
|
10
|
+
detailsLabel?: string;
|
|
11
|
+
warningsLabel?: string;
|
|
12
|
+
errorsLabel?: string;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const sectionCardClass: string;
|
|
2
|
+
export declare const sectionCardScrollClass: string;
|
|
3
|
+
export declare const sectionCardSurfaceClass: string;
|
|
4
|
+
export declare const sectionCardHeaderClass: string;
|
|
5
|
+
export declare const sectionCardHeaderWithGapClass: string;
|
|
6
|
+
export declare const sectionCardHeaderCollapsedGapClass: string;
|
|
7
|
+
export declare const sectionCardHeaderContentClass: string;
|
|
8
|
+
export declare const sectionCardEyebrowClass: string;
|
|
9
|
+
export declare const sectionCardTitleClass: string;
|
|
10
|
+
export declare const sectionCardDescriptionClass: string;
|
|
11
|
+
export declare const sectionCardActionsClass: string;
|
|
12
|
+
export declare const sectionCardBodyScrollClass: string;
|
|
13
|
+
export declare const sectionCardBodyStaticClass: string;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title: string;
|
|
3
|
+
eyebrow?: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
scrollBody?: boolean;
|
|
6
|
+
collapseBodyGap?: boolean;
|
|
7
|
+
};
|
|
8
|
+
declare var __VLS_1: {}, __VLS_3: {};
|
|
9
|
+
type __VLS_Slots = {} & {
|
|
10
|
+
actions?: (props: typeof __VLS_1) => any;
|
|
11
|
+
} & {
|
|
12
|
+
default?: (props: typeof __VLS_3) => any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
15
|
+
description: string;
|
|
16
|
+
eyebrow: string;
|
|
17
|
+
scrollBody: boolean;
|
|
18
|
+
collapseBodyGap: boolean;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
21
|
+
declare const _default: typeof __VLS_export;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|