@omnia/fx 8.0.65-vnext → 8.0.67-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.
@@ -57,6 +57,7 @@ declare const _default: {
57
57
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
58
58
  [key: string]: any;
59
59
  }>) => void)[];
60
+ readonly disabled?: boolean;
60
61
  readonly modelValue?: MaybeComputedRef<boolean>;
61
62
  readonly rules?: ValidationRule[];
62
63
  "onUpdate:modelValue"?: ((value: MaybeComputedRef<boolean>) => any) & ((value: any) => any);
@@ -76,6 +77,9 @@ declare const _default: {
76
77
  $emit: (event: "update:modelValue", value: any) => void;
77
78
  $el: any;
78
79
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
80
+ disabled: {
81
+ type: import("vue").PropType<boolean>;
82
+ };
79
83
  value: {
80
84
  type: import("vue").PropType<any>;
81
85
  };
@@ -137,6 +141,9 @@ declare const _default: {
137
141
  $nextTick: typeof import("vue").nextTick;
138
142
  $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;
139
143
  } & Readonly<import("vue").ExtractPropTypes<{
144
+ disabled: {
145
+ type: import("vue").PropType<boolean>;
146
+ };
140
147
  value: {
141
148
  type: import("vue").PropType<any>;
142
149
  };
@@ -174,6 +181,9 @@ declare const _default: {
174
181
  __isTeleport?: never;
175
182
  __isSuspense?: never;
176
183
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
184
+ disabled: {
185
+ type: import("vue").PropType<boolean>;
186
+ };
177
187
  value: {
178
188
  type: import("vue").PropType<any>;
179
189
  };
@@ -225,6 +235,7 @@ declare const _default: {
225
235
  value?: any;
226
236
  label?: string;
227
237
  class?: String | String[];
238
+ disabled?: boolean;
228
239
  modelValue?: MaybeComputedRef<boolean>;
229
240
  rules?: ValidationRule[];
230
241
  "onUpdate:modelValue"?: (value: MaybeComputedRef<boolean>) => any;
@@ -67,10 +67,11 @@ declare const _default: {
67
67
  } & OTextFieldSlots;
68
68
  readonly variant?: "search" | "link" | "default" | "media" | "find-slim";
69
69
  readonly loading?: boolean;
70
- readonly modelValue?: string;
70
+ readonly modelValue?: string | number;
71
+ "onUpdate:focused"?: (value: boolean) => any;
71
72
  readonly rules?: ValidationRule[];
72
- "onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
73
- readonly "v-model"?: string;
73
+ "onUpdate:modelValue"?: ((value: string | number) => any) & ((value: string) => any);
74
+ readonly "v-model"?: string | number;
74
75
  readonly toned?: boolean;
75
76
  "onClick:clear"?: () => any;
76
77
  readonly clearable?: boolean;
@@ -89,7 +90,7 @@ declare const _default: {
89
90
  }>;
90
91
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
91
92
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
92
- $emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "click:clear") => void) & ((event: "click:button") => void);
93
+ $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);
93
94
  $el: any;
94
95
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
95
96
  disabled: {
@@ -128,14 +129,14 @@ declare const _default: {
128
129
  type: import("vue").PropType<string>;
129
130
  };
130
131
  "onUpdate:modelValue": {
131
- type: import("vue").PropType<(value: string) => any>;
132
+ type: import("vue").PropType<(value: string | number) => any>;
132
133
  };
133
134
  "v-model": {
134
- type: import("vue").PropType<string>;
135
+ type: import("vue").PropType<string | number>;
135
136
  required: false;
136
137
  };
137
138
  modelValue: {
138
- type: import("vue").PropType<string>;
139
+ type: import("vue").PropType<string | number>;
139
140
  required: false;
140
141
  };
141
142
  "v-slots": import("vue").Prop<{
@@ -151,6 +152,7 @@ declare const _default: {
151
152
  blueprintType?: any;
152
153
  blueprint?: any;
153
154
  }>> & {
155
+ "onUpdate:focused"?: (value: boolean) => any;
154
156
  "onUpdate:modelValue"?: (value: string) => any;
155
157
  "onClick:clear"?: () => any;
156
158
  onDoc$?: (description?: string) => any;
@@ -160,6 +162,7 @@ declare const _default: {
160
162
  doc$(description?: string): {
161
163
  "click:clear": () => void;
162
164
  };
165
+ "update:focused": (value: boolean) => true;
163
166
  "update:modelValue": (value: string) => true;
164
167
  "click:button": () => true;
165
168
  }, string, {
@@ -225,14 +228,14 @@ declare const _default: {
225
228
  type: import("vue").PropType<string>;
226
229
  };
227
230
  "onUpdate:modelValue": {
228
- type: import("vue").PropType<(value: string) => any>;
231
+ type: import("vue").PropType<(value: string | number) => any>;
229
232
  };
230
233
  "v-model": {
231
- type: import("vue").PropType<string>;
234
+ type: import("vue").PropType<string | number>;
232
235
  required: false;
233
236
  };
234
237
  modelValue: {
235
- type: import("vue").PropType<string>;
238
+ type: import("vue").PropType<string | number>;
236
239
  required: false;
237
240
  };
238
241
  "v-slots": import("vue").Prop<{
@@ -248,6 +251,7 @@ declare const _default: {
248
251
  blueprintType?: any;
249
252
  blueprint?: any;
250
253
  }>> & {
254
+ "onUpdate:focused"?: (value: boolean) => any;
251
255
  "onUpdate:modelValue"?: (value: string) => any;
252
256
  "onClick:clear"?: () => any;
253
257
  onDoc$?: (description?: string) => any;
@@ -293,14 +297,14 @@ declare const _default: {
293
297
  type: import("vue").PropType<string>;
294
298
  };
295
299
  "onUpdate:modelValue": {
296
- type: import("vue").PropType<(value: string) => any>;
300
+ type: import("vue").PropType<(value: string | number) => any>;
297
301
  };
298
302
  "v-model": {
299
- type: import("vue").PropType<string>;
303
+ type: import("vue").PropType<string | number>;
300
304
  required: false;
301
305
  };
302
306
  modelValue: {
303
- type: import("vue").PropType<string>;
307
+ type: import("vue").PropType<string | number>;
304
308
  required: false;
305
309
  };
306
310
  "v-slots": import("vue").Prop<{
@@ -316,6 +320,7 @@ declare const _default: {
316
320
  blueprintType?: any;
317
321
  blueprint?: any;
318
322
  }>> & {
323
+ "onUpdate:focused"?: (value: boolean) => any;
319
324
  "onUpdate:modelValue"?: (value: string) => any;
320
325
  "onClick:clear"?: () => any;
321
326
  onDoc$?: (description?: string) => any;
@@ -325,6 +330,7 @@ declare const _default: {
325
330
  doc$(description?: string): {
326
331
  "click:clear": () => void;
327
332
  };
333
+ "update:focused": (value: boolean) => true;
328
334
  "update:modelValue": (value: string) => true;
329
335
  "click:button": () => true;
330
336
  }, string, {
@@ -351,14 +357,15 @@ declare const _default: {
351
357
  } & OTextFieldSlots;
352
358
  variant?: "search" | "link" | "default" | "media" | "find-slim";
353
359
  loading?: boolean;
354
- modelValue?: string;
360
+ modelValue?: string | number;
355
361
  rules?: ValidationRule[];
356
- "onUpdate:modelValue"?: (value: string) => any;
357
- "v-model"?: string;
362
+ "onUpdate:modelValue"?: (value: string | number) => any;
363
+ "v-model"?: string | number;
358
364
  toned?: boolean;
359
365
  clearable?: boolean;
360
366
  autofocus?: boolean;
361
- }>, "onUpdate:modelValue" | "onClick:clear" | "onDoc$" | "onClick:button"> & {
367
+ }>, "onUpdate:focused" | "onUpdate:modelValue" | "onClick:clear" | "onDoc$" | "onClick:button"> & {
368
+ "onUpdate:focused"?: (value: boolean) => any;
362
369
  "onUpdate:modelValue"?: (value: string) => any;
363
370
  "onClick:clear"?: () => any;
364
371
  onDoc$?: (description?: string) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.65-vnext",
4
+ "version": "8.0.67-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,13 +20,13 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.65-vnext",
23
+ "@omnia/fx-models": "8.0.67-vnext",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",
27
27
  "vue-virtual-scroller": "1.0.0-rc.2",
28
28
  "splitpanes": "2.4.1",
29
- "vuetify": "3.3.10",
29
+ "vuetify": "3.3.11",
30
30
  "vue": "3.3.4",
31
31
  "tslib": "2.5.0",
32
32
  "typescript": "5.0.4",