@omnia/fx 8.0.43-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.
@@ -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;
|
@@ -77,15 +78,17 @@ declare const _default: {
|
|
77
78
|
$emit: ((event: "update:modelValue", value: string) => void) & ((event: "click:button") => void);
|
78
79
|
$el: any;
|
79
80
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
80
|
-
|
81
|
+
disabled: {
|
81
82
|
type: import("vue").PropType<boolean>;
|
82
|
-
|
83
|
+
required: false;
|
84
|
+
};
|
85
|
+
loading: {
|
83
86
|
type: import("vue").PropType<boolean>;
|
87
|
+
required: false;
|
84
88
|
};
|
85
89
|
toned: {
|
86
90
|
type: import("vue").PropType<Boolean>;
|
87
|
-
|
88
|
-
type: import("vue").PropType<Boolean>;
|
91
|
+
required: false;
|
89
92
|
};
|
90
93
|
type: {
|
91
94
|
type: import("vue").PropType<"number">;
|
@@ -152,15 +155,17 @@ declare const _default: {
|
|
152
155
|
$nextTick: typeof import("vue").nextTick;
|
153
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;
|
154
157
|
} & Readonly<import("vue").ExtractPropTypes<{
|
155
|
-
|
158
|
+
disabled: {
|
156
159
|
type: import("vue").PropType<boolean>;
|
157
|
-
|
160
|
+
required: false;
|
161
|
+
};
|
162
|
+
loading: {
|
158
163
|
type: import("vue").PropType<boolean>;
|
164
|
+
required: false;
|
159
165
|
};
|
160
166
|
toned: {
|
161
167
|
type: import("vue").PropType<Boolean>;
|
162
|
-
|
163
|
-
type: import("vue").PropType<Boolean>;
|
168
|
+
required: false;
|
164
169
|
};
|
165
170
|
type: {
|
166
171
|
type: import("vue").PropType<"number">;
|
@@ -202,15 +207,17 @@ declare const _default: {
|
|
202
207
|
__isTeleport?: never;
|
203
208
|
__isSuspense?: never;
|
204
209
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
205
|
-
|
210
|
+
disabled: {
|
206
211
|
type: import("vue").PropType<boolean>;
|
207
|
-
|
212
|
+
required: false;
|
213
|
+
};
|
214
|
+
loading: {
|
208
215
|
type: import("vue").PropType<boolean>;
|
216
|
+
required: false;
|
209
217
|
};
|
210
218
|
toned: {
|
211
219
|
type: import("vue").PropType<Boolean>;
|
212
|
-
|
213
|
-
type: import("vue").PropType<Boolean>;
|
220
|
+
required: false;
|
214
221
|
};
|
215
222
|
type: {
|
216
223
|
type: import("vue").PropType<"number">;
|
@@ -267,6 +274,7 @@ declare const _default: {
|
|
267
274
|
label?: string;
|
268
275
|
class?: String | String[];
|
269
276
|
type?: "number";
|
277
|
+
disabled?: boolean;
|
270
278
|
toned?: Boolean;
|
271
279
|
"v-model"?: string;
|
272
280
|
modelValue?: string;
|
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",
|