@omnia/fx 8.0.49-vnext → 8.0.50-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.
@@ -66,6 +66,7 @@ declare const _default: {
|
|
66
66
|
readonly "v-model"?: string[];
|
67
67
|
readonly modelValue?: string[];
|
68
68
|
readonly "onUpdate:modelValue"?: (value: string[]) => any;
|
69
|
+
readonly loading?: boolean;
|
69
70
|
readonly hover?: boolean;
|
70
71
|
readonly items?: any[];
|
71
72
|
readonly returnObject?: boolean;
|
@@ -122,6 +123,10 @@ declare const _default: {
|
|
122
123
|
type: import("vue").PropType<boolean>;
|
123
124
|
required: false;
|
124
125
|
};
|
126
|
+
loading: {
|
127
|
+
type: import("vue").PropType<boolean>;
|
128
|
+
required: false;
|
129
|
+
};
|
125
130
|
hover: {
|
126
131
|
type: import("vue").PropType<boolean>;
|
127
132
|
required: false;
|
@@ -214,6 +219,10 @@ declare const _default: {
|
|
214
219
|
type: import("vue").PropType<boolean>;
|
215
220
|
required: false;
|
216
221
|
};
|
222
|
+
loading: {
|
223
|
+
type: import("vue").PropType<boolean>;
|
224
|
+
required: false;
|
225
|
+
};
|
217
226
|
hover: {
|
218
227
|
type: import("vue").PropType<boolean>;
|
219
228
|
required: false;
|
@@ -284,6 +293,10 @@ declare const _default: {
|
|
284
293
|
type: import("vue").PropType<boolean>;
|
285
294
|
required: false;
|
286
295
|
};
|
296
|
+
loading: {
|
297
|
+
type: import("vue").PropType<boolean>;
|
298
|
+
required: false;
|
299
|
+
};
|
287
300
|
hover: {
|
288
301
|
type: import("vue").PropType<boolean>;
|
289
302
|
required: false;
|
@@ -341,6 +354,7 @@ declare const _default: {
|
|
341
354
|
"v-model"?: string[];
|
342
355
|
modelValue?: string[];
|
343
356
|
"onUpdate:modelValue"?: (value: string[]) => any;
|
357
|
+
loading?: boolean;
|
344
358
|
hover?: boolean;
|
345
359
|
items?: any[];
|
346
360
|
returnObject?: 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.50-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.50-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|