@omnia/fx 8.0.26-vnext → 8.0.27-vnext

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 (41) hide show
  1. package/internal-do-not-import-from-here/manifests/omfx.libs.prosemirror.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +3 -2
  3. package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningwizard/AppProvisioningWizard.d.ts +2 -2
  4. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/VelcronDefinitionStore.d.ts +4 -4
  5. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/blockheaders.d.ts +2 -2
  6. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/contentblocks.d.ts +3 -3
  7. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.css.d.ts +5 -0
  8. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +28 -0
  9. package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.d.ts +1 -0
  10. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +17 -0
  11. package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +101 -0
  12. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +17 -0
  13. package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.d.ts +69 -62
  14. package/internal-do-not-import-from-here/ux/oxide/stepper/StepperStep.d.ts +90 -61
  15. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +1 -73
  16. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.css.d.ts +7 -1
  17. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.d.ts +6 -0
  18. package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/ContentViewer.css.d.ts +6 -0
  19. package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/ContentViewer.d.ts +94 -0
  20. package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/{DefinitionPickerPanelStyles.d.ts → DefinitionPickerPanel.css.d.ts} +1 -0
  21. package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/DefinitionPickerPanel.d.ts +72 -19
  22. package/internal-do-not-import-from-here/ux/velcron/blocks/content/model/ContentDefinitionRegistration.d.ts +5 -0
  23. package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +40 -0
  24. package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/VelcronBlockSettings.d.ts +7 -2
  25. package/internal-do-not-import-from-here/ux/velcron/components/properties/VelcronProperties.d.ts +96 -96
  26. package/internal-do-not-import-from-here/ux/velcron/core/index.d.ts +1 -0
  27. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +20 -17
  28. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronEvents.d.ts +3 -0
  29. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +3 -91
  30. package/internal-do-not-import-from-here/ux/velcron/core/rules/IsEditMode.d.ts +20 -0
  31. package/internal-do-not-import-from-here/ux/velcron/core/rules/index.d.ts +1 -0
  32. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +156 -156
  33. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper.d.ts +16 -11
  34. package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +3 -3
  35. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +52 -12
  36. package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +5 -5
  37. package/internal-do-not-import-from-here/ux/wizard/IWizard.d.ts +1 -1
  38. package/internal-do-not-import-from-here/ux/wizard/WizardComponent.d.ts +2 -2
  39. package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
  40. package/package.json +2 -2
  41. package/internal-do-not-import-from-here/ux/markdown/Toast.d.ts +0 -4
@@ -15,132 +15,132 @@ declare const _default: {
15
15
  } & {
16
16
  activator?: () => VNodeChild;
17
17
  }>;
18
- "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition) => any, (value: VelcronAppDefinition) => any>;
19
- "v-model": import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
20
- modelValue: import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
18
+ "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition<object>) => any, (value: VelcronAppDefinition<object>) => any>;
19
+ "v-model": import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
20
+ modelValue: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
21
21
  name: import("vue").Prop<{
22
22
  [x: `onUpdate:${string}`]: {
23
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
23
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
24
24
  };
25
25
  } & {
26
26
  [x: `v-model:${string}`]: {
27
- type: import("vue").PropType<VelcronAppDefinition>;
27
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
28
28
  required: false;
29
29
  };
30
30
  } & {
31
31
  [x: string]: {
32
- type: import("vue").PropType<VelcronAppDefinition>;
32
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
33
33
  required: false;
34
34
  };
35
35
  } & {
36
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition, {
36
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
37
37
  "onUpdate:modelValue": {
38
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
38
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
39
39
  };
40
40
  } & {
41
41
  "v-model": {
42
- type: import("vue").PropType<VelcronAppDefinition>;
42
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
43
43
  required: false;
44
44
  };
45
45
  } & {
46
46
  modelValue: {
47
- type: import("vue").PropType<VelcronAppDefinition>;
47
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
48
48
  required: false;
49
49
  };
50
50
  }>;
51
- defaultValue(value?: VelcronAppDefinition): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition, {
51
+ defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
52
52
  "onUpdate:modelValue": {
53
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
53
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
54
54
  };
55
55
  } & {
56
56
  "v-model": {
57
- type: import("vue").PropType<VelcronAppDefinition>;
57
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
58
58
  required: false;
59
59
  };
60
60
  } & {
61
61
  modelValue: {
62
- type: import("vue").PropType<VelcronAppDefinition>;
62
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
63
63
  required: false;
64
64
  };
65
65
  }, false>;
66
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition, {
66
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
67
67
  "onUpdate:modelValue": {
68
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
68
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
69
69
  };
70
70
  } & {
71
71
  "v-model": {
72
- type: import("vue").PropType<VelcronAppDefinition>;
72
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
73
73
  required: false;
74
74
  };
75
75
  } & {
76
76
  modelValue: {
77
- type: import("vue").PropType<VelcronAppDefinition>;
77
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
78
78
  required: false;
79
79
  };
80
80
  }>;
81
81
  }, {
82
82
  [x: `onUpdate:${string}`]: {
83
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
83
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
84
84
  };
85
85
  } & {
86
86
  [x: `v-model:${string}`]: {
87
- type: import("vue").PropType<VelcronAppDefinition>;
87
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
88
88
  required: false;
89
89
  };
90
90
  } & {
91
91
  [x: string]: {
92
- type: import("vue").PropType<VelcronAppDefinition>;
92
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
93
93
  required: false;
94
94
  };
95
95
  } & {
96
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition, {
96
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
97
97
  "onUpdate:modelValue": {
98
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
98
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
99
99
  };
100
100
  } & {
101
101
  "v-model": {
102
- type: import("vue").PropType<VelcronAppDefinition>;
102
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
103
103
  required: false;
104
104
  };
105
105
  } & {
106
106
  modelValue: {
107
- type: import("vue").PropType<VelcronAppDefinition>;
107
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
108
108
  required: false;
109
109
  };
110
110
  }>;
111
- defaultValue(value?: VelcronAppDefinition): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition, {
111
+ defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
112
112
  "onUpdate:modelValue": {
113
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
113
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
114
114
  };
115
115
  } & {
116
116
  "v-model": {
117
- type: import("vue").PropType<VelcronAppDefinition>;
117
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
118
118
  required: false;
119
119
  };
120
120
  } & {
121
121
  modelValue: {
122
- type: import("vue").PropType<VelcronAppDefinition>;
122
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
123
123
  required: false;
124
124
  };
125
125
  }, false>;
126
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition, {
126
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
127
127
  "onUpdate:modelValue": {
128
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
128
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
129
129
  };
130
130
  } & {
131
131
  "v-model": {
132
- type: import("vue").PropType<VelcronAppDefinition>;
132
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
133
133
  required: false;
134
134
  };
135
135
  } & {
136
136
  modelValue: {
137
- type: import("vue").PropType<VelcronAppDefinition>;
137
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
138
138
  required: false;
139
139
  };
140
140
  }>;
141
141
  }>;
142
142
  }>> & {
143
- "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition) => any;
143
+ "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition<object>) => any;
144
144
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
145
145
  $attrs: {
146
146
  [x: string]: unknown;
@@ -153,7 +153,7 @@ declare const _default: {
153
153
  }>;
154
154
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
155
155
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
156
- $emit: (event: "update:modelValue", appDefinition: VelcronAppDefinition) => void;
156
+ $emit: (event: "update:modelValue", appDefinition: VelcronAppDefinition<object>) => void;
157
157
  $el: any;
158
158
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
159
159
  "v-slots": import("vue").Prop<{
@@ -165,132 +165,132 @@ declare const _default: {
165
165
  } & {
166
166
  activator?: () => VNodeChild;
167
167
  }>;
168
- "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition) => any, (value: VelcronAppDefinition) => any>;
169
- "v-model": import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
170
- modelValue: import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
168
+ "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition<object>) => any, (value: VelcronAppDefinition<object>) => any>;
169
+ "v-model": import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
170
+ modelValue: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
171
171
  name: import("vue").Prop<{
172
172
  [x: `onUpdate:${string}`]: {
173
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
173
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
174
174
  };
175
175
  } & {
176
176
  [x: `v-model:${string}`]: {
177
- type: import("vue").PropType<VelcronAppDefinition>;
177
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
178
178
  required: false;
179
179
  };
180
180
  } & {
181
181
  [x: string]: {
182
- type: import("vue").PropType<VelcronAppDefinition>;
182
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
183
183
  required: false;
184
184
  };
185
185
  } & {
186
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition, {
186
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
187
187
  "onUpdate:modelValue": {
188
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
188
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
189
189
  };
190
190
  } & {
191
191
  "v-model": {
192
- type: import("vue").PropType<VelcronAppDefinition>;
192
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
193
193
  required: false;
194
194
  };
195
195
  } & {
196
196
  modelValue: {
197
- type: import("vue").PropType<VelcronAppDefinition>;
197
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
198
198
  required: false;
199
199
  };
200
200
  }>;
201
- defaultValue(value?: VelcronAppDefinition): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition, {
201
+ defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
202
202
  "onUpdate:modelValue": {
203
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
203
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
204
204
  };
205
205
  } & {
206
206
  "v-model": {
207
- type: import("vue").PropType<VelcronAppDefinition>;
207
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
208
208
  required: false;
209
209
  };
210
210
  } & {
211
211
  modelValue: {
212
- type: import("vue").PropType<VelcronAppDefinition>;
212
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
213
213
  required: false;
214
214
  };
215
215
  }, false>;
216
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition, {
216
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
217
217
  "onUpdate:modelValue": {
218
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
218
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
219
219
  };
220
220
  } & {
221
221
  "v-model": {
222
- type: import("vue").PropType<VelcronAppDefinition>;
222
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
223
223
  required: false;
224
224
  };
225
225
  } & {
226
226
  modelValue: {
227
- type: import("vue").PropType<VelcronAppDefinition>;
227
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
228
228
  required: false;
229
229
  };
230
230
  }>;
231
231
  }, {
232
232
  [x: `onUpdate:${string}`]: {
233
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
233
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
234
234
  };
235
235
  } & {
236
236
  [x: `v-model:${string}`]: {
237
- type: import("vue").PropType<VelcronAppDefinition>;
237
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
238
238
  required: false;
239
239
  };
240
240
  } & {
241
241
  [x: string]: {
242
- type: import("vue").PropType<VelcronAppDefinition>;
242
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
243
243
  required: false;
244
244
  };
245
245
  } & {
246
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition, {
246
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
247
247
  "onUpdate:modelValue": {
248
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
248
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
249
249
  };
250
250
  } & {
251
251
  "v-model": {
252
- type: import("vue").PropType<VelcronAppDefinition>;
252
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
253
253
  required: false;
254
254
  };
255
255
  } & {
256
256
  modelValue: {
257
- type: import("vue").PropType<VelcronAppDefinition>;
257
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
258
258
  required: false;
259
259
  };
260
260
  }>;
261
- defaultValue(value?: VelcronAppDefinition): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition, {
261
+ defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
262
262
  "onUpdate:modelValue": {
263
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
263
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
264
264
  };
265
265
  } & {
266
266
  "v-model": {
267
- type: import("vue").PropType<VelcronAppDefinition>;
267
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
268
268
  required: false;
269
269
  };
270
270
  } & {
271
271
  modelValue: {
272
- type: import("vue").PropType<VelcronAppDefinition>;
272
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
273
273
  required: false;
274
274
  };
275
275
  }, false>;
276
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition, {
276
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
277
277
  "onUpdate:modelValue": {
278
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
278
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
279
279
  };
280
280
  } & {
281
281
  "v-model": {
282
- type: import("vue").PropType<VelcronAppDefinition>;
282
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
283
283
  required: false;
284
284
  };
285
285
  } & {
286
286
  modelValue: {
287
- type: import("vue").PropType<VelcronAppDefinition>;
287
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
288
288
  required: false;
289
289
  };
290
290
  }>;
291
291
  }>;
292
292
  }>> & {
293
- "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition) => any;
293
+ "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition<object>) => any;
294
294
  }, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
295
295
  "update:modelValue": (appDefinition: VelcronAppDefinition) => boolean;
296
296
  }, string, {}, {}, string> & {
@@ -323,132 +323,132 @@ declare const _default: {
323
323
  } & {
324
324
  activator?: () => VNodeChild;
325
325
  }>;
326
- "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition) => any, (value: VelcronAppDefinition) => any>;
327
- "v-model": import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
328
- modelValue: import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
326
+ "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition<object>) => any, (value: VelcronAppDefinition<object>) => any>;
327
+ "v-model": import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
328
+ modelValue: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
329
329
  name: import("vue").Prop<{
330
330
  [x: `onUpdate:${string}`]: {
331
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
331
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
332
332
  };
333
333
  } & {
334
334
  [x: `v-model:${string}`]: {
335
- type: import("vue").PropType<VelcronAppDefinition>;
335
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
336
336
  required: false;
337
337
  };
338
338
  } & {
339
339
  [x: string]: {
340
- type: import("vue").PropType<VelcronAppDefinition>;
340
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
341
341
  required: false;
342
342
  };
343
343
  } & {
344
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition, {
344
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
345
345
  "onUpdate:modelValue": {
346
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
346
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
347
347
  };
348
348
  } & {
349
349
  "v-model": {
350
- type: import("vue").PropType<VelcronAppDefinition>;
350
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
351
351
  required: false;
352
352
  };
353
353
  } & {
354
354
  modelValue: {
355
- type: import("vue").PropType<VelcronAppDefinition>;
355
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
356
356
  required: false;
357
357
  };
358
358
  }>;
359
- defaultValue(value?: VelcronAppDefinition): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition, {
359
+ defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
360
360
  "onUpdate:modelValue": {
361
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
361
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
362
362
  };
363
363
  } & {
364
364
  "v-model": {
365
- type: import("vue").PropType<VelcronAppDefinition>;
365
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
366
366
  required: false;
367
367
  };
368
368
  } & {
369
369
  modelValue: {
370
- type: import("vue").PropType<VelcronAppDefinition>;
370
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
371
371
  required: false;
372
372
  };
373
373
  }, false>;
374
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition, {
374
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
375
375
  "onUpdate:modelValue": {
376
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
376
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
377
377
  };
378
378
  } & {
379
379
  "v-model": {
380
- type: import("vue").PropType<VelcronAppDefinition>;
380
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
381
381
  required: false;
382
382
  };
383
383
  } & {
384
384
  modelValue: {
385
- type: import("vue").PropType<VelcronAppDefinition>;
385
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
386
386
  required: false;
387
387
  };
388
388
  }>;
389
389
  }, {
390
390
  [x: `onUpdate:${string}`]: {
391
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
391
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
392
392
  };
393
393
  } & {
394
394
  [x: `v-model:${string}`]: {
395
- type: import("vue").PropType<VelcronAppDefinition>;
395
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
396
396
  required: false;
397
397
  };
398
398
  } & {
399
399
  [x: string]: {
400
- type: import("vue").PropType<VelcronAppDefinition>;
400
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
401
401
  required: false;
402
402
  };
403
403
  } & {
404
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition, {
404
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
405
405
  "onUpdate:modelValue": {
406
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
406
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
407
407
  };
408
408
  } & {
409
409
  "v-model": {
410
- type: import("vue").PropType<VelcronAppDefinition>;
410
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
411
411
  required: false;
412
412
  };
413
413
  } & {
414
414
  modelValue: {
415
- type: import("vue").PropType<VelcronAppDefinition>;
415
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
416
416
  required: false;
417
417
  };
418
418
  }>;
419
- defaultValue(value?: VelcronAppDefinition): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition, {
419
+ defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
420
420
  "onUpdate:modelValue": {
421
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
421
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
422
422
  };
423
423
  } & {
424
424
  "v-model": {
425
- type: import("vue").PropType<VelcronAppDefinition>;
425
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
426
426
  required: false;
427
427
  };
428
428
  } & {
429
429
  modelValue: {
430
- type: import("vue").PropType<VelcronAppDefinition>;
430
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
431
431
  required: false;
432
432
  };
433
433
  }, false>;
434
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition, {
434
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
435
435
  "onUpdate:modelValue": {
436
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
436
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
437
437
  };
438
438
  } & {
439
439
  "v-model": {
440
- type: import("vue").PropType<VelcronAppDefinition>;
440
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
441
441
  required: false;
442
442
  };
443
443
  } & {
444
444
  modelValue: {
445
- type: import("vue").PropType<VelcronAppDefinition>;
445
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
446
446
  required: false;
447
447
  };
448
448
  }>;
449
449
  }>;
450
450
  }>> & {
451
- "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition) => any;
451
+ "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition<object>) => any;
452
452
  } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
453
453
  __isFragment?: never;
454
454
  __isTeleport?: never;
@@ -463,207 +463,207 @@ declare const _default: {
463
463
  } & {
464
464
  activator?: () => VNodeChild;
465
465
  }>;
466
- "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition) => any, (value: VelcronAppDefinition) => any>;
467
- "v-model": import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
468
- modelValue: import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
466
+ "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition<object>) => any, (value: VelcronAppDefinition<object>) => any>;
467
+ "v-model": import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
468
+ modelValue: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
469
469
  name: import("vue").Prop<{
470
470
  [x: `onUpdate:${string}`]: {
471
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
471
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
472
472
  };
473
473
  } & {
474
474
  [x: `v-model:${string}`]: {
475
- type: import("vue").PropType<VelcronAppDefinition>;
475
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
476
476
  required: false;
477
477
  };
478
478
  } & {
479
479
  [x: string]: {
480
- type: import("vue").PropType<VelcronAppDefinition>;
480
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
481
481
  required: false;
482
482
  };
483
483
  } & {
484
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition, {
484
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
485
485
  "onUpdate:modelValue": {
486
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
486
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
487
487
  };
488
488
  } & {
489
489
  "v-model": {
490
- type: import("vue").PropType<VelcronAppDefinition>;
490
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
491
491
  required: false;
492
492
  };
493
493
  } & {
494
494
  modelValue: {
495
- type: import("vue").PropType<VelcronAppDefinition>;
495
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
496
496
  required: false;
497
497
  };
498
498
  }>;
499
- defaultValue(value?: VelcronAppDefinition): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition, {
499
+ defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
500
500
  "onUpdate:modelValue": {
501
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
501
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
502
502
  };
503
503
  } & {
504
504
  "v-model": {
505
- type: import("vue").PropType<VelcronAppDefinition>;
505
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
506
506
  required: false;
507
507
  };
508
508
  } & {
509
509
  modelValue: {
510
- type: import("vue").PropType<VelcronAppDefinition>;
510
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
511
511
  required: false;
512
512
  };
513
513
  }, false>;
514
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition, {
514
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
515
515
  "onUpdate:modelValue": {
516
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
516
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
517
517
  };
518
518
  } & {
519
519
  "v-model": {
520
- type: import("vue").PropType<VelcronAppDefinition>;
520
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
521
521
  required: false;
522
522
  };
523
523
  } & {
524
524
  modelValue: {
525
- type: import("vue").PropType<VelcronAppDefinition>;
525
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
526
526
  required: false;
527
527
  };
528
528
  }>;
529
529
  }, {
530
530
  [x: `onUpdate:${string}`]: {
531
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
531
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
532
532
  };
533
533
  } & {
534
534
  [x: `v-model:${string}`]: {
535
- type: import("vue").PropType<VelcronAppDefinition>;
535
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
536
536
  required: false;
537
537
  };
538
538
  } & {
539
539
  [x: string]: {
540
- type: import("vue").PropType<VelcronAppDefinition>;
540
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
541
541
  required: false;
542
542
  };
543
543
  } & {
544
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition, {
544
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
545
545
  "onUpdate:modelValue": {
546
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
546
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
547
547
  };
548
548
  } & {
549
549
  "v-model": {
550
- type: import("vue").PropType<VelcronAppDefinition>;
550
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
551
551
  required: false;
552
552
  };
553
553
  } & {
554
554
  modelValue: {
555
- type: import("vue").PropType<VelcronAppDefinition>;
555
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
556
556
  required: false;
557
557
  };
558
558
  }>;
559
- defaultValue(value?: VelcronAppDefinition): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition, {
559
+ defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
560
560
  "onUpdate:modelValue": {
561
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
561
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
562
562
  };
563
563
  } & {
564
564
  "v-model": {
565
- type: import("vue").PropType<VelcronAppDefinition>;
565
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
566
566
  required: false;
567
567
  };
568
568
  } & {
569
569
  modelValue: {
570
- type: import("vue").PropType<VelcronAppDefinition>;
570
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
571
571
  required: false;
572
572
  };
573
573
  }, false>;
574
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition, {
574
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
575
575
  "onUpdate:modelValue": {
576
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
576
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
577
577
  };
578
578
  } & {
579
579
  "v-model": {
580
- type: import("vue").PropType<VelcronAppDefinition>;
580
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
581
581
  required: false;
582
582
  };
583
583
  } & {
584
584
  modelValue: {
585
- type: import("vue").PropType<VelcronAppDefinition>;
585
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
586
586
  required: false;
587
587
  };
588
588
  }>;
589
589
  }>;
590
590
  }>> & {
591
- "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition) => any;
591
+ "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition<object>) => any;
592
592
  }, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
593
593
  "update:modelValue": (appDefinition: VelcronAppDefinition) => boolean;
594
594
  }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
595
595
  propsDefinition: Omit<Readonly<{} & {
596
596
  name?: {
597
597
  [x: `onUpdate:${string}`]: {
598
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
598
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
599
599
  };
600
600
  } & {
601
601
  [x: `v-model:${string}`]: {
602
- type: import("vue").PropType<VelcronAppDefinition>;
602
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
603
603
  required: false;
604
604
  };
605
605
  } & {
606
606
  [x: string]: {
607
- type: import("vue").PropType<VelcronAppDefinition>;
607
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
608
608
  required: false;
609
609
  };
610
610
  } & {
611
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition, {
611
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
612
612
  "onUpdate:modelValue": {
613
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
613
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
614
614
  };
615
615
  } & {
616
616
  "v-model": {
617
- type: import("vue").PropType<VelcronAppDefinition>;
617
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
618
618
  required: false;
619
619
  };
620
620
  } & {
621
621
  modelValue: {
622
- type: import("vue").PropType<VelcronAppDefinition>;
622
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
623
623
  required: false;
624
624
  };
625
625
  }>;
626
- defaultValue(value?: VelcronAppDefinition): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition, {
626
+ defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
627
627
  "onUpdate:modelValue": {
628
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
628
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
629
629
  };
630
630
  } & {
631
631
  "v-model": {
632
- type: import("vue").PropType<VelcronAppDefinition>;
632
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
633
633
  required: false;
634
634
  };
635
635
  } & {
636
636
  modelValue: {
637
- type: import("vue").PropType<VelcronAppDefinition>;
637
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
638
638
  required: false;
639
639
  };
640
640
  }, false>;
641
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition, {
641
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
642
642
  "onUpdate:modelValue": {
643
- type: import("vue").PropType<(value: VelcronAppDefinition) => any>;
643
+ type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
644
644
  };
645
645
  } & {
646
646
  "v-model": {
647
- type: import("vue").PropType<VelcronAppDefinition>;
647
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
648
648
  required: false;
649
649
  };
650
650
  } & {
651
651
  modelValue: {
652
- type: import("vue").PropType<VelcronAppDefinition>;
652
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
653
653
  required: false;
654
654
  };
655
655
  }>;
656
656
  };
657
- "onUpdate:modelValue"?: (value: VelcronAppDefinition) => any;
658
- "v-model"?: VelcronAppDefinition;
659
- modelValue?: VelcronAppDefinition;
657
+ "onUpdate:modelValue"?: (value: VelcronAppDefinition<object>) => any;
658
+ "v-model"?: VelcronAppDefinition<object>;
659
+ modelValue?: VelcronAppDefinition<object>;
660
660
  "v-slots"?: {
661
661
  default?: import("@omnia/fx-models").Func<[VNodeChild]>;
662
662
  } & {
663
663
  activator?: () => VNodeChild;
664
664
  };
665
665
  }>, "onUpdate:modelValue"> & {
666
- "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition) => any;
666
+ "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition<object>) => any;
667
667
  };
668
668
  };
669
669
  export default _default;