@omnia/fx 8.0.187-dev → 8.0.189-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/stores/mediapicker/ImageTransformerStore.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPicker.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonBlueprintsViewer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStyleEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +16 -8
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStoreV2.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/journey/DefineBlade.d.ts +10 -147
- package/internal-do-not-import-from-here/ux/journey/Journey.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/models/Constants.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +112 -560
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +7 -94
- package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorAction.d.ts +69 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorActionSettings.d.ts +56 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorClickHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +8 -91
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableServer.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +50 -310
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/rating/Rating.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +30 -6
- package/package.json +2 -2
@@ -1,4 +1,5 @@
|
|
1
|
-
import {
|
1
|
+
import { MessageBusExposeOnlySubscription } from "@omnia/fx";
|
2
|
+
import { GuidValue, IMessageBusSubscriptionHandler } from "@omnia/fx-models";
|
2
3
|
import { BladeInstance, defineBlade } from "@omnia/fx/ux";
|
3
4
|
import { BladeSizeTypes } from "../models/Constants";
|
4
5
|
import { JourneyVariant } from "../Journey.css";
|
@@ -7,6 +8,66 @@ interface BladeRenderRegistration {
|
|
7
8
|
bladeDefinition: ReturnType<typeof defineBlade>;
|
8
9
|
id: GuidValue;
|
9
10
|
}
|
11
|
+
type MapActionOnDispatching<T extends Function> = T extends (...args: infer U) => any ? (...args: U) => void : never;
|
12
|
+
type MapActionOnDispatched<T extends Function> = T extends (...args: infer U) => Promise<infer Y> | infer Y ? (result: Y, ...args: U) => void : never;
|
13
|
+
type MapActionOnFailure<T extends Function> = T extends (...args: infer U) => any ? (failureReason: any, ...args: U) => void : never;
|
14
|
+
type ReturnDefineAction<TAction extends {
|
15
|
+
[key: string]: any;
|
16
|
+
}> = {
|
17
|
+
onDispatching: {
|
18
|
+
[k in keyof TAction]: {
|
19
|
+
subscribe(fn: MapActionOnDispatching<TAction[k]>): IMessageBusSubscriptionHandler;
|
20
|
+
};
|
21
|
+
};
|
22
|
+
onDispatched: {
|
23
|
+
[k in keyof TAction]: {
|
24
|
+
subscribe(fn: MapActionOnDispatched<TAction[k]>): IMessageBusSubscriptionHandler;
|
25
|
+
};
|
26
|
+
};
|
27
|
+
onFailure: {
|
28
|
+
[k in keyof TAction]: {
|
29
|
+
subscribe(fn: MapActionOnFailure<TAction[k]>): IMessageBusSubscriptionHandler;
|
30
|
+
};
|
31
|
+
};
|
32
|
+
} & TAction;
|
33
|
+
type Events<TState extends object> = {
|
34
|
+
[K in keyof TState as `onMutated${Capitalize<string & K>}`]: MessageBusExposeOnlySubscription<TState[K]>;
|
35
|
+
};
|
36
|
+
export type InternalJourneyStoreType = {
|
37
|
+
state: {
|
38
|
+
blades: Array<BladeInstance>;
|
39
|
+
bladeRenderers: Array<BladeRenderRegistration>;
|
40
|
+
variant: JourneyVariant;
|
41
|
+
compactMode: boolean;
|
42
|
+
activeIndex: number;
|
43
|
+
nested: boolean;
|
44
|
+
};
|
45
|
+
events: Events<{
|
46
|
+
blades: Array<BladeInstance>;
|
47
|
+
bladeRenderers: Array<BladeRenderRegistration>;
|
48
|
+
variant: JourneyVariant;
|
49
|
+
compactMode: boolean;
|
50
|
+
activeIndex: number;
|
51
|
+
nested: boolean;
|
52
|
+
}>;
|
53
|
+
actions: ReturnDefineAction<{
|
54
|
+
moveNext(fromBladeId: GuidValue): void;
|
55
|
+
movePrev(fromBladeId: GuidValue): void;
|
56
|
+
travelTo(fromBladeId: GuidValue, toBladeId: GuidValue): void;
|
57
|
+
addBlade(newBlade: BladeInstance): void;
|
58
|
+
removeBlade(blade: BladeInstance): void;
|
59
|
+
getBladeSize(blade: BladeInstance): number;
|
60
|
+
setBladeStates(activeIndex: number): void;
|
61
|
+
setActiveIndex(index: number): void;
|
62
|
+
}>;
|
63
|
+
get: {
|
64
|
+
shareds<T>(): ReturnType<typeof createJourneyStateManager<T>>;
|
65
|
+
blade(id: GuidValue): BladeInstance;
|
66
|
+
showBackButton(bladeId: GuidValue): boolean;
|
67
|
+
bladeWidth(size: BladeSizeTypes, bladeId: GuidValue, scrollContainerLeftPosition?: number): number;
|
68
|
+
isNested: boolean;
|
69
|
+
};
|
70
|
+
};
|
10
71
|
export declare const useJourneyStore: () => {
|
11
72
|
state: {
|
12
73
|
blades: BladeInstance[];
|
@@ -15,105 +76,19 @@ export declare const useJourneyStore: () => {
|
|
15
76
|
compactMode: boolean;
|
16
77
|
activeIndex: number;
|
17
78
|
nested: boolean;
|
18
|
-
journeyMenuStore: {
|
19
|
-
state: {
|
20
|
-
menuItems: import("@omnia/fx-models").JourneyMenuItem[];
|
21
|
-
activeMenuItem: import("@omnia/fx-models").JourneyMenuItem;
|
22
|
-
};
|
23
|
-
events: {
|
24
|
-
onMutatedMenuItems: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem[]>;
|
25
|
-
onMutatedActiveMenuItem: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem>;
|
26
|
-
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
27
|
-
actions: {
|
28
|
-
onDispatching: {
|
29
|
-
setMenuItems: {
|
30
|
-
subscribe(fn: (menuItems: import("@omnia/fx-models").JourneyMenuItem[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
31
|
-
};
|
32
|
-
toggleActiveMenuItem: {
|
33
|
-
subscribe(fn: (menuItem: import("@omnia/fx-models").JourneyMenuItem) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
34
|
-
};
|
35
|
-
};
|
36
|
-
onDispatched: {
|
37
|
-
setMenuItems: {
|
38
|
-
subscribe(fn: (result: void, menuItems: import("@omnia/fx-models").JourneyMenuItem[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
39
|
-
};
|
40
|
-
toggleActiveMenuItem: {
|
41
|
-
subscribe(fn: (result: void, menuItem: import("@omnia/fx-models").JourneyMenuItem) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
42
|
-
};
|
43
|
-
};
|
44
|
-
onFailure: {
|
45
|
-
setMenuItems: {
|
46
|
-
subscribe(fn: (failureReason: any, menuItems: import("@omnia/fx-models").JourneyMenuItem[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
47
|
-
};
|
48
|
-
toggleActiveMenuItem: {
|
49
|
-
subscribe(fn: (failureReason: any, menuItem: import("@omnia/fx-models").JourneyMenuItem) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
50
|
-
};
|
51
|
-
};
|
52
|
-
} & {
|
53
|
-
setMenuItems(menuItems: import("@omnia/fx-models").JourneyMenuItem[]): void;
|
54
|
-
toggleActiveMenuItem(menuItem: import("@omnia/fx-models").JourneyMenuItem): void;
|
55
|
-
};
|
56
|
-
get: {
|
57
|
-
readonly activeMenuItem: import("@omnia/fx-models").JourneyMenuItem;
|
58
|
-
readonly menuItems: import("@omnia/fx-models").JourneyMenuItem[];
|
59
|
-
};
|
60
|
-
};
|
61
79
|
};
|
62
80
|
events: {
|
63
|
-
onMutatedBlades:
|
64
|
-
onMutatedBladeRenderers:
|
65
|
-
onMutatedVariant:
|
66
|
-
onMutatedCompactMode:
|
67
|
-
onMutatedActiveIndex:
|
68
|
-
onMutatedNested:
|
69
|
-
onMutatedJourneyMenuStore: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
70
|
-
state: {
|
71
|
-
menuItems: import("@omnia/fx-models").JourneyMenuItem[];
|
72
|
-
activeMenuItem: import("@omnia/fx-models").JourneyMenuItem;
|
73
|
-
};
|
74
|
-
events: {
|
75
|
-
onMutatedMenuItems: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem[]>;
|
76
|
-
onMutatedActiveMenuItem: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem>;
|
77
|
-
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
78
|
-
actions: {
|
79
|
-
onDispatching: {
|
80
|
-
setMenuItems: {
|
81
|
-
subscribe(fn: (menuItems: import("@omnia/fx-models").JourneyMenuItem[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
82
|
-
};
|
83
|
-
toggleActiveMenuItem: {
|
84
|
-
subscribe(fn: (menuItem: import("@omnia/fx-models").JourneyMenuItem) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
85
|
-
};
|
86
|
-
};
|
87
|
-
onDispatched: {
|
88
|
-
setMenuItems: {
|
89
|
-
subscribe(fn: (result: void, menuItems: import("@omnia/fx-models").JourneyMenuItem[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
90
|
-
};
|
91
|
-
toggleActiveMenuItem: {
|
92
|
-
subscribe(fn: (result: void, menuItem: import("@omnia/fx-models").JourneyMenuItem) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
93
|
-
};
|
94
|
-
};
|
95
|
-
onFailure: {
|
96
|
-
setMenuItems: {
|
97
|
-
subscribe(fn: (failureReason: any, menuItems: import("@omnia/fx-models").JourneyMenuItem[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
98
|
-
};
|
99
|
-
toggleActiveMenuItem: {
|
100
|
-
subscribe(fn: (failureReason: any, menuItem: import("@omnia/fx-models").JourneyMenuItem) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
101
|
-
};
|
102
|
-
};
|
103
|
-
} & {
|
104
|
-
setMenuItems(menuItems: import("@omnia/fx-models").JourneyMenuItem[]): void;
|
105
|
-
toggleActiveMenuItem(menuItem: import("@omnia/fx-models").JourneyMenuItem): void;
|
106
|
-
};
|
107
|
-
get: {
|
108
|
-
readonly activeMenuItem: import("@omnia/fx-models").JourneyMenuItem;
|
109
|
-
readonly menuItems: import("@omnia/fx-models").JourneyMenuItem[];
|
110
|
-
};
|
111
|
-
}>;
|
81
|
+
onMutatedBlades: MessageBusExposeOnlySubscription<BladeInstance[]>;
|
82
|
+
onMutatedBladeRenderers: MessageBusExposeOnlySubscription<BladeRenderRegistration[]>;
|
83
|
+
onMutatedVariant: MessageBusExposeOnlySubscription<JourneyVariant>;
|
84
|
+
onMutatedCompactMode: MessageBusExposeOnlySubscription<boolean>;
|
85
|
+
onMutatedActiveIndex: MessageBusExposeOnlySubscription<number>;
|
86
|
+
onMutatedNested: MessageBusExposeOnlySubscription<boolean>;
|
112
87
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
113
88
|
get: {
|
114
89
|
shareds<T>(): {
|
115
90
|
state: T;
|
116
|
-
events: { [K in keyof T as `onMutated${Capitalize<string & K>}`]:
|
91
|
+
events: { [K in keyof T as `onMutated${Capitalize<string & K>}`]: MessageBusExposeOnlySubscription<T[K]>; } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
117
92
|
};
|
118
93
|
blade(id: GuidValue): BladeInstance;
|
119
94
|
showBackButton(bladeId: GuidValue): boolean;
|
@@ -125,549 +100,126 @@ export declare const useJourneyStore: () => {
|
|
125
100
|
registerBladeForRendering: {
|
126
101
|
subscribe(fn: (blade: {
|
127
102
|
readonly Blade: (props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../JourneyBlade").JourneyBladeProps, "id" | "getApi">>) => any;
|
128
|
-
DataTable: <T_1
|
129
|
-
|
130
|
-
} & {
|
131
|
-
container?: boolean;
|
132
|
-
} & {
|
133
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
134
|
-
} & {
|
135
|
-
"v-model:expanded"?: string[];
|
136
|
-
} & {
|
137
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
138
|
-
} & {
|
139
|
-
expanded?: string[];
|
140
|
-
} & {
|
141
|
-
"v-model:sortBy"?: import("@omnia/fx/ux").SortItem[];
|
142
|
-
} & {
|
143
|
-
"onUpdate:sortBy"?: (value: import("@omnia/fx/ux").SortItem[]) => void;
|
144
|
-
} & {
|
145
|
-
sortBy?: import("@omnia/fx/ux").SortItem[];
|
146
|
-
} & {
|
147
|
-
mustSort?: boolean;
|
148
|
-
} & {
|
149
|
-
height?: string | number;
|
150
|
-
} & {
|
151
|
-
noDataText?: string;
|
152
|
-
} & {
|
153
|
-
loading?: boolean;
|
154
|
-
} & {
|
155
|
-
draggable?: boolean;
|
156
|
-
} & {
|
157
|
-
hover?: boolean;
|
158
|
-
} & {
|
159
|
-
showExpand?: boolean;
|
160
|
-
} & {
|
161
|
-
itemsPerPage?: number;
|
162
|
-
} & {
|
163
|
-
headers?: import("@omnia/fx/ux").DataTableHeader[];
|
164
|
-
} & {
|
165
|
-
"v-model:items"?: T_1[];
|
166
|
-
} & {
|
167
|
-
"onUpdate:items"?: (value: T_1[]) => void;
|
168
|
-
} & {
|
169
|
-
items?: T_1[];
|
170
|
-
} & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (item: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (sort: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineSlot<"item", (row: import("@omnia/fx/ux").IDataTableRowRenderer<T_1>) => void> & import("@omnia/fx/ux").DefineSlot<`header.${string}`, (header: import("@omnia/fx/ux").DataTableHeader) => void> & import("@omnia/fx/ux").DefineSlot<`item.${string}`, (e: {
|
171
|
-
item: T_1;
|
172
|
-
}) => void>>) => {
|
173
|
-
$: import("vue").ComponentInternalInstance;
|
174
|
-
$data: {};
|
175
|
-
$props: {};
|
176
|
-
$attrs: {
|
177
|
-
[x: string]: unknown;
|
178
|
-
};
|
179
|
-
$refs: {
|
180
|
-
[x: string]: unknown;
|
181
|
-
};
|
182
|
-
$slots: Readonly<{
|
183
|
-
[name: string]: import("vue").Slot<any>;
|
184
|
-
}>;
|
185
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
186
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
187
|
-
$emit: (event: string, ...args: any[]) => void;
|
188
|
-
$el: any;
|
189
|
-
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
190
|
-
beforeCreate?: (() => void) | (() => void)[];
|
191
|
-
created?: (() => void) | (() => void)[];
|
192
|
-
beforeMount?: (() => void) | (() => void)[];
|
193
|
-
mounted?: (() => void) | (() => void)[];
|
194
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
195
|
-
updated?: (() => void) | (() => void)[];
|
196
|
-
activated?: (() => void) | (() => void)[];
|
197
|
-
deactivated?: (() => void) | (() => void)[];
|
198
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
199
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
200
|
-
destroyed?: (() => void) | (() => void)[];
|
201
|
-
unmounted?: (() => void) | (() => void)[];
|
202
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
203
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
204
|
-
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)[];
|
205
|
-
};
|
206
|
-
$forceUpdate: () => void;
|
207
|
-
$nextTick: typeof import("vue").nextTick;
|
208
|
-
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
209
|
-
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
210
|
-
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
211
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
212
|
-
} & {
|
213
|
-
container?: boolean;
|
214
|
-
} & {
|
215
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
216
|
-
} & {
|
217
|
-
"v-model:expanded"?: string[];
|
218
|
-
} & {
|
219
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
220
|
-
} & {
|
221
|
-
expanded?: string[];
|
222
|
-
} & {
|
223
|
-
"v-model:sortBy"?: import("@omnia/fx/ux").SortItem[];
|
224
|
-
} & {
|
225
|
-
"onUpdate:sortBy"?: (value: import("@omnia/fx/ux").SortItem[]) => void;
|
226
|
-
} & {
|
227
|
-
sortBy?: import("@omnia/fx/ux").SortItem[];
|
228
|
-
} & {
|
229
|
-
mustSort?: boolean;
|
230
|
-
} & {
|
231
|
-
height?: string | number;
|
232
|
-
} & {
|
233
|
-
noDataText?: string;
|
234
|
-
} & {
|
235
|
-
loading?: boolean;
|
236
|
-
} & {
|
237
|
-
draggable?: boolean;
|
238
|
-
} & {
|
239
|
-
hover?: boolean;
|
240
|
-
} & {
|
241
|
-
showExpand?: boolean;
|
242
|
-
} & {
|
243
|
-
itemsPerPage?: number;
|
244
|
-
} & {
|
245
|
-
headers?: import("@omnia/fx/ux").DataTableHeader[];
|
246
|
-
} & {
|
247
|
-
"v-model:items"?: T_1[];
|
248
|
-
} & {
|
249
|
-
"onUpdate:items"?: (value: T_1[]) => void;
|
250
|
-
} & {
|
251
|
-
items?: T_1[];
|
252
|
-
} & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (item: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (sort: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineSlot<"item", (row: import("@omnia/fx/ux").IDataTableRowRenderer<T_1>) => void> & import("@omnia/fx/ux").DefineSlot<`header.${string}`, (header: import("@omnia/fx/ux").DataTableHeader) => void> & import("@omnia/fx/ux").DefineSlot<`item.${string}`, (e: {
|
253
|
-
item: T_1;
|
254
|
-
}) => void>> & {
|
255
|
-
"v-slots"?: {
|
256
|
-
default?: import("vue").Slot;
|
257
|
-
} & {
|
258
|
-
[x: `header.${string}`]: (header: import("@omnia/fx/ux").DataTableHeader) => void;
|
259
|
-
[x: `item.${string}`]: (e: {
|
260
|
-
item: T_1;
|
261
|
-
}) => void;
|
262
|
-
item?: (row: import("@omnia/fx/ux").IDataTableRowRenderer<T_1>) => void;
|
263
|
-
};
|
264
|
-
} & {
|
265
|
-
"onUpdate:expanded"?: (expanded: string[]) => any;
|
266
|
-
"onUpdate:sortBy"?: (item: import("@omnia/fx/ux").SortItem[]) => any;
|
267
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "loading" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
|
268
|
-
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
269
|
-
[key: string]: any;
|
270
|
-
}>;
|
103
|
+
DataTable: <T_1>(props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../../oxide/datatable/DataTable").DataTableProps<T_1>, "id" | "getApi">>) => any;
|
104
|
+
Draggable: (props: import("@omnia/fx/ux").ConstructComponentProps<import("../../oxide/draggable/Draggable").DraggableProps>) => any;
|
271
105
|
id: GuidValue;
|
272
106
|
readonly route: import("@omnia/fx-models").JourneyBladeRoute;
|
273
107
|
moveNext(): void;
|
274
108
|
movePrev(): void;
|
275
109
|
travelTo(toBladeId: GuidValue): void;
|
276
|
-
defineValueToSave<
|
277
|
-
value:
|
278
|
-
setValue: (value:
|
110
|
+
defineValueToSave<T_2>(value?: T_2): {
|
111
|
+
value: T_2;
|
112
|
+
setValue: (value: T_2) => void;
|
279
113
|
};
|
280
|
-
}) => void):
|
114
|
+
}) => void): IMessageBusSubscriptionHandler;
|
281
115
|
};
|
282
116
|
addBlade: {
|
283
|
-
subscribe(fn: (newBlade: BladeInstance) => void):
|
117
|
+
subscribe(fn: (newBlade: BladeInstance) => void): IMessageBusSubscriptionHandler;
|
284
118
|
};
|
285
119
|
removeBlade: {
|
286
|
-
subscribe(fn: (blade: BladeInstance) => void):
|
120
|
+
subscribe(fn: (blade: BladeInstance) => void): IMessageBusSubscriptionHandler;
|
287
121
|
};
|
288
122
|
getBladeSize: {
|
289
|
-
subscribe(fn: (blade: BladeInstance) => void):
|
123
|
+
subscribe(fn: (blade: BladeInstance) => void): IMessageBusSubscriptionHandler;
|
290
124
|
};
|
291
125
|
setBladeStates: {
|
292
|
-
subscribe(fn: (activeIndex: number) => void):
|
126
|
+
subscribe(fn: (activeIndex: number) => void): IMessageBusSubscriptionHandler;
|
293
127
|
};
|
294
128
|
moveNext: {
|
295
|
-
subscribe(fn: (fromBladeId: GuidValue) => void):
|
129
|
+
subscribe(fn: (fromBladeId: GuidValue) => void): IMessageBusSubscriptionHandler;
|
296
130
|
};
|
297
131
|
movePrev: {
|
298
|
-
subscribe(fn: (fromBladeId: GuidValue) => void):
|
132
|
+
subscribe(fn: (fromBladeId: GuidValue) => void): IMessageBusSubscriptionHandler;
|
299
133
|
};
|
300
134
|
travelTo: {
|
301
|
-
subscribe(fn: (fromBladeId: GuidValue, toBladeId: GuidValue) => void):
|
135
|
+
subscribe(fn: (fromBladeId: GuidValue, toBladeId: GuidValue) => void): IMessageBusSubscriptionHandler;
|
302
136
|
};
|
303
137
|
setActiveIndex: {
|
304
|
-
subscribe(fn: (index: number) => void):
|
138
|
+
subscribe(fn: (index: number) => void): IMessageBusSubscriptionHandler;
|
305
139
|
};
|
306
140
|
};
|
307
141
|
onDispatched: {
|
308
142
|
registerBladeForRendering: {
|
309
143
|
subscribe(fn: (result: void, blade: {
|
310
144
|
readonly Blade: (props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../JourneyBlade").JourneyBladeProps, "id" | "getApi">>) => any;
|
311
|
-
DataTable: <T_1
|
312
|
-
|
313
|
-
} & {
|
314
|
-
container?: boolean;
|
315
|
-
} & {
|
316
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
317
|
-
} & {
|
318
|
-
"v-model:expanded"?: string[];
|
319
|
-
} & {
|
320
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
321
|
-
} & {
|
322
|
-
expanded?: string[];
|
323
|
-
} & {
|
324
|
-
"v-model:sortBy"?: import("@omnia/fx/ux").SortItem[];
|
325
|
-
} & {
|
326
|
-
"onUpdate:sortBy"?: (value: import("@omnia/fx/ux").SortItem[]) => void;
|
327
|
-
} & {
|
328
|
-
sortBy?: import("@omnia/fx/ux").SortItem[];
|
329
|
-
} & {
|
330
|
-
mustSort?: boolean;
|
331
|
-
} & {
|
332
|
-
height?: string | number;
|
333
|
-
} & {
|
334
|
-
noDataText?: string;
|
335
|
-
} & {
|
336
|
-
loading?: boolean;
|
337
|
-
} & {
|
338
|
-
draggable?: boolean;
|
339
|
-
} & {
|
340
|
-
hover?: boolean;
|
341
|
-
} & {
|
342
|
-
showExpand?: boolean;
|
343
|
-
} & {
|
344
|
-
itemsPerPage?: number;
|
345
|
-
} & {
|
346
|
-
headers?: import("@omnia/fx/ux").DataTableHeader[];
|
347
|
-
} & {
|
348
|
-
"v-model:items"?: T_1[];
|
349
|
-
} & {
|
350
|
-
"onUpdate:items"?: (value: T_1[]) => void;
|
351
|
-
} & {
|
352
|
-
items?: T_1[];
|
353
|
-
} & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (item: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (sort: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineSlot<"item", (row: import("@omnia/fx/ux").IDataTableRowRenderer<T_1>) => void> & import("@omnia/fx/ux").DefineSlot<`header.${string}`, (header: import("@omnia/fx/ux").DataTableHeader) => void> & import("@omnia/fx/ux").DefineSlot<`item.${string}`, (e: {
|
354
|
-
item: T_1;
|
355
|
-
}) => void>>) => {
|
356
|
-
$: import("vue").ComponentInternalInstance;
|
357
|
-
$data: {};
|
358
|
-
$props: {};
|
359
|
-
$attrs: {
|
360
|
-
[x: string]: unknown;
|
361
|
-
};
|
362
|
-
$refs: {
|
363
|
-
[x: string]: unknown;
|
364
|
-
};
|
365
|
-
$slots: Readonly<{
|
366
|
-
[name: string]: import("vue").Slot<any>;
|
367
|
-
}>;
|
368
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
369
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
370
|
-
$emit: (event: string, ...args: any[]) => void;
|
371
|
-
$el: any;
|
372
|
-
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
373
|
-
beforeCreate?: (() => void) | (() => void)[];
|
374
|
-
created?: (() => void) | (() => void)[];
|
375
|
-
beforeMount?: (() => void) | (() => void)[];
|
376
|
-
mounted?: (() => void) | (() => void)[];
|
377
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
378
|
-
updated?: (() => void) | (() => void)[];
|
379
|
-
activated?: (() => void) | (() => void)[];
|
380
|
-
deactivated?: (() => void) | (() => void)[];
|
381
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
382
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
383
|
-
destroyed?: (() => void) | (() => void)[];
|
384
|
-
unmounted?: (() => void) | (() => void)[];
|
385
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
386
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
387
|
-
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)[];
|
388
|
-
};
|
389
|
-
$forceUpdate: () => void;
|
390
|
-
$nextTick: typeof import("vue").nextTick;
|
391
|
-
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
392
|
-
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
393
|
-
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
394
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
395
|
-
} & {
|
396
|
-
container?: boolean;
|
397
|
-
} & {
|
398
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
399
|
-
} & {
|
400
|
-
"v-model:expanded"?: string[];
|
401
|
-
} & {
|
402
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
403
|
-
} & {
|
404
|
-
expanded?: string[];
|
405
|
-
} & {
|
406
|
-
"v-model:sortBy"?: import("@omnia/fx/ux").SortItem[];
|
407
|
-
} & {
|
408
|
-
"onUpdate:sortBy"?: (value: import("@omnia/fx/ux").SortItem[]) => void;
|
409
|
-
} & {
|
410
|
-
sortBy?: import("@omnia/fx/ux").SortItem[];
|
411
|
-
} & {
|
412
|
-
mustSort?: boolean;
|
413
|
-
} & {
|
414
|
-
height?: string | number;
|
415
|
-
} & {
|
416
|
-
noDataText?: string;
|
417
|
-
} & {
|
418
|
-
loading?: boolean;
|
419
|
-
} & {
|
420
|
-
draggable?: boolean;
|
421
|
-
} & {
|
422
|
-
hover?: boolean;
|
423
|
-
} & {
|
424
|
-
showExpand?: boolean;
|
425
|
-
} & {
|
426
|
-
itemsPerPage?: number;
|
427
|
-
} & {
|
428
|
-
headers?: import("@omnia/fx/ux").DataTableHeader[];
|
429
|
-
} & {
|
430
|
-
"v-model:items"?: T_1[];
|
431
|
-
} & {
|
432
|
-
"onUpdate:items"?: (value: T_1[]) => void;
|
433
|
-
} & {
|
434
|
-
items?: T_1[];
|
435
|
-
} & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (item: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (sort: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineSlot<"item", (row: import("@omnia/fx/ux").IDataTableRowRenderer<T_1>) => void> & import("@omnia/fx/ux").DefineSlot<`header.${string}`, (header: import("@omnia/fx/ux").DataTableHeader) => void> & import("@omnia/fx/ux").DefineSlot<`item.${string}`, (e: {
|
436
|
-
item: T_1;
|
437
|
-
}) => void>> & {
|
438
|
-
"v-slots"?: {
|
439
|
-
default?: import("vue").Slot;
|
440
|
-
} & {
|
441
|
-
[x: `header.${string}`]: (header: import("@omnia/fx/ux").DataTableHeader) => void;
|
442
|
-
[x: `item.${string}`]: (e: {
|
443
|
-
item: T_1;
|
444
|
-
}) => void;
|
445
|
-
item?: (row: import("@omnia/fx/ux").IDataTableRowRenderer<T_1>) => void;
|
446
|
-
};
|
447
|
-
} & {
|
448
|
-
"onUpdate:expanded"?: (expanded: string[]) => any;
|
449
|
-
"onUpdate:sortBy"?: (item: import("@omnia/fx/ux").SortItem[]) => any;
|
450
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "loading" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
|
451
|
-
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
452
|
-
[key: string]: any;
|
453
|
-
}>;
|
145
|
+
DataTable: <T_1>(props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../../oxide/datatable/DataTable").DataTableProps<T_1>, "id" | "getApi">>) => any;
|
146
|
+
Draggable: (props: import("@omnia/fx/ux").ConstructComponentProps<import("../../oxide/draggable/Draggable").DraggableProps>) => any;
|
454
147
|
id: GuidValue;
|
455
148
|
readonly route: import("@omnia/fx-models").JourneyBladeRoute;
|
456
149
|
moveNext(): void;
|
457
150
|
movePrev(): void;
|
458
151
|
travelTo(toBladeId: GuidValue): void;
|
459
|
-
defineValueToSave<
|
460
|
-
value:
|
461
|
-
setValue: (value:
|
152
|
+
defineValueToSave<T_2>(value?: T_2): {
|
153
|
+
value: T_2;
|
154
|
+
setValue: (value: T_2) => void;
|
462
155
|
};
|
463
|
-
}) => void):
|
156
|
+
}) => void): IMessageBusSubscriptionHandler;
|
464
157
|
};
|
465
158
|
addBlade: {
|
466
|
-
subscribe(fn: (result: void, newBlade: BladeInstance) => void):
|
159
|
+
subscribe(fn: (result: void, newBlade: BladeInstance) => void): IMessageBusSubscriptionHandler;
|
467
160
|
};
|
468
161
|
removeBlade: {
|
469
|
-
subscribe(fn: (result: void, blade: BladeInstance) => void):
|
162
|
+
subscribe(fn: (result: void, blade: BladeInstance) => void): IMessageBusSubscriptionHandler;
|
470
163
|
};
|
471
164
|
getBladeSize: {
|
472
|
-
subscribe(fn: (result: number, blade: BladeInstance) => void):
|
165
|
+
subscribe(fn: (result: number, blade: BladeInstance) => void): IMessageBusSubscriptionHandler;
|
473
166
|
};
|
474
167
|
setBladeStates: {
|
475
|
-
subscribe(fn: (result: void, activeIndex: number) => void):
|
168
|
+
subscribe(fn: (result: void, activeIndex: number) => void): IMessageBusSubscriptionHandler;
|
476
169
|
};
|
477
170
|
moveNext: {
|
478
|
-
subscribe(fn: (result: void, fromBladeId: GuidValue) => void):
|
171
|
+
subscribe(fn: (result: void, fromBladeId: GuidValue) => void): IMessageBusSubscriptionHandler;
|
479
172
|
};
|
480
173
|
movePrev: {
|
481
|
-
subscribe(fn: (result: void, fromBladeId: GuidValue) => void):
|
174
|
+
subscribe(fn: (result: void, fromBladeId: GuidValue) => void): IMessageBusSubscriptionHandler;
|
482
175
|
};
|
483
176
|
travelTo: {
|
484
|
-
subscribe(fn: (result: void, fromBladeId: GuidValue, toBladeId: GuidValue) => void):
|
177
|
+
subscribe(fn: (result: void, fromBladeId: GuidValue, toBladeId: GuidValue) => void): IMessageBusSubscriptionHandler;
|
485
178
|
};
|
486
179
|
setActiveIndex: {
|
487
|
-
subscribe(fn: (result: void, index: number) => void):
|
180
|
+
subscribe(fn: (result: void, index: number) => void): IMessageBusSubscriptionHandler;
|
488
181
|
};
|
489
182
|
};
|
490
183
|
onFailure: {
|
491
184
|
registerBladeForRendering: {
|
492
185
|
subscribe(fn: (failureReason: any, blade: {
|
493
186
|
readonly Blade: (props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../JourneyBlade").JourneyBladeProps, "id" | "getApi">>) => any;
|
494
|
-
DataTable: <T_1
|
495
|
-
|
496
|
-
} & {
|
497
|
-
container?: boolean;
|
498
|
-
} & {
|
499
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
500
|
-
} & {
|
501
|
-
"v-model:expanded"?: string[];
|
502
|
-
} & {
|
503
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
504
|
-
} & {
|
505
|
-
expanded?: string[];
|
506
|
-
} & {
|
507
|
-
"v-model:sortBy"?: import("@omnia/fx/ux").SortItem[];
|
508
|
-
} & {
|
509
|
-
"onUpdate:sortBy"?: (value: import("@omnia/fx/ux").SortItem[]) => void;
|
510
|
-
} & {
|
511
|
-
sortBy?: import("@omnia/fx/ux").SortItem[];
|
512
|
-
} & {
|
513
|
-
mustSort?: boolean;
|
514
|
-
} & {
|
515
|
-
height?: string | number;
|
516
|
-
} & {
|
517
|
-
noDataText?: string;
|
518
|
-
} & {
|
519
|
-
loading?: boolean;
|
520
|
-
} & {
|
521
|
-
draggable?: boolean;
|
522
|
-
} & {
|
523
|
-
hover?: boolean;
|
524
|
-
} & {
|
525
|
-
showExpand?: boolean;
|
526
|
-
} & {
|
527
|
-
itemsPerPage?: number;
|
528
|
-
} & {
|
529
|
-
headers?: import("@omnia/fx/ux").DataTableHeader[];
|
530
|
-
} & {
|
531
|
-
"v-model:items"?: T_1[];
|
532
|
-
} & {
|
533
|
-
"onUpdate:items"?: (value: T_1[]) => void;
|
534
|
-
} & {
|
535
|
-
items?: T_1[];
|
536
|
-
} & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (item: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (sort: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineSlot<"item", (row: import("@omnia/fx/ux").IDataTableRowRenderer<T_1>) => void> & import("@omnia/fx/ux").DefineSlot<`header.${string}`, (header: import("@omnia/fx/ux").DataTableHeader) => void> & import("@omnia/fx/ux").DefineSlot<`item.${string}`, (e: {
|
537
|
-
item: T_1;
|
538
|
-
}) => void>>) => {
|
539
|
-
$: import("vue").ComponentInternalInstance;
|
540
|
-
$data: {};
|
541
|
-
$props: {};
|
542
|
-
$attrs: {
|
543
|
-
[x: string]: unknown;
|
544
|
-
};
|
545
|
-
$refs: {
|
546
|
-
[x: string]: unknown;
|
547
|
-
};
|
548
|
-
$slots: Readonly<{
|
549
|
-
[name: string]: import("vue").Slot<any>;
|
550
|
-
}>;
|
551
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
552
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
553
|
-
$emit: (event: string, ...args: any[]) => void;
|
554
|
-
$el: any;
|
555
|
-
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
556
|
-
beforeCreate?: (() => void) | (() => void)[];
|
557
|
-
created?: (() => void) | (() => void)[];
|
558
|
-
beforeMount?: (() => void) | (() => void)[];
|
559
|
-
mounted?: (() => void) | (() => void)[];
|
560
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
561
|
-
updated?: (() => void) | (() => void)[];
|
562
|
-
activated?: (() => void) | (() => void)[];
|
563
|
-
deactivated?: (() => void) | (() => void)[];
|
564
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
565
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
566
|
-
destroyed?: (() => void) | (() => void)[];
|
567
|
-
unmounted?: (() => void) | (() => void)[];
|
568
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
569
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
570
|
-
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)[];
|
571
|
-
};
|
572
|
-
$forceUpdate: () => void;
|
573
|
-
$nextTick: typeof import("vue").nextTick;
|
574
|
-
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
575
|
-
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
576
|
-
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
577
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
578
|
-
} & {
|
579
|
-
container?: boolean;
|
580
|
-
} & {
|
581
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
582
|
-
} & {
|
583
|
-
"v-model:expanded"?: string[];
|
584
|
-
} & {
|
585
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
586
|
-
} & {
|
587
|
-
expanded?: string[];
|
588
|
-
} & {
|
589
|
-
"v-model:sortBy"?: import("@omnia/fx/ux").SortItem[];
|
590
|
-
} & {
|
591
|
-
"onUpdate:sortBy"?: (value: import("@omnia/fx/ux").SortItem[]) => void;
|
592
|
-
} & {
|
593
|
-
sortBy?: import("@omnia/fx/ux").SortItem[];
|
594
|
-
} & {
|
595
|
-
mustSort?: boolean;
|
596
|
-
} & {
|
597
|
-
height?: string | number;
|
598
|
-
} & {
|
599
|
-
noDataText?: string;
|
600
|
-
} & {
|
601
|
-
loading?: boolean;
|
602
|
-
} & {
|
603
|
-
draggable?: boolean;
|
604
|
-
} & {
|
605
|
-
hover?: boolean;
|
606
|
-
} & {
|
607
|
-
showExpand?: boolean;
|
608
|
-
} & {
|
609
|
-
itemsPerPage?: number;
|
610
|
-
} & {
|
611
|
-
headers?: import("@omnia/fx/ux").DataTableHeader[];
|
612
|
-
} & {
|
613
|
-
"v-model:items"?: T_1[];
|
614
|
-
} & {
|
615
|
-
"onUpdate:items"?: (value: T_1[]) => void;
|
616
|
-
} & {
|
617
|
-
items?: T_1[];
|
618
|
-
} & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (item: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("@omnia/fx/ux").DefineEmit<"update:sortBy", (sort: import("@omnia/fx/ux").SortItem[]) => void> & import("@omnia/fx/ux").DefineSlot<"item", (row: import("@omnia/fx/ux").IDataTableRowRenderer<T_1>) => void> & import("@omnia/fx/ux").DefineSlot<`header.${string}`, (header: import("@omnia/fx/ux").DataTableHeader) => void> & import("@omnia/fx/ux").DefineSlot<`item.${string}`, (e: {
|
619
|
-
item: T_1;
|
620
|
-
}) => void>> & {
|
621
|
-
"v-slots"?: {
|
622
|
-
default?: import("vue").Slot;
|
623
|
-
} & {
|
624
|
-
[x: `header.${string}`]: (header: import("@omnia/fx/ux").DataTableHeader) => void;
|
625
|
-
[x: `item.${string}`]: (e: {
|
626
|
-
item: T_1;
|
627
|
-
}) => void;
|
628
|
-
item?: (row: import("@omnia/fx/ux").IDataTableRowRenderer<T_1>) => void;
|
629
|
-
};
|
630
|
-
} & {
|
631
|
-
"onUpdate:expanded"?: (expanded: string[]) => any;
|
632
|
-
"onUpdate:sortBy"?: (item: import("@omnia/fx/ux").SortItem[]) => any;
|
633
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "loading" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
|
634
|
-
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
635
|
-
[key: string]: any;
|
636
|
-
}>;
|
187
|
+
DataTable: <T_1>(props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../../oxide/datatable/DataTable").DataTableProps<T_1>, "id" | "getApi">>) => any;
|
188
|
+
Draggable: (props: import("@omnia/fx/ux").ConstructComponentProps<import("../../oxide/draggable/Draggable").DraggableProps>) => any;
|
637
189
|
id: GuidValue;
|
638
190
|
readonly route: import("@omnia/fx-models").JourneyBladeRoute;
|
639
191
|
moveNext(): void;
|
640
192
|
movePrev(): void;
|
641
193
|
travelTo(toBladeId: GuidValue): void;
|
642
|
-
defineValueToSave<
|
643
|
-
value:
|
644
|
-
setValue: (value:
|
194
|
+
defineValueToSave<T_2>(value?: T_2): {
|
195
|
+
value: T_2;
|
196
|
+
setValue: (value: T_2) => void;
|
645
197
|
};
|
646
|
-
}) => void):
|
198
|
+
}) => void): IMessageBusSubscriptionHandler;
|
647
199
|
};
|
648
200
|
addBlade: {
|
649
|
-
subscribe(fn: (failureReason: any, newBlade: BladeInstance) => void):
|
201
|
+
subscribe(fn: (failureReason: any, newBlade: BladeInstance) => void): IMessageBusSubscriptionHandler;
|
650
202
|
};
|
651
203
|
removeBlade: {
|
652
|
-
subscribe(fn: (failureReason: any, blade: BladeInstance) => void):
|
204
|
+
subscribe(fn: (failureReason: any, blade: BladeInstance) => void): IMessageBusSubscriptionHandler;
|
653
205
|
};
|
654
206
|
getBladeSize: {
|
655
|
-
subscribe(fn: (failureReason: any, blade: BladeInstance) => void):
|
207
|
+
subscribe(fn: (failureReason: any, blade: BladeInstance) => void): IMessageBusSubscriptionHandler;
|
656
208
|
};
|
657
209
|
setBladeStates: {
|
658
|
-
subscribe(fn: (failureReason: any, activeIndex: number) => void):
|
210
|
+
subscribe(fn: (failureReason: any, activeIndex: number) => void): IMessageBusSubscriptionHandler;
|
659
211
|
};
|
660
212
|
moveNext: {
|
661
|
-
subscribe(fn: (failureReason: any, fromBladeId: GuidValue) => void):
|
213
|
+
subscribe(fn: (failureReason: any, fromBladeId: GuidValue) => void): IMessageBusSubscriptionHandler;
|
662
214
|
};
|
663
215
|
movePrev: {
|
664
|
-
subscribe(fn: (failureReason: any, fromBladeId: GuidValue) => void):
|
216
|
+
subscribe(fn: (failureReason: any, fromBladeId: GuidValue) => void): IMessageBusSubscriptionHandler;
|
665
217
|
};
|
666
218
|
travelTo: {
|
667
|
-
subscribe(fn: (failureReason: any, fromBladeId: GuidValue, toBladeId: GuidValue) => void):
|
219
|
+
subscribe(fn: (failureReason: any, fromBladeId: GuidValue, toBladeId: GuidValue) => void): IMessageBusSubscriptionHandler;
|
668
220
|
};
|
669
221
|
setActiveIndex: {
|
670
|
-
subscribe(fn: (failureReason: any, index: number) => void):
|
222
|
+
subscribe(fn: (failureReason: any, index: number) => void): IMessageBusSubscriptionHandler;
|
671
223
|
};
|
672
224
|
};
|
673
225
|
} & {
|
@@ -684,6 +236,6 @@ export declare const useJourneyStore: () => {
|
|
684
236
|
};
|
685
237
|
declare function createJourneyStateManager<T extends Object>(): {
|
686
238
|
state: T;
|
687
|
-
events: { [K in keyof T as `onMutated${Capitalize<string & K>}`]:
|
239
|
+
events: { [K in keyof T as `onMutated${Capitalize<string & K>}`]: MessageBusExposeOnlySubscription<T[K]>; } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
688
240
|
};
|
689
241
|
export {};
|