@omnia/fx 8.0.103-dev → 8.0.104-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.
@@ -1,3 +1,4 @@
|
|
1
|
+
import { IIcon } from "@omnia/fx-models";
|
1
2
|
declare const _default: {
|
2
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
3
4
|
description: {
|
@@ -16,9 +17,9 @@ declare const _default: {
|
|
16
17
|
type: import("vue").PropType<string>;
|
17
18
|
};
|
18
19
|
icon: {
|
19
|
-
type: import("vue").PropType<
|
20
|
+
type: import("vue").PropType<IIcon>;
|
20
21
|
} & {
|
21
|
-
type: import("vue").PropType<
|
22
|
+
type: import("vue").PropType<IIcon>;
|
22
23
|
};
|
23
24
|
colorSchemaType?: any;
|
24
25
|
container?: any;
|
@@ -40,9 +41,9 @@ declare const _default: {
|
|
40
41
|
type: import("vue").PropType<string>;
|
41
42
|
};
|
42
43
|
icon: {
|
43
|
-
type: import("vue").PropType<
|
44
|
+
type: import("vue").PropType<IIcon>;
|
44
45
|
} & {
|
45
|
-
type: import("vue").PropType<
|
46
|
+
type: import("vue").PropType<IIcon>;
|
46
47
|
};
|
47
48
|
colorSchemaType?: any;
|
48
49
|
container?: any;
|
@@ -75,9 +76,9 @@ declare const _default: {
|
|
75
76
|
type: import("vue").PropType<string>;
|
76
77
|
};
|
77
78
|
icon: {
|
78
|
-
type: import("vue").PropType<
|
79
|
+
type: import("vue").PropType<IIcon>;
|
79
80
|
} & {
|
80
|
-
type: import("vue").PropType<
|
81
|
+
type: import("vue").PropType<IIcon>;
|
81
82
|
};
|
82
83
|
colorSchemaType?: any;
|
83
84
|
container?: any;
|
@@ -107,9 +108,9 @@ declare const _default: {
|
|
107
108
|
type: import("vue").PropType<string>;
|
108
109
|
};
|
109
110
|
icon: {
|
110
|
-
type: import("vue").PropType<
|
111
|
+
type: import("vue").PropType<IIcon>;
|
111
112
|
} & {
|
112
|
-
type: import("vue").PropType<
|
113
|
+
type: import("vue").PropType<IIcon>;
|
113
114
|
};
|
114
115
|
colorSchemaType?: any;
|
115
116
|
container?: any;
|
@@ -126,7 +127,7 @@ declare const _default: {
|
|
126
127
|
} & {
|
127
128
|
title?: string;
|
128
129
|
text?: string;
|
129
|
-
icon?:
|
130
|
+
icon?: IIcon;
|
130
131
|
description?: string;
|
131
132
|
}>, never>;
|
132
133
|
};
|
@@ -1,6 +1,35 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
import { MultiTextInputItem, ValidationRule } from "../models";
|
2
|
+
declare const _default: <T1 extends unknown, T2 extends unknown>(props: {
|
3
|
+
"v-model"?: MultiTextInputItem<T1>;
|
4
|
+
} & {
|
5
|
+
"onUpdate:modelValue"?: (value: MultiTextInputItem<T1>) => void;
|
6
|
+
} & {
|
7
|
+
modelValue?: MultiTextInputItem<T1>;
|
8
|
+
} & {
|
9
|
+
mode?: "textarea" | "textfield";
|
10
|
+
} & {
|
11
|
+
label?: string;
|
12
|
+
} & {
|
13
|
+
disabled?: boolean;
|
14
|
+
} & {
|
15
|
+
openMenu?: boolean;
|
16
|
+
} & {
|
17
|
+
items?: MultiTextInputItem<T2>[];
|
18
|
+
} & {
|
19
|
+
itemValue?: string;
|
20
|
+
} & {
|
21
|
+
defaultValueItem?: MultiTextInputItem<T2>;
|
22
|
+
} & {
|
23
|
+
autofocus?: boolean;
|
24
|
+
} & {
|
25
|
+
hideEditGrid?: boolean;
|
26
|
+
} & {
|
27
|
+
rules?: ValidationRule[];
|
28
|
+
} & {
|
29
|
+
isAppendIcon?: boolean;
|
30
|
+
} & {
|
31
|
+
"onUpdate:modelValue"?: (value: MultiTextInputItem<T1>) => any;
|
32
|
+
onSelectItem?: (item: MultiTextInputItem<T2>, index: number) => any;
|
4
33
|
} & {
|
5
34
|
"v-slots"?: {
|
6
35
|
default?: import("vue").Slot;
|
@@ -43,9 +72,37 @@ declare const _default: (props: Record<string, any> & {
|
|
43
72
|
$nextTick: typeof import("vue").nextTick;
|
44
73
|
$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;
|
45
74
|
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
46
|
-
propsDefinition:
|
47
|
-
"
|
48
|
-
|
75
|
+
propsDefinition: {
|
76
|
+
"v-model"?: MultiTextInputItem<T1>;
|
77
|
+
} & {
|
78
|
+
"onUpdate:modelValue"?: (value: MultiTextInputItem<T1>) => void;
|
79
|
+
} & {
|
80
|
+
modelValue?: MultiTextInputItem<T1>;
|
81
|
+
} & {
|
82
|
+
mode?: "textarea" | "textfield";
|
83
|
+
} & {
|
84
|
+
label?: string;
|
85
|
+
} & {
|
86
|
+
disabled?: boolean;
|
87
|
+
} & {
|
88
|
+
openMenu?: boolean;
|
89
|
+
} & {
|
90
|
+
items?: MultiTextInputItem<T2>[];
|
91
|
+
} & {
|
92
|
+
itemValue?: string;
|
93
|
+
} & {
|
94
|
+
defaultValueItem?: MultiTextInputItem<T2>;
|
95
|
+
} & {
|
96
|
+
autofocus?: boolean;
|
97
|
+
} & {
|
98
|
+
hideEditGrid?: boolean;
|
99
|
+
} & {
|
100
|
+
rules?: ValidationRule[];
|
101
|
+
} & {
|
102
|
+
isAppendIcon?: boolean;
|
103
|
+
} & {
|
104
|
+
"onUpdate:modelValue"?: (value: MultiTextInputItem<T1>) => any;
|
105
|
+
onSelectItem?: (item: MultiTextInputItem<T2>, index: number) => any;
|
49
106
|
};
|
50
107
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
51
108
|
[key: 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.
|
4
|
+
"version": "8.0.104-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.104-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|