@fmdeui/fmui 1.0.93 → 1.0.95

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.
@@ -4,10 +4,38 @@ declare const _default: DefineComponent<ExtractPropTypes<{
4
4
  type: BooleanConstructor;
5
5
  default: boolean;
6
6
  };
7
+ title: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
7
11
  data: {
8
12
  type: ArrayConstructor;
9
13
  default: () => never[];
10
14
  };
15
+ orgService: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ orgAction: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ orgparas: {
24
+ type: ObjectConstructor;
25
+ default: () => void;
26
+ };
27
+ userService: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ userAction: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ userParams: {
36
+ type: ObjectConstructor;
37
+ default: () => void;
38
+ };
11
39
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12
40
  change: (...args: any[]) => void;
13
41
  "update:visible": (...args: any[]) => void;
@@ -16,16 +44,51 @@ declare const _default: DefineComponent<ExtractPropTypes<{
16
44
  type: BooleanConstructor;
17
45
  default: boolean;
18
46
  };
47
+ title: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
19
51
  data: {
20
52
  type: ArrayConstructor;
21
53
  default: () => never[];
22
54
  };
55
+ orgService: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ orgAction: {
60
+ type: StringConstructor;
61
+ default: string;
62
+ };
63
+ orgparas: {
64
+ type: ObjectConstructor;
65
+ default: () => void;
66
+ };
67
+ userService: {
68
+ type: StringConstructor;
69
+ default: string;
70
+ };
71
+ userAction: {
72
+ type: StringConstructor;
73
+ default: string;
74
+ };
75
+ userParams: {
76
+ type: ObjectConstructor;
77
+ default: () => void;
78
+ };
23
79
  }>> & Readonly<{
24
80
  onChange?: ((...args: any[]) => any) | undefined;
25
81
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
26
82
  }>, {
83
+ title: string;
27
84
  data: unknown[];
28
85
  visible: boolean;
86
+ orgService: string;
87
+ orgAction: string;
88
+ orgparas: Record<string, any>;
89
+ userService: string;
90
+ userAction: string;
91
+ userParams: Record<string, any>;
29
92
  }, {}, {}, {}, string, ComponentProvideOptions, true, {
30
93
  orgTreeRef: unknown;
31
94
  queryRef: unknown;
@@ -1,152 +1,5 @@
1
- import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
2
- export declare const FmAutocomplete: {
3
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
4
- placeholder: {
5
- type: StringConstructor;
6
- default: string;
7
- };
8
- atoService: {
9
- type: StringConstructor;
10
- default: string;
11
- };
12
- atoAction: {
13
- type: StringConstructor;
14
- default: string;
15
- };
16
- top: {
17
- type: NumberConstructor;
18
- default: number;
19
- };
20
- vId: {
21
- type: StringConstructor;
22
- default: string;
23
- };
24
- vName: {
25
- type: StringConstructor;
26
- default: string;
27
- };
28
- qId: {
29
- type: NumberConstructor;
30
- default: number;
31
- };
32
- params: {
33
- type: ObjectConstructor;
34
- default: () => void;
35
- };
36
- openType: {
37
- type: NumberConstructor;
38
- default: number;
39
- };
40
- openParams: {
41
- type: ObjectConstructor;
42
- default: () => void;
43
- };
44
- name: {
45
- type: PropType<string>;
46
- required: true;
47
- };
48
- id: {
49
- type: PropType<Number>;
50
- required: true;
51
- };
52
- }>> & Readonly<{
53
- onReset?: ((...args: any[]) => any) | undefined;
54
- onSelect?: ((...args: any[]) => any) | undefined;
55
- "onUpdate:id"?: ((value: Number) => any) | undefined;
56
- "onUpdate:name"?: ((value: string) => any) | undefined;
57
- }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
58
- reset: (...args: any[]) => void;
59
- select: (...args: any[]) => void;
60
- "update:id": (value: Number) => void;
61
- "update:name": (value: string) => void;
62
- }, PublicProps, {
63
- top: number;
64
- params: Record<string, any>;
65
- placeholder: string;
66
- vId: string;
67
- atoService: string;
68
- atoAction: string;
69
- vName: string;
70
- qId: number;
71
- openType: number;
72
- openParams: Record<string, any>;
73
- }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
74
- P: {};
75
- B: {};
76
- D: {};
77
- C: {};
78
- M: {};
79
- Defaults: {};
80
- }, Readonly< ExtractPropTypes<{
81
- placeholder: {
82
- type: StringConstructor;
83
- default: string;
84
- };
85
- atoService: {
86
- type: StringConstructor;
87
- default: string;
88
- };
89
- atoAction: {
90
- type: StringConstructor;
91
- default: string;
92
- };
93
- top: {
94
- type: NumberConstructor;
95
- default: number;
96
- };
97
- vId: {
98
- type: StringConstructor;
99
- default: string;
100
- };
101
- vName: {
102
- type: StringConstructor;
103
- default: string;
104
- };
105
- qId: {
106
- type: NumberConstructor;
107
- default: number;
108
- };
109
- params: {
110
- type: ObjectConstructor;
111
- default: () => void;
112
- };
113
- openType: {
114
- type: NumberConstructor;
115
- default: number;
116
- };
117
- openParams: {
118
- type: ObjectConstructor;
119
- default: () => void;
120
- };
121
- name: {
122
- type: PropType<string>;
123
- required: true;
124
- };
125
- id: {
126
- type: PropType<Number>;
127
- required: true;
128
- };
129
- }>> & Readonly<{
130
- onReset?: ((...args: any[]) => any) | undefined;
131
- onSelect?: ((...args: any[]) => any) | undefined;
132
- "onUpdate:id"?: ((value: Number) => any) | undefined;
133
- "onUpdate:name"?: ((value: string) => any) | undefined;
134
- }>, {}, {}, {}, {}, {
135
- top: number;
136
- params: Record<string, any>;
137
- placeholder: string;
138
- vId: string;
139
- atoService: string;
140
- atoAction: string;
141
- vName: string;
142
- qId: number;
143
- openType: number;
144
- openParams: Record<string, any>;
145
- }>;
146
- __isFragment?: never;
147
- __isTeleport?: never;
148
- __isSuspense?: never;
149
- } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
1
+ import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ export declare const FmAutocomplete: DefineComponent<ExtractPropTypes<{
150
3
  placeholder: {
151
4
  type: StringConstructor;
152
5
  default: string;
@@ -163,6 +16,10 @@ export declare const FmAutocomplete: {
163
16
  type: NumberConstructor;
164
17
  default: number;
165
18
  };
19
+ searchsize: {
20
+ type: NumberConstructor;
21
+ default: number;
22
+ };
166
23
  vId: {
167
24
  type: StringConstructor;
168
25
  default: string;
@@ -175,6 +32,10 @@ export declare const FmAutocomplete: {
175
32
  type: NumberConstructor;
176
33
  default: number;
177
34
  };
35
+ title: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
178
39
  params: {
179
40
  type: ObjectConstructor;
180
41
  default: () => void;
@@ -187,6 +48,30 @@ export declare const FmAutocomplete: {
187
48
  type: ObjectConstructor;
188
49
  default: () => void;
189
50
  };
51
+ orgService: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ orgAction: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ orgparas: {
60
+ type: ObjectConstructor;
61
+ default: () => void;
62
+ };
63
+ userService: {
64
+ type: StringConstructor;
65
+ default: string;
66
+ };
67
+ userAction: {
68
+ type: StringConstructor;
69
+ default: string;
70
+ };
71
+ userParams: {
72
+ type: ObjectConstructor;
73
+ default: () => void;
74
+ };
190
75
  name: {
191
76
  type: PropType<string>;
192
77
  required: true;
@@ -195,29 +80,114 @@ export declare const FmAutocomplete: {
195
80
  type: PropType<Number>;
196
81
  required: true;
197
82
  };
198
- }>> & Readonly<{
199
- onReset?: ((...args: any[]) => any) | undefined;
200
- onSelect?: ((...args: any[]) => any) | undefined;
201
- "onUpdate:id"?: ((value: Number) => any) | undefined;
202
- "onUpdate:name"?: ((value: string) => any) | undefined;
203
83
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
204
84
  reset: (...args: any[]) => void;
205
85
  select: (...args: any[]) => void;
206
86
  "update:id": (value: Number) => void;
207
87
  "update:name": (value: string) => void;
208
- }, string, {
88
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
89
+ placeholder: {
90
+ type: StringConstructor;
91
+ default: string;
92
+ };
93
+ atoService: {
94
+ type: StringConstructor;
95
+ default: string;
96
+ };
97
+ atoAction: {
98
+ type: StringConstructor;
99
+ default: string;
100
+ };
101
+ top: {
102
+ type: NumberConstructor;
103
+ default: number;
104
+ };
105
+ searchsize: {
106
+ type: NumberConstructor;
107
+ default: number;
108
+ };
109
+ vId: {
110
+ type: StringConstructor;
111
+ default: string;
112
+ };
113
+ vName: {
114
+ type: StringConstructor;
115
+ default: string;
116
+ };
117
+ qId: {
118
+ type: NumberConstructor;
119
+ default: number;
120
+ };
121
+ title: {
122
+ type: StringConstructor;
123
+ default: string;
124
+ };
125
+ params: {
126
+ type: ObjectConstructor;
127
+ default: () => void;
128
+ };
129
+ openType: {
130
+ type: NumberConstructor;
131
+ default: number;
132
+ };
133
+ openParams: {
134
+ type: ObjectConstructor;
135
+ default: () => void;
136
+ };
137
+ orgService: {
138
+ type: StringConstructor;
139
+ default: string;
140
+ };
141
+ orgAction: {
142
+ type: StringConstructor;
143
+ default: string;
144
+ };
145
+ orgparas: {
146
+ type: ObjectConstructor;
147
+ default: () => void;
148
+ };
149
+ userService: {
150
+ type: StringConstructor;
151
+ default: string;
152
+ };
153
+ userAction: {
154
+ type: StringConstructor;
155
+ default: string;
156
+ };
157
+ userParams: {
158
+ type: ObjectConstructor;
159
+ default: () => void;
160
+ };
161
+ name: {
162
+ type: PropType<string>;
163
+ required: true;
164
+ };
165
+ id: {
166
+ type: PropType<Number>;
167
+ required: true;
168
+ };
169
+ }>> & Readonly<{
170
+ onReset?: ((...args: any[]) => any) | undefined;
171
+ onSelect?: ((...args: any[]) => any) | undefined;
172
+ "onUpdate:id"?: ((value: Number) => any) | undefined;
173
+ "onUpdate:name"?: ((value: string) => any) | undefined;
174
+ }>, {
209
175
  top: number;
210
176
  params: Record<string, any>;
177
+ title: string;
211
178
  placeholder: string;
212
179
  vId: string;
180
+ orgService: string;
181
+ orgAction: string;
182
+ orgparas: Record<string, any>;
183
+ userService: string;
184
+ userAction: string;
185
+ userParams: Record<string, any>;
213
186
  atoService: string;
214
187
  atoAction: string;
188
+ searchsize: number;
215
189
  vName: string;
216
190
  qId: number;
217
191
  openType: number;
218
192
  openParams: Record<string, any>;
219
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
220
- $slots: {
221
- append?(_: {}): any;
222
- };
223
- });
193
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -1,14 +1,5 @@
1
1
  import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
- declare function __VLS_template(): {
3
- attrs: Partial<{}>;
4
- slots: {
5
- append?(_: {}): any;
6
- };
7
- refs: {};
8
- rootEl: any;
9
- };
10
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
- declare const __VLS_component: DefineComponent<ExtractPropTypes<{
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
12
3
  placeholder: {
13
4
  type: StringConstructor;
14
5
  default: string;
@@ -31,6 +22,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
31
22
  type: NumberConstructor;
32
23
  default: number;
33
24
  };
25
+ searchsize: {
26
+ type: NumberConstructor;
27
+ default: number;
28
+ };
34
29
  /**
35
30
  * 值的属性值
36
31
  */
@@ -52,6 +47,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
52
47
  type: NumberConstructor;
53
48
  default: number;
54
49
  };
50
+ title: {
51
+ type: StringConstructor;
52
+ default: string;
53
+ };
55
54
  params: {
56
55
  type: ObjectConstructor;
57
56
  default: () => void;
@@ -71,6 +70,30 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
71
70
  type: ObjectConstructor;
72
71
  default: () => void;
73
72
  };
73
+ orgService: {
74
+ type: StringConstructor;
75
+ default: string;
76
+ };
77
+ orgAction: {
78
+ type: StringConstructor;
79
+ default: string;
80
+ };
81
+ orgparas: {
82
+ type: ObjectConstructor;
83
+ default: () => void;
84
+ };
85
+ userService: {
86
+ type: StringConstructor;
87
+ default: string;
88
+ };
89
+ userAction: {
90
+ type: StringConstructor;
91
+ default: string;
92
+ };
93
+ userParams: {
94
+ type: ObjectConstructor;
95
+ default: () => void;
96
+ };
74
97
  name: {
75
98
  type: PropType<string>;
76
99
  required: true;
@@ -107,6 +130,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
107
130
  type: NumberConstructor;
108
131
  default: number;
109
132
  };
133
+ searchsize: {
134
+ type: NumberConstructor;
135
+ default: number;
136
+ };
110
137
  /**
111
138
  * 值的属性值
112
139
  */
@@ -128,6 +155,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
128
155
  type: NumberConstructor;
129
156
  default: number;
130
157
  };
158
+ title: {
159
+ type: StringConstructor;
160
+ default: string;
161
+ };
131
162
  params: {
132
163
  type: ObjectConstructor;
133
164
  default: () => void;
@@ -147,6 +178,30 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
147
178
  type: ObjectConstructor;
148
179
  default: () => void;
149
180
  };
181
+ orgService: {
182
+ type: StringConstructor;
183
+ default: string;
184
+ };
185
+ orgAction: {
186
+ type: StringConstructor;
187
+ default: string;
188
+ };
189
+ orgparas: {
190
+ type: ObjectConstructor;
191
+ default: () => void;
192
+ };
193
+ userService: {
194
+ type: StringConstructor;
195
+ default: string;
196
+ };
197
+ userAction: {
198
+ type: StringConstructor;
199
+ default: string;
200
+ };
201
+ userParams: {
202
+ type: ObjectConstructor;
203
+ default: () => void;
204
+ };
150
205
  name: {
151
206
  type: PropType<string>;
152
207
  required: true;
@@ -163,19 +218,21 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
163
218
  }>, {
164
219
  top: number;
165
220
  params: Record<string, any>;
221
+ title: string;
166
222
  placeholder: string;
167
223
  vId: string;
224
+ orgService: string;
225
+ orgAction: string;
226
+ orgparas: Record<string, any>;
227
+ userService: string;
228
+ userAction: string;
229
+ userParams: Record<string, any>;
168
230
  atoService: string;
169
231
  atoAction: string;
232
+ searchsize: number;
170
233
  vName: string;
171
234
  qId: number;
172
235
  openType: number;
173
236
  openParams: Record<string, any>;
174
237
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
175
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
176
238
  export default _default;
177
- type __VLS_WithTemplateSlots<T, S> = T & {
178
- new (): {
179
- $slots: S;
180
- };
181
- };