@omnia/fx 8.0.40-dev → 8.0.41-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceprogressblade/AppInstanceProgressBlade.d.ts +196 -20
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceprogressblade/IAppInstanceProgressBlade.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceCompletedStepVueComponent.d.ts +245 -42
- package/internal-do-not-import-from-here/ux/appprovisioning/components/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/icon/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/magiclink/MagicLinkSuccess.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/magiclink/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/Progress.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/urlinput/UrlInputLegacy.d.ts +342 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/SocialText.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/VelcronDefinitionIds.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/store/ContentEditorStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +21 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +18 -4
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/icon/IconPresets.d.ts +0 -6
- /package/internal-do-not-import-from-here/ux/magiclink/{MagicLink.d.ts → MagicLinkFailure.d.ts} +0 -0
|
@@ -1,23 +1,199 @@
|
|
|
1
|
-
import { VueComponentBase } from "../..";
|
|
2
1
|
import { AppInstance } from "../../../models";
|
|
3
|
-
import { AppStore } from "../../../stores";
|
|
4
|
-
import { IAppInstanceProgressBlade } from "./IAppInstanceProgressBlade";
|
|
5
2
|
import { AppInstanceProgressActions } from "../Enums";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
3
|
+
declare const _default: {
|
|
4
|
+
new (...args: any[]): {
|
|
5
|
+
$: import("vue").ComponentInternalInstance;
|
|
6
|
+
$data: {};
|
|
7
|
+
$props: Partial<{}> & Omit<{
|
|
8
|
+
readonly action?: AppInstanceProgressActions;
|
|
9
|
+
readonly appInstance?: AppInstance;
|
|
10
|
+
readonly "app-instance"?: AppInstance;
|
|
11
|
+
readonly deleteAppWithErrorStatusAfterCreating?: boolean;
|
|
12
|
+
readonly "delete-app-with-error-status-after-creating"?: boolean;
|
|
13
|
+
readonly appBarTitle?: string;
|
|
14
|
+
readonly "app-bar-title"?: string;
|
|
15
|
+
onDoc$?: (description?: string) => any;
|
|
16
|
+
onHandleAppActionCompleted?: () => any;
|
|
17
|
+
onHandleAppActionError?: () => any;
|
|
18
|
+
onOnCloseFunc?: () => any;
|
|
19
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
"delete-app-with-error-status-after-creating": {
|
|
21
|
+
type: import("vue").PropType<boolean>;
|
|
22
|
+
};
|
|
23
|
+
deleteAppWithErrorStatusAfterCreating: {
|
|
24
|
+
type: import("vue").PropType<boolean>;
|
|
25
|
+
};
|
|
26
|
+
action: {
|
|
27
|
+
type: import("vue").PropType<AppInstanceProgressActions>;
|
|
28
|
+
required: false;
|
|
29
|
+
};
|
|
30
|
+
"app-instance": {
|
|
31
|
+
type: import("vue").PropType<AppInstance>;
|
|
32
|
+
};
|
|
33
|
+
appInstance: {
|
|
34
|
+
type: import("vue").PropType<AppInstance>;
|
|
35
|
+
};
|
|
36
|
+
"app-bar-title": {
|
|
37
|
+
type: import("vue").PropType<string>;
|
|
38
|
+
};
|
|
39
|
+
appBarTitle: {
|
|
40
|
+
type: import("vue").PropType<string>;
|
|
41
|
+
};
|
|
42
|
+
}>> & {
|
|
43
|
+
onDoc$?: (description?: string) => any;
|
|
44
|
+
onHandleAppActionCompleted?: () => any;
|
|
45
|
+
onHandleAppActionError?: () => any;
|
|
46
|
+
onOnCloseFunc?: () => any;
|
|
47
|
+
}, never>;
|
|
48
|
+
$attrs: {
|
|
49
|
+
[x: string]: unknown;
|
|
50
|
+
};
|
|
51
|
+
$refs: {
|
|
52
|
+
[x: string]: unknown;
|
|
53
|
+
};
|
|
54
|
+
$slots: Readonly<{
|
|
55
|
+
[name: string]: import("vue").Slot<any>;
|
|
56
|
+
}>;
|
|
57
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
|
58
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
|
59
|
+
$emit: ((event: "doc$", description?: string) => void) & ((event: "handleAppActionCompleted") => void) & ((event: "handleAppActionError") => void) & ((event: "onCloseFunc") => void);
|
|
60
|
+
$el: any;
|
|
61
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
62
|
+
"delete-app-with-error-status-after-creating": {
|
|
63
|
+
type: import("vue").PropType<boolean>;
|
|
64
|
+
};
|
|
65
|
+
deleteAppWithErrorStatusAfterCreating: {
|
|
66
|
+
type: import("vue").PropType<boolean>;
|
|
67
|
+
};
|
|
68
|
+
action: {
|
|
69
|
+
type: import("vue").PropType<AppInstanceProgressActions>;
|
|
70
|
+
required: false;
|
|
71
|
+
};
|
|
72
|
+
"app-instance": {
|
|
73
|
+
type: import("vue").PropType<AppInstance>;
|
|
74
|
+
};
|
|
75
|
+
appInstance: {
|
|
76
|
+
type: import("vue").PropType<AppInstance>;
|
|
77
|
+
};
|
|
78
|
+
"app-bar-title": {
|
|
79
|
+
type: import("vue").PropType<string>;
|
|
80
|
+
};
|
|
81
|
+
appBarTitle: {
|
|
82
|
+
type: import("vue").PropType<string>;
|
|
83
|
+
};
|
|
84
|
+
}>> & {
|
|
85
|
+
onDoc$?: (description?: string) => any;
|
|
86
|
+
onHandleAppActionCompleted?: () => any;
|
|
87
|
+
onHandleAppActionError?: () => any;
|
|
88
|
+
onOnCloseFunc?: () => any;
|
|
89
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
90
|
+
onCloseFunc: () => void;
|
|
91
|
+
doc$(description?: string): {
|
|
92
|
+
onCloseFunc: () => void;
|
|
93
|
+
};
|
|
94
|
+
handleAppActionCompleted: () => void;
|
|
95
|
+
handleAppActionError: () => void;
|
|
96
|
+
}, string, {}, {}, string, {}> & {
|
|
97
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
98
|
+
created?: (() => void) | (() => void)[];
|
|
99
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
100
|
+
mounted?: (() => void) | (() => void)[];
|
|
101
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
102
|
+
updated?: (() => void) | (() => void)[];
|
|
103
|
+
activated?: (() => void) | (() => void)[];
|
|
104
|
+
deactivated?: (() => void) | (() => void)[];
|
|
105
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
106
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
107
|
+
destroyed?: (() => void) | (() => void)[];
|
|
108
|
+
unmounted?: (() => void) | (() => void)[];
|
|
109
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
110
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
111
|
+
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)[];
|
|
112
|
+
};
|
|
113
|
+
$forceUpdate: () => void;
|
|
114
|
+
$nextTick: typeof import("vue").nextTick;
|
|
115
|
+
$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;
|
|
116
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
117
|
+
"delete-app-with-error-status-after-creating": {
|
|
118
|
+
type: import("vue").PropType<boolean>;
|
|
119
|
+
};
|
|
120
|
+
deleteAppWithErrorStatusAfterCreating: {
|
|
121
|
+
type: import("vue").PropType<boolean>;
|
|
122
|
+
};
|
|
123
|
+
action: {
|
|
124
|
+
type: import("vue").PropType<AppInstanceProgressActions>;
|
|
125
|
+
required: false;
|
|
126
|
+
};
|
|
127
|
+
"app-instance": {
|
|
128
|
+
type: import("vue").PropType<AppInstance>;
|
|
129
|
+
};
|
|
130
|
+
appInstance: {
|
|
131
|
+
type: import("vue").PropType<AppInstance>;
|
|
132
|
+
};
|
|
133
|
+
"app-bar-title": {
|
|
134
|
+
type: import("vue").PropType<string>;
|
|
135
|
+
};
|
|
136
|
+
appBarTitle: {
|
|
137
|
+
type: import("vue").PropType<string>;
|
|
138
|
+
};
|
|
139
|
+
}>> & {
|
|
140
|
+
onDoc$?: (description?: string) => any;
|
|
141
|
+
onHandleAppActionCompleted?: () => any;
|
|
142
|
+
onHandleAppActionError?: () => any;
|
|
143
|
+
onOnCloseFunc?: () => any;
|
|
144
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
|
145
|
+
__isFragment?: never;
|
|
146
|
+
__isTeleport?: never;
|
|
147
|
+
__isSuspense?: never;
|
|
148
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
149
|
+
"delete-app-with-error-status-after-creating": {
|
|
150
|
+
type: import("vue").PropType<boolean>;
|
|
151
|
+
};
|
|
152
|
+
deleteAppWithErrorStatusAfterCreating: {
|
|
153
|
+
type: import("vue").PropType<boolean>;
|
|
154
|
+
};
|
|
155
|
+
action: {
|
|
156
|
+
type: import("vue").PropType<AppInstanceProgressActions>;
|
|
157
|
+
required: false;
|
|
158
|
+
};
|
|
159
|
+
"app-instance": {
|
|
160
|
+
type: import("vue").PropType<AppInstance>;
|
|
161
|
+
};
|
|
162
|
+
appInstance: {
|
|
163
|
+
type: import("vue").PropType<AppInstance>;
|
|
164
|
+
};
|
|
165
|
+
"app-bar-title": {
|
|
166
|
+
type: import("vue").PropType<string>;
|
|
167
|
+
};
|
|
168
|
+
appBarTitle: {
|
|
169
|
+
type: import("vue").PropType<string>;
|
|
170
|
+
};
|
|
171
|
+
}>> & {
|
|
172
|
+
onDoc$?: (description?: string) => any;
|
|
173
|
+
onHandleAppActionCompleted?: () => any;
|
|
174
|
+
onHandleAppActionError?: () => any;
|
|
175
|
+
onOnCloseFunc?: () => any;
|
|
176
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
177
|
onCloseFunc: () => void;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
178
|
+
doc$(description?: string): {
|
|
179
|
+
onCloseFunc: () => void;
|
|
180
|
+
};
|
|
181
|
+
handleAppActionCompleted: () => void;
|
|
182
|
+
handleAppActionError: () => void;
|
|
183
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
184
|
+
propsDefinition: Omit<Readonly<{} & {
|
|
185
|
+
action?: AppInstanceProgressActions;
|
|
186
|
+
appInstance?: AppInstance;
|
|
187
|
+
"app-instance"?: AppInstance;
|
|
188
|
+
deleteAppWithErrorStatusAfterCreating?: boolean;
|
|
189
|
+
"delete-app-with-error-status-after-creating"?: boolean;
|
|
190
|
+
appBarTitle?: string;
|
|
191
|
+
"app-bar-title"?: string;
|
|
192
|
+
}>, "onDoc$" | "onHandleAppActionCompleted" | "onHandleAppActionError" | "onOnCloseFunc"> & {
|
|
193
|
+
onDoc$?: (description?: string) => any;
|
|
194
|
+
onHandleAppActionCompleted?: () => any;
|
|
195
|
+
onHandleAppActionError?: () => any;
|
|
196
|
+
onOnCloseFunc?: () => any;
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
export default _default;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { TsxAllowUnknowProperties } from "../..";
|
|
2
1
|
import { AppInstance } from "../../../models";
|
|
3
2
|
import { AppInstanceProgressActions } from "../Enums";
|
|
4
3
|
export interface IAppInstanceProgressBlade {
|
|
@@ -13,14 +12,3 @@ export interface IAppInstanceProgressBlade {
|
|
|
13
12
|
* */
|
|
14
13
|
deleteAppWithErrorStatusAfterCreating?: boolean;
|
|
15
14
|
}
|
|
16
|
-
declare global {
|
|
17
|
-
namespace JSX {
|
|
18
|
-
interface Element {
|
|
19
|
-
}
|
|
20
|
-
interface ElementClass {
|
|
21
|
-
}
|
|
22
|
-
interface IntrinsicElements {
|
|
23
|
-
"omfx-appinstance-progress-blade": TsxAllowUnknowProperties<IAppInstanceProgressBlade>;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import { OmniaTheming, OmniaUxLocalization, VueComponentBase } from "../..";
|
|
2
1
|
import { AppInstance, AppInstanceCreateInfo } from "../../../models";
|
|
3
|
-
import { AppStore, MultilingualStore } from "../../../stores";
|
|
4
2
|
import { AppInstanceProgressActions } from "../Enums";
|
|
5
3
|
export interface IAppInstanceCompletedStepProps {
|
|
6
4
|
hideProgressLabel?: boolean;
|
|
@@ -12,43 +10,248 @@ export interface IAppInstanceCompletedStepProps {
|
|
|
12
10
|
handleBeforeUpdate?: () => Promise<void>;
|
|
13
11
|
deleteAppWithErrorStatusAfterCreating?: boolean;
|
|
14
12
|
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
13
|
+
declare const _default: {
|
|
14
|
+
new (...args: any[]): {
|
|
15
|
+
$: import("vue").ComponentInternalInstance;
|
|
16
|
+
$data: {};
|
|
17
|
+
$props: Partial<{}> & Omit<{
|
|
18
|
+
readonly action?: AppInstanceProgressActions;
|
|
19
|
+
readonly appInstance?: AppInstance;
|
|
20
|
+
readonly "app-instance"?: AppInstance;
|
|
21
|
+
readonly hideProgressLabel?: boolean;
|
|
22
|
+
readonly "hide-progress-label"?: boolean;
|
|
23
|
+
readonly deleteAppWithErrorStatusAfterCreating?: boolean;
|
|
24
|
+
readonly "delete-app-with-error-status-after-creating"?: boolean;
|
|
25
|
+
readonly onHandleBeforeUpdate?: () => Promise<void>;
|
|
26
|
+
readonly "on-handle-before-update"?: () => Promise<void>;
|
|
27
|
+
readonly onHandleBeforeCreate?: (appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>;
|
|
28
|
+
readonly "on-handle-before-create"?: (appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>;
|
|
29
|
+
onDoc$?: (description?: string) => any;
|
|
30
|
+
onHandleAppActionCompleted?: (appInstance: AppInstance) => any;
|
|
31
|
+
onHandleAppActionError?: (error: any) => any;
|
|
32
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
+
"on-handle-before-create": {
|
|
34
|
+
type: import("vue").PropType<(appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>>;
|
|
35
|
+
};
|
|
36
|
+
onHandleBeforeCreate: {
|
|
37
|
+
type: import("vue").PropType<(appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>>;
|
|
38
|
+
};
|
|
39
|
+
"on-handle-before-update": {
|
|
40
|
+
type: import("vue").PropType<() => Promise<void>>;
|
|
41
|
+
};
|
|
42
|
+
onHandleBeforeUpdate: {
|
|
43
|
+
type: import("vue").PropType<() => Promise<void>>;
|
|
44
|
+
};
|
|
45
|
+
"delete-app-with-error-status-after-creating": {
|
|
46
|
+
type: import("vue").PropType<boolean>;
|
|
47
|
+
};
|
|
48
|
+
deleteAppWithErrorStatusAfterCreating: {
|
|
49
|
+
type: import("vue").PropType<boolean>;
|
|
50
|
+
};
|
|
51
|
+
action: {
|
|
52
|
+
type: import("vue").PropType<AppInstanceProgressActions>;
|
|
53
|
+
required: false;
|
|
54
|
+
};
|
|
55
|
+
"hide-progress-label": {
|
|
56
|
+
type: import("vue").PropType<boolean>;
|
|
57
|
+
};
|
|
58
|
+
hideProgressLabel: {
|
|
59
|
+
type: import("vue").PropType<boolean>;
|
|
60
|
+
};
|
|
61
|
+
"app-instance": {
|
|
62
|
+
type: import("vue").PropType<AppInstance>;
|
|
63
|
+
};
|
|
64
|
+
appInstance: {
|
|
65
|
+
type: import("vue").PropType<AppInstance>;
|
|
66
|
+
};
|
|
67
|
+
}>> & {
|
|
68
|
+
onDoc$?: (description?: string) => any;
|
|
69
|
+
onHandleAppActionCompleted?: (appInstance: AppInstance) => any;
|
|
70
|
+
onHandleAppActionError?: (error: any) => any;
|
|
71
|
+
}, never>;
|
|
72
|
+
$attrs: {
|
|
73
|
+
[x: string]: unknown;
|
|
74
|
+
};
|
|
75
|
+
$refs: {
|
|
76
|
+
[x: string]: unknown;
|
|
77
|
+
};
|
|
78
|
+
$slots: Readonly<{
|
|
79
|
+
[name: string]: import("vue").Slot<any>;
|
|
80
|
+
}>;
|
|
81
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
|
82
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
|
83
|
+
$emit: ((event: "doc$", description?: string) => void) & ((event: "handleAppActionCompleted", appInstance: AppInstance) => void) & ((event: "handleAppActionError", error: any) => void);
|
|
84
|
+
$el: any;
|
|
85
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
86
|
+
"on-handle-before-create": {
|
|
87
|
+
type: import("vue").PropType<(appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>>;
|
|
88
|
+
};
|
|
89
|
+
onHandleBeforeCreate: {
|
|
90
|
+
type: import("vue").PropType<(appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>>;
|
|
91
|
+
};
|
|
92
|
+
"on-handle-before-update": {
|
|
93
|
+
type: import("vue").PropType<() => Promise<void>>;
|
|
94
|
+
};
|
|
95
|
+
onHandleBeforeUpdate: {
|
|
96
|
+
type: import("vue").PropType<() => Promise<void>>;
|
|
97
|
+
};
|
|
98
|
+
"delete-app-with-error-status-after-creating": {
|
|
99
|
+
type: import("vue").PropType<boolean>;
|
|
100
|
+
};
|
|
101
|
+
deleteAppWithErrorStatusAfterCreating: {
|
|
102
|
+
type: import("vue").PropType<boolean>;
|
|
103
|
+
};
|
|
104
|
+
action: {
|
|
105
|
+
type: import("vue").PropType<AppInstanceProgressActions>;
|
|
106
|
+
required: false;
|
|
107
|
+
};
|
|
108
|
+
"hide-progress-label": {
|
|
109
|
+
type: import("vue").PropType<boolean>;
|
|
110
|
+
};
|
|
111
|
+
hideProgressLabel: {
|
|
112
|
+
type: import("vue").PropType<boolean>;
|
|
113
|
+
};
|
|
114
|
+
"app-instance": {
|
|
115
|
+
type: import("vue").PropType<AppInstance>;
|
|
116
|
+
};
|
|
117
|
+
appInstance: {
|
|
118
|
+
type: import("vue").PropType<AppInstance>;
|
|
119
|
+
};
|
|
120
|
+
}>> & {
|
|
121
|
+
onDoc$?: (description?: string) => any;
|
|
122
|
+
onHandleAppActionCompleted?: (appInstance: AppInstance) => any;
|
|
123
|
+
onHandleAppActionError?: (error: any) => any;
|
|
124
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
125
|
+
handleAppActionError: (error: any) => void;
|
|
126
|
+
doc$(description?: string): {
|
|
127
|
+
handleAppActionError: (error: any) => void;
|
|
128
|
+
};
|
|
129
|
+
handleAppActionCompleted: (appInstance: AppInstance) => void;
|
|
130
|
+
}, string, {}, {}, string, {}> & {
|
|
131
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
132
|
+
created?: (() => void) | (() => void)[];
|
|
133
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
134
|
+
mounted?: (() => void) | (() => void)[];
|
|
135
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
136
|
+
updated?: (() => void) | (() => void)[];
|
|
137
|
+
activated?: (() => void) | (() => void)[];
|
|
138
|
+
deactivated?: (() => void) | (() => void)[];
|
|
139
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
140
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
141
|
+
destroyed?: (() => void) | (() => void)[];
|
|
142
|
+
unmounted?: (() => void) | (() => void)[];
|
|
143
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
144
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
145
|
+
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)[];
|
|
146
|
+
};
|
|
147
|
+
$forceUpdate: () => void;
|
|
148
|
+
$nextTick: typeof import("vue").nextTick;
|
|
149
|
+
$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;
|
|
150
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
151
|
+
"on-handle-before-create": {
|
|
152
|
+
type: import("vue").PropType<(appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>>;
|
|
153
|
+
};
|
|
154
|
+
onHandleBeforeCreate: {
|
|
155
|
+
type: import("vue").PropType<(appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>>;
|
|
156
|
+
};
|
|
157
|
+
"on-handle-before-update": {
|
|
158
|
+
type: import("vue").PropType<() => Promise<void>>;
|
|
159
|
+
};
|
|
160
|
+
onHandleBeforeUpdate: {
|
|
161
|
+
type: import("vue").PropType<() => Promise<void>>;
|
|
162
|
+
};
|
|
163
|
+
"delete-app-with-error-status-after-creating": {
|
|
164
|
+
type: import("vue").PropType<boolean>;
|
|
165
|
+
};
|
|
166
|
+
deleteAppWithErrorStatusAfterCreating: {
|
|
167
|
+
type: import("vue").PropType<boolean>;
|
|
168
|
+
};
|
|
169
|
+
action: {
|
|
170
|
+
type: import("vue").PropType<AppInstanceProgressActions>;
|
|
171
|
+
required: false;
|
|
172
|
+
};
|
|
173
|
+
"hide-progress-label": {
|
|
174
|
+
type: import("vue").PropType<boolean>;
|
|
175
|
+
};
|
|
176
|
+
hideProgressLabel: {
|
|
177
|
+
type: import("vue").PropType<boolean>;
|
|
178
|
+
};
|
|
179
|
+
"app-instance": {
|
|
180
|
+
type: import("vue").PropType<AppInstance>;
|
|
181
|
+
};
|
|
182
|
+
appInstance: {
|
|
183
|
+
type: import("vue").PropType<AppInstance>;
|
|
184
|
+
};
|
|
185
|
+
}>> & {
|
|
186
|
+
onDoc$?: (description?: string) => any;
|
|
187
|
+
onHandleAppActionCompleted?: (appInstance: AppInstance) => any;
|
|
188
|
+
onHandleAppActionError?: (error: any) => any;
|
|
189
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
|
190
|
+
__isFragment?: never;
|
|
191
|
+
__isTeleport?: never;
|
|
192
|
+
__isSuspense?: never;
|
|
193
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
194
|
+
"on-handle-before-create": {
|
|
195
|
+
type: import("vue").PropType<(appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>>;
|
|
196
|
+
};
|
|
197
|
+
onHandleBeforeCreate: {
|
|
198
|
+
type: import("vue").PropType<(appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>>;
|
|
199
|
+
};
|
|
200
|
+
"on-handle-before-update": {
|
|
201
|
+
type: import("vue").PropType<() => Promise<void>>;
|
|
202
|
+
};
|
|
203
|
+
onHandleBeforeUpdate: {
|
|
204
|
+
type: import("vue").PropType<() => Promise<void>>;
|
|
205
|
+
};
|
|
206
|
+
"delete-app-with-error-status-after-creating": {
|
|
207
|
+
type: import("vue").PropType<boolean>;
|
|
208
|
+
};
|
|
209
|
+
deleteAppWithErrorStatusAfterCreating: {
|
|
210
|
+
type: import("vue").PropType<boolean>;
|
|
211
|
+
};
|
|
212
|
+
action: {
|
|
213
|
+
type: import("vue").PropType<AppInstanceProgressActions>;
|
|
214
|
+
required: false;
|
|
215
|
+
};
|
|
216
|
+
"hide-progress-label": {
|
|
217
|
+
type: import("vue").PropType<boolean>;
|
|
218
|
+
};
|
|
219
|
+
hideProgressLabel: {
|
|
220
|
+
type: import("vue").PropType<boolean>;
|
|
221
|
+
};
|
|
222
|
+
"app-instance": {
|
|
223
|
+
type: import("vue").PropType<AppInstance>;
|
|
224
|
+
};
|
|
225
|
+
appInstance: {
|
|
226
|
+
type: import("vue").PropType<AppInstance>;
|
|
227
|
+
};
|
|
228
|
+
}>> & {
|
|
229
|
+
onDoc$?: (description?: string) => any;
|
|
230
|
+
onHandleAppActionCompleted?: (appInstance: AppInstance) => any;
|
|
231
|
+
onHandleAppActionError?: (error: any) => any;
|
|
232
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
233
|
+
handleAppActionError: (error: any) => void;
|
|
234
|
+
doc$(description?: string): {
|
|
235
|
+
handleAppActionError: (error: any) => void;
|
|
236
|
+
};
|
|
237
|
+
handleAppActionCompleted: (appInstance: AppInstance) => void;
|
|
238
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
239
|
+
propsDefinition: Omit<Readonly<{} & {
|
|
240
|
+
action?: AppInstanceProgressActions;
|
|
241
|
+
appInstance?: AppInstance;
|
|
242
|
+
"app-instance"?: AppInstance;
|
|
243
|
+
hideProgressLabel?: boolean;
|
|
244
|
+
"hide-progress-label"?: boolean;
|
|
245
|
+
deleteAppWithErrorStatusAfterCreating?: boolean;
|
|
246
|
+
"delete-app-with-error-status-after-creating"?: boolean;
|
|
247
|
+
onHandleBeforeUpdate?: () => Promise<void>;
|
|
248
|
+
"on-handle-before-update"?: () => Promise<void>;
|
|
249
|
+
onHandleBeforeCreate?: (appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>;
|
|
250
|
+
"on-handle-before-create"?: (appInstance: AppInstance, appInstanceCreateInfo: AppInstanceCreateInfo) => Promise<AppInstanceCreateInfo>;
|
|
251
|
+
}>, "onDoc$" | "onHandleAppActionCompleted" | "onHandleAppActionError"> & {
|
|
252
|
+
onDoc$?: (description?: string) => any;
|
|
253
|
+
onHandleAppActionCompleted?: (appInstance: AppInstance) => any;
|
|
254
|
+
onHandleAppActionError?: (error: any) => any;
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
export default _default;
|
|
@@ -3,5 +3,4 @@ export * from "./AppInstanceInformationVueComponent";
|
|
|
3
3
|
export * from "./AppInstanceTemplatePickerVueComponent";
|
|
4
4
|
export * from "./AppProvisioningStepComponentBase";
|
|
5
5
|
export * from "./AppInstanceFeatureVueComponent";
|
|
6
|
-
export * from "./AppInstanceCompletedStepVueComponent";
|
|
7
6
|
export * from "./AppProvisioningComponentBase";
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import "./MagicLink.css";
|
|
2
|
+
declare const _default: {
|
|
3
|
+
new (...args: any[]): {
|
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
|
5
|
+
$data: {};
|
|
6
|
+
$props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
|
|
7
|
+
$attrs: {
|
|
8
|
+
[x: string]: unknown;
|
|
9
|
+
};
|
|
10
|
+
$refs: {
|
|
11
|
+
[x: string]: unknown;
|
|
12
|
+
};
|
|
13
|
+
$slots: Readonly<{
|
|
14
|
+
[name: string]: import("vue").Slot<any>;
|
|
15
|
+
}>;
|
|
16
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
|
17
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
|
18
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
19
|
+
$el: any;
|
|
20
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
21
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
22
|
+
created?: (() => void) | (() => void)[];
|
|
23
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
24
|
+
mounted?: (() => void) | (() => void)[];
|
|
25
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
26
|
+
updated?: (() => void) | (() => void)[];
|
|
27
|
+
activated?: (() => void) | (() => void)[];
|
|
28
|
+
deactivated?: (() => void) | (() => void)[];
|
|
29
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
30
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
31
|
+
destroyed?: (() => void) | (() => void)[];
|
|
32
|
+
unmounted?: (() => void) | (() => void)[];
|
|
33
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
34
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
35
|
+
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)[];
|
|
36
|
+
};
|
|
37
|
+
$forceUpdate: () => void;
|
|
38
|
+
$nextTick: typeof import("vue").nextTick;
|
|
39
|
+
$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;
|
|
40
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
|
41
|
+
__isFragment?: never;
|
|
42
|
+
__isTeleport?: never;
|
|
43
|
+
__isSuspense?: never;
|
|
44
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
45
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
|
46
|
+
};
|
|
47
|
+
export default _default;
|
|
@@ -6,4 +6,17 @@ export declare const AppbarStyles: {
|
|
|
6
6
|
content: string;
|
|
7
7
|
wrapper: (variant: OAppBarTypes, colors: ReturnType<typeof useColorSchemaSetup>) => string;
|
|
8
8
|
navigation: (color: ColorDefinition) => string;
|
|
9
|
+
navigationIcon: {
|
|
10
|
+
buttonHeader: string;
|
|
11
|
+
container: string;
|
|
12
|
+
menuItems: string;
|
|
13
|
+
menuOpen: string;
|
|
14
|
+
line: (color: string) => string;
|
|
15
|
+
line1: string;
|
|
16
|
+
line1Open: string;
|
|
17
|
+
line2: string;
|
|
18
|
+
line2Open: string;
|
|
19
|
+
line3: string;
|
|
20
|
+
line3Open: string;
|
|
21
|
+
};
|
|
9
22
|
};
|