@omnia/fx 8.0.141-dev → 8.0.143-dev
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.
- package/internal-do-not-import-from-here/ux/blueprintpickers/backgroundstyle/BackgroundStyleEditor.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/blueprintpickers/chrome/ChromePicker.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/IconStyleEditor.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/IconStylePicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/blueprintpickers/spacingpicker/SpacingPicker3.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabs/TabStylePicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/TextStylePicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/blueprintpickers/typography/TypographyPicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/borderpicker/BorderPicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/fillpicker/FillPicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/pickerwrapper/PickerWrapper.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/theming-v2/actionhandler/ThemeDesignerAction.d.ts +69 -0
- package/internal-do-not-import-from-here/ux/theming-v2/actionhandler/ThemeDesignerClickHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/components/store/ComponentEditorStore.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/spacing/store/SpacingEditorStore.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/typography/store/TypographyEditorStore.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/colorschemas/store/ColorSchemaEditorStore.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/templates/store/TemplateEditorStore.d.ts +15 -15
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/themedesigner/ThemeDesigner.d.ts +10 -4
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/themes/store/ThemeEditorStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/store/BlueprintTemplatesStore.d.ts +0 -182
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaDefinitionStore.d.ts +0 -51
- package/internal-do-not-import-from-here/ux/theming-v2/store/TemplateRegistrationStore.d.ts +54 -0
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeDefinitionStoreV2.d.ts +0 -65
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemingService.d.ts +6 -43
- package/internal-do-not-import-from-here/ux/theming-v2/store/index.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/theming-v2/themepicker/ThemePicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/core/actions/Clone.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronActions.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +68 -403
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditorAction.d.ts +69 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditorClickHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ComponentCreator.d.ts +68 -38
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Reference.d.ts +6 -6
- package/internal-do-not-import-from-here/wctypings.d.ts +38 -8
- package/package.json +2 -2
@@ -1,412 +1,77 @@
|
|
1
|
-
import {
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
2
|
+
import { nextTick, VNodeChild } from "vue";
|
2
3
|
import { VelcronAppDefinition } from "@omnia/fx-models";
|
3
4
|
export type DefinitionChanged = (definition: VelcronAppDefinition) => void;
|
4
|
-
declare const _default: {
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
required: false;
|
26
|
-
};
|
27
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
28
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
29
|
-
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
30
|
-
type: import("vue").PropType<boolean>;
|
31
|
-
required: false;
|
32
|
-
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
33
|
-
type: import("vue").PropType<boolean>;
|
34
|
-
required: false;
|
35
|
-
}; } & {
|
36
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, boolean, {
|
37
|
-
"onUpdate:modelValue": {
|
38
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
39
|
-
};
|
40
|
-
} & {
|
41
|
-
"v-model": {
|
42
|
-
type: import("vue").PropType<boolean>;
|
43
|
-
required: false;
|
44
|
-
};
|
45
|
-
} & {
|
46
|
-
modelValue: {
|
47
|
-
type: import("vue").PropType<boolean>;
|
48
|
-
required: false;
|
49
|
-
};
|
50
|
-
}>;
|
51
|
-
defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, boolean, {
|
52
|
-
"onUpdate:modelValue": {
|
53
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
54
|
-
};
|
55
|
-
} & {
|
56
|
-
"v-model": {
|
57
|
-
type: import("vue").PropType<boolean>;
|
58
|
-
required: false;
|
59
|
-
};
|
60
|
-
} & {
|
61
|
-
modelValue: {
|
62
|
-
type: import("vue").PropType<boolean>;
|
63
|
-
required: false;
|
64
|
-
};
|
65
|
-
}, false>;
|
66
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, boolean, {
|
67
|
-
"onUpdate:modelValue": {
|
68
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
69
|
-
};
|
70
|
-
} & {
|
71
|
-
"v-model": {
|
72
|
-
type: import("vue").PropType<boolean>;
|
73
|
-
required: false;
|
74
|
-
};
|
75
|
-
} & {
|
76
|
-
modelValue: {
|
77
|
-
type: import("vue").PropType<boolean>;
|
78
|
-
required: false;
|
79
|
-
};
|
80
|
-
}>;
|
81
|
-
};
|
82
|
-
}>> & {
|
83
|
-
onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
|
84
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
85
|
-
save: (appDefinition: VelcronAppDefinition) => true;
|
86
|
-
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
87
|
-
"v-slots": import("vue").Prop<{
|
88
|
-
default?: import("../../DefineVueTypings").Slot<any[]>;
|
89
|
-
} & {
|
90
|
-
activator?: () => VNodeChild;
|
91
|
-
}>;
|
92
|
-
definition: {
|
93
|
-
type: import("vue").PropType<VelcronAppDefinition<object>>;
|
94
|
-
} & {
|
95
|
-
type: import("vue").PropType<VelcronAppDefinition<object>>;
|
96
|
-
};
|
97
|
-
"onUpdate:modelValue": {
|
98
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
99
|
-
};
|
100
|
-
"v-model": {
|
101
|
-
type: import("vue").PropType<boolean>;
|
102
|
-
required: false;
|
103
|
-
};
|
104
|
-
modelValue: {
|
105
|
-
type: import("vue").PropType<boolean>;
|
106
|
-
required: false;
|
107
|
-
};
|
108
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
109
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
110
|
-
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
111
|
-
type: import("vue").PropType<boolean>;
|
112
|
-
required: false;
|
113
|
-
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
114
|
-
type: import("vue").PropType<boolean>;
|
115
|
-
required: false;
|
116
|
-
}; } & {
|
117
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, boolean, {
|
118
|
-
"onUpdate:modelValue": {
|
119
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
120
|
-
};
|
121
|
-
} & {
|
122
|
-
"v-model": {
|
123
|
-
type: import("vue").PropType<boolean>;
|
124
|
-
required: false;
|
125
|
-
};
|
126
|
-
} & {
|
127
|
-
modelValue: {
|
128
|
-
type: import("vue").PropType<boolean>;
|
129
|
-
required: false;
|
130
|
-
};
|
131
|
-
}>;
|
132
|
-
defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, boolean, {
|
133
|
-
"onUpdate:modelValue": {
|
134
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
135
|
-
};
|
136
|
-
} & {
|
137
|
-
"v-model": {
|
138
|
-
type: import("vue").PropType<boolean>;
|
139
|
-
required: false;
|
140
|
-
};
|
141
|
-
} & {
|
142
|
-
modelValue: {
|
143
|
-
type: import("vue").PropType<boolean>;
|
144
|
-
required: false;
|
145
|
-
};
|
146
|
-
}, false>;
|
147
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, boolean, {
|
148
|
-
"onUpdate:modelValue": {
|
149
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
150
|
-
};
|
151
|
-
} & {
|
152
|
-
"v-model": {
|
153
|
-
type: import("vue").PropType<boolean>;
|
154
|
-
required: false;
|
155
|
-
};
|
156
|
-
} & {
|
157
|
-
modelValue: {
|
158
|
-
type: import("vue").PropType<boolean>;
|
159
|
-
required: false;
|
160
|
-
};
|
161
|
-
}>;
|
162
|
-
};
|
163
|
-
}>> & {
|
164
|
-
onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
|
165
|
-
}, {}, true, {}, {}, {
|
166
|
-
P: {};
|
167
|
-
B: {};
|
168
|
-
D: {};
|
169
|
-
C: {};
|
170
|
-
M: {};
|
171
|
-
Defaults: {};
|
172
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
173
|
-
"v-slots": import("vue").Prop<{
|
174
|
-
default?: import("../../DefineVueTypings").Slot<any[]>;
|
175
|
-
} & {
|
176
|
-
activator?: () => VNodeChild;
|
177
|
-
}>;
|
178
|
-
definition: {
|
179
|
-
type: import("vue").PropType<VelcronAppDefinition<object>>;
|
180
|
-
} & {
|
181
|
-
type: import("vue").PropType<VelcronAppDefinition<object>>;
|
182
|
-
};
|
183
|
-
"onUpdate:modelValue": {
|
184
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
185
|
-
};
|
186
|
-
"v-model": {
|
187
|
-
type: import("vue").PropType<boolean>;
|
188
|
-
required: false;
|
189
|
-
};
|
190
|
-
modelValue: {
|
191
|
-
type: import("vue").PropType<boolean>;
|
192
|
-
required: false;
|
193
|
-
};
|
194
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
195
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
196
|
-
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
197
|
-
type: import("vue").PropType<boolean>;
|
198
|
-
required: false;
|
199
|
-
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
200
|
-
type: import("vue").PropType<boolean>;
|
201
|
-
required: false;
|
202
|
-
}; } & {
|
203
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, boolean, {
|
204
|
-
"onUpdate:modelValue": {
|
205
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
206
|
-
};
|
207
|
-
} & {
|
208
|
-
"v-model": {
|
209
|
-
type: import("vue").PropType<boolean>;
|
210
|
-
required: false;
|
211
|
-
};
|
212
|
-
} & {
|
213
|
-
modelValue: {
|
214
|
-
type: import("vue").PropType<boolean>;
|
215
|
-
required: false;
|
216
|
-
};
|
217
|
-
}>;
|
218
|
-
defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, boolean, {
|
219
|
-
"onUpdate:modelValue": {
|
220
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
221
|
-
};
|
222
|
-
} & {
|
223
|
-
"v-model": {
|
224
|
-
type: import("vue").PropType<boolean>;
|
225
|
-
required: false;
|
226
|
-
};
|
227
|
-
} & {
|
228
|
-
modelValue: {
|
229
|
-
type: import("vue").PropType<boolean>;
|
230
|
-
required: false;
|
231
|
-
};
|
232
|
-
}, false>;
|
233
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, boolean, {
|
234
|
-
"onUpdate:modelValue": {
|
235
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
236
|
-
};
|
237
|
-
} & {
|
238
|
-
"v-model": {
|
239
|
-
type: import("vue").PropType<boolean>;
|
240
|
-
required: false;
|
241
|
-
};
|
242
|
-
} & {
|
243
|
-
modelValue: {
|
244
|
-
type: import("vue").PropType<boolean>;
|
245
|
-
required: false;
|
246
|
-
};
|
247
|
-
}>;
|
248
|
-
};
|
249
|
-
}>> & {
|
250
|
-
onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
|
251
|
-
}, () => JSX.Element, {}, {}, {}, {}>;
|
252
|
-
__isFragment?: never;
|
253
|
-
__isTeleport?: never;
|
254
|
-
__isSuspense?: never;
|
255
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
256
|
-
"v-slots": import("vue").Prop<{
|
257
|
-
default?: import("../../DefineVueTypings").Slot<any[]>;
|
258
|
-
} & {
|
259
|
-
activator?: () => VNodeChild;
|
260
|
-
}>;
|
261
|
-
definition: {
|
262
|
-
type: import("vue").PropType<VelcronAppDefinition<object>>;
|
263
|
-
} & {
|
264
|
-
type: import("vue").PropType<VelcronAppDefinition<object>>;
|
265
|
-
};
|
266
|
-
"onUpdate:modelValue": {
|
267
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
5
|
+
declare const _default: (props: {
|
6
|
+
"v-model"?: boolean;
|
7
|
+
} & {
|
8
|
+
"onUpdate:modelValue"?: (value: boolean) => void;
|
9
|
+
} & {
|
10
|
+
modelValue?: boolean;
|
11
|
+
} & {
|
12
|
+
definition?: VelcronAppDefinition<object>;
|
13
|
+
} & Omit<{
|
14
|
+
"onClick:close"?: () => any;
|
15
|
+
onSave?: (definition: VelcronAppDefinition<object>) => any;
|
16
|
+
}, "definition" | "v-model" | "onUpdate:modelValue" | "modelValue"> & {
|
17
|
+
"v-slots"?: {
|
18
|
+
default?: import("vue").Slot;
|
19
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
20
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "definition" | "v-model" | "onUpdate:modelValue" | "modelValue">) => {
|
21
|
+
$: import("vue").ComponentInternalInstance;
|
22
|
+
$data: {};
|
23
|
+
$props: {};
|
24
|
+
$attrs: {
|
25
|
+
[x: string]: unknown;
|
268
26
|
};
|
269
|
-
|
270
|
-
|
271
|
-
required: false;
|
27
|
+
$refs: {
|
28
|
+
[x: string]: unknown;
|
272
29
|
};
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
}
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
}
|
296
|
-
modelValue: {
|
297
|
-
type: import("vue").PropType<boolean>;
|
298
|
-
required: false;
|
299
|
-
};
|
300
|
-
}>;
|
301
|
-
defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, boolean, {
|
302
|
-
"onUpdate:modelValue": {
|
303
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
304
|
-
};
|
305
|
-
} & {
|
306
|
-
"v-model": {
|
307
|
-
type: import("vue").PropType<boolean>;
|
308
|
-
required: false;
|
309
|
-
};
|
310
|
-
} & {
|
311
|
-
modelValue: {
|
312
|
-
type: import("vue").PropType<boolean>;
|
313
|
-
required: false;
|
314
|
-
};
|
315
|
-
}, false>;
|
316
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, boolean, {
|
317
|
-
"onUpdate:modelValue": {
|
318
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
319
|
-
};
|
320
|
-
} & {
|
321
|
-
"v-model": {
|
322
|
-
type: import("vue").PropType<boolean>;
|
323
|
-
required: false;
|
324
|
-
};
|
325
|
-
} & {
|
326
|
-
modelValue: {
|
327
|
-
type: import("vue").PropType<boolean>;
|
328
|
-
required: false;
|
329
|
-
};
|
330
|
-
}>;
|
30
|
+
$slots: Readonly<{
|
31
|
+
[name: string]: import("vue").Slot<any>;
|
32
|
+
}>;
|
33
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
34
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
35
|
+
$emit: (event: string, ...args: any[]) => void;
|
36
|
+
$el: any;
|
37
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
38
|
+
beforeCreate?: (() => void) | (() => void)[];
|
39
|
+
created?: (() => void) | (() => void)[];
|
40
|
+
beforeMount?: (() => void) | (() => void)[];
|
41
|
+
mounted?: (() => void) | (() => void)[];
|
42
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
43
|
+
updated?: (() => void) | (() => void)[];
|
44
|
+
activated?: (() => void) | (() => void)[];
|
45
|
+
deactivated?: (() => void) | (() => void)[];
|
46
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
47
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
48
|
+
destroyed?: (() => void) | (() => void)[];
|
49
|
+
unmounted?: (() => void) | (() => void)[];
|
50
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
51
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
52
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
331
53
|
};
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
propsDefinition: Omit<Readonly<{} & {
|
338
|
-
name?: {
|
339
|
-
[x: `onUpdate:${string}`]: {
|
340
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
341
|
-
};
|
342
|
-
} & {
|
343
|
-
[x: `v-model:${string}`]: {
|
344
|
-
type: import("vue").PropType<boolean>;
|
345
|
-
required: false;
|
346
|
-
};
|
347
|
-
} & {
|
348
|
-
[x: string]: {
|
349
|
-
type: import("vue").PropType<boolean>;
|
350
|
-
required: false;
|
351
|
-
};
|
352
|
-
} & {
|
353
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
|
354
|
-
"onUpdate:modelValue": {
|
355
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
356
|
-
};
|
357
|
-
} & {
|
358
|
-
"v-model": {
|
359
|
-
type: import("vue").PropType<boolean>;
|
360
|
-
required: false;
|
361
|
-
};
|
362
|
-
} & {
|
363
|
-
modelValue: {
|
364
|
-
type: import("vue").PropType<boolean>;
|
365
|
-
required: false;
|
366
|
-
};
|
367
|
-
}>;
|
368
|
-
defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
|
369
|
-
"onUpdate:modelValue": {
|
370
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
371
|
-
};
|
372
|
-
} & {
|
373
|
-
"v-model": {
|
374
|
-
type: import("vue").PropType<boolean>;
|
375
|
-
required: false;
|
376
|
-
};
|
377
|
-
} & {
|
378
|
-
modelValue: {
|
379
|
-
type: import("vue").PropType<boolean>;
|
380
|
-
required: false;
|
381
|
-
};
|
382
|
-
}, false>;
|
383
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
|
384
|
-
"onUpdate:modelValue": {
|
385
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
386
|
-
};
|
387
|
-
} & {
|
388
|
-
"v-model": {
|
389
|
-
type: import("vue").PropType<boolean>;
|
390
|
-
required: false;
|
391
|
-
};
|
392
|
-
} & {
|
393
|
-
modelValue: {
|
394
|
-
type: import("vue").PropType<boolean>;
|
395
|
-
required: false;
|
396
|
-
};
|
397
|
-
}>;
|
398
|
-
};
|
399
|
-
definition?: VelcronAppDefinition<object>;
|
54
|
+
$forceUpdate: () => void;
|
55
|
+
$nextTick: typeof nextTick;
|
56
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
57
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
58
|
+
propsDefinition: {
|
400
59
|
"v-model"?: boolean;
|
401
|
-
|
60
|
+
} & {
|
61
|
+
"onUpdate:modelValue"?: (value: boolean) => void;
|
62
|
+
} & {
|
402
63
|
modelValue?: boolean;
|
64
|
+
} & {
|
65
|
+
definition?: VelcronAppDefinition<object>;
|
66
|
+
} & {
|
403
67
|
"v-slots"?: {
|
404
|
-
default?: import("
|
405
|
-
} &
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
68
|
+
default?: import("vue").Slot;
|
69
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
70
|
+
} & {
|
71
|
+
"onClick:close"?: () => any;
|
72
|
+
onSave?: (definition: VelcronAppDefinition<object>) => any;
|
73
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "definition" | "v-model" | "onUpdate:modelValue" | "modelValue">;
|
74
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
75
|
+
[key: string]: any;
|
76
|
+
}>;
|
412
77
|
export default _default;
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import { ActionHandlerInstance } from "../..";
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
close: {
|
5
|
+
type: import("vue").PropType<() => void>;
|
6
|
+
} & {
|
7
|
+
type: import("vue").PropType<() => void>;
|
8
|
+
};
|
9
|
+
"action-handler": {
|
10
|
+
type: import("vue").PropType<ActionHandlerInstance>;
|
11
|
+
};
|
12
|
+
actionHandler: {
|
13
|
+
type: import("vue").PropType<ActionHandlerInstance>;
|
14
|
+
};
|
15
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
16
|
+
close: {
|
17
|
+
type: import("vue").PropType<() => void>;
|
18
|
+
} & {
|
19
|
+
type: import("vue").PropType<() => void>;
|
20
|
+
};
|
21
|
+
"action-handler": {
|
22
|
+
type: import("vue").PropType<ActionHandlerInstance>;
|
23
|
+
};
|
24
|
+
actionHandler: {
|
25
|
+
type: import("vue").PropType<ActionHandlerInstance>;
|
26
|
+
};
|
27
|
+
}>>, {}, true, {}, {}, {
|
28
|
+
P: {};
|
29
|
+
B: {};
|
30
|
+
D: {};
|
31
|
+
C: {};
|
32
|
+
M: {};
|
33
|
+
Defaults: {};
|
34
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
35
|
+
close: {
|
36
|
+
type: import("vue").PropType<() => void>;
|
37
|
+
} & {
|
38
|
+
type: import("vue").PropType<() => void>;
|
39
|
+
};
|
40
|
+
"action-handler": {
|
41
|
+
type: import("vue").PropType<ActionHandlerInstance>;
|
42
|
+
};
|
43
|
+
actionHandler: {
|
44
|
+
type: import("vue").PropType<ActionHandlerInstance>;
|
45
|
+
};
|
46
|
+
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
47
|
+
__isFragment?: never;
|
48
|
+
__isTeleport?: never;
|
49
|
+
__isSuspense?: never;
|
50
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
51
|
+
close: {
|
52
|
+
type: import("vue").PropType<() => void>;
|
53
|
+
} & {
|
54
|
+
type: import("vue").PropType<() => void>;
|
55
|
+
};
|
56
|
+
"action-handler": {
|
57
|
+
type: import("vue").PropType<ActionHandlerInstance>;
|
58
|
+
};
|
59
|
+
actionHandler: {
|
60
|
+
type: import("vue").PropType<ActionHandlerInstance>;
|
61
|
+
};
|
62
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
63
|
+
propsDefinition: Omit<Readonly<{} & {
|
64
|
+
close?: () => void;
|
65
|
+
actionHandler?: ActionHandlerInstance;
|
66
|
+
"action-handler"?: ActionHandlerInstance;
|
67
|
+
}>, never>;
|
68
|
+
};
|
69
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|