@omnia/fx 8.0.42-vnext → 8.0.44-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/select/Select.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +31 -6
- 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;
|
@@ -83,6 +83,7 @@ declare const _default: {
|
|
83
83
|
readonly itemValue?: any;
|
84
84
|
readonly clearable?: boolean;
|
85
85
|
"onClick:button"?: (value: any) => any;
|
86
|
+
readonly searchable?: boolean;
|
86
87
|
};
|
87
88
|
$attrs: {
|
88
89
|
[x: string]: unknown;
|
@@ -109,6 +110,10 @@ declare const _default: {
|
|
109
110
|
} & {
|
110
111
|
type: import("vue").PropType<boolean>;
|
111
112
|
};
|
113
|
+
searchable: {
|
114
|
+
type: import("vue").PropType<boolean>;
|
115
|
+
required: false;
|
116
|
+
};
|
112
117
|
clearable: {
|
113
118
|
type: import("vue").PropType<boolean>;
|
114
119
|
};
|
@@ -191,6 +196,10 @@ declare const _default: {
|
|
191
196
|
} & {
|
192
197
|
type: import("vue").PropType<boolean>;
|
193
198
|
};
|
199
|
+
searchable: {
|
200
|
+
type: import("vue").PropType<boolean>;
|
201
|
+
required: false;
|
202
|
+
};
|
194
203
|
clearable: {
|
195
204
|
type: import("vue").PropType<boolean>;
|
196
205
|
};
|
@@ -248,6 +257,10 @@ declare const _default: {
|
|
248
257
|
} & {
|
249
258
|
type: import("vue").PropType<boolean>;
|
250
259
|
};
|
260
|
+
searchable: {
|
261
|
+
type: import("vue").PropType<boolean>;
|
262
|
+
required: false;
|
263
|
+
};
|
251
264
|
clearable: {
|
252
265
|
type: import("vue").PropType<boolean>;
|
253
266
|
};
|
@@ -323,6 +336,7 @@ declare const _default: {
|
|
323
336
|
itemTitle?: any;
|
324
337
|
itemValue?: any;
|
325
338
|
clearable?: boolean;
|
339
|
+
searchable?: boolean;
|
326
340
|
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
327
341
|
"onUpdate:modelValue"?: (value: any) => any;
|
328
342
|
"onClick:button"?: (value: any) => any;
|
@@ -13,6 +13,7 @@ declare const _default: {
|
|
13
13
|
class?: String | String[];
|
14
14
|
readonly type?: "number";
|
15
15
|
key?: string | number | symbol;
|
16
|
+
readonly disabled?: boolean;
|
16
17
|
ref?: import("vue").VNodeRef;
|
17
18
|
ref_for?: boolean;
|
18
19
|
ref_key?: string;
|
@@ -59,6 +60,7 @@ declare const _default: {
|
|
59
60
|
readonly modelValue?: string;
|
60
61
|
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
61
62
|
readonly variant?: "search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend";
|
63
|
+
readonly loading?: boolean;
|
62
64
|
readonly clearable?: boolean;
|
63
65
|
"onClick:button"?: () => any;
|
64
66
|
};
|
@@ -76,10 +78,17 @@ declare const _default: {
|
|
76
78
|
$emit: ((event: "update:modelValue", value: string) => void) & ((event: "click:button") => void);
|
77
79
|
$el: any;
|
78
80
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
81
|
+
disabled: {
|
82
|
+
type: import("vue").PropType<boolean>;
|
83
|
+
required: false;
|
84
|
+
};
|
85
|
+
loading: {
|
86
|
+
type: import("vue").PropType<boolean>;
|
87
|
+
required: false;
|
88
|
+
};
|
79
89
|
toned: {
|
80
90
|
type: import("vue").PropType<Boolean>;
|
81
|
-
|
82
|
-
type: import("vue").PropType<Boolean>;
|
91
|
+
required: false;
|
83
92
|
};
|
84
93
|
type: {
|
85
94
|
type: import("vue").PropType<"number">;
|
@@ -146,10 +155,17 @@ declare const _default: {
|
|
146
155
|
$nextTick: typeof import("vue").nextTick;
|
147
156
|
$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
157
|
} & Readonly<import("vue").ExtractPropTypes<{
|
158
|
+
disabled: {
|
159
|
+
type: import("vue").PropType<boolean>;
|
160
|
+
required: false;
|
161
|
+
};
|
162
|
+
loading: {
|
163
|
+
type: import("vue").PropType<boolean>;
|
164
|
+
required: false;
|
165
|
+
};
|
149
166
|
toned: {
|
150
167
|
type: import("vue").PropType<Boolean>;
|
151
|
-
|
152
|
-
type: import("vue").PropType<Boolean>;
|
168
|
+
required: false;
|
153
169
|
};
|
154
170
|
type: {
|
155
171
|
type: import("vue").PropType<"number">;
|
@@ -191,10 +207,17 @@ declare const _default: {
|
|
191
207
|
__isTeleport?: never;
|
192
208
|
__isSuspense?: never;
|
193
209
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
210
|
+
disabled: {
|
211
|
+
type: import("vue").PropType<boolean>;
|
212
|
+
required: false;
|
213
|
+
};
|
214
|
+
loading: {
|
215
|
+
type: import("vue").PropType<boolean>;
|
216
|
+
required: false;
|
217
|
+
};
|
194
218
|
toned: {
|
195
219
|
type: import("vue").PropType<Boolean>;
|
196
|
-
|
197
|
-
type: import("vue").PropType<Boolean>;
|
220
|
+
required: false;
|
198
221
|
};
|
199
222
|
type: {
|
200
223
|
type: import("vue").PropType<"number">;
|
@@ -251,11 +274,13 @@ declare const _default: {
|
|
251
274
|
label?: string;
|
252
275
|
class?: String | String[];
|
253
276
|
type?: "number";
|
277
|
+
disabled?: boolean;
|
254
278
|
toned?: Boolean;
|
255
279
|
"v-model"?: string;
|
256
280
|
modelValue?: string;
|
257
281
|
"onUpdate:modelValue"?: (value: string) => any;
|
258
282
|
variant?: "search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend";
|
283
|
+
loading?: boolean;
|
259
284
|
clearable?: boolean;
|
260
285
|
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
261
286
|
"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.44-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.44-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|