@omnia/fx 8.0.42-vnext → 8.0.43-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.
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +1 -0
- package/package.json +2 -2
@@ -36,6 +36,7 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
36
36
|
};
|
37
37
|
actions: {
|
38
38
|
addBlade: (blade: BladeInstance) => void;
|
39
|
+
removeBlade: (blade: BladeInstance) => void;
|
39
40
|
setActiveIndex: (index: number) => void;
|
40
41
|
moveNext: () => void;
|
41
42
|
movePrev: () => void;
|
@@ -59,6 +59,7 @@ declare const _default: {
|
|
59
59
|
readonly modelValue?: string;
|
60
60
|
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
61
61
|
readonly variant?: "search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend";
|
62
|
+
readonly loading?: boolean;
|
62
63
|
readonly clearable?: boolean;
|
63
64
|
"onClick:button"?: () => any;
|
64
65
|
};
|
@@ -76,6 +77,11 @@ declare const _default: {
|
|
76
77
|
$emit: ((event: "update:modelValue", value: string) => void) & ((event: "click:button") => void);
|
77
78
|
$el: any;
|
78
79
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
80
|
+
loading: {
|
81
|
+
type: import("vue").PropType<boolean>;
|
82
|
+
} & {
|
83
|
+
type: import("vue").PropType<boolean>;
|
84
|
+
};
|
79
85
|
toned: {
|
80
86
|
type: import("vue").PropType<Boolean>;
|
81
87
|
} & {
|
@@ -146,6 +152,11 @@ declare const _default: {
|
|
146
152
|
$nextTick: typeof import("vue").nextTick;
|
147
153
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
148
154
|
} & Readonly<import("vue").ExtractPropTypes<{
|
155
|
+
loading: {
|
156
|
+
type: import("vue").PropType<boolean>;
|
157
|
+
} & {
|
158
|
+
type: import("vue").PropType<boolean>;
|
159
|
+
};
|
149
160
|
toned: {
|
150
161
|
type: import("vue").PropType<Boolean>;
|
151
162
|
} & {
|
@@ -191,6 +202,11 @@ declare const _default: {
|
|
191
202
|
__isTeleport?: never;
|
192
203
|
__isSuspense?: never;
|
193
204
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
205
|
+
loading: {
|
206
|
+
type: import("vue").PropType<boolean>;
|
207
|
+
} & {
|
208
|
+
type: import("vue").PropType<boolean>;
|
209
|
+
};
|
194
210
|
toned: {
|
195
211
|
type: import("vue").PropType<Boolean>;
|
196
212
|
} & {
|
@@ -256,6 +272,7 @@ declare const _default: {
|
|
256
272
|
modelValue?: string;
|
257
273
|
"onUpdate:modelValue"?: (value: string) => any;
|
258
274
|
variant?: "search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend";
|
275
|
+
loading?: boolean;
|
259
276
|
clearable?: boolean;
|
260
277
|
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
261
278
|
"onUpdate:modelValue"?: (value: string) => any;
|
@@ -12,6 +12,7 @@ export declare const useColorSchemaStore: (newInstanceWithName?: string) => {
|
|
12
12
|
id: import("@omnia/fx-models").GuidValue;
|
13
13
|
};
|
14
14
|
get: {
|
15
|
+
readonly theme: "dark" | "light";
|
15
16
|
readonly colorSchema: ColorSchema;
|
16
17
|
readonly base: ColorDefinition;
|
17
18
|
readonly onBase: ColorDefinition;
|
@@ -10,6 +10,7 @@ export declare function useColorSchemaSetup(props: object): {
|
|
10
10
|
id: import("@omnia/fx-models").GuidValue;
|
11
11
|
};
|
12
12
|
get: {
|
13
|
+
readonly theme: "dark" | "light";
|
13
14
|
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
14
15
|
readonly base: import("@omnia/fx-models").ColorDefinition;
|
15
16
|
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
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.43-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,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.43-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|