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