@halo-dev/components 0.0.0-alpha.3 → 0.0.0-alpha.5

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 (56) hide show
  1. package/dist/components/alert/Alert.vue.d.ts +7 -6
  2. package/dist/components/avatar/Avatar.vue.d.ts +80 -0
  3. package/dist/components/avatar/index.d.ts +1 -0
  4. package/dist/components/avatar/interface.d.ts +1 -0
  5. package/dist/components/button/Button.vue.d.ts +3 -11
  6. package/dist/components/card/Card.vue.d.ts +1 -1
  7. package/dist/components/checkbox/CheckBox.vue.d.ts +14 -10
  8. package/dist/components/checkbox/CheckBoxGroup.vue.d.ts +20 -19
  9. package/dist/components/codemirror/Codemirror.vue.d.ts +2 -8
  10. package/dist/components/dialog/Dialog.vue.d.ts +9 -13
  11. package/dist/components/dialog/dialog-manager.d.ts +12 -0
  12. package/dist/components/dialog/index.d.ts +1 -2
  13. package/dist/components/dialog/interface.d.ts +11 -0
  14. package/dist/components/empty/Empty.vue.d.ts +30 -0
  15. package/dist/components/empty/index.d.ts +1 -0
  16. package/dist/components/entity/Entity.vue.d.ts +61 -0
  17. package/dist/components/entity/EntityField.vue.d.ts +42 -0
  18. package/dist/components/entity/index.d.ts +2 -0
  19. package/dist/components/header/PageHeader.vue.d.ts +1 -1
  20. package/dist/components/input/Input.vue.d.ts +7 -7
  21. package/dist/components/menu/Menu.vue.d.ts +2 -4
  22. package/dist/components/menu/MenuItem.vue.d.ts +1 -5
  23. package/dist/components/menu/MenuLabel.vue.d.ts +1 -1
  24. package/dist/components/menu/index.d.ts +0 -1
  25. package/dist/components/modal/Modal.vue.d.ts +43 -8
  26. package/dist/components/pagination/Pagination.vue.d.ts +79 -0
  27. package/dist/components/radio/Radio.vue.d.ts +1 -6
  28. package/dist/components/radio/RadioGroup.vue.d.ts +10 -6
  29. package/dist/components/select/Option.vue.d.ts +1 -1
  30. package/dist/components/select/Select.vue.d.ts +7 -7
  31. package/dist/components/space/Space.vue.d.ts +3 -8
  32. package/dist/components/status/StatusDot.vue.d.ts +43 -0
  33. package/dist/components/status/index.d.ts +1 -0
  34. package/dist/components/status/interface.d.ts +1 -0
  35. package/dist/components/switch/Switch.vue.d.ts +1 -3
  36. package/dist/components/tabs/TabItem.vue.d.ts +2 -5
  37. package/dist/components/tabs/Tabbar.vue.d.ts +7 -9
  38. package/dist/components/tabs/Tabs.vue.d.ts +11 -16
  39. package/dist/components/tag/Tag.vue.d.ts +13 -6
  40. package/dist/components/textarea/Textarea.vue.d.ts +6 -0
  41. package/dist/components/toast/Toast.vue.d.ts +125 -0
  42. package/dist/components/toast/index.d.ts +1 -0
  43. package/dist/components/toast/interface.d.ts +10 -0
  44. package/dist/components/toast/toast-manager.d.ts +17 -0
  45. package/dist/components.d.ts +5 -0
  46. package/dist/halo-components.es.js +6253 -8077
  47. package/dist/halo-components.es.js.map +1 -1
  48. package/dist/halo-components.iife.js +13 -13
  49. package/dist/halo-components.iife.js.map +1 -1
  50. package/dist/icons/icons.d.ts +10 -1
  51. package/dist/style.css +1 -1
  52. package/package.json +11 -12
  53. package/dist/components/dialog/DialogProvider.vue.d.ts +0 -156
  54. package/dist/components/dialog/use-dialog.d.ts +0 -9
  55. package/dist/components/menu/RoutesMenu.d.ts +0 -14
  56. package/dist/components/menu/interface.d.ts +0 -12
@@ -9,10 +9,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
9
9
  title: {
10
10
  type: StringConstructor;
11
11
  required: false;
12
+ default: string;
12
13
  };
13
14
  description: {
14
15
  type: StringConstructor;
15
16
  required: false;
17
+ default: string;
16
18
  };
17
19
  closable: {
18
20
  type: BooleanConstructor;
@@ -21,12 +23,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
21
23
  };
22
24
  }, {
23
25
  TypeIcons: Record<Type, Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
24
- props: {
25
- type: Type;
26
- title?: string;
27
- description?: string;
28
- closable: boolean;
29
- };
26
+ props: any;
30
27
  emit: (event: "close") => void;
31
28
  classes: import("vue").ComputedRef<string[]>;
32
29
  handleClose: () => void;
@@ -40,10 +37,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
40
37
  title: {
41
38
  type: StringConstructor;
42
39
  required: false;
40
+ default: string;
43
41
  };
44
42
  description: {
45
43
  type: StringConstructor;
46
44
  required: false;
45
+ default: string;
47
46
  };
48
47
  closable: {
49
48
  type: BooleanConstructor;
@@ -54,6 +53,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
54
53
  onClose?: (...args: any[]) => any;
55
54
  }, {
56
55
  type: any;
56
+ title: string;
57
+ description: string;
57
58
  closable: boolean;
58
59
  }>;
59
60
  export default _sfc_main;
@@ -0,0 +1,80 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ src: {
3
+ type: StringConstructor;
4
+ required: false;
5
+ default: any;
6
+ };
7
+ alt: {
8
+ type: StringConstructor;
9
+ required: false;
10
+ default: any;
11
+ };
12
+ size: {
13
+ type: any;
14
+ required: false;
15
+ default: string;
16
+ };
17
+ width: {
18
+ type: StringConstructor;
19
+ required: false;
20
+ default: any;
21
+ };
22
+ height: {
23
+ type: StringConstructor;
24
+ required: false;
25
+ default: any;
26
+ };
27
+ circle: {
28
+ type: BooleanConstructor;
29
+ required: false;
30
+ default: boolean;
31
+ };
32
+ }, {
33
+ props: any;
34
+ isLoading: import("vue").Ref<boolean>;
35
+ error: import("vue").Ref<boolean>;
36
+ loadImage: () => Promise<unknown>;
37
+ classes: import("vue").ComputedRef<string[]>;
38
+ styles: import("vue").ComputedRef<Record<string, string>>;
39
+ placeholderText: import("vue").ComputedRef<string>;
40
+ IconErrorWarning: any;
41
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
42
+ src: {
43
+ type: StringConstructor;
44
+ required: false;
45
+ default: any;
46
+ };
47
+ alt: {
48
+ type: StringConstructor;
49
+ required: false;
50
+ default: any;
51
+ };
52
+ size: {
53
+ type: any;
54
+ required: false;
55
+ default: string;
56
+ };
57
+ width: {
58
+ type: StringConstructor;
59
+ required: false;
60
+ default: any;
61
+ };
62
+ height: {
63
+ type: StringConstructor;
64
+ required: false;
65
+ default: any;
66
+ };
67
+ circle: {
68
+ type: BooleanConstructor;
69
+ required: false;
70
+ default: boolean;
71
+ };
72
+ }>>, {
73
+ src: string;
74
+ alt: string;
75
+ size: any;
76
+ width: string;
77
+ height: string;
78
+ circle: boolean;
79
+ }>;
80
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ export { default as VAvatar } from "./Avatar.vue";
@@ -0,0 +1 @@
1
+ export declare type Size = "lg" | "md" | "sm" | "xs";
@@ -1,5 +1,3 @@
1
- import type { RouteLocationRaw } from "vue-router";
2
- import type { Size, Type } from "./interface";
3
1
  declare const _sfc_main: import("vue").DefineComponent<{
4
2
  type: {
5
3
  type: any;
@@ -34,17 +32,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
34
32
  route: {
35
33
  type: any;
36
34
  required: false;
35
+ default: any;
37
36
  };
38
37
  }, {
39
- props: {
40
- type: Type;
41
- size: Size;
42
- circle: boolean;
43
- block: boolean;
44
- disabled: boolean;
45
- loading: boolean;
46
- route?: RouteLocationRaw;
47
- };
38
+ props: any;
48
39
  router: import("vue-router").Router;
49
40
  emit: (event: "click") => void;
50
41
  classes: import("vue").ComputedRef<(string | {
@@ -95,6 +86,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
95
86
  route: {
96
87
  type: any;
97
88
  required: false;
89
+ default: any;
98
90
  };
99
91
  }>> & {
100
92
  onClick?: (...args: any[]) => any;
@@ -7,7 +7,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
7
7
  type: ArrayConstructor;
8
8
  required: false;
9
9
  };
10
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
10
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
11
11
  title: {
12
12
  type: StringConstructor;
13
13
  required: false;
@@ -7,22 +7,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
7
7
  value: {
8
8
  type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
9
9
  required: false;
10
+ default: any;
10
11
  };
11
12
  label: {
12
- type: StringConstructor;
13
+ type: StringConstructor[];
13
14
  required: false;
15
+ default: any;
14
16
  };
15
17
  name: {
16
- type: StringConstructor;
18
+ type: StringConstructor[];
17
19
  required: false;
20
+ default: any;
18
21
  };
19
22
  }, {
20
- props: {
21
- checked: boolean;
22
- value?: string | number | boolean;
23
- label?: string;
24
- name?: string;
25
- };
23
+ props: any;
26
24
  id: string;
27
25
  emit: {
28
26
  (event: "update:checked", value: boolean): void;
@@ -38,19 +36,25 @@ declare const _sfc_main: import("vue").DefineComponent<{
38
36
  value: {
39
37
  type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
40
38
  required: false;
39
+ default: any;
41
40
  };
42
41
  label: {
43
- type: StringConstructor;
42
+ type: StringConstructor[];
44
43
  required: false;
44
+ default: any;
45
45
  };
46
46
  name: {
47
- type: StringConstructor;
47
+ type: StringConstructor[];
48
48
  required: false;
49
+ default: any;
49
50
  };
50
51
  }>> & {
51
52
  "onUpdate:checked"?: (...args: any[]) => any;
52
53
  onChange?: (...args: any[]) => any;
53
54
  }, {
55
+ name: string;
56
+ value: string | number | boolean;
54
57
  checked: boolean;
58
+ label: string;
55
59
  }>;
56
60
  export default _sfc_main;
@@ -6,7 +6,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6
6
  };
7
7
  options: {
8
8
  type: ArrayConstructor;
9
- required: false;
9
+ required: true;
10
10
  };
11
11
  valueKey: {
12
12
  type: StringConstructor;
@@ -21,15 +21,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
21
21
  name: {
22
22
  type: StringConstructor;
23
23
  required: false;
24
+ default: any;
24
25
  };
25
26
  }, {
26
- props: {
27
- modelValue: string[];
28
- options?: Array<Record<string, string>>;
29
- valueKey: string;
30
- labelKey: string;
31
- name?: string;
32
- };
27
+ props: any;
33
28
  emit: {
34
29
  (event: "update:modelValue", value: string[]): void;
35
30
  (event: "change", value: string[]): void;
@@ -44,22 +39,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
44
39
  value: {
45
40
  type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
46
41
  required: false;
42
+ default: any;
47
43
  };
48
44
  label: {
49
- type: StringConstructor;
45
+ type: StringConstructor[];
50
46
  required: false;
47
+ default: any;
51
48
  };
52
49
  name: {
53
- type: StringConstructor;
50
+ type: StringConstructor[];
54
51
  required: false;
52
+ default: any;
55
53
  };
56
54
  }, {
57
- props: {
58
- checked: boolean;
59
- value?: string | number | boolean;
60
- label?: string;
61
- name?: string;
62
- };
55
+ props: any;
63
56
  id: string;
64
57
  emit: {
65
58
  (event: "update:checked", value: boolean): void;
@@ -75,20 +68,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
75
68
  value: {
76
69
  type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
77
70
  required: false;
71
+ default: any;
78
72
  };
79
73
  label: {
80
- type: StringConstructor;
74
+ type: StringConstructor[];
81
75
  required: false;
76
+ default: any;
82
77
  };
83
78
  name: {
84
- type: StringConstructor;
79
+ type: StringConstructor[];
85
80
  required: false;
81
+ default: any;
86
82
  };
87
83
  }>> & {
88
84
  "onUpdate:checked"?: (...args: any[]) => any;
89
85
  onChange?: (...args: any[]) => any;
90
86
  }, {
87
+ name: string;
88
+ value: string | number | boolean;
91
89
  checked: boolean;
90
+ label: string;
92
91
  }>;
93
92
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
94
93
  modelValue: {
@@ -98,7 +97,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
98
97
  };
99
98
  options: {
100
99
  type: ArrayConstructor;
101
- required: false;
100
+ required: true;
102
101
  };
103
102
  valueKey: {
104
103
  type: StringConstructor;
@@ -113,11 +112,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
113
112
  name: {
114
113
  type: StringConstructor;
115
114
  required: false;
115
+ default: any;
116
116
  };
117
117
  }>> & {
118
118
  onChange?: (...args: any[]) => any;
119
119
  "onUpdate:modelValue"?: (...args: any[]) => any;
120
120
  }, {
121
+ name: string;
121
122
  modelValue: unknown[];
122
123
  valueKey: string;
123
124
  labelKey: string;
@@ -1,4 +1,3 @@
1
- import type { EditorStateConfig } from "@codemirror/state";
2
1
  import { EditorState } from "@codemirror/state";
3
2
  import { EditorView } from "@codemirror/view";
4
3
  import { StreamLanguage } from "@codemirror/language";
@@ -27,12 +26,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
27
26
  languages: {
28
27
  yaml: StreamLanguage<unknown>;
29
28
  };
30
- props: {
31
- modelValue: string;
32
- height: string;
33
- language: "yaml";
34
- extensions: EditorStateConfig["extensions"];
35
- };
29
+ props: any;
36
30
  emit: {
37
31
  (e: "update:modelValue", value: string): void;
38
32
  (e: "change", value: string): void;
@@ -67,8 +61,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
67
61
  onChange?: (...args: any[]) => any;
68
62
  "onUpdate:modelValue"?: (...args: any[]) => any;
69
63
  }, {
70
- modelValue: string;
71
64
  height: string;
65
+ modelValue: string;
72
66
  language: string;
73
67
  extensions: any;
74
68
  }>;
@@ -37,23 +37,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
37
37
  onConfirm: {
38
38
  type: FunctionConstructor;
39
39
  required: false;
40
+ default: () => void;
40
41
  };
41
42
  onCancel: {
42
43
  type: FunctionConstructor;
43
44
  required: false;
45
+ default: () => void;
44
46
  };
45
47
  }, {
46
- props: {
47
- type: Type;
48
- title: string;
49
- description: string;
50
- confirmText: string;
51
- confirmType: ButtonType;
52
- cancelText: string;
53
- visible: boolean;
54
- onConfirm?: () => void;
55
- onCancel?: () => void;
56
- };
48
+ props: any;
57
49
  emit: {
58
50
  (event: "update:visible", visible: boolean): void;
59
51
  (event: "close"): void;
@@ -123,10 +115,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
123
115
  onConfirm: {
124
116
  type: FunctionConstructor;
125
117
  required: false;
118
+ default: () => void;
126
119
  };
127
120
  onCancel: {
128
121
  type: FunctionConstructor;
129
122
  required: false;
123
+ default: () => void;
130
124
  };
131
125
  }>> & {
132
126
  onClose?: (...args: any[]) => any;
@@ -135,9 +129,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
135
129
  type: any;
136
130
  title: string;
137
131
  description: string;
138
- confirmText: string;
132
+ visible: boolean;
139
133
  confirmType: any;
134
+ confirmText: string;
140
135
  cancelText: string;
141
- visible: boolean;
136
+ onConfirm: Function;
137
+ onCancel: Function;
142
138
  }>;
143
139
  export default _sfc_main;
@@ -0,0 +1,12 @@
1
+ import type { DialogProps } from "./interface";
2
+ export declare type DialogApiProps = Omit<DialogProps, "type" | "visible">;
3
+ export declare type DialogApi = (props?: DialogApiProps) => void;
4
+ export interface DialogEntry {
5
+ (props: DialogProps): void;
6
+ info: DialogApi;
7
+ success: DialogApi;
8
+ error: DialogApi;
9
+ warning: DialogApi;
10
+ }
11
+ declare const dialog: DialogEntry;
12
+ export { dialog as Dialog };
@@ -1,3 +1,2 @@
1
1
  export { default as VDialog } from "./Dialog.vue";
2
- export { default as VDialogProvider } from "./DialogProvider.vue";
3
- export * from "./use-dialog";
2
+ export { Dialog } from "./dialog-manager";
@@ -12,4 +12,15 @@ export interface useDialogOptions {
12
12
  onConfirm?: () => void;
13
13
  onCancel?: () => void;
14
14
  }
15
+ export interface DialogProps {
16
+ type?: Type;
17
+ visible?: boolean;
18
+ title?: string;
19
+ description?: string;
20
+ confirmType?: ButtonType;
21
+ confirmText?: string;
22
+ cancelText?: string;
23
+ onConfirm?: () => void;
24
+ onCancel?: () => void;
25
+ }
15
26
  export declare type useDialogUserOptions = Omit<useDialogOptions, "type" | "visible">;
@@ -0,0 +1,30 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ title: {
3
+ type: StringConstructor;
4
+ required: false;
5
+ };
6
+ message: {
7
+ type: StringConstructor;
8
+ required: false;
9
+ };
10
+ image: {
11
+ type: StringConstructor;
12
+ required: false;
13
+ };
14
+ }, {
15
+ Empty: string;
16
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
17
+ title: {
18
+ type: StringConstructor;
19
+ required: false;
20
+ };
21
+ message: {
22
+ type: StringConstructor;
23
+ required: false;
24
+ };
25
+ image: {
26
+ type: StringConstructor;
27
+ required: false;
28
+ };
29
+ }>>, {}>;
30
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ export { default as VEmpty } from "./Empty.vue";
@@ -0,0 +1,61 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ isSelected: {
3
+ type: BooleanConstructor;
4
+ required: false;
5
+ default: boolean;
6
+ };
7
+ }, {
8
+ props: any;
9
+ classes: import("vue").ComputedRef<any[]>;
10
+ VSpace: import("vue").DefineComponent<{
11
+ spacing: {
12
+ type: any;
13
+ required: false;
14
+ default: string;
15
+ };
16
+ direction: {
17
+ type: any;
18
+ required: false;
19
+ default: string;
20
+ };
21
+ align: {
22
+ type: any;
23
+ required: false;
24
+ default: string;
25
+ };
26
+ }, {
27
+ props: any;
28
+ wrapperClasses: import("vue").ComputedRef<string[]>;
29
+ SpacingSize: Record<string, number>;
30
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
31
+ spacing: {
32
+ type: any;
33
+ required: false;
34
+ default: string;
35
+ };
36
+ direction: {
37
+ type: any;
38
+ required: false;
39
+ default: string;
40
+ };
41
+ align: {
42
+ type: any;
43
+ required: false;
44
+ default: string;
45
+ };
46
+ }>>, {
47
+ align: any;
48
+ spacing: any;
49
+ direction: any;
50
+ }>;
51
+ IconMore: any;
52
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
53
+ isSelected: {
54
+ type: BooleanConstructor;
55
+ required: false;
56
+ default: boolean;
57
+ };
58
+ }>>, {
59
+ isSelected: boolean;
60
+ }>;
61
+ export default _sfc_main;
@@ -0,0 +1,42 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ title: {
3
+ type: StringConstructor;
4
+ required: false;
5
+ default: any;
6
+ };
7
+ description: {
8
+ type: StringConstructor;
9
+ required: false;
10
+ default: any;
11
+ };
12
+ route: {
13
+ type: any;
14
+ required: false;
15
+ default: any;
16
+ };
17
+ }, {
18
+ emit: (event: "click") => void;
19
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
20
+ title: {
21
+ type: StringConstructor;
22
+ required: false;
23
+ default: any;
24
+ };
25
+ description: {
26
+ type: StringConstructor;
27
+ required: false;
28
+ default: any;
29
+ };
30
+ route: {
31
+ type: any;
32
+ required: false;
33
+ default: any;
34
+ };
35
+ }>> & {
36
+ onClick?: (...args: any[]) => any;
37
+ }, {
38
+ title: string;
39
+ description: string;
40
+ route: any;
41
+ }>;
42
+ export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ export { default as VEntity } from "./Entity.vue";
2
+ export { default as VEntityField } from "./EntityField.vue";
@@ -3,7 +3,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3
3
  type: StringConstructor;
4
4
  required: false;
5
5
  };
6
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
6
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
7
  title: {
8
8
  type: StringConstructor;
9
9
  required: false;
@@ -1,8 +1,8 @@
1
- import type { Size } from "./interface";
2
1
  declare const _sfc_main: import("vue").DefineComponent<{
3
2
  modelValue: {
4
3
  type: StringConstructor;
5
4
  required: false;
5
+ default: any;
6
6
  };
7
7
  size: {
8
8
  type: any;
@@ -17,14 +17,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
17
17
  placeholder: {
18
18
  type: StringConstructor;
19
19
  required: false;
20
+ default: any;
20
21
  };
21
22
  }, {
22
- props: {
23
- modelValue?: string;
24
- size: Size;
25
- disabled: boolean;
26
- placeholder?: string;
27
- };
23
+ props: any;
28
24
  emit: (event: "update:modelValue", value: string) => void;
29
25
  classes: import("vue").ComputedRef<string[]>;
30
26
  handleInput: (e: Event) => void;
@@ -32,6 +28,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
32
28
  modelValue: {
33
29
  type: StringConstructor;
34
30
  required: false;
31
+ default: any;
35
32
  };
36
33
  size: {
37
34
  type: any;
@@ -46,11 +43,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
46
43
  placeholder: {
47
44
  type: StringConstructor;
48
45
  required: false;
46
+ default: any;
49
47
  };
50
48
  }>> & {
51
49
  "onUpdate:modelValue"?: (...args: any[]) => any;
52
50
  }, {
53
51
  size: any;
54
52
  disabled: boolean;
53
+ modelValue: string;
54
+ placeholder: string;
55
55
  }>;
56
56
  export default _sfc_main;
@@ -4,10 +4,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
4
4
  required: false;
5
5
  };
6
6
  }, {
7
- props: {
8
- openIds?: string[];
9
- };
10
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ props: any;
8
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
11
9
  openIds: {
12
10
  type: ArrayConstructor;
13
11
  required: false;