@omnia/fx 8.0.44-dev → 8.0.45-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.
@@ -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 } 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 } from "vuetify/components";
73
73
  import { Intersect } from "vuetify/directives";
74
74
  import { VDataTable, VDataTableRow, VDataTableRows, VDataTableVirtual, VDataTableServer, VInfiniteScroll, VDatePicker } from "vuetify/labs/components";
75
75
  export interface VDataTableServerSlots extends VuetifySlots<VuetifyProps<Pick<VDataTableServer, "$props">>> {
@@ -82,6 +82,8 @@ export interface VTextFieldSlots extends VuetifySlots<VuetifyProps<Pick<VTextFie
82
82
  }
83
83
  export interface VTextAreaSlots extends VuetifySlots<VuetifyProps<Pick<VTextarea, "$props">>> {
84
84
  }
85
+ export interface VRatingSlots extends VuetifySlots<VuetifyProps<Pick<VRating, "$props">>> {
86
+ }
85
87
  declare global {
86
88
  namespace JSX {
87
89
  interface Element {
@@ -242,7 +244,8 @@ declare global {
242
244
  "v-pagination": VuetifyProps<Pick<VPagination, "$props">> & {
243
245
  [name: string]: any;
244
246
  };
245
- "v-date-picker": VuetifyProps<Pick<VDatePicker, "$props">> & {
247
+ "v-date-picker": VuetifyProps<Pick<VDatePicker, "$props">> & {};
248
+ "v-rating": VuetifyProps<Pick<VRating, "$props">> & {
246
249
  [name: string]: any;
247
250
  };
248
251
  }
@@ -0,0 +1 @@
1
+ export declare const RatingStyles: {};
@@ -0,0 +1,310 @@
1
+ import { VRatingSlots } from "../../ComponentTypings";
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{
7
+ container?: any;
8
+ blueprint?: any;
9
+ colorSchemaType?: any;
10
+ blueprintType?: any;
11
+ colors?: any;
12
+ }> & Omit<{
13
+ readonly container?: any;
14
+ readonly blueprint?: any;
15
+ readonly colorSchemaType?: any;
16
+ readonly blueprintType?: any;
17
+ readonly colors?: any;
18
+ readonly length?: 5 | 10 | "5" | "10";
19
+ readonly class?: String | String[];
20
+ readonly size?: "small" | "default" | "large" | "x-large" | "x-small";
21
+ readonly disabled?: boolean;
22
+ readonly "onUpdate:modelValue"?: (value: string | number) => any;
23
+ readonly "v-model"?: string | number;
24
+ readonly modelValue?: string | number;
25
+ readonly "v-slots"?: {
26
+ default?: import("../../DefineVueTypings").Slot<any[]>;
27
+ } & VRatingSlots;
28
+ readonly readonly?: boolean;
29
+ readonly density?: "default" | "compact" | "comfortable";
30
+ readonly clearable?: boolean;
31
+ readonly hover?: boolean;
32
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
33
+ size: {
34
+ type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
35
+ };
36
+ readonly: {
37
+ type: import("vue").PropType<boolean>;
38
+ required: false;
39
+ };
40
+ length: {
41
+ type: import("vue").PropType<5 | 10 | "5" | "10">;
42
+ required: false;
43
+ };
44
+ hover: {
45
+ type: import("vue").PropType<boolean>;
46
+ required: false;
47
+ };
48
+ disabled: {
49
+ type: import("vue").PropType<boolean>;
50
+ required: false;
51
+ };
52
+ density: {
53
+ type: import("vue").PropType<"default" | "compact" | "comfortable">;
54
+ required: false;
55
+ };
56
+ clearable: {
57
+ type: import("vue").PropType<boolean>;
58
+ required: false;
59
+ };
60
+ "onUpdate:modelValue": {
61
+ type: import("vue").PropType<(value: string | number) => any>;
62
+ };
63
+ "v-model": {
64
+ type: import("vue").PropType<string | number>;
65
+ required: false;
66
+ };
67
+ modelValue: {
68
+ type: import("vue").PropType<string | number>;
69
+ required: false;
70
+ };
71
+ "v-slots": import("vue").Prop<{
72
+ default?: import("../../DefineVueTypings").Slot<any[]>;
73
+ } & VRatingSlots>;
74
+ class: {
75
+ type: import("vue").PropType<String | String[]>;
76
+ required: boolean;
77
+ };
78
+ colorSchemaType?: any;
79
+ container?: any;
80
+ colors?: any;
81
+ blueprintType?: any;
82
+ blueprint?: any;
83
+ }>>, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
84
+ $attrs: {
85
+ [x: string]: unknown;
86
+ };
87
+ $refs: {
88
+ [x: string]: unknown;
89
+ };
90
+ $slots: Readonly<{
91
+ [name: string]: import("vue").Slot<any>;
92
+ }>;
93
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
94
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
95
+ $emit: (event: string, ...args: any[]) => void;
96
+ $el: any;
97
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
98
+ size: {
99
+ type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
100
+ };
101
+ readonly: {
102
+ type: import("vue").PropType<boolean>;
103
+ required: false;
104
+ };
105
+ length: {
106
+ type: import("vue").PropType<5 | 10 | "5" | "10">;
107
+ required: false;
108
+ };
109
+ hover: {
110
+ type: import("vue").PropType<boolean>;
111
+ required: false;
112
+ };
113
+ disabled: {
114
+ type: import("vue").PropType<boolean>;
115
+ required: false;
116
+ };
117
+ density: {
118
+ type: import("vue").PropType<"default" | "compact" | "comfortable">;
119
+ required: false;
120
+ };
121
+ clearable: {
122
+ type: import("vue").PropType<boolean>;
123
+ required: false;
124
+ };
125
+ "onUpdate:modelValue": {
126
+ type: import("vue").PropType<(value: string | number) => any>;
127
+ };
128
+ "v-model": {
129
+ type: import("vue").PropType<string | number>;
130
+ required: false;
131
+ };
132
+ modelValue: {
133
+ type: import("vue").PropType<string | number>;
134
+ required: false;
135
+ };
136
+ "v-slots": import("vue").Prop<{
137
+ default?: import("../../DefineVueTypings").Slot<any[]>;
138
+ } & VRatingSlots>;
139
+ class: {
140
+ type: import("vue").PropType<String | String[]>;
141
+ required: boolean;
142
+ };
143
+ colorSchemaType?: any;
144
+ container?: any;
145
+ colors?: any;
146
+ blueprintType?: any;
147
+ blueprint?: any;
148
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
149
+ container?: any;
150
+ blueprint?: any;
151
+ colorSchemaType?: any;
152
+ blueprintType?: any;
153
+ colors?: any;
154
+ }, {}, string, {}> & {
155
+ beforeCreate?: (() => void) | (() => void)[];
156
+ created?: (() => void) | (() => void)[];
157
+ beforeMount?: (() => void) | (() => void)[];
158
+ mounted?: (() => void) | (() => void)[];
159
+ beforeUpdate?: (() => void) | (() => void)[];
160
+ updated?: (() => void) | (() => void)[];
161
+ activated?: (() => void) | (() => void)[];
162
+ deactivated?: (() => void) | (() => void)[];
163
+ beforeDestroy?: (() => void) | (() => void)[];
164
+ beforeUnmount?: (() => void) | (() => void)[];
165
+ destroyed?: (() => void) | (() => void)[];
166
+ unmounted?: (() => void) | (() => void)[];
167
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
168
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
169
+ 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)[];
170
+ };
171
+ $forceUpdate: () => void;
172
+ $nextTick: typeof import("vue").nextTick;
173
+ $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;
174
+ } & Readonly<import("vue").ExtractPropTypes<{
175
+ size: {
176
+ type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
177
+ };
178
+ readonly: {
179
+ type: import("vue").PropType<boolean>;
180
+ required: false;
181
+ };
182
+ length: {
183
+ type: import("vue").PropType<5 | 10 | "5" | "10">;
184
+ required: false;
185
+ };
186
+ hover: {
187
+ type: import("vue").PropType<boolean>;
188
+ required: false;
189
+ };
190
+ disabled: {
191
+ type: import("vue").PropType<boolean>;
192
+ required: false;
193
+ };
194
+ density: {
195
+ type: import("vue").PropType<"default" | "compact" | "comfortable">;
196
+ required: false;
197
+ };
198
+ clearable: {
199
+ type: import("vue").PropType<boolean>;
200
+ required: false;
201
+ };
202
+ "onUpdate:modelValue": {
203
+ type: import("vue").PropType<(value: string | number) => any>;
204
+ };
205
+ "v-model": {
206
+ type: import("vue").PropType<string | number>;
207
+ required: false;
208
+ };
209
+ modelValue: {
210
+ type: import("vue").PropType<string | number>;
211
+ required: false;
212
+ };
213
+ "v-slots": import("vue").Prop<{
214
+ default?: import("../../DefineVueTypings").Slot<any[]>;
215
+ } & VRatingSlots>;
216
+ class: {
217
+ type: import("vue").PropType<String | String[]>;
218
+ required: boolean;
219
+ };
220
+ colorSchemaType?: any;
221
+ container?: any;
222
+ colors?: any;
223
+ blueprintType?: any;
224
+ blueprint?: any;
225
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
226
+ __isFragment?: never;
227
+ __isTeleport?: never;
228
+ __isSuspense?: never;
229
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
230
+ size: {
231
+ type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
232
+ };
233
+ readonly: {
234
+ type: import("vue").PropType<boolean>;
235
+ required: false;
236
+ };
237
+ length: {
238
+ type: import("vue").PropType<5 | 10 | "5" | "10">;
239
+ required: false;
240
+ };
241
+ hover: {
242
+ type: import("vue").PropType<boolean>;
243
+ required: false;
244
+ };
245
+ disabled: {
246
+ type: import("vue").PropType<boolean>;
247
+ required: false;
248
+ };
249
+ density: {
250
+ type: import("vue").PropType<"default" | "compact" | "comfortable">;
251
+ required: false;
252
+ };
253
+ clearable: {
254
+ type: import("vue").PropType<boolean>;
255
+ required: false;
256
+ };
257
+ "onUpdate:modelValue": {
258
+ type: import("vue").PropType<(value: string | number) => any>;
259
+ };
260
+ "v-model": {
261
+ type: import("vue").PropType<string | number>;
262
+ required: false;
263
+ };
264
+ modelValue: {
265
+ type: import("vue").PropType<string | number>;
266
+ required: false;
267
+ };
268
+ "v-slots": import("vue").Prop<{
269
+ default?: import("../../DefineVueTypings").Slot<any[]>;
270
+ } & VRatingSlots>;
271
+ class: {
272
+ type: import("vue").PropType<String | String[]>;
273
+ required: boolean;
274
+ };
275
+ colorSchemaType?: any;
276
+ container?: any;
277
+ colors?: any;
278
+ blueprintType?: any;
279
+ blueprint?: any;
280
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
281
+ container?: any;
282
+ blueprint?: any;
283
+ colorSchemaType?: any;
284
+ blueprintType?: any;
285
+ colors?: any;
286
+ }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
287
+ propsDefinition: Omit<Readonly<{
288
+ container?: any;
289
+ blueprint?: any;
290
+ colorSchemaType?: any;
291
+ blueprintType?: any;
292
+ colors?: any;
293
+ } & {
294
+ length?: 5 | 10 | "5" | "10";
295
+ class?: String | String[];
296
+ size?: "small" | "default" | "large" | "x-large" | "x-small";
297
+ disabled?: boolean;
298
+ "onUpdate:modelValue"?: (value: string | number) => any;
299
+ "v-model"?: string | number;
300
+ modelValue?: string | number;
301
+ "v-slots"?: {
302
+ default?: import("../../DefineVueTypings").Slot<any[]>;
303
+ } & VRatingSlots;
304
+ readonly?: boolean;
305
+ density?: "default" | "compact" | "comfortable";
306
+ clearable?: boolean;
307
+ hover?: boolean;
308
+ }>, never>;
309
+ };
310
+ export default _default;
@@ -28,6 +28,7 @@ declare const _default: {
28
28
  default?: import("../../DefineVueTypings").Slot<any[]>;
29
29
  } & VTextAreaSlots;
30
30
  readonly autofocus?: boolean;
31
+ readonly toned?: boolean;
31
32
  readonly placeholder?: string;
32
33
  readonly readonly?: boolean;
33
34
  readonly hint?: string;
@@ -78,6 +79,10 @@ declare const _default: {
78
79
  type: import("vue").PropType<boolean>;
79
80
  required: false;
80
81
  };
82
+ toned: {
83
+ type: import("vue").PropType<boolean>;
84
+ required: false;
85
+ };
81
86
  hint: {
82
87
  type: import("vue").PropType<string>;
83
88
  };
@@ -163,6 +168,10 @@ declare const _default: {
163
168
  type: import("vue").PropType<boolean>;
164
169
  required: false;
165
170
  };
171
+ toned: {
172
+ type: import("vue").PropType<boolean>;
173
+ required: false;
174
+ };
166
175
  hint: {
167
176
  type: import("vue").PropType<string>;
168
177
  };
@@ -264,6 +273,10 @@ declare const _default: {
264
273
  type: import("vue").PropType<boolean>;
265
274
  required: false;
266
275
  };
276
+ toned: {
277
+ type: import("vue").PropType<boolean>;
278
+ required: false;
279
+ };
267
280
  hint: {
268
281
  type: import("vue").PropType<string>;
269
282
  };
@@ -339,6 +352,10 @@ declare const _default: {
339
352
  type: import("vue").PropType<boolean>;
340
353
  required: false;
341
354
  };
355
+ toned: {
356
+ type: import("vue").PropType<boolean>;
357
+ required: false;
358
+ };
342
359
  hint: {
343
360
  type: import("vue").PropType<string>;
344
361
  };
@@ -399,6 +416,7 @@ declare const _default: {
399
416
  default?: import("../../DefineVueTypings").Slot<any[]>;
400
417
  } & VTextAreaSlots;
401
418
  autofocus?: boolean;
419
+ toned?: boolean;
402
420
  placeholder?: string;
403
421
  readonly?: boolean;
404
422
  hint?: string;
@@ -7,6 +7,7 @@ export declare module ProfileCardLocalization {
7
7
  sendEmail: string;
8
8
  startChat: string;
9
9
  goToDelve: string;
10
+ goToMySite: string;
10
11
  mySubscriptions: string;
11
12
  EditMyProfile: string;
12
13
  }
@@ -198,6 +198,7 @@ import wc1d8d2a2328244f1eab96344841305976 from './ux/oxide/panel/Panel';
198
198
  import wc247719ac6d3843ec889face452544a21 from './ux/oxide/progress/Progress';
199
199
  import wc48962186dfb94f37adc76f475b80015d from './ux/oxide/radio/RadioGroup';
200
200
  import wc2d9c50d3dcb1421cafb8eab80be243a1 from './ux/oxide/radio/Radio';
201
+ import wc4c41fd8799ae43468150fd47661e8100 from './ux/oxide/rating/Rating';
201
202
  import wc578e2a4d5cd247a4b1291911256253a7 from './ux/oxide/select/Select';
202
203
  import wc2ade92721b3c426fac97c63026f77351 from './ux/oxide/skeletonloader/SkeletonLoader';
203
204
  import wcd108fdde5ca942d7ae92195eb74b5452 from './ux/oxide/slider/Slider';
@@ -555,6 +556,7 @@ declare global {
555
556
  "o-progress": typeof wc247719ac6d3843ec889face452544a21.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc247719ac6d3843ec889face452544a21.propsDefinition>;
556
557
  "o-radio-group": typeof wc48962186dfb94f37adc76f475b80015d.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc48962186dfb94f37adc76f475b80015d.propsDefinition>;
557
558
  "o-radio": typeof wc2d9c50d3dcb1421cafb8eab80be243a1.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc2d9c50d3dcb1421cafb8eab80be243a1.propsDefinition>;
559
+ "o-rating": typeof wc4c41fd8799ae43468150fd47661e8100.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc4c41fd8799ae43468150fd47661e8100.propsDefinition>;
558
560
  "o-select": typeof wc578e2a4d5cd247a4b1291911256253a7.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc578e2a4d5cd247a4b1291911256253a7.propsDefinition>;
559
561
  "o-skeleton-loader": typeof wc2ade92721b3c426fac97c63026f77351.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc2ade92721b3c426fac97c63026f77351.propsDefinition>;
560
562
  "o-slider": typeof wcd108fdde5ca942d7ae92195eb74b5452.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcd108fdde5ca942d7ae92195eb74b5452.propsDefinition>;
@@ -1706,6 +1708,11 @@ declare global {
1706
1708
  $props: typeof wc2d9c50d3dcb1421cafb8eab80be243a1.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc2d9c50d3dcb1421cafb8eab80be243a1.propsDefinition>;
1707
1709
  };
1708
1710
  };
1711
+ "ORating": {
1712
+ new (...args: any[]): {
1713
+ $props: typeof wc4c41fd8799ae43468150fd47661e8100.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc4c41fd8799ae43468150fd47661e8100.propsDefinition>;
1714
+ };
1715
+ };
1709
1716
  "OSelect": {
1710
1717
  new (...args: any[]): {
1711
1718
  $props: typeof wc578e2a4d5cd247a4b1291911256253a7.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc578e2a4d5cd247a4b1291911256253a7.propsDefinition>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.44-dev",
4
+ "version": "8.0.45-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.44-dev",
23
+ "@omnia/fx-models": "8.0.45-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",