@omnia/fx 8.0.59-dev → 8.0.60-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.
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/oxide/rangeslider/RangeSlider.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/rangeslider/RangeSlider.d.ts +349 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +7 -0
- package/package.json +2 -2
@@ -69,7 +69,7 @@ type VuetifySlots<T> = {
|
|
69
69
|
type VuetifyValue<T> = T extends {
|
70
70
|
value?: any;
|
71
71
|
} ? T["value"] : T;
|
72
|
-
import { VTooltip, VTextarea, VSwitch, VRadioGroup, VForm, VTextField, VBtn, VBtnToggle, VBtnGroup, VNavigationDrawer, VList, VListItem, VListGroup, VListImg, VListItemAction, VListItemTitle, VListItemSubtitle, VListItemMedia, VListSubheader, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VExpansionPanels, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VAutocomplete, VMenu, VTable, VCheckbox, VCheckboxBtn, VVirtualScroll, VChip, VSelect, VBadge, VCol, VPagination, VRating } from "vuetify/components";
|
72
|
+
import { VTooltip, VTextarea, VSwitch, VRadioGroup, VForm, VTextField, VBtn, VBtnToggle, VBtnGroup, VNavigationDrawer, VList, VListItem, VListGroup, VListImg, VListItemAction, VListItemTitle, VListItemSubtitle, VListItemMedia, VListSubheader, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VExpansionPanels, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VAutocomplete, VMenu, VTable, VCheckbox, VCheckboxBtn, VVirtualScroll, VChip, VSelect, VBadge, VCol, VPagination, VRating, VRangeSlider } from "vuetify/components";
|
73
73
|
import { Intersect } from "vuetify/directives";
|
74
74
|
import { VDataTable, VDataTableRow, VDataTableRows, VDataTableVirtual, VDataTableServer, VInfiniteScroll, VDatePicker } from "vuetify/components";
|
75
75
|
export interface VDataTableServerSlots extends VuetifySlots<VuetifyProps<Pick<VDataTableServer, "$slots">>> {
|
@@ -250,6 +250,9 @@ declare global {
|
|
250
250
|
"v-rating": VuetifyProps<Pick<VRating, "$props">> & {
|
251
251
|
[name: string]: any;
|
252
252
|
};
|
253
|
+
"v-range-slider": VuetifyProps<Pick<VRangeSlider, "$props">> & {
|
254
|
+
[name: string]: any;
|
255
|
+
};
|
253
256
|
}
|
254
257
|
}
|
255
258
|
}
|
@@ -0,0 +1,349 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: Partial<{
|
6
|
+
container?: any;
|
7
|
+
blueprint?: any;
|
8
|
+
colorSchemaType?: any;
|
9
|
+
blueprintType?: any;
|
10
|
+
colors?: any;
|
11
|
+
}> & Omit<{
|
12
|
+
readonly container?: any;
|
13
|
+
readonly blueprint?: any;
|
14
|
+
readonly colorSchemaType?: any;
|
15
|
+
readonly blueprintType?: any;
|
16
|
+
readonly colors?: any;
|
17
|
+
readonly label?: string;
|
18
|
+
readonly class?: String | String[];
|
19
|
+
readonly direction?: "horizontal" | "vertical";
|
20
|
+
readonly "onUpdate:modelValue"?: (value: [number, number]) => any;
|
21
|
+
readonly "v-model"?: [number, number];
|
22
|
+
readonly modelValue?: [number, number];
|
23
|
+
readonly variant?: "default" | "prominent";
|
24
|
+
readonly hint?: string;
|
25
|
+
readonly persistentHint?: boolean;
|
26
|
+
readonly max?: string | number;
|
27
|
+
readonly min?: string | number;
|
28
|
+
readonly step?: string | number;
|
29
|
+
readonly noThumbLabel?: boolean;
|
30
|
+
readonly showTicks?: boolean | "always";
|
31
|
+
readonly ticks?: number[] | Record<number, string>;
|
32
|
+
readonly tickSize?: number;
|
33
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
34
|
+
tickSize: {
|
35
|
+
type: import("vue").PropType<number>;
|
36
|
+
required: false;
|
37
|
+
};
|
38
|
+
ticks: {
|
39
|
+
type: import("vue").PropType<number[] | Record<number, string>>;
|
40
|
+
required: false;
|
41
|
+
};
|
42
|
+
showTicks: {
|
43
|
+
type: import("vue").PropType<boolean | "always">;
|
44
|
+
required: false;
|
45
|
+
};
|
46
|
+
variant: {
|
47
|
+
type: import("vue").PropType<"default" | "prominent">;
|
48
|
+
};
|
49
|
+
direction: {
|
50
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
51
|
+
};
|
52
|
+
persistentHint: {
|
53
|
+
type: import("vue").PropType<boolean>;
|
54
|
+
};
|
55
|
+
hint: {
|
56
|
+
type: import("vue").PropType<string>;
|
57
|
+
};
|
58
|
+
noThumbLabel: {
|
59
|
+
type: import("vue").PropType<boolean>;
|
60
|
+
};
|
61
|
+
label: {
|
62
|
+
type: import("vue").PropType<string>;
|
63
|
+
};
|
64
|
+
max: {
|
65
|
+
type: import("vue").PropType<string | number>;
|
66
|
+
};
|
67
|
+
min: {
|
68
|
+
type: import("vue").PropType<string | number>;
|
69
|
+
};
|
70
|
+
step: {
|
71
|
+
type: import("vue").PropType<string | number>;
|
72
|
+
};
|
73
|
+
"onUpdate:modelValue": {
|
74
|
+
type: import("vue").PropType<(value: [number, number]) => any>;
|
75
|
+
};
|
76
|
+
"v-model": {
|
77
|
+
type: import("vue").PropType<[number, number]>;
|
78
|
+
required: false;
|
79
|
+
};
|
80
|
+
modelValue: {
|
81
|
+
type: import("vue").PropType<[number, number]>;
|
82
|
+
required: false;
|
83
|
+
};
|
84
|
+
class: {
|
85
|
+
type: import("vue").PropType<String | String[]>;
|
86
|
+
required: boolean;
|
87
|
+
};
|
88
|
+
colorSchemaType?: any;
|
89
|
+
container?: any;
|
90
|
+
colors?: any;
|
91
|
+
blueprintType?: any;
|
92
|
+
blueprint?: any;
|
93
|
+
}>>, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
|
94
|
+
$attrs: {
|
95
|
+
[x: string]: unknown;
|
96
|
+
};
|
97
|
+
$refs: {
|
98
|
+
[x: string]: unknown;
|
99
|
+
};
|
100
|
+
$slots: Readonly<{
|
101
|
+
[name: string]: import("vue").Slot<any>;
|
102
|
+
}>;
|
103
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
104
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
105
|
+
$emit: (event: string, ...args: any[]) => void;
|
106
|
+
$el: any;
|
107
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
108
|
+
tickSize: {
|
109
|
+
type: import("vue").PropType<number>;
|
110
|
+
required: false;
|
111
|
+
};
|
112
|
+
ticks: {
|
113
|
+
type: import("vue").PropType<number[] | Record<number, string>>;
|
114
|
+
required: false;
|
115
|
+
};
|
116
|
+
showTicks: {
|
117
|
+
type: import("vue").PropType<boolean | "always">;
|
118
|
+
required: false;
|
119
|
+
};
|
120
|
+
variant: {
|
121
|
+
type: import("vue").PropType<"default" | "prominent">;
|
122
|
+
};
|
123
|
+
direction: {
|
124
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
125
|
+
};
|
126
|
+
persistentHint: {
|
127
|
+
type: import("vue").PropType<boolean>;
|
128
|
+
};
|
129
|
+
hint: {
|
130
|
+
type: import("vue").PropType<string>;
|
131
|
+
};
|
132
|
+
noThumbLabel: {
|
133
|
+
type: import("vue").PropType<boolean>;
|
134
|
+
};
|
135
|
+
label: {
|
136
|
+
type: import("vue").PropType<string>;
|
137
|
+
};
|
138
|
+
max: {
|
139
|
+
type: import("vue").PropType<string | number>;
|
140
|
+
};
|
141
|
+
min: {
|
142
|
+
type: import("vue").PropType<string | number>;
|
143
|
+
};
|
144
|
+
step: {
|
145
|
+
type: import("vue").PropType<string | number>;
|
146
|
+
};
|
147
|
+
"onUpdate:modelValue": {
|
148
|
+
type: import("vue").PropType<(value: [number, number]) => any>;
|
149
|
+
};
|
150
|
+
"v-model": {
|
151
|
+
type: import("vue").PropType<[number, number]>;
|
152
|
+
required: false;
|
153
|
+
};
|
154
|
+
modelValue: {
|
155
|
+
type: import("vue").PropType<[number, number]>;
|
156
|
+
required: false;
|
157
|
+
};
|
158
|
+
class: {
|
159
|
+
type: import("vue").PropType<String | String[]>;
|
160
|
+
required: boolean;
|
161
|
+
};
|
162
|
+
colorSchemaType?: any;
|
163
|
+
container?: any;
|
164
|
+
colors?: any;
|
165
|
+
blueprintType?: any;
|
166
|
+
blueprint?: any;
|
167
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
168
|
+
container?: any;
|
169
|
+
blueprint?: any;
|
170
|
+
colorSchemaType?: any;
|
171
|
+
blueprintType?: any;
|
172
|
+
colors?: any;
|
173
|
+
}, {}, string, {}> & {
|
174
|
+
beforeCreate?: (() => void) | (() => void)[];
|
175
|
+
created?: (() => void) | (() => void)[];
|
176
|
+
beforeMount?: (() => void) | (() => void)[];
|
177
|
+
mounted?: (() => void) | (() => void)[];
|
178
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
179
|
+
updated?: (() => void) | (() => void)[];
|
180
|
+
activated?: (() => void) | (() => void)[];
|
181
|
+
deactivated?: (() => void) | (() => void)[];
|
182
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
183
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
184
|
+
destroyed?: (() => void) | (() => void)[];
|
185
|
+
unmounted?: (() => void) | (() => void)[];
|
186
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
187
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
188
|
+
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)[];
|
189
|
+
};
|
190
|
+
$forceUpdate: () => void;
|
191
|
+
$nextTick: typeof import("vue").nextTick;
|
192
|
+
$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;
|
193
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
194
|
+
tickSize: {
|
195
|
+
type: import("vue").PropType<number>;
|
196
|
+
required: false;
|
197
|
+
};
|
198
|
+
ticks: {
|
199
|
+
type: import("vue").PropType<number[] | Record<number, string>>;
|
200
|
+
required: false;
|
201
|
+
};
|
202
|
+
showTicks: {
|
203
|
+
type: import("vue").PropType<boolean | "always">;
|
204
|
+
required: false;
|
205
|
+
};
|
206
|
+
variant: {
|
207
|
+
type: import("vue").PropType<"default" | "prominent">;
|
208
|
+
};
|
209
|
+
direction: {
|
210
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
211
|
+
};
|
212
|
+
persistentHint: {
|
213
|
+
type: import("vue").PropType<boolean>;
|
214
|
+
};
|
215
|
+
hint: {
|
216
|
+
type: import("vue").PropType<string>;
|
217
|
+
};
|
218
|
+
noThumbLabel: {
|
219
|
+
type: import("vue").PropType<boolean>;
|
220
|
+
};
|
221
|
+
label: {
|
222
|
+
type: import("vue").PropType<string>;
|
223
|
+
};
|
224
|
+
max: {
|
225
|
+
type: import("vue").PropType<string | number>;
|
226
|
+
};
|
227
|
+
min: {
|
228
|
+
type: import("vue").PropType<string | number>;
|
229
|
+
};
|
230
|
+
step: {
|
231
|
+
type: import("vue").PropType<string | number>;
|
232
|
+
};
|
233
|
+
"onUpdate:modelValue": {
|
234
|
+
type: import("vue").PropType<(value: [number, number]) => any>;
|
235
|
+
};
|
236
|
+
"v-model": {
|
237
|
+
type: import("vue").PropType<[number, number]>;
|
238
|
+
required: false;
|
239
|
+
};
|
240
|
+
modelValue: {
|
241
|
+
type: import("vue").PropType<[number, number]>;
|
242
|
+
required: false;
|
243
|
+
};
|
244
|
+
class: {
|
245
|
+
type: import("vue").PropType<String | String[]>;
|
246
|
+
required: boolean;
|
247
|
+
};
|
248
|
+
colorSchemaType?: any;
|
249
|
+
container?: any;
|
250
|
+
colors?: any;
|
251
|
+
blueprintType?: any;
|
252
|
+
blueprint?: any;
|
253
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
254
|
+
__isFragment?: never;
|
255
|
+
__isTeleport?: never;
|
256
|
+
__isSuspense?: never;
|
257
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
258
|
+
tickSize: {
|
259
|
+
type: import("vue").PropType<number>;
|
260
|
+
required: false;
|
261
|
+
};
|
262
|
+
ticks: {
|
263
|
+
type: import("vue").PropType<number[] | Record<number, string>>;
|
264
|
+
required: false;
|
265
|
+
};
|
266
|
+
showTicks: {
|
267
|
+
type: import("vue").PropType<boolean | "always">;
|
268
|
+
required: false;
|
269
|
+
};
|
270
|
+
variant: {
|
271
|
+
type: import("vue").PropType<"default" | "prominent">;
|
272
|
+
};
|
273
|
+
direction: {
|
274
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
275
|
+
};
|
276
|
+
persistentHint: {
|
277
|
+
type: import("vue").PropType<boolean>;
|
278
|
+
};
|
279
|
+
hint: {
|
280
|
+
type: import("vue").PropType<string>;
|
281
|
+
};
|
282
|
+
noThumbLabel: {
|
283
|
+
type: import("vue").PropType<boolean>;
|
284
|
+
};
|
285
|
+
label: {
|
286
|
+
type: import("vue").PropType<string>;
|
287
|
+
};
|
288
|
+
max: {
|
289
|
+
type: import("vue").PropType<string | number>;
|
290
|
+
};
|
291
|
+
min: {
|
292
|
+
type: import("vue").PropType<string | number>;
|
293
|
+
};
|
294
|
+
step: {
|
295
|
+
type: import("vue").PropType<string | number>;
|
296
|
+
};
|
297
|
+
"onUpdate:modelValue": {
|
298
|
+
type: import("vue").PropType<(value: [number, number]) => any>;
|
299
|
+
};
|
300
|
+
"v-model": {
|
301
|
+
type: import("vue").PropType<[number, number]>;
|
302
|
+
required: false;
|
303
|
+
};
|
304
|
+
modelValue: {
|
305
|
+
type: import("vue").PropType<[number, number]>;
|
306
|
+
required: false;
|
307
|
+
};
|
308
|
+
class: {
|
309
|
+
type: import("vue").PropType<String | String[]>;
|
310
|
+
required: boolean;
|
311
|
+
};
|
312
|
+
colorSchemaType?: any;
|
313
|
+
container?: any;
|
314
|
+
colors?: any;
|
315
|
+
blueprintType?: any;
|
316
|
+
blueprint?: any;
|
317
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
318
|
+
container?: any;
|
319
|
+
blueprint?: any;
|
320
|
+
colorSchemaType?: any;
|
321
|
+
blueprintType?: any;
|
322
|
+
colors?: any;
|
323
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
324
|
+
propsDefinition: Omit<Readonly<{
|
325
|
+
container?: any;
|
326
|
+
blueprint?: any;
|
327
|
+
colorSchemaType?: any;
|
328
|
+
blueprintType?: any;
|
329
|
+
colors?: any;
|
330
|
+
} & {
|
331
|
+
label?: string;
|
332
|
+
class?: String | String[];
|
333
|
+
direction?: "horizontal" | "vertical";
|
334
|
+
"onUpdate:modelValue"?: (value: [number, number]) => any;
|
335
|
+
"v-model"?: [number, number];
|
336
|
+
modelValue?: [number, number];
|
337
|
+
variant?: "default" | "prominent";
|
338
|
+
hint?: string;
|
339
|
+
persistentHint?: boolean;
|
340
|
+
max?: string | number;
|
341
|
+
min?: string | number;
|
342
|
+
step?: string | number;
|
343
|
+
noThumbLabel?: boolean;
|
344
|
+
showTicks?: boolean | "always";
|
345
|
+
ticks?: number[] | Record<number, string>;
|
346
|
+
tickSize?: number;
|
347
|
+
}>, never>;
|
348
|
+
};
|
349
|
+
export default _default;
|
@@ -205,6 +205,7 @@ import wc1d8d2a2328244f1eab96344841305976 from './ux/oxide/panel/Panel';
|
|
205
205
|
import wc247719ac6d3843ec889face452544a21 from './ux/oxide/progress/Progress';
|
206
206
|
import wc48962186dfb94f37adc76f475b80015d from './ux/oxide/radio/RadioGroup';
|
207
207
|
import wc2d9c50d3dcb1421cafb8eab80be243a1 from './ux/oxide/radio/Radio';
|
208
|
+
import wc8a82f6b541cc49b2ade3e5b880fd3a58 from './ux/oxide/rangeslider/RangeSlider';
|
208
209
|
import wc4c41fd8799ae43468150fd47661e8100 from './ux/oxide/rating/Rating';
|
209
210
|
import wc177587e103904861b5d4d491388a01b1 from './ux/oxide/scrollcontainer/ScrollContainer';
|
210
211
|
import wc578e2a4d5cd247a4b1291911256253a7 from './ux/oxide/select/Select';
|
@@ -572,6 +573,7 @@ declare global {
|
|
572
573
|
"o-progress": typeof wc247719ac6d3843ec889face452544a21.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc247719ac6d3843ec889face452544a21.propsDefinition>;
|
573
574
|
"o-radio-group": typeof wc48962186dfb94f37adc76f475b80015d.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc48962186dfb94f37adc76f475b80015d.propsDefinition>;
|
574
575
|
"o-radio": typeof wc2d9c50d3dcb1421cafb8eab80be243a1.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc2d9c50d3dcb1421cafb8eab80be243a1.propsDefinition>;
|
576
|
+
"o-range-slider": typeof wc8a82f6b541cc49b2ade3e5b880fd3a58.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8a82f6b541cc49b2ade3e5b880fd3a58.propsDefinition>;
|
575
577
|
"o-rating": typeof wc4c41fd8799ae43468150fd47661e8100.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc4c41fd8799ae43468150fd47661e8100.propsDefinition>;
|
576
578
|
"o-scroll-container": typeof wc177587e103904861b5d4d491388a01b1.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc177587e103904861b5d4d491388a01b1.propsDefinition>;
|
577
579
|
"o-select": typeof wc578e2a4d5cd247a4b1291911256253a7.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc578e2a4d5cd247a4b1291911256253a7.propsDefinition>;
|
@@ -1761,6 +1763,11 @@ declare global {
|
|
1761
1763
|
$props: typeof wc2d9c50d3dcb1421cafb8eab80be243a1.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc2d9c50d3dcb1421cafb8eab80be243a1.propsDefinition>;
|
1762
1764
|
};
|
1763
1765
|
};
|
1766
|
+
"ORangeSlider": {
|
1767
|
+
new (...args: any[]): {
|
1768
|
+
$props: typeof wc8a82f6b541cc49b2ade3e5b880fd3a58.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8a82f6b541cc49b2ade3e5b880fd3a58.propsDefinition>;
|
1769
|
+
};
|
1770
|
+
};
|
1764
1771
|
"ORating": {
|
1765
1772
|
new (...args: any[]): {
|
1766
1773
|
$props: typeof wc4c41fd8799ae43468150fd47661e8100.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc4c41fd8799ae43468150fd47661e8100.propsDefinition>;
|
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.60-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.60-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|