@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,4 +1,4 @@
1
- import { IdentityDisplayStyles } from "./IdentityDisplay.css";
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
- styles: typeof IdentityDisplayStyles;
13
- } & IdentityDisplaySlots & {
14
- "v-model": IdentityPropertyValue;
15
- };
16
- declare const _default: {
17
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
18
- modelValue: import("vue").Prop<IdentityPropertyValue, IdentityPropertyValue>;
19
- displaySettings: import("vue").Prop<IdentityPropertyDisplaySettings, IdentityPropertyDisplaySettings>;
20
- setupSettings?: import("vue").Prop<never, never>;
21
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
22
- styles: import("vue").Prop<{
23
- container: import("typestyle/lib/types").NestedCSSProperties;
24
- itemHeader: import("typestyle/lib/types").NestedCSSProperties;
25
- item: import("typestyle/lib/types").NestedCSSProperties;
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
- "v-slots": import("vue").Prop<{
123
- renderer?: (renderProps: {
124
- identities: IResolvedIdentity[];
125
- }) => VNodeChild;
126
- }, {
127
- renderer?: (renderProps: {
128
- identities: IResolvedIdentity[];
129
- }) => VNodeChild;
130
- }>;
131
- "v-model": import("vue").Prop<IdentityPropertyValue, IdentityPropertyValue>;
132
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
133
- propsDefinition: Omit<Readonly<{} & {
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
- "v-model"?: IdentityPropertyValue;
141
- modelValue?: IdentityPropertyValue;
90
+ } & DefineSlot<"renderer", (resolvedIdentity: IResolvedIdentity) => VNodeChild> & DefineSlot<"renderer", (renderProps: {
91
+ identities: Array<IResolvedIdentity>;
92
+ }) => VNodeChild>> & {
142
93
  "v-slots"?: {
143
- renderer?: (renderProps: {
144
- identities: IResolvedIdentity[];
145
- }) => VNodeChild;
94
+ default?: import("vue").Slot;
95
+ } & {
96
+ renderer?: ((resolvedIdentity: IResolvedIdentity) => VNodeChild) & ((renderProps: {
97
+ identities: Array<IResolvedIdentity>;
98
+ }) => VNodeChild);
146
99
  };
147
- displaySettings?: IdentityPropertyDisplaySettings;
148
- setupSettings?: never;
149
- renderTextOnly?: boolean;
150
- }>, never>;
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 { ImageDisplaySettings, ImagePropertyValue } from "@omnia/fx-models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- modelValue: import("vue").Prop<ImagePropertyValue, ImagePropertyValue>;
5
- displaySettings: import("vue").Prop<ImageDisplaySettings, ImageDisplaySettings>;
6
- setupSettings?: import("vue").Prop<never, never>;
7
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
8
- "v-model": import("vue").Prop<ImagePropertyValue, ImagePropertyValue>;
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<ImagePropertyValue, ImagePropertyValue>;
11
- displaySettings: import("vue").Prop<ImageDisplaySettings, ImageDisplaySettings>;
12
- setupSettings?: import("vue").Prop<never, never>;
13
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
14
- "v-model": import("vue").Prop<ImagePropertyValue, ImagePropertyValue>;
15
- }>>, {}, true, {}, {}, {
16
- P: {};
17
- B: {};
18
- D: {};
19
- C: {};
20
- M: {};
21
- Defaults: {};
22
- }, Readonly<import("vue").ExtractPropTypes<{
23
- modelValue: import("vue").Prop<ImagePropertyValue, ImagePropertyValue>;
24
- displaySettings: import("vue").Prop<ImageDisplaySettings, ImageDisplaySettings>;
25
- setupSettings?: import("vue").Prop<never, never>;
26
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
27
- "v-model": import("vue").Prop<ImagePropertyValue, ImagePropertyValue>;
28
- }>>, {}, {}, {}, {}, {}>;
29
- __isFragment?: never;
30
- __isTeleport?: never;
31
- __isSuspense?: never;
32
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
33
- modelValue: import("vue").Prop<ImagePropertyValue, ImagePropertyValue>;
34
- displaySettings: import("vue").Prop<ImageDisplaySettings, ImageDisplaySettings>;
35
- setupSettings?: import("vue").Prop<never, never>;
36
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
37
- "v-model": import("vue").Prop<ImagePropertyValue, ImagePropertyValue>;
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"?: ImagePropertyValue;
41
- modelValue?: ImagePropertyValue;
42
- displaySettings?: ImageDisplaySettings;
43
- setupSettings?: never;
44
- renderTextOnly?: boolean;
45
- }>, never>;
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 { IntegerDisplaySettings, IntegerPropertyDefinition, IntegerPropertyValue, IPropertyDisplayRenderer } from "@omnia/fx-models";
2
- export type IntegerDisplayProps = IPropertyDisplayRenderer<IntegerPropertyDefinition> & {
3
- "v-model": IntegerPropertyValue;
4
- };
5
- declare const _default: {
6
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
7
- modelValue: import("vue").Prop<IntegerPropertyValue, IntegerPropertyValue>;
8
- displaySettings: import("vue").Prop<IntegerDisplaySettings, IntegerDisplaySettings>;
9
- setupSettings?: import("vue").Prop<never, never>;
10
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
11
- "v-model": import("vue").Prop<IntegerPropertyValue, IntegerPropertyValue>;
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<IntegerPropertyValue, IntegerPropertyValue>;
14
- displaySettings: import("vue").Prop<IntegerDisplaySettings, IntegerDisplaySettings>;
15
- setupSettings?: import("vue").Prop<never, never>;
16
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
17
- "v-model": import("vue").Prop<IntegerPropertyValue, IntegerPropertyValue>;
18
- }>>, {}, true, {}, {}, {
19
- P: {};
20
- B: {};
21
- D: {};
22
- C: {};
23
- M: {};
24
- Defaults: {};
25
- }, Readonly<import("vue").ExtractPropTypes<{
26
- modelValue: import("vue").Prop<IntegerPropertyValue, IntegerPropertyValue>;
27
- displaySettings: import("vue").Prop<IntegerDisplaySettings, IntegerDisplaySettings>;
28
- setupSettings?: import("vue").Prop<never, never>;
29
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
30
- "v-model": import("vue").Prop<IntegerPropertyValue, IntegerPropertyValue>;
31
- }>>, {}, {}, {}, {}, {}>;
32
- __isFragment?: never;
33
- __isTeleport?: never;
34
- __isSuspense?: never;
35
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
36
- modelValue: import("vue").Prop<IntegerPropertyValue, IntegerPropertyValue>;
37
- displaySettings: import("vue").Prop<IntegerDisplaySettings, IntegerDisplaySettings>;
38
- setupSettings?: import("vue").Prop<never, never>;
39
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
40
- "v-model": import("vue").Prop<IntegerPropertyValue, IntegerPropertyValue>;
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"?: IntegerPropertyValue;
44
- modelValue?: IntegerPropertyValue;
45
- displaySettings?: IntegerDisplaySettings;
46
- setupSettings?: never;
47
- renderTextOnly?: boolean;
48
- }>, never>;
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;
@@ -1,50 +1,49 @@
1
- import { IPropertyDisplayRenderer, LanguageDisplaySettings, LanguagePropertyDefinition, LanguagePropertyValue } from "@omnia/fx-models";
2
- export type LanguageDisplayProps = IPropertyDisplayRenderer<LanguagePropertyDefinition> & {
3
- "v-model": LanguagePropertyValue;
4
- };
5
- declare const _default: {
6
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
7
- modelValue: import("vue").Prop<LanguagePropertyValue, LanguagePropertyValue>;
8
- displaySettings: import("vue").Prop<LanguageDisplaySettings, LanguageDisplaySettings>;
9
- setupSettings?: import("vue").Prop<never, never>;
10
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
11
- "v-model": import("vue").Prop<LanguagePropertyValue, LanguagePropertyValue>;
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<LanguagePropertyValue, LanguagePropertyValue>;
14
- displaySettings: import("vue").Prop<LanguageDisplaySettings, LanguageDisplaySettings>;
15
- setupSettings?: import("vue").Prop<never, never>;
16
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
17
- "v-model": import("vue").Prop<LanguagePropertyValue, LanguagePropertyValue>;
18
- }>>, {}, true, {}, {}, {
19
- P: {};
20
- B: {};
21
- D: {};
22
- C: {};
23
- M: {};
24
- Defaults: {};
25
- }, Readonly<import("vue").ExtractPropTypes<{
26
- modelValue: import("vue").Prop<LanguagePropertyValue, LanguagePropertyValue>;
27
- displaySettings: import("vue").Prop<LanguageDisplaySettings, LanguageDisplaySettings>;
28
- setupSettings?: import("vue").Prop<never, never>;
29
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
30
- "v-model": import("vue").Prop<LanguagePropertyValue, LanguagePropertyValue>;
31
- }>>, {}, {}, {}, {}, {}>;
32
- __isFragment?: never;
33
- __isTeleport?: never;
34
- __isSuspense?: never;
35
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
36
- modelValue: import("vue").Prop<LanguagePropertyValue, LanguagePropertyValue>;
37
- displaySettings: import("vue").Prop<LanguageDisplaySettings, LanguageDisplaySettings>;
38
- setupSettings?: import("vue").Prop<never, never>;
39
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
40
- "v-model": import("vue").Prop<LanguagePropertyValue, LanguagePropertyValue>;
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"?: LanguagePropertyValue;
44
- modelValue?: LanguagePropertyValue;
45
- displaySettings?: LanguageDisplaySettings;
46
- setupSettings?: never;
47
- renderTextOnly?: boolean;
48
- }>, never>;
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;