@omnia/fx 8.0.197-dev → 8.0.199-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,206 +1,49 @@
1
- import { TagsPropertyDefinition, IPropertyDisplayRenderer, PropertyValueType, Tag, IIcon, TagsDisplaySettings } from "@omnia/fx-models";
2
- import { TagsFieldDisplayStyles } from "@omnia/fx/ux";
3
- export type TagsDisplayProps = IPropertyDisplayRenderer<TagsPropertyDefinition> & {
4
- "v-model": PropertyValueType<TagsPropertyDefinition>;
5
- onTagClicked?: (tag: Tag) => void;
6
- hideSelected?: boolean;
7
- appendedElement?: JSX.Element;
8
- clickableIcon?: IIcon;
9
- appendedTagContents?: {
10
- [tagName: string]: {
11
- icon: IIcon;
12
- title: string;
13
- };
14
- }[];
15
- styles?: typeof TagsFieldDisplayStyles;
16
- contentColor?: string;
17
- };
18
- declare const _default: {
19
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
20
- modelValue: import("vue").Prop<import("@omnia/fx-models").TagsPropertyValue, import("@omnia/fx-models").TagsPropertyValue>;
21
- displaySettings: import("vue").Prop<TagsDisplaySettings, TagsDisplaySettings>;
22
- setupSettings?: import("vue").Prop<never, never>;
23
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
24
- "v-model": import("vue").Prop<import("@omnia/fx-models").TagsPropertyValue, import("@omnia/fx-models").TagsPropertyValue>;
25
- onTagClicked?: import("vue").Prop<(tag: Tag) => void, (tag: Tag) => void>;
26
- hideSelected?: import("vue").Prop<boolean, boolean>;
27
- appendedElement?: import("vue").Prop<JSX.Element, JSX.Element>;
28
- clickableIcon?: import("vue").Prop<IIcon, IIcon>;
29
- appendedTagContents?: import("vue").Prop<{
30
- [tagName: string]: {
31
- icon: IIcon;
32
- title: string;
33
- };
34
- }[], {
35
- [tagName: string]: {
36
- icon: IIcon;
37
- title: string;
38
- };
39
- }[]>;
40
- styles?: import("vue").Prop<{
41
- itemwrapper?: import("typestyle/lib/types").NestedCSSProperties;
42
- chip?: import("typestyle/lib/types").NestedCSSProperties;
43
- chipIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
44
- chipIcon?: import("typestyle/lib/types").NestedCSSProperties;
45
- clickableIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
46
- clickableIcon?: import("typestyle/lib/types").NestedCSSProperties;
47
- }, {
48
- itemwrapper?: import("typestyle/lib/types").NestedCSSProperties;
49
- chip?: import("typestyle/lib/types").NestedCSSProperties;
50
- chipIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
51
- chipIcon?: import("typestyle/lib/types").NestedCSSProperties;
52
- clickableIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
53
- clickableIcon?: import("typestyle/lib/types").NestedCSSProperties;
54
- }>;
55
- contentColor?: import("vue").Prop<string, string>;
56
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
57
- modelValue: import("vue").Prop<import("@omnia/fx-models").TagsPropertyValue, import("@omnia/fx-models").TagsPropertyValue>;
58
- displaySettings: import("vue").Prop<TagsDisplaySettings, TagsDisplaySettings>;
59
- setupSettings?: import("vue").Prop<never, never>;
60
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
61
- "v-model": import("vue").Prop<import("@omnia/fx-models").TagsPropertyValue, import("@omnia/fx-models").TagsPropertyValue>;
62
- onTagClicked?: import("vue").Prop<(tag: Tag) => void, (tag: Tag) => void>;
63
- hideSelected?: import("vue").Prop<boolean, boolean>;
64
- appendedElement?: import("vue").Prop<JSX.Element, JSX.Element>;
65
- clickableIcon?: import("vue").Prop<IIcon, IIcon>;
66
- appendedTagContents?: import("vue").Prop<{
67
- [tagName: string]: {
68
- icon: IIcon;
69
- title: string;
70
- };
71
- }[], {
72
- [tagName: string]: {
73
- icon: IIcon;
74
- title: string;
75
- };
76
- }[]>;
77
- styles?: import("vue").Prop<{
78
- itemwrapper?: import("typestyle/lib/types").NestedCSSProperties;
79
- chip?: import("typestyle/lib/types").NestedCSSProperties;
80
- chipIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
81
- chipIcon?: import("typestyle/lib/types").NestedCSSProperties;
82
- clickableIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
83
- clickableIcon?: import("typestyle/lib/types").NestedCSSProperties;
84
- }, {
85
- itemwrapper?: import("typestyle/lib/types").NestedCSSProperties;
86
- chip?: import("typestyle/lib/types").NestedCSSProperties;
87
- chipIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
88
- chipIcon?: import("typestyle/lib/types").NestedCSSProperties;
89
- clickableIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
90
- clickableIcon?: import("typestyle/lib/types").NestedCSSProperties;
91
- }>;
92
- contentColor?: import("vue").Prop<string, string>;
93
- }>>, {}, true, {}, {}, {
94
- P: {};
95
- B: {};
96
- D: {};
97
- C: {};
98
- M: {};
99
- Defaults: {};
100
- }, Readonly<import("vue").ExtractPropTypes<{
101
- modelValue: import("vue").Prop<import("@omnia/fx-models").TagsPropertyValue, import("@omnia/fx-models").TagsPropertyValue>;
102
- displaySettings: import("vue").Prop<TagsDisplaySettings, TagsDisplaySettings>;
103
- setupSettings?: import("vue").Prop<never, never>;
104
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
105
- "v-model": import("vue").Prop<import("@omnia/fx-models").TagsPropertyValue, import("@omnia/fx-models").TagsPropertyValue>;
106
- onTagClicked?: import("vue").Prop<(tag: Tag) => void, (tag: Tag) => void>;
107
- hideSelected?: import("vue").Prop<boolean, boolean>;
108
- appendedElement?: import("vue").Prop<JSX.Element, JSX.Element>;
109
- clickableIcon?: import("vue").Prop<IIcon, IIcon>;
110
- appendedTagContents?: import("vue").Prop<{
111
- [tagName: string]: {
112
- icon: IIcon;
113
- title: string;
114
- };
115
- }[], {
116
- [tagName: string]: {
117
- icon: IIcon;
118
- title: string;
119
- };
120
- }[]>;
121
- styles?: import("vue").Prop<{
122
- itemwrapper?: import("typestyle/lib/types").NestedCSSProperties;
123
- chip?: import("typestyle/lib/types").NestedCSSProperties;
124
- chipIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
125
- chipIcon?: import("typestyle/lib/types").NestedCSSProperties;
126
- clickableIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
127
- clickableIcon?: import("typestyle/lib/types").NestedCSSProperties;
128
- }, {
129
- itemwrapper?: import("typestyle/lib/types").NestedCSSProperties;
130
- chip?: import("typestyle/lib/types").NestedCSSProperties;
131
- chipIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
132
- chipIcon?: import("typestyle/lib/types").NestedCSSProperties;
133
- clickableIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
134
- clickableIcon?: import("typestyle/lib/types").NestedCSSProperties;
135
- }>;
136
- contentColor?: import("vue").Prop<string, string>;
137
- }>>, {}, {}, {}, {}, {}>;
138
- __isFragment?: never;
139
- __isTeleport?: never;
140
- __isSuspense?: never;
141
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
142
- modelValue: import("vue").Prop<import("@omnia/fx-models").TagsPropertyValue, import("@omnia/fx-models").TagsPropertyValue>;
143
- displaySettings: import("vue").Prop<TagsDisplaySettings, TagsDisplaySettings>;
144
- setupSettings?: import("vue").Prop<never, never>;
145
- renderTextOnly?: import("vue").Prop<boolean, boolean>;
146
- "v-model": import("vue").Prop<import("@omnia/fx-models").TagsPropertyValue, import("@omnia/fx-models").TagsPropertyValue>;
147
- onTagClicked?: import("vue").Prop<(tag: Tag) => void, (tag: Tag) => void>;
148
- hideSelected?: import("vue").Prop<boolean, boolean>;
149
- appendedElement?: import("vue").Prop<JSX.Element, JSX.Element>;
150
- clickableIcon?: import("vue").Prop<IIcon, IIcon>;
151
- appendedTagContents?: import("vue").Prop<{
152
- [tagName: string]: {
153
- icon: IIcon;
154
- title: string;
155
- };
156
- }[], {
157
- [tagName: string]: {
158
- icon: IIcon;
159
- title: string;
160
- };
161
- }[]>;
162
- styles?: import("vue").Prop<{
163
- itemwrapper?: import("typestyle/lib/types").NestedCSSProperties;
164
- chip?: import("typestyle/lib/types").NestedCSSProperties;
165
- chipIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
166
- chipIcon?: import("typestyle/lib/types").NestedCSSProperties;
167
- clickableIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
168
- clickableIcon?: import("typestyle/lib/types").NestedCSSProperties;
169
- }, {
170
- itemwrapper?: import("typestyle/lib/types").NestedCSSProperties;
171
- chip?: import("typestyle/lib/types").NestedCSSProperties;
172
- chipIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
173
- chipIcon?: import("typestyle/lib/types").NestedCSSProperties;
174
- clickableIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
175
- clickableIcon?: import("typestyle/lib/types").NestedCSSProperties;
1
+ import { TagsPropertyDefinition, IPropertyDisplayRenderer } from "@omnia/fx-models";
2
+ export type TagsDisplayProps = IPropertyDisplayRenderer<TagsPropertyDefinition>;
3
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<TagsDisplayProps>) => {
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>;
176
15
  }>;
177
- contentColor?: import("vue").Prop<string, string>;
178
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
179
- propsDefinition: Omit<Readonly<{} & {
180
- styles?: {
181
- itemwrapper?: import("typestyle/lib/types").NestedCSSProperties;
182
- chip?: import("typestyle/lib/types").NestedCSSProperties;
183
- chipIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
184
- chipIcon?: import("typestyle/lib/types").NestedCSSProperties;
185
- clickableIconWrapper?: import("typestyle/lib/types").NestedCSSProperties;
186
- clickableIcon?: import("typestyle/lib/types").NestedCSSProperties;
187
- };
188
- appendedElement?: JSX.Element;
189
- "v-model"?: import("@omnia/fx-models").TagsPropertyValue;
190
- modelValue?: import("@omnia/fx-models").TagsPropertyValue;
191
- hideSelected?: boolean;
192
- displaySettings?: TagsDisplaySettings;
193
- clickableIcon?: IIcon;
194
- setupSettings?: never;
195
- contentColor?: string;
196
- renderTextOnly?: boolean;
197
- onTagClicked?: (tag: Tag) => void;
198
- appendedTagContents?: {
199
- [tagName: string]: {
200
- icon: IIcon;
201
- title: string;
202
- };
203
- }[];
204
- }>, never>;
205
- };
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<TagsDisplayProps> & {
42
+ "v-slots"?: {
43
+ default?: import("vue").Slot;
44
+ } & {};
45
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof TagsDisplayProps>;
46
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
+ [key: string]: any;
48
+ }>;
206
49
  export default _default;
@@ -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;