@omnia/fx 8.0.66-vnext → 8.0.68-vnext
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,6 +29,17 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
29
29
|
};
|
30
30
|
};
|
31
31
|
get: {
|
32
|
+
stateManager: <T>() => {
|
33
|
+
state: {};
|
34
|
+
get: {
|
35
|
+
state: () => import("vue").UnwrapRef<T>;
|
36
|
+
};
|
37
|
+
actions: {
|
38
|
+
setState: (state: T) => import("vue").UnwrapRef<T>;
|
39
|
+
};
|
40
|
+
events: {};
|
41
|
+
deactivated(): void;
|
42
|
+
};
|
32
43
|
blade: (id: string) => BladeInstance;
|
33
44
|
showBackButton: (bladeId: string) => boolean;
|
34
45
|
readonly isNested: boolean;
|
@@ -94,3 +105,15 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
94
105
|
};
|
95
106
|
deactivated(): void;
|
96
107
|
};
|
108
|
+
declare function createJourneyStateManager<T extends Object>(): {
|
109
|
+
state: {};
|
110
|
+
get: {
|
111
|
+
state: () => import("vue").UnwrapRef<T>;
|
112
|
+
};
|
113
|
+
actions: {
|
114
|
+
setState: (state: T) => import("vue").UnwrapRef<T>;
|
115
|
+
};
|
116
|
+
events: {};
|
117
|
+
deactivated(): void;
|
118
|
+
};
|
119
|
+
export {};
|
@@ -67,11 +67,11 @@ declare const _default: {
|
|
67
67
|
} & OTextFieldSlots;
|
68
68
|
readonly variant?: "search" | "link" | "default" | "media" | "find-slim";
|
69
69
|
readonly loading?: boolean;
|
70
|
-
readonly modelValue?: string;
|
70
|
+
readonly modelValue?: string | number;
|
71
71
|
"onUpdate:focused"?: (value: boolean) => any;
|
72
72
|
readonly rules?: ValidationRule[];
|
73
|
-
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
74
|
-
readonly "v-model"?: string;
|
73
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) & ((value: string) => any);
|
74
|
+
readonly "v-model"?: string | number;
|
75
75
|
readonly toned?: boolean;
|
76
76
|
"onClick:clear"?: () => any;
|
77
77
|
readonly clearable?: boolean;
|
@@ -129,14 +129,14 @@ declare const _default: {
|
|
129
129
|
type: import("vue").PropType<string>;
|
130
130
|
};
|
131
131
|
"onUpdate:modelValue": {
|
132
|
-
type: import("vue").PropType<(value: string) => any>;
|
132
|
+
type: import("vue").PropType<(value: string | number) => any>;
|
133
133
|
};
|
134
134
|
"v-model": {
|
135
|
-
type: import("vue").PropType<string>;
|
135
|
+
type: import("vue").PropType<string | number>;
|
136
136
|
required: false;
|
137
137
|
};
|
138
138
|
modelValue: {
|
139
|
-
type: import("vue").PropType<string>;
|
139
|
+
type: import("vue").PropType<string | number>;
|
140
140
|
required: false;
|
141
141
|
};
|
142
142
|
"v-slots": import("vue").Prop<{
|
@@ -228,14 +228,14 @@ declare const _default: {
|
|
228
228
|
type: import("vue").PropType<string>;
|
229
229
|
};
|
230
230
|
"onUpdate:modelValue": {
|
231
|
-
type: import("vue").PropType<(value: string) => any>;
|
231
|
+
type: import("vue").PropType<(value: string | number) => any>;
|
232
232
|
};
|
233
233
|
"v-model": {
|
234
|
-
type: import("vue").PropType<string>;
|
234
|
+
type: import("vue").PropType<string | number>;
|
235
235
|
required: false;
|
236
236
|
};
|
237
237
|
modelValue: {
|
238
|
-
type: import("vue").PropType<string>;
|
238
|
+
type: import("vue").PropType<string | number>;
|
239
239
|
required: false;
|
240
240
|
};
|
241
241
|
"v-slots": import("vue").Prop<{
|
@@ -297,14 +297,14 @@ declare const _default: {
|
|
297
297
|
type: import("vue").PropType<string>;
|
298
298
|
};
|
299
299
|
"onUpdate:modelValue": {
|
300
|
-
type: import("vue").PropType<(value: string) => any>;
|
300
|
+
type: import("vue").PropType<(value: string | number) => any>;
|
301
301
|
};
|
302
302
|
"v-model": {
|
303
|
-
type: import("vue").PropType<string>;
|
303
|
+
type: import("vue").PropType<string | number>;
|
304
304
|
required: false;
|
305
305
|
};
|
306
306
|
modelValue: {
|
307
|
-
type: import("vue").PropType<string>;
|
307
|
+
type: import("vue").PropType<string | number>;
|
308
308
|
required: false;
|
309
309
|
};
|
310
310
|
"v-slots": import("vue").Prop<{
|
@@ -357,10 +357,10 @@ declare const _default: {
|
|
357
357
|
} & OTextFieldSlots;
|
358
358
|
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
359
359
|
loading?: boolean;
|
360
|
-
modelValue?: string;
|
360
|
+
modelValue?: string | number;
|
361
361
|
rules?: ValidationRule[];
|
362
|
-
"onUpdate:modelValue"?: (value: string) => any;
|
363
|
-
"v-model"?: string;
|
362
|
+
"onUpdate:modelValue"?: (value: string | number) => any;
|
363
|
+
"v-model"?: string | number;
|
364
364
|
toned?: boolean;
|
365
365
|
clearable?: boolean;
|
366
366
|
autofocus?: boolean;
|
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.68-vnext",
|
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,13 +20,13 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.68-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
27
27
|
"vue-virtual-scroller": "1.0.0-rc.2",
|
28
28
|
"splitpanes": "2.4.1",
|
29
|
-
"vuetify": "3.3.
|
29
|
+
"vuetify": "3.3.11",
|
30
30
|
"vue": "3.3.4",
|
31
31
|
"tslib": "2.5.0",
|
32
32
|
"typescript": "5.0.4",
|