@omnia/fx 8.0.187-dev → 8.0.188-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/journey/DefineBlade.d.ts +7 -147
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +12 -438
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +7 -94
- 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/draggable/Draggable.d.ts +1 -1
- 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/package.json +2 -2
@@ -169,7 +169,7 @@ export declare const useMediaPickerImageTransformerStore: () => {
|
|
169
169
|
onMutatedCustomCropZone: import("../../core").MessageBusExposeOnlySubscription<MediaPickerCropTransformation>;
|
170
170
|
onMutatedCurrentFilter: import("../../core").MessageBusExposeOnlySubscription<MediaPickerFilterTransformation>;
|
171
171
|
onMutatedSelectedCropInformation: import("../../core").MessageBusExposeOnlySubscription<{
|
172
|
-
[id:
|
172
|
+
[id: string]: MediaPickerCropTransformation;
|
173
173
|
}>;
|
174
174
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
175
175
|
mutate: {
|
@@ -189,11 +189,11 @@ export declare const useMediaPickerImageTransformerStore: () => {
|
|
189
189
|
customCropZone: (value: MediaPickerCropTransformation | ((prev: MediaPickerCropTransformation) => MediaPickerCropTransformation)) => void;
|
190
190
|
currentFilter: (value: MediaPickerFilterTransformation | ((prev: MediaPickerFilterTransformation) => MediaPickerFilterTransformation)) => void;
|
191
191
|
selectedCropInformation: (value: {
|
192
|
-
[id:
|
192
|
+
[id: string]: MediaPickerCropTransformation;
|
193
193
|
} | ((prev: {
|
194
|
-
[id:
|
194
|
+
[id: string]: MediaPickerCropTransformation;
|
195
195
|
}) => {
|
196
|
-
[id:
|
196
|
+
[id: string]: MediaPickerCropTransformation;
|
197
197
|
})) => void;
|
198
198
|
};
|
199
199
|
get: {
|
@@ -240,7 +240,7 @@ export declare const useMediaPickerImageTransformerStore: () => {
|
|
240
240
|
customCropZone: MediaPickerCropTransformation;
|
241
241
|
currentFilter: MediaPickerFilterTransformation;
|
242
242
|
selectedCropInformation: {
|
243
|
-
[id:
|
243
|
+
[id: string]: MediaPickerCropTransformation;
|
244
244
|
};
|
245
245
|
};
|
246
246
|
};
|
@@ -1,161 +1,21 @@
|
|
1
1
|
import { GuidValue, JourneyBladeRoute } from "@omnia/fx-models";
|
2
2
|
import { JourneyBladeProps } from "./JourneyBlade";
|
3
|
-
import { VNodeChild
|
3
|
+
import { VNodeChild } from "vue";
|
4
4
|
import { ConstructComponentProps } from "../InternalDefineComponent";
|
5
|
+
import { DataTableProps } from "../oxide/datatable/DataTable";
|
5
6
|
type BladeElement = (props: ConstructComponentProps<Omit<JourneyBladeProps, "id" | "getApi">>) => any;
|
7
|
+
type DatatTableComponentTypings = <T>(props: ConstructComponentProps<Omit<DataTableProps<T>, "id" | "getApi">>) => any;
|
6
8
|
export declare function defineBlade<TRoute extends JourneyBladeRoute = {}>(bladeId: GuidValue, renderer?: (blade: BladeElement) => VNodeChild): {
|
7
9
|
readonly Blade: BladeElement;
|
8
|
-
DataTable:
|
9
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
10
|
-
} & {
|
11
|
-
container?: boolean;
|
12
|
-
} & {
|
13
|
-
colors?: import("..").ColorSchemaStoreType;
|
14
|
-
} & {
|
15
|
-
"v-model:expanded"?: string[];
|
16
|
-
} & {
|
17
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
18
|
-
} & {
|
19
|
-
expanded?: string[];
|
20
|
-
} & {
|
21
|
-
"v-model:sortBy"?: import("..").SortItem[];
|
22
|
-
} & {
|
23
|
-
"onUpdate:sortBy"?: (value: import("..").SortItem[]) => void;
|
24
|
-
} & {
|
25
|
-
sortBy?: import("..").SortItem[];
|
26
|
-
} & {
|
27
|
-
mustSort?: boolean;
|
28
|
-
} & {
|
29
|
-
height?: string | number;
|
30
|
-
} & {
|
31
|
-
noDataText?: string;
|
32
|
-
} & {
|
33
|
-
loading?: boolean;
|
34
|
-
} & {
|
35
|
-
draggable?: boolean;
|
36
|
-
} & {
|
37
|
-
hover?: boolean;
|
38
|
-
} & {
|
39
|
-
showExpand?: boolean;
|
40
|
-
} & {
|
41
|
-
itemsPerPage?: number;
|
42
|
-
} & {
|
43
|
-
headers?: import("..").DataTableHeader[];
|
44
|
-
} & {
|
45
|
-
"v-model:items"?: T[];
|
46
|
-
} & {
|
47
|
-
"onUpdate:items"?: (value: T[]) => void;
|
48
|
-
} & {
|
49
|
-
items?: T[];
|
50
|
-
} & import("..").DefineEmit<"update:sortBy", (item: import("..").SortItem[]) => void> & import("..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("..").DefineEmit<"update:sortBy", (sort: import("..").SortItem[]) => void> & import("..").DefineSlot<"item", (row: import("..").IDataTableRowRenderer<T>) => void> & import("..").DefineSlot<`header.${string}`, (header: import("..").DataTableHeader) => void> & import("..").DefineSlot<`item.${string}`, (e: {
|
51
|
-
item: T;
|
52
|
-
}) => void>>) => {
|
53
|
-
$: import("vue").ComponentInternalInstance;
|
54
|
-
$data: {};
|
55
|
-
$props: {};
|
56
|
-
$attrs: {
|
57
|
-
[x: string]: unknown;
|
58
|
-
};
|
59
|
-
$refs: {
|
60
|
-
[x: string]: unknown;
|
61
|
-
};
|
62
|
-
$slots: Readonly<{
|
63
|
-
[name: string]: import("vue").Slot<any>;
|
64
|
-
}>;
|
65
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
66
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
67
|
-
$emit: (event: string, ...args: any[]) => void;
|
68
|
-
$el: any;
|
69
|
-
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
70
|
-
beforeCreate?: (() => void) | (() => void)[];
|
71
|
-
created?: (() => void) | (() => void)[];
|
72
|
-
beforeMount?: (() => void) | (() => void)[];
|
73
|
-
mounted?: (() => void) | (() => void)[];
|
74
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
75
|
-
updated?: (() => void) | (() => void)[];
|
76
|
-
activated?: (() => void) | (() => void)[];
|
77
|
-
deactivated?: (() => void) | (() => void)[];
|
78
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
79
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
80
|
-
destroyed?: (() => void) | (() => void)[];
|
81
|
-
unmounted?: (() => void) | (() => void)[];
|
82
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
83
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
84
|
-
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)[];
|
85
|
-
};
|
86
|
-
$forceUpdate: () => void;
|
87
|
-
$nextTick: typeof import("vue").nextTick;
|
88
|
-
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): WatchStopHandle;
|
89
|
-
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
90
|
-
propsDefinition: import("../InternalDefineComponent").ExtractProps<{
|
91
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
92
|
-
} & {
|
93
|
-
container?: boolean;
|
94
|
-
} & {
|
95
|
-
colors?: import("..").ColorSchemaStoreType;
|
96
|
-
} & {
|
97
|
-
"v-model:expanded"?: string[];
|
98
|
-
} & {
|
99
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
100
|
-
} & {
|
101
|
-
expanded?: string[];
|
102
|
-
} & {
|
103
|
-
"v-model:sortBy"?: import("..").SortItem[];
|
104
|
-
} & {
|
105
|
-
"onUpdate:sortBy"?: (value: import("..").SortItem[]) => void;
|
106
|
-
} & {
|
107
|
-
sortBy?: import("..").SortItem[];
|
108
|
-
} & {
|
109
|
-
mustSort?: boolean;
|
110
|
-
} & {
|
111
|
-
height?: string | number;
|
112
|
-
} & {
|
113
|
-
noDataText?: string;
|
114
|
-
} & {
|
115
|
-
loading?: boolean;
|
116
|
-
} & {
|
117
|
-
draggable?: boolean;
|
118
|
-
} & {
|
119
|
-
hover?: boolean;
|
120
|
-
} & {
|
121
|
-
showExpand?: boolean;
|
122
|
-
} & {
|
123
|
-
itemsPerPage?: number;
|
124
|
-
} & {
|
125
|
-
headers?: import("..").DataTableHeader[];
|
126
|
-
} & {
|
127
|
-
"v-model:items"?: T[];
|
128
|
-
} & {
|
129
|
-
"onUpdate:items"?: (value: T[]) => void;
|
130
|
-
} & {
|
131
|
-
items?: T[];
|
132
|
-
} & import("..").DefineEmit<"update:sortBy", (item: import("..").SortItem[]) => void> & import("..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("..").DefineEmit<"update:sortBy", (sort: import("..").SortItem[]) => void> & import("..").DefineSlot<"item", (row: import("..").IDataTableRowRenderer<T>) => void> & import("..").DefineSlot<`header.${string}`, (header: import("..").DataTableHeader) => void> & import("..").DefineSlot<`item.${string}`, (e: {
|
133
|
-
item: T;
|
134
|
-
}) => void>> & {
|
135
|
-
"v-slots"?: {
|
136
|
-
default?: import("vue").Slot;
|
137
|
-
} & {
|
138
|
-
[x: `header.${string}`]: (header: import("..").DataTableHeader) => void;
|
139
|
-
[x: `item.${string}`]: (e: {
|
140
|
-
item: T;
|
141
|
-
}) => void;
|
142
|
-
item?: (row: import("..").IDataTableRowRenderer<T>) => void;
|
143
|
-
};
|
144
|
-
} & {
|
145
|
-
"onUpdate:expanded"?: (expanded: string[]) => any;
|
146
|
-
"onUpdate:sortBy"?: (item: import("..").SortItem[]) => any;
|
147
|
-
} & Omit<import("..").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">;
|
148
|
-
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
149
|
-
[key: string]: any;
|
150
|
-
}>;
|
10
|
+
DataTable: DatatTableComponentTypings;
|
151
11
|
id: GuidValue;
|
152
12
|
readonly route: TRoute;
|
153
13
|
moveNext(): void;
|
154
14
|
movePrev(): void;
|
155
15
|
travelTo(toBladeId: GuidValue): void;
|
156
|
-
defineValueToSave<
|
157
|
-
value:
|
158
|
-
setValue: (value:
|
16
|
+
defineValueToSave<T>(value?: T): {
|
17
|
+
value: T;
|
18
|
+
setValue: (value: T) => void;
|
159
19
|
};
|
160
20
|
};
|
161
21
|
export {};
|
@@ -11,7 +11,7 @@ export interface DisabledButtonTooltips {
|
|
11
11
|
delete?: string;
|
12
12
|
remove?: string;
|
13
13
|
}
|
14
|
-
export type JourneyBladeProps = DefineProp<"getApi", (store: ReturnType<typeof useJourneyStore>) => void, false, null, "callback to get a reference to the journey store. The store is used to navigate the journey blades."> & DefineProp<"title", string, false, null, "Specify the title of the blade."> & DefineProp<"subTitle", string, false, null, "Specify a subtitle for the blade and the title is displayed in a breadcrumb style where the subTittle is prominent."> & DefineProp<"id", GuidValue, true, null, "The id of the blade. Used to identify the blade in the journey store."> & DefineProp<"size", BladeSizeTypes, false, "x-small", "Specify the size of the blade. Small will show the header buttons as icons."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"ok", boolean, false, false, "Specify if the blade should show a ok button. If a ok button is shown, a cancel button will also be shown."> & DefineVModel<"save", boolean, false, false, "Specify if the blade should show a save button. If a save button is shown, a cancel button will also be shown."> & DefineProp<"searchable", boolean, false, false, "Specify if the blade should show a search field."> & DefineProp<"delete", boolean, false, false, "Specify if the blade should show a delete button."> & DefineProp<"remove", boolean, false, false, "Specify if the blade should show a remove button."> & DefineProp<"disabled", boolean, false, false, "Specify if the blade should shoud be read only."> & DefineProp<"reorder", boolean, false, false, "Specify if the blade shoud be draggable on items."> & DefineProp<"switch", switchValue, false, null, "Specify if the blade should show switch."> & DefineProp<"settings", boolean, false, false, "Specify if the blade should show a settings button."> & DefineProp<"create", boolean, false, false, "Specify if the blade should show a create button."> & DefineProp<"bladeContext", BladeContexts | BladeContext, false, null, "Specify context of the journey."> & DefineProp<"icon", IIcon, false, null, "Specify an icon for the blade header. This should be used to hightlight the blade type such as create blades, edit blades etc."> & DefineProp<"variant", BladeVariantTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"onOk", () => boolean | Promise<boolean>, false, null, "Trigger when user click ok, return true if ok to close the blade."> & DefineProp<"onRemove", () => boolean | Promise<boolean>, false, null, "Trigger when user click remove, return true if ok to close the blade."> & DefineProp<"onSave", () => boolean | Promise<boolean>, false, null, "Trigger when user click save, return true if ok to close the blade."> & DefineProp<"onDelete", () => boolean | Promise<boolean>, false, null, "Trigger when user click delete, return true if ok to close the blade."> & DefineProp<"onSwitch", () => boolean | Promise<boolean>, false, null, "Trigger when user toggle switch, return true if ok to close the blade."> & DefineProp<"confirmDeleteDialogOption", ConfirmDialogOptions, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineProp<"disabledButtonTooltips", DisabledButtonTooltips, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineSlot<"actions", () => VNodeChild> & DefineSlot<"actionsFooter", () => VNodeChild> & DefineEmit<"click:add", (id: GuidValue) => true> & DefineEmit<"click:back", (id: GuidValue) => true> & DefineEmit<"click:cancel", (id: GuidValue) => true> & DefineEmit<"click:settings", (id: GuidValue) => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"update:reorder", (enable: boolean) => true>;
|
14
|
+
export type JourneyBladeProps = DefineProp<"getApi", (store: ReturnType<typeof useJourneyStore>) => void, false, null, "callback to get a reference to the journey store. The store is used to navigate the journey blades."> & DefineProp<"title", string, false, null, "Specify the title of the blade."> & DefineProp<"subTitle", string, false, null, "Specify a subtitle for the blade and the title is displayed in a breadcrumb style where the subTittle is prominent."> & DefineProp<"id", GuidValue, true, null, "The id of the blade. Used to identify the blade in the journey store."> & DefineProp<"size", BladeSizeTypes, false, "x-small", "Specify the size of the blade. Small will show the header buttons as icons."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"ok", boolean, false, false, "Specify if the blade should show a ok button. If a ok button is shown, a cancel button will also be shown."> & DefineVModel<"save", boolean, false, false, "Specify if the blade should show a save button. If a save button is shown, a cancel button will also be shown."> & DefineProp<"searchable", boolean, false, false, "Specify if the blade should show a search field."> & DefineProp<"delete", boolean, false, false, "Specify if the blade should show a delete button."> & DefineProp<"remove", boolean, false, false, "Specify if the blade should show a remove button."> & DefineProp<"disabled", boolean, false, false, "Specify if the blade should shoud be read only."> & DefineProp<"reorder", boolean, false, false, "Specify if the blade shoud be draggable on items."> & DefineProp<"switch", switchValue, false, null, "Specify if the blade should show switch."> & DefineProp<"settings", boolean, false, false, "Specify if the blade should show a settings button."> & DefineProp<"create", boolean, false, false, "Specify if the blade should show a create button."> & DefineProp<"bladeContext", BladeContexts | BladeContext, false, null, "Specify context of the journey."> & DefineProp<"icon", IIcon, false, null, "Specify an icon for the blade header. This should be used to hightlight the blade type such as create blades, edit blades etc."> & DefineProp<"variant", BladeVariantTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"onOk", () => boolean | Promise<boolean>, false, null, "Trigger when user click ok, return true if ok to close the blade."> & DefineProp<"onRemove", () => boolean | Promise<boolean>, false, null, "Trigger when user click remove, return true if ok to close the blade."> & DefineProp<"onSave", () => boolean | Promise<boolean>, false, null, "Trigger when user click save, return true if ok to close the blade."> & DefineProp<"onDelete", () => boolean | Promise<boolean>, false, null, "Trigger when user click delete, return true if ok to close the blade."> & DefineProp<"onSwitch", (value: boolean) => boolean | Promise<boolean>, false, null, "Trigger when user toggle switch, return true if ok to close the blade."> & DefineProp<"confirmDeleteDialogOption", ConfirmDialogOptions, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineProp<"disabledButtonTooltips", DisabledButtonTooltips, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineSlot<"actions", () => VNodeChild> & DefineSlot<"actionsFooter", () => VNodeChild> & DefineEmit<"click:add", (id: GuidValue) => true> & DefineEmit<"click:back", (id: GuidValue) => true> & DefineEmit<"click:cancel", (id: GuidValue) => true> & DefineEmit<"click:settings", (id: GuidValue) => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"update:reorder", (enable: boolean) => true>;
|
15
15
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<JourneyBladeProps>) => {
|
16
16
|
$: import("vue").ComponentInternalInstance;
|
17
17
|
$data: {};
|
@@ -64,7 +64,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<J
|
|
64
64
|
"onClick:add"?: (id: GuidValue) => any;
|
65
65
|
"onClick:settings"?: (id: GuidValue) => any;
|
66
66
|
"onUpdate:reorder"?: (enable: boolean) => any;
|
67
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "switch" | "icon" | "title" | "delete" | "id" | "size" | "disabled" | "settings" | "remove" | "variant" | "subTitle" | "create" | "ok" | "save" | "reorder" | "
|
67
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "switch" | "icon" | "title" | "delete" | "id" | "size" | "disabled" | "settings" | "remove" | "variant" | "subTitle" | "create" | "ok" | "save" | "reorder" | "getApi" | "loading" | "v-model:save" | "onUpdate:save" | "searchable" | "bladeContext" | "onOk" | "onRemove" | "onSave" | "onDelete" | "onSwitch" | "confirmDeleteDialogOption" | "disabledButtonTooltips">;
|
68
68
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
69
69
|
[key: string]: any;
|
70
70
|
}>;
|
@@ -125,157 +125,15 @@ export declare const useJourneyStore: () => {
|
|
125
125
|
registerBladeForRendering: {
|
126
126
|
subscribe(fn: (blade: {
|
127
127
|
readonly Blade: (props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../JourneyBlade").JourneyBladeProps, "id" | "getApi">>) => any;
|
128
|
-
DataTable: <T_1
|
129
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
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
|
-
}>;
|
128
|
+
DataTable: <T_1>(props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../../oxide/datatable/DataTable").DataTableProps<T_1>, "id" | "getApi">>) => any;
|
271
129
|
id: GuidValue;
|
272
130
|
readonly route: import("@omnia/fx-models").JourneyBladeRoute;
|
273
131
|
moveNext(): void;
|
274
132
|
movePrev(): void;
|
275
133
|
travelTo(toBladeId: GuidValue): void;
|
276
|
-
defineValueToSave<
|
277
|
-
value:
|
278
|
-
setValue: (value:
|
134
|
+
defineValueToSave<T_2>(value?: T_2): {
|
135
|
+
value: T_2;
|
136
|
+
setValue: (value: T_2) => void;
|
279
137
|
};
|
280
138
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
281
139
|
};
|
@@ -308,157 +166,15 @@ export declare const useJourneyStore: () => {
|
|
308
166
|
registerBladeForRendering: {
|
309
167
|
subscribe(fn: (result: void, blade: {
|
310
168
|
readonly Blade: (props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../JourneyBlade").JourneyBladeProps, "id" | "getApi">>) => any;
|
311
|
-
DataTable: <T_1
|
312
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
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
|
-
}>;
|
169
|
+
DataTable: <T_1>(props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../../oxide/datatable/DataTable").DataTableProps<T_1>, "id" | "getApi">>) => any;
|
454
170
|
id: GuidValue;
|
455
171
|
readonly route: import("@omnia/fx-models").JourneyBladeRoute;
|
456
172
|
moveNext(): void;
|
457
173
|
movePrev(): void;
|
458
174
|
travelTo(toBladeId: GuidValue): void;
|
459
|
-
defineValueToSave<
|
460
|
-
value:
|
461
|
-
setValue: (value:
|
175
|
+
defineValueToSave<T_2>(value?: T_2): {
|
176
|
+
value: T_2;
|
177
|
+
setValue: (value: T_2) => void;
|
462
178
|
};
|
463
179
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
464
180
|
};
|
@@ -491,157 +207,15 @@ export declare const useJourneyStore: () => {
|
|
491
207
|
registerBladeForRendering: {
|
492
208
|
subscribe(fn: (failureReason: any, blade: {
|
493
209
|
readonly Blade: (props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../JourneyBlade").JourneyBladeProps, "id" | "getApi">>) => any;
|
494
|
-
DataTable: <T_1
|
495
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
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
|
-
}>;
|
210
|
+
DataTable: <T_1>(props: import("@omnia/fx/ux").ConstructComponentProps<Omit<import("../../oxide/datatable/DataTable").DataTableProps<T_1>, "id" | "getApi">>) => any;
|
637
211
|
id: GuidValue;
|
638
212
|
readonly route: import("@omnia/fx-models").JourneyBladeRoute;
|
639
213
|
moveNext(): void;
|
640
214
|
movePrev(): void;
|
641
215
|
travelTo(toBladeId: GuidValue): void;
|
642
|
-
defineValueToSave<
|
643
|
-
value:
|
644
|
-
setValue: (value:
|
216
|
+
defineValueToSave<T_2>(value?: T_2): {
|
217
|
+
value: T_2;
|
218
|
+
setValue: (value: T_2) => void;
|
645
219
|
};
|
646
220
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
647
221
|
};
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { GuidValue } from "@omnia/fx-models";
|
2
2
|
import { JourneyBladeProps } from "../JourneyBlade";
|
3
|
-
import { WatchStopHandle } from "vue";
|
3
|
+
import { VNodeChild, WatchStopHandle } from "vue";
|
4
4
|
import { ConstructComponentProps } from "../../InternalDefineComponent";
|
5
5
|
type BladeElement = (props: ConstructComponentProps<Omit<JourneyBladeProps, "id" | "getApi">>) => any;
|
6
6
|
/**
|
@@ -8,53 +8,10 @@ type BladeElement = (props: ConstructComponentProps<Omit<JourneyBladeProps, "id"
|
|
8
8
|
*/
|
9
9
|
export declare function useBlade<TRoute extends {
|
10
10
|
[name: string]: string | number | boolean | GuidValue;
|
11
|
-
} = {}>(bladeId: GuidValue): {
|
12
|
-
Blade: BladeElement;
|
13
|
-
|
14
|
-
|
15
|
-
} & {
|
16
|
-
container?: boolean;
|
17
|
-
} & {
|
18
|
-
colors?: import("../..").ColorSchemaStoreType;
|
19
|
-
} & {
|
20
|
-
"v-model:expanded"?: string[];
|
21
|
-
} & {
|
22
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
23
|
-
} & {
|
24
|
-
expanded?: string[];
|
25
|
-
} & {
|
26
|
-
"v-model:sortBy"?: import("../..").SortItem[];
|
27
|
-
} & {
|
28
|
-
"onUpdate:sortBy"?: (value: import("../..").SortItem[]) => void;
|
29
|
-
} & {
|
30
|
-
sortBy?: import("../..").SortItem[];
|
31
|
-
} & {
|
32
|
-
mustSort?: boolean;
|
33
|
-
} & {
|
34
|
-
height?: string | number;
|
35
|
-
} & {
|
36
|
-
noDataText?: string;
|
37
|
-
} & {
|
38
|
-
loading?: boolean;
|
39
|
-
} & {
|
40
|
-
draggable?: boolean;
|
41
|
-
} & {
|
42
|
-
hover?: boolean;
|
43
|
-
} & {
|
44
|
-
showExpand?: boolean;
|
45
|
-
} & {
|
46
|
-
itemsPerPage?: number;
|
47
|
-
} & {
|
48
|
-
headers?: import("../..").DataTableHeader[];
|
49
|
-
} & {
|
50
|
-
"v-model:items"?: T[];
|
51
|
-
} & {
|
52
|
-
"onUpdate:items"?: (value: T[]) => void;
|
53
|
-
} & {
|
54
|
-
items?: T[];
|
55
|
-
} & import("../..").DefineEmit<"update:sortBy", (item: import("../..").SortItem[]) => void> & import("../..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("../..").DefineEmit<"update:sortBy", (sort: import("../..").SortItem[]) => void> & import("../..").DefineSlot<"item", (row: import("../..").IDataTableRowRenderer<T>) => void> & import("../..").DefineSlot<`header.${string}`, (header: import("../..").DataTableHeader) => void> & import("../..").DefineSlot<`item.${string}`, (e: {
|
56
|
-
item: T;
|
57
|
-
}) => void>>) => {
|
11
|
+
} = {}>(bladeId: GuidValue, renderer?: (blade: BladeElement) => VNodeChild): {
|
12
|
+
readonly Blade: BladeElement;
|
13
|
+
id: GuidValue;
|
14
|
+
DataTable: <T extends unknown>(props: ConstructComponentProps<import("../../oxide/datatable/DataTable").DataTableProps<T>>) => {
|
58
15
|
$: import("vue").ComponentInternalInstance;
|
59
16
|
$data: {};
|
60
17
|
$props: {};
|
@@ -92,51 +49,7 @@ export declare function useBlade<TRoute extends {
|
|
92
49
|
$nextTick: typeof import("vue").nextTick;
|
93
50
|
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): WatchStopHandle;
|
94
51
|
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
95
|
-
propsDefinition: import("../../InternalDefineComponent").ExtractProps<{
|
96
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
97
|
-
} & {
|
98
|
-
container?: boolean;
|
99
|
-
} & {
|
100
|
-
colors?: import("../..").ColorSchemaStoreType;
|
101
|
-
} & {
|
102
|
-
"v-model:expanded"?: string[];
|
103
|
-
} & {
|
104
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
105
|
-
} & {
|
106
|
-
expanded?: string[];
|
107
|
-
} & {
|
108
|
-
"v-model:sortBy"?: import("../..").SortItem[];
|
109
|
-
} & {
|
110
|
-
"onUpdate:sortBy"?: (value: import("../..").SortItem[]) => void;
|
111
|
-
} & {
|
112
|
-
sortBy?: import("../..").SortItem[];
|
113
|
-
} & {
|
114
|
-
mustSort?: boolean;
|
115
|
-
} & {
|
116
|
-
height?: string | number;
|
117
|
-
} & {
|
118
|
-
noDataText?: string;
|
119
|
-
} & {
|
120
|
-
loading?: boolean;
|
121
|
-
} & {
|
122
|
-
draggable?: boolean;
|
123
|
-
} & {
|
124
|
-
hover?: boolean;
|
125
|
-
} & {
|
126
|
-
showExpand?: boolean;
|
127
|
-
} & {
|
128
|
-
itemsPerPage?: number;
|
129
|
-
} & {
|
130
|
-
headers?: import("../..").DataTableHeader[];
|
131
|
-
} & {
|
132
|
-
"v-model:items"?: T[];
|
133
|
-
} & {
|
134
|
-
"onUpdate:items"?: (value: T[]) => void;
|
135
|
-
} & {
|
136
|
-
items?: T[];
|
137
|
-
} & import("../..").DefineEmit<"update:sortBy", (item: import("../..").SortItem[]) => void> & import("../..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("../..").DefineEmit<"update:sortBy", (sort: import("../..").SortItem[]) => void> & import("../..").DefineSlot<"item", (row: import("../..").IDataTableRowRenderer<T>) => void> & import("../..").DefineSlot<`header.${string}`, (header: import("../..").DataTableHeader) => void> & import("../..").DefineSlot<`item.${string}`, (e: {
|
138
|
-
item: T;
|
139
|
-
}) => void>> & {
|
52
|
+
propsDefinition: import("../../InternalDefineComponent").ExtractProps<import("../../oxide/datatable/DataTable").DataTableProps<T>> & {
|
140
53
|
"v-slots"?: {
|
141
54
|
default?: import("vue").Slot;
|
142
55
|
} & {
|
@@ -149,7 +62,7 @@ export declare function useBlade<TRoute extends {
|
|
149
62
|
} & {
|
150
63
|
"onUpdate:expanded"?: (expanded: string[]) => any;
|
151
64
|
"onUpdate:sortBy"?: (item: import("../..").SortItem[]) => any;
|
152
|
-
} & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "
|
65
|
+
} & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
|
153
66
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
154
67
|
[key: string]: any;
|
155
68
|
}>;
|
@@ -1,50 +1,11 @@
|
|
1
|
-
import { DataTableHeader, DefineEmit, DefineSlot, IDataTableRowRenderer, SortItem } from "@omnia/fx/ux";
|
1
|
+
import { DataTableHeader, DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineVModel, IDataTableRowRenderer, SortItem } from "@omnia/fx/ux";
|
2
2
|
import { ComponentPublicInstance } from "vue";
|
3
|
-
declare const
|
4
|
-
|
5
|
-
} & {
|
6
|
-
container?: boolean;
|
7
|
-
} & {
|
8
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
9
|
-
} & {
|
10
|
-
"v-model:expanded"?: string[];
|
11
|
-
} & {
|
12
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
13
|
-
} & {
|
14
|
-
expanded?: string[];
|
15
|
-
} & {
|
16
|
-
"v-model:sortBy"?: SortItem[];
|
17
|
-
} & {
|
18
|
-
"onUpdate:sortBy"?: (value: SortItem[]) => void;
|
19
|
-
} & {
|
20
|
-
sortBy?: SortItem[];
|
21
|
-
} & {
|
22
|
-
mustSort?: boolean;
|
23
|
-
} & {
|
24
|
-
height?: string | number;
|
25
|
-
} & {
|
26
|
-
noDataText?: string;
|
27
|
-
} & {
|
28
|
-
loading?: boolean;
|
29
|
-
} & {
|
30
|
-
draggable?: boolean;
|
31
|
-
} & {
|
32
|
-
hover?: boolean;
|
33
|
-
} & {
|
34
|
-
showExpand?: boolean;
|
35
|
-
} & {
|
36
|
-
itemsPerPage?: number;
|
37
|
-
} & {
|
38
|
-
headers?: DataTableHeader[];
|
39
|
-
} & {
|
40
|
-
"v-model:items"?: T[];
|
41
|
-
} & {
|
42
|
-
"onUpdate:items"?: (value: T[]) => void;
|
43
|
-
} & {
|
44
|
-
items?: T[];
|
45
|
-
} & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
3
|
+
declare const defaultHeaders: DataTableHeader[];
|
4
|
+
declare const defaultItems: any[];
|
5
|
+
export type DataTableProps<T> = DefinePropTheming & DefineVModel<"expanded", Array<string>, false, null, "Whether the item is expanded or not."> & DefineVModel<"sortBy", SortItem[], false, null, "Changes which item property (or properties) should be used for sort order."> & DefineProp<"mustSort", boolean, false, false, "If true then one can not disable sorting, it will always switch between ascending and descending."> & DefineProp<"height", string | number, false, null, "Sets and explicit height of the tablet."> & DefineProp<"noDataText", string, false, null, "Text shown when no items are provided to the component."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"draggable", boolean, false, false, "Enable draggable row."> & DefineProp<"hover", boolean, false, false, "Property on supplied items that contains its value."> & DefineProp<"showExpand", boolean, false, false, "Shows the expand toggle in default rows."> & DefineProp<"itemsPerPage", number, false, -1, "Changes how many items per page should be visible. If set a paging footer is displayed."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeaders, "An array of objects that each describe a header column."> & DefineVModel<"items", T[], false, typeof defaultItems, "An array of strings or objects used for automatically generating children components."> & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
46
6
|
item: T;
|
47
|
-
}) => void
|
7
|
+
}) => void>;
|
8
|
+
declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").ConstructComponentProps<DataTableProps<T>>) => {
|
48
9
|
$: import("vue").ComponentInternalInstance;
|
49
10
|
$data: {};
|
50
11
|
$props: {};
|
@@ -82,51 +43,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Constr
|
|
82
43
|
$nextTick: typeof import("vue").nextTick;
|
83
44
|
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
84
45
|
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
85
|
-
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
86
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
87
|
-
} & {
|
88
|
-
container?: boolean;
|
89
|
-
} & {
|
90
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
91
|
-
} & {
|
92
|
-
"v-model:expanded"?: string[];
|
93
|
-
} & {
|
94
|
-
"onUpdate:expanded"?: (value: string[]) => void;
|
95
|
-
} & {
|
96
|
-
expanded?: string[];
|
97
|
-
} & {
|
98
|
-
"v-model:sortBy"?: SortItem[];
|
99
|
-
} & {
|
100
|
-
"onUpdate:sortBy"?: (value: SortItem[]) => void;
|
101
|
-
} & {
|
102
|
-
sortBy?: SortItem[];
|
103
|
-
} & {
|
104
|
-
mustSort?: boolean;
|
105
|
-
} & {
|
106
|
-
height?: string | number;
|
107
|
-
} & {
|
108
|
-
noDataText?: string;
|
109
|
-
} & {
|
110
|
-
loading?: boolean;
|
111
|
-
} & {
|
112
|
-
draggable?: boolean;
|
113
|
-
} & {
|
114
|
-
hover?: boolean;
|
115
|
-
} & {
|
116
|
-
showExpand?: boolean;
|
117
|
-
} & {
|
118
|
-
itemsPerPage?: number;
|
119
|
-
} & {
|
120
|
-
headers?: DataTableHeader[];
|
121
|
-
} & {
|
122
|
-
"v-model:items"?: T[];
|
123
|
-
} & {
|
124
|
-
"onUpdate:items"?: (value: T[]) => void;
|
125
|
-
} & {
|
126
|
-
items?: T[];
|
127
|
-
} & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
128
|
-
item: T;
|
129
|
-
}) => void>> & {
|
46
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<DataTableProps<T>> & {
|
130
47
|
"v-slots"?: {
|
131
48
|
default?: import("vue").Slot;
|
132
49
|
} & {
|
@@ -139,7 +56,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Constr
|
|
139
56
|
} & {
|
140
57
|
"onUpdate:expanded"?: (expanded: string[]) => any;
|
141
58
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
142
|
-
} & 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" | "
|
59
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
|
143
60
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
144
61
|
[key: string]: any;
|
145
62
|
}>;
|
@@ -216,9 +216,9 @@ declare const _default: {
|
|
216
216
|
}>> & {
|
217
217
|
"onUpdate:modelValue"?: (value: any[]) => any;
|
218
218
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
219
|
-
onDoc$?: (description?: string) => any;
|
220
219
|
"onUpdate:page"?: (page: number) => any;
|
221
220
|
"onUpdate:options"?: (options: any) => any;
|
221
|
+
onDoc$?: (description?: string) => any;
|
222
222
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
223
223
|
"update:modelValue": (value: any[]) => void;
|
224
224
|
doc$(description?: string): {
|
@@ -439,9 +439,9 @@ declare const _default: {
|
|
439
439
|
}>> & {
|
440
440
|
"onUpdate:modelValue"?: (value: any[]) => any;
|
441
441
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
442
|
-
onDoc$?: (description?: string) => any;
|
443
442
|
"onUpdate:page"?: (page: number) => any;
|
444
443
|
"onUpdate:options"?: (options: any) => any;
|
444
|
+
onDoc$?: (description?: string) => any;
|
445
445
|
}, {
|
446
446
|
container: boolean;
|
447
447
|
}, true, {}, {}, {
|
@@ -663,9 +663,9 @@ declare const _default: {
|
|
663
663
|
}>> & {
|
664
664
|
"onUpdate:modelValue"?: (value: any[]) => any;
|
665
665
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
666
|
-
onDoc$?: (description?: string) => any;
|
667
666
|
"onUpdate:page"?: (page: number) => any;
|
668
667
|
"onUpdate:options"?: (options: any) => any;
|
668
|
+
onDoc$?: (description?: string) => any;
|
669
669
|
}, () => JSX.Element, {}, {}, {}, {
|
670
670
|
container: boolean;
|
671
671
|
}>;
|
@@ -884,9 +884,9 @@ declare const _default: {
|
|
884
884
|
}>> & {
|
885
885
|
"onUpdate:modelValue"?: (value: any[]) => any;
|
886
886
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
887
|
-
onDoc$?: (description?: string) => any;
|
888
887
|
"onUpdate:page"?: (page: number) => any;
|
889
888
|
"onUpdate:options"?: (options: any) => any;
|
889
|
+
onDoc$?: (description?: string) => any;
|
890
890
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
891
891
|
"update:modelValue": (value: any[]) => void;
|
892
892
|
doc$(description?: string): {
|
@@ -974,21 +974,21 @@ declare const _default: {
|
|
974
974
|
"v-slots"?: {
|
975
975
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
976
976
|
} & ODataTableServerSlots;
|
977
|
+
loading?: boolean;
|
977
978
|
"v-model:expanded"?: string[];
|
978
979
|
"onUpdate:expanded"?: (value: string[]) => any;
|
979
980
|
sortBy?: SortItem[];
|
980
981
|
"v-model:sortBy"?: SortItem[];
|
981
982
|
"onUpdate:sortBy"?: (value: SortItem[]) => any;
|
982
983
|
mustSort?: boolean;
|
983
|
-
loading?: boolean;
|
984
984
|
hover?: boolean;
|
985
985
|
showExpand?: boolean;
|
986
986
|
itemsPerPage?: number;
|
987
987
|
itemValue?: SelectItemKey;
|
988
|
-
"item-value"?: SelectItemKey;
|
989
988
|
itemSelectable?: SelectItemKey;
|
990
989
|
showSelect?: boolean;
|
991
990
|
"onUpdate:page"?: (value: number) => any;
|
991
|
+
"item-value"?: SelectItemKey;
|
992
992
|
"items-per-page"?: number;
|
993
993
|
"show-expand"?: boolean;
|
994
994
|
"show-select"?: boolean;
|
@@ -998,12 +998,12 @@ declare const _default: {
|
|
998
998
|
"items-length"?: number;
|
999
999
|
"item-selectable"?: SelectItemKey;
|
1000
1000
|
clickable?: boolean;
|
1001
|
-
}>, "onUpdate:modelValue" | "onUpdate:sortBy" | "
|
1001
|
+
}>, "onUpdate:modelValue" | "onUpdate:sortBy" | "onUpdate:page" | "onUpdate:options" | "onDoc$"> & {
|
1002
1002
|
"onUpdate:modelValue"?: (value: any[]) => any;
|
1003
1003
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
1004
|
-
onDoc$?: (description?: string) => any;
|
1005
1004
|
"onUpdate:page"?: (page: number) => any;
|
1006
1005
|
"onUpdate:options"?: (options: any) => any;
|
1006
|
+
onDoc$?: (description?: string) => any;
|
1007
1007
|
};
|
1008
1008
|
};
|
1009
1009
|
export default _default;
|
@@ -301,8 +301,8 @@ declare const _default: {
|
|
301
301
|
append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
302
302
|
};
|
303
303
|
variant?: "default" | "element" | "list" | "data-table" | "accordion";
|
304
|
-
itemTitle?: string | ((item: any) => VNodeChild);
|
305
304
|
itemValue?: string | ((item: any) => string);
|
305
|
+
itemTitle?: string | ((item: any) => VNodeChild);
|
306
306
|
"item-value"?: string | ((item: any) => string);
|
307
307
|
"item-title"?: string | ((item: any) => VNodeChild);
|
308
308
|
disabledItem?: string;
|
@@ -344,9 +344,9 @@ declare const _default: {
|
|
344
344
|
"v-slots"?: {
|
345
345
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
346
346
|
} & VRatingSlots;
|
347
|
-
hover?: boolean;
|
348
347
|
readonly?: boolean;
|
349
348
|
clearable?: boolean;
|
349
|
+
hover?: boolean;
|
350
350
|
density?: "default" | "compact" | "comfortable";
|
351
351
|
}>, never>;
|
352
352
|
};
|
@@ -165,7 +165,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
165
165
|
"onUpdate:focused"?: (value: boolean) => any;
|
166
166
|
"onClick:button"?: (value: any) => any;
|
167
167
|
"onUpdate:search"?: (value: string) => any;
|
168
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "readonly" | "clearable" | "
|
168
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "readonly" | "clearable" | "itemValue" | "returnObject" | "hideNoData" | "itemTitle" | "menuIcon" | "hideSelected">;
|
169
169
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
170
170
|
[key: string]: any;
|
171
171
|
}>;
|
@@ -583,8 +583,8 @@ declare const _default: {
|
|
583
583
|
};
|
584
584
|
"v-model:expanded"?: any[];
|
585
585
|
"onUpdate:expanded"?: (value: any[]) => any;
|
586
|
-
itemTitle?: string | ((item: any) => string);
|
587
586
|
itemValue?: string;
|
587
|
+
itemTitle?: string | ((item: any) => string);
|
588
588
|
"item-value"?: string;
|
589
589
|
"item-title"?: string | ((item: any) => string);
|
590
590
|
itemChildren?: string;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.188-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.188-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|