@omnia/fx 8.0.39-dev → 8.0.40-dev
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.
@@ -25,7 +25,17 @@ declare const _default: {
|
|
25
25
|
readonly "v-model"?: string[] | MaybeComputedRef<boolean>;
|
26
26
|
readonly modelValue?: string[] | MaybeComputedRef<boolean>;
|
27
27
|
readonly rules?: ValidationRule[];
|
28
|
+
readonly hint?: string;
|
29
|
+
readonly persistentHint?: boolean;
|
28
30
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
31
|
+
persistentHint: {
|
32
|
+
type: import("vue").PropType<boolean>;
|
33
|
+
required: false;
|
34
|
+
};
|
35
|
+
hint: {
|
36
|
+
type: import("vue").PropType<string>;
|
37
|
+
required: false;
|
38
|
+
};
|
29
39
|
disabled: {
|
30
40
|
type: import("vue").PropType<boolean>;
|
31
41
|
};
|
@@ -76,6 +86,14 @@ declare const _default: {
|
|
76
86
|
$emit: (event: "update:modelValue", value: any) => void;
|
77
87
|
$el: any;
|
78
88
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
89
|
+
persistentHint: {
|
90
|
+
type: import("vue").PropType<boolean>;
|
91
|
+
required: false;
|
92
|
+
};
|
93
|
+
hint: {
|
94
|
+
type: import("vue").PropType<string>;
|
95
|
+
required: false;
|
96
|
+
};
|
79
97
|
disabled: {
|
80
98
|
type: import("vue").PropType<boolean>;
|
81
99
|
};
|
@@ -140,6 +158,14 @@ declare const _default: {
|
|
140
158
|
$nextTick: typeof import("vue").nextTick;
|
141
159
|
$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;
|
142
160
|
} & Readonly<import("vue").ExtractPropTypes<{
|
161
|
+
persistentHint: {
|
162
|
+
type: import("vue").PropType<boolean>;
|
163
|
+
required: false;
|
164
|
+
};
|
165
|
+
hint: {
|
166
|
+
type: import("vue").PropType<string>;
|
167
|
+
required: false;
|
168
|
+
};
|
143
169
|
disabled: {
|
144
170
|
type: import("vue").PropType<boolean>;
|
145
171
|
};
|
@@ -180,6 +206,14 @@ declare const _default: {
|
|
180
206
|
__isTeleport?: never;
|
181
207
|
__isSuspense?: never;
|
182
208
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
209
|
+
persistentHint: {
|
210
|
+
type: import("vue").PropType<boolean>;
|
211
|
+
required: false;
|
212
|
+
};
|
213
|
+
hint: {
|
214
|
+
type: import("vue").PropType<string>;
|
215
|
+
required: false;
|
216
|
+
};
|
183
217
|
disabled: {
|
184
218
|
type: import("vue").PropType<boolean>;
|
185
219
|
};
|
@@ -239,6 +273,8 @@ declare const _default: {
|
|
239
273
|
"v-model"?: string[] | MaybeComputedRef<boolean>;
|
240
274
|
modelValue?: string[] | MaybeComputedRef<boolean>;
|
241
275
|
rules?: ValidationRule[];
|
276
|
+
hint?: string;
|
277
|
+
persistentHint?: boolean;
|
242
278
|
}>, "onUpdate:modelValue"> & {
|
243
279
|
"onUpdate:modelValue"?: (value: any) => any;
|
244
280
|
};
|
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.40-dev",
|
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.40-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|