@omnia/fx 8.0.141-dev → 8.0.142-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. package/internal-do-not-import-from-here/ux/blueprintpickers/chrome/ChromePicker.d.ts +21 -0
  2. package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/IconStyleEditor.d.ts +7 -3
  3. package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/IconStylePicker.d.ts +7 -3
  4. package/internal-do-not-import-from-here/ux/blueprintpickers/spacingpicker/SpacingPicker3.d.ts +21 -0
  5. package/internal-do-not-import-from-here/ux/blueprintpickers/tabs/TabStylePicker.d.ts +7 -3
  6. package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/TextStylePicker.d.ts +7 -3
  7. package/internal-do-not-import-from-here/ux/blueprintpickers/typography/TypographyPicker.d.ts +7 -3
  8. package/internal-do-not-import-from-here/ux/borderpicker/BorderPicker.d.ts +7 -3
  9. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaViewer.d.ts +1 -1
  10. package/internal-do-not-import-from-here/ux/fillpicker/FillPicker.d.ts +7 -3
  11. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +9 -9
  12. package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +21 -0
  13. package/internal-do-not-import-from-here/ux/pickerwrapper/PickerWrapper.d.ts +21 -0
  14. package/internal-do-not-import-from-here/ux/theming-v2/actionhandler/ThemeDesignerAction.d.ts +69 -0
  15. package/internal-do-not-import-from-here/ux/theming-v2/actionhandler/ThemeDesignerClickHandler.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/themedesigner/ThemeDesigner.d.ts +10 -4
  17. package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +2 -0
  18. package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +3 -0
  19. package/internal-do-not-import-from-here/ux/velcron/core/actions/Clone.d.ts +1 -0
  20. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronActions.d.ts +4 -1
  21. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -0
  22. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +1 -0
  23. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +68 -403
  24. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditorAction.d.ts +69 -0
  25. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditorClickHandler.d.ts +1 -0
  26. package/internal-do-not-import-from-here/ux/velcron/renderer/components/ComponentCreator.d.ts +68 -38
  27. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Reference.d.ts +6 -6
  28. package/internal-do-not-import-from-here/wctypings.d.ts +38 -8
  29. package/package.json +2 -2
@@ -1,13 +1,17 @@
1
+ import { DefineSlot } from "@omnia/fx/ux";
2
+ import { VNodeChild } from "vue";
1
3
  declare const _default: (props: {
2
4
  "v-model"?: boolean;
3
5
  } & {
4
6
  "onUpdate:modelValue"?: (value: boolean) => void;
5
7
  } & {
6
8
  modelValue?: boolean;
7
- } & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue"> & {
9
+ } & Omit<{
10
+ "onClick:close"?: () => any;
11
+ }, "v-model" | "onUpdate:modelValue" | "modelValue"> & {
8
12
  "v-slots"?: {
9
13
  default?: import("vue").Slot;
10
- };
14
+ } & DefineSlot<"activator", () => VNodeChild>;
11
15
  } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">) => {
12
16
  $: import("vue").ComponentInternalInstance;
13
17
  $data: {};
@@ -55,8 +59,10 @@ declare const _default: (props: {
55
59
  } & {
56
60
  "v-slots"?: {
57
61
  default?: import("vue").Slot;
58
- };
59
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
62
+ } & DefineSlot<"activator", () => VNodeChild>;
63
+ } & {
64
+ "onClick:close"?: () => any;
65
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
60
66
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
61
67
  [key: string]: any;
62
68
  }>;
@@ -1,4 +1,5 @@
1
1
  import { ThemeContextType } from "@omnia/fx-models";
2
+ import { useThemeStoreV2 } from "./ThemeStoreV2";
2
3
  export declare const useThemeContextStore: () => {
3
4
  actions: {
4
5
  onDispatching: {
@@ -1020,5 +1021,6 @@ export declare const useThemeContextStore: () => {
1020
1021
  currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
1021
1022
  };
1022
1023
  };
1024
+ byType(type: ThemeContextType): ReturnType<typeof useThemeStoreV2>;
1023
1025
  };
1024
1026
  };
@@ -138,6 +138,9 @@ export declare function useIcons(): {
138
138
  tablet: FontAwesomeIcon;
139
139
  desktop: FontAwesomeIcon;
140
140
  };
141
+ tools: {
142
+ themeDesigner: FontAwesomeIcon;
143
+ };
141
144
  };
142
145
  presets: {
143
146
  add: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
1
  import { IActionHandler } from "./IActionHandler";
2
2
  export declare const objClone: IActionHandler;
3
+ export declare const objAssign: IActionHandler;
@@ -12,7 +12,10 @@ export declare class VelcronActions {
12
12
  static registerAction(handler: IActionHandler): void;
13
13
  static unregisterAction(name: string): void;
14
14
  static actionArrayToString(templates: Array<string>): string;
15
- static parseAndExecuteActions(templates: Array<string>, renderContext: VelcronRenderContext, customActionContext?: VelcronCustomActionExecutionContext): Future<unknown>;
15
+ static parseAndExecuteActions(templates: Array<string>, renderContext: VelcronRenderContext, options?: {
16
+ customActionContext?: VelcronCustomActionExecutionContext;
17
+ variables?: object;
18
+ }): Future<unknown>;
16
19
  static parseFunction(target: {
17
20
  [name: string]: Array<string>;
18
21
  }, template: string, renderContext: VelcronRenderContext, params: Array<VelcronActionParameterValue>, foundCb: (name: string, params: {}) => void): void;
@@ -28,6 +28,7 @@ export declare const VelcronConstants: {
28
28
  idTokenStart: string;
29
29
  idTokenEnd: string;
30
30
  returnValueVariableName: string;
31
+ persistStateVariableName: string;
31
32
  };
32
33
  state: {
33
34
  stateRootToken: string;
@@ -25,6 +25,7 @@ export declare class VelcronData {
25
25
  static isArray(obj: any): obj is ExtendArray;
26
26
  static isObject(value: any): boolean;
27
27
  static extendObject(obj: any): any;
28
+ static propertyPathExists(obj: object, path: string): boolean;
28
29
  static getOrSetObjectByPath<T>(object: Object, path: string, value?: any): T | null;
29
30
  static getOrSet<T>(renderContext: VelcronRenderContext, path: string, value?: any): T;
30
31
  static getTokens(template: any, removeBrackets: boolean): string[];
@@ -1,412 +1,77 @@
1
- import { VNodeChild } from "vue";
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
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
6
- "v-slots": import("vue").Prop<{
7
- default?: import("../../DefineVueTypings").Slot<any[]>;
8
- } & {
9
- activator?: () => VNodeChild;
10
- }>;
11
- definition: {
12
- type: import("vue").PropType<VelcronAppDefinition<object>>;
13
- } & {
14
- type: import("vue").PropType<VelcronAppDefinition<object>>;
15
- };
16
- "onUpdate:modelValue": {
17
- type: import("vue").PropType<(value: boolean) => any>;
18
- };
19
- "v-model": {
20
- type: import("vue").PropType<boolean>;
21
- required: false;
22
- };
23
- modelValue: {
24
- type: import("vue").PropType<boolean>;
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
- "v-model": {
270
- type: import("vue").PropType<boolean>;
271
- required: false;
27
+ $refs: {
28
+ [x: string]: unknown;
272
29
  };
273
- modelValue: {
274
- type: import("vue").PropType<boolean>;
275
- required: false;
276
- };
277
- name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
278
- type: import("vue").PropType<(value: boolean) => any>;
279
- }; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
280
- type: import("vue").PropType<boolean>;
281
- required: false;
282
- }; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
283
- type: import("vue").PropType<boolean>;
284
- required: false;
285
- }; } & {
286
- require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, boolean, {
287
- "onUpdate:modelValue": {
288
- type: import("vue").PropType<(value: boolean) => any>;
289
- };
290
- } & {
291
- "v-model": {
292
- type: import("vue").PropType<boolean>;
293
- required: false;
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
- onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
334
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
335
- save: (appDefinition: VelcronAppDefinition) => true;
336
- }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
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
- "onUpdate:modelValue"?: (value: boolean) => any;
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("../../DefineVueTypings").Slot<any[]>;
405
- } & {
406
- activator?: () => VNodeChild;
407
- };
408
- }>, "onSave"> & {
409
- onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
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;