@aggc/ui 0.6.0 → 0.7.1
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/dist/chunks/{UiSkeleton.vue_vue_type_script_setup_true_lang-B61z8swg.js → UiSkeleton.vue_vue_type_script_setup_true_lang-DUse1KRc.js} +285 -285
- package/dist/chunks/{pageHeader-D9KF7WOO.js → pageHeader-YZ3BV9dQ.js} +156 -62
- package/dist/components/StatusBadge.styles.d.ts +5 -0
- package/dist/components/StatusBadge.vue.d.ts +2 -2
- package/dist/components/UiButton.styles.d.ts +28 -1
- package/dist/components/UiButton.vue.d.ts +4 -0
- package/dist/components/UiCheckbox.styles.d.ts +2 -4
- package/dist/components/UiSegmentedControl.styles.d.ts +5 -1
- package/dist/components/UiSelect.styles.d.ts +10 -3
- package/dist/components/UiSkeleton.styles.d.ts +1 -33
- package/dist/components.js +1 -1
- package/dist/index.js +2 -2
- package/dist/styles/recipes/badge.recipe.d.ts +5 -0
- package/dist/styles/recipes/button.recipe.d.ts +28 -1
- package/dist/styles/recipes/card.recipe.d.ts +23 -12
- package/dist/styles/recipes/dropdown.recipe.d.ts +6 -6
- package/dist/styles/recipes/input.recipe.d.ts +0 -3
- package/dist/styles.js +118 -92
- package/dist/tokens/colors.d.ts +30 -0
- package/dist/tokens/core-colors.d.ts +30 -0
- package/dist/tokens/motion.d.ts +20 -0
- package/dist/tokens/radius.d.ts +9 -0
- package/dist/tokens-core.js +21 -5
- package/dist/ui.css +320 -207
- package/package.json +1 -1
- package/src/components/ResultPanel.styles.ts +7 -2
- package/src/components/SectionCard.styles.ts +1 -1
- package/src/components/StatusBadge.styles.ts +10 -8
- package/src/components/StatusBadge.vue +1 -1
- package/src/components/UiButton.vue +5 -1
- package/src/components/UiCheckbox.styles.ts +7 -11
- package/src/components/UiField.styles.ts +2 -2
- package/src/components/UiLoadingState.styles.ts +2 -2
- package/src/components/UiSegmentedControl.styles.ts +14 -4
- package/src/components/UiSelect.styles.ts +24 -10
- package/src/components/UiSkeleton.styles.ts +7 -36
- package/src/css/base.css +44 -9
- package/src/styles/layouts/page.ts +5 -0
- package/src/styles/primitives/feedback.ts +1 -0
- package/src/styles/primitives/fields.ts +21 -11
- package/src/styles/primitives/surfaces.ts +12 -5
- package/src/styles/primitives/typography.ts +5 -4
- package/src/styles/recipes/badge.recipe.ts +5 -5
- package/src/styles/recipes/button.recipe.ts +87 -8
- package/src/styles/recipes/card.recipe.ts +24 -13
- package/src/styles/recipes/dropdown.recipe.ts +11 -8
- package/src/styles/recipes/input.recipe.ts +10 -6
- package/src/tokens/core-colors.ts +5 -0
- package/src/tokens/motion.ts +8 -0
- package/src/tokens/radius.ts +3 -0
|
@@ -3,65 +3,33 @@ export declare const skeletonClass: import("../../styled-system/types").RecipeRu
|
|
|
3
3
|
text: {
|
|
4
4
|
width: "100%";
|
|
5
5
|
height: "0.875rem";
|
|
6
|
-
borderRadius: "md";
|
|
7
|
-
bg: "rgba(127, 146, 184, 0.14)";
|
|
8
|
-
_dark: {
|
|
9
|
-
bg: "rgba(210, 220, 240, 0.09)";
|
|
10
|
-
};
|
|
11
6
|
};
|
|
12
7
|
title: {
|
|
13
8
|
width: "100%";
|
|
14
9
|
height: "1.75rem";
|
|
15
|
-
borderRadius: "
|
|
16
|
-
bg: "rgba(127, 146, 184, 0.14)";
|
|
17
|
-
_dark: {
|
|
18
|
-
bg: "rgba(210, 220, 240, 0.09)";
|
|
19
|
-
};
|
|
10
|
+
borderRadius: "md";
|
|
20
11
|
};
|
|
21
12
|
rect: {
|
|
22
13
|
width: "100%";
|
|
23
14
|
height: "5rem";
|
|
24
|
-
borderRadius: "xl";
|
|
25
|
-
bg: "rgba(127, 146, 184, 0.14)";
|
|
26
|
-
_dark: {
|
|
27
|
-
bg: "rgba(210, 220, 240, 0.09)";
|
|
28
|
-
};
|
|
29
15
|
};
|
|
30
16
|
pill: {
|
|
31
17
|
width: "5rem";
|
|
32
18
|
height: "1.75rem";
|
|
33
19
|
borderRadius: "999px";
|
|
34
|
-
bg: "rgba(127, 146, 184, 0.14)";
|
|
35
|
-
_dark: {
|
|
36
|
-
bg: "rgba(210, 220, 240, 0.09)";
|
|
37
|
-
};
|
|
38
20
|
};
|
|
39
21
|
circle: {
|
|
40
22
|
width: "2.75rem";
|
|
41
23
|
height: "2.75rem";
|
|
42
24
|
borderRadius: "999px";
|
|
43
|
-
bg: "rgba(127, 146, 184, 0.14)";
|
|
44
|
-
_dark: {
|
|
45
|
-
bg: "rgba(210, 220, 240, 0.09)";
|
|
46
|
-
};
|
|
47
25
|
};
|
|
48
26
|
stat: {
|
|
49
27
|
width: "100%";
|
|
50
28
|
height: "4.75rem";
|
|
51
|
-
borderRadius: "xl";
|
|
52
|
-
bg: "rgba(117, 138, 178, 0.16)";
|
|
53
|
-
_dark: {
|
|
54
|
-
bg: "rgba(210, 220, 240, 0.11)";
|
|
55
|
-
};
|
|
56
29
|
};
|
|
57
30
|
action: {
|
|
58
31
|
width: "100%";
|
|
59
32
|
height: "2.75rem";
|
|
60
|
-
borderRadius: "xl";
|
|
61
|
-
bg: "rgba(127, 146, 184, 0.14)";
|
|
62
|
-
_dark: {
|
|
63
|
-
bg: "rgba(210, 220, 240, 0.09)";
|
|
64
|
-
};
|
|
65
33
|
};
|
|
66
34
|
};
|
|
67
35
|
}>;
|
package/dist/components.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as s, a as t, b as i, c as o, d as n, e as S, f as U, g as d, h as l, i as c, j as g } from "./chunks/UiSkeleton.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { _ as s, a as t, b as i, c as o, d as n, e as S, f as U, g as d, h as l, i as c, j as g } from "./chunks/UiSkeleton.vue_vue_type_script_setup_true_lang-DUse1KRc.js";
|
|
2
2
|
export {
|
|
3
3
|
s as PageSurface,
|
|
4
4
|
t as ResultPanel,
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as a, a as l, b as o, c as t, d as i, e as n, f as r, g as C, h as c, i as p, j as d } from "./chunks/UiSkeleton.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { _ as a, a as l, b as o, c as t, d as i, e as n, f as r, g as C, h as c, i as p, j as d } from "./chunks/UiSkeleton.vue_vue_type_script_setup_true_lang-DUse1KRc.js";
|
|
2
2
|
import { actionToolbarClass as u, badgeRecipe as f, cardRecipe as m, centeredEmptyStatePanelClass as k, clusterLayout as R, emptyStatePanelClass as T, errorTextClass as S, fieldControlClass as x, fieldControlSmClass as b, fieldTextareaClass as P, focusRingClass as y, infoPanelClass as U, inputRecipe as L, loadingRegionClass as h, metricGridPattern as B, mutedTextClass as D, resultRegionClass as H, resultSkeletonPanelClass as j, selectableDetailClass as w, selectableListClass as v, selectableListDetailRootClass as A, splitLayout as E, stackLayout as F } from "./styles.js";
|
|
3
|
-
import { b as V, c as _, d as q, e as z, a as I, h as J, i as K, m as M, p as N, f as O, g as Q, j as W, k as X, s as Y, l as Z, n as $ } from "./chunks/pageHeader-
|
|
3
|
+
import { b as V, c as _, d as q, e as z, a as I, h as J, i as K, m as M, p as N, f as O, g as Q, j as W, k as X, s as Y, l as Z, n as $ } from "./chunks/pageHeader-YZ3BV9dQ.js";
|
|
4
4
|
import { colorTokens as es } from "./tokens.js";
|
|
5
5
|
import { coreColorTokens as ls, motionTokens as os, radiusTokens as ts, spacingTokens as is, typographyTokens as ns } from "./tokens-core.js";
|
|
6
6
|
import { desktopColorTokens as Cs } from "./tokens-desktop.js";
|
|
@@ -20,6 +20,11 @@ export declare const badgeRecipe: import("../../../styled-system/types").RecipeR
|
|
|
20
20
|
bg: "badge.warningBg";
|
|
21
21
|
color: "badge.warningText";
|
|
22
22
|
};
|
|
23
|
+
danger: {
|
|
24
|
+
borderColor: "badge.dangerBorder";
|
|
25
|
+
bg: "badge.dangerBg";
|
|
26
|
+
color: "badge.dangerText";
|
|
27
|
+
};
|
|
23
28
|
};
|
|
24
29
|
size: {
|
|
25
30
|
sm: {
|
|
@@ -6,7 +6,7 @@ export declare const buttonRecipe: import("../../../styled-system/types").Recipe
|
|
|
6
6
|
borderWidth: "1px";
|
|
7
7
|
borderColor: "transparent";
|
|
8
8
|
_dark: {
|
|
9
|
-
color: "
|
|
9
|
+
color: "text.inverse";
|
|
10
10
|
};
|
|
11
11
|
};
|
|
12
12
|
outline: {
|
|
@@ -22,6 +22,33 @@ export declare const buttonRecipe: import("../../../styled-system/types").Recipe
|
|
|
22
22
|
borderColor: "badge.infoBorder";
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
|
+
size: {
|
|
26
|
+
sm: {
|
|
27
|
+
px: "3";
|
|
28
|
+
py: "1.5";
|
|
29
|
+
fontSize: "xs";
|
|
30
|
+
borderRadius: "md";
|
|
31
|
+
};
|
|
32
|
+
md: {
|
|
33
|
+
px: "4";
|
|
34
|
+
py: "2.5";
|
|
35
|
+
};
|
|
36
|
+
lg: {
|
|
37
|
+
px: "5";
|
|
38
|
+
py: "3";
|
|
39
|
+
fontSize: "md";
|
|
40
|
+
borderRadius: "xl";
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
tone: {
|
|
44
|
+
default: {};
|
|
45
|
+
danger: {
|
|
46
|
+
bg: "text.error";
|
|
47
|
+
color: "text.inverse";
|
|
48
|
+
borderWidth: "1px";
|
|
49
|
+
borderColor: "transparent";
|
|
50
|
+
};
|
|
51
|
+
};
|
|
25
52
|
disabled: {
|
|
26
53
|
true: {
|
|
27
54
|
cursor: "not-allowed";
|
|
@@ -2,36 +2,47 @@ export declare const cardRecipe: import("../../../styled-system/types").RecipeRu
|
|
|
2
2
|
variant: {
|
|
3
3
|
surface: {
|
|
4
4
|
position: "relative";
|
|
5
|
-
|
|
6
|
-
borderRadius: "3xl";
|
|
5
|
+
borderRadius: "xl";
|
|
7
6
|
borderColor: "border.subtle";
|
|
8
7
|
bg: "bg.card";
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
boxShadow: "0 1px 2px 0 rgba(15,23,42,0.04), 0 1px 3px 0 rgba(15,23,42,0.06)";
|
|
9
|
+
_dark: {
|
|
10
|
+
borderColor: "border.default";
|
|
11
|
+
boxShadow: "0 1px 2px 0 rgba(0,0,0,0.2), 0 1px 3px 0 rgba(0,0,0,0.24)";
|
|
12
|
+
};
|
|
11
13
|
};
|
|
12
14
|
inset: {
|
|
13
|
-
borderRadius: "
|
|
15
|
+
borderRadius: "lg";
|
|
14
16
|
borderColor: "border.soft";
|
|
15
17
|
bg: "bg.cardAlt";
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
_dark: {
|
|
19
|
+
borderColor: "border.subtle";
|
|
20
|
+
};
|
|
18
21
|
};
|
|
19
22
|
elevated: {
|
|
20
|
-
borderRadius: "
|
|
23
|
+
borderRadius: "lg";
|
|
21
24
|
borderColor: "border.default";
|
|
22
25
|
bg: "bg.cardStrong";
|
|
23
|
-
|
|
24
|
-
|
|
26
|
+
boxShadow: "0 1px 2px 0 rgba(15,23,42,0.04), 0 4px 12px -4px rgba(15,23,42,0.1)";
|
|
27
|
+
_dark: {
|
|
28
|
+
borderColor: "border.strong";
|
|
29
|
+
boxShadow: "0 1px 2px 0 rgba(0,0,0,0.24), 0 4px 12px -4px rgba(0,0,0,0.4)";
|
|
30
|
+
};
|
|
25
31
|
};
|
|
26
32
|
selectable: {
|
|
27
|
-
borderRadius: "
|
|
33
|
+
borderRadius: "lg";
|
|
28
34
|
borderColor: "border.default";
|
|
29
35
|
bg: "bg.cardAlt";
|
|
30
36
|
cursor: "pointer";
|
|
31
37
|
_hover: {
|
|
32
38
|
borderColor: "border.strong";
|
|
33
39
|
bg: "bg.card";
|
|
34
|
-
|
|
40
|
+
};
|
|
41
|
+
_dark: {
|
|
42
|
+
borderColor: "border.strong";
|
|
43
|
+
_hover: {
|
|
44
|
+
borderColor: "border.accent";
|
|
45
|
+
};
|
|
35
46
|
};
|
|
36
47
|
};
|
|
37
48
|
};
|
|
@@ -2,7 +2,7 @@ export declare const dropdownRecipe: import("../../../styled-system/types").Reci
|
|
|
2
2
|
placement: {
|
|
3
3
|
anchored: {
|
|
4
4
|
position: "absolute";
|
|
5
|
-
top: "calc(100% +
|
|
5
|
+
top: "calc(100% + 6px)";
|
|
6
6
|
left: "0";
|
|
7
7
|
right: "0";
|
|
8
8
|
};
|
|
@@ -12,14 +12,14 @@ export declare const dropdownRecipe: import("../../../styled-system/types").Reci
|
|
|
12
12
|
};
|
|
13
13
|
density: {
|
|
14
14
|
cozy: {
|
|
15
|
-
borderRadius: "2xl";
|
|
16
|
-
p: "2";
|
|
17
|
-
gap: "1";
|
|
18
|
-
};
|
|
19
|
-
compact: {
|
|
20
15
|
borderRadius: "xl";
|
|
21
16
|
p: "1.5";
|
|
22
17
|
gap: "0.5";
|
|
23
18
|
};
|
|
19
|
+
compact: {
|
|
20
|
+
borderRadius: "lg";
|
|
21
|
+
p: "1";
|
|
22
|
+
gap: "0.5";
|
|
23
|
+
};
|
|
24
24
|
};
|
|
25
25
|
}>;
|
|
@@ -6,7 +6,6 @@ export declare const inputRecipe: import("../../../styled-system/types").RecipeR
|
|
|
6
6
|
px: "3";
|
|
7
7
|
py: "2.5";
|
|
8
8
|
lineHeight: "1.45";
|
|
9
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.2)";
|
|
10
9
|
};
|
|
11
10
|
md: {
|
|
12
11
|
minHeight: "48px";
|
|
@@ -14,7 +13,6 @@ export declare const inputRecipe: import("../../../styled-system/types").RecipeR
|
|
|
14
13
|
px: "4";
|
|
15
14
|
py: "3";
|
|
16
15
|
lineHeight: "1.5";
|
|
17
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.24), 0 14px 28px -28px rgba(15,23,42,0.42)";
|
|
18
16
|
};
|
|
19
17
|
};
|
|
20
18
|
kind: {
|
|
@@ -26,7 +24,6 @@ export declare const inputRecipe: import("../../../styled-system/types").RecipeR
|
|
|
26
24
|
py: "4";
|
|
27
25
|
lineHeight: "1.6";
|
|
28
26
|
fontFamily: "mono";
|
|
29
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.24), 0 18px 36px -32px rgba(15,23,42,0.42)";
|
|
30
27
|
};
|
|
31
28
|
};
|
|
32
29
|
}>;
|
package/dist/styles.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { r as e, o as
|
|
2
|
-
import { b as
|
|
3
|
-
const
|
|
1
|
+
import { r as e, o as r, q as o, i as a, h as t } from "./chunks/pageHeader-YZ3BV9dQ.js";
|
|
2
|
+
import { b as V, c as B, d as P, e as j, a as I, m as L, p as q, f as A, g as D, j as F, k as E, s as G, l as O, n as J } from "./chunks/pageHeader-YZ3BV9dQ.js";
|
|
3
|
+
const d = e({
|
|
4
4
|
width: "100%",
|
|
5
5
|
minHeight: "48px",
|
|
6
6
|
borderRadius: "xl",
|
|
@@ -12,17 +12,20 @@ const l = e({
|
|
|
12
12
|
lineHeight: "1.5",
|
|
13
13
|
px: "4",
|
|
14
14
|
py: "3",
|
|
15
|
-
|
|
16
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.24), 0 14px 28px -28px rgba(15,23,42,0.42)",
|
|
17
|
-
transition: "border-color 160ms ease, background 160ms ease, transform 160ms ease",
|
|
15
|
+
transition: "border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease",
|
|
18
16
|
_hover: {
|
|
19
17
|
borderColor: "border.strong"
|
|
20
18
|
},
|
|
21
19
|
_placeholder: {
|
|
22
20
|
color: "text.muted"
|
|
23
21
|
},
|
|
22
|
+
_focusVisible: {
|
|
23
|
+
outline: "none",
|
|
24
|
+
borderColor: "border.accent",
|
|
25
|
+
boxShadow: "0 0 0 3px rgba(82, 121, 255, 0.18)"
|
|
26
|
+
},
|
|
24
27
|
_dark: {
|
|
25
|
-
|
|
28
|
+
borderColor: "border.strong"
|
|
26
29
|
}
|
|
27
30
|
}), n = e({
|
|
28
31
|
width: "100%",
|
|
@@ -36,19 +39,22 @@ const l = e({
|
|
|
36
39
|
lineHeight: "1.45",
|
|
37
40
|
px: "3",
|
|
38
41
|
py: "2.5",
|
|
39
|
-
|
|
40
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.2)",
|
|
41
|
-
transition: "border-color 160ms ease, background 160ms ease",
|
|
42
|
+
transition: "border-color 160ms ease, background-color 160ms ease",
|
|
42
43
|
_hover: {
|
|
43
44
|
borderColor: "border.strong"
|
|
44
45
|
},
|
|
45
46
|
_placeholder: {
|
|
46
47
|
color: "text.muted"
|
|
47
48
|
},
|
|
49
|
+
_focusVisible: {
|
|
50
|
+
outline: "none",
|
|
51
|
+
borderColor: "border.accent",
|
|
52
|
+
boxShadow: "0 0 0 3px rgba(82, 121, 255, 0.18)"
|
|
53
|
+
},
|
|
48
54
|
_dark: {
|
|
49
|
-
|
|
55
|
+
borderColor: "border.strong"
|
|
50
56
|
}
|
|
51
|
-
}),
|
|
57
|
+
}), l = e({
|
|
52
58
|
width: "100%",
|
|
53
59
|
minHeight: "420px",
|
|
54
60
|
borderRadius: "2xl",
|
|
@@ -61,68 +67,84 @@ const l = e({
|
|
|
61
67
|
lineHeight: "1.6",
|
|
62
68
|
px: "4",
|
|
63
69
|
py: "4",
|
|
64
|
-
|
|
65
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.24), 0 18px 36px -32px rgba(15,23,42,0.42)",
|
|
70
|
+
transition: "border-color 160ms ease, background-color 160ms ease",
|
|
66
71
|
_hover: {
|
|
67
72
|
borderColor: "border.strong"
|
|
68
73
|
},
|
|
74
|
+
_focusVisible: {
|
|
75
|
+
outline: "none",
|
|
76
|
+
borderColor: "border.accent",
|
|
77
|
+
boxShadow: "0 0 0 3px rgba(82, 121, 255, 0.18)"
|
|
78
|
+
},
|
|
69
79
|
_dark: {
|
|
70
|
-
|
|
80
|
+
borderColor: "border.strong"
|
|
71
81
|
}
|
|
72
|
-
}),
|
|
82
|
+
}), b = e({
|
|
73
83
|
position: "relative",
|
|
74
84
|
minWidth: "0"
|
|
75
|
-
}),
|
|
85
|
+
}), g = e({
|
|
76
86
|
color: "text.error",
|
|
77
87
|
fontSize: "sm",
|
|
78
|
-
fontWeight: "600"
|
|
79
|
-
|
|
88
|
+
fontWeight: "600",
|
|
89
|
+
lineHeight: "1.5"
|
|
90
|
+
}), p = e({
|
|
80
91
|
color: "text.muted",
|
|
81
92
|
fontSize: "sm",
|
|
82
93
|
lineHeight: "1.6"
|
|
83
|
-
}),
|
|
94
|
+
}), c = e({
|
|
84
95
|
outline: "2px solid var(--colors-text-accent)",
|
|
85
96
|
outlineOffset: "2px"
|
|
86
|
-
}), m =
|
|
97
|
+
}), m = r({
|
|
87
98
|
base: {
|
|
88
99
|
minWidth: "0",
|
|
89
100
|
borderWidth: "1px",
|
|
90
|
-
transition: "
|
|
101
|
+
transition: "border-color 160ms cubic-bezier(0.25, 0.1, 0.25, 1), background-color 160ms cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 160ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 160ms cubic-bezier(0.25, 0.1, 0.25, 1)"
|
|
91
102
|
},
|
|
92
103
|
variants: {
|
|
93
104
|
variant: {
|
|
94
105
|
surface: {
|
|
95
106
|
position: "relative",
|
|
96
|
-
|
|
97
|
-
borderRadius: "3xl",
|
|
107
|
+
borderRadius: "xl",
|
|
98
108
|
borderColor: "border.subtle",
|
|
99
109
|
bg: "bg.card",
|
|
100
|
-
|
|
101
|
-
|
|
110
|
+
boxShadow: "0 1px 2px 0 rgba(15,23,42,0.04), 0 1px 3px 0 rgba(15,23,42,0.06)",
|
|
111
|
+
_dark: {
|
|
112
|
+
borderColor: "border.default",
|
|
113
|
+
boxShadow: "0 1px 2px 0 rgba(0,0,0,0.2), 0 1px 3px 0 rgba(0,0,0,0.24)"
|
|
114
|
+
}
|
|
102
115
|
},
|
|
103
116
|
inset: {
|
|
104
|
-
borderRadius: "
|
|
117
|
+
borderRadius: "lg",
|
|
105
118
|
borderColor: "border.soft",
|
|
106
119
|
bg: "bg.cardAlt",
|
|
107
|
-
|
|
108
|
-
|
|
120
|
+
_dark: {
|
|
121
|
+
borderColor: "border.subtle"
|
|
122
|
+
}
|
|
109
123
|
},
|
|
110
124
|
elevated: {
|
|
111
|
-
borderRadius: "
|
|
125
|
+
borderRadius: "lg",
|
|
112
126
|
borderColor: "border.default",
|
|
113
127
|
bg: "bg.cardStrong",
|
|
114
|
-
|
|
115
|
-
|
|
128
|
+
boxShadow: "0 1px 2px 0 rgba(15,23,42,0.04), 0 4px 12px -4px rgba(15,23,42,0.1)",
|
|
129
|
+
_dark: {
|
|
130
|
+
borderColor: "border.strong",
|
|
131
|
+
boxShadow: "0 1px 2px 0 rgba(0,0,0,0.24), 0 4px 12px -4px rgba(0,0,0,0.4)"
|
|
132
|
+
}
|
|
116
133
|
},
|
|
117
134
|
selectable: {
|
|
118
|
-
borderRadius: "
|
|
135
|
+
borderRadius: "lg",
|
|
119
136
|
borderColor: "border.default",
|
|
120
137
|
bg: "bg.cardAlt",
|
|
121
138
|
cursor: "pointer",
|
|
122
139
|
_hover: {
|
|
123
140
|
borderColor: "border.strong",
|
|
124
|
-
bg: "bg.card"
|
|
125
|
-
|
|
141
|
+
bg: "bg.card"
|
|
142
|
+
},
|
|
143
|
+
_dark: {
|
|
144
|
+
borderColor: "border.strong",
|
|
145
|
+
_hover: {
|
|
146
|
+
borderColor: "border.accent"
|
|
147
|
+
}
|
|
126
148
|
}
|
|
127
149
|
}
|
|
128
150
|
},
|
|
@@ -144,7 +166,7 @@ const l = e({
|
|
|
144
166
|
variant: "surface",
|
|
145
167
|
padding: "md"
|
|
146
168
|
}
|
|
147
|
-
}),
|
|
169
|
+
}), x = r({
|
|
148
170
|
base: {
|
|
149
171
|
display: "inline-flex",
|
|
150
172
|
alignItems: "center",
|
|
@@ -156,12 +178,7 @@ const l = e({
|
|
|
156
178
|
fontSize: "sm",
|
|
157
179
|
fontWeight: "600",
|
|
158
180
|
lineHeight: "1",
|
|
159
|
-
whiteSpace: "nowrap"
|
|
160
|
-
backdropFilter: "blur(16px) saturate(140%)",
|
|
161
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.16)",
|
|
162
|
-
_dark: {
|
|
163
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.04)"
|
|
164
|
-
}
|
|
181
|
+
whiteSpace: "nowrap"
|
|
165
182
|
},
|
|
166
183
|
variants: {
|
|
167
184
|
tone: {
|
|
@@ -184,6 +201,11 @@ const l = e({
|
|
|
184
201
|
borderColor: "badge.warningBorder",
|
|
185
202
|
bg: "badge.warningBg",
|
|
186
203
|
color: "badge.warningText"
|
|
204
|
+
},
|
|
205
|
+
danger: {
|
|
206
|
+
borderColor: "badge.dangerBorder",
|
|
207
|
+
bg: "badge.dangerBg",
|
|
208
|
+
color: "badge.dangerText"
|
|
187
209
|
}
|
|
188
210
|
},
|
|
189
211
|
size: {
|
|
@@ -195,7 +217,7 @@ const l = e({
|
|
|
195
217
|
tone: "neutral",
|
|
196
218
|
size: "md"
|
|
197
219
|
}
|
|
198
|
-
}), u =
|
|
220
|
+
}), u = r({
|
|
199
221
|
base: {
|
|
200
222
|
width: "100%",
|
|
201
223
|
borderWidth: "1px",
|
|
@@ -203,16 +225,23 @@ const l = e({
|
|
|
203
225
|
bg: "bg.input",
|
|
204
226
|
color: "text.primary",
|
|
205
227
|
fontSize: "sm",
|
|
206
|
-
|
|
207
|
-
transition: "border-color 160ms ease, background 160ms ease",
|
|
228
|
+
transition: "border-color 160ms cubic-bezier(0.25, 0.1, 0.25, 1), background-color 160ms cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 160ms cubic-bezier(0.25, 0.1, 0.25, 1)",
|
|
208
229
|
_placeholder: {
|
|
209
230
|
color: "text.muted"
|
|
210
231
|
},
|
|
211
232
|
_hover: {
|
|
212
233
|
borderColor: "border.strong"
|
|
213
234
|
},
|
|
235
|
+
_focusVisible: {
|
|
236
|
+
outline: "none",
|
|
237
|
+
borderColor: "border.accent",
|
|
238
|
+
boxShadow: "0 0 0 3px var(--colors-bg-accentSoft, rgba(49, 94, 255, 0.12))"
|
|
239
|
+
},
|
|
214
240
|
_dark: {
|
|
215
|
-
|
|
241
|
+
borderColor: "border.strong",
|
|
242
|
+
_focusVisible: {
|
|
243
|
+
boxShadow: "0 0 0 3px var(--colors-bg-accentSoft, rgba(138, 180, 255, 0.14))"
|
|
244
|
+
}
|
|
216
245
|
}
|
|
217
246
|
},
|
|
218
247
|
variants: {
|
|
@@ -222,16 +251,14 @@ const l = e({
|
|
|
222
251
|
borderRadius: "lg",
|
|
223
252
|
px: "3",
|
|
224
253
|
py: "2.5",
|
|
225
|
-
lineHeight: "1.45"
|
|
226
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.2)"
|
|
254
|
+
lineHeight: "1.45"
|
|
227
255
|
},
|
|
228
256
|
md: {
|
|
229
257
|
minHeight: "48px",
|
|
230
258
|
borderRadius: "xl",
|
|
231
259
|
px: "4",
|
|
232
260
|
py: "3",
|
|
233
|
-
lineHeight: "1.5"
|
|
234
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.24), 0 14px 28px -28px rgba(15,23,42,0.42)"
|
|
261
|
+
lineHeight: "1.5"
|
|
235
262
|
}
|
|
236
263
|
},
|
|
237
264
|
kind: {
|
|
@@ -242,8 +269,7 @@ const l = e({
|
|
|
242
269
|
px: "4",
|
|
243
270
|
py: "4",
|
|
244
271
|
lineHeight: "1.6",
|
|
245
|
-
fontFamily: "mono"
|
|
246
|
-
boxShadow: "inset 0 1px 0 rgba(255,255,255,0.24), 0 18px 36px -32px rgba(15,23,42,0.42)"
|
|
272
|
+
fontFamily: "mono"
|
|
247
273
|
}
|
|
248
274
|
}
|
|
249
275
|
},
|
|
@@ -251,7 +277,7 @@ const l = e({
|
|
|
251
277
|
size: "md",
|
|
252
278
|
kind: "input"
|
|
253
279
|
}
|
|
254
|
-
}), f =
|
|
280
|
+
}), f = r({
|
|
255
281
|
base: {
|
|
256
282
|
display: "grid",
|
|
257
283
|
alignContent: "start",
|
|
@@ -269,7 +295,7 @@ const l = e({
|
|
|
269
295
|
defaultVariants: {
|
|
270
296
|
gap: "md"
|
|
271
297
|
}
|
|
272
|
-
}),
|
|
298
|
+
}), C = r({
|
|
273
299
|
base: {
|
|
274
300
|
display: "flex",
|
|
275
301
|
flexWrap: "wrap",
|
|
@@ -293,7 +319,7 @@ const l = e({
|
|
|
293
319
|
gap: "sm",
|
|
294
320
|
justify: "start"
|
|
295
321
|
}
|
|
296
|
-
}),
|
|
322
|
+
}), h = r({
|
|
297
323
|
base: {
|
|
298
324
|
display: "grid",
|
|
299
325
|
gap: "4",
|
|
@@ -316,7 +342,7 @@ const l = e({
|
|
|
316
342
|
defaultVariants: {
|
|
317
343
|
ratio: "equal"
|
|
318
344
|
}
|
|
319
|
-
}), y =
|
|
345
|
+
}), y = r({
|
|
320
346
|
base: {
|
|
321
347
|
display: "grid",
|
|
322
348
|
gap: "4",
|
|
@@ -341,89 +367,89 @@ const l = e({
|
|
|
341
367
|
position: "relative",
|
|
342
368
|
minWidth: "0",
|
|
343
369
|
minHeight: "220px"
|
|
344
|
-
}),
|
|
345
|
-
|
|
370
|
+
}), v = o(
|
|
371
|
+
a,
|
|
346
372
|
e({
|
|
347
373
|
padding: "4",
|
|
348
374
|
display: "grid",
|
|
349
375
|
gap: "3"
|
|
350
376
|
})
|
|
351
|
-
),
|
|
352
|
-
|
|
377
|
+
), R = o(
|
|
378
|
+
a,
|
|
353
379
|
e({
|
|
354
380
|
minHeight: "220px",
|
|
355
381
|
padding: "4",
|
|
356
382
|
display: "grid",
|
|
357
383
|
gap: "3"
|
|
358
384
|
})
|
|
359
|
-
), s =
|
|
385
|
+
), s = o(
|
|
386
|
+
a,
|
|
360
387
|
t,
|
|
361
|
-
o,
|
|
362
388
|
e({
|
|
363
389
|
display: "grid",
|
|
364
390
|
gap: "2",
|
|
365
391
|
padding: "4",
|
|
366
392
|
lineHeight: "1.7"
|
|
367
393
|
})
|
|
368
|
-
),
|
|
394
|
+
), H = o(
|
|
369
395
|
s,
|
|
370
396
|
e({
|
|
371
397
|
alignContent: "center",
|
|
372
398
|
minHeight: "220px"
|
|
373
399
|
})
|
|
374
|
-
),
|
|
400
|
+
), _ = e({
|
|
375
401
|
display: "grid",
|
|
376
402
|
gap: "4",
|
|
377
403
|
gridTemplateColumns: { base: "1fr", xl: "minmax(18rem, 0.9fr) minmax(0, 1.4fr)" },
|
|
378
404
|
alignItems: "start"
|
|
379
|
-
}),
|
|
405
|
+
}), k = e({
|
|
380
406
|
display: "grid",
|
|
381
407
|
gap: "2",
|
|
382
408
|
alignContent: "start",
|
|
383
409
|
minWidth: "0"
|
|
384
|
-
}),
|
|
410
|
+
}), z = e({
|
|
385
411
|
display: "grid",
|
|
386
412
|
gap: "4",
|
|
387
413
|
minWidth: "0"
|
|
388
414
|
});
|
|
389
415
|
export {
|
|
390
416
|
w as actionToolbarClass,
|
|
391
|
-
|
|
392
|
-
|
|
417
|
+
x as badgeRecipe,
|
|
418
|
+
V as buttonRecipe,
|
|
393
419
|
m as cardRecipe,
|
|
394
|
-
|
|
395
|
-
|
|
420
|
+
H as centeredEmptyStatePanelClass,
|
|
421
|
+
C as clusterLayout,
|
|
396
422
|
B as codeBlockClass,
|
|
397
423
|
P as dropdownRecipe,
|
|
398
|
-
|
|
424
|
+
j as elevatedPanelClass,
|
|
399
425
|
s as emptyStatePanelClass,
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
426
|
+
g as errorTextClass,
|
|
427
|
+
I as eyebrowClass,
|
|
428
|
+
d as fieldControlClass,
|
|
403
429
|
n as fieldControlSmClass,
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
430
|
+
l as fieldTextareaClass,
|
|
431
|
+
c as focusRingClass,
|
|
432
|
+
t as helperTextClass,
|
|
433
|
+
v as infoPanelClass,
|
|
408
434
|
u as inputRecipe,
|
|
409
|
-
|
|
410
|
-
|
|
435
|
+
a as insetPanelClass,
|
|
436
|
+
b as loadingRegionClass,
|
|
411
437
|
y as metricGridPattern,
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
438
|
+
L as metricValueClass,
|
|
439
|
+
p as mutedTextClass,
|
|
440
|
+
q as pageHeaderActionsClass,
|
|
441
|
+
A as pageHeaderContentClass,
|
|
442
|
+
D as pageHeaderRootClass,
|
|
443
|
+
F as pageRootClass,
|
|
418
444
|
E as pageScrollRegionClass,
|
|
419
445
|
S as resultRegionClass,
|
|
420
|
-
|
|
446
|
+
R as resultSkeletonPanelClass,
|
|
421
447
|
G as sectionDescriptionClass,
|
|
422
448
|
O as sectionTitleClass,
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
449
|
+
z as selectableDetailClass,
|
|
450
|
+
k as selectableListClass,
|
|
451
|
+
_ as selectableListDetailRootClass,
|
|
452
|
+
h as splitLayout,
|
|
427
453
|
f as stackLayout,
|
|
428
|
-
|
|
454
|
+
J as surfacePanelClass
|
|
429
455
|
};
|