@omnia/fx 8.0.76-vnext → 8.0.77-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/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +9 -1
- package/internal-do-not-import-from-here/ux/models/index.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/multilingualinput/IMultilingualInput.d.ts +1 -14
- package/internal-do-not-import-from-here/ux/multilingualinput/MultilingualInput.d.ts +660 -81
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +50 -2
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +19 -12
- package/internal-do-not-import-from-here/ux/oxide/tooltip/Tooltip.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/urlinput/IUrlInput.d.ts +14 -1
- package/internal-do-not-import-from-here/ux/urlinput/UrlInput.d.ts +0 -193
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -2
- package/package.json +2 -2
@@ -87,8 +87,8 @@ declare const _default: {
|
|
87
87
|
readonly itemTitle?: any;
|
88
88
|
readonly itemValue?: any;
|
89
89
|
readonly returnObject?: boolean;
|
90
|
-
readonly toned?: boolean;
|
91
90
|
readonly clearable?: boolean;
|
91
|
+
readonly toned?: boolean;
|
92
92
|
"onClick:button"?: (value: any) => any;
|
93
93
|
readonly searchable?: boolean;
|
94
94
|
};
|
@@ -419,8 +419,8 @@ declare const _default: {
|
|
419
419
|
itemTitle?: any;
|
420
420
|
itemValue?: any;
|
421
421
|
returnObject?: boolean;
|
422
|
-
toned?: boolean;
|
423
422
|
clearable?: boolean;
|
423
|
+
toned?: boolean;
|
424
424
|
searchable?: boolean;
|
425
425
|
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
426
426
|
"onUpdate:modelValue"?: (value: any) => any;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { VTextAreaSlots } from "../../ComponentTypings";
|
1
2
|
declare const _default: {
|
2
3
|
new (...args: any[]): {
|
3
4
|
$: import("vue").ComponentInternalInstance;
|
@@ -53,7 +54,13 @@ declare const _default: {
|
|
53
54
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
54
55
|
[key: string]: any;
|
55
56
|
}>) => void)[];
|
57
|
+
readonly disabled?: boolean;
|
58
|
+
readonly errorMessages?: string | string[];
|
59
|
+
readonly "v-slots"?: {
|
60
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
61
|
+
} & VTextAreaSlots;
|
56
62
|
readonly modelValue?: string;
|
63
|
+
"onUpdate:focused"?: (value: boolean) => any;
|
57
64
|
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
58
65
|
readonly "v-model"?: string;
|
59
66
|
readonly clearable?: boolean;
|
@@ -70,9 +77,16 @@ declare const _default: {
|
|
70
77
|
}>;
|
71
78
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
72
79
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
73
|
-
$emit: ((event: "update:modelValue", value: string) => void) & ((event: "click:button") => void);
|
80
|
+
$emit: ((event: "update:modelValue", value: string) => void) & ((event: "update:focused", value: boolean) => void) & ((event: "click:button") => void);
|
74
81
|
$el: any;
|
75
82
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
83
|
+
disabled: {
|
84
|
+
type: import("vue").PropType<boolean>;
|
85
|
+
required: false;
|
86
|
+
};
|
87
|
+
errorMessages: {
|
88
|
+
type: import("vue").PropType<string | string[]>;
|
89
|
+
};
|
76
90
|
clearable: {
|
77
91
|
type: import("vue").PropType<boolean>;
|
78
92
|
};
|
@@ -90,6 +104,9 @@ declare const _default: {
|
|
90
104
|
type: import("vue").PropType<string>;
|
91
105
|
required: false;
|
92
106
|
};
|
107
|
+
"v-slots": import("vue").Prop<{
|
108
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
109
|
+
} & VTextAreaSlots>;
|
93
110
|
class: {
|
94
111
|
type: import("vue").PropType<String | String[]>;
|
95
112
|
required: boolean;
|
@@ -100,9 +117,11 @@ declare const _default: {
|
|
100
117
|
blueprintType?: any;
|
101
118
|
blueprint?: any;
|
102
119
|
}>> & {
|
120
|
+
"onUpdate:focused"?: (value: boolean) => any;
|
103
121
|
"onUpdate:modelValue"?: (value: string) => any;
|
104
122
|
"onClick:button"?: () => any;
|
105
123
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
124
|
+
"update:focused": (value: boolean) => true;
|
106
125
|
"update:modelValue": (value: string) => true;
|
107
126
|
"click:button": () => true;
|
108
127
|
}, string, {
|
@@ -132,6 +151,13 @@ declare const _default: {
|
|
132
151
|
$nextTick: typeof import("vue").nextTick;
|
133
152
|
$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;
|
134
153
|
} & Readonly<import("vue").ExtractPropTypes<{
|
154
|
+
disabled: {
|
155
|
+
type: import("vue").PropType<boolean>;
|
156
|
+
required: false;
|
157
|
+
};
|
158
|
+
errorMessages: {
|
159
|
+
type: import("vue").PropType<string | string[]>;
|
160
|
+
};
|
135
161
|
clearable: {
|
136
162
|
type: import("vue").PropType<boolean>;
|
137
163
|
};
|
@@ -149,6 +175,9 @@ declare const _default: {
|
|
149
175
|
type: import("vue").PropType<string>;
|
150
176
|
required: false;
|
151
177
|
};
|
178
|
+
"v-slots": import("vue").Prop<{
|
179
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
180
|
+
} & VTextAreaSlots>;
|
152
181
|
class: {
|
153
182
|
type: import("vue").PropType<String | String[]>;
|
154
183
|
required: boolean;
|
@@ -159,6 +188,7 @@ declare const _default: {
|
|
159
188
|
blueprintType?: any;
|
160
189
|
blueprint?: any;
|
161
190
|
}>> & {
|
191
|
+
"onUpdate:focused"?: (value: boolean) => any;
|
162
192
|
"onUpdate:modelValue"?: (value: string) => any;
|
163
193
|
"onClick:button"?: () => any;
|
164
194
|
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
@@ -166,6 +196,13 @@ declare const _default: {
|
|
166
196
|
__isTeleport?: never;
|
167
197
|
__isSuspense?: never;
|
168
198
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
199
|
+
disabled: {
|
200
|
+
type: import("vue").PropType<boolean>;
|
201
|
+
required: false;
|
202
|
+
};
|
203
|
+
errorMessages: {
|
204
|
+
type: import("vue").PropType<string | string[]>;
|
205
|
+
};
|
169
206
|
clearable: {
|
170
207
|
type: import("vue").PropType<boolean>;
|
171
208
|
};
|
@@ -183,6 +220,9 @@ declare const _default: {
|
|
183
220
|
type: import("vue").PropType<string>;
|
184
221
|
required: false;
|
185
222
|
};
|
223
|
+
"v-slots": import("vue").Prop<{
|
224
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
225
|
+
} & VTextAreaSlots>;
|
186
226
|
class: {
|
187
227
|
type: import("vue").PropType<String | String[]>;
|
188
228
|
required: boolean;
|
@@ -193,9 +233,11 @@ declare const _default: {
|
|
193
233
|
blueprintType?: any;
|
194
234
|
blueprint?: any;
|
195
235
|
}>> & {
|
236
|
+
"onUpdate:focused"?: (value: boolean) => any;
|
196
237
|
"onUpdate:modelValue"?: (value: string) => any;
|
197
238
|
"onClick:button"?: () => any;
|
198
239
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
240
|
+
"update:focused": (value: boolean) => true;
|
199
241
|
"update:modelValue": (value: string) => true;
|
200
242
|
"click:button": () => true;
|
201
243
|
}, string, {
|
@@ -214,11 +256,17 @@ declare const _default: {
|
|
214
256
|
} & {
|
215
257
|
label?: string;
|
216
258
|
class?: String | String[];
|
259
|
+
disabled?: boolean;
|
260
|
+
errorMessages?: string | string[];
|
261
|
+
"v-slots"?: {
|
262
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
263
|
+
} & VTextAreaSlots;
|
217
264
|
modelValue?: string;
|
218
265
|
"onUpdate:modelValue"?: (value: string) => any;
|
219
266
|
"v-model"?: string;
|
220
267
|
clearable?: boolean;
|
221
|
-
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
268
|
+
}>, "onUpdate:focused" | "onUpdate:modelValue" | "onClick:button"> & {
|
269
|
+
"onUpdate:focused"?: (value: boolean) => any;
|
222
270
|
"onUpdate:modelValue"?: (value: string) => any;
|
223
271
|
"onClick:button"?: () => any;
|
224
272
|
};
|
@@ -1,9 +1,5 @@
|
|
1
1
|
import { ValidationRule } from "@omnia/fx/ux";
|
2
|
-
import { VNodeChild } from "vue";
|
3
2
|
import { VTextFieldSlots } from "../../ComponentTypings";
|
4
|
-
interface OTextFieldSlots extends VTextFieldSlots {
|
5
|
-
filterMenu?(closeMenuCallback: () => void): VNodeChild;
|
6
|
-
}
|
7
3
|
declare const _default: {
|
8
4
|
new (...args: any[]): {
|
9
5
|
$: import("vue").ComponentInternalInstance;
|
@@ -62,9 +58,10 @@ declare const _default: {
|
|
62
58
|
}>) => void)[];
|
63
59
|
readonly disabled?: boolean;
|
64
60
|
readonly placeholder?: string;
|
61
|
+
readonly errorMessages?: string | string[];
|
65
62
|
readonly "v-slots"?: {
|
66
63
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
67
|
-
} &
|
64
|
+
} & VTextFieldSlots;
|
68
65
|
readonly variant?: "search" | "link" | "default" | "media" | "find-slim";
|
69
66
|
readonly loading?: boolean;
|
70
67
|
readonly modelValue?: string | number;
|
@@ -72,10 +69,10 @@ declare const _default: {
|
|
72
69
|
readonly rules?: ValidationRule[];
|
73
70
|
"onUpdate:modelValue"?: ((value: string | number) => any) & ((value: string) => any);
|
74
71
|
readonly "v-model"?: string | number;
|
75
|
-
readonly toned?: boolean;
|
76
|
-
"onClick:clear"?: () => any;
|
77
72
|
readonly clearable?: boolean;
|
73
|
+
"onClick:clear"?: () => any;
|
78
74
|
readonly autofocus?: boolean;
|
75
|
+
readonly toned?: boolean;
|
79
76
|
onDoc$?: (description?: string) => any;
|
80
77
|
"onClick:button"?: () => any;
|
81
78
|
};
|
@@ -93,6 +90,9 @@ declare const _default: {
|
|
93
90
|
$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);
|
94
91
|
$el: any;
|
95
92
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
93
|
+
errorMessages: {
|
94
|
+
type: import("vue").PropType<string | string[]>;
|
95
|
+
};
|
96
96
|
disabled: {
|
97
97
|
type: import("vue").PropType<boolean>;
|
98
98
|
required: false;
|
@@ -141,7 +141,7 @@ declare const _default: {
|
|
141
141
|
};
|
142
142
|
"v-slots": import("vue").Prop<{
|
143
143
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
144
|
-
} &
|
144
|
+
} & VTextFieldSlots>;
|
145
145
|
class: {
|
146
146
|
type: import("vue").PropType<String | String[]>;
|
147
147
|
required: boolean;
|
@@ -192,6 +192,9 @@ declare const _default: {
|
|
192
192
|
$nextTick: typeof import("vue").nextTick;
|
193
193
|
$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
194
|
} & Readonly<import("vue").ExtractPropTypes<{
|
195
|
+
errorMessages: {
|
196
|
+
type: import("vue").PropType<string | string[]>;
|
197
|
+
};
|
195
198
|
disabled: {
|
196
199
|
type: import("vue").PropType<boolean>;
|
197
200
|
required: false;
|
@@ -240,7 +243,7 @@ declare const _default: {
|
|
240
243
|
};
|
241
244
|
"v-slots": import("vue").Prop<{
|
242
245
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
243
|
-
} &
|
246
|
+
} & VTextFieldSlots>;
|
244
247
|
class: {
|
245
248
|
type: import("vue").PropType<String | String[]>;
|
246
249
|
required: boolean;
|
@@ -261,6 +264,9 @@ declare const _default: {
|
|
261
264
|
__isTeleport?: never;
|
262
265
|
__isSuspense?: never;
|
263
266
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
267
|
+
errorMessages: {
|
268
|
+
type: import("vue").PropType<string | string[]>;
|
269
|
+
};
|
264
270
|
disabled: {
|
265
271
|
type: import("vue").PropType<boolean>;
|
266
272
|
required: false;
|
@@ -309,7 +315,7 @@ declare const _default: {
|
|
309
315
|
};
|
310
316
|
"v-slots": import("vue").Prop<{
|
311
317
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
312
|
-
} &
|
318
|
+
} & VTextFieldSlots>;
|
313
319
|
class: {
|
314
320
|
type: import("vue").PropType<String | String[]>;
|
315
321
|
required: boolean;
|
@@ -352,18 +358,19 @@ declare const _default: {
|
|
352
358
|
type?: "number" | "text" | "password";
|
353
359
|
disabled?: boolean;
|
354
360
|
placeholder?: string;
|
361
|
+
errorMessages?: string | string[];
|
355
362
|
"v-slots"?: {
|
356
363
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
357
|
-
} &
|
364
|
+
} & VTextFieldSlots;
|
358
365
|
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
359
366
|
loading?: boolean;
|
360
367
|
modelValue?: string | number;
|
361
368
|
rules?: ValidationRule[];
|
362
369
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
363
370
|
"v-model"?: string | number;
|
364
|
-
toned?: boolean;
|
365
371
|
clearable?: boolean;
|
366
372
|
autofocus?: boolean;
|
373
|
+
toned?: boolean;
|
367
374
|
}>, "onUpdate:focused" | "onUpdate:modelValue" | "onClick:clear" | "onDoc$" | "onClick:button"> & {
|
368
375
|
"onUpdate:focused"?: (value: boolean) => any;
|
369
376
|
"onUpdate:modelValue"?: (value: string) => any;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { Position } from "@omnia/fx-models";
|
1
2
|
import { VNodeChild } from "vue";
|
2
3
|
declare const _default: {
|
3
4
|
new (...args: any[]): {
|
@@ -54,6 +55,7 @@ declare const _default: {
|
|
54
55
|
} & {
|
55
56
|
activator?: () => VNodeChild;
|
56
57
|
};
|
58
|
+
readonly location?: Position;
|
57
59
|
readonly openOnHover?: boolean;
|
58
60
|
readonly activateOnLength?: number;
|
59
61
|
};
|
@@ -76,6 +78,10 @@ declare const _default: {
|
|
76
78
|
} & {
|
77
79
|
activator?: () => VNodeChild;
|
78
80
|
}>;
|
81
|
+
location: {
|
82
|
+
type: import("vue").PropType<Position>;
|
83
|
+
required: false;
|
84
|
+
};
|
79
85
|
openOnHover: {
|
80
86
|
type: import("vue").PropType<boolean>;
|
81
87
|
};
|
@@ -111,6 +117,10 @@ declare const _default: {
|
|
111
117
|
} & {
|
112
118
|
activator?: () => VNodeChild;
|
113
119
|
}>;
|
120
|
+
location: {
|
121
|
+
type: import("vue").PropType<Position>;
|
122
|
+
required: false;
|
123
|
+
};
|
114
124
|
openOnHover: {
|
115
125
|
type: import("vue").PropType<boolean>;
|
116
126
|
};
|
@@ -130,6 +140,10 @@ declare const _default: {
|
|
130
140
|
} & {
|
131
141
|
activator?: () => VNodeChild;
|
132
142
|
}>;
|
143
|
+
location: {
|
144
|
+
type: import("vue").PropType<Position>;
|
145
|
+
required: false;
|
146
|
+
};
|
133
147
|
openOnHover: {
|
134
148
|
type: import("vue").PropType<boolean>;
|
135
149
|
};
|
@@ -147,6 +161,7 @@ declare const _default: {
|
|
147
161
|
} & {
|
148
162
|
activator?: () => VNodeChild;
|
149
163
|
};
|
164
|
+
location?: Position;
|
150
165
|
openOnHover?: boolean;
|
151
166
|
activateOnLength?: number;
|
152
167
|
}>, never>;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { UrlPropertyValue } from "../../../fx/models";
|
2
|
-
import { IValidator } from "@omnia/fx/ux";
|
2
|
+
import { IValidator, TsxAllowUnknowProperties } from "@omnia/fx/ux";
|
3
3
|
export interface IUrlInputProperties {
|
4
4
|
/**Label */
|
5
5
|
label?: string;
|
@@ -27,3 +27,16 @@ export interface IUrlInput extends IUrlInputProperties {
|
|
27
27
|
onValueChanged: (model: UrlPropertyValue) => void;
|
28
28
|
onBlur?: () => void;
|
29
29
|
}
|
30
|
+
declare global {
|
31
|
+
namespace JSX {
|
32
|
+
interface Element {
|
33
|
+
}
|
34
|
+
interface ElementClass {
|
35
|
+
}
|
36
|
+
interface ElementAttributesProperty {
|
37
|
+
}
|
38
|
+
interface IntrinsicElements {
|
39
|
+
"omfx-url-input-legacy": TsxAllowUnknowProperties<IUrlInput>;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
@@ -1,193 +0,0 @@
|
|
1
|
-
export type UrlType = "default" | "msTeam";
|
2
|
-
declare const _default: {
|
3
|
-
new (...args: any[]): {
|
4
|
-
$: import("vue").ComponentInternalInstance;
|
5
|
-
$data: {};
|
6
|
-
$props: {
|
7
|
-
readonly label?: string;
|
8
|
-
style?: unknown;
|
9
|
-
class?: unknown;
|
10
|
-
readonly type?: UrlType;
|
11
|
-
key?: string | number | symbol;
|
12
|
-
readonly required?: boolean;
|
13
|
-
ref?: import("vue").VNodeRef;
|
14
|
-
ref_for?: boolean;
|
15
|
-
ref_key?: string;
|
16
|
-
onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
17
|
-
[key: string]: any;
|
18
|
-
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
19
|
-
[key: string]: any;
|
20
|
-
}>) => void)[];
|
21
|
-
onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
22
|
-
[key: string]: any;
|
23
|
-
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
24
|
-
[key: string]: any;
|
25
|
-
}>) => void)[];
|
26
|
-
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
27
|
-
[key: string]: any;
|
28
|
-
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
29
|
-
[key: string]: any;
|
30
|
-
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
31
|
-
[key: string]: any;
|
32
|
-
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
33
|
-
[key: string]: any;
|
34
|
-
}>) => void)[];
|
35
|
-
onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
36
|
-
[key: string]: any;
|
37
|
-
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
38
|
-
[key: string]: any;
|
39
|
-
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
40
|
-
[key: string]: any;
|
41
|
-
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
42
|
-
[key: string]: any;
|
43
|
-
}>) => void)[];
|
44
|
-
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
45
|
-
[key: string]: any;
|
46
|
-
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
47
|
-
[key: string]: any;
|
48
|
-
}>) => void)[];
|
49
|
-
onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
50
|
-
[key: string]: any;
|
51
|
-
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
52
|
-
[key: string]: any;
|
53
|
-
}>) => void)[];
|
54
|
-
readonly modelValue: string;
|
55
|
-
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
56
|
-
readonly "v-model": string;
|
57
|
-
};
|
58
|
-
$attrs: {
|
59
|
-
[x: string]: unknown;
|
60
|
-
};
|
61
|
-
$refs: {
|
62
|
-
[x: string]: unknown;
|
63
|
-
};
|
64
|
-
$slots: Readonly<{
|
65
|
-
[name: string]: import("vue").Slot<any>;
|
66
|
-
}>;
|
67
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
68
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
69
|
-
$emit: (event: "update:modelValue", value: string) => void;
|
70
|
-
$el: any;
|
71
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
72
|
-
label: {
|
73
|
-
type: import("vue").PropType<string>;
|
74
|
-
} & {
|
75
|
-
type: import("vue").PropType<string>;
|
76
|
-
};
|
77
|
-
required: {
|
78
|
-
type: import("vue").PropType<boolean>;
|
79
|
-
required: false;
|
80
|
-
};
|
81
|
-
type: {
|
82
|
-
type: import("vue").PropType<UrlType>;
|
83
|
-
required: false;
|
84
|
-
};
|
85
|
-
"onUpdate:modelValue": {
|
86
|
-
type: import("vue").PropType<(value: string) => any>;
|
87
|
-
};
|
88
|
-
"v-model": {
|
89
|
-
type: import("vue").PropType<string>;
|
90
|
-
required: true;
|
91
|
-
};
|
92
|
-
modelValue: {
|
93
|
-
type: import("vue").PropType<string>;
|
94
|
-
required: true;
|
95
|
-
};
|
96
|
-
}>> & {
|
97
|
-
"onUpdate:modelValue"?: (value: string) => any;
|
98
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
99
|
-
"update:modelValue": (value: string) => boolean;
|
100
|
-
}, string, {}, {}, string, {}> & {
|
101
|
-
beforeCreate?: (() => void) | (() => void)[];
|
102
|
-
created?: (() => void) | (() => void)[];
|
103
|
-
beforeMount?: (() => void) | (() => void)[];
|
104
|
-
mounted?: (() => void) | (() => void)[];
|
105
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
106
|
-
updated?: (() => void) | (() => void)[];
|
107
|
-
activated?: (() => void) | (() => void)[];
|
108
|
-
deactivated?: (() => void) | (() => void)[];
|
109
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
110
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
111
|
-
destroyed?: (() => void) | (() => void)[];
|
112
|
-
unmounted?: (() => void) | (() => void)[];
|
113
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
114
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
115
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
116
|
-
};
|
117
|
-
$forceUpdate: () => void;
|
118
|
-
$nextTick: typeof import("vue").nextTick;
|
119
|
-
$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;
|
120
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
121
|
-
label: {
|
122
|
-
type: import("vue").PropType<string>;
|
123
|
-
} & {
|
124
|
-
type: import("vue").PropType<string>;
|
125
|
-
};
|
126
|
-
required: {
|
127
|
-
type: import("vue").PropType<boolean>;
|
128
|
-
required: false;
|
129
|
-
};
|
130
|
-
type: {
|
131
|
-
type: import("vue").PropType<UrlType>;
|
132
|
-
required: false;
|
133
|
-
};
|
134
|
-
"onUpdate:modelValue": {
|
135
|
-
type: import("vue").PropType<(value: string) => any>;
|
136
|
-
};
|
137
|
-
"v-model": {
|
138
|
-
type: import("vue").PropType<string>;
|
139
|
-
required: true;
|
140
|
-
};
|
141
|
-
modelValue: {
|
142
|
-
type: import("vue").PropType<string>;
|
143
|
-
required: true;
|
144
|
-
};
|
145
|
-
}>> & {
|
146
|
-
"onUpdate:modelValue"?: (value: string) => any;
|
147
|
-
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
148
|
-
__isFragment?: never;
|
149
|
-
__isTeleport?: never;
|
150
|
-
__isSuspense?: never;
|
151
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
152
|
-
label: {
|
153
|
-
type: import("vue").PropType<string>;
|
154
|
-
} & {
|
155
|
-
type: import("vue").PropType<string>;
|
156
|
-
};
|
157
|
-
required: {
|
158
|
-
type: import("vue").PropType<boolean>;
|
159
|
-
required: false;
|
160
|
-
};
|
161
|
-
type: {
|
162
|
-
type: import("vue").PropType<UrlType>;
|
163
|
-
required: false;
|
164
|
-
};
|
165
|
-
"onUpdate:modelValue": {
|
166
|
-
type: import("vue").PropType<(value: string) => any>;
|
167
|
-
};
|
168
|
-
"v-model": {
|
169
|
-
type: import("vue").PropType<string>;
|
170
|
-
required: true;
|
171
|
-
};
|
172
|
-
modelValue: {
|
173
|
-
type: import("vue").PropType<string>;
|
174
|
-
required: true;
|
175
|
-
};
|
176
|
-
}>> & {
|
177
|
-
"onUpdate:modelValue"?: (value: string) => any;
|
178
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
179
|
-
"update:modelValue": (value: string) => boolean;
|
180
|
-
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
181
|
-
propsDefinition: Omit<Readonly<{
|
182
|
-
modelValue: string;
|
183
|
-
"v-model": string;
|
184
|
-
} & {
|
185
|
-
label?: string;
|
186
|
-
type?: UrlType;
|
187
|
-
required?: boolean;
|
188
|
-
"onUpdate:modelValue"?: (value: string) => any;
|
189
|
-
}>, "onUpdate:modelValue"> & {
|
190
|
-
"onUpdate:modelValue"?: (value: string) => any;
|
191
|
-
};
|
192
|
-
};
|
193
|
-
export default _default;
|
@@ -42,6 +42,7 @@ import wcf365f5cb3a694c20be7b96423bbc3eca from './ux/magiclink/MagicLink';
|
|
42
42
|
import wc744b3f31e00c4815b63ecaf638ad7a7a from './ux/markdown/MarkdownEditor';
|
43
43
|
import wcc8b990d01ddc45ab930b4409fc406435 from './ux/markdown/MarkdownRenderer';
|
44
44
|
import wc2e8004b49c8d44dd8edb56ce884c2b57 from './ux/monaco/MonacoEditor';
|
45
|
+
import wce95c4611a45548a79e4c3984d8e5228d from './ux/multilingualinput/MultilingualInput';
|
45
46
|
import wc7f06e68f94904b48b827b23acd148bec from './ux/optionpicker/OptionPicker';
|
46
47
|
import wcfb67bd4d1cc24073ab123c822d78ea17 from './ux/permissioninput/PermissionInput';
|
47
48
|
import wc1a58948a606a42078da3fb919cc4f7e6 from './ux/presetupwizard/PreSetupWizard';
|
@@ -63,7 +64,6 @@ import wcbc3b9409639d45829a6e58a4295bc470 from './ux/signin/omnia/Renderer';
|
|
63
64
|
import wcf297290b5ea4409a9738ca880f1ea612 from './ux/signout/SignOut';
|
64
65
|
import wc564bced7081c496483e8df717f600ff3 from './ux/spacingpicker/SpacingPicker3';
|
65
66
|
import wccb83d46eaaed44d4920d4d5da21bc488 from './ux/statusmessageoverlay/StatusMessageOverlay';
|
66
|
-
import wcf13af715395f4e4586306b5372478aaf from './ux/urlinput/UrlInput';
|
67
67
|
import wc21a1f20b3d404602853049c1c8b8da2f from './ux/userpresence/UserPresence';
|
68
68
|
import wc30289e2b58ff48b0aabb3cb3732c3038 from './ux/usertypelayout/UserTypeLayoutRenderer';
|
69
69
|
import wc5b26d2a399c041f3beae9c1115d6e8d8 from './ux/usertypelayout/UserTypeLayoutBladeBuilder';
|
@@ -291,6 +291,7 @@ declare global {
|
|
291
291
|
"omfx-markdown-editor": typeof wc744b3f31e00c4815b63ecaf638ad7a7a.propsDefinition & VueComponentBaseProps;
|
292
292
|
"omfx-markdown-renderer": typeof wcc8b990d01ddc45ab930b4409fc406435.propsDefinition & VueComponentBaseProps;
|
293
293
|
"monaco-editor": typeof wc2e8004b49c8d44dd8edb56ce884c2b57.propsDefinition & VueComponentBaseProps;
|
294
|
+
"omfx-multilingual-input": typeof wce95c4611a45548a79e4c3984d8e5228d.propsDefinition & VueComponentBaseProps;
|
294
295
|
"omfx-option-picker": typeof wc7f06e68f94904b48b827b23acd148bec.propsDefinition & VueComponentBaseProps;
|
295
296
|
"omfx-permission-input": typeof wcfb67bd4d1cc24073ab123c822d78ea17.propsDefinition & VueComponentBaseProps;
|
296
297
|
"omfx-presetup-wizard": typeof wc1a58948a606a42078da3fb919cc4f7e6.propsDefinition & VueComponentBaseProps;
|
@@ -312,7 +313,6 @@ declare global {
|
|
312
313
|
"omfx-signout": typeof wcf297290b5ea4409a9738ca880f1ea612.propsDefinition & VueComponentBaseProps;
|
313
314
|
"omfx-spacing-picker": typeof wc564bced7081c496483e8df717f600ff3.propsDefinition & VueComponentBaseProps;
|
314
315
|
"omfx-status-message-overlay": typeof wccb83d46eaaed44d4920d4d5da21bc488.propsDefinition & VueComponentBaseProps;
|
315
|
-
"omfx-url-input": typeof wcf13af715395f4e4586306b5372478aaf.propsDefinition & VueComponentBaseProps;
|
316
316
|
"omfx-user-presence": typeof wc21a1f20b3d404602853049c1c8b8da2f.propsDefinition & VueComponentBaseProps;
|
317
317
|
"omfx-usertype-layout-renderer": typeof wc30289e2b58ff48b0aabb3cb3732c3038.propsDefinition & VueComponentBaseProps;
|
318
318
|
"omfx-usertype-layout-blade-builder": typeof wc5b26d2a399c041f3beae9c1115d6e8d8.propsDefinition & VueComponentBaseProps;
|
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.77-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.77-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|