@fmdeui/fmui 1.0.93 → 1.0.94

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;
@@ -175,6 +28,10 @@ export declare const FmAutocomplete: {
175
28
  type: NumberConstructor;
176
29
  default: number;
177
30
  };
31
+ title: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
178
35
  params: {
179
36
  type: ObjectConstructor;
180
37
  default: () => void;
@@ -187,6 +44,30 @@ export declare const FmAutocomplete: {
187
44
  type: ObjectConstructor;
188
45
  default: () => void;
189
46
  };
47
+ orgService: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ orgAction: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ orgparas: {
56
+ type: ObjectConstructor;
57
+ default: () => void;
58
+ };
59
+ userService: {
60
+ type: StringConstructor;
61
+ default: string;
62
+ };
63
+ userAction: {
64
+ type: StringConstructor;
65
+ default: string;
66
+ };
67
+ userParams: {
68
+ type: ObjectConstructor;
69
+ default: () => void;
70
+ };
190
71
  name: {
191
72
  type: PropType<string>;
192
73
  required: true;
@@ -195,29 +76,109 @@ export declare const FmAutocomplete: {
195
76
  type: PropType<Number>;
196
77
  required: true;
197
78
  };
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
79
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
204
80
  reset: (...args: any[]) => void;
205
81
  select: (...args: any[]) => void;
206
82
  "update:id": (value: Number) => void;
207
83
  "update:name": (value: string) => void;
208
- }, string, {
84
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
85
+ placeholder: {
86
+ type: StringConstructor;
87
+ default: string;
88
+ };
89
+ atoService: {
90
+ type: StringConstructor;
91
+ default: string;
92
+ };
93
+ atoAction: {
94
+ type: StringConstructor;
95
+ default: string;
96
+ };
97
+ top: {
98
+ type: NumberConstructor;
99
+ default: number;
100
+ };
101
+ vId: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ };
105
+ vName: {
106
+ type: StringConstructor;
107
+ default: string;
108
+ };
109
+ qId: {
110
+ type: NumberConstructor;
111
+ default: number;
112
+ };
113
+ title: {
114
+ type: StringConstructor;
115
+ default: string;
116
+ };
117
+ params: {
118
+ type: ObjectConstructor;
119
+ default: () => void;
120
+ };
121
+ openType: {
122
+ type: NumberConstructor;
123
+ default: number;
124
+ };
125
+ openParams: {
126
+ type: ObjectConstructor;
127
+ default: () => void;
128
+ };
129
+ orgService: {
130
+ type: StringConstructor;
131
+ default: string;
132
+ };
133
+ orgAction: {
134
+ type: StringConstructor;
135
+ default: string;
136
+ };
137
+ orgparas: {
138
+ type: ObjectConstructor;
139
+ default: () => void;
140
+ };
141
+ userService: {
142
+ type: StringConstructor;
143
+ default: string;
144
+ };
145
+ userAction: {
146
+ type: StringConstructor;
147
+ default: string;
148
+ };
149
+ userParams: {
150
+ type: ObjectConstructor;
151
+ default: () => void;
152
+ };
153
+ name: {
154
+ type: PropType<string>;
155
+ required: true;
156
+ };
157
+ id: {
158
+ type: PropType<Number>;
159
+ required: true;
160
+ };
161
+ }>> & Readonly<{
162
+ onReset?: ((...args: any[]) => any) | undefined;
163
+ onSelect?: ((...args: any[]) => any) | undefined;
164
+ "onUpdate:id"?: ((value: Number) => any) | undefined;
165
+ "onUpdate:name"?: ((value: string) => any) | undefined;
166
+ }>, {
209
167
  top: number;
210
168
  params: Record<string, any>;
169
+ title: string;
211
170
  placeholder: string;
212
171
  vId: string;
172
+ orgService: string;
173
+ orgAction: string;
174
+ orgparas: Record<string, any>;
175
+ userService: string;
176
+ userAction: string;
177
+ userParams: Record<string, any>;
213
178
  atoService: string;
214
179
  atoAction: string;
215
180
  vName: string;
216
181
  qId: number;
217
182
  openType: number;
218
183
  openParams: Record<string, any>;
219
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
220
- $slots: {
221
- append?(_: {}): any;
222
- };
223
- });
184
+ }, {}, {}, {}, 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;
@@ -52,6 +43,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
52
43
  type: NumberConstructor;
53
44
  default: number;
54
45
  };
46
+ title: {
47
+ type: StringConstructor;
48
+ default: string;
49
+ };
55
50
  params: {
56
51
  type: ObjectConstructor;
57
52
  default: () => void;
@@ -71,6 +66,30 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
71
66
  type: ObjectConstructor;
72
67
  default: () => void;
73
68
  };
69
+ orgService: {
70
+ type: StringConstructor;
71
+ default: string;
72
+ };
73
+ orgAction: {
74
+ type: StringConstructor;
75
+ default: string;
76
+ };
77
+ orgparas: {
78
+ type: ObjectConstructor;
79
+ default: () => void;
80
+ };
81
+ userService: {
82
+ type: StringConstructor;
83
+ default: string;
84
+ };
85
+ userAction: {
86
+ type: StringConstructor;
87
+ default: string;
88
+ };
89
+ userParams: {
90
+ type: ObjectConstructor;
91
+ default: () => void;
92
+ };
74
93
  name: {
75
94
  type: PropType<string>;
76
95
  required: true;
@@ -128,6 +147,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
128
147
  type: NumberConstructor;
129
148
  default: number;
130
149
  };
150
+ title: {
151
+ type: StringConstructor;
152
+ default: string;
153
+ };
131
154
  params: {
132
155
  type: ObjectConstructor;
133
156
  default: () => void;
@@ -147,6 +170,30 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
147
170
  type: ObjectConstructor;
148
171
  default: () => void;
149
172
  };
173
+ orgService: {
174
+ type: StringConstructor;
175
+ default: string;
176
+ };
177
+ orgAction: {
178
+ type: StringConstructor;
179
+ default: string;
180
+ };
181
+ orgparas: {
182
+ type: ObjectConstructor;
183
+ default: () => void;
184
+ };
185
+ userService: {
186
+ type: StringConstructor;
187
+ default: string;
188
+ };
189
+ userAction: {
190
+ type: StringConstructor;
191
+ default: string;
192
+ };
193
+ userParams: {
194
+ type: ObjectConstructor;
195
+ default: () => void;
196
+ };
150
197
  name: {
151
198
  type: PropType<string>;
152
199
  required: true;
@@ -163,8 +210,15 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
163
210
  }>, {
164
211
  top: number;
165
212
  params: Record<string, any>;
213
+ title: string;
166
214
  placeholder: string;
167
215
  vId: string;
216
+ orgService: string;
217
+ orgAction: string;
218
+ orgparas: Record<string, any>;
219
+ userService: string;
220
+ userAction: string;
221
+ userParams: Record<string, any>;
168
222
  atoService: string;
169
223
  atoAction: string;
170
224
  vName: string;
@@ -172,10 +226,4 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
172
226
  openType: number;
173
227
  openParams: Record<string, any>;
174
228
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
175
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
176
229
  export default _default;
177
- type __VLS_WithTemplateSlots<T, S> = T & {
178
- new (): {
179
- $slots: S;
180
- };
181
- };