@aggc/ui 0.7.1 → 0.9.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.
Files changed (48) hide show
  1. package/dist/chunks/DataTable-CIiU5Jx3.js +8688 -0
  2. package/dist/components/DataTable.styles.d.ts +48 -0
  3. package/dist/components/DataTable.types.d.ts +38 -0
  4. package/dist/components/DataTable.vue.d.ts +72 -0
  5. package/dist/components/UiAvatar.styles.d.ts +53 -0
  6. package/dist/components/UiAvatar.vue.d.ts +13 -0
  7. package/dist/components/UiModal.styles.d.ts +31 -0
  8. package/dist/components/UiModal.vue.d.ts +30 -0
  9. package/dist/components/UiToast.styles.d.ts +41 -0
  10. package/dist/components/UiToast.vue.d.ts +13 -0
  11. package/dist/components/UiToastProvider.vue.d.ts +13 -0
  12. package/dist/components/UiTooltip.styles.d.ts +1 -0
  13. package/dist/components/UiTooltip.vue.d.ts +25 -0
  14. package/dist/components/index.d.ts +11 -0
  15. package/dist/components.js +30 -12
  16. package/dist/composables/useToast.d.ts +27 -0
  17. package/dist/index.d.ts +1 -0
  18. package/dist/index.js +82 -63
  19. package/dist/ui.css +995 -294
  20. package/package.json +3 -2
  21. package/src/components/DataTable.styles.ts +493 -0
  22. package/src/components/DataTable.test.ts +249 -0
  23. package/src/components/DataTable.types.ts +42 -0
  24. package/src/components/DataTable.vue +567 -0
  25. package/src/components/UiAvatar.styles.ts +81 -0
  26. package/src/components/UiAvatar.test.ts +43 -0
  27. package/src/components/UiAvatar.vue +41 -0
  28. package/src/components/UiModal.styles.ts +143 -0
  29. package/src/components/UiModal.test.ts +64 -0
  30. package/src/components/UiModal.vue +82 -0
  31. package/src/components/UiToast.styles.ts +143 -0
  32. package/src/components/UiToast.test.ts +47 -0
  33. package/src/components/UiToast.vue +65 -0
  34. package/src/components/UiToastProvider.vue +22 -0
  35. package/src/components/UiTooltip.styles.ts +25 -0
  36. package/src/components/UiTooltip.test.ts +37 -0
  37. package/src/components/UiTooltip.vue +37 -0
  38. package/src/components/index.ts +17 -0
  39. package/src/composables/useToast.ts +43 -0
  40. package/src/css/base.css +61 -1
  41. package/src/index.ts +1 -0
  42. package/src/stories/feedback/UiToast.stories.ts +72 -0
  43. package/src/stories/layout/DataTable.stories.ts +141 -0
  44. package/src/stories/layout/UiModal.stories.ts +89 -0
  45. package/src/stories/primitives/UiAvatar.stories.ts +83 -0
  46. package/src/stories/primitives/UiTooltip.stories.ts +46 -0
  47. package/src/stories/support/sources.ts +81 -0
  48. package/dist/chunks/UiSkeleton.vue_vue_type_script_setup_true_lang-DUse1KRc.js +0 -1201
@@ -0,0 +1,48 @@
1
+ export declare const toolbar: string;
2
+ export declare const searchWrap: string;
3
+ export declare const searchIcon: string;
4
+ export declare const searchInput: string;
5
+ export declare const searchClear: string;
6
+ export declare const searchClearIcon: string;
7
+ export declare const bulkBar: string;
8
+ export declare const bulkCount: string;
9
+ export declare const table: string;
10
+ export declare const tableHead: string;
11
+ export declare const tableBody: string;
12
+ export declare const tableRow: string;
13
+ export declare const headerCell: string;
14
+ export declare const headerLabel: string;
15
+ export declare const sortBtn: string;
16
+ export declare const sortIcon: string;
17
+ export declare const sortIconActive: string;
18
+ export declare const dataCell: string;
19
+ export declare const actionsCell: string;
20
+ export declare const hideMobileCell: string;
21
+ export declare const checkCell: string;
22
+ export declare const nativeCheckbox: string;
23
+ export declare const checkIcon: string;
24
+ export declare const menuBtn: string;
25
+ export declare const menuBtnIcon: string;
26
+ export declare const actionMenu: string;
27
+ export declare const menuItem: string;
28
+ export declare const menuItemDanger: string;
29
+ export declare const menuSeparator: string;
30
+ export declare const mobileList: string;
31
+ export declare const mobileCard: string;
32
+ export declare const mobileCardSelected: string;
33
+ export declare const filteredEmpty: string;
34
+ export declare const filteredEmptyIcon: string;
35
+ export declare const filteredEmptyTitle: string;
36
+ export declare const filteredEmptyDesc: string;
37
+ export declare const clearSearchBtn: string;
38
+ export declare const listFooter: string;
39
+ export declare const footerCount: string;
40
+ export declare const pageBtn: string;
41
+ export declare const pageInfo: string;
42
+ export declare const mobileToolbar: string;
43
+ export declare const mobileSearchRow: string;
44
+ export declare const mobileActionsRow: string;
45
+ export declare const mobileSelectAll: string;
46
+ export declare const mobileBulkActions: string;
47
+ export declare const deselectBtn: string;
48
+ export declare const deselectIcon: string;
@@ -0,0 +1,38 @@
1
+ export interface DataTableColumn {
2
+ key: string;
3
+ label: string;
4
+ width: string;
5
+ hideMobile?: boolean;
6
+ /** Enable client-side sorting on this column's header. */
7
+ sortable?: boolean;
8
+ }
9
+ export type DataTableSortDir = "asc" | "desc";
10
+ export interface DataTableSortState {
11
+ key: string;
12
+ dir: DataTableSortDir;
13
+ }
14
+ /** Where sorting happens. "client" sorts in-component; "server" only emits. */
15
+ export type DataTableSortMode = "client" | "server";
16
+ /**
17
+ * All user-visible strings. Override any subset via the `labels` prop for i18n.
18
+ * Placeholders: {count}, {term}, {shown}, {total}, {page}, {pages}.
19
+ */
20
+ export interface DataTableLabels {
21
+ search: string;
22
+ searchPlaceholder: string;
23
+ clearSearch: string;
24
+ selectAll: string;
25
+ deselectAll: string;
26
+ select: string;
27
+ deselect: string;
28
+ selectRow: string;
29
+ actions: string;
30
+ selected: string;
31
+ noResultsTitle: string;
32
+ noResultsDesc: string;
33
+ clearSearchBtn: string;
34
+ footerCount: string;
35
+ previousPage: string;
36
+ nextPage: string;
37
+ pageOf: string;
38
+ }
@@ -0,0 +1,72 @@
1
+ import type { DataTableColumn, DataTableLabels, DataTableSortState } from "./DataTable.types";
2
+ declare const __VLS_export: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3
+ props: import("vue").PublicProps & __VLS_PrettifyLocal<{
4
+ items: T[];
5
+ columns: DataTableColumn[];
6
+ isLoading?: boolean;
7
+ searchable?: boolean;
8
+ searchPlaceholder?: string;
9
+ searchFields?: string[];
10
+ itemIdKey?: string;
11
+ /** Show the selection column + bulk actions. Set false for display-only tables. */
12
+ selectable?: boolean;
13
+ /** Override the scrollable body max-height (any CSS length, or "none"). */
14
+ bodyMaxHeight?: string;
15
+ /** Override user-visible strings for i18n. */
16
+ labels?: Partial<DataTableLabels>;
17
+ /** Where sorting runs. "client" sorts in-place; "server" only emits. */
18
+ sortMode?: "client" | "server";
19
+ /** Controlled sort state (use with v-model:sort). */
20
+ sort?: DataTableSortState | null;
21
+ /** Page size for client-side pagination. Omit to disable. */
22
+ pageSize?: number;
23
+ /** Controlled current page (use with v-model:page). */
24
+ page?: number;
25
+ } & {
26
+ "onUpdate:selected"?: ((args_0: string[]) => any) | undefined;
27
+ "onUpdate:sort"?: ((args_0: DataTableSortState | null) => any) | undefined;
28
+ "onUpdate:page"?: ((args_0: number) => any) | undefined;
29
+ }> & (typeof globalThis extends {
30
+ __VLS_PROPS_FALLBACK: infer P;
31
+ } ? P : {});
32
+ expose: (exposed: {}) => void;
33
+ attrs: any;
34
+ slots: {
35
+ [x: `header-${string}`]: ((props: {}) => any) | undefined;
36
+ } & {
37
+ [x: `cell-${string}`]: ((props: {
38
+ item: T;
39
+ }) => any) | undefined;
40
+ } & {
41
+ 'bulk-actions'?: (props: {
42
+ selected: string[];
43
+ selectedItems: T[];
44
+ }) => any;
45
+ } & {
46
+ 'bulk-actions'?: (props: {
47
+ selected: string[];
48
+ selectedItems: T[];
49
+ }) => any;
50
+ } & {
51
+ actions?: (props: {
52
+ item: T;
53
+ }) => any;
54
+ } & {
55
+ 'mobile-card'?: (props: {
56
+ item: T;
57
+ selected: boolean;
58
+ toggleSelect: () => void;
59
+ selectMode: boolean;
60
+ }) => any;
61
+ };
62
+ emit: ((evt: "update:selected", args_0: string[]) => void) & ((evt: "update:sort", args_0: DataTableSortState | null) => void) & ((evt: "update:page", args_0: number) => void);
63
+ }>) => import("vue").VNode & {
64
+ __ctx?: Awaited<typeof __VLS_setup>;
65
+ };
66
+ declare const _default: typeof __VLS_export;
67
+ export default _default;
68
+ type __VLS_PrettifyLocal<T> = (T extends any ? {
69
+ [K in keyof T]: T[K];
70
+ } : {
71
+ [K in keyof T as K]: T[K];
72
+ }) & {};
@@ -0,0 +1,53 @@
1
+ export declare const uiAvatarRootClass: import("../../styled-system/types").RecipeRuntimeFn<{
2
+ size: {
3
+ sm: {
4
+ w: "8";
5
+ h: "8";
6
+ };
7
+ md: {
8
+ w: "10";
9
+ h: "10";
10
+ };
11
+ lg: {
12
+ w: "12";
13
+ h: "12";
14
+ };
15
+ xl: {
16
+ w: "14";
17
+ h: "14";
18
+ };
19
+ };
20
+ shape: {
21
+ circle: {
22
+ borderRadius: "full";
23
+ };
24
+ square: {
25
+ borderRadius: "lg";
26
+ };
27
+ };
28
+ }>;
29
+ export declare const uiAvatarImageClass: string;
30
+ export declare const uiAvatarFallbackClass: import("../../styled-system/types").RecipeRuntimeFn<{
31
+ size: {
32
+ sm: {
33
+ fontSize: "xs";
34
+ };
35
+ md: {
36
+ fontSize: "sm";
37
+ };
38
+ lg: {
39
+ fontSize: "md";
40
+ };
41
+ xl: {
42
+ fontSize: "lg";
43
+ };
44
+ };
45
+ }>;
46
+ export declare const uiAvatarIconFallbackClass: import("../../styled-system/types").RecipeRuntimeFn<{
47
+ size: {
48
+ sm: {};
49
+ md: {};
50
+ lg: {};
51
+ xl: {};
52
+ };
53
+ }>;
@@ -0,0 +1,13 @@
1
+ type __VLS_Props = {
2
+ name: string;
3
+ src?: string;
4
+ size?: "sm" | "md" | "lg" | "xl";
5
+ shape?: "circle" | "square";
6
+ };
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
8
+ size: "sm" | "md" | "lg" | "xl";
9
+ shape: "circle" | "square";
10
+ src: string;
11
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,31 @@
1
+ export declare const uiModalOverlayClass: string;
2
+ export declare const uiModalWrapperClass: string;
3
+ export declare const uiModalContentClass: import("../../styled-system/types").RecipeRuntimeFn<{
4
+ size: {
5
+ sm: {
6
+ w: {
7
+ base: "full";
8
+ sm: "380px";
9
+ };
10
+ };
11
+ md: {
12
+ w: {
13
+ base: "full";
14
+ sm: "480px";
15
+ };
16
+ };
17
+ lg: {
18
+ w: {
19
+ base: "full";
20
+ sm: "640px";
21
+ };
22
+ };
23
+ };
24
+ }>;
25
+ export declare const uiModalHeaderClass: string;
26
+ export declare const uiModalHeaderContentClass: string;
27
+ export declare const uiModalTitleClass: string;
28
+ export declare const uiModalDescriptionClass: string;
29
+ export declare const uiModalCloseClass: string;
30
+ export declare const uiModalBodyClass: string;
31
+ export declare const uiModalActionsClass: string;
@@ -0,0 +1,30 @@
1
+ type __VLS_Props = {
2
+ open: boolean;
3
+ size?: "sm" | "md" | "lg";
4
+ title: string;
5
+ description?: string;
6
+ };
7
+ declare var __VLS_62: {}, __VLS_64: {};
8
+ type __VLS_Slots = {} & {
9
+ default?: (props: typeof __VLS_62) => any;
10
+ } & {
11
+ actions?: (props: typeof __VLS_64) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "update:open": (value: boolean) => any;
15
+ close: () => any;
16
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
17
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
18
+ onClose?: (() => any) | undefined;
19
+ }>, {
20
+ size: "sm" | "md" | "lg";
21
+ description: string;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
24
+ declare const _default: typeof __VLS_export;
25
+ export default _default;
26
+ type __VLS_WithSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,41 @@
1
+ export declare const uiToastViewportClass: string;
2
+ export declare const uiToastRootClass: import("../../styled-system/types").RecipeRuntimeFn<{
3
+ tone: {
4
+ success: {
5
+ borderColor: "badge.successBorder";
6
+ bg: "badge.successBg";
7
+ };
8
+ error: {
9
+ borderColor: "badge.dangerBorder";
10
+ bg: "badge.dangerBg";
11
+ };
12
+ info: {
13
+ borderColor: "badge.infoBorder";
14
+ bg: "badge.infoBg";
15
+ };
16
+ warning: {
17
+ borderColor: "badge.warningBorder";
18
+ bg: "badge.warningBg";
19
+ };
20
+ };
21
+ }>;
22
+ export declare const uiToastIconClass: import("../../styled-system/types").RecipeRuntimeFn<{
23
+ tone: {
24
+ success: {
25
+ color: "badge.successText";
26
+ };
27
+ error: {
28
+ color: "badge.dangerText";
29
+ };
30
+ info: {
31
+ color: "badge.infoText";
32
+ };
33
+ warning: {
34
+ color: "badge.warningText";
35
+ };
36
+ };
37
+ }>;
38
+ export declare const uiToastContentClass: string;
39
+ export declare const uiToastTitleClass: string;
40
+ export declare const uiToastDescriptionClass: string;
41
+ export declare const uiToastCloseClass: string;
@@ -0,0 +1,13 @@
1
+ import type { ToastTone } from "../composables/useToast";
2
+ type __VLS_Props = {
3
+ tone: ToastTone;
4
+ message: string;
5
+ title?: string;
6
+ duration?: number;
7
+ };
8
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
9
+ title: string;
10
+ duration: number;
11
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,13 @@
1
+ declare var __VLS_8: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_8) => 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 @@
1
+ export declare const tooltipContent: string;
@@ -0,0 +1,25 @@
1
+ type __VLS_Props = {
2
+ /** Tooltip text. When empty, renders the trigger bare (no tooltip). */
3
+ content: string;
4
+ side?: "top" | "right" | "bottom" | "left";
5
+ /** Open delay in ms. */
6
+ delay?: number;
7
+ };
8
+ declare var __VLS_20: {}, __VLS_28: {};
9
+ type __VLS_Slots = {} & {
10
+ default?: (props: typeof __VLS_20) => any;
11
+ } & {
12
+ default?: (props: typeof __VLS_28) => 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
+ side: "top" | "right" | "bottom" | "left";
16
+ delay: number;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
19
+ declare const _default: typeof __VLS_export;
20
+ export default _default;
21
+ type __VLS_WithSlots<T, S> = T & {
22
+ new (): {
23
+ $slots: S;
24
+ };
25
+ };
@@ -2,10 +2,21 @@ export { default as PageSurface } from "./PageSurface.vue";
2
2
  export { default as ResultPanel } from "./ResultPanel.vue";
3
3
  export { default as SectionCard } from "./SectionCard.vue";
4
4
  export { default as StatusBadge } from "./StatusBadge.vue";
5
+ export { default as UiAvatar } from "./UiAvatar.vue";
5
6
  export { default as UiButton } from "./UiButton.vue";
6
7
  export { default as UiCheckbox } from "./UiCheckbox.vue";
7
8
  export { default as UiField } from "./UiField.vue";
8
9
  export { default as UiLoadingState } from "./UiLoadingState.vue";
10
+ export { default as UiModal } from "./UiModal.vue";
9
11
  export { default as UiSegmentedControl } from "./UiSegmentedControl.vue";
10
12
  export { default as UiSelect } from "./UiSelect.vue";
11
13
  export { default as UiSkeleton } from "./UiSkeleton.vue";
14
+ export { default as UiToast } from "./UiToast.vue";
15
+ export { default as UiToastProvider } from "./UiToastProvider.vue";
16
+ export { default as UiTooltip } from "./UiTooltip.vue";
17
+ export { default as DataTable } from "./DataTable.vue";
18
+ export type { DataTableColumn } from "./DataTable.types";
19
+ export { DropdownMenuItem, DropdownMenuSeparator, DropdownMenuRoot, DropdownMenuTrigger, DropdownMenuContent, } from "reka-ui";
20
+ export { actionMenu, menuBtnIcon } from "./DataTable.styles";
21
+ export { tooltipContent } from "./UiTooltip.styles";
22
+ export { TooltipRoot, TooltipTrigger, TooltipContent, TooltipProvider } from "reka-ui";
@@ -1,14 +1,32 @@
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";
1
+ import { D as t, a as e, b as s, c as n, d as i, e as r, _ as l, f as d, g as p, h as u, T as U, i as T, j as g, k as S, l as c, m as D, n as M, o as w, p as C, q as m, r as v, s as P, t as b, u as f, v as k, w as x, x as B, y as R, z as h } from "./chunks/DataTable-CIiU5Jx3.js";
2
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
3
+ t as DataTable,
4
+ e as DropdownMenuContent,
5
+ s as DropdownMenuItem,
6
+ n as DropdownMenuRoot,
7
+ i as DropdownMenuSeparator,
8
+ r as DropdownMenuTrigger,
9
+ l as PageSurface,
10
+ d as ResultPanel,
11
+ p as SectionCard,
12
+ u as StatusBadge,
13
+ U as TooltipContent,
14
+ T as TooltipProvider,
15
+ g as TooltipRoot,
16
+ S as TooltipTrigger,
17
+ c as UiAvatar,
18
+ D as UiButton,
19
+ M as UiCheckbox,
20
+ w as UiField,
21
+ C as UiLoadingState,
22
+ m as UiModal,
23
+ v as UiSegmentedControl,
24
+ P as UiSelect,
25
+ b as UiSkeleton,
26
+ f as UiToast,
27
+ k as UiToastProvider,
28
+ x as UiTooltip,
29
+ B as actionMenu,
30
+ R as menuBtnIcon,
31
+ h as tooltipContent
14
32
  };
@@ -0,0 +1,27 @@
1
+ export type ToastTone = "success" | "error" | "info" | "warning";
2
+ export interface ToastItem {
3
+ id: number;
4
+ tone: ToastTone;
5
+ message: string;
6
+ duration: number;
7
+ }
8
+ declare function removeToast(id: number): void;
9
+ export declare function useToast(): {
10
+ toasts: import("vue").Ref<{
11
+ id: number;
12
+ tone: ToastTone;
13
+ message: string;
14
+ duration: number;
15
+ }[], ToastItem[] | {
16
+ id: number;
17
+ tone: ToastTone;
18
+ message: string;
19
+ duration: number;
20
+ }[]>;
21
+ success: (message: string, duration?: number) => number;
22
+ error: (message: string, duration?: number) => number;
23
+ info: (message: string, duration?: number) => number;
24
+ warning: (message: string, duration?: number) => number;
25
+ dismiss: typeof removeToast;
26
+ };
27
+ export {};
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from "./components/index";
2
+ export * from "./composables/useToast";
2
3
  export * from "./styles/index";
3
4
  export * from "./tokens/index";
package/dist/index.js CHANGED
@@ -1,65 +1,84 @@
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
- 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-YZ3BV9dQ.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";
1
+ import { D as e, a as o, b as t, c as l, d as n, e as r, _ as i, f as p, g as C, h as c, T as d, i as u, j as T, k as g, l as m, m as f, n as k, o as R, p as S, q as x, r as P, s as U, t as b, u as D, v as y, w, x as M, y as L, z as h, A as v } from "./chunks/DataTable-CIiU5Jx3.js";
2
+ import { actionToolbarClass as A, badgeRecipe as H, cardRecipe as j, centeredEmptyStatePanelClass as I, clusterLayout as q, emptyStatePanelClass as z, errorTextClass as E, fieldControlClass as F, fieldControlSmClass as G, fieldTextareaClass as V, focusRingClass as _, infoPanelClass as J, inputRecipe as K, loadingRegionClass as N, metricGridPattern as O, mutedTextClass as Q, resultRegionClass as W, resultSkeletonPanelClass as X, selectableDetailClass as Y, selectableListClass as Z, selectableListDetailRootClass as $, splitLayout as ss, stackLayout as as } from "./styles.js";
3
+ import { b as os, c as ts, d as ls, e as ns, a as rs, h as is, i as ps, m as Cs, p as cs, f as ds, g as us, j as Ts, k as gs, s as ms, l as fs, n as ks } from "./chunks/pageHeader-YZ3BV9dQ.js";
4
+ import { colorTokens as Ss } from "./tokens.js";
5
+ import { coreColorTokens as Ps, motionTokens as Us, radiusTokens as bs, spacingTokens as Ds, typographyTokens as ys } from "./tokens-core.js";
6
+ import { desktopColorTokens as Ms } from "./tokens-desktop.js";
7
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
8
+ e as DataTable,
9
+ o as DropdownMenuContent,
10
+ t as DropdownMenuItem,
11
+ l as DropdownMenuRoot,
12
+ n as DropdownMenuSeparator,
13
+ r as DropdownMenuTrigger,
14
+ i as PageSurface,
15
+ p as ResultPanel,
16
+ C as SectionCard,
17
+ c as StatusBadge,
18
+ d as TooltipContent,
19
+ u as TooltipProvider,
20
+ T as TooltipRoot,
21
+ g as TooltipTrigger,
22
+ m as UiAvatar,
23
+ f as UiButton,
24
+ k as UiCheckbox,
25
+ R as UiField,
26
+ S as UiLoadingState,
27
+ x as UiModal,
28
+ P as UiSegmentedControl,
29
+ U as UiSelect,
30
+ b as UiSkeleton,
31
+ D as UiToast,
32
+ y as UiToastProvider,
33
+ w as UiTooltip,
34
+ M as actionMenu,
35
+ A as actionToolbarClass,
36
+ H as badgeRecipe,
37
+ os as buttonRecipe,
38
+ j as cardRecipe,
39
+ I as centeredEmptyStatePanelClass,
40
+ q as clusterLayout,
41
+ ts as codeBlockClass,
42
+ Ss as colorTokens,
43
+ Ps as coreColorTokens,
44
+ Ms as desktopColorTokens,
45
+ ls as dropdownRecipe,
46
+ ns as elevatedPanelClass,
47
+ z as emptyStatePanelClass,
48
+ E as errorTextClass,
49
+ rs as eyebrowClass,
50
+ F as fieldControlClass,
51
+ G as fieldControlSmClass,
52
+ V as fieldTextareaClass,
53
+ _ as focusRingClass,
54
+ is as helperTextClass,
55
+ J as infoPanelClass,
56
+ K as inputRecipe,
57
+ ps as insetPanelClass,
58
+ N as loadingRegionClass,
59
+ L as menuBtnIcon,
60
+ O as metricGridPattern,
61
+ Cs as metricValueClass,
62
+ Us as motionTokens,
63
+ Q as mutedTextClass,
64
+ cs as pageHeaderActionsClass,
65
+ ds as pageHeaderContentClass,
66
+ us as pageHeaderRootClass,
67
+ Ts as pageRootClass,
68
+ gs as pageScrollRegionClass,
69
+ bs as radiusTokens,
70
+ W as resultRegionClass,
71
+ X as resultSkeletonPanelClass,
72
+ ms as sectionDescriptionClass,
73
+ fs as sectionTitleClass,
74
+ Y as selectableDetailClass,
75
+ Z as selectableListClass,
76
+ $ as selectableListDetailRootClass,
77
+ Ds as spacingTokens,
78
+ ss as splitLayout,
79
+ as as stackLayout,
80
+ ks as surfacePanelClass,
81
+ h as tooltipContent,
82
+ ys as typographyTokens,
83
+ v as useToast
65
84
  };