@omnia/fx 8.0.197-dev → 8.0.199-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/core/LocalStorage.d.ts +3 -2
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Listing.d.ts +2 -6
- package/internal-do-not-import-from-here/ux/docs/Docs.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/models/Guid.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +47 -85
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.d.ts +47 -49
- package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileDisplay.d.ts +48 -49
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +47 -92
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +47 -92
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +48 -46
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +48 -46
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +81 -129
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +48 -46
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.d.ts +48 -49
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +48 -49
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +48 -49
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.d.ts +48 -46
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +48 -49
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +48 -49
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +47 -92
- package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.d.ts +47 -204
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +48 -49
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +47 -92
- package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeDisplay.d.ts +48 -49
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +80 -460
- package/package.json +4 -4
package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
2
2
|
import { IdentityPropertyDefinition, IdentityPropertyDisplaySettings, IdentityPropertyValue, IPropertyDisplayRenderer, IResolvedIdentity } from "@omnia/fx-models";
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
export type IdentityDisplaySlots = {
|
@@ -8,145 +8,97 @@ export type IdentityDisplaySlots = {
|
|
8
8
|
}) => VNodeChild;
|
9
9
|
};
|
10
10
|
};
|
11
|
-
export type IdentityDisplayProps = IPropertyDisplayRenderer<IdentityPropertyDefinition
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
inline: import("typestyle/lib/types").NestedCSSProperties;
|
27
|
-
}, {
|
28
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
29
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
30
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
31
|
-
inline: import("typestyle/lib/types").NestedCSSProperties;
|
32
|
-
}>;
|
33
|
-
"v-slots": import("vue").Prop<{
|
34
|
-
renderer?: (renderProps: {
|
35
|
-
identities: IResolvedIdentity[];
|
36
|
-
}) => VNodeChild;
|
37
|
-
}, {
|
38
|
-
renderer?: (renderProps: {
|
39
|
-
identities: IResolvedIdentity[];
|
40
|
-
}) => VNodeChild;
|
41
|
-
}>;
|
42
|
-
"v-model": import("vue").Prop<IdentityPropertyValue, IdentityPropertyValue>;
|
43
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
44
|
-
modelValue: import("vue").Prop<IdentityPropertyValue, IdentityPropertyValue>;
|
45
|
-
displaySettings: import("vue").Prop<IdentityPropertyDisplaySettings, IdentityPropertyDisplaySettings>;
|
46
|
-
setupSettings?: import("vue").Prop<never, never>;
|
47
|
-
renderTextOnly?: import("vue").Prop<boolean, boolean>;
|
48
|
-
styles: import("vue").Prop<{
|
49
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
50
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
51
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
52
|
-
inline: import("typestyle/lib/types").NestedCSSProperties;
|
53
|
-
}, {
|
54
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
55
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
56
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
57
|
-
inline: import("typestyle/lib/types").NestedCSSProperties;
|
58
|
-
}>;
|
59
|
-
"v-slots": import("vue").Prop<{
|
60
|
-
renderer?: (renderProps: {
|
61
|
-
identities: IResolvedIdentity[];
|
62
|
-
}) => VNodeChild;
|
63
|
-
}, {
|
64
|
-
renderer?: (renderProps: {
|
65
|
-
identities: IResolvedIdentity[];
|
66
|
-
}) => VNodeChild;
|
67
|
-
}>;
|
68
|
-
"v-model": import("vue").Prop<IdentityPropertyValue, IdentityPropertyValue>;
|
69
|
-
}>>, {}, true, {}, {}, {
|
70
|
-
P: {};
|
71
|
-
B: {};
|
72
|
-
D: {};
|
73
|
-
C: {};
|
74
|
-
M: {};
|
75
|
-
Defaults: {};
|
76
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
77
|
-
modelValue: import("vue").Prop<IdentityPropertyValue, IdentityPropertyValue>;
|
78
|
-
displaySettings: import("vue").Prop<IdentityPropertyDisplaySettings, IdentityPropertyDisplaySettings>;
|
79
|
-
setupSettings?: import("vue").Prop<never, never>;
|
80
|
-
renderTextOnly?: import("vue").Prop<boolean, boolean>;
|
81
|
-
styles: import("vue").Prop<{
|
82
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
83
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
84
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
85
|
-
inline: import("typestyle/lib/types").NestedCSSProperties;
|
86
|
-
}, {
|
87
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
88
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
89
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
90
|
-
inline: import("typestyle/lib/types").NestedCSSProperties;
|
91
|
-
}>;
|
92
|
-
"v-slots": import("vue").Prop<{
|
93
|
-
renderer?: (renderProps: {
|
94
|
-
identities: IResolvedIdentity[];
|
95
|
-
}) => VNodeChild;
|
96
|
-
}, {
|
97
|
-
renderer?: (renderProps: {
|
98
|
-
identities: IResolvedIdentity[];
|
99
|
-
}) => VNodeChild;
|
100
|
-
}>;
|
101
|
-
"v-model": import("vue").Prop<IdentityPropertyValue, IdentityPropertyValue>;
|
102
|
-
}>>, {}, {}, {}, {}, {}>;
|
103
|
-
__isFragment?: never;
|
104
|
-
__isTeleport?: never;
|
105
|
-
__isSuspense?: never;
|
106
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
107
|
-
modelValue: import("vue").Prop<IdentityPropertyValue, IdentityPropertyValue>;
|
108
|
-
displaySettings: import("vue").Prop<IdentityPropertyDisplaySettings, IdentityPropertyDisplaySettings>;
|
109
|
-
setupSettings?: import("vue").Prop<never, never>;
|
110
|
-
renderTextOnly?: import("vue").Prop<boolean, boolean>;
|
111
|
-
styles: import("vue").Prop<{
|
112
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
113
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
114
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
115
|
-
inline: import("typestyle/lib/types").NestedCSSProperties;
|
116
|
-
}, {
|
11
|
+
export type IdentityDisplayProps = IPropertyDisplayRenderer<IdentityPropertyDefinition>;
|
12
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
13
|
+
"v-model"?: IdentityPropertyValue;
|
14
|
+
} & {
|
15
|
+
"onUpdate:modelValue"?: (value: IdentityPropertyValue) => void;
|
16
|
+
} & {
|
17
|
+
modelValue?: IdentityPropertyValue;
|
18
|
+
} & {
|
19
|
+
displaySettings?: IdentityPropertyDisplaySettings;
|
20
|
+
} & {
|
21
|
+
renderTextOnly?: boolean;
|
22
|
+
} & {
|
23
|
+
persistentLabels?: boolean;
|
24
|
+
} & {
|
25
|
+
styles?: {
|
117
26
|
container: import("typestyle/lib/types").NestedCSSProperties;
|
118
27
|
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
119
28
|
item: import("typestyle/lib/types").NestedCSSProperties;
|
120
29
|
inline: import("typestyle/lib/types").NestedCSSProperties;
|
30
|
+
};
|
31
|
+
} & DefineSlot<"renderer", (resolvedIdentity: IResolvedIdentity) => VNodeChild> & DefineSlot<"renderer", (renderProps: {
|
32
|
+
identities: Array<IResolvedIdentity>;
|
33
|
+
}) => VNodeChild>>) => {
|
34
|
+
$: import("vue").ComponentInternalInstance;
|
35
|
+
$data: {};
|
36
|
+
$props: {};
|
37
|
+
$attrs: {
|
38
|
+
[x: string]: unknown;
|
39
|
+
};
|
40
|
+
$refs: {
|
41
|
+
[x: string]: unknown;
|
42
|
+
};
|
43
|
+
$slots: Readonly<{
|
44
|
+
[name: string]: import("vue").Slot<any>;
|
121
45
|
}>;
|
122
|
-
"
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
}, {
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
46
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
47
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
48
|
+
$emit: (event: string, ...args: any[]) => void;
|
49
|
+
$el: any;
|
50
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
51
|
+
beforeCreate?: (() => void) | (() => void)[];
|
52
|
+
created?: (() => void) | (() => void)[];
|
53
|
+
beforeMount?: (() => void) | (() => void)[];
|
54
|
+
mounted?: (() => void) | (() => void)[];
|
55
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
56
|
+
updated?: (() => void) | (() => void)[];
|
57
|
+
activated?: (() => void) | (() => void)[];
|
58
|
+
deactivated?: (() => void) | (() => void)[];
|
59
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
60
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
61
|
+
destroyed?: (() => void) | (() => void)[];
|
62
|
+
unmounted?: (() => void) | (() => void)[];
|
63
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
64
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
65
|
+
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)[];
|
66
|
+
};
|
67
|
+
$forceUpdate: () => void;
|
68
|
+
$nextTick: typeof import("vue").nextTick;
|
69
|
+
$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;
|
70
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
71
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
72
|
+
"v-model"?: IdentityPropertyValue;
|
73
|
+
} & {
|
74
|
+
"onUpdate:modelValue"?: (value: IdentityPropertyValue) => void;
|
75
|
+
} & {
|
76
|
+
modelValue?: IdentityPropertyValue;
|
77
|
+
} & {
|
78
|
+
displaySettings?: IdentityPropertyDisplaySettings;
|
79
|
+
} & {
|
80
|
+
renderTextOnly?: boolean;
|
81
|
+
} & {
|
82
|
+
persistentLabels?: boolean;
|
83
|
+
} & {
|
134
84
|
styles?: {
|
135
85
|
container: import("typestyle/lib/types").NestedCSSProperties;
|
136
86
|
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
137
87
|
item: import("typestyle/lib/types").NestedCSSProperties;
|
138
88
|
inline: import("typestyle/lib/types").NestedCSSProperties;
|
139
89
|
};
|
140
|
-
|
141
|
-
|
90
|
+
} & DefineSlot<"renderer", (resolvedIdentity: IResolvedIdentity) => VNodeChild> & DefineSlot<"renderer", (renderProps: {
|
91
|
+
identities: Array<IResolvedIdentity>;
|
92
|
+
}) => VNodeChild>> & {
|
142
93
|
"v-slots"?: {
|
143
|
-
|
144
|
-
|
145
|
-
|
94
|
+
default?: import("vue").Slot;
|
95
|
+
} & {
|
96
|
+
renderer?: ((resolvedIdentity: IResolvedIdentity) => VNodeChild) & ((renderProps: {
|
97
|
+
identities: Array<IResolvedIdentity>;
|
98
|
+
}) => VNodeChild);
|
146
99
|
};
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
};
|
100
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "styles" | "v-model" | "onUpdate:modelValue" | "modelValue" | "displaySettings" | "renderTextOnly" | "persistentLabels">;
|
101
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
102
|
+
[key: string]: any;
|
103
|
+
}>;
|
152
104
|
export default _default;
|
@@ -1,47 +1,49 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
}
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
}
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
}
|
46
|
-
}
|
1
|
+
import { ImagePropertyDefinition, IPropertyDisplayRenderer } from "@omnia/fx-models";
|
2
|
+
type ImageDisplayProps = IPropertyDisplayRenderer<ImagePropertyDefinition>;
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<ImageDisplayProps>) => {
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
5
|
+
$data: {};
|
6
|
+
$props: {};
|
7
|
+
$attrs: {
|
8
|
+
[x: string]: unknown;
|
9
|
+
};
|
10
|
+
$refs: {
|
11
|
+
[x: string]: unknown;
|
12
|
+
};
|
13
|
+
$slots: Readonly<{
|
14
|
+
[name: string]: import("vue").Slot<any>;
|
15
|
+
}>;
|
16
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
17
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
18
|
+
$emit: (event: string, ...args: any[]) => void;
|
19
|
+
$el: any;
|
20
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
21
|
+
beforeCreate?: (() => void) | (() => void)[];
|
22
|
+
created?: (() => void) | (() => void)[];
|
23
|
+
beforeMount?: (() => void) | (() => void)[];
|
24
|
+
mounted?: (() => void) | (() => void)[];
|
25
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
26
|
+
updated?: (() => void) | (() => void)[];
|
27
|
+
activated?: (() => void) | (() => void)[];
|
28
|
+
deactivated?: (() => void) | (() => void)[];
|
29
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
30
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
31
|
+
destroyed?: (() => void) | (() => void)[];
|
32
|
+
unmounted?: (() => void) | (() => void)[];
|
33
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
34
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
35
|
+
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)[];
|
36
|
+
};
|
37
|
+
$forceUpdate: () => void;
|
38
|
+
$nextTick: typeof import("vue").nextTick;
|
39
|
+
$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;
|
40
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
41
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<ImageDisplayProps> & {
|
42
|
+
"v-slots"?: {
|
43
|
+
default?: import("vue").Slot;
|
44
|
+
} & {};
|
45
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof ImageDisplayProps>;
|
46
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
47
|
+
[key: string]: any;
|
48
|
+
}>;
|
47
49
|
export default _default;
|
@@ -1,50 +1,49 @@
|
|
1
|
-
import {
|
2
|
-
export type IntegerDisplayProps = IPropertyDisplayRenderer<IntegerPropertyDefinition
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
}
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
}
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
};
|
1
|
+
import { IntegerPropertyDefinition, IPropertyDisplayRenderer } from "@omnia/fx-models";
|
2
|
+
export type IntegerDisplayProps = IPropertyDisplayRenderer<IntegerPropertyDefinition>;
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<IntegerDisplayProps>) => {
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
5
|
+
$data: {};
|
6
|
+
$props: {};
|
7
|
+
$attrs: {
|
8
|
+
[x: string]: unknown;
|
9
|
+
};
|
10
|
+
$refs: {
|
11
|
+
[x: string]: unknown;
|
12
|
+
};
|
13
|
+
$slots: Readonly<{
|
14
|
+
[name: string]: import("vue").Slot<any>;
|
15
|
+
}>;
|
16
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
17
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
18
|
+
$emit: (event: string, ...args: any[]) => void;
|
19
|
+
$el: any;
|
20
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
21
|
+
beforeCreate?: (() => void) | (() => void)[];
|
22
|
+
created?: (() => void) | (() => void)[];
|
23
|
+
beforeMount?: (() => void) | (() => void)[];
|
24
|
+
mounted?: (() => void) | (() => void)[];
|
25
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
26
|
+
updated?: (() => void) | (() => void)[];
|
27
|
+
activated?: (() => void) | (() => void)[];
|
28
|
+
deactivated?: (() => void) | (() => void)[];
|
29
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
30
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
31
|
+
destroyed?: (() => void) | (() => void)[];
|
32
|
+
unmounted?: (() => void) | (() => void)[];
|
33
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
34
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
35
|
+
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)[];
|
36
|
+
};
|
37
|
+
$forceUpdate: () => void;
|
38
|
+
$nextTick: typeof import("vue").nextTick;
|
39
|
+
$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;
|
40
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
41
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<IntegerDisplayProps> & {
|
42
|
+
"v-slots"?: {
|
43
|
+
default?: import("vue").Slot;
|
44
|
+
} & {};
|
45
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof IntegerDisplayProps>;
|
46
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
47
|
+
[key: string]: any;
|
48
|
+
}>;
|
50
49
|
export default _default;
|
package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts
CHANGED
@@ -1,50 +1,49 @@
|
|
1
|
-
import { IPropertyDisplayRenderer,
|
2
|
-
export type LanguageDisplayProps = IPropertyDisplayRenderer<LanguagePropertyDefinition
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
}
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
}
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
};
|
1
|
+
import { IPropertyDisplayRenderer, LanguagePropertyDefinition } from "@omnia/fx-models";
|
2
|
+
export type LanguageDisplayProps = IPropertyDisplayRenderer<LanguagePropertyDefinition>;
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<LanguageDisplayProps>) => {
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
5
|
+
$data: {};
|
6
|
+
$props: {};
|
7
|
+
$attrs: {
|
8
|
+
[x: string]: unknown;
|
9
|
+
};
|
10
|
+
$refs: {
|
11
|
+
[x: string]: unknown;
|
12
|
+
};
|
13
|
+
$slots: Readonly<{
|
14
|
+
[name: string]: import("vue").Slot<any>;
|
15
|
+
}>;
|
16
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
17
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
18
|
+
$emit: (event: string, ...args: any[]) => void;
|
19
|
+
$el: any;
|
20
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
21
|
+
beforeCreate?: (() => void) | (() => void)[];
|
22
|
+
created?: (() => void) | (() => void)[];
|
23
|
+
beforeMount?: (() => void) | (() => void)[];
|
24
|
+
mounted?: (() => void) | (() => void)[];
|
25
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
26
|
+
updated?: (() => void) | (() => void)[];
|
27
|
+
activated?: (() => void) | (() => void)[];
|
28
|
+
deactivated?: (() => void) | (() => void)[];
|
29
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
30
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
31
|
+
destroyed?: (() => void) | (() => void)[];
|
32
|
+
unmounted?: (() => void) | (() => void)[];
|
33
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
34
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
35
|
+
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)[];
|
36
|
+
};
|
37
|
+
$forceUpdate: () => void;
|
38
|
+
$nextTick: typeof import("vue").nextTick;
|
39
|
+
$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;
|
40
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
41
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<LanguageDisplayProps> & {
|
42
|
+
"v-slots"?: {
|
43
|
+
default?: import("vue").Slot;
|
44
|
+
} & {};
|
45
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof LanguageDisplayProps>;
|
46
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
47
|
+
[key: string]: any;
|
48
|
+
}>;
|
50
49
|
export default _default;
|