qy-ui-for-ls 0.1.1 → 0.1.3

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/dist/client/main.d.ts +1 -0
  2. package/dist/components/button/index.d.ts +127 -0
  3. package/dist/components/button/src/index.vue.d.ts +75 -0
  4. package/dist/components/card/index.d.ts +95 -0
  5. package/dist/components/card/src/index.vue.d.ts +59 -0
  6. package/dist/components/descriptions/index.d.ts +158 -0
  7. package/dist/components/descriptions/src/index.vue.d.ts +94 -0
  8. package/dist/components/descriptions/src/renderTooltip.vue.d.ts +9 -0
  9. package/dist/components/detail/index.d.ts +193 -0
  10. package/dist/components/detail/src/Enum.d.ts +12 -0
  11. package/dist/components/dia/index.d.ts +44 -0
  12. package/dist/components/dia/src/index.vue.d.ts +28 -0
  13. package/dist/components/editor/index.d.ts +186 -0
  14. package/dist/components/editor/src/index.vue.d.ts +72 -0
  15. package/dist/components/editor/src/mentionModal.vue.d.ts +9 -0
  16. package/dist/components/form/index.d.ts +190 -0
  17. package/dist/components/form/src/formItem.vue.d.ts +27 -0
  18. package/dist/components/form/src/index.vue.d.ts +108 -0
  19. package/dist/components/pagination/index.d.ts +40 -0
  20. package/dist/components/pagination/src/index.vue.d.ts +38 -0
  21. package/dist/components/player/index.d.ts +2 -0
  22. package/dist/components/svg-icon/index.d.ts +54 -0
  23. package/dist/components/svg-icon/src/index.vue.d.ts +27 -0
  24. package/dist/components/table-plus/index.d.ts +3088 -0
  25. package/dist/components/table-plus/src/Grid/interface/index.d.ts +5 -0
  26. package/dist/components/table-plus/src/SearchForm/SearchFormItem.vue.d.ts +29 -0
  27. package/dist/components/table-plus/src/SearchForm/index.vue.d.ts +44 -0
  28. package/dist/components/table-plus/src/components/ColSetting.vue.d.ts +20 -0
  29. package/dist/components/table-plus/src/components/Pagination.vue.d.ts +57 -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 +83811 -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 +1 -1
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,127 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
2
+ declare const QyDemoButton: ({
3
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
4
+ time: {
5
+ type: NumberConstructor;
6
+ default: number;
7
+ };
8
+ tip: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
12
+ placement: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ tipProps: {
17
+ type: ObjectConstructor;
18
+ default: () => {};
19
+ };
20
+ minWidth: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ type: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ }>> & Readonly<{
29
+ onClick?: ((...args: any[]) => any) | undefined;
30
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
31
+ click: (...args: any[]) => void;
32
+ }, PublicProps, {
33
+ type: string;
34
+ time: number;
35
+ tip: string;
36
+ placement: string;
37
+ tipProps: Record<string, any>;
38
+ minWidth: string;
39
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
40
+ P: {};
41
+ B: {};
42
+ D: {};
43
+ C: {};
44
+ M: {};
45
+ Defaults: {};
46
+ }, Readonly< ExtractPropTypes<{
47
+ time: {
48
+ type: NumberConstructor;
49
+ default: number;
50
+ };
51
+ tip: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ placement: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ tipProps: {
60
+ type: ObjectConstructor;
61
+ default: () => {};
62
+ };
63
+ minWidth: {
64
+ type: StringConstructor;
65
+ default: string;
66
+ };
67
+ type: {
68
+ type: StringConstructor;
69
+ default: string;
70
+ };
71
+ }>> & Readonly<{
72
+ onClick?: ((...args: any[]) => any) | undefined;
73
+ }>, {}, {}, {}, {}, {
74
+ type: string;
75
+ time: number;
76
+ tip: string;
77
+ placement: string;
78
+ tipProps: Record<string, any>;
79
+ minWidth: string;
80
+ }>;
81
+ __isFragment?: never;
82
+ __isTeleport?: never;
83
+ __isSuspense?: never;
84
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
85
+ time: {
86
+ type: NumberConstructor;
87
+ default: number;
88
+ };
89
+ tip: {
90
+ type: StringConstructor;
91
+ default: string;
92
+ };
93
+ placement: {
94
+ type: StringConstructor;
95
+ default: string;
96
+ };
97
+ tipProps: {
98
+ type: ObjectConstructor;
99
+ default: () => {};
100
+ };
101
+ minWidth: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ };
105
+ type: {
106
+ type: StringConstructor;
107
+ default: string;
108
+ };
109
+ }>> & Readonly<{
110
+ onClick?: ((...args: any[]) => any) | undefined;
111
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
112
+ click: (...args: any[]) => void;
113
+ }, string, {
114
+ type: string;
115
+ time: number;
116
+ tip: string;
117
+ placement: string;
118
+ tipProps: Record<string, any>;
119
+ minWidth: string;
120
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
121
+ $slots: {
122
+ default?(_: {}): any;
123
+ icon?(_: {}): any;
124
+ loading?(_: {}): any;
125
+ };
126
+ }) & Plugin) & Record<string, any>;
127
+ export default QyDemoButton;
@@ -0,0 +1,75 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare function __VLS_template(): {
3
+ default?(_: {}): any;
4
+ icon?(_: {}): any;
5
+ loading?(_: {}): any;
6
+ };
7
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
8
+ time: {
9
+ type: NumberConstructor;
10
+ default: number;
11
+ };
12
+ tip: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ placement: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ tipProps: {
21
+ type: ObjectConstructor;
22
+ default: () => {};
23
+ };
24
+ minWidth: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ type: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
33
+ click: (...args: any[]) => void;
34
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
35
+ time: {
36
+ type: NumberConstructor;
37
+ default: number;
38
+ };
39
+ tip: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
43
+ placement: {
44
+ type: StringConstructor;
45
+ default: string;
46
+ };
47
+ tipProps: {
48
+ type: ObjectConstructor;
49
+ default: () => {};
50
+ };
51
+ minWidth: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ type: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ }>> & Readonly<{
60
+ onClick?: ((...args: any[]) => any) | undefined;
61
+ }>, {
62
+ type: string;
63
+ time: number;
64
+ tip: string;
65
+ placement: string;
66
+ tipProps: Record<string, any>;
67
+ minWidth: string;
68
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
69
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
70
+ export default _default;
71
+ type __VLS_WithTemplateSlots<T, S> = T & {
72
+ new (): {
73
+ $slots: S;
74
+ };
75
+ };
@@ -0,0 +1,95 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, CSSProperties, StyleValue, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
2
+ import { TitlePorps } from '../title/src/index.vue';
3
+ declare const QyCard: ({
4
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
5
+ mode: {
6
+ type: PropType<"default" | "ghostHead">;
7
+ default: string;
8
+ };
9
+ titlePorps: {
10
+ type: PropType<TitlePorps>;
11
+ default: {
12
+ text: string;
13
+ };
14
+ };
15
+ showHeader: {
16
+ type: PropType<boolean>;
17
+ default: boolean;
18
+ };
19
+ bodyStyle: {
20
+ type: PropType<string | false | CSSProperties | StyleValue[] | null>;
21
+ default: string;
22
+ };
23
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
24
+ mode: "default" | "ghostHead";
25
+ titlePorps: TitlePorps;
26
+ showHeader: boolean;
27
+ bodyStyle: string | false | CSSProperties | StyleValue[] | null;
28
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
29
+ P: {};
30
+ B: {};
31
+ D: {};
32
+ C: {};
33
+ M: {};
34
+ Defaults: {};
35
+ }, Readonly< ExtractPropTypes<{
36
+ mode: {
37
+ type: PropType<"default" | "ghostHead">;
38
+ default: string;
39
+ };
40
+ titlePorps: {
41
+ type: PropType<TitlePorps>;
42
+ default: {
43
+ text: string;
44
+ };
45
+ };
46
+ showHeader: {
47
+ type: PropType<boolean>;
48
+ default: boolean;
49
+ };
50
+ bodyStyle: {
51
+ type: PropType<string | false | CSSProperties | StyleValue[] | null>;
52
+ default: string;
53
+ };
54
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
55
+ mode: "default" | "ghostHead";
56
+ titlePorps: TitlePorps;
57
+ showHeader: boolean;
58
+ bodyStyle: string | false | CSSProperties | StyleValue[] | null;
59
+ }>;
60
+ __isFragment?: never;
61
+ __isTeleport?: never;
62
+ __isSuspense?: never;
63
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
64
+ mode: {
65
+ type: PropType<"default" | "ghostHead">;
66
+ default: string;
67
+ };
68
+ titlePorps: {
69
+ type: PropType<TitlePorps>;
70
+ default: {
71
+ text: string;
72
+ };
73
+ };
74
+ showHeader: {
75
+ type: PropType<boolean>;
76
+ default: boolean;
77
+ };
78
+ bodyStyle: {
79
+ type: PropType<string | false | CSSProperties | StyleValue[] | null>;
80
+ default: string;
81
+ };
82
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
83
+ mode: "default" | "ghostHead";
84
+ titlePorps: TitlePorps;
85
+ showHeader: boolean;
86
+ bodyStyle: string | false | CSSProperties | StyleValue[] | null;
87
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
88
+ $slots: {
89
+ titleIcon?(_: {}): any;
90
+ haderExtra?(_: {}): any;
91
+ default?(_: {}): any;
92
+ footer?(_: {}): any;
93
+ };
94
+ }) & Plugin) & Record<string, any>;
95
+ export default QyCard;
@@ -0,0 +1,59 @@
1
+ import { StyleValue, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, CSSProperties, ComponentProvideOptions, PropType } from 'vue';
2
+ import { TitlePorps } from '../../title/src/index.vue';
3
+
4
+ export interface cardProps {
5
+ titlePorps?: TitlePorps;
6
+ showHeader?: boolean;
7
+ mode?: 'default' | 'ghostHead';
8
+ bodyStyle?: StyleValue;
9
+ }
10
+ declare function __VLS_template(): {
11
+ titleIcon?(_: {}): any;
12
+ haderExtra?(_: {}): any;
13
+ default?(_: {}): any;
14
+ footer?(_: {}): any;
15
+ };
16
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<cardProps>, {
17
+ titlePorps: {
18
+ text: string;
19
+ };
20
+ bodyStyle: string;
21
+ showHeader: boolean;
22
+ mode: string;
23
+ }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<cardProps>, {
24
+ titlePorps: {
25
+ text: string;
26
+ };
27
+ bodyStyle: string;
28
+ showHeader: boolean;
29
+ mode: string;
30
+ }>>> & Readonly<{}>, {
31
+ mode: "default" | "ghostHead";
32
+ titlePorps: TitlePorps;
33
+ showHeader: boolean;
34
+ bodyStyle: string | false | CSSProperties | StyleValue[] | null;
35
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
36
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
37
+ export default _default;
38
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
39
+ type __VLS_TypePropsToRuntimeProps<T> = {
40
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
41
+ type: PropType<__VLS_NonUndefinedable<T[K]>>;
42
+ } : {
43
+ type: PropType<T[K]>;
44
+ required: true;
45
+ };
46
+ };
47
+ type __VLS_WithDefaults<P, D> = {
48
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
49
+ default: D[K];
50
+ }> : P[K];
51
+ };
52
+ type __VLS_Prettify<T> = {
53
+ [K in keyof T]: T[K];
54
+ } & {};
55
+ type __VLS_WithTemplateSlots<T, S> = T & {
56
+ new (): {
57
+ $slots: S;
58
+ };
59
+ };
@@ -0,0 +1,158 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
2
+ declare const QyDescriptions: ({
3
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
4
+ descColumn: {
5
+ type: NumberConstructor;
6
+ default: number;
7
+ };
8
+ colon: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ dataList: {
13
+ type: ObjectConstructor;
14
+ default: () => {};
15
+ };
16
+ listTypeInfo: {
17
+ type: ObjectConstructor;
18
+ default: () => {};
19
+ };
20
+ descData: {
21
+ type: any[];
22
+ default: () => never[];
23
+ };
24
+ labelColor: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ color: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ offsetX: {
33
+ type: NumberConstructor;
34
+ default: number;
35
+ };
36
+ columnX: {
37
+ type: NumberConstructor;
38
+ default: number;
39
+ };
40
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
41
+ descColumn: number;
42
+ colon: boolean;
43
+ dataList: Record<string, any>;
44
+ listTypeInfo: Record<string, any>;
45
+ descData: Date | null;
46
+ labelColor: string;
47
+ color: string;
48
+ offsetX: number;
49
+ columnX: number;
50
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
51
+ P: {};
52
+ B: {};
53
+ D: {};
54
+ C: {};
55
+ M: {};
56
+ Defaults: {};
57
+ }, Readonly< ExtractPropTypes<{
58
+ descColumn: {
59
+ type: NumberConstructor;
60
+ default: number;
61
+ };
62
+ colon: {
63
+ type: BooleanConstructor;
64
+ default: boolean;
65
+ };
66
+ dataList: {
67
+ type: ObjectConstructor;
68
+ default: () => {};
69
+ };
70
+ listTypeInfo: {
71
+ type: ObjectConstructor;
72
+ default: () => {};
73
+ };
74
+ descData: {
75
+ type: any[];
76
+ default: () => never[];
77
+ };
78
+ labelColor: {
79
+ type: StringConstructor;
80
+ default: string;
81
+ };
82
+ color: {
83
+ type: StringConstructor;
84
+ default: string;
85
+ };
86
+ offsetX: {
87
+ type: NumberConstructor;
88
+ default: number;
89
+ };
90
+ columnX: {
91
+ type: NumberConstructor;
92
+ default: number;
93
+ };
94
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
95
+ descColumn: number;
96
+ colon: boolean;
97
+ dataList: Record<string, any>;
98
+ listTypeInfo: Record<string, any>;
99
+ descData: Date | null;
100
+ labelColor: string;
101
+ color: string;
102
+ offsetX: number;
103
+ columnX: number;
104
+ }>;
105
+ __isFragment?: never;
106
+ __isTeleport?: never;
107
+ __isSuspense?: never;
108
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
109
+ descColumn: {
110
+ type: NumberConstructor;
111
+ default: number;
112
+ };
113
+ colon: {
114
+ type: BooleanConstructor;
115
+ default: boolean;
116
+ };
117
+ dataList: {
118
+ type: ObjectConstructor;
119
+ default: () => {};
120
+ };
121
+ listTypeInfo: {
122
+ type: ObjectConstructor;
123
+ default: () => {};
124
+ };
125
+ descData: {
126
+ type: any[];
127
+ default: () => never[];
128
+ };
129
+ labelColor: {
130
+ type: StringConstructor;
131
+ default: string;
132
+ };
133
+ color: {
134
+ type: StringConstructor;
135
+ default: string;
136
+ };
137
+ offsetX: {
138
+ type: NumberConstructor;
139
+ default: number;
140
+ };
141
+ columnX: {
142
+ type: NumberConstructor;
143
+ default: number;
144
+ };
145
+ }>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
146
+ descColumn: number;
147
+ colon: boolean;
148
+ dataList: Record<string, any>;
149
+ listTypeInfo: Record<string, any>;
150
+ descData: Date | null;
151
+ labelColor: string;
152
+ color: string;
153
+ offsetX: number;
154
+ columnX: number;
155
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
156
+ $slots: Partial<Record<any, (_: {}) => any>>;
157
+ }) & Plugin) & Record<string, any>;
158
+ export default QyDescriptions;
@@ -0,0 +1,94 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare function __VLS_template(): Partial<Record<any, (_: {}) => any>>;
3
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
4
+ descColumn: {
5
+ type: NumberConstructor;
6
+ default: number;
7
+ };
8
+ colon: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ dataList: {
13
+ type: ObjectConstructor;
14
+ default: () => {};
15
+ };
16
+ listTypeInfo: {
17
+ type: ObjectConstructor;
18
+ default: () => {};
19
+ };
20
+ descData: {
21
+ type: any[];
22
+ default: () => never[];
23
+ };
24
+ labelColor: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ color: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ offsetX: {
33
+ type: NumberConstructor;
34
+ default: number;
35
+ };
36
+ columnX: {
37
+ type: NumberConstructor;
38
+ default: number;
39
+ };
40
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
41
+ descColumn: {
42
+ type: NumberConstructor;
43
+ default: number;
44
+ };
45
+ colon: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ dataList: {
50
+ type: ObjectConstructor;
51
+ default: () => {};
52
+ };
53
+ listTypeInfo: {
54
+ type: ObjectConstructor;
55
+ default: () => {};
56
+ };
57
+ descData: {
58
+ type: any[];
59
+ default: () => never[];
60
+ };
61
+ labelColor: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ color: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
69
+ offsetX: {
70
+ type: NumberConstructor;
71
+ default: number;
72
+ };
73
+ columnX: {
74
+ type: NumberConstructor;
75
+ default: number;
76
+ };
77
+ }>> & Readonly<{}>, {
78
+ descColumn: number;
79
+ colon: boolean;
80
+ dataList: Record<string, any>;
81
+ listTypeInfo: Record<string, any>;
82
+ descData: Date | null;
83
+ labelColor: string;
84
+ color: string;
85
+ offsetX: number;
86
+ columnX: number;
87
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
88
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
89
+ export default _default;
90
+ type __VLS_WithTemplateSlots<T, S> = T & {
91
+ new (): {
92
+ $slots: S;
93
+ };
94
+ };
@@ -0,0 +1,9 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ render: FunctionConstructor;
4
+ item: ObjectConstructor;
5
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
6
+ render: FunctionConstructor;
7
+ item: ObjectConstructor;
8
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
9
+ export default _default;