@omnia/fx 8.0.83-vnext → 8.0.84-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.
@@ -58,9 +58,9 @@ declare const _default: {
|
|
58
58
|
readonly modelValue?: any;
|
59
59
|
"onUpdate:modelValue"?: ((value: any) => any) & ((value: any) => any);
|
60
60
|
readonly "v-model"?: any;
|
61
|
-
readonly min?: string;
|
62
|
-
readonly max?: string;
|
63
|
-
readonly step?: string;
|
61
|
+
readonly min?: string | number;
|
62
|
+
readonly max?: string | number;
|
63
|
+
readonly step?: string | number;
|
64
64
|
readonly noThumbLabel?: boolean;
|
65
65
|
};
|
66
66
|
$attrs: {
|
@@ -90,13 +90,13 @@ declare const _default: {
|
|
90
90
|
type: import("vue").PropType<string>;
|
91
91
|
};
|
92
92
|
max: {
|
93
|
-
type: import("vue").PropType<string>;
|
93
|
+
type: import("vue").PropType<string | number>;
|
94
94
|
};
|
95
95
|
min: {
|
96
|
-
type: import("vue").PropType<string>;
|
96
|
+
type: import("vue").PropType<string | number>;
|
97
97
|
};
|
98
98
|
step: {
|
99
|
-
type: import("vue").PropType<string>;
|
99
|
+
type: import("vue").PropType<string | number>;
|
100
100
|
};
|
101
101
|
"onUpdate:modelValue": {
|
102
102
|
type: import("vue").PropType<(value: any) => any>;
|
@@ -162,13 +162,13 @@ declare const _default: {
|
|
162
162
|
type: import("vue").PropType<string>;
|
163
163
|
};
|
164
164
|
max: {
|
165
|
-
type: import("vue").PropType<string>;
|
165
|
+
type: import("vue").PropType<string | number>;
|
166
166
|
};
|
167
167
|
min: {
|
168
|
-
type: import("vue").PropType<string>;
|
168
|
+
type: import("vue").PropType<string | number>;
|
169
169
|
};
|
170
170
|
step: {
|
171
|
-
type: import("vue").PropType<string>;
|
171
|
+
type: import("vue").PropType<string | number>;
|
172
172
|
};
|
173
173
|
"onUpdate:modelValue": {
|
174
174
|
type: import("vue").PropType<(value: any) => any>;
|
@@ -210,13 +210,13 @@ declare const _default: {
|
|
210
210
|
type: import("vue").PropType<string>;
|
211
211
|
};
|
212
212
|
max: {
|
213
|
-
type: import("vue").PropType<string>;
|
213
|
+
type: import("vue").PropType<string | number>;
|
214
214
|
};
|
215
215
|
min: {
|
216
|
-
type: import("vue").PropType<string>;
|
216
|
+
type: import("vue").PropType<string | number>;
|
217
217
|
};
|
218
218
|
step: {
|
219
|
-
type: import("vue").PropType<string>;
|
219
|
+
type: import("vue").PropType<string | number>;
|
220
220
|
};
|
221
221
|
"onUpdate:modelValue": {
|
222
222
|
type: import("vue").PropType<(value: any) => any>;
|
@@ -263,9 +263,9 @@ declare const _default: {
|
|
263
263
|
modelValue?: any;
|
264
264
|
"onUpdate:modelValue"?: (value: any) => any;
|
265
265
|
"v-model"?: any;
|
266
|
-
min?: string;
|
267
|
-
max?: string;
|
268
|
-
step?: string;
|
266
|
+
min?: string | number;
|
267
|
+
max?: string | number;
|
268
|
+
step?: string | number;
|
269
269
|
noThumbLabel?: boolean;
|
270
270
|
}>, "onUpdate:modelValue"> & {
|
271
271
|
"onUpdate:modelValue"?: (value: any) => any;
|
@@ -72,6 +72,7 @@ declare const _default: {
|
|
72
72
|
readonly clearable?: boolean;
|
73
73
|
"onClick:clear"?: () => any;
|
74
74
|
readonly autofocus?: boolean;
|
75
|
+
readonly suffix?: string;
|
75
76
|
readonly toned?: boolean;
|
76
77
|
onDoc$?: (description?: string) => any;
|
77
78
|
"onClick:button"?: () => any;
|
@@ -90,6 +91,9 @@ declare const _default: {
|
|
90
91
|
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "update:focused", value: boolean) => void) & ((event: "click:clear") => void) & ((event: "click:button") => void);
|
91
92
|
$el: any;
|
92
93
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
94
|
+
suffix: {
|
95
|
+
type: import("vue").PropType<string>;
|
96
|
+
};
|
93
97
|
errorMessages: {
|
94
98
|
type: import("vue").PropType<string | string[]>;
|
95
99
|
};
|
@@ -192,6 +196,9 @@ declare const _default: {
|
|
192
196
|
$nextTick: typeof import("vue").nextTick;
|
193
197
|
$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;
|
194
198
|
} & Readonly<import("vue").ExtractPropTypes<{
|
199
|
+
suffix: {
|
200
|
+
type: import("vue").PropType<string>;
|
201
|
+
};
|
195
202
|
errorMessages: {
|
196
203
|
type: import("vue").PropType<string | string[]>;
|
197
204
|
};
|
@@ -264,6 +271,9 @@ declare const _default: {
|
|
264
271
|
__isTeleport?: never;
|
265
272
|
__isSuspense?: never;
|
266
273
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
274
|
+
suffix: {
|
275
|
+
type: import("vue").PropType<string>;
|
276
|
+
};
|
267
277
|
errorMessages: {
|
268
278
|
type: import("vue").PropType<string | string[]>;
|
269
279
|
};
|
@@ -370,6 +380,7 @@ declare const _default: {
|
|
370
380
|
"v-model"?: string | number;
|
371
381
|
clearable?: boolean;
|
372
382
|
autofocus?: boolean;
|
383
|
+
suffix?: string;
|
373
384
|
toned?: boolean;
|
374
385
|
}>, "onUpdate:focused" | "onUpdate:modelValue" | "onClick:clear" | "onDoc$" | "onClick:button"> & {
|
375
386
|
"onUpdate:focused"?: (value: boolean) => any;
|
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.84-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.84-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|