@omnia/fx 8.0.84-vnext → 8.0.85-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.
@@ -56,6 +56,8 @@ declare const _default: {
|
|
56
56
|
readonly direction?: "horizontal" | "vertical";
|
57
57
|
readonly variant?: "default" | "prominent";
|
58
58
|
readonly modelValue?: any;
|
59
|
+
readonly hint?: string;
|
60
|
+
readonly persistentHint?: boolean;
|
59
61
|
"onUpdate:modelValue"?: ((value: any) => any) & ((value: any) => any);
|
60
62
|
readonly "v-model"?: any;
|
61
63
|
readonly min?: string | number;
|
@@ -83,6 +85,12 @@ declare const _default: {
|
|
83
85
|
direction: {
|
84
86
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
85
87
|
};
|
88
|
+
persistentHint: {
|
89
|
+
type: import("vue").PropType<boolean>;
|
90
|
+
};
|
91
|
+
hint: {
|
92
|
+
type: import("vue").PropType<string>;
|
93
|
+
};
|
86
94
|
noThumbLabel: {
|
87
95
|
type: import("vue").PropType<boolean>;
|
88
96
|
};
|
@@ -155,6 +163,12 @@ declare const _default: {
|
|
155
163
|
direction: {
|
156
164
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
157
165
|
};
|
166
|
+
persistentHint: {
|
167
|
+
type: import("vue").PropType<boolean>;
|
168
|
+
};
|
169
|
+
hint: {
|
170
|
+
type: import("vue").PropType<string>;
|
171
|
+
};
|
158
172
|
noThumbLabel: {
|
159
173
|
type: import("vue").PropType<boolean>;
|
160
174
|
};
|
@@ -203,6 +217,12 @@ declare const _default: {
|
|
203
217
|
direction: {
|
204
218
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
205
219
|
};
|
220
|
+
persistentHint: {
|
221
|
+
type: import("vue").PropType<boolean>;
|
222
|
+
};
|
223
|
+
hint: {
|
224
|
+
type: import("vue").PropType<string>;
|
225
|
+
};
|
206
226
|
noThumbLabel: {
|
207
227
|
type: import("vue").PropType<boolean>;
|
208
228
|
};
|
@@ -261,6 +281,8 @@ declare const _default: {
|
|
261
281
|
direction?: "horizontal" | "vertical";
|
262
282
|
variant?: "default" | "prominent";
|
263
283
|
modelValue?: any;
|
284
|
+
hint?: string;
|
285
|
+
persistentHint?: boolean;
|
264
286
|
"onUpdate:modelValue"?: (value: any) => any;
|
265
287
|
"v-model"?: any;
|
266
288
|
min?: string | number;
|
@@ -0,0 +1,91 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: {
|
6
|
+
style?: unknown;
|
7
|
+
class?: unknown;
|
8
|
+
key?: string | number | symbol;
|
9
|
+
ref?: import("vue").VNodeRef;
|
10
|
+
ref_for?: boolean;
|
11
|
+
ref_key?: string;
|
12
|
+
onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
13
|
+
[key: string]: any;
|
14
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
15
|
+
[key: string]: any;
|
16
|
+
}>) => void)[];
|
17
|
+
onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
18
|
+
[key: string]: any;
|
19
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
20
|
+
[key: string]: any;
|
21
|
+
}>) => void)[];
|
22
|
+
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
23
|
+
[key: string]: any;
|
24
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
25
|
+
[key: string]: any;
|
26
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
27
|
+
[key: string]: any;
|
28
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
29
|
+
[key: string]: any;
|
30
|
+
}>) => void)[];
|
31
|
+
onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
32
|
+
[key: string]: any;
|
33
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
34
|
+
[key: string]: any;
|
35
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
36
|
+
[key: string]: any;
|
37
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
38
|
+
[key: string]: any;
|
39
|
+
}>) => void)[];
|
40
|
+
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
41
|
+
[key: string]: any;
|
42
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
43
|
+
[key: string]: any;
|
44
|
+
}>) => void)[];
|
45
|
+
onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
46
|
+
[key: string]: any;
|
47
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
48
|
+
[key: string]: any;
|
49
|
+
}>) => void)[];
|
50
|
+
};
|
51
|
+
$attrs: {
|
52
|
+
[x: string]: unknown;
|
53
|
+
};
|
54
|
+
$refs: {
|
55
|
+
[x: string]: unknown;
|
56
|
+
};
|
57
|
+
$slots: Readonly<{
|
58
|
+
[name: string]: import("vue").Slot<any>;
|
59
|
+
}>;
|
60
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
61
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
62
|
+
$emit: (event: string, ...args: any[]) => void;
|
63
|
+
$el: any;
|
64
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
65
|
+
beforeCreate?: (() => void) | (() => void)[];
|
66
|
+
created?: (() => void) | (() => void)[];
|
67
|
+
beforeMount?: (() => void) | (() => void)[];
|
68
|
+
mounted?: (() => void) | (() => void)[];
|
69
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
70
|
+
updated?: (() => void) | (() => void)[];
|
71
|
+
activated?: (() => void) | (() => void)[];
|
72
|
+
deactivated?: (() => void) | (() => void)[];
|
73
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
74
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
75
|
+
destroyed?: (() => void) | (() => void)[];
|
76
|
+
unmounted?: (() => void) | (() => void)[];
|
77
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
78
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
79
|
+
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)[];
|
80
|
+
};
|
81
|
+
$forceUpdate: () => void;
|
82
|
+
$nextTick: typeof import("vue").nextTick;
|
83
|
+
$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;
|
84
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
85
|
+
__isFragment?: never;
|
86
|
+
__isTeleport?: never;
|
87
|
+
__isSuspense?: never;
|
88
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
89
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
90
|
+
};
|
91
|
+
export default _default;
|
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.85-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.
|
23
|
+
"@omnia/fx-models": "8.0.85-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.
|
29
|
+
"vuetify": "3.3.12",
|
30
30
|
"vue": "3.3.4",
|
31
31
|
"tslib": "2.5.0",
|
32
32
|
"typescript": "5.0.4",
|