veloce-vue 0.19.0 → 0.21.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 (41) hide show
  1. package/components/Accordion.vue.d.ts +19 -1
  2. package/components/Badge.vue.d.ts +58 -0
  3. package/components/Button.vue.d.ts +7 -7
  4. package/components/Checkbox.vue.d.ts +1 -1
  5. package/components/Chip.vue.d.ts +81 -0
  6. package/components/Fieldset.vue.d.ts +62 -0
  7. package/components/Input.vue.d.ts +2 -2
  8. package/components/JsonRenderer.vue.d.ts +14 -0
  9. package/components/Layout.vue.d.ts +38 -0
  10. package/components/Message.vue.d.ts +154 -0
  11. package/components/MiniEditor.vue.d.ts +12 -0
  12. package/components/ProgressBar.vue.d.ts +70 -0
  13. package/components/ProgressSpinner.vue.d.ts +25 -0
  14. package/components/Select.vue.d.ts +1 -1
  15. package/components/Separator.vue.d.ts +3 -3
  16. package/components/Skeleton.vue.d.ts +51 -0
  17. package/components/Switch.vue.d.ts +1 -1
  18. package/components/icon/icons.d.ts +3 -0
  19. package/components/typography/Blockquote.vue.d.ts +151 -0
  20. package/components/typography/Code.vue.d.ts +160 -0
  21. package/components/typography/H1.vue.d.ts +151 -0
  22. package/components/typography/H2.vue.d.ts +151 -0
  23. package/components/typography/H3.vue.d.ts +151 -0
  24. package/components/typography/H4.vue.d.ts +151 -0
  25. package/components/typography/H5.vue.d.ts +151 -0
  26. package/components/typography/H6.vue.d.ts +151 -0
  27. package/components/typography/Label.vue.d.ts +160 -0
  28. package/components/typography/List.vue.d.ts +123 -0
  29. package/components/typography/P.vue.d.ts +151 -0
  30. package/components/typography/Span.vue.d.ts +151 -0
  31. package/exports/composables.d.ts +1 -0
  32. package/exports/toast.d.ts +4 -0
  33. package/exports/types.d.ts +54 -1
  34. package/exports/typography.d.ts +12 -0
  35. package/exports/ui.d.ts +10 -0
  36. package/exports/utils.d.ts +3 -0
  37. package/icons.js +1 -1
  38. package/{index-Cqxg4hfC.js → index-BLYh_r9b.js} +216 -167
  39. package/package.json +1 -1
  40. package/ui.js +4396 -2721
  41. package/veloce.css +1 -1
@@ -1,4 +1,4 @@
1
- import { AccordionItem } from '../exports/types';
1
+ import { AccordionItem, Size } from '../exports/types';
2
2
  import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
3
  declare function __VLS_template(): {
4
4
  attrs: Partial<{}>;
@@ -28,6 +28,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
28
28
  type: BooleanConstructor;
29
29
  default: boolean;
30
30
  };
31
+ bordered: {
32
+ type: BooleanConstructor;
33
+ default: boolean;
34
+ };
35
+ rounded: {
36
+ type: () => Size | "none";
37
+ default: string;
38
+ };
31
39
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
32
40
  items: {
33
41
  type: () => AccordionItem[];
@@ -49,11 +57,21 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
49
57
  type: BooleanConstructor;
50
58
  default: boolean;
51
59
  };
60
+ bordered: {
61
+ type: BooleanConstructor;
62
+ default: boolean;
63
+ };
64
+ rounded: {
65
+ type: () => Size | "none";
66
+ default: string;
67
+ };
52
68
  }>> & Readonly<{}>, {
53
69
  shadow: boolean;
54
70
  contentClass: string;
55
71
  headerClass: string;
56
72
  multiple: boolean;
73
+ bordered: boolean;
74
+ rounded: "none" | Size;
57
75
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
58
76
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
59
77
  export default _default;
@@ -0,0 +1,58 @@
1
+ import { Severity, Size } from '../exports/types';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare function __VLS_template(): {
4
+ attrs: Partial<{}>;
5
+ slots: {
6
+ default?(_: {}): any;
7
+ };
8
+ refs: {};
9
+ rootEl: HTMLSpanElement;
10
+ };
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
13
+ value: {
14
+ type: (StringConstructor | NumberConstructor)[];
15
+ default: string;
16
+ };
17
+ severity: {
18
+ type: () => Severity;
19
+ default: string;
20
+ };
21
+ size: {
22
+ type: () => Size;
23
+ default: string;
24
+ };
25
+ dot: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
29
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
30
+ value: {
31
+ type: (StringConstructor | NumberConstructor)[];
32
+ default: string;
33
+ };
34
+ severity: {
35
+ type: () => Severity;
36
+ default: string;
37
+ };
38
+ size: {
39
+ type: () => Size;
40
+ default: string;
41
+ };
42
+ dot: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ }>> & Readonly<{}>, {
47
+ size: Size;
48
+ value: string | number;
49
+ severity: Severity;
50
+ dot: boolean;
51
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLSpanElement>;
52
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
53
+ export default _default;
54
+ type __VLS_WithTemplateSlots<T, S> = T & {
55
+ new (): {
56
+ $slots: S;
57
+ };
58
+ };
@@ -55,11 +55,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
55
55
  type: () => FontWeight;
56
56
  default: FontWeight;
57
57
  };
58
- showLogs: {
58
+ neumorphic: {
59
59
  type: BooleanConstructor;
60
60
  default: boolean;
61
61
  };
62
- neumorphic: {
62
+ highlighted: {
63
63
  type: BooleanConstructor;
64
64
  default: boolean;
65
65
  };
@@ -108,28 +108,28 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
108
108
  type: () => FontWeight;
109
109
  default: FontWeight;
110
110
  };
111
- showLogs: {
111
+ neumorphic: {
112
112
  type: BooleanConstructor;
113
113
  default: boolean;
114
114
  };
115
- neumorphic: {
115
+ highlighted: {
116
116
  type: BooleanConstructor;
117
117
  default: boolean;
118
118
  };
119
119
  }>> & Readonly<{}>, {
120
120
  label: string;
121
121
  loading: boolean;
122
- icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out";
122
+ icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out" | "bold" | "italic" | "highlight";
123
123
  size: Size;
124
124
  fontWeight: FontWeight;
125
125
  rounded: boolean;
126
+ severity: Severity;
126
127
  disabled: boolean;
127
128
  variant: Variant;
128
- severity: Severity;
129
129
  iconClass: string;
130
130
  iconPosition: Position;
131
- showLogs: boolean;
132
131
  neumorphic: boolean;
132
+ highlighted: boolean;
133
133
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLButtonElement>;
134
134
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
135
135
  export default _default;
@@ -74,7 +74,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
74
74
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
75
75
  }>, {
76
76
  label: string;
77
- icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out";
77
+ icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out" | "bold" | "italic" | "highlight";
78
78
  size: CheckboxSize;
79
79
  disabled: boolean;
80
80
  variant: CheckboxVariant;
@@ -0,0 +1,81 @@
1
+ import { Icons } from '../exports/icons';
2
+ import { Severity, Size } from '../exports/types';
3
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
4
+ declare function __VLS_template(): {
5
+ attrs: Partial<{}>;
6
+ slots: {
7
+ default?(_: {}): any;
8
+ };
9
+ refs: {};
10
+ rootEl: HTMLDivElement;
11
+ };
12
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
14
+ label: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ icon: {
19
+ type: () => Icons;
20
+ default: string;
21
+ };
22
+ removable: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ };
26
+ severity: {
27
+ type: () => Severity;
28
+ default: string;
29
+ };
30
+ size: {
31
+ type: () => Size;
32
+ default: string;
33
+ };
34
+ rounded: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
39
+ remove: () => any;
40
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
41
+ label: {
42
+ type: StringConstructor;
43
+ default: string;
44
+ };
45
+ icon: {
46
+ type: () => Icons;
47
+ default: string;
48
+ };
49
+ removable: {
50
+ type: BooleanConstructor;
51
+ default: boolean;
52
+ };
53
+ severity: {
54
+ type: () => Severity;
55
+ default: string;
56
+ };
57
+ size: {
58
+ type: () => Size;
59
+ default: string;
60
+ };
61
+ rounded: {
62
+ type: BooleanConstructor;
63
+ default: boolean;
64
+ };
65
+ }>> & Readonly<{
66
+ onRemove?: (() => any) | undefined;
67
+ }>, {
68
+ label: string;
69
+ icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out" | "bold" | "italic" | "highlight";
70
+ size: Size;
71
+ rounded: boolean;
72
+ severity: Severity;
73
+ removable: boolean;
74
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
75
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
76
+ export default _default;
77
+ type __VLS_WithTemplateSlots<T, S> = T & {
78
+ new (): {
79
+ $slots: S;
80
+ };
81
+ };
@@ -0,0 +1,62 @@
1
+ import { Icons } from '../exports/icons';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare function __VLS_template(): {
4
+ attrs: Partial<{}>;
5
+ slots: {
6
+ default?(_: {}): any;
7
+ };
8
+ refs: {};
9
+ rootEl: HTMLFieldSetElement;
10
+ };
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
13
+ legend: {
14
+ type: StringConstructor;
15
+ default: string;
16
+ };
17
+ icon: {
18
+ type: () => Icons;
19
+ default: string;
20
+ };
21
+ toggleable: {
22
+ type: BooleanConstructor;
23
+ default: boolean;
24
+ };
25
+ collapsed: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
29
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
30
+ "update:collapsed": (value: boolean) => any;
31
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
32
+ legend: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ icon: {
37
+ type: () => Icons;
38
+ default: string;
39
+ };
40
+ toggleable: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ collapsed: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ }>> & Readonly<{
49
+ "onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
50
+ }>, {
51
+ legend: string;
52
+ icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out" | "bold" | "italic" | "highlight";
53
+ toggleable: boolean;
54
+ collapsed: boolean;
55
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLFieldSetElement>;
56
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
57
+ export default _default;
58
+ type __VLS_WithTemplateSlots<T, S> = T & {
59
+ new (): {
60
+ $slots: S;
61
+ };
62
+ };
@@ -91,8 +91,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
91
91
  size: Size;
92
92
  placeholder: string;
93
93
  iconClass: string;
94
- leadingIcon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out";
95
- trailingIcon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out";
94
+ leadingIcon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out" | "bold" | "italic" | "highlight";
95
+ trailingIcon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out" | "bold" | "italic" | "highlight";
96
96
  helpText: string;
97
97
  labelStyle: "float" | "static";
98
98
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
@@ -0,0 +1,14 @@
1
+ import { JsonRendererItem } from '../exports/types';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ json: {
5
+ type: () => JsonRendererItem[];
6
+ required: true;
7
+ };
8
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
9
+ json: {
10
+ type: () => JsonRendererItem[];
11
+ required: true;
12
+ };
13
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
14
+ export default _default;
@@ -0,0 +1,38 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ 'header-actions'?(_: {}): any;
6
+ sidebar?(_: {
7
+ showSidebar: true;
8
+ onClose: () => void;
9
+ }): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
16
+ brandName: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
21
+ sidebar: (showSidebar: boolean) => any;
22
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
23
+ brandName: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ }>> & Readonly<{
28
+ onSidebar?: ((showSidebar: boolean) => any) | undefined;
29
+ }>, {
30
+ brandName: string;
31
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
32
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
33
+ export default _default;
34
+ type __VLS_WithTemplateSlots<T, S> = T & {
35
+ new (): {
36
+ $slots: S;
37
+ };
38
+ };
@@ -0,0 +1,154 @@
1
+ import { Icons } from '../exports/icons';
2
+ import { Margin, Padding, Severity, Variant } from '../exports/types';
3
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
4
+ declare function __VLS_template(): {
5
+ attrs: Partial<{}>;
6
+ slots: {
7
+ icon?(_: {}): any;
8
+ default?(_: {}): any;
9
+ };
10
+ refs: {};
11
+ rootEl: HTMLDivElement;
12
+ };
13
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
15
+ severity: {
16
+ type: () => Severity;
17
+ default: string;
18
+ };
19
+ variant: {
20
+ type: () => Variant;
21
+ default: string;
22
+ };
23
+ icon: {
24
+ type: () => Icons;
25
+ default: string;
26
+ };
27
+ closable: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ margin: {
32
+ type: () => Margin;
33
+ default: string;
34
+ };
35
+ marginLeft: {
36
+ type: () => Margin;
37
+ default: string;
38
+ };
39
+ marginRight: {
40
+ type: () => Margin;
41
+ default: string;
42
+ };
43
+ marginTop: {
44
+ type: () => Margin;
45
+ default: string;
46
+ };
47
+ marginBottom: {
48
+ type: () => Margin;
49
+ default: string;
50
+ };
51
+ padding: {
52
+ type: () => Padding;
53
+ default: string;
54
+ };
55
+ paddingLeft: {
56
+ type: () => Padding;
57
+ default: string;
58
+ };
59
+ paddingRight: {
60
+ type: () => Padding;
61
+ default: string;
62
+ };
63
+ paddingTop: {
64
+ type: () => Padding;
65
+ default: string;
66
+ };
67
+ paddingBottom: {
68
+ type: () => Padding;
69
+ default: string;
70
+ };
71
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
72
+ close: () => any;
73
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
74
+ severity: {
75
+ type: () => Severity;
76
+ default: string;
77
+ };
78
+ variant: {
79
+ type: () => Variant;
80
+ default: string;
81
+ };
82
+ icon: {
83
+ type: () => Icons;
84
+ default: string;
85
+ };
86
+ closable: {
87
+ type: BooleanConstructor;
88
+ default: boolean;
89
+ };
90
+ margin: {
91
+ type: () => Margin;
92
+ default: string;
93
+ };
94
+ marginLeft: {
95
+ type: () => Margin;
96
+ default: string;
97
+ };
98
+ marginRight: {
99
+ type: () => Margin;
100
+ default: string;
101
+ };
102
+ marginTop: {
103
+ type: () => Margin;
104
+ default: string;
105
+ };
106
+ marginBottom: {
107
+ type: () => Margin;
108
+ default: string;
109
+ };
110
+ padding: {
111
+ type: () => Padding;
112
+ default: string;
113
+ };
114
+ paddingLeft: {
115
+ type: () => Padding;
116
+ default: string;
117
+ };
118
+ paddingRight: {
119
+ type: () => Padding;
120
+ default: string;
121
+ };
122
+ paddingTop: {
123
+ type: () => Padding;
124
+ default: string;
125
+ };
126
+ paddingBottom: {
127
+ type: () => Padding;
128
+ default: string;
129
+ };
130
+ }>> & Readonly<{
131
+ onClose?: (() => any) | undefined;
132
+ }>, {
133
+ icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out" | "bold" | "italic" | "highlight";
134
+ margin: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
135
+ marginLeft: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
136
+ marginRight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
137
+ marginTop: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
138
+ marginBottom: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
139
+ padding: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
140
+ paddingLeft: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
141
+ paddingRight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
142
+ paddingTop: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
143
+ paddingBottom: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
144
+ severity: Severity;
145
+ variant: Variant;
146
+ closable: boolean;
147
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
148
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
149
+ export default _default;
150
+ type __VLS_WithTemplateSlots<T, S> = T & {
151
+ new (): {
152
+ $slots: S;
153
+ };
154
+ };
@@ -0,0 +1,12 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ type __VLS_Props = {
3
+ modelValue: string;
4
+ };
5
+ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
6
+ "update:modelValue": (value: string) => any;
7
+ }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
10
+ editor: HTMLDivElement;
11
+ }, HTMLDivElement>;
12
+ export default _default;