@treeui/vue 0.3.0 → 0.4.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 (44) hide show
  1. package/README.md +25 -3
  2. package/dist/components/TreeContainer.vue.d.ts +31 -0
  3. package/dist/components/TreeContainer.vue.d.ts.map +1 -0
  4. package/dist/components/TreeGrid.vue.d.ts +37 -0
  5. package/dist/components/TreeGrid.vue.d.ts.map +1 -0
  6. package/dist/components/TreeMultiSelect.vue.d.ts +93 -0
  7. package/dist/components/TreeMultiSelect.vue.d.ts.map +1 -0
  8. package/dist/components/TreeNavMenu.vue.d.ts +62 -0
  9. package/dist/components/TreeNavMenu.vue.d.ts.map +1 -0
  10. package/dist/components/TreeNavbar.vue.d.ts +35 -0
  11. package/dist/components/TreeNavbar.vue.d.ts.map +1 -0
  12. package/dist/components/TreeNumberInput.vue.d.ts +29 -0
  13. package/dist/components/TreeNumberInput.vue.d.ts.map +1 -0
  14. package/dist/components/TreePricingCard.vue.d.ts +1 -1
  15. package/dist/components/TreePricingCard.vue.d.ts.map +1 -1
  16. package/dist/components/TreeSelectableList.vue.d.ts +57 -0
  17. package/dist/components/TreeSelectableList.vue.d.ts.map +1 -0
  18. package/dist/components/TreeSidebar.vue.d.ts +78 -0
  19. package/dist/components/TreeSidebar.vue.d.ts.map +1 -0
  20. package/dist/components/TreeStack.vue.d.ts +37 -0
  21. package/dist/components/TreeStack.vue.d.ts.map +1 -0
  22. package/dist/components/TreeStat.vue.d.ts +47 -0
  23. package/dist/components/TreeStat.vue.d.ts.map +1 -0
  24. package/dist/components/TreeSteps.vue.d.ts +62 -0
  25. package/dist/components/TreeSteps.vue.d.ts.map +1 -0
  26. package/dist/components/TreeToggleGroup.vue.d.ts +55 -0
  27. package/dist/components/TreeToggleGroup.vue.d.ts.map +1 -0
  28. package/dist/components/TreeTreeView.vue.d.ts +33 -0
  29. package/dist/components/TreeTreeView.vue.d.ts.map +1 -0
  30. package/dist/components/TreeTreeViewItem.vue.d.ts +8 -0
  31. package/dist/components/TreeTreeViewItem.vue.d.ts.map +1 -0
  32. package/dist/components/index.d.ts +40 -0
  33. package/dist/components/index.d.ts.map +1 -1
  34. package/dist/components/sidebar.d.ts +6 -0
  35. package/dist/components/sidebar.d.ts.map +1 -0
  36. package/dist/components/tree-view.d.ts +32 -0
  37. package/dist/components/tree-view.d.ts.map +1 -0
  38. package/dist/index.cjs +10 -10
  39. package/dist/index.cjs.map +1 -1
  40. package/dist/index.js +4170 -2586
  41. package/dist/index.js.map +1 -1
  42. package/dist/plugin.d.ts.map +1 -1
  43. package/dist/style.css +1 -1
  44. package/package.json +3 -3
package/README.md CHANGED
@@ -33,15 +33,15 @@ import '@treeui/vue/style.css'
33
33
 
34
34
  ### Form
35
35
 
36
- `TInput` · `TTextarea` · `TCheckbox` · `TCombobox` · `TFileUpload` · `TRadio` · `TRadioGroup` · `TSelect` · `TDatePicker` · `TSwitch` · `TFormField` · `TMarkdownEditor`
36
+ `TInput` · `TTextarea` · `TCheckbox` · `TCombobox` · `TFileUpload` · `TRadio` · `TRadioGroup` · `TSelect` · `TMultiSelect` · `TNumberInput` · `TDatePicker` · `TSwitch` · `TFormField` · `TToggleGroup` · `TMarkdownEditor`
37
37
 
38
38
  ### Layout
39
39
 
40
- `TAccordion` · `TAccordionItem` · `TCard` · `TDivider` · `TTable` · `TTabs` · `TTabList` · `TTab` · `TTabPanel` · `TBreadcrumb` · `TBreadcrumbItem` · `TPricing` · `TPricingCard`
40
+ `TContainer` · `TGrid` · `TStack` · `TSidebar` · `TNavMenu` · `TNavbar` / `TAppBar` · `TAccordion` · `TAccordionItem` · `TCard` · `TDivider` · `TTable` · `TTabs` · `TTabList` · `TTab` · `TTabPanel` · `TBreadcrumb` · `TBreadcrumbItem` · `TSelectableList` · `TTreeView` · `TSteps` / `TStepper` · `TPricing` · `TPricingCard`
41
41
 
42
42
  ### Display
43
43
 
44
- `TBadge` · `TAlert` · `TAvatar` · `TEmptyState` · `TTag` · `TTimeline` · `TSpinner` · `TProgress` · `TSkeleton`
44
+ `TBadge` · `TAlert` · `TAvatar` · `TEmptyState` · `TTag` · `TTimeline` · `TSpinner` · `TProgress` · `TSkeleton` · `TStat`
45
45
 
46
46
  ### Overlay & Interaction
47
47
 
@@ -78,6 +78,13 @@ document.documentElement.setAttribute('data-tree-theme', 'dark')
78
78
 
79
79
  All components are also exported with the `Tree` prefix (e.g. `TreeButton`, `TreeInput`) for backwards compatibility.
80
80
 
81
+ ## Conventions
82
+
83
+ - Primary docs and examples use the `T` prefix for public exports.
84
+ - `Tree<Name>` aliases remain available for migration and compatibility.
85
+ - `TNavbar` / `TAppBar` and `TSteps` / `TStepper` are alias pairs for the same implementations.
86
+ - Page-level assemblies that are mostly layout stay documented as recipes until they need a dedicated semantic API.
87
+
81
88
  ## Semantic aliases in docs
82
89
 
83
90
  Some docs use familiar product terms as aliases for existing TreeUI patterns. These are documentation aliases only, not extra exports.
@@ -85,6 +92,21 @@ Some docs use familiar product terms as aliases for existing TreeUI patterns. Th
85
92
  - `Snackbar` / `Notification` -> `TToast`
86
93
  - `Banner` -> `TAlert`
87
94
  - `Collapsible` / `Details` -> `TAccordion` with `type="single"` and `collapsible`
95
+ - `App bar` -> `TNavbar` / `TAppBar`
96
+ - `Stepper` -> `TSteps` / `TStepper`
97
+
98
+ ## Docs-first patterns
99
+
100
+ Some repeated app UI intentionally stays documented as composition guidance instead of becoming extra exports:
101
+
102
+ - Stat groups: `TGrid` + `TStat`
103
+ - Section headers: heading + `TStack` + optional `TBadge` or `TButton`
104
+ - Subpanels: `TCard`, especially `variant="soft"`
105
+ - Stacked cards: `TCard` slots + `TTag` / `TBadge` / actions
106
+ - Eyebrow text: typography recipe using existing tokens
107
+ - Form stacks: `TStack` + `TGrid` + `TFormField`
108
+ - Rankings: `TTable` or `TSelectableList`
109
+ - Action panels: `TAlert` + `TCard` + `TButton`
88
110
 
89
111
  ## TypeScript
90
112
 
@@ -0,0 +1,31 @@
1
+ declare const _treeContainerSizes: readonly ["sm", "md", "lg", "xl", "full"];
2
+ export type TreeContainerSize = (typeof _treeContainerSizes)[number];
3
+ type __VLS_Props = {
4
+ as?: string;
5
+ size?: TreeContainerSize;
6
+ padded?: boolean;
7
+ centered?: boolean;
8
+ };
9
+ declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
11
+ slots: {
12
+ default?(_: {}): any;
13
+ };
14
+ refs: {};
15
+ rootEl: any;
16
+ };
17
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
18
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
19
+ size: TreeContainerSize;
20
+ as: string;
21
+ padded: boolean;
22
+ centered: boolean;
23
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
24
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
25
+ export default _default;
26
+ type __VLS_WithTemplateSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
31
+ //# sourceMappingURL=TreeContainer.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeContainer.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreeContainer.vue"],"names":[],"mappings":"AAgEA,QAAA,MAAM,mBAAmB,2CAA4C,CAAC;AAEtE,MAAM,MAAM,iBAAiB,GAAG,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,CAAC,CAAC;AAErE,KAAK,WAAW,GAAG;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,iBAAiB,CAAC;IACzB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAsCJ,iBAAS,cAAc;WAkCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;UA7FV,iBAAiB;QADnB,MAAM;YAEF,OAAO;cACL,OAAO;6EAkGpB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,37 @@
1
+ type __VLS_Props = {
2
+ as?: string;
3
+ columns?: number;
4
+ minItemWidth?: string;
5
+ gap?: string;
6
+ rowGap?: string;
7
+ align?: string;
8
+ justify?: string;
9
+ dense?: boolean;
10
+ };
11
+ declare function __VLS_template(): {
12
+ attrs: Partial<{}>;
13
+ slots: {
14
+ default?(_: {}): any;
15
+ };
16
+ refs: {};
17
+ rootEl: any;
18
+ };
19
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
21
+ as: string;
22
+ columns: number;
23
+ minItemWidth: string;
24
+ gap: string;
25
+ rowGap: string;
26
+ align: string;
27
+ justify: string;
28
+ dense: boolean;
29
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
30
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
31
+ export default _default;
32
+ type __VLS_WithTemplateSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
37
+ //# sourceMappingURL=TreeGrid.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeGrid.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreeGrid.vue"],"names":[],"mappings":"AA+EA,KAAK,WAAW,GAAG;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB,CAAC;AAyDJ,iBAAS,cAAc;WAkCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;QArHZ,MAAM;aACD,MAAM;kBACD,MAAM;SACf,MAAM;YACH,MAAM;WACP,MAAM;aACJ,MAAM;WACR,OAAO;6EAqHjB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,93 @@
1
+ import { TreeSize } from '../types/contracts';
2
+ export interface TreeMultiSelectOption {
3
+ label: string;
4
+ value: string;
5
+ description?: string;
6
+ keywords?: string[];
7
+ disabled?: boolean;
8
+ }
9
+ type __VLS_Props = {
10
+ modelValue?: string[];
11
+ options?: TreeMultiSelectOption[];
12
+ open?: boolean;
13
+ defaultOpen?: boolean;
14
+ size?: TreeSize;
15
+ disabled?: boolean;
16
+ loading?: boolean;
17
+ invalid?: boolean;
18
+ placeholder?: string;
19
+ emptyText?: string;
20
+ maxVisibleTags?: number;
21
+ };
22
+ declare function __VLS_template(): {
23
+ attrs: Partial<{}>;
24
+ slots: Readonly<{
25
+ prefix?: () => unknown;
26
+ tag?: (props: {
27
+ option: TreeMultiSelectOption;
28
+ remove: () => void;
29
+ }) => unknown;
30
+ option?: (props: {
31
+ option: TreeMultiSelectOption;
32
+ selected: boolean;
33
+ active: boolean;
34
+ }) => unknown;
35
+ empty?: (props: {
36
+ query: string;
37
+ }) => unknown;
38
+ }> & {
39
+ prefix?: () => unknown;
40
+ tag?: (props: {
41
+ option: TreeMultiSelectOption;
42
+ remove: () => void;
43
+ }) => unknown;
44
+ option?: (props: {
45
+ option: TreeMultiSelectOption;
46
+ selected: boolean;
47
+ active: boolean;
48
+ }) => unknown;
49
+ empty?: (props: {
50
+ query: string;
51
+ }) => unknown;
52
+ };
53
+ refs: {
54
+ rootRef: HTMLDivElement;
55
+ inputRef: HTMLInputElement;
56
+ };
57
+ rootEl: any;
58
+ };
59
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
60
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
61
+ "update:modelValue": (value: string[]) => any;
62
+ "update:open": (value: boolean) => any;
63
+ "open-change": (value: boolean) => any;
64
+ "input-change": (value: string) => any;
65
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
66
+ "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
67
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
68
+ "onOpen-change"?: ((value: boolean) => any) | undefined;
69
+ "onInput-change"?: ((value: string) => any) | undefined;
70
+ }>, {
71
+ modelValue: string[];
72
+ disabled: boolean;
73
+ size: TreeSize;
74
+ loading: boolean;
75
+ invalid: boolean;
76
+ options: TreeMultiSelectOption[];
77
+ open: boolean;
78
+ defaultOpen: boolean;
79
+ placeholder: string;
80
+ emptyText: string;
81
+ maxVisibleTags: number;
82
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
83
+ rootRef: HTMLDivElement;
84
+ inputRef: HTMLInputElement;
85
+ }, any>;
86
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
87
+ export default _default;
88
+ type __VLS_WithTemplateSlots<T, S> = T & {
89
+ new (): {
90
+ $slots: S;
91
+ };
92
+ };
93
+ //# sourceMappingURL=TreeMultiSelect.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeMultiSelect.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreeMultiSelect.vue"],"names":[],"mappings":"AA4fA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAOnD,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAMD,KAAK,WAAW,GAAG;IACf,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,OAAO,CAAC,EAAE,qBAAqB,EAAE,CAAC;IAClC,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB,CAAC;AAsUJ,iBAAS,cAAc;WAuNT,OAAO,IAA6B;;iBAlgBvC,MAAM,OAAO;cAChB,CAAC,KAAK,EAAE;YAAE,MAAM,EAAE,qBAAqB,CAAC;YAAC,MAAM,EAAE,MAAM,IAAI,CAAA;SAAE,KAAK,OAAO;iBACtE,CAAC,KAAK,EAAE;YACf,MAAM,EAAE,qBAAqB,CAAC;YAC9B,QAAQ,EAAE,OAAO,CAAC;YAClB,MAAM,EAAE,OAAO,CAAC;SACjB,KAAK,OAAO;gBACL,CAAC,KAAK,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,KAAK,OAAO;;iBAPpC,MAAM,OAAO;cAChB,CAAC,KAAK,EAAE;YAAE,MAAM,EAAE,qBAAqB,CAAC;YAAC,MAAM,EAAE,MAAM,IAAI,CAAA;SAAE,KAAK,OAAO;iBACtE,CAAC,KAAK,EAAE;YACf,MAAM,EAAE,qBAAqB,CAAC;YAC9B,QAAQ,EAAE,OAAO,CAAC;YAClB,MAAM,EAAE,OAAO,CAAC;SACjB,KAAK,OAAO;gBACL,CAAC,KAAK,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,KAAK,OAAO;;;;;;;EAggB9C;AAmCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;gBAjlBJ,MAAM,EAAE;cAKV,OAAO;UADX,QAAQ;aAEL,OAAO;aACP,OAAO;aANP,qBAAqB,EAAE;UAC1B,OAAO;iBACA,OAAO;iBAKP,MAAM;eACR,MAAM;oBACD,MAAM;;;;OAglBzB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,62 @@
1
+ import { TreeSize } from '../types/contracts';
2
+ export interface TreeNavMenuItem {
3
+ label: string;
4
+ value: string;
5
+ shortLabel?: string;
6
+ description?: string;
7
+ badge?: string | number;
8
+ disabled?: boolean;
9
+ }
10
+ type __VLS_Props = {
11
+ modelValue?: string;
12
+ defaultValue?: string;
13
+ items?: TreeNavMenuItem[];
14
+ size?: TreeSize;
15
+ collapsed?: boolean;
16
+ disabled?: boolean;
17
+ };
18
+ declare function __VLS_template(): {
19
+ attrs: Partial<{}>;
20
+ slots: Readonly<{
21
+ item?: (props: {
22
+ item: TreeNavMenuItem;
23
+ selected: boolean;
24
+ focused: boolean;
25
+ collapsed: boolean;
26
+ }) => unknown;
27
+ empty?: () => unknown;
28
+ }> & {
29
+ item?: (props: {
30
+ item: TreeNavMenuItem;
31
+ selected: boolean;
32
+ focused: boolean;
33
+ collapsed: boolean;
34
+ }) => unknown;
35
+ empty?: () => unknown;
36
+ };
37
+ refs: {};
38
+ rootEl: any;
39
+ };
40
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
41
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
42
+ "update:modelValue": (value: string) => any;
43
+ select: (value: string, item: TreeNavMenuItem) => any;
44
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
45
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
46
+ onSelect?: ((value: string, item: TreeNavMenuItem) => any) | undefined;
47
+ }>, {
48
+ modelValue: string;
49
+ defaultValue: string;
50
+ disabled: boolean;
51
+ size: TreeSize;
52
+ items: TreeNavMenuItem[];
53
+ collapsed: boolean;
54
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
55
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
56
+ export default _default;
57
+ type __VLS_WithTemplateSlots<T, S> = T & {
58
+ new (): {
59
+ $slots: S;
60
+ };
61
+ };
62
+ //# sourceMappingURL=TreeNavMenu.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeNavMenu.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreeNavMenu.vue"],"names":[],"mappings":"AAwRA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAOnD,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,KAAK,WAAW,GAAG;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,eAAe,EAAE,CAAC;IAC1B,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAyLJ,iBAAS,cAAc;WA8FT,OAAO,IAA6B;;eAnQzC,CAAC,KAAK,EAAE;YACb,IAAI,EAAE,eAAe,CAAC;YACtB,QAAQ,EAAE,OAAO,CAAC;YAClB,OAAO,EAAE,OAAO,CAAC;YACjB,SAAS,EAAE,OAAO,CAAC;SACpB,KAAK,OAAO;gBACL,MAAM,OAAO;;eANd,CAAC,KAAK,EAAE;YACb,IAAI,EAAE,eAAe,CAAC;YACtB,QAAQ,EAAE,OAAO,CAAC;YAClB,OAAO,EAAE,OAAO,CAAC;YACjB,SAAS,EAAE,OAAO,CAAC;SACpB,KAAK,OAAO;gBACL,MAAM,OAAO;;;;EAkQtB;AAoBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;gBAvTJ,MAAM;kBACJ,MAAM;cAIV,OAAO;UAFX,QAAQ;WADP,eAAe,EAAE;eAEb,OAAO;6EA2TrB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,35 @@
1
+ import { TreeSize } from '../types/contracts';
2
+ type __VLS_Props = {
3
+ as?: string;
4
+ size?: TreeSize;
5
+ sticky?: boolean;
6
+ bordered?: boolean;
7
+ elevated?: boolean;
8
+ };
9
+ declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
11
+ slots: {
12
+ start?(_: {}): any;
13
+ center?(_: {}): any;
14
+ default?(_: {}): any;
15
+ end?(_: {}): any;
16
+ };
17
+ refs: {};
18
+ rootEl: any;
19
+ };
20
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
22
+ size: TreeSize;
23
+ as: string;
24
+ sticky: boolean;
25
+ bordered: boolean;
26
+ elevated: boolean;
27
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
28
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
29
+ export default _default;
30
+ type __VLS_WithTemplateSlots<T, S> = T & {
31
+ new (): {
32
+ $slots: S;
33
+ };
34
+ };
35
+ //# sourceMappingURL=TreeNavbar.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeNavbar.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreeNavbar.vue"],"names":[],"mappings":"AAkFA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAMnD,KAAK,WAAW,GAAG;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAyCJ,iBAAS,cAAc;WA+DT,OAAO,IAA6B;;uBAbvB,GAAG;wBACF,GAAG;yBACF,GAAG;qBACP,GAAG;;;;EAe3B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;UA9HV,QAAQ;QADV,MAAM;YAEF,OAAO;cACL,OAAO;cACP,OAAO;6EAkIpB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,29 @@
1
+ import { TreeSize } from '../types/contracts';
2
+ type __VLS_Props = {
3
+ modelValue?: number | null;
4
+ min?: number;
5
+ max?: number;
6
+ step?: number;
7
+ size?: TreeSize;
8
+ disabled?: boolean;
9
+ invalid?: boolean;
10
+ placeholder?: string;
11
+ controls?: boolean;
12
+ };
13
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
+ "update:modelValue": (value: number | null) => any;
15
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
16
+ "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
17
+ }>, {
18
+ modelValue: number | null;
19
+ disabled: boolean;
20
+ size: TreeSize;
21
+ step: number;
22
+ invalid: boolean;
23
+ placeholder: string;
24
+ min: number;
25
+ max: number;
26
+ controls: boolean;
27
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
28
+ export default _default;
29
+ //# sourceMappingURL=TreeNumberInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeNumberInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreeNumberInput.vue"],"names":[],"mappings":"AAiRA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAMnD,KAAK,WAAW,GAAG;IACf,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;;;;;;gBATa,MAAM,GAAG,IAAI;cAKf,OAAO;UADX,QAAQ;UADR,MAAM;aAGH,OAAO;iBACH,MAAM;SANd,MAAM;SACN,MAAM;cAMD,OAAO;;AA0TtB,wBAQG"}
@@ -43,11 +43,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
43
43
  disabled: boolean;
44
44
  size: TreeSize;
45
45
  description: string;
46
+ badge: string;
46
47
  currency: string;
47
48
  period: string;
48
49
  features: PricingFeature[];
49
50
  highlighted: boolean;
50
- badge: string;
51
51
  buttonText: string;
52
52
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
53
53
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -1 +1 @@
1
- {"version":3,"file":"TreePricingCard.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreePricingCard.vue"],"names":[],"mappings":"AAyJA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAInD,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,KAAK,WAAW,GAAG;IACf,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,cAAc,EAAE,CAAC;IAC5B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAwDJ,iBAAS,cAAc;WAkIT,OAAO,IAA6B;;iBApKvC,MAAM,OAAO;gBACd,MAAM,OAAO;mBACV,MAAM,OAAO;iBACf,MAAM,OAAO;gBACd,MAAM,OAAO;;iBAJZ,MAAM,OAAO;gBACd,MAAM,OAAO;mBACV,MAAM,OAAO;iBACf,MAAM,OAAO;gBACd,MAAM,OAAO;;;;EAqKtB;AAcD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;cA/MN,OAAO;UADX,QAAQ;iBARD,MAAM;cAET,MAAM;YACR,MAAM;cACJ,cAAc,EAAE;iBACb,OAAO;WACb,MAAM;gBACD,MAAM;qFA0NrB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"TreePricingCard.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreePricingCard.vue"],"names":[],"mappings":"AAyJA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAInD,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,KAAK,WAAW,GAAG;IACf,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,cAAc,EAAE,CAAC;IAC5B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAwDJ,iBAAS,cAAc;WAkIT,OAAO,IAA6B;;iBApKvC,MAAM,OAAO;gBACd,MAAM,OAAO;mBACV,MAAM,OAAO;iBACf,MAAM,OAAO;gBACd,MAAM,OAAO;;iBAJZ,MAAM,OAAO;gBACd,MAAM,OAAO;mBACV,MAAM,OAAO;iBACf,MAAM,OAAO;gBACd,MAAM,OAAO;;;;EAqKtB;AAcD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;cA/MN,OAAO;UADX,QAAQ;iBARD,MAAM;WAMZ,MAAM;cAJH,MAAM;YACR,MAAM;cACJ,cAAc,EAAE;iBACb,OAAO;gBAER,MAAM;qFA0NrB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,57 @@
1
+ import { TreeSize } from '../types/contracts';
2
+ export interface TreeSelectableListItem {
3
+ label: string;
4
+ value: string;
5
+ description?: string;
6
+ meta?: string;
7
+ disabled?: boolean;
8
+ }
9
+ type __VLS_Props = {
10
+ modelValue?: string;
11
+ defaultValue?: string;
12
+ items?: TreeSelectableListItem[];
13
+ size?: TreeSize;
14
+ disabled?: boolean;
15
+ emptyText?: string;
16
+ };
17
+ declare function __VLS_template(): {
18
+ attrs: Partial<{}>;
19
+ slots: Readonly<{
20
+ item?: (props: {
21
+ item: TreeSelectableListItem;
22
+ selected: boolean;
23
+ focused: boolean;
24
+ }) => unknown;
25
+ empty?: () => unknown;
26
+ }> & {
27
+ item?: (props: {
28
+ item: TreeSelectableListItem;
29
+ selected: boolean;
30
+ focused: boolean;
31
+ }) => unknown;
32
+ empty?: () => unknown;
33
+ };
34
+ refs: {};
35
+ rootEl: any;
36
+ };
37
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
38
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
39
+ "update:modelValue": (value: string) => any;
40
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
41
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
42
+ }>, {
43
+ modelValue: string;
44
+ defaultValue: string;
45
+ disabled: boolean;
46
+ size: TreeSize;
47
+ emptyText: string;
48
+ items: TreeSelectableListItem[];
49
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
50
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
51
+ export default _default;
52
+ type __VLS_WithTemplateSlots<T, S> = T & {
53
+ new (): {
54
+ $slots: S;
55
+ };
56
+ };
57
+ //# sourceMappingURL=TreeSelectableList.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeSelectableList.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreeSelectableList.vue"],"names":[],"mappings":"AAmRA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAMnD,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,KAAK,WAAW,GAAG;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,sBAAsB,EAAE,CAAC;IACjC,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AA6LJ,iBAAS,cAAc;WA0FT,OAAO,IAA6B;;eApQzC,CAAC,KAAK,EAAE;YACb,IAAI,EAAE,sBAAsB,CAAC;YAC7B,QAAQ,EAAE,OAAO,CAAC;YAClB,OAAO,EAAE,OAAO,CAAC;SAClB,KAAK,OAAO;gBACL,MAAM,OAAO;;eALd,CAAC,KAAK,EAAE;YACb,IAAI,EAAE,sBAAsB,CAAC;YAC7B,QAAQ,EAAE,OAAO,CAAC;YAClB,OAAO,EAAE,OAAO,CAAC;SAClB,KAAK,OAAO;gBACL,MAAM,OAAO;;;;EAoQtB;AAoBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;gBAvTJ,MAAM;kBACJ,MAAM;cAGV,OAAO;UADX,QAAQ;eAEH,MAAM;WAHV,sBAAsB,EAAE;6EA6TlC,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,78 @@
1
+ import { TreeSize } from '../types/contracts';
2
+ declare const _treeSidebarSides: readonly ["left", "right"];
3
+ export type TreeSidebarSide = (typeof _treeSidebarSides)[number];
4
+ type __VLS_Props = {
5
+ as?: string;
6
+ collapsed?: boolean;
7
+ defaultCollapsed?: boolean;
8
+ collapsible?: boolean;
9
+ size?: TreeSize;
10
+ side?: TreeSidebarSide;
11
+ sticky?: boolean;
12
+ bordered?: boolean;
13
+ width?: string;
14
+ collapsedWidth?: string;
15
+ collapseLabel?: string;
16
+ expandLabel?: string;
17
+ };
18
+ declare function __VLS_template(): {
19
+ attrs: Partial<{}>;
20
+ slots: Readonly<{
21
+ header?: (props: {
22
+ collapsed: boolean;
23
+ }) => unknown;
24
+ default?: (props: {
25
+ collapsed: boolean;
26
+ }) => unknown;
27
+ footer?: (props: {
28
+ collapsed: boolean;
29
+ }) => unknown;
30
+ toggle?: (props: {
31
+ collapsed: boolean;
32
+ }) => unknown;
33
+ }> & {
34
+ header?: (props: {
35
+ collapsed: boolean;
36
+ }) => unknown;
37
+ default?: (props: {
38
+ collapsed: boolean;
39
+ }) => unknown;
40
+ footer?: (props: {
41
+ collapsed: boolean;
42
+ }) => unknown;
43
+ toggle?: (props: {
44
+ collapsed: boolean;
45
+ }) => unknown;
46
+ };
47
+ refs: {};
48
+ rootEl: any;
49
+ };
50
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
51
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
52
+ "update:collapsed": (value: boolean) => any;
53
+ "collapse-change": (value: boolean) => any;
54
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
55
+ "onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
56
+ "onCollapse-change"?: ((value: boolean) => any) | undefined;
57
+ }>, {
58
+ collapsible: boolean;
59
+ size: TreeSize;
60
+ width: string;
61
+ as: string;
62
+ side: TreeSidebarSide;
63
+ sticky: boolean;
64
+ bordered: boolean;
65
+ collapsed: boolean;
66
+ defaultCollapsed: boolean;
67
+ collapsedWidth: string;
68
+ collapseLabel: string;
69
+ expandLabel: string;
70
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
71
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
72
+ export default _default;
73
+ type __VLS_WithTemplateSlots<T, S> = T & {
74
+ new (): {
75
+ $slots: S;
76
+ };
77
+ };
78
+ //# sourceMappingURL=TreeSidebar.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeSidebar.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreeSidebar.vue"],"names":[],"mappings":"AAqLA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAOnD,QAAA,MAAM,iBAAiB,4BAA6B,CAAC;AAErD,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAKjE,KAAK,WAAW,GAAG;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AA4GJ,iBAAS,cAAc;WAkFT,OAAO,IAA6B;;iBApKvC,CAAC,KAAK,EAAE;YAAE,SAAS,EAAE,OAAO,CAAA;SAAE,KAAK,OAAO;kBACzC,CAAC,KAAK,EAAE;YAAE,SAAS,EAAE,OAAO,CAAA;SAAE,KAAK,OAAO;iBAC3C,CAAC,KAAK,EAAE;YAAE,SAAS,EAAE,OAAO,CAAA;SAAE,KAAK,OAAO;iBAC1C,CAAC,KAAK,EAAE;YAAE,SAAS,EAAE,OAAO,CAAA;SAAE,KAAK,OAAO;;iBAH1C,CAAC,KAAK,EAAE;YAAE,SAAS,EAAE,OAAO,CAAA;SAAE,KAAK,OAAO;kBACzC,CAAC,KAAK,EAAE;YAAE,SAAS,EAAE,OAAO,CAAA;SAAE,KAAK,OAAO;iBAC3C,CAAC,KAAK,EAAE;YAAE,SAAS,EAAE,OAAO,CAAA;SAAE,KAAK,OAAO;iBAC1C,CAAC,KAAK,EAAE;YAAE,SAAS,EAAE,OAAO,CAAA;SAAE,KAAK,OAAO;;;;EAsKpD;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;iBA9NH,OAAO;UACd,QAAQ;WAIP,MAAM;QART,MAAM;UAKJ,eAAe;YACb,OAAO;cACL,OAAO;eANN,OAAO;sBACA,OAAO;oBAOT,MAAM;mBACP,MAAM;iBACR,MAAM;6EA8NtB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,37 @@
1
+ declare const _treeStackDirections: readonly ["vertical", "horizontal"];
2
+ export type TreeStackDirection = (typeof _treeStackDirections)[number];
3
+ type __VLS_Props = {
4
+ as?: string;
5
+ direction?: TreeStackDirection;
6
+ gap?: string;
7
+ align?: string;
8
+ justify?: string;
9
+ wrap?: boolean;
10
+ reverse?: boolean;
11
+ };
12
+ declare function __VLS_template(): {
13
+ attrs: Partial<{}>;
14
+ slots: {
15
+ default?(_: {}): any;
16
+ };
17
+ refs: {};
18
+ rootEl: any;
19
+ };
20
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
22
+ reverse: boolean;
23
+ as: string;
24
+ gap: string;
25
+ align: string;
26
+ justify: string;
27
+ wrap: boolean;
28
+ direction: TreeStackDirection;
29
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
30
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
31
+ export default _default;
32
+ type __VLS_WithTemplateSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
37
+ //# sourceMappingURL=TreeStack.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeStack.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreeStack.vue"],"names":[],"mappings":"AA6EA,QAAA,MAAM,oBAAoB,qCAAsC,CAAC;AAEjE,MAAM,MAAM,kBAAkB,GAAG,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,CAAC;AAEvE,KAAK,WAAW,GAAG;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,kBAAkB,CAAC;IAC/B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAmDJ,iBAAS,cAAc;WAkCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;aAxGP,OAAO;QANZ,MAAM;SAEL,MAAM;WACJ,MAAM;aACJ,MAAM;UACT,OAAO;eAJF,kBAAkB;6EAoHhC,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,47 @@
1
+ declare const _treeStatTones: readonly ["neutral", "success", "warning", "danger", "info"];
2
+ declare const _treeStatTrendDirections: readonly ["up", "down", "neutral"];
3
+ export type TreeStatTone = (typeof _treeStatTones)[number];
4
+ export type TreeStatTrendDirection = (typeof _treeStatTrendDirections)[number];
5
+ type __VLS_Props = {
6
+ label?: string;
7
+ value?: string | number;
8
+ trend?: string;
9
+ meta?: string;
10
+ tone?: TreeStatTone;
11
+ trendDirection?: TreeStatTrendDirection;
12
+ };
13
+ declare function __VLS_template(): {
14
+ attrs: Partial<{}>;
15
+ slots: Readonly<{
16
+ icon?: () => unknown;
17
+ label?: () => unknown;
18
+ value?: () => unknown;
19
+ trend?: () => unknown;
20
+ meta?: () => unknown;
21
+ }> & {
22
+ icon?: () => unknown;
23
+ label?: () => unknown;
24
+ value?: () => unknown;
25
+ trend?: () => unknown;
26
+ meta?: () => unknown;
27
+ };
28
+ refs: {};
29
+ rootEl: any;
30
+ };
31
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
32
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
33
+ label: string;
34
+ meta: string;
35
+ value: string | number;
36
+ trend: string;
37
+ tone: TreeStatTone;
38
+ trendDirection: TreeStatTrendDirection;
39
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
40
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
41
+ export default _default;
42
+ type __VLS_WithTemplateSlots<T, S> = T & {
43
+ new (): {
44
+ $slots: S;
45
+ };
46
+ };
47
+ //# sourceMappingURL=TreeStat.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeStat.vue.d.ts","sourceRoot":"","sources":["../../src/components/TreeStat.vue"],"names":[],"mappings":"AAsJA,QAAA,MAAM,cAAc,8DAA+D,CAAC;AACpF,QAAA,MAAM,wBAAwB,oCAAqC,CAAC;AAEpE,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,CAAC,CAAC;AAC3D,MAAM,MAAM,sBAAsB,GAAG,CAAC,OAAO,wBAAwB,CAAC,CAAC,MAAM,CAAC,CAAC;AAE/E,KAAK,WAAW,GAAG;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,cAAc,CAAC,EAAE,sBAAsB,CAAC;CACzC,CAAC;AAmEJ,iBAAS,cAAc;WA8ET,OAAO,IAA6B;;eAnIzC,MAAM,OAAO;gBACZ,MAAM,OAAO;gBACb,MAAM,OAAO;gBACb,MAAM,OAAO;eACd,MAAM,OAAO;;eAJb,MAAM,OAAO;gBACZ,MAAM,OAAO;gBACb,MAAM,OAAO;gBACb,MAAM,OAAO;eACd,MAAM,OAAO;;;;EAoIrB;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;WA9KT,MAAM;UAGP,MAAM;WAFL,MAAM,GAAG,MAAM;WACf,MAAM;UAEP,YAAY;oBACF,sBAAsB;6EAgLzC,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}