@aggc/ui 0.4.0 → 0.4.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.
Files changed (71) hide show
  1. package/dist/chunks/UiSkeleton.vue_vue_type_script_setup_true_lang-Lghyrtms.js +1201 -0
  2. package/dist/chunks/pageHeader-CcJrPX_8.js +522 -0
  3. package/dist/components/PageSurface.styles.d.ts +1 -0
  4. package/dist/components/PageSurface.vue.d.ts +13 -0
  5. package/dist/components/ResultPanel.styles.d.ts +64 -0
  6. package/dist/components/ResultPanel.vue.d.ts +16 -0
  7. package/dist/components/SectionCard.styles.d.ts +13 -0
  8. package/dist/components/SectionCard.vue.d.ts +27 -0
  9. package/dist/components/StatusBadge.styles.d.ts +24 -0
  10. package/dist/components/StatusBadge.vue.d.ts +18 -0
  11. package/dist/components/UiButton.styles.d.ts +54 -0
  12. package/dist/components/UiButton.vue.d.ts +28 -0
  13. package/dist/components/UiCheckbox.styles.d.ts +42 -0
  14. package/dist/components/UiCheckbox.vue.d.ts +37 -0
  15. package/dist/components/UiField.styles.d.ts +7 -0
  16. package/dist/components/UiField.vue.d.ts +22 -0
  17. package/dist/components/UiLoadingState.styles.d.ts +4 -0
  18. package/dist/components/UiLoadingState.vue.d.ts +10 -0
  19. package/dist/components/UiSegmentedControl.styles.d.ts +23 -0
  20. package/dist/components/UiSegmentedControl.vue.d.ts +14 -0
  21. package/dist/components/UiSelect.styles.d.ts +104 -0
  22. package/dist/components/UiSelect.vue.d.ts +35 -0
  23. package/dist/components/UiSkeleton.styles.d.ts +67 -0
  24. package/dist/components/UiSkeleton.vue.d.ts +12 -0
  25. package/dist/components/index.d.ts +11 -0
  26. package/dist/components.d.ts +1 -0
  27. package/dist/components.js +14 -0
  28. package/dist/css.d.ts +2 -0
  29. package/dist/css.js +1 -0
  30. package/dist/fonts.css +6 -0
  31. package/dist/index.d.ts +3 -0
  32. package/dist/index.js +65 -0
  33. package/dist/styles/index.d.ts +20 -0
  34. package/dist/styles/layouts/cluster.d.ts +27 -0
  35. package/dist/styles/layouts/page.d.ts +2 -0
  36. package/dist/styles/layouts/split.d.ts +22 -0
  37. package/dist/styles/layouts/stack.d.ts +19 -0
  38. package/dist/styles/patterns/actionToolbar.d.ts +1 -0
  39. package/dist/styles/patterns/emptyState.d.ts +2 -0
  40. package/dist/styles/patterns/infoPanel.d.ts +2 -0
  41. package/dist/styles/patterns/metricGrid.d.ts +22 -0
  42. package/dist/styles/patterns/pageHeader.d.ts +3 -0
  43. package/dist/styles/patterns/resultRegion.d.ts +1 -0
  44. package/dist/styles/patterns/selectableListDetail.d.ts +3 -0
  45. package/dist/styles/primitives/feedback.d.ts +4 -0
  46. package/dist/styles/primitives/fields.d.ts +3 -0
  47. package/dist/styles/primitives/surfaces.d.ts +3 -0
  48. package/dist/styles/primitives/typography.d.ts +6 -0
  49. package/dist/styles/recipes/badge.recipe.d.ts +32 -0
  50. package/dist/styles/recipes/button.recipe.d.ts +51 -0
  51. package/dist/styles/recipes/card.recipe.d.ts +59 -0
  52. package/dist/styles/recipes/dropdown.recipe.d.ts +25 -0
  53. package/dist/styles/recipes/input.recipe.d.ts +32 -0
  54. package/dist/styles.d.ts +1 -0
  55. package/dist/styles.js +429 -0
  56. package/dist/tokens/colors.d.ts +360 -0
  57. package/dist/tokens/core-colors.d.ts +238 -0
  58. package/dist/tokens/desktop-colors.d.ts +132 -0
  59. package/dist/tokens/index.d.ts +7 -0
  60. package/dist/tokens/motion.d.ts +10 -0
  61. package/dist/tokens/radius.d.ts +5 -0
  62. package/dist/tokens/spacing.d.ts +8 -0
  63. package/dist/tokens/typography.d.ts +10 -0
  64. package/dist/tokens-core.d.ts +5 -0
  65. package/dist/tokens-core.js +69 -0
  66. package/dist/tokens-desktop.d.ts +1 -0
  67. package/dist/tokens-desktop.js +30 -0
  68. package/dist/tokens.d.ts +1 -0
  69. package/dist/tokens.js +16 -0
  70. package/dist/ui.css +2026 -0
  71. package/package.json +1 -1
@@ -0,0 +1,24 @@
1
+ export declare const statusBadgeClass: import("../../styled-system/types").RecipeRuntimeFn<{
2
+ tone: {
3
+ success: {
4
+ bg: "badge.successBg";
5
+ color: "badge.successText";
6
+ borderColor: "badge.successBorder";
7
+ };
8
+ warning: {
9
+ bg: "badge.warningBg";
10
+ color: "badge.warningText";
11
+ borderColor: "badge.warningBorder";
12
+ };
13
+ info: {
14
+ bg: "badge.infoBg";
15
+ color: "badge.infoText";
16
+ borderColor: "badge.infoBorder";
17
+ };
18
+ neutral: {
19
+ bg: "badge.neutralBg";
20
+ color: "badge.neutralText";
21
+ borderColor: "badge.neutralBorder";
22
+ };
23
+ };
24
+ }>;
@@ -0,0 +1,18 @@
1
+ type __VLS_Props = {
2
+ tone?: "success" | "warning" | "info" | "neutral";
3
+ };
4
+ declare var __VLS_1: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
9
+ tone: "success" | "warning" | "info" | "neutral";
10
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,54 @@
1
+ export declare const uiButtonClass: import("../../styled-system/types").RecipeRuntimeFn<{
2
+ variant: {
3
+ solid: {
4
+ bg: "linear-gradient(135deg, rgba(31,67,182,0.96) 0%, rgba(49,94,255,0.92) 100%)";
5
+ color: "text.inverse";
6
+ borderWidth: "1px";
7
+ borderColor: "rgba(255,255,255,0.18)";
8
+ boxShadow: "0 22px 36px -24px rgba(49,94,255,0.78), inset 0 1px 0 rgba(255,255,255,0.24)";
9
+ _dark: {
10
+ color: "#f7f9fd";
11
+ borderColor: "rgba(255,255,255,0.06)";
12
+ boxShadow: "0 22px 40px -24px rgba(71,121,255,0.55), inset 0 1px 0 rgba(255,255,255,0.18)";
13
+ };
14
+ };
15
+ outline: {
16
+ bg: "bg.buttonOutline";
17
+ color: "text.secondary";
18
+ borderWidth: "1px";
19
+ borderColor: "border.default";
20
+ boxShadow: "inset 0 1px 0 rgba(255,255,255,0.18)";
21
+ _dark: {
22
+ boxShadow: "inset 0 1px 0 rgba(255,255,255,0.04)";
23
+ };
24
+ };
25
+ subtle: {
26
+ bg: "bg.accentSoft";
27
+ color: "text.accent";
28
+ borderWidth: "1px";
29
+ borderColor: "badge.infoBorder";
30
+ boxShadow: "inset 0 1px 0 rgba(255,255,255,0.22)";
31
+ _dark: {
32
+ boxShadow: "inset 0 1px 0 rgba(255,255,255,0.04)";
33
+ };
34
+ };
35
+ };
36
+ disabled: {
37
+ true: {
38
+ cursor: "not-allowed";
39
+ opacity: number;
40
+ };
41
+ false: {
42
+ cursor: "pointer";
43
+ };
44
+ };
45
+ loading: {
46
+ true: {
47
+ cursor: "not-allowed";
48
+ opacity: number;
49
+ };
50
+ };
51
+ }>;
52
+ export declare const uiButtonContentClass: string;
53
+ export declare const uiButtonHiddenContentClass: string;
54
+ export declare const uiButtonBusyContentClass: string;
@@ -0,0 +1,28 @@
1
+ type __VLS_Props = {
2
+ variant?: "solid" | "outline" | "subtle";
3
+ loading?: boolean;
4
+ loadingLabel?: string;
5
+ disabled?: boolean;
6
+ type?: "button" | "submit";
7
+ ariaLabel?: string;
8
+ };
9
+ declare var __VLS_1: {};
10
+ type __VLS_Slots = {} & {
11
+ default?: (props: typeof __VLS_1) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
+ variant: "solid" | "outline" | "subtle";
15
+ disabled: boolean;
16
+ loading: boolean;
17
+ type: "button" | "submit";
18
+ loadingLabel: string;
19
+ ariaLabel: string;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
22
+ declare const _default: typeof __VLS_export;
23
+ export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
@@ -0,0 +1,42 @@
1
+ export declare const uiCheckboxRootClass: import("../../styled-system/types").RecipeRuntimeFn<{
2
+ checked: {
3
+ true: {
4
+ borderColor: "border.accent";
5
+ bg: "bg.selected";
6
+ boxShadow: "0 18px 40px -30px rgba(49,94,255,0.56)";
7
+ };
8
+ false: {
9
+ borderColor: "border.default";
10
+ bg: "bg.input";
11
+ boxShadow: "0 14px 32px -30px rgba(15,23,42,0.42)";
12
+ };
13
+ };
14
+ disabled: {
15
+ true: {
16
+ cursor: "not-allowed";
17
+ opacity: number;
18
+ };
19
+ false: {
20
+ cursor: "pointer";
21
+ };
22
+ };
23
+ }>;
24
+ export declare const uiCheckboxIndicatorClass: import("../../styled-system/types").RecipeRuntimeFn<{
25
+ checked: {
26
+ true: {
27
+ borderColor: "border.accent";
28
+ bg: "bg.accentStrong";
29
+ color: "text.inverse";
30
+ boxShadow: "0 12px 24px -16px rgba(49,94,255,0.7)";
31
+ };
32
+ false: {
33
+ borderColor: "border.default";
34
+ bg: "bg.buttonOutline";
35
+ color: "transparent";
36
+ boxShadow: "inset 0 1px 0 rgba(255,255,255,0.32)";
37
+ };
38
+ };
39
+ }>;
40
+ export declare const uiCheckboxContentClass: string;
41
+ export declare const uiCheckboxLabelClass: string;
42
+ export declare const uiCheckboxDescriptionClass: string;
@@ -0,0 +1,37 @@
1
+ type __VLS_Props = {
2
+ modelValue: boolean;
3
+ id?: string;
4
+ name?: string;
5
+ label?: string;
6
+ description?: string;
7
+ disabled?: boolean;
8
+ invalid?: boolean;
9
+ ariaDescribedby?: string;
10
+ };
11
+ declare var __VLS_6: {}, __VLS_8: {};
12
+ type __VLS_Slots = {} & {
13
+ default?: (props: typeof __VLS_6) => any;
14
+ } & {
15
+ description?: (props: typeof __VLS_8) => any;
16
+ };
17
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ "update:modelValue": (args_0: boolean) => any;
19
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
20
+ "onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
21
+ }>, {
22
+ disabled: boolean;
23
+ description: string;
24
+ label: string;
25
+ id: string;
26
+ name: string;
27
+ invalid: boolean;
28
+ ariaDescribedby: string;
29
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
30
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
31
+ declare const _default: typeof __VLS_export;
32
+ export default _default;
33
+ type __VLS_WithSlots<T, S> = T & {
34
+ new (): {
35
+ $slots: S;
36
+ };
37
+ };
@@ -0,0 +1,7 @@
1
+ export declare const uiFieldRootClass: string;
2
+ export declare const uiFieldTopRowClass: string;
3
+ export declare const uiFieldLabelWrapClass: string;
4
+ export declare const uiFieldEyebrowClass: string;
5
+ export declare const uiFieldLabelClass: string;
6
+ export declare const uiFieldHintClass: string;
7
+ export declare const uiFieldMetaClass: string;
@@ -0,0 +1,22 @@
1
+ type __VLS_Props = {
2
+ id?: string;
3
+ forId?: string;
4
+ label?: string;
5
+ hint?: string;
6
+ eyebrow?: string;
7
+ };
8
+ declare var __VLS_1: {}, __VLS_3: {};
9
+ type __VLS_Slots = {} & {
10
+ meta?: (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<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
18
+ type __VLS_WithSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,4 @@
1
+ export declare const uiLoadingStateRootClass: string;
2
+ export declare const uiLoadingStatePulseClass: string;
3
+ export declare const uiLoadingStateContentClass: string;
4
+ export declare const uiLoadingStateTitleClass: string;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ title: string;
3
+ description: string;
4
+ live?: "polite" | "assertive" | "off";
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ live: "polite" | "assertive" | "off";
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,23 @@
1
+ export declare const segmentedControlContainerClass: string;
2
+ export declare const segmentedControlOptionClass: import("../../styled-system/types").RecipeRuntimeFn<{
3
+ active: {
4
+ true: {
5
+ borderColor: "border.accent";
6
+ bg: "bg.accentStrong";
7
+ color: "text.inverse";
8
+ boxShadow: "0 14px 26px -16px rgba(49,94,255,0.68)";
9
+ _hover: {
10
+ bg: "bg.accentStrong";
11
+ };
12
+ };
13
+ false: {
14
+ borderColor: "transparent";
15
+ bg: "transparent";
16
+ color: "text.secondary";
17
+ boxShadow: "none";
18
+ _hover: {
19
+ bg: "bg.hover";
20
+ };
21
+ };
22
+ };
23
+ }>;
@@ -0,0 +1,14 @@
1
+ type __VLS_Props = {
2
+ modelValue: string;
3
+ options: {
4
+ label: string;
5
+ value: string;
6
+ }[];
7
+ };
8
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ "update:modelValue": (args_0: string) => any;
10
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
11
+ "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const _default: typeof __VLS_export;
14
+ export default _default;
@@ -0,0 +1,104 @@
1
+ export declare const uiSelectRootClass: import("../../styled-system/types").RecipeRuntimeFn<{
2
+ open: {
3
+ true: {
4
+ zIndex: "30";
5
+ };
6
+ false: {
7
+ zIndex: "1";
8
+ };
9
+ };
10
+ }>;
11
+ export declare const uiSelectTriggerClass: import("../../styled-system/types").RecipeRuntimeFn<{
12
+ size: {
13
+ sm: {
14
+ minHeight: "40px";
15
+ borderRadius: "lg";
16
+ px: "3";
17
+ py: "2.5";
18
+ };
19
+ md: {
20
+ minHeight: "48px";
21
+ borderRadius: "xl";
22
+ px: "4";
23
+ py: "3";
24
+ };
25
+ };
26
+ open: {
27
+ true: {
28
+ borderColor: "border.accent";
29
+ bg: "bg.cardStrong";
30
+ boxShadow: "0 18px 42px -28px rgba(49,94,255,0.42)";
31
+ };
32
+ false: {
33
+ borderColor: "border.default";
34
+ bg: "bg.input";
35
+ boxShadow: "inset 0 1px 0 rgba(255,255,255,0.22)";
36
+ };
37
+ };
38
+ selected: {
39
+ true: {
40
+ color: "text.primary";
41
+ };
42
+ false: {
43
+ color: "text.muted";
44
+ };
45
+ };
46
+ disabled: {
47
+ true: {
48
+ cursor: "not-allowed";
49
+ opacity: number;
50
+ };
51
+ false: {
52
+ cursor: "pointer";
53
+ };
54
+ };
55
+ }>;
56
+ export declare const uiSelectMenuClass: string;
57
+ export declare const uiSelectMenuClassExtra: string;
58
+ export declare const uiSelectValueWrapClass: string;
59
+ export declare const uiSelectValueTextClass: string;
60
+ export declare const uiSelectChevronClass: import("../../styled-system/types").RecipeRuntimeFn<{
61
+ open: {
62
+ true: {
63
+ transform: "rotate(180deg)";
64
+ };
65
+ false: {
66
+ transform: "rotate(0deg)";
67
+ };
68
+ };
69
+ }>;
70
+ export declare const uiSelectOptionClass: import("../../styled-system/types").RecipeRuntimeFn<{
71
+ size: {
72
+ sm: {
73
+ py: "2.5";
74
+ };
75
+ md: {
76
+ py: "3";
77
+ };
78
+ };
79
+ active: {
80
+ true: {
81
+ color: "text.primary";
82
+ bg: "bg.selected";
83
+ borderColor: "border.accent";
84
+ };
85
+ false: {
86
+ color: "text.secondary";
87
+ bg: "transparent";
88
+ borderColor: "transparent";
89
+ };
90
+ };
91
+ }>;
92
+ export declare const uiSelectOptionContentClass: string;
93
+ export declare const uiSelectOptionLabelClass: string;
94
+ export declare const uiSelectOptionDescriptionClass: string;
95
+ export declare const uiSelectCheckClass: import("../../styled-system/types").RecipeRuntimeFn<{
96
+ selected: {
97
+ true: {
98
+ opacity: number;
99
+ };
100
+ false: {
101
+ opacity: number;
102
+ };
103
+ };
104
+ }>;
@@ -0,0 +1,35 @@
1
+ type UiSelectOption = {
2
+ label: string;
3
+ value: string;
4
+ description?: string;
5
+ };
6
+ type __VLS_Props = {
7
+ modelValue: string;
8
+ options: UiSelectOption[];
9
+ id?: string;
10
+ name?: string;
11
+ placeholder?: string;
12
+ disabled?: boolean;
13
+ invalid?: boolean;
14
+ size?: "sm" | "md";
15
+ ariaLabel?: string;
16
+ ariaLabelledby?: string;
17
+ ariaDescribedby?: string;
18
+ };
19
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
+ "update:modelValue": (args_0: string) => any;
21
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
22
+ "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
23
+ }>, {
24
+ size: "sm" | "md";
25
+ disabled: boolean;
26
+ id: string;
27
+ name: string;
28
+ ariaLabel: string;
29
+ invalid: boolean;
30
+ ariaDescribedby: string;
31
+ placeholder: string;
32
+ ariaLabelledby: string;
33
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
34
+ declare const _default: typeof __VLS_export;
35
+ export default _default;
@@ -0,0 +1,67 @@
1
+ export declare const skeletonClass: import("../../styled-system/types").RecipeRuntimeFn<{
2
+ variant: {
3
+ text: {
4
+ width: "100%";
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
+ };
12
+ title: {
13
+ width: "100%";
14
+ height: "1.75rem";
15
+ borderRadius: "xl";
16
+ bg: "rgba(127, 146, 184, 0.14)";
17
+ _dark: {
18
+ bg: "rgba(210, 220, 240, 0.09)";
19
+ };
20
+ };
21
+ rect: {
22
+ width: "100%";
23
+ 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
+ };
30
+ pill: {
31
+ width: "5rem";
32
+ height: "1.75rem";
33
+ borderRadius: "999px";
34
+ bg: "rgba(127, 146, 184, 0.14)";
35
+ _dark: {
36
+ bg: "rgba(210, 220, 240, 0.09)";
37
+ };
38
+ };
39
+ circle: {
40
+ width: "2.75rem";
41
+ height: "2.75rem";
42
+ borderRadius: "999px";
43
+ bg: "rgba(127, 146, 184, 0.14)";
44
+ _dark: {
45
+ bg: "rgba(210, 220, 240, 0.09)";
46
+ };
47
+ };
48
+ stat: {
49
+ width: "100%";
50
+ 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
+ };
57
+ action: {
58
+ width: "100%";
59
+ 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
+ };
66
+ };
67
+ }>;
@@ -0,0 +1,12 @@
1
+ type __VLS_Props = {
2
+ variant?: "text" | "title" | "rect" | "pill" | "circle" | "stat" | "action";
3
+ width?: string;
4
+ height?: string;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ height: string;
8
+ width: string;
9
+ variant: "text" | "title" | "rect" | "pill" | "circle" | "stat" | "action";
10
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
@@ -0,0 +1,11 @@
1
+ export { default as PageSurface } from "./PageSurface.vue";
2
+ export { default as ResultPanel } from "./ResultPanel.vue";
3
+ export { default as SectionCard } from "./SectionCard.vue";
4
+ export { default as StatusBadge } from "./StatusBadge.vue";
5
+ export { default as UiButton } from "./UiButton.vue";
6
+ export { default as UiCheckbox } from "./UiCheckbox.vue";
7
+ export { default as UiField } from "./UiField.vue";
8
+ export { default as UiLoadingState } from "./UiLoadingState.vue";
9
+ export { default as UiSegmentedControl } from "./UiSegmentedControl.vue";
10
+ export { default as UiSelect } from "./UiSelect.vue";
11
+ export { default as UiSkeleton } from "./UiSkeleton.vue";
@@ -0,0 +1 @@
1
+ export * from "./components/index";
@@ -0,0 +1,14 @@
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-Lghyrtms.js";
2
+ export {
3
+ s as PageSurface,
4
+ t as ResultPanel,
5
+ i as SectionCard,
6
+ o as StatusBadge,
7
+ n as UiButton,
8
+ S as UiCheckbox,
9
+ U as UiField,
10
+ d as UiLoadingState,
11
+ l as UiSegmentedControl,
12
+ c as UiSelect,
13
+ g as UiSkeleton
14
+ };
package/dist/css.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ // CSS side-effect entrypoint for @aggc/ui
2
+ export {};
package/dist/css.js ADDED
@@ -0,0 +1 @@
1
+ import "./ui.css";
package/dist/fonts.css ADDED
@@ -0,0 +1,6 @@
1
+ @import "@fontsource/ibm-plex-sans/400.css";
2
+ @import "@fontsource/ibm-plex-sans/500.css";
3
+ @import "@fontsource/ibm-plex-sans/600.css";
4
+ @import "@fontsource/ibm-plex-sans/700.css";
5
+ @import "@fontsource/space-grotesk/500.css";
6
+ @import "@fontsource/space-grotesk/700.css";
@@ -0,0 +1,3 @@
1
+ export * from "./components/index";
2
+ export * from "./styles/index";
3
+ export * from "./tokens/index";
package/dist/index.js ADDED
@@ -0,0 +1,65 @@
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-Lghyrtms.js";
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-CcJrPX_8.js";
4
+ import { colorTokens as es } from "./tokens.js";
5
+ import { coreColorTokens as ls, motionTokens as os, radiusTokens as ts, spacingTokens as is, typographyTokens as ns } from "./tokens-core.js";
6
+ import { desktopColorTokens as Cs } from "./tokens-desktop.js";
7
+ export {
8
+ a as PageSurface,
9
+ l as ResultPanel,
10
+ o as SectionCard,
11
+ t as StatusBadge,
12
+ i as UiButton,
13
+ n as UiCheckbox,
14
+ r as UiField,
15
+ C as UiLoadingState,
16
+ c as UiSegmentedControl,
17
+ p as UiSelect,
18
+ d as UiSkeleton,
19
+ u as actionToolbarClass,
20
+ f as badgeRecipe,
21
+ V as buttonRecipe,
22
+ m as cardRecipe,
23
+ k as centeredEmptyStatePanelClass,
24
+ R as clusterLayout,
25
+ _ as codeBlockClass,
26
+ es as colorTokens,
27
+ ls as coreColorTokens,
28
+ Cs as desktopColorTokens,
29
+ q as dropdownRecipe,
30
+ z as elevatedPanelClass,
31
+ T as emptyStatePanelClass,
32
+ S as errorTextClass,
33
+ I as eyebrowClass,
34
+ x as fieldControlClass,
35
+ b as fieldControlSmClass,
36
+ P as fieldTextareaClass,
37
+ y as focusRingClass,
38
+ J as helperTextClass,
39
+ U as infoPanelClass,
40
+ L as inputRecipe,
41
+ K as insetPanelClass,
42
+ h as loadingRegionClass,
43
+ B as metricGridPattern,
44
+ M as metricValueClass,
45
+ os as motionTokens,
46
+ D as mutedTextClass,
47
+ N as pageHeaderActionsClass,
48
+ O as pageHeaderContentClass,
49
+ Q as pageHeaderRootClass,
50
+ W as pageRootClass,
51
+ X as pageScrollRegionClass,
52
+ ts as radiusTokens,
53
+ H as resultRegionClass,
54
+ j as resultSkeletonPanelClass,
55
+ Y as sectionDescriptionClass,
56
+ Z as sectionTitleClass,
57
+ w as selectableDetailClass,
58
+ v as selectableListClass,
59
+ A as selectableListDetailRootClass,
60
+ is as spacingTokens,
61
+ E as splitLayout,
62
+ F as stackLayout,
63
+ $ as surfacePanelClass,
64
+ ns as typographyTokens
65
+ };
@@ -0,0 +1,20 @@
1
+ export * from "./primitives/surfaces";
2
+ export * from "./primitives/typography";
3
+ export * from "./primitives/fields";
4
+ export * from "./primitives/feedback";
5
+ export * from "./recipes/card.recipe";
6
+ export * from "./recipes/button.recipe";
7
+ export * from "./recipes/badge.recipe";
8
+ export * from "./recipes/input.recipe";
9
+ export * from "./recipes/dropdown.recipe";
10
+ export * from "./layouts/page";
11
+ export * from "./layouts/stack";
12
+ export * from "./layouts/cluster";
13
+ export * from "./layouts/split";
14
+ export * from "./patterns/pageHeader";
15
+ export * from "./patterns/metricGrid";
16
+ export * from "./patterns/actionToolbar";
17
+ export * from "./patterns/resultRegion";
18
+ export * from "./patterns/infoPanel";
19
+ export * from "./patterns/emptyState";
20
+ export * from "./patterns/selectableListDetail";