@omnia/fx 8.0.197-dev → 8.0.198-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) 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/docs/Docs.d.ts +1 -0
  6. package/internal-do-not-import-from-here/ux/docs/omfx/index.d.ts +1 -0
  7. package/internal-do-not-import-from-here/ux/docs/omfx/models/Guid.md.d.ts +1 -0
  8. package/internal-do-not-import-from-here/ux/docs/omfx/models/index.d.ts +1 -0
  9. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +47 -85
  10. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.d.ts +47 -49
  11. package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileDisplay.d.ts +48 -49
  12. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +47 -92
  13. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +47 -92
  14. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +48 -46
  15. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +48 -46
  16. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +81 -129
  17. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +48 -46
  18. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.d.ts +48 -49
  19. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +48 -49
  20. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +48 -49
  21. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.d.ts +48 -46
  22. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +48 -49
  23. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +48 -49
  24. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +47 -92
  25. package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.d.ts +47 -204
  26. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +48 -49
  27. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +47 -92
  28. package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeDisplay.d.ts +48 -49
  29. package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +80 -460
  30. package/package.json +4 -4
@@ -1,94 +1,49 @@
1
- import { DateDisplayStyles } from "./DateDisplay.css";
2
- import { DateDisplaySettings, DatePropertyDefinition, IPropertyDisplayRenderer, PropertyValueType } from "@omnia/fx-models";
3
- export type DateDisplayProps = IPropertyDisplayRenderer<DatePropertyDefinition> & {
4
- styles: typeof DateDisplayStyles;
5
- } & {
6
- "v-model": PropertyValueType<DatePropertyDefinition>;
7
- };
8
- declare const _default: {
9
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
10
- modelValue: import("vue").Prop<import("@omnia/fx-models").DatePropertyValue, import("@omnia/fx-models").DatePropertyValue>;
11
- displaySettings: import("vue").Prop<DateDisplaySettings, DateDisplaySettings>;
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<import("@omnia/fx-models").DatePropertyValue, import("@omnia/fx-models").DatePropertyValue>;
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<import("@omnia/fx-models").DatePropertyValue, import("@omnia/fx-models").DatePropertyValue>;
26
- displaySettings: import("vue").Prop<DateDisplaySettings, DateDisplaySettings>;
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<import("@omnia/fx-models").DatePropertyValue, import("@omnia/fx-models").DatePropertyValue>;
39
- }>>, {}, true, {}, {}, {
40
- P: {};
41
- B: {};
42
- D: {};
43
- C: {};
44
- M: {};
45
- Defaults: {};
46
- }, Readonly<import("vue").ExtractPropTypes<{
47
- modelValue: import("vue").Prop<import("@omnia/fx-models").DatePropertyValue, import("@omnia/fx-models").DatePropertyValue>;
48
- displaySettings: import("vue").Prop<DateDisplaySettings, DateDisplaySettings>;
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<import("@omnia/fx-models").DatePropertyValue, import("@omnia/fx-models").DatePropertyValue>;
61
- }>>, {}, {}, {}, {}, {}>;
62
- __isFragment?: never;
63
- __isTeleport?: never;
64
- __isSuspense?: never;
65
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
66
- modelValue: import("vue").Prop<import("@omnia/fx-models").DatePropertyValue, import("@omnia/fx-models").DatePropertyValue>;
67
- displaySettings: import("vue").Prop<DateDisplaySettings, DateDisplaySettings>;
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 { DatePropertyDefinition, IPropertyDisplayRenderer } from "@omnia/fx-models";
2
+ export type DateDisplayProps = IPropertyDisplayRenderer<DatePropertyDefinition>;
3
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<DateDisplayProps>) => {
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<import("@omnia/fx-models").DatePropertyValue, import("@omnia/fx-models").DatePropertyValue>;
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"?: import("@omnia/fx-models").DatePropertyValue;
88
- modelValue?: import("@omnia/fx-models").DatePropertyValue;
89
- displaySettings?: DateDisplaySettings;
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<DateDisplayProps> & {
42
+ "v-slots"?: {
43
+ default?: import("vue").Slot;
44
+ } & {};
45
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof DateDisplayProps>;
46
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
+ [key: string]: any;
48
+ }>;
94
49
  export default _default;
@@ -1,94 +1,49 @@
1
- import { DateTimeDisplayStyles } from "./DateTimeDisplay.css";
2
- import { DateTimeDisplaySettings, DateTimePropertyDefinition, DateTimePropertyValue, IPropertyDisplayRenderer } from "@omnia/fx-models";
3
- export type DateTimeDisplayProps = IPropertyDisplayRenderer<DateTimePropertyDefinition> & {
4
- styles: typeof DateTimeDisplayStyles;
5
- } & {
6
- "v-model": DateTimePropertyValue;
7
- };
8
- declare const _default: {
9
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
10
- modelValue: import("vue").Prop<DateTimePropertyValue, DateTimePropertyValue>;
11
- displaySettings: import("vue").Prop<DateTimeDisplaySettings, DateTimeDisplaySettings>;
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<DateTimePropertyValue, DateTimePropertyValue>;
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<DateTimePropertyValue, DateTimePropertyValue>;
26
- displaySettings: import("vue").Prop<DateTimeDisplaySettings, DateTimeDisplaySettings>;
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<DateTimePropertyValue, DateTimePropertyValue>;
39
- }>>, {}, true, {}, {}, {
40
- P: {};
41
- B: {};
42
- D: {};
43
- C: {};
44
- M: {};
45
- Defaults: {};
46
- }, Readonly<import("vue").ExtractPropTypes<{
47
- modelValue: import("vue").Prop<DateTimePropertyValue, DateTimePropertyValue>;
48
- displaySettings: import("vue").Prop<DateTimeDisplaySettings, DateTimeDisplaySettings>;
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<DateTimePropertyValue, DateTimePropertyValue>;
61
- }>>, {}, {}, {}, {}, {}>;
62
- __isFragment?: never;
63
- __isTeleport?: never;
64
- __isSuspense?: never;
65
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
66
- modelValue: import("vue").Prop<DateTimePropertyValue, DateTimePropertyValue>;
67
- displaySettings: import("vue").Prop<DateTimeDisplaySettings, DateTimeDisplaySettings>;
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 { DateTimePropertyDefinition, IPropertyDisplayRenderer } from "@omnia/fx-models";
2
+ export type DateTimeDisplayProps = IPropertyDisplayRenderer<DateTimePropertyDefinition>;
3
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<DateTimeDisplayProps>) => {
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<DateTimePropertyValue, DateTimePropertyValue>;
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"?: DateTimePropertyValue;
88
- modelValue?: DateTimePropertyValue;
89
- displaySettings?: DateTimeDisplaySettings;
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<DateTimeDisplayProps> & {
42
+ "v-slots"?: {
43
+ default?: import("vue").Slot;
44
+ } & {};
45
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof DateTimeDisplayProps>;
46
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
+ [key: string]: any;
48
+ }>;
94
49
  export default _default;
@@ -1,47 +1,49 @@
1
- import { EmailDisplaySettings, EmailPropertyValue } from "@omnia/fx-models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- modelValue: import("vue").Prop<EmailPropertyValue, EmailPropertyValue>;
5
- displaySettings: import("vue").Prop<EmailDisplaySettings, EmailDisplaySettings>;
6
- setupSettings?: import("vue").Prop<never, never>;
7
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
8
- "v-model": import("vue").Prop<EmailPropertyValue, EmailPropertyValue>;
9
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
10
- modelValue: import("vue").Prop<EmailPropertyValue, EmailPropertyValue>;
11
- displaySettings: import("vue").Prop<EmailDisplaySettings, EmailDisplaySettings>;
12
- setupSettings?: import("vue").Prop<never, never>;
13
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
14
- "v-model": import("vue").Prop<EmailPropertyValue, EmailPropertyValue>;
15
- }>>, {}, true, {}, {}, {
16
- P: {};
17
- B: {};
18
- D: {};
19
- C: {};
20
- M: {};
21
- Defaults: {};
22
- }, Readonly<import("vue").ExtractPropTypes<{
23
- modelValue: import("vue").Prop<EmailPropertyValue, EmailPropertyValue>;
24
- displaySettings: import("vue").Prop<EmailDisplaySettings, EmailDisplaySettings>;
25
- setupSettings?: import("vue").Prop<never, never>;
26
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
27
- "v-model": import("vue").Prop<EmailPropertyValue, EmailPropertyValue>;
28
- }>>, {}, {}, {}, {}, {}>;
29
- __isFragment?: never;
30
- __isTeleport?: never;
31
- __isSuspense?: never;
32
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
33
- modelValue: import("vue").Prop<EmailPropertyValue, EmailPropertyValue>;
34
- displaySettings: import("vue").Prop<EmailDisplaySettings, EmailDisplaySettings>;
35
- setupSettings?: import("vue").Prop<never, never>;
36
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
37
- "v-model": import("vue").Prop<EmailPropertyValue, EmailPropertyValue>;
38
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
39
- propsDefinition: Omit<Readonly<{} & {
40
- "v-model"?: EmailPropertyValue;
41
- modelValue?: EmailPropertyValue;
42
- displaySettings?: EmailDisplaySettings;
43
- setupSettings?: never;
44
- renderTextOnly?: boolean;
45
- }>, never>;
46
- };
1
+ import { EmailPropertyDefinition, IPropertyDisplayRenderer } from "@omnia/fx-models";
2
+ type EmailDisplayProps = IPropertyDisplayRenderer<EmailPropertyDefinition>;
3
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<EmailDisplayProps>) => {
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<EmailDisplayProps> & {
42
+ "v-slots"?: {
43
+ default?: import("vue").Slot;
44
+ } & {};
45
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof EmailDisplayProps>;
46
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
+ [key: string]: any;
48
+ }>;
47
49
  export default _default;
@@ -1,47 +1,49 @@
1
- import { HtmlDisplaySettings, HtmlPropertyValue } from "@omnia/fx-models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- modelValue: import("vue").Prop<HtmlPropertyValue, HtmlPropertyValue>;
5
- displaySettings: import("vue").Prop<HtmlDisplaySettings, HtmlDisplaySettings>;
6
- setupSettings?: import("vue").Prop<never, never>;
7
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
8
- "v-model": import("vue").Prop<HtmlPropertyValue, HtmlPropertyValue>;
9
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
10
- modelValue: import("vue").Prop<HtmlPropertyValue, HtmlPropertyValue>;
11
- displaySettings: import("vue").Prop<HtmlDisplaySettings, HtmlDisplaySettings>;
12
- setupSettings?: import("vue").Prop<never, never>;
13
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
14
- "v-model": import("vue").Prop<HtmlPropertyValue, HtmlPropertyValue>;
15
- }>>, {}, true, {}, {}, {
16
- P: {};
17
- B: {};
18
- D: {};
19
- C: {};
20
- M: {};
21
- Defaults: {};
22
- }, Readonly<import("vue").ExtractPropTypes<{
23
- modelValue: import("vue").Prop<HtmlPropertyValue, HtmlPropertyValue>;
24
- displaySettings: import("vue").Prop<HtmlDisplaySettings, HtmlDisplaySettings>;
25
- setupSettings?: import("vue").Prop<never, never>;
26
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
27
- "v-model": import("vue").Prop<HtmlPropertyValue, HtmlPropertyValue>;
28
- }>>, {}, {}, {}, {}, {}>;
29
- __isFragment?: never;
30
- __isTeleport?: never;
31
- __isSuspense?: never;
32
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
33
- modelValue: import("vue").Prop<HtmlPropertyValue, HtmlPropertyValue>;
34
- displaySettings: import("vue").Prop<HtmlDisplaySettings, HtmlDisplaySettings>;
35
- setupSettings?: import("vue").Prop<never, never>;
36
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
37
- "v-model": import("vue").Prop<HtmlPropertyValue, HtmlPropertyValue>;
38
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
39
- propsDefinition: Omit<Readonly<{} & {
40
- "v-model"?: HtmlPropertyValue;
41
- modelValue?: HtmlPropertyValue;
42
- displaySettings?: HtmlDisplaySettings;
43
- setupSettings?: never;
44
- renderTextOnly?: boolean;
45
- }>, never>;
46
- };
1
+ import { HtmlPropertyDefinition, IPropertyDisplayRenderer } from "@omnia/fx-models";
2
+ type HtmlDisplayProps = IPropertyDisplayRenderer<HtmlPropertyDefinition>;
3
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<HtmlDisplayProps>) => {
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<HtmlDisplayProps> & {
42
+ "v-slots"?: {
43
+ default?: import("vue").Slot;
44
+ } & {};
45
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof HtmlDisplayProps>;
46
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
+ [key: string]: any;
48
+ }>;
47
49
  export default _default;