@omnia/fx 8.0.196-dev → 8.0.198-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. package/internal-do-not-import-from-here/core/LocalStorage.d.ts +3 -2
  2. package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
  3. package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
  4. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Listing.d.ts +2 -6
  5. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateDetail.d.ts +2 -2
  6. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts +2 -2
  7. package/internal-do-not-import-from-here/ux/appprovisioning/apppropertiesinput/AppPropertiesInput.d.ts +5 -5
  8. package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceEnterprisePropertiesVueComponent.d.ts +5 -5
  9. package/internal-do-not-import-from-here/ux/docs/Docs.d.ts +1 -0
  10. package/internal-do-not-import-from-here/ux/docs/omfx/index.d.ts +1 -0
  11. package/internal-do-not-import-from-here/ux/docs/omfx/models/Guid.md.d.ts +1 -0
  12. package/internal-do-not-import-from-here/ux/docs/omfx/models/index.d.ts +1 -0
  13. package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.d.ts +30 -30
  14. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +47 -85
  15. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.d.ts +47 -49
  16. package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileDisplay.d.ts +48 -49
  17. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +47 -92
  18. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +47 -92
  19. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +48 -46
  20. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +48 -46
  21. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +81 -129
  22. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +48 -46
  23. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.d.ts +48 -49
  24. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +48 -49
  25. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +48 -49
  26. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.d.ts +48 -46
  27. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +48 -49
  28. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +48 -49
  29. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +47 -92
  30. package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.d.ts +47 -204
  31. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +48 -49
  32. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +47 -92
  33. package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeDisplay.d.ts +48 -49
  34. package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +80 -460
  35. package/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +2 -2
  36. package/package.json +4 -4
@@ -1,50 +1,49 @@
1
- import { IPropertyDisplayRenderer, TextDisplaySettings, TextPropertyDefinition, TextPropertyValue } from "@omnia/fx-models";
2
- export type TextDisplayProps = IPropertyDisplayRenderer<TextPropertyDefinition> & {
3
- "v-model": TextPropertyValue;
4
- };
5
- declare const _default: {
6
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
7
- modelValue: import("vue").Prop<TextPropertyValue, TextPropertyValue>;
8
- displaySettings: import("vue").Prop<TextDisplaySettings, TextDisplaySettings>;
9
- setupSettings?: import("vue").Prop<never, never>;
10
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
11
- "v-model": import("vue").Prop<TextPropertyValue, TextPropertyValue>;
12
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
13
- modelValue: import("vue").Prop<TextPropertyValue, TextPropertyValue>;
14
- displaySettings: import("vue").Prop<TextDisplaySettings, TextDisplaySettings>;
15
- setupSettings?: import("vue").Prop<never, never>;
16
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
17
- "v-model": import("vue").Prop<TextPropertyValue, TextPropertyValue>;
18
- }>>, {}, true, {}, {}, {
19
- P: {};
20
- B: {};
21
- D: {};
22
- C: {};
23
- M: {};
24
- Defaults: {};
25
- }, Readonly<import("vue").ExtractPropTypes<{
26
- modelValue: import("vue").Prop<TextPropertyValue, TextPropertyValue>;
27
- displaySettings: import("vue").Prop<TextDisplaySettings, TextDisplaySettings>;
28
- setupSettings?: import("vue").Prop<never, never>;
29
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
30
- "v-model": import("vue").Prop<TextPropertyValue, TextPropertyValue>;
31
- }>>, {}, {}, {}, {}, {}>;
32
- __isFragment?: never;
33
- __isTeleport?: never;
34
- __isSuspense?: never;
35
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
36
- modelValue: import("vue").Prop<TextPropertyValue, TextPropertyValue>;
37
- displaySettings: import("vue").Prop<TextDisplaySettings, TextDisplaySettings>;
38
- setupSettings?: import("vue").Prop<never, never>;
39
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
40
- "v-model": import("vue").Prop<TextPropertyValue, TextPropertyValue>;
41
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
42
- propsDefinition: Omit<Readonly<{} & {
43
- "v-model"?: TextPropertyValue;
44
- modelValue?: TextPropertyValue;
45
- displaySettings?: TextDisplaySettings;
46
- setupSettings?: never;
47
- renderTextOnly?: boolean;
48
- }>, never>;
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 { TimeDisplayStyles } from "./TimeDisplay.css";
2
- import { IPropertyDisplayRenderer, TimeDisplaySettings, TimePropertyDefinition, TimePropertyValue } from "@omnia/fx-models";
3
- export type TimeDisplayProps = IPropertyDisplayRenderer<TimePropertyDefinition> & {
4
- styles: typeof TimeDisplayStyles;
5
- } & {
6
- "v-model": TimePropertyValue;
7
- };
8
- declare const _default: {
9
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
10
- modelValue: import("vue").Prop<TimePropertyValue, TimePropertyValue>;
11
- displaySettings: import("vue").Prop<TimeDisplaySettings, TimeDisplaySettings>;
12
- setupSettings?: import("vue").Prop<never, never>;
13
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
14
- styles: import("vue").Prop<{
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
- "v-model": import("vue").Prop<TimePropertyValue, TimePropertyValue>;
80
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
81
- propsDefinition: Omit<Readonly<{} & {
82
- styles?: {
83
- container: import("typestyle/lib/types").NestedCSSProperties;
84
- itemHeader: import("typestyle/lib/types").NestedCSSProperties;
85
- item: import("typestyle/lib/types").NestedCSSProperties;
86
- };
87
- "v-model"?: TimePropertyValue;
88
- modelValue?: TimePropertyValue;
89
- displaySettings?: TimeDisplaySettings;
90
- setupSettings?: never;
91
- renderTextOnly?: boolean;
92
- }>, never>;
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;
@@ -1,50 +1,49 @@
1
- import { IPropertyDisplayRenderer, PropertyValueType, UserTypePropertyDefinition } from "@omnia/fx-models";
2
- export type TextDisplayProps = IPropertyDisplayRenderer<UserTypePropertyDefinition> & {
3
- "v-model": PropertyValueType<UserTypePropertyDefinition>;
4
- };
5
- declare const _default: {
6
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
7
- modelValue: import("vue").Prop<import("@omnia/fx-models").UserTypePropertyValue, import("@omnia/fx-models").UserTypePropertyValue>;
8
- displaySettings: import("vue").Prop<import("@omnia/fx-models").UserTypeDisplaySettings, import("@omnia/fx-models").UserTypeDisplaySettings>;
9
- setupSettings?: import("vue").Prop<never, never>;
10
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
11
- "v-model": import("vue").Prop<import("@omnia/fx-models").UserTypePropertyValue, import("@omnia/fx-models").UserTypePropertyValue>;
12
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
13
- modelValue: import("vue").Prop<import("@omnia/fx-models").UserTypePropertyValue, import("@omnia/fx-models").UserTypePropertyValue>;
14
- displaySettings: import("vue").Prop<import("@omnia/fx-models").UserTypeDisplaySettings, import("@omnia/fx-models").UserTypeDisplaySettings>;
15
- setupSettings?: import("vue").Prop<never, never>;
16
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
17
- "v-model": import("vue").Prop<import("@omnia/fx-models").UserTypePropertyValue, import("@omnia/fx-models").UserTypePropertyValue>;
18
- }>>, {}, true, {}, {}, {
19
- P: {};
20
- B: {};
21
- D: {};
22
- C: {};
23
- M: {};
24
- Defaults: {};
25
- }, Readonly<import("vue").ExtractPropTypes<{
26
- modelValue: import("vue").Prop<import("@omnia/fx-models").UserTypePropertyValue, import("@omnia/fx-models").UserTypePropertyValue>;
27
- displaySettings: import("vue").Prop<import("@omnia/fx-models").UserTypeDisplaySettings, import("@omnia/fx-models").UserTypeDisplaySettings>;
28
- setupSettings?: import("vue").Prop<never, never>;
29
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
30
- "v-model": import("vue").Prop<import("@omnia/fx-models").UserTypePropertyValue, import("@omnia/fx-models").UserTypePropertyValue>;
31
- }>>, {}, {}, {}, {}, {}>;
32
- __isFragment?: never;
33
- __isTeleport?: never;
34
- __isSuspense?: never;
35
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
36
- modelValue: import("vue").Prop<import("@omnia/fx-models").UserTypePropertyValue, import("@omnia/fx-models").UserTypePropertyValue>;
37
- displaySettings: import("vue").Prop<import("@omnia/fx-models").UserTypeDisplaySettings, import("@omnia/fx-models").UserTypeDisplaySettings>;
38
- setupSettings?: import("vue").Prop<never, never>;
39
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
40
- "v-model": import("vue").Prop<import("@omnia/fx-models").UserTypePropertyValue, import("@omnia/fx-models").UserTypePropertyValue>;
41
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
42
- propsDefinition: Omit<Readonly<{} & {
43
- "v-model"?: import("@omnia/fx-models").UserTypePropertyValue;
44
- modelValue?: import("@omnia/fx-models").UserTypePropertyValue;
45
- displaySettings?: import("@omnia/fx-models").UserTypeDisplaySettings;
46
- setupSettings?: never;
47
- renderTextOnly?: boolean;
48
- }>, never>;
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;