@omnia/fx 8.0.45-vnext → 8.0.46-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/oxide/menu/Menu.d.ts +1 -1
- package/package.json +2 -2
@@ -56,23 +56,26 @@ declare const _default: {
|
|
56
56
|
[key: string]: any;
|
57
57
|
}>) => void)[];
|
58
58
|
readonly description?: string;
|
59
|
-
readonly
|
59
|
+
readonly "v-model"?: Identity[];
|
60
|
+
readonly modelValue?: Identity[];
|
61
|
+
"onUpdate:modelValue"?: ((value: Identity[]) => any) & ((value: Identity[]) => any);
|
60
62
|
readonly singleLine?: boolean;
|
61
63
|
readonly ariaInvalid?: boolean;
|
62
64
|
readonly ariaDescribedby?: string;
|
63
65
|
readonly providerIds?: GuidValue[];
|
64
|
-
readonly
|
65
|
-
readonly isKeepMenuOpen?: (value: Boolean) => void;
|
66
|
-
readonly attachToParent?: boolean;
|
66
|
+
readonly "provider-ids"?: GuidValue[];
|
67
67
|
readonly keepSelectionMenu?: boolean;
|
68
68
|
readonly showCurrentUserOption?: boolean;
|
69
|
+
readonly autoOpenSelection?: boolean;
|
69
70
|
readonly disabledIdentities?: Identity[];
|
70
71
|
readonly blockedIdentities?: Identity[];
|
71
|
-
readonly onMenuToggle?: (
|
72
|
+
readonly onMenuToggle?: (value: boolean) => void;
|
73
|
+
readonly "on-menu-toggle"?: (value: boolean) => void;
|
72
74
|
readonly hideTab?: boolean;
|
73
75
|
readonly hideGroupTypeSelection?: boolean;
|
74
76
|
readonly hideUserTypeSelection?: boolean;
|
75
77
|
readonly hideDynamicGroupSelection?: boolean;
|
78
|
+
onDoc$?: (description?: string) => any;
|
76
79
|
readonly showSelectedIdentities?: boolean;
|
77
80
|
};
|
78
81
|
$attrs: {
|
@@ -86,36 +89,127 @@ declare const _default: {
|
|
86
89
|
}>;
|
87
90
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
88
91
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
89
|
-
$emit: (event: string,
|
92
|
+
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: Identity[]) => void);
|
90
93
|
$el: any;
|
91
94
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
onMenuToggle:
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
95
|
+
hideDynamicGroupSelection: {
|
96
|
+
type: import("vue").PropType<boolean>;
|
97
|
+
required: false;
|
98
|
+
};
|
99
|
+
hideUserTypeSelection: {
|
100
|
+
type: import("vue").PropType<boolean>;
|
101
|
+
required: false;
|
102
|
+
};
|
103
|
+
hideGroupTypeSelection: {
|
104
|
+
type: import("vue").PropType<boolean>;
|
105
|
+
required: false;
|
106
|
+
};
|
107
|
+
hideTab: {
|
108
|
+
type: import("vue").PropType<boolean>;
|
109
|
+
required: false;
|
110
|
+
};
|
111
|
+
"on-menu-toggle": {
|
112
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
113
|
+
};
|
114
|
+
onMenuToggle: {
|
115
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
116
|
+
};
|
117
|
+
filter: {
|
118
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
119
|
+
} & {
|
120
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
121
|
+
};
|
122
|
+
blockedIdentities: {
|
123
|
+
type: import("vue").PropType<Identity[]>;
|
124
|
+
required: false;
|
125
|
+
};
|
126
|
+
disabledIdentities: {
|
127
|
+
type: import("vue").PropType<Identity[]>;
|
128
|
+
required: false;
|
129
|
+
};
|
130
|
+
autoOpenSelection: {
|
131
|
+
type: import("vue").PropType<boolean>;
|
132
|
+
required: false;
|
133
|
+
};
|
134
|
+
showCurrentUserOption: {
|
135
|
+
type: import("vue").PropType<boolean>;
|
136
|
+
required: false;
|
137
|
+
};
|
138
|
+
ariaInvalid: {
|
139
|
+
type: import("vue").PropType<boolean>;
|
140
|
+
required: false;
|
141
|
+
};
|
142
|
+
ariaDescribedby: {
|
143
|
+
type: import("vue").PropType<string>;
|
144
|
+
required: false;
|
145
|
+
};
|
146
|
+
singleLine: {
|
147
|
+
type: import("vue").PropType<boolean>;
|
148
|
+
required: false;
|
149
|
+
};
|
150
|
+
top: {
|
151
|
+
type: import("vue").PropType<boolean>;
|
152
|
+
required: false;
|
153
|
+
};
|
154
|
+
keepSelectionMenu: {
|
155
|
+
type: import("vue").PropType<boolean>;
|
156
|
+
required: false;
|
157
|
+
};
|
158
|
+
showSelectedIdentities: {
|
159
|
+
type: import("vue").PropType<boolean>;
|
160
|
+
required: false;
|
161
|
+
};
|
162
|
+
disabled: {
|
163
|
+
type: import("vue").PropType<boolean>;
|
164
|
+
required: false;
|
165
|
+
};
|
166
|
+
required: {
|
167
|
+
type: import("vue").PropType<boolean>;
|
168
|
+
required: false;
|
169
|
+
};
|
170
|
+
multiple: {
|
171
|
+
type: import("vue").PropType<boolean>;
|
172
|
+
required: false;
|
173
|
+
};
|
174
|
+
description: {
|
175
|
+
type: import("vue").PropType<string>;
|
176
|
+
required: false;
|
177
|
+
};
|
178
|
+
label: {
|
179
|
+
type: import("vue").PropType<string>;
|
180
|
+
required: false;
|
181
|
+
};
|
182
|
+
"provider-ids": {
|
183
|
+
type: import("vue").PropType<GuidValue[]>;
|
184
|
+
};
|
185
|
+
providerIds: {
|
186
|
+
type: import("vue").PropType<GuidValue[]>;
|
187
|
+
};
|
188
|
+
type: {
|
189
|
+
type: import("vue").PropType<PrincipalTypes>;
|
190
|
+
} & {
|
191
|
+
type: import("vue").PropType<PrincipalTypes>;
|
192
|
+
};
|
193
|
+
"onUpdate:modelValue": {
|
194
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
195
|
+
};
|
196
|
+
"v-model": {
|
197
|
+
type: import("vue").PropType<Identity[]>;
|
198
|
+
required: false;
|
199
|
+
};
|
200
|
+
modelValue: {
|
201
|
+
type: import("vue").PropType<Identity[]>;
|
202
|
+
required: false;
|
203
|
+
};
|
204
|
+
}>> & {
|
205
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
206
|
+
onDoc$?: (description?: string) => any;
|
207
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
208
|
+
"update:modelValue": (value: Identity[]) => true;
|
209
|
+
doc$(description?: string): {
|
210
|
+
"update:modelValue": (value: Identity[]) => true;
|
211
|
+
};
|
212
|
+
}, string, {}, {}, string, {}> & {
|
119
213
|
beforeCreate?: (() => void) | (() => void)[];
|
120
214
|
created?: (() => void) | (() => void)[];
|
121
215
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -136,64 +230,241 @@ declare const _default: {
|
|
136
230
|
$nextTick: typeof import("vue").nextTick;
|
137
231
|
$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;
|
138
232
|
} & Readonly<import("vue").ExtractPropTypes<{
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
onMenuToggle:
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
233
|
+
hideDynamicGroupSelection: {
|
234
|
+
type: import("vue").PropType<boolean>;
|
235
|
+
required: false;
|
236
|
+
};
|
237
|
+
hideUserTypeSelection: {
|
238
|
+
type: import("vue").PropType<boolean>;
|
239
|
+
required: false;
|
240
|
+
};
|
241
|
+
hideGroupTypeSelection: {
|
242
|
+
type: import("vue").PropType<boolean>;
|
243
|
+
required: false;
|
244
|
+
};
|
245
|
+
hideTab: {
|
246
|
+
type: import("vue").PropType<boolean>;
|
247
|
+
required: false;
|
248
|
+
};
|
249
|
+
"on-menu-toggle": {
|
250
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
251
|
+
};
|
252
|
+
onMenuToggle: {
|
253
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
254
|
+
};
|
255
|
+
filter: {
|
256
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
257
|
+
} & {
|
258
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
259
|
+
};
|
260
|
+
blockedIdentities: {
|
261
|
+
type: import("vue").PropType<Identity[]>;
|
262
|
+
required: false;
|
263
|
+
};
|
264
|
+
disabledIdentities: {
|
265
|
+
type: import("vue").PropType<Identity[]>;
|
266
|
+
required: false;
|
267
|
+
};
|
268
|
+
autoOpenSelection: {
|
269
|
+
type: import("vue").PropType<boolean>;
|
270
|
+
required: false;
|
271
|
+
};
|
272
|
+
showCurrentUserOption: {
|
273
|
+
type: import("vue").PropType<boolean>;
|
274
|
+
required: false;
|
275
|
+
};
|
276
|
+
ariaInvalid: {
|
277
|
+
type: import("vue").PropType<boolean>;
|
278
|
+
required: false;
|
279
|
+
};
|
280
|
+
ariaDescribedby: {
|
281
|
+
type: import("vue").PropType<string>;
|
282
|
+
required: false;
|
283
|
+
};
|
284
|
+
singleLine: {
|
285
|
+
type: import("vue").PropType<boolean>;
|
286
|
+
required: false;
|
287
|
+
};
|
288
|
+
top: {
|
289
|
+
type: import("vue").PropType<boolean>;
|
290
|
+
required: false;
|
291
|
+
};
|
292
|
+
keepSelectionMenu: {
|
293
|
+
type: import("vue").PropType<boolean>;
|
294
|
+
required: false;
|
295
|
+
};
|
296
|
+
showSelectedIdentities: {
|
297
|
+
type: import("vue").PropType<boolean>;
|
298
|
+
required: false;
|
299
|
+
};
|
300
|
+
disabled: {
|
301
|
+
type: import("vue").PropType<boolean>;
|
302
|
+
required: false;
|
303
|
+
};
|
304
|
+
required: {
|
305
|
+
type: import("vue").PropType<boolean>;
|
306
|
+
required: false;
|
307
|
+
};
|
308
|
+
multiple: {
|
309
|
+
type: import("vue").PropType<boolean>;
|
310
|
+
required: false;
|
311
|
+
};
|
312
|
+
description: {
|
313
|
+
type: import("vue").PropType<string>;
|
314
|
+
required: false;
|
315
|
+
};
|
316
|
+
label: {
|
317
|
+
type: import("vue").PropType<string>;
|
318
|
+
required: false;
|
319
|
+
};
|
320
|
+
"provider-ids": {
|
321
|
+
type: import("vue").PropType<GuidValue[]>;
|
322
|
+
};
|
323
|
+
providerIds: {
|
324
|
+
type: import("vue").PropType<GuidValue[]>;
|
325
|
+
};
|
326
|
+
type: {
|
327
|
+
type: import("vue").PropType<PrincipalTypes>;
|
328
|
+
} & {
|
329
|
+
type: import("vue").PropType<PrincipalTypes>;
|
330
|
+
};
|
331
|
+
"onUpdate:modelValue": {
|
332
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
333
|
+
};
|
334
|
+
"v-model": {
|
335
|
+
type: import("vue").PropType<Identity[]>;
|
336
|
+
required: false;
|
337
|
+
};
|
338
|
+
modelValue: {
|
339
|
+
type: import("vue").PropType<Identity[]>;
|
340
|
+
required: false;
|
341
|
+
};
|
342
|
+
}>> & {
|
343
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
344
|
+
onDoc$?: (description?: string) => any;
|
345
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
166
346
|
__isFragment?: never;
|
167
347
|
__isTeleport?: never;
|
168
348
|
__isSuspense?: never;
|
169
349
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
onMenuToggle:
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
}
|
350
|
+
hideDynamicGroupSelection: {
|
351
|
+
type: import("vue").PropType<boolean>;
|
352
|
+
required: false;
|
353
|
+
};
|
354
|
+
hideUserTypeSelection: {
|
355
|
+
type: import("vue").PropType<boolean>;
|
356
|
+
required: false;
|
357
|
+
};
|
358
|
+
hideGroupTypeSelection: {
|
359
|
+
type: import("vue").PropType<boolean>;
|
360
|
+
required: false;
|
361
|
+
};
|
362
|
+
hideTab: {
|
363
|
+
type: import("vue").PropType<boolean>;
|
364
|
+
required: false;
|
365
|
+
};
|
366
|
+
"on-menu-toggle": {
|
367
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
368
|
+
};
|
369
|
+
onMenuToggle: {
|
370
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
371
|
+
};
|
372
|
+
filter: {
|
373
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
374
|
+
} & {
|
375
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
376
|
+
};
|
377
|
+
blockedIdentities: {
|
378
|
+
type: import("vue").PropType<Identity[]>;
|
379
|
+
required: false;
|
380
|
+
};
|
381
|
+
disabledIdentities: {
|
382
|
+
type: import("vue").PropType<Identity[]>;
|
383
|
+
required: false;
|
384
|
+
};
|
385
|
+
autoOpenSelection: {
|
386
|
+
type: import("vue").PropType<boolean>;
|
387
|
+
required: false;
|
388
|
+
};
|
389
|
+
showCurrentUserOption: {
|
390
|
+
type: import("vue").PropType<boolean>;
|
391
|
+
required: false;
|
392
|
+
};
|
393
|
+
ariaInvalid: {
|
394
|
+
type: import("vue").PropType<boolean>;
|
395
|
+
required: false;
|
396
|
+
};
|
397
|
+
ariaDescribedby: {
|
398
|
+
type: import("vue").PropType<string>;
|
399
|
+
required: false;
|
400
|
+
};
|
401
|
+
singleLine: {
|
402
|
+
type: import("vue").PropType<boolean>;
|
403
|
+
required: false;
|
404
|
+
};
|
405
|
+
top: {
|
406
|
+
type: import("vue").PropType<boolean>;
|
407
|
+
required: false;
|
408
|
+
};
|
409
|
+
keepSelectionMenu: {
|
410
|
+
type: import("vue").PropType<boolean>;
|
411
|
+
required: false;
|
412
|
+
};
|
413
|
+
showSelectedIdentities: {
|
414
|
+
type: import("vue").PropType<boolean>;
|
415
|
+
required: false;
|
416
|
+
};
|
417
|
+
disabled: {
|
418
|
+
type: import("vue").PropType<boolean>;
|
419
|
+
required: false;
|
420
|
+
};
|
421
|
+
required: {
|
422
|
+
type: import("vue").PropType<boolean>;
|
423
|
+
required: false;
|
424
|
+
};
|
425
|
+
multiple: {
|
426
|
+
type: import("vue").PropType<boolean>;
|
427
|
+
required: false;
|
428
|
+
};
|
429
|
+
description: {
|
430
|
+
type: import("vue").PropType<string>;
|
431
|
+
required: false;
|
432
|
+
};
|
433
|
+
label: {
|
434
|
+
type: import("vue").PropType<string>;
|
435
|
+
required: false;
|
436
|
+
};
|
437
|
+
"provider-ids": {
|
438
|
+
type: import("vue").PropType<GuidValue[]>;
|
439
|
+
};
|
440
|
+
providerIds: {
|
441
|
+
type: import("vue").PropType<GuidValue[]>;
|
442
|
+
};
|
443
|
+
type: {
|
444
|
+
type: import("vue").PropType<PrincipalTypes>;
|
445
|
+
} & {
|
446
|
+
type: import("vue").PropType<PrincipalTypes>;
|
447
|
+
};
|
448
|
+
"onUpdate:modelValue": {
|
449
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
450
|
+
};
|
451
|
+
"v-model": {
|
452
|
+
type: import("vue").PropType<Identity[]>;
|
453
|
+
required: false;
|
454
|
+
};
|
455
|
+
modelValue: {
|
456
|
+
type: import("vue").PropType<Identity[]>;
|
457
|
+
required: false;
|
458
|
+
};
|
459
|
+
}>> & {
|
460
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
461
|
+
onDoc$?: (description?: string) => any;
|
462
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
463
|
+
"update:modelValue": (value: Identity[]) => true;
|
464
|
+
doc$(description?: string): {
|
465
|
+
"update:modelValue": (value: Identity[]) => true;
|
466
|
+
};
|
467
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
197
468
|
propsDefinition: Omit<Readonly<{} & {
|
198
469
|
filter?: (identities: IResolvedIdentity[]) => IResolvedIdentity[];
|
199
470
|
label?: string;
|
@@ -203,24 +474,29 @@ declare const _default: {
|
|
203
474
|
disabled?: boolean;
|
204
475
|
required?: boolean;
|
205
476
|
description?: string;
|
206
|
-
|
477
|
+
"v-model"?: Identity[];
|
478
|
+
modelValue?: Identity[];
|
479
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
207
480
|
singleLine?: boolean;
|
208
481
|
ariaInvalid?: boolean;
|
209
482
|
ariaDescribedby?: string;
|
210
483
|
providerIds?: GuidValue[];
|
211
|
-
|
212
|
-
isKeepMenuOpen?: (value: Boolean) => void;
|
213
|
-
attachToParent?: boolean;
|
484
|
+
"provider-ids"?: GuidValue[];
|
214
485
|
keepSelectionMenu?: boolean;
|
215
486
|
showCurrentUserOption?: boolean;
|
487
|
+
autoOpenSelection?: boolean;
|
216
488
|
disabledIdentities?: Identity[];
|
217
489
|
blockedIdentities?: Identity[];
|
218
|
-
onMenuToggle?: (
|
490
|
+
onMenuToggle?: (value: boolean) => void;
|
491
|
+
"on-menu-toggle"?: (value: boolean) => void;
|
219
492
|
hideTab?: boolean;
|
220
493
|
hideGroupTypeSelection?: boolean;
|
221
494
|
hideUserTypeSelection?: boolean;
|
222
495
|
hideDynamicGroupSelection?: boolean;
|
223
496
|
showSelectedIdentities?: boolean;
|
224
|
-
}>,
|
497
|
+
}>, "onUpdate:modelValue" | "onDoc$"> & {
|
498
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
499
|
+
onDoc$?: (description?: string) => any;
|
500
|
+
};
|
225
501
|
};
|
226
502
|
export default _default;
|
@@ -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;
|
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.46-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.46-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|