@omnia/fx 8.0.45-vnext → 8.0.47-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/ux/identitypicker/IdentityPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +283 -71
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +353 -86
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +369 -93
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +13 -9
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.css.d.ts +20 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +14 -0
- package/package.json +2 -2
@@ -54,6 +54,7 @@ declare const _default: {
|
|
54
54
|
}>) => void)[];
|
55
55
|
readonly closable?: boolean;
|
56
56
|
"onClick:close"?: () => any;
|
57
|
+
readonly gradient?: boolean;
|
57
58
|
};
|
58
59
|
$attrs: {
|
59
60
|
[x: string]: unknown;
|
@@ -89,6 +90,9 @@ declare const _default: {
|
|
89
90
|
color: {
|
90
91
|
type: import("vue").PropType<string>;
|
91
92
|
};
|
93
|
+
gradient: {
|
94
|
+
type: import("vue").PropType<boolean>;
|
95
|
+
};
|
92
96
|
}>> & {
|
93
97
|
"onClick:close"?: () => any;
|
94
98
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
@@ -134,6 +138,9 @@ declare const _default: {
|
|
134
138
|
color: {
|
135
139
|
type: import("vue").PropType<string>;
|
136
140
|
};
|
141
|
+
gradient: {
|
142
|
+
type: import("vue").PropType<boolean>;
|
143
|
+
};
|
137
144
|
}>> & {
|
138
145
|
"onClick:close"?: () => any;
|
139
146
|
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
@@ -161,6 +168,9 @@ declare const _default: {
|
|
161
168
|
color: {
|
162
169
|
type: import("vue").PropType<string>;
|
163
170
|
};
|
171
|
+
gradient: {
|
172
|
+
type: import("vue").PropType<boolean>;
|
173
|
+
};
|
164
174
|
}>> & {
|
165
175
|
"onClick:close"?: () => any;
|
166
176
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
@@ -173,6 +183,7 @@ declare const _default: {
|
|
173
183
|
size?: "small" | "default" | "large" | "x-large" | "x-small";
|
174
184
|
disabled?: boolean;
|
175
185
|
closable?: boolean;
|
186
|
+
gradient?: boolean;
|
176
187
|
}>, "onClick:close"> & {
|
177
188
|
"onClick:close"?: () => any;
|
178
189
|
};
|
@@ -68,8 +68,8 @@ declare const _default: {
|
|
68
68
|
readonly activator?: string;
|
69
69
|
readonly closeDelay?: string | number;
|
70
70
|
readonly openOnHover?: boolean;
|
71
|
-
readonly visibleOnContentClick?: boolean;
|
72
71
|
onDoc$?: (description?: string) => any;
|
72
|
+
readonly visibleOnContentClick?: boolean;
|
73
73
|
};
|
74
74
|
$attrs: {
|
75
75
|
[x: string]: unknown;
|
@@ -83,6 +83,7 @@ declare const _default: {
|
|
83
83
|
readonly variant?: "default" | "add" | "picker";
|
84
84
|
readonly loading?: boolean;
|
85
85
|
readonly items?: any;
|
86
|
+
readonly returnObject?: boolean;
|
86
87
|
readonly clearable?: boolean;
|
87
88
|
readonly itemTitle?: any;
|
88
89
|
readonly itemValue?: any;
|
@@ -137,6 +138,10 @@ declare const _default: {
|
|
137
138
|
clearable: {
|
138
139
|
type: import("vue").PropType<boolean>;
|
139
140
|
};
|
141
|
+
returnObject: {
|
142
|
+
type: import("vue").PropType<boolean>;
|
143
|
+
required: false;
|
144
|
+
};
|
140
145
|
variant: {
|
141
146
|
type: import("vue").PropType<"default" | "add" | "picker">;
|
142
147
|
};
|
@@ -239,6 +244,10 @@ declare const _default: {
|
|
239
244
|
clearable: {
|
240
245
|
type: import("vue").PropType<boolean>;
|
241
246
|
};
|
247
|
+
returnObject: {
|
248
|
+
type: import("vue").PropType<boolean>;
|
249
|
+
required: false;
|
250
|
+
};
|
242
251
|
variant: {
|
243
252
|
type: import("vue").PropType<"default" | "add" | "picker">;
|
244
253
|
};
|
@@ -316,6 +325,10 @@ declare const _default: {
|
|
316
325
|
clearable: {
|
317
326
|
type: import("vue").PropType<boolean>;
|
318
327
|
};
|
328
|
+
returnObject: {
|
329
|
+
type: import("vue").PropType<boolean>;
|
330
|
+
required: false;
|
331
|
+
};
|
319
332
|
variant: {
|
320
333
|
type: import("vue").PropType<"default" | "add" | "picker">;
|
321
334
|
};
|
@@ -389,6 +402,7 @@ declare const _default: {
|
|
389
402
|
variant?: "default" | "add" | "picker";
|
390
403
|
loading?: boolean;
|
391
404
|
items?: any;
|
405
|
+
returnObject?: boolean;
|
392
406
|
clearable?: boolean;
|
393
407
|
itemTitle?: any;
|
394
408
|
itemValue?: 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.47-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.47-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|