qy-ui-for-ls 0.1.0 → 0.1.2

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 (61) hide show
  1. package/README.md +1 -1
  2. package/dist/client/main.d.ts +1 -0
  3. package/dist/components/button/index.d.ts +127 -0
  4. package/dist/components/button/src/index.vue.d.ts +75 -0
  5. package/dist/components/card/index.d.ts +95 -0
  6. package/dist/components/card/src/index.vue.d.ts +59 -0
  7. package/dist/components/descriptions/index.d.ts +158 -0
  8. package/dist/components/descriptions/src/index.vue.d.ts +94 -0
  9. package/dist/components/descriptions/src/renderTooltip.vue.d.ts +9 -0
  10. package/dist/components/detail/index.d.ts +193 -0
  11. package/dist/components/detail/src/Enum.d.ts +12 -0
  12. package/dist/components/dia/index.d.ts +44 -0
  13. package/dist/components/dia/src/index.vue.d.ts +28 -0
  14. package/dist/components/editor/index.d.ts +186 -0
  15. package/dist/components/editor/src/index.vue.d.ts +72 -0
  16. package/dist/components/editor/src/mentionModal.vue.d.ts +9 -0
  17. package/dist/components/form/index.d.ts +190 -0
  18. package/dist/components/form/src/formItem.vue.d.ts +27 -0
  19. package/dist/components/form/src/index.vue.d.ts +108 -0
  20. package/dist/components/pagination/index.d.ts +40 -0
  21. package/dist/components/pagination/src/index.vue.d.ts +38 -0
  22. package/dist/components/player/index.d.ts +2 -0
  23. package/dist/components/svg-icon/index.d.ts +54 -0
  24. package/dist/components/svg-icon/src/index.vue.d.ts +27 -0
  25. package/dist/components/table-plus/index.d.ts +3088 -0
  26. package/dist/components/table-plus/src/Grid/interface/index.d.ts +5 -0
  27. package/dist/components/table-plus/src/SearchForm/SearchFormItem.vue.d.ts +29 -0
  28. package/dist/components/table-plus/src/SearchForm/index.vue.d.ts +44 -0
  29. package/dist/components/table-plus/src/components/ColSetting.vue.d.ts +20 -0
  30. package/dist/components/table-plus/src/components/TableColumn.vue.d.ts +18 -0
  31. package/dist/components/table-plus/src/components/Tabs.vue.d.ts +41 -0
  32. package/dist/components/table-plus/src/components/Tree.vue.d.ts +175 -0
  33. package/dist/components/table-plus/src/hooks/useApi.d.ts +10 -0
  34. package/dist/components/table-plus/src/hooks/useDownload.d.ts +9 -0
  35. package/dist/components/table-plus/src/hooks/useHandleData.d.ts +11 -0
  36. package/dist/components/table-plus/src/hooks/useSelection.d.ts +17 -0
  37. package/dist/components/table-plus/src/hooks/useTable.d.ts +47 -0
  38. package/dist/components/table-plus/src/index.vue.d.ts +1049 -0
  39. package/dist/components/table-plus/src/interface/index.d.ts +113 -0
  40. package/dist/components/table-plus/src/interface/tabs.d.ts +9 -0
  41. package/dist/components/table-plus/src/utils/index.d.ts +37 -0
  42. package/dist/components/title/index.d.ts +85 -0
  43. package/dist/components/title/src/index.vue.d.ts +51 -0
  44. package/dist/components/tree/index.d.ts +152 -0
  45. package/dist/components/tree/src/index.vue.d.ts +91 -0
  46. package/dist/components/upload/index.d.ts +223 -0
  47. package/dist/components/upload/src/index.vue.d.ts +78 -0
  48. package/dist/components/uploadImg/index.d.ts +284 -0
  49. package/dist/components/uploadImg/src/index.vue.d.ts +103 -0
  50. package/dist/components/user-select/index.d.ts +102 -0
  51. package/dist/components/user-select/src/index.vue.d.ts +50 -0
  52. package/dist/components/withInstall.d.ts +5 -0
  53. package/dist/index.d.ts +20 -0
  54. package/dist/plugins/SvgBuilder/index.d.ts +4 -0
  55. package/dist/plugins/index.d.ts +7 -0
  56. package/dist/qy-ui-for-ls.es.js +83439 -0
  57. package/dist/qy-ui-for-ls.es2.js +45 -0
  58. package/dist/style.css +1 -0
  59. package/dist/utils/styles.d.ts +1 -0
  60. package/dist/vite.svg +1 -0
  61. package/package.json +5 -5
@@ -0,0 +1,190 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
2
+ declare const QyForm: ({
3
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
4
+ configOptions: {
5
+ type: {
6
+ (arrayLength: number): any[];
7
+ (...items: any[]): any[];
8
+ new (arrayLength: number): any[];
9
+ new (...items: any[]): any[];
10
+ isArray(arg: any): arg is any[];
11
+ readonly prototype: any[];
12
+ from<T>(arrayLike: ArrayLike<T>): T[];
13
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
14
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
15
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
16
+ of<T>(...items: T[]): T[];
17
+ readonly [Symbol.species]: ArrayConstructor;
18
+ };
19
+ default: () => never[];
20
+ };
21
+ formProps: {
22
+ type: ObjectConstructor;
23
+ default: () => {};
24
+ };
25
+ modelValue: {
26
+ type: ObjectConstructor;
27
+ default: () => {};
28
+ };
29
+ column: {
30
+ type: NumberConstructor;
31
+ default: number;
32
+ };
33
+ labelWidth: {
34
+ type: StringConstructor;
35
+ default: string;
36
+ };
37
+ columnX: {
38
+ type: NumberConstructor;
39
+ default: number;
40
+ };
41
+ columnY: {
42
+ type: NumberConstructor;
43
+ default: number;
44
+ };
45
+ rules: {
46
+ type: ObjectConstructor;
47
+ default: () => {};
48
+ };
49
+ }>> & Readonly<{
50
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
51
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
52
+ "update:modelValue": (...args: any[]) => void;
53
+ }, PublicProps, {
54
+ columnX: number;
55
+ column: number;
56
+ labelWidth: string;
57
+ modelValue: Record<string, any>;
58
+ configOptions: any[];
59
+ formProps: Record<string, any>;
60
+ columnY: number;
61
+ rules: Record<string, any>;
62
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
63
+ P: {};
64
+ B: {};
65
+ D: {};
66
+ C: {};
67
+ M: {};
68
+ Defaults: {};
69
+ }, Readonly< ExtractPropTypes<{
70
+ configOptions: {
71
+ type: {
72
+ (arrayLength: number): any[];
73
+ (...items: any[]): any[];
74
+ new (arrayLength: number): any[];
75
+ new (...items: any[]): any[];
76
+ isArray(arg: any): arg is any[];
77
+ readonly prototype: any[];
78
+ from<T>(arrayLike: ArrayLike<T>): T[];
79
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
80
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
81
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
82
+ of<T>(...items: T[]): T[];
83
+ readonly [Symbol.species]: ArrayConstructor;
84
+ };
85
+ default: () => never[];
86
+ };
87
+ formProps: {
88
+ type: ObjectConstructor;
89
+ default: () => {};
90
+ };
91
+ modelValue: {
92
+ type: ObjectConstructor;
93
+ default: () => {};
94
+ };
95
+ column: {
96
+ type: NumberConstructor;
97
+ default: number;
98
+ };
99
+ labelWidth: {
100
+ type: StringConstructor;
101
+ default: string;
102
+ };
103
+ columnX: {
104
+ type: NumberConstructor;
105
+ default: number;
106
+ };
107
+ columnY: {
108
+ type: NumberConstructor;
109
+ default: number;
110
+ };
111
+ rules: {
112
+ type: ObjectConstructor;
113
+ default: () => {};
114
+ };
115
+ }>> & Readonly<{
116
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
117
+ }>, {}, {}, {}, {}, {
118
+ columnX: number;
119
+ column: number;
120
+ labelWidth: string;
121
+ modelValue: Record<string, any>;
122
+ configOptions: any[];
123
+ formProps: Record<string, any>;
124
+ columnY: number;
125
+ rules: Record<string, any>;
126
+ }>;
127
+ __isFragment?: never;
128
+ __isTeleport?: never;
129
+ __isSuspense?: never;
130
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
131
+ configOptions: {
132
+ type: {
133
+ (arrayLength: number): any[];
134
+ (...items: any[]): any[];
135
+ new (arrayLength: number): any[];
136
+ new (...items: any[]): any[];
137
+ isArray(arg: any): arg is any[];
138
+ readonly prototype: any[];
139
+ from<T>(arrayLike: ArrayLike<T>): T[];
140
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
141
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
142
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
143
+ of<T>(...items: T[]): T[];
144
+ readonly [Symbol.species]: ArrayConstructor;
145
+ };
146
+ default: () => never[];
147
+ };
148
+ formProps: {
149
+ type: ObjectConstructor;
150
+ default: () => {};
151
+ };
152
+ modelValue: {
153
+ type: ObjectConstructor;
154
+ default: () => {};
155
+ };
156
+ column: {
157
+ type: NumberConstructor;
158
+ default: number;
159
+ };
160
+ labelWidth: {
161
+ type: StringConstructor;
162
+ default: string;
163
+ };
164
+ columnX: {
165
+ type: NumberConstructor;
166
+ default: number;
167
+ };
168
+ columnY: {
169
+ type: NumberConstructor;
170
+ default: number;
171
+ };
172
+ rules: {
173
+ type: ObjectConstructor;
174
+ default: () => {};
175
+ };
176
+ }>> & Readonly<{
177
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
178
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
179
+ "update:modelValue": (...args: any[]) => void;
180
+ }, string, {
181
+ columnX: number;
182
+ column: number;
183
+ labelWidth: string;
184
+ modelValue: Record<string, any>;
185
+ configOptions: any[];
186
+ formProps: Record<string, any>;
187
+ columnY: number;
188
+ rules: Record<string, any>;
189
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin) & Record<string, any>;
190
+ export default QyForm;
@@ -0,0 +1,27 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
2
+ interface SearchFormItem {
3
+ column: any;
4
+ formData: {
5
+ [key: string]: any;
6
+ };
7
+ }
8
+ declare function __VLS_template(): {
9
+ default?(_: {}): any;
10
+ };
11
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SearchFormItem>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SearchFormItem>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
13
+ export default _default;
14
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
+ type __VLS_TypePropsToRuntimeProps<T> = {
16
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
17
+ type: PropType<__VLS_NonUndefinedable<T[K]>>;
18
+ } : {
19
+ type: PropType<T[K]>;
20
+ required: true;
21
+ };
22
+ };
23
+ type __VLS_WithTemplateSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
@@ -0,0 +1,108 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ configOptions: {
4
+ type: {
5
+ (arrayLength: number): any[];
6
+ (...items: any[]): any[];
7
+ new (arrayLength: number): any[];
8
+ new (...items: any[]): any[];
9
+ isArray(arg: any): arg is any[];
10
+ readonly prototype: any[];
11
+ from<T>(arrayLike: ArrayLike<T>): T[];
12
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
13
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
14
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
15
+ of<T>(...items: T[]): T[];
16
+ readonly [Symbol.species]: ArrayConstructor;
17
+ };
18
+ default: () => never[];
19
+ };
20
+ formProps: {
21
+ type: ObjectConstructor;
22
+ default: () => {};
23
+ };
24
+ modelValue: {
25
+ type: ObjectConstructor;
26
+ default: () => {};
27
+ };
28
+ column: {
29
+ type: NumberConstructor;
30
+ default: number;
31
+ };
32
+ labelWidth: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ columnX: {
37
+ type: NumberConstructor;
38
+ default: number;
39
+ };
40
+ columnY: {
41
+ type: NumberConstructor;
42
+ default: number;
43
+ };
44
+ rules: {
45
+ type: ObjectConstructor;
46
+ default: () => {};
47
+ };
48
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
49
+ "update:modelValue": (...args: any[]) => void;
50
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
51
+ configOptions: {
52
+ type: {
53
+ (arrayLength: number): any[];
54
+ (...items: any[]): any[];
55
+ new (arrayLength: number): any[];
56
+ new (...items: any[]): any[];
57
+ isArray(arg: any): arg is any[];
58
+ readonly prototype: any[];
59
+ from<T>(arrayLike: ArrayLike<T>): T[];
60
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
61
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
62
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
63
+ of<T>(...items: T[]): T[];
64
+ readonly [Symbol.species]: ArrayConstructor;
65
+ };
66
+ default: () => never[];
67
+ };
68
+ formProps: {
69
+ type: ObjectConstructor;
70
+ default: () => {};
71
+ };
72
+ modelValue: {
73
+ type: ObjectConstructor;
74
+ default: () => {};
75
+ };
76
+ column: {
77
+ type: NumberConstructor;
78
+ default: number;
79
+ };
80
+ labelWidth: {
81
+ type: StringConstructor;
82
+ default: string;
83
+ };
84
+ columnX: {
85
+ type: NumberConstructor;
86
+ default: number;
87
+ };
88
+ columnY: {
89
+ type: NumberConstructor;
90
+ default: number;
91
+ };
92
+ rules: {
93
+ type: ObjectConstructor;
94
+ default: () => {};
95
+ };
96
+ }>> & Readonly<{
97
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
98
+ }>, {
99
+ columnX: number;
100
+ column: number;
101
+ labelWidth: string;
102
+ modelValue: Record<string, any>;
103
+ configOptions: any[];
104
+ formProps: Record<string, any>;
105
+ columnY: number;
106
+ rules: Record<string, any>;
107
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
108
+ export default _default;
@@ -0,0 +1,40 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
2
+ declare const QyPagination: ({
3
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
4
+ align: {
5
+ type: PropType<"center" | "left" | "right">;
6
+ default: string;
7
+ };
8
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
9
+ align: "left" | "center" | "right";
10
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
11
+ P: {};
12
+ B: {};
13
+ D: {};
14
+ C: {};
15
+ M: {};
16
+ Defaults: {};
17
+ }, Readonly< ExtractPropTypes<{
18
+ align: {
19
+ type: PropType<"center" | "left" | "right">;
20
+ default: string;
21
+ };
22
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
23
+ align: "left" | "center" | "right";
24
+ }>;
25
+ __isFragment?: never;
26
+ __isTeleport?: never;
27
+ __isSuspense?: never;
28
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
29
+ align: {
30
+ type: PropType<"center" | "left" | "right">;
31
+ default: string;
32
+ };
33
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
34
+ align: "left" | "center" | "right";
35
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
36
+ $slots: {
37
+ default?(_: {}): any;
38
+ };
39
+ }) & Plugin) & Record<string, any>;
40
+ export default QyPagination;
@@ -0,0 +1,38 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
2
+ export interface PaginationProps {
3
+ align?: 'left' | 'center' | 'right';
4
+ }
5
+ declare function __VLS_template(): {
6
+ default?(_: {}): any;
7
+ };
8
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PaginationProps>, {
9
+ align: string;
10
+ }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PaginationProps>, {
11
+ align: string;
12
+ }>>> & Readonly<{}>, {
13
+ align: "left" | "center" | "right";
14
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
15
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
16
+ export default _default;
17
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
18
+ type __VLS_TypePropsToRuntimeProps<T> = {
19
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
20
+ type: PropType<__VLS_NonUndefinedable<T[K]>>;
21
+ } : {
22
+ type: PropType<T[K]>;
23
+ required: true;
24
+ };
25
+ };
26
+ type __VLS_WithDefaults<P, D> = {
27
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
28
+ default: D[K];
29
+ }> : P[K];
30
+ };
31
+ type __VLS_Prettify<T> = {
32
+ [K in keyof T]: T[K];
33
+ } & {};
34
+ type __VLS_WithTemplateSlots<T, S> = T & {
35
+ new (): {
36
+ $slots: S;
37
+ };
38
+ };
@@ -0,0 +1,2 @@
1
+ declare const QyPlayer: any;
2
+ export default QyPlayer;
@@ -0,0 +1,54 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
2
+ declare const QySvgIcon: ({
3
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
4
+ name: {
5
+ type: StringConstructor;
6
+ };
7
+ size: {
8
+ type: NumberConstructor;
9
+ default: () => number;
10
+ };
11
+ color: {
12
+ type: StringConstructor;
13
+ };
14
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
15
+ size: number;
16
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
17
+ P: {};
18
+ B: {};
19
+ D: {};
20
+ C: {};
21
+ M: {};
22
+ Defaults: {};
23
+ }, Readonly< ExtractPropTypes<{
24
+ name: {
25
+ type: StringConstructor;
26
+ };
27
+ size: {
28
+ type: NumberConstructor;
29
+ default: () => number;
30
+ };
31
+ color: {
32
+ type: StringConstructor;
33
+ };
34
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
35
+ size: number;
36
+ }>;
37
+ __isFragment?: never;
38
+ __isTeleport?: never;
39
+ __isSuspense?: never;
40
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
41
+ name: {
42
+ type: StringConstructor;
43
+ };
44
+ size: {
45
+ type: NumberConstructor;
46
+ default: () => number;
47
+ };
48
+ color: {
49
+ type: StringConstructor;
50
+ };
51
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
52
+ size: number;
53
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin) & Record<string, any>;
54
+ export default QySvgIcon;
@@ -0,0 +1,27 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ name: {
4
+ type: StringConstructor;
5
+ };
6
+ size: {
7
+ type: NumberConstructor;
8
+ default: () => number;
9
+ };
10
+ color: {
11
+ type: StringConstructor;
12
+ };
13
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
14
+ name: {
15
+ type: StringConstructor;
16
+ };
17
+ size: {
18
+ type: NumberConstructor;
19
+ default: () => number;
20
+ };
21
+ color: {
22
+ type: StringConstructor;
23
+ };
24
+ }>> & Readonly<{}>, {
25
+ size: number;
26
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
27
+ export default _default;