@omnia/fx 8.0.196-dev → 8.0.198-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/app/management/tabs/templates/TemplateDetail.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/apppropertiesinput/AppPropertiesInput.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceEnterprisePropertiesVueComponent.d.ts +5 -5
- 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/oxide/column/ColumnGrid.d.ts +30 -30
- 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/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +2 -2
- package/package.json +4 -4
@@ -1,50 +1,49 @@
|
|
1
|
-
import { IPropertyDisplayRenderer,
|
2
|
-
export type TextDisplayProps = IPropertyDisplayRenderer<TextPropertyDefinition
|
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, TextPropertyDefinition } from "@omnia/fx-models";
|
2
|
+
export type TextDisplayProps = IPropertyDisplayRenderer<TextPropertyDefinition>;
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<TextDisplayProps>) => {
|
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<TextDisplayProps> & {
|
42
|
+
"v-slots"?: {
|
43
|
+
default?: import("vue").Slot;
|
44
|
+
} & {};
|
45
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof TextDisplayProps>;
|
46
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
47
|
+
[key: string]: any;
|
48
|
+
}>;
|
50
49
|
export default _default;
|
@@ -1,94 +1,49 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
16
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
17
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
18
|
-
}, {
|
19
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
20
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
21
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
22
|
-
}>;
|
23
|
-
"v-model": import("vue").Prop<TimePropertyValue, TimePropertyValue>;
|
24
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
25
|
-
modelValue: import("vue").Prop<TimePropertyValue, TimePropertyValue>;
|
26
|
-
displaySettings: import("vue").Prop<TimeDisplaySettings, TimeDisplaySettings>;
|
27
|
-
setupSettings?: import("vue").Prop<never, never>;
|
28
|
-
renderTextOnly?: import("vue").Prop<boolean, boolean>;
|
29
|
-
styles: import("vue").Prop<{
|
30
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
31
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
32
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
33
|
-
}, {
|
34
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
35
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
36
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
37
|
-
}>;
|
38
|
-
"v-model": import("vue").Prop<TimePropertyValue, TimePropertyValue>;
|
39
|
-
}>>, {}, true, {}, {}, {
|
40
|
-
P: {};
|
41
|
-
B: {};
|
42
|
-
D: {};
|
43
|
-
C: {};
|
44
|
-
M: {};
|
45
|
-
Defaults: {};
|
46
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
47
|
-
modelValue: import("vue").Prop<TimePropertyValue, TimePropertyValue>;
|
48
|
-
displaySettings: import("vue").Prop<TimeDisplaySettings, TimeDisplaySettings>;
|
49
|
-
setupSettings?: import("vue").Prop<never, never>;
|
50
|
-
renderTextOnly?: import("vue").Prop<boolean, boolean>;
|
51
|
-
styles: import("vue").Prop<{
|
52
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
53
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
54
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
55
|
-
}, {
|
56
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
57
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
58
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
59
|
-
}>;
|
60
|
-
"v-model": import("vue").Prop<TimePropertyValue, TimePropertyValue>;
|
61
|
-
}>>, {}, {}, {}, {}, {}>;
|
62
|
-
__isFragment?: never;
|
63
|
-
__isTeleport?: never;
|
64
|
-
__isSuspense?: never;
|
65
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
66
|
-
modelValue: import("vue").Prop<TimePropertyValue, TimePropertyValue>;
|
67
|
-
displaySettings: import("vue").Prop<TimeDisplaySettings, TimeDisplaySettings>;
|
68
|
-
setupSettings?: import("vue").Prop<never, never>;
|
69
|
-
renderTextOnly?: import("vue").Prop<boolean, boolean>;
|
70
|
-
styles: import("vue").Prop<{
|
71
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
72
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
73
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
74
|
-
}, {
|
75
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
76
|
-
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
77
|
-
item: import("typestyle/lib/types").NestedCSSProperties;
|
1
|
+
import { IPropertyDisplayRenderer, TimePropertyDefinition } from "@omnia/fx-models";
|
2
|
+
export type TimeDisplayProps = IPropertyDisplayRenderer<TimePropertyDefinition>;
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<TimeDisplayProps>) => {
|
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>;
|
78
15
|
}>;
|
79
|
-
"
|
80
|
-
}
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
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<TimeDisplayProps> & {
|
42
|
+
"v-slots"?: {
|
43
|
+
default?: import("vue").Slot;
|
44
|
+
} & {};
|
45
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof TimeDisplayProps>;
|
46
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
47
|
+
[key: string]: any;
|
48
|
+
}>;
|
94
49
|
export default _default;
|
package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeDisplay.d.ts
CHANGED
@@ -1,50 +1,49 @@
|
|
1
|
-
import { IPropertyDisplayRenderer,
|
2
|
-
export type TextDisplayProps = IPropertyDisplayRenderer<UserTypePropertyDefinition
|
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, UserTypePropertyDefinition } from "@omnia/fx-models";
|
2
|
+
export type TextDisplayProps = IPropertyDisplayRenderer<UserTypePropertyDefinition>;
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<TextDisplayProps>) => {
|
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<TextDisplayProps> & {
|
42
|
+
"v-slots"?: {
|
43
|
+
default?: import("vue").Slot;
|
44
|
+
} & {};
|
45
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof TextDisplayProps>;
|
46
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
47
|
+
[key: string]: any;
|
48
|
+
}>;
|
50
49
|
export default _default;
|