@omnia/fx 8.0.87-vnext → 8.0.88-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 (31) hide show
  1. package/internal-do-not-import-from-here/index.d.ts +2 -2
  2. package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +4 -10
  3. package/internal-do-not-import-from-here/ux/models/Validation.d.ts +1 -0
  4. package/internal-do-not-import-from-here/ux/theming-v2/skins/core/useVelcronState.d.ts +3 -3
  5. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/VelcronPropertiesEditor.d.ts +2 -1
  6. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +24 -5
  7. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronPropertyEditors.d.ts +9 -0
  8. package/internal-do-not-import-from-here/ux/velcron/core/parser/index.d.ts +1 -0
  9. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/AlignmentEditor.d.ts +454 -0
  10. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/ColorEditor.d.ts +434 -0
  11. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/MarkdownEditor.d.ts +433 -0
  12. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/PropertyEditorCreator.d.ts +451 -0
  13. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/SliderEditor.d.ts +451 -0
  14. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/SwitchEditor.d.ts +450 -0
  15. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/TextEditor.d.ts +450 -0
  16. package/internal-do-not-import-from-here/vue/VueApp.d.ts +4 -1
  17. package/internal-do-not-import-from-here/vue/VueHooks.d.ts +1 -4
  18. package/internal-do-not-import-from-here/wctypings.d.ts +138 -135
  19. package/package.json +3 -3
  20. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/editors/alignment/AlignmentEditor.d.ts +0 -4
  21. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/editors/color/ColorEditor.d.ts +0 -1
  22. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/editors/index.d.ts +0 -6
  23. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/editors/markdown/MarkdownEditor.d.ts +0 -1
  24. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/editors/slider/SliderEditor.d.ts +0 -2
  25. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/editors/switch/SwitchEditor.d.ts +0 -1
  26. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/editors/text/TextEditor.d.ts +0 -1
  27. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/index.d.ts +0 -2
  28. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/models/DefineVelcronPropertyEditor.d.ts +0 -2
  29. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/models/DefineVelcronPropertyEditorProps.d.ts +0 -1
  30. package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/models/index.d.ts +0 -2
  31. package/internal-do-not-import-from-here/ux/vuetify/stepper/VStepperItems.d.ts +0 -1
@@ -113,11 +113,11 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
113
113
  getVueMixins(): import("vue").ComponentOptions[];
114
114
  registerVueOptionsHook(fn: () => void): void;
115
115
  getVueOptionsHooks(): ((classComponentConstructor?: any) => void)[];
116
- registerAsyncVueComponent(app: import("vue").App<any>, component: Models.WebComponentBundleManifest): void;
117
- resolveAsyncVueComponent(elementName: string, definition: import("vue").DefineComponent): void;
118
116
  getVueApps(): Set<import("vue").App<Element>>;
119
117
  destroyVueApp(app: import("vue").App<Element>): void;
120
118
  createVueApp(rootComponent: any, rootProps?: any): import("vue").App<Element>;
119
+ registerAsyncVueComponent(app: import("vue").App<any>, component: Models.WebComponentBundleManifest): void;
120
+ resolveAsyncVueComponent(elementName: string, definition: import("vue").DefineComponent): void;
121
121
  vueCustomElement(tag: string, componentDefinition: Object | Exposes.ComponentDefinitionFunc, options?: Exposes.VueCustomElementOptions): HTMLElement;
122
122
  DisplayRules: typeof Exposes.DisplayRules;
123
123
  ApiHelper: typeof Exposes.ApiHelper;
@@ -31,17 +31,14 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
31
31
  };
32
32
  get: {
33
33
  shareds: <T>() => Omit<{
34
- state: import("vue").Ref<import("vue").UnwrapRef<T>>;
34
+ state: T;
35
35
  get: {
36
36
  state: () => import("vue").UnwrapRef<T>;
37
37
  };
38
38
  actions: {
39
39
  setState: (value: T) => T;
40
40
  };
41
- events: {
42
- onMutatingValue: import("@omnia/fx").EventHook<import("vue").UnwrapRef<T>>;
43
- onMutatedValue: import("@omnia/fx").EventHook<import("vue").UnwrapRef<T>>;
44
- };
41
+ events: { [K in keyof T as `onMutating${Capitalize<string & K>}` | `onMutated${Capitalize<string & K>}`]: import("@omnia/fx").EventHook<T[K]>; };
45
42
  deactivated(): void;
46
43
  }, "state" | "deactivated">;
47
44
  blade: (id: string) => BladeInstance;
@@ -116,17 +113,14 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
116
113
  deactivated(): void;
117
114
  };
118
115
  declare function createJourneyStateManager<T extends Object>(): {
119
- state: import("vue").Ref<import("vue").UnwrapRef<T>>;
116
+ state: T;
120
117
  get: {
121
118
  state: () => import("vue").UnwrapRef<T>;
122
119
  };
123
120
  actions: {
124
121
  setState: (value: T) => T;
125
122
  };
126
- events: {
127
- onMutatingValue: import("@omnia/fx").EventHook<import("vue").UnwrapRef<T>>;
128
- onMutatedValue: import("@omnia/fx").EventHook<import("vue").UnwrapRef<T>>;
129
- };
123
+ events: { [K in keyof T as `onMutating${Capitalize<string & K>}` | `onMutated${Capitalize<string & K>}`]: import("@omnia/fx").EventHook<T[K]>; };
130
124
  deactivated(): void;
131
125
  };
132
126
  export {};
@@ -22,6 +22,7 @@ export interface IValidationRuleBuilder {
22
22
  maxLength<T>(this: T, maxLength: number, customMessage?: string): Omit<T, "maxLength">;
23
23
  minValue<T>(this: T, min: number, customMessage?: string): Omit<T, "minValue">;
24
24
  maxValue<T>(this: T, max: number, customMessage?: string): Omit<T, "maxValue">;
25
+ regExpMatch<T>(this: T, pattern: RegExp, customMessage?: string): Omit<T, "regExpMatch">;
25
26
  custom<T>(this: T, callback: ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>)): Omit<T, "custom">;
26
27
  done(): ValidationRule[];
27
28
  }
@@ -5,12 +5,12 @@ export declare function useVelcronState(): {
5
5
  main: {
6
6
  name: string;
7
7
  type: "markdown";
8
- mapToStateProperty: string;
8
+ stateMapping: string;
9
9
  };
10
10
  caption: {
11
11
  name: string;
12
12
  type: "text";
13
- mapToStateProperty: string;
13
+ stateMapping: string;
14
14
  };
15
15
  };
16
16
  state: (main: string, caption?: string) => {
@@ -29,7 +29,7 @@ export declare function useVelcronState(): {
29
29
  main: {
30
30
  name: string;
31
31
  type: "image";
32
- mapToStateProperty: string;
32
+ stateMapping: string;
33
33
  };
34
34
  };
35
35
  state: {
@@ -1,4 +1,5 @@
1
- import { VelcronAppDefinition, VelcronPropertyEditor } from "@omnia/fx-models";
1
+ import { VelcronAppDefinition } from "@omnia/fx-models";
2
+ import { VelcronPropertyEditor } from "../../core";
2
3
  declare const _default: {
3
4
  new (...args: any[]): {
4
5
  $: import("vue").ComponentInternalInstance;
@@ -1,13 +1,28 @@
1
- import { VelcronDataTypes, VelcronImageRatios } from "@omnia/fx-models";
1
+ import { VelcronImageRatios } from "@omnia/fx-models";
2
+ export interface ResolvedPropertyEditor {
3
+ editor: VelcronPropertyEditor;
4
+ }
5
+ export interface BuiltInPropertyEditors {
6
+ text: unknown;
7
+ slider: unknown;
8
+ switch: unknown;
9
+ alignment: unknown;
10
+ color: unknown;
11
+ markdown: unknown;
12
+ icon: unknown;
13
+ image: unknown;
14
+ typography: unknown;
15
+ }
2
16
  export interface VelcronPropertyEditor<TSettings = any> {
3
17
  name?: string;
18
+ category?: string;
4
19
  type: BuiltInPropertyEditorType | string;
5
20
  settings?: TSettings;
6
- mapToStateProperty: string;
7
- dataType?: VelcronDataTypes;
21
+ stateMapping?: string;
22
+ propertyMapping?: string;
8
23
  component?: unknown;
9
24
  }
10
- export type BuiltInPropertyEditorType = "text" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image";
25
+ export type BuiltInPropertyEditorType = "text" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image" | "typography";
11
26
  export declare enum BuiltInPropertyEditorTypes {
12
27
  text = "text",
13
28
  slider = "slider",
@@ -16,7 +31,8 @@ export declare enum BuiltInPropertyEditorTypes {
16
31
  color = "color",
17
32
  markdown = "markdown",
18
33
  icon = "icon",
19
- image = "image"
34
+ image = "image",
35
+ typography = "typography"
20
36
  }
21
37
  export interface VelcronSliderPropertyEditorSettings {
22
38
  min: number;
@@ -29,6 +45,9 @@ export interface VelcronSliderPropertyEditor extends VelcronPropertyEditor<Velcr
29
45
  export interface VelcronTextPropertyEditor extends VelcronPropertyEditor<any> {
30
46
  type: "text";
31
47
  }
48
+ export interface VelcronTypographyPropertyEditor extends VelcronPropertyEditor<any> {
49
+ type: "typography";
50
+ }
32
51
  export interface VelcronSwitchPropertyEditor extends VelcronPropertyEditor<any> {
33
52
  type: "switch";
34
53
  }
@@ -0,0 +1,9 @@
1
+ import { BuiltInPropertyEditors, ResolvedPropertyEditor } from "../models";
2
+ export declare class VelcronPropertyEditors {
3
+ private static editors;
4
+ static registerEditor(type: string, editor: any): void;
5
+ static hasEditors(): boolean;
6
+ static hasEditor(type: string): any;
7
+ static registerEditors(editors: BuiltInPropertyEditors): void;
8
+ static getEditor(editor: string): ResolvedPropertyEditor;
9
+ }
@@ -5,3 +5,4 @@ export * from "./VelcronStyles";
5
5
  export * from "./VelcronLogger";
6
6
  export * from "./VelcronRenderers";
7
7
  export * from "./TextValue";
8
+ export * from "./VelcronPropertyEditors";
@@ -0,0 +1,454 @@
1
+ import { HorizontalAlignments, VerticalAlignments } from "@omnia/fx-models";
2
+ export interface VelcronAlignmentPropertyEditorSettings {
3
+ vertical: boolean;
4
+ }
5
+ declare const _default: {
6
+ new (...args: any[]): {
7
+ $: import("vue").ComponentInternalInstance;
8
+ $data: {};
9
+ $props: {
10
+ style?: unknown;
11
+ class?: unknown;
12
+ readonly name?: {
13
+ [x: `onUpdate:${string}`]: {
14
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
15
+ };
16
+ } & {
17
+ [x: `v-model:${string}`]: {
18
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
19
+ required: false;
20
+ };
21
+ } & {
22
+ [x: string]: {
23
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
24
+ required: false;
25
+ };
26
+ } & {
27
+ require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, HorizontalAlignments | VerticalAlignments, {
28
+ "onUpdate:modelValue": {
29
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
30
+ };
31
+ } & {
32
+ "v-model": {
33
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
34
+ required: false;
35
+ };
36
+ } & {
37
+ modelValue: {
38
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
39
+ required: false;
40
+ };
41
+ }>;
42
+ defaultValue(value?: HorizontalAlignments | VerticalAlignments): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, HorizontalAlignments | VerticalAlignments, {
43
+ "onUpdate:modelValue": {
44
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
45
+ };
46
+ } & {
47
+ "v-model": {
48
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
49
+ required: false;
50
+ };
51
+ } & {
52
+ modelValue: {
53
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
54
+ required: false;
55
+ };
56
+ }, false>;
57
+ doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, HorizontalAlignments | VerticalAlignments, {
58
+ "onUpdate:modelValue": {
59
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
60
+ };
61
+ } & {
62
+ "v-model": {
63
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
64
+ required: false;
65
+ };
66
+ } & {
67
+ modelValue: {
68
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
69
+ required: false;
70
+ };
71
+ }>;
72
+ };
73
+ key?: string | number | symbol;
74
+ ref?: import("vue").VNodeRef;
75
+ ref_for?: boolean;
76
+ ref_key?: string;
77
+ onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
78
+ [key: string]: any;
79
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
80
+ [key: string]: any;
81
+ }>) => void)[];
82
+ onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
83
+ [key: string]: any;
84
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
85
+ [key: string]: any;
86
+ }>) => void)[];
87
+ onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
88
+ [key: string]: any;
89
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
90
+ [key: string]: any;
91
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
92
+ [key: string]: any;
93
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
94
+ [key: string]: any;
95
+ }>) => void)[];
96
+ onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
97
+ [key: string]: any;
98
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
99
+ [key: string]: any;
100
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
101
+ [key: string]: any;
102
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
103
+ [key: string]: any;
104
+ }>) => void)[];
105
+ onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
106
+ [key: string]: any;
107
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
108
+ [key: string]: any;
109
+ }>) => void)[];
110
+ onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
111
+ [key: string]: any;
112
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
113
+ [key: string]: any;
114
+ }>) => void)[];
115
+ readonly modelValue?: HorizontalAlignments | VerticalAlignments;
116
+ "onUpdate:modelValue"?: ((value: HorizontalAlignments | VerticalAlignments) => any) & ((value: HorizontalAlignments | VerticalAlignments) => any);
117
+ readonly "v-model"?: HorizontalAlignments | VerticalAlignments;
118
+ readonly settings?: VelcronAlignmentPropertyEditorSettings;
119
+ };
120
+ $attrs: {
121
+ [x: string]: unknown;
122
+ };
123
+ $refs: {
124
+ [x: string]: unknown;
125
+ };
126
+ $slots: Readonly<{
127
+ [name: string]: import("vue").Slot<any>;
128
+ }>;
129
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
130
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
131
+ $emit: (event: "update:modelValue", value: HorizontalAlignments | VerticalAlignments) => void;
132
+ $el: any;
133
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
134
+ settings: {
135
+ type: import("vue").PropType<VelcronAlignmentPropertyEditorSettings>;
136
+ } & {
137
+ type: import("vue").PropType<VelcronAlignmentPropertyEditorSettings>;
138
+ };
139
+ "onUpdate:modelValue": {
140
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
141
+ };
142
+ "v-model": {
143
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
144
+ required: false;
145
+ };
146
+ modelValue: {
147
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
148
+ required: false;
149
+ };
150
+ name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
151
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
152
+ }; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
153
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
154
+ required: false;
155
+ }; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
156
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
157
+ required: false;
158
+ }; } & {
159
+ require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, HorizontalAlignments | VerticalAlignments, {
160
+ "onUpdate:modelValue": {
161
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
162
+ };
163
+ } & {
164
+ "v-model": {
165
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
166
+ required: false;
167
+ };
168
+ } & {
169
+ modelValue: {
170
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
171
+ required: false;
172
+ };
173
+ }>;
174
+ defaultValue(value?: HorizontalAlignments | VerticalAlignments): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, HorizontalAlignments | VerticalAlignments, {
175
+ "onUpdate:modelValue": {
176
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
177
+ };
178
+ } & {
179
+ "v-model": {
180
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
181
+ required: false;
182
+ };
183
+ } & {
184
+ modelValue: {
185
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
186
+ required: false;
187
+ };
188
+ }, false>;
189
+ doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, HorizontalAlignments | VerticalAlignments, {
190
+ "onUpdate:modelValue": {
191
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
192
+ };
193
+ } & {
194
+ "v-model": {
195
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
196
+ required: false;
197
+ };
198
+ } & {
199
+ modelValue: {
200
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
201
+ required: false;
202
+ };
203
+ }>;
204
+ };
205
+ }>> & {
206
+ "onUpdate:modelValue"?: (value: HorizontalAlignments | VerticalAlignments) => any;
207
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
208
+ "update:modelValue": (value: HorizontalAlignments | VerticalAlignments) => true;
209
+ }, string, {}, {}, string, {}> & {
210
+ beforeCreate?: (() => void) | (() => void)[];
211
+ created?: (() => void) | (() => void)[];
212
+ beforeMount?: (() => void) | (() => void)[];
213
+ mounted?: (() => void) | (() => void)[];
214
+ beforeUpdate?: (() => void) | (() => void)[];
215
+ updated?: (() => void) | (() => void)[];
216
+ activated?: (() => void) | (() => void)[];
217
+ deactivated?: (() => void) | (() => void)[];
218
+ beforeDestroy?: (() => void) | (() => void)[];
219
+ beforeUnmount?: (() => void) | (() => void)[];
220
+ destroyed?: (() => void) | (() => void)[];
221
+ unmounted?: (() => void) | (() => void)[];
222
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
223
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
224
+ 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)[];
225
+ };
226
+ $forceUpdate: () => void;
227
+ $nextTick: typeof import("vue").nextTick;
228
+ $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;
229
+ } & Readonly<import("vue").ExtractPropTypes<{
230
+ settings: {
231
+ type: import("vue").PropType<VelcronAlignmentPropertyEditorSettings>;
232
+ } & {
233
+ type: import("vue").PropType<VelcronAlignmentPropertyEditorSettings>;
234
+ };
235
+ "onUpdate:modelValue": {
236
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
237
+ };
238
+ "v-model": {
239
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
240
+ required: false;
241
+ };
242
+ modelValue: {
243
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
244
+ required: false;
245
+ };
246
+ name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
247
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
248
+ }; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
249
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
250
+ required: false;
251
+ }; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
252
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
253
+ required: false;
254
+ }; } & {
255
+ require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, HorizontalAlignments | VerticalAlignments, {
256
+ "onUpdate:modelValue": {
257
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
258
+ };
259
+ } & {
260
+ "v-model": {
261
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
262
+ required: false;
263
+ };
264
+ } & {
265
+ modelValue: {
266
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
267
+ required: false;
268
+ };
269
+ }>;
270
+ defaultValue(value?: HorizontalAlignments | VerticalAlignments): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, HorizontalAlignments | VerticalAlignments, {
271
+ "onUpdate:modelValue": {
272
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
273
+ };
274
+ } & {
275
+ "v-model": {
276
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
277
+ required: false;
278
+ };
279
+ } & {
280
+ modelValue: {
281
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
282
+ required: false;
283
+ };
284
+ }, false>;
285
+ doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, HorizontalAlignments | VerticalAlignments, {
286
+ "onUpdate:modelValue": {
287
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
288
+ };
289
+ } & {
290
+ "v-model": {
291
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
292
+ required: false;
293
+ };
294
+ } & {
295
+ modelValue: {
296
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
297
+ required: false;
298
+ };
299
+ }>;
300
+ };
301
+ }>> & {
302
+ "onUpdate:modelValue"?: (value: HorizontalAlignments | VerticalAlignments) => any;
303
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
304
+ __isFragment?: never;
305
+ __isTeleport?: never;
306
+ __isSuspense?: never;
307
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
308
+ settings: {
309
+ type: import("vue").PropType<VelcronAlignmentPropertyEditorSettings>;
310
+ } & {
311
+ type: import("vue").PropType<VelcronAlignmentPropertyEditorSettings>;
312
+ };
313
+ "onUpdate:modelValue": {
314
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
315
+ };
316
+ "v-model": {
317
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
318
+ required: false;
319
+ };
320
+ modelValue: {
321
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
322
+ required: false;
323
+ };
324
+ name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
325
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
326
+ }; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
327
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
328
+ required: false;
329
+ }; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
330
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
331
+ required: false;
332
+ }; } & {
333
+ require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, HorizontalAlignments | VerticalAlignments, {
334
+ "onUpdate:modelValue": {
335
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
336
+ };
337
+ } & {
338
+ "v-model": {
339
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
340
+ required: false;
341
+ };
342
+ } & {
343
+ modelValue: {
344
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
345
+ required: false;
346
+ };
347
+ }>;
348
+ defaultValue(value?: HorizontalAlignments | VerticalAlignments): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, HorizontalAlignments | VerticalAlignments, {
349
+ "onUpdate:modelValue": {
350
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
351
+ };
352
+ } & {
353
+ "v-model": {
354
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
355
+ required: false;
356
+ };
357
+ } & {
358
+ modelValue: {
359
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
360
+ required: false;
361
+ };
362
+ }, false>;
363
+ doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, HorizontalAlignments | VerticalAlignments, {
364
+ "onUpdate:modelValue": {
365
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
366
+ };
367
+ } & {
368
+ "v-model": {
369
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
370
+ required: false;
371
+ };
372
+ } & {
373
+ modelValue: {
374
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
375
+ required: false;
376
+ };
377
+ }>;
378
+ };
379
+ }>> & {
380
+ "onUpdate:modelValue"?: (value: HorizontalAlignments | VerticalAlignments) => any;
381
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
382
+ "update:modelValue": (value: HorizontalAlignments | VerticalAlignments) => true;
383
+ }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
384
+ propsDefinition: Omit<Readonly<{} & {
385
+ name?: {
386
+ [x: `onUpdate:${string}`]: {
387
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
388
+ };
389
+ } & {
390
+ [x: `v-model:${string}`]: {
391
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
392
+ required: false;
393
+ };
394
+ } & {
395
+ [x: string]: {
396
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
397
+ required: false;
398
+ };
399
+ } & {
400
+ require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, HorizontalAlignments | VerticalAlignments, {
401
+ "onUpdate:modelValue": {
402
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
403
+ };
404
+ } & {
405
+ "v-model": {
406
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
407
+ required: false;
408
+ };
409
+ } & {
410
+ modelValue: {
411
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
412
+ required: false;
413
+ };
414
+ }>;
415
+ defaultValue(value?: HorizontalAlignments | VerticalAlignments): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, HorizontalAlignments | VerticalAlignments, {
416
+ "onUpdate:modelValue": {
417
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
418
+ };
419
+ } & {
420
+ "v-model": {
421
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
422
+ required: false;
423
+ };
424
+ } & {
425
+ modelValue: {
426
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
427
+ required: false;
428
+ };
429
+ }, false>;
430
+ doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, HorizontalAlignments | VerticalAlignments, {
431
+ "onUpdate:modelValue": {
432
+ type: import("vue").PropType<(value: HorizontalAlignments | VerticalAlignments) => any>;
433
+ };
434
+ } & {
435
+ "v-model": {
436
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
437
+ required: false;
438
+ };
439
+ } & {
440
+ modelValue: {
441
+ type: import("vue").PropType<HorizontalAlignments | VerticalAlignments>;
442
+ required: false;
443
+ };
444
+ }>;
445
+ };
446
+ modelValue?: HorizontalAlignments | VerticalAlignments;
447
+ "onUpdate:modelValue"?: (value: HorizontalAlignments | VerticalAlignments) => any;
448
+ "v-model"?: HorizontalAlignments | VerticalAlignments;
449
+ settings?: VelcronAlignmentPropertyEditorSettings;
450
+ }>, "onUpdate:modelValue"> & {
451
+ "onUpdate:modelValue"?: (value: HorizontalAlignments | VerticalAlignments) => any;
452
+ };
453
+ };
454
+ export default _default;