@omnia/fx 8.0.56-vnext → 8.0.58-vnext

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +2 -0
  2. package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +2 -1
  3. package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.css.d.ts +7 -0
  4. package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +209 -0
  5. package/internal-do-not-import-from-here/ux/filterpicker/docs/ExampleComponents.d.ts +1 -0
  6. package/internal-do-not-import-from-here/ux/filterpicker/docs/SampleComponent.d.ts +91 -0
  7. package/internal-do-not-import-from-here/ux/filterpicker/docs/index.d.ts +1 -0
  8. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/VelcronDefinitionStore.d.ts +5 -0
  9. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/Image_top_blog.d.ts +2 -0
  10. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/News_Image_Small.d.ts +3 -0
  11. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/News_Image_Top.d.ts +2 -0
  12. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/index.d.ts +2 -0
  13. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Contentblocks.d.ts +1 -5
  14. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/{Image_right_text.d.ts → Image_text.d.ts} +1 -0
  15. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/index.d.ts +2 -1
  16. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/useVelcronDefinitionTemplates.d.ts +6 -0
  17. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +20 -5
  18. package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +4 -4
  19. package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/DefinitionPickerPanel.css.d.ts +1 -0
  20. package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.css.d.ts +1 -0
  21. package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.d.ts +3 -3
  22. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +8 -7
  23. package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
  24. package/package.json +2 -2
  25. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Image_left_text.d.ts +0 -2
@@ -13,12 +13,14 @@ export interface OmniaSharedBootstrapData {
13
13
  */
14
14
  tokenKey?: OmniaToken;
15
15
  tokenRef: GuidValue;
16
+ identity: string;
16
17
  licenses: Array<Guid>;
17
18
  hubDev?: boolean;
18
19
  realtimeDevPort?: string;
19
20
  tenant: TenantIdentifier;
20
21
  servingMode?: boolean;
21
22
  serviceDnsMapping: OmniaServiceToDnsMapping;
23
+ authDisabled?: boolean;
22
24
  }
23
25
  export interface OmniaServiceToDnsMapping {
24
26
  [serviceId: string]: string;
@@ -6,8 +6,9 @@ export interface OmniaToken {
6
6
  expires: number;
7
7
  forDevIntent: boolean;
8
8
  }
9
- export interface OmniaTokenRefWithTenant {
9
+ export interface OmniaTokenRef {
10
10
  tenantId: GuidValue;
11
+ identityId: string;
11
12
  tokenRef: GuidValue;
12
13
  localDev: boolean;
13
14
  }
@@ -0,0 +1,7 @@
1
+ import { ColorDefinition } from "@omnia/fx-models";
2
+ export declare const FilterSizeDefinitions: readonly ["default", "x-small", "small"];
3
+ export type FilterSizes = typeof FilterSizeDefinitions[number];
4
+ export declare const FilterSizesName = "FilterSizes";
5
+ export declare const FilterPickerStyles: {
6
+ wrapper: (base: ColorDefinition, onBase: ColorDefinition, selected: boolean, size: FilterSizes) => string;
7
+ };
@@ -0,0 +1,209 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: {
6
+ container?: any;
7
+ blueprint?: any;
8
+ blueprintType?: any;
9
+ colorSchemaType?: any;
10
+ colors?: any;
11
+ style?: unknown;
12
+ class?: String | String[];
13
+ key?: string | number | symbol;
14
+ readonly size?: "small" | "default" | "x-small";
15
+ ref?: import("vue").VNodeRef;
16
+ ref_for?: boolean;
17
+ ref_key?: string;
18
+ onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
19
+ [key: string]: any;
20
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
21
+ [key: string]: any;
22
+ }>) => void)[];
23
+ onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
24
+ [key: string]: any;
25
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
26
+ [key: string]: any;
27
+ }>) => void)[];
28
+ onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
29
+ [key: string]: any;
30
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
31
+ [key: string]: any;
32
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
33
+ [key: string]: any;
34
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
35
+ [key: string]: any;
36
+ }>) => void)[];
37
+ onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
38
+ [key: string]: any;
39
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
40
+ [key: string]: any;
41
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
42
+ [key: string]: any;
43
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
44
+ [key: string]: any;
45
+ }>) => void)[];
46
+ onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
+ [key: string]: any;
48
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
49
+ [key: string]: any;
50
+ }>) => void)[];
51
+ onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
52
+ [key: string]: any;
53
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
54
+ [key: string]: any;
55
+ }>) => void)[];
56
+ readonly "onUpdate:modelValue"?: (value: string[]) => any;
57
+ readonly modelValue?: string[];
58
+ readonly "v-model"?: string[];
59
+ "onUpdate:filterValue"?: (value: string[]) => any;
60
+ };
61
+ $attrs: {
62
+ [x: string]: unknown;
63
+ };
64
+ $refs: {
65
+ [x: string]: unknown;
66
+ };
67
+ $slots: Readonly<{
68
+ [name: string]: import("vue").Slot<any>;
69
+ }>;
70
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
71
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
72
+ $emit: (event: "update:filterValue", value: string[]) => void;
73
+ $el: any;
74
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
75
+ size: {
76
+ type: import("vue").PropType<"small" | "default" | "x-small">;
77
+ };
78
+ "onUpdate:modelValue": {
79
+ type: import("vue").PropType<(value: string[]) => any>;
80
+ };
81
+ "v-model": {
82
+ type: import("vue").PropType<string[]>;
83
+ required: false;
84
+ };
85
+ modelValue: {
86
+ type: import("vue").PropType<string[]>;
87
+ required: false;
88
+ };
89
+ class: {
90
+ type: import("vue").PropType<String | String[]>;
91
+ required: boolean;
92
+ };
93
+ colorSchemaType?: any;
94
+ container?: any;
95
+ colors?: any;
96
+ blueprintType?: any;
97
+ blueprint?: any;
98
+ }>> & {
99
+ "onUpdate:filterValue"?: (value: string[]) => any;
100
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
101
+ "update:filterValue": (value: string[]) => any;
102
+ }, string, {
103
+ container?: any;
104
+ blueprint?: any;
105
+ blueprintType?: any;
106
+ colorSchemaType?: any;
107
+ colors?: any;
108
+ }, {}, string, {}> & {
109
+ beforeCreate?: (() => void) | (() => void)[];
110
+ created?: (() => void) | (() => void)[];
111
+ beforeMount?: (() => void) | (() => void)[];
112
+ mounted?: (() => void) | (() => void)[];
113
+ beforeUpdate?: (() => void) | (() => void)[];
114
+ updated?: (() => void) | (() => void)[];
115
+ activated?: (() => void) | (() => void)[];
116
+ deactivated?: (() => void) | (() => void)[];
117
+ beforeDestroy?: (() => void) | (() => void)[];
118
+ beforeUnmount?: (() => void) | (() => void)[];
119
+ destroyed?: (() => void) | (() => void)[];
120
+ unmounted?: (() => void) | (() => void)[];
121
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
122
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
123
+ 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)[];
124
+ };
125
+ $forceUpdate: () => void;
126
+ $nextTick: typeof import("vue").nextTick;
127
+ $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;
128
+ } & Readonly<import("vue").ExtractPropTypes<{
129
+ size: {
130
+ type: import("vue").PropType<"small" | "default" | "x-small">;
131
+ };
132
+ "onUpdate:modelValue": {
133
+ type: import("vue").PropType<(value: string[]) => any>;
134
+ };
135
+ "v-model": {
136
+ type: import("vue").PropType<string[]>;
137
+ required: false;
138
+ };
139
+ modelValue: {
140
+ type: import("vue").PropType<string[]>;
141
+ required: false;
142
+ };
143
+ class: {
144
+ type: import("vue").PropType<String | String[]>;
145
+ required: boolean;
146
+ };
147
+ colorSchemaType?: any;
148
+ container?: any;
149
+ colors?: any;
150
+ blueprintType?: any;
151
+ blueprint?: any;
152
+ }>> & {
153
+ "onUpdate:filterValue"?: (value: string[]) => any;
154
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
155
+ __isFragment?: never;
156
+ __isTeleport?: never;
157
+ __isSuspense?: never;
158
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
159
+ size: {
160
+ type: import("vue").PropType<"small" | "default" | "x-small">;
161
+ };
162
+ "onUpdate:modelValue": {
163
+ type: import("vue").PropType<(value: string[]) => any>;
164
+ };
165
+ "v-model": {
166
+ type: import("vue").PropType<string[]>;
167
+ required: false;
168
+ };
169
+ modelValue: {
170
+ type: import("vue").PropType<string[]>;
171
+ required: false;
172
+ };
173
+ class: {
174
+ type: import("vue").PropType<String | String[]>;
175
+ required: boolean;
176
+ };
177
+ colorSchemaType?: any;
178
+ container?: any;
179
+ colors?: any;
180
+ blueprintType?: any;
181
+ blueprint?: any;
182
+ }>> & {
183
+ "onUpdate:filterValue"?: (value: string[]) => any;
184
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
185
+ "update:filterValue": (value: string[]) => any;
186
+ }, string, {
187
+ container?: any;
188
+ blueprint?: any;
189
+ blueprintType?: any;
190
+ colorSchemaType?: any;
191
+ colors?: any;
192
+ }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
193
+ propsDefinition: Omit<Readonly<{
194
+ container?: any;
195
+ blueprint?: any;
196
+ blueprintType?: any;
197
+ colorSchemaType?: any;
198
+ colors?: any;
199
+ } & {
200
+ class?: String | String[];
201
+ size?: "small" | "default" | "x-small";
202
+ "onUpdate:modelValue"?: (value: string[]) => any;
203
+ modelValue?: string[];
204
+ "v-model"?: string[];
205
+ }>, "onUpdate:filterValue"> & {
206
+ "onUpdate:filterValue"?: (value: string[]) => any;
207
+ };
208
+ };
209
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const ExampleComponents: import("@omnia/fx/ux").ComponentSpec;
@@ -0,0 +1,91 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: {
6
+ style?: unknown;
7
+ class?: unknown;
8
+ key?: string | number | symbol;
9
+ ref?: import("vue").VNodeRef;
10
+ ref_for?: boolean;
11
+ ref_key?: string;
12
+ onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
+ [key: string]: any;
14
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
15
+ [key: string]: any;
16
+ }>) => void)[];
17
+ onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
18
+ [key: string]: any;
19
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
20
+ [key: string]: any;
21
+ }>) => void)[];
22
+ onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
23
+ [key: string]: any;
24
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
25
+ [key: string]: any;
26
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
27
+ [key: string]: any;
28
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
29
+ [key: string]: any;
30
+ }>) => void)[];
31
+ onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
32
+ [key: string]: any;
33
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
34
+ [key: string]: any;
35
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
36
+ [key: string]: any;
37
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
38
+ [key: string]: any;
39
+ }>) => void)[];
40
+ onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
41
+ [key: string]: any;
42
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
43
+ [key: string]: any;
44
+ }>) => void)[];
45
+ onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
46
+ [key: string]: any;
47
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
48
+ [key: string]: any;
49
+ }>) => void)[];
50
+ };
51
+ $attrs: {
52
+ [x: string]: unknown;
53
+ };
54
+ $refs: {
55
+ [x: string]: unknown;
56
+ };
57
+ $slots: Readonly<{
58
+ [name: string]: import("vue").Slot<any>;
59
+ }>;
60
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
61
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
62
+ $emit: (event: string, ...args: any[]) => void;
63
+ $el: any;
64
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
65
+ beforeCreate?: (() => void) | (() => void)[];
66
+ created?: (() => void) | (() => void)[];
67
+ beforeMount?: (() => void) | (() => void)[];
68
+ mounted?: (() => void) | (() => void)[];
69
+ beforeUpdate?: (() => void) | (() => void)[];
70
+ updated?: (() => void) | (() => void)[];
71
+ activated?: (() => void) | (() => void)[];
72
+ deactivated?: (() => void) | (() => void)[];
73
+ beforeDestroy?: (() => void) | (() => void)[];
74
+ beforeUnmount?: (() => void) | (() => void)[];
75
+ destroyed?: (() => void) | (() => void)[];
76
+ unmounted?: (() => void) | (() => void)[];
77
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
78
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
79
+ 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)[];
80
+ };
81
+ $forceUpdate: () => void;
82
+ $nextTick: typeof import("vue").nextTick;
83
+ $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;
84
+ } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
85
+ __isFragment?: never;
86
+ __isTeleport?: never;
87
+ __isSuspense?: never;
88
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
89
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
90
+ };
91
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const spec: import("@omnia/fx/ux").ComponentSpec;
@@ -2,9 +2,12 @@ import { Guid, VelcronDefinitionRegistration } from "@omnia/fx-models";
2
2
  export declare const useVelcronDefinitionStore: (newInstanceWithName?: string) => {
3
3
  state: {
4
4
  definitions: VelcronDefinitionRegistration<object>[];
5
+ filters: string[];
5
6
  };
6
7
  get: {
7
8
  byId: (id: Guid) => VelcronDefinitionRegistration<object>;
9
+ byFilters: (filters: string[]) => VelcronDefinitionRegistration<object>[];
10
+ readonly filters: string[];
8
11
  };
9
12
  actions: {
10
13
  addDefinition: (registration: VelcronDefinitionRegistration) => void;
@@ -12,6 +15,8 @@ export declare const useVelcronDefinitionStore: (newInstanceWithName?: string) =
12
15
  events: {
13
16
  onMutatingDefinitions: import("@omnia/fx").EventHook<VelcronDefinitionRegistration<object>[]>;
14
17
  onMutatedDefinitions: import("@omnia/fx").EventHook<VelcronDefinitionRegistration<object>[]>;
18
+ onMutatingFilters: import("@omnia/fx").EventHook<string[]>;
19
+ onMutatedFilters: import("@omnia/fx").EventHook<string[]>;
15
20
  };
16
21
  deactivated(): void;
17
22
  };
@@ -0,0 +1,2 @@
1
+ import { VelcronDefinitionRegistration } from "@omnia/fx-models";
2
+ export declare const Card_Image_Top_Blog: VelcronDefinitionRegistration<object>;
@@ -0,0 +1,3 @@
1
+ import { VelcronDefinitionRegistration } from "@omnia/fx-models";
2
+ export declare const Card_News_Image_Left: VelcronDefinitionRegistration<object>;
3
+ export declare const Card_News_Image_Right: VelcronDefinitionRegistration<object>;
@@ -0,0 +1,2 @@
1
+ import { VelcronDefinitionRegistration } from "@omnia/fx-models";
2
+ export declare const Card_News_Image_Top: VelcronDefinitionRegistration<object>;
@@ -1 +1,3 @@
1
1
  export * from "./Image_top";
2
+ export * from "./News_Image_Top";
3
+ export * from "./News_Image_Small";
@@ -1,5 +1 @@
1
- import { VelcronDefinitionRegistration } from "@omnia/fx-models";
2
- export declare const ContentBlockDefinition_text_image_left: VelcronDefinitionRegistration<object>;
3
- export declare const ContentBlockDefinition_text_image_right: VelcronDefinitionRegistration<object>;
4
- export declare const ContentBlockDefinition_text_content_center: VelcronDefinitionRegistration<object>;
5
- export declare const ContentBlockDefinition_weather: VelcronDefinitionRegistration<object>;
1
+ export {};
@@ -1,2 +1,3 @@
1
1
  import { VelcronDefinitionRegistration } from "@omnia/fx-models";
2
+ export declare const Content_Image_Left: VelcronDefinitionRegistration<object>;
2
3
  export declare const Content_Image_Right: VelcronDefinitionRegistration<object>;
@@ -1,3 +1,4 @@
1
- export * from "./Image_left_text";
1
+ export * from "./Image_text";
2
2
  export * from "./Text_only";
3
3
  export * from "./Image";
4
+ export * from "./Text_Quote";
@@ -18,5 +18,11 @@ export declare function useVelcronDefinitionTemplates(): {
18
18
  general: {};
19
19
  cards: {
20
20
  image_top: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
21
+ news: {
22
+ image_top: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
23
+ image_left: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
24
+ image_right: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
25
+ image_top_person: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
26
+ };
21
27
  };
22
28
  };
@@ -1,3 +1,4 @@
1
+ import { ValidationRule } from "@omnia/fx/ux";
1
2
  import { VNodeChild } from "vue";
2
3
  import { VTextFieldSlots } from "../../ComponentTypings";
3
4
  interface OTextFieldSlots extends VTextFieldSlots {
@@ -16,7 +17,7 @@ declare const _default: {
16
17
  readonly label?: string;
17
18
  style?: unknown;
18
19
  class?: String | String[];
19
- readonly type?: "number";
20
+ readonly type?: "number" | "text" | "password";
20
21
  key?: string | number | symbol;
21
22
  ref?: import("vue").VNodeRef;
22
23
  ref_for?: boolean;
@@ -70,6 +71,7 @@ declare const _default: {
70
71
  readonly modelValue?: string;
71
72
  readonly toned?: boolean;
72
73
  readonly "v-model"?: string;
74
+ readonly rules?: ValidationRule[];
73
75
  "onClick:clear"?: () => any;
74
76
  readonly clearable?: boolean;
75
77
  readonly autofocus?: boolean;
@@ -98,6 +100,10 @@ declare const _default: {
98
100
  type: import("vue").PropType<boolean>;
99
101
  required: false;
100
102
  };
103
+ rules: {
104
+ type: import("vue").PropType<ValidationRule[]>;
105
+ required: false;
106
+ };
101
107
  toned: {
102
108
  type: import("vue").PropType<boolean>;
103
109
  required: false;
@@ -107,7 +113,7 @@ declare const _default: {
107
113
  required: false;
108
114
  };
109
115
  type: {
110
- type: import("vue").PropType<"number">;
116
+ type: import("vue").PropType<"number" | "text" | "password">;
111
117
  };
112
118
  clearable: {
113
119
  type: import("vue").PropType<boolean>;
@@ -191,6 +197,10 @@ declare const _default: {
191
197
  type: import("vue").PropType<boolean>;
192
198
  required: false;
193
199
  };
200
+ rules: {
201
+ type: import("vue").PropType<ValidationRule[]>;
202
+ required: false;
203
+ };
194
204
  toned: {
195
205
  type: import("vue").PropType<boolean>;
196
206
  required: false;
@@ -200,7 +210,7 @@ declare const _default: {
200
210
  required: false;
201
211
  };
202
212
  type: {
203
- type: import("vue").PropType<"number">;
213
+ type: import("vue").PropType<"number" | "text" | "password">;
204
214
  };
205
215
  clearable: {
206
216
  type: import("vue").PropType<boolean>;
@@ -255,6 +265,10 @@ declare const _default: {
255
265
  type: import("vue").PropType<boolean>;
256
266
  required: false;
257
267
  };
268
+ rules: {
269
+ type: import("vue").PropType<ValidationRule[]>;
270
+ required: false;
271
+ };
258
272
  toned: {
259
273
  type: import("vue").PropType<boolean>;
260
274
  required: false;
@@ -264,7 +278,7 @@ declare const _default: {
264
278
  required: false;
265
279
  };
266
280
  type: {
267
- type: import("vue").PropType<"number">;
281
+ type: import("vue").PropType<"number" | "text" | "password">;
268
282
  };
269
283
  clearable: {
270
284
  type: import("vue").PropType<boolean>;
@@ -329,7 +343,7 @@ declare const _default: {
329
343
  } & {
330
344
  label?: string;
331
345
  class?: String | String[];
332
- type?: "number";
346
+ type?: "number" | "text" | "password";
333
347
  disabled?: boolean;
334
348
  placeholder?: string;
335
349
  variant?: "search" | "link" | "default" | "media" | "filter-menu" | "find-slim";
@@ -341,6 +355,7 @@ declare const _default: {
341
355
  modelValue?: string;
342
356
  toned?: boolean;
343
357
  "v-model"?: string;
358
+ rules?: ValidationRule[];
344
359
  clearable?: boolean;
345
360
  autofocus?: boolean;
346
361
  }>, "onUpdate:modelValue" | "onClick:clear" | "onDoc$" | "onClick:button"> & {
@@ -23,8 +23,8 @@ export declare function useIcons(): {
23
23
  expand: FontAwesomeIcon;
24
24
  info: FontAwesomeIcon;
25
25
  lock: FontAwesomeIcon;
26
- lock_open: FontAwesomeIcon;
27
- lock_edit: FontAwesomeIcon;
26
+ lockOpen: FontAwesomeIcon;
27
+ lockEdit: FontAwesomeIcon;
28
28
  more: MaterialIcon;
29
29
  move: FontAwesomeIcon;
30
30
  navigate: FontAwesomeIcon;
@@ -50,8 +50,8 @@ export declare function useIcons(): {
50
50
  expand: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
51
51
  info: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
52
52
  lock: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
53
- lock_open: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
54
- lock_edit: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
53
+ lockOpen: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
54
+ lockEdit: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
55
55
  more: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
56
56
  move: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
57
57
  navigate: (size?: OIconSizes, toned?: boolean, theming?: ThemeableComponentProps) => JSX.Element;
@@ -1,4 +1,5 @@
1
1
  export declare const DefinitionPickerPanelStyles: {
2
+ filterWrapper: string;
2
3
  cardWrapper: string;
3
4
  hoverAnimation: string;
4
5
  wrapper: string;
@@ -1,3 +1,4 @@
1
1
  export declare const DefinitionPickerStyles: {
2
+ filterWrapper: string;
2
3
  cardWrapper: string;
3
4
  };
@@ -87,7 +87,7 @@ declare const _default: {
87
87
  blueprint?: any;
88
88
  }>> & {
89
89
  onSelected?: (id: Guid) => any;
90
- }, () => JSX.Element | JSX.Element[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
90
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
91
91
  selected: (id: Guid) => any;
92
92
  }, string, {
93
93
  container?: any;
@@ -128,7 +128,7 @@ declare const _default: {
128
128
  blueprint?: any;
129
129
  }>> & {
130
130
  onSelected?: (id: Guid) => any;
131
- } & import("vue").ShallowUnwrapRef<() => JSX.Element | JSX.Element[]> & {} & import("vue").ComponentCustomProperties & {};
131
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
132
132
  __isFragment?: never;
133
133
  __isTeleport?: never;
134
134
  __isSuspense?: never;
@@ -145,7 +145,7 @@ declare const _default: {
145
145
  blueprint?: any;
146
146
  }>> & {
147
147
  onSelected?: (id: Guid) => any;
148
- }, () => JSX.Element | JSX.Element[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
148
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
149
149
  selected: (id: Guid) => any;
150
150
  }, string, {
151
151
  container?: any;
@@ -129,6 +129,11 @@ export interface VelcronColorStyling {
129
129
  toned?: boolean;
130
130
  color?: string;
131
131
  }
132
+ export interface VelcronTextStyling {
133
+ text: string;
134
+ typography?: string;
135
+ size?: string;
136
+ }
132
137
  export interface VelcronStyling {
133
138
  margin?: number;
134
139
  marginTop?: number;
@@ -181,7 +186,7 @@ export interface VelcronComponentDefinition extends VelcronDefinition {
181
186
  export interface VelcronViewDefinition extends VelcronDefinition, VelcronColorStyling {
182
187
  type: "View";
183
188
  events?: VelcronOnPressEvent;
184
- direction?: "row" | "column";
189
+ direction?: "row" | "column" | "row-reverse" | "column-reverse" | string;
185
190
  columnStyle?: object;
186
191
  horizontalAlignment?: VelcronHorizontalAlignments;
187
192
  verticalAlignment?: VelcronVerticalAlignments;
@@ -196,14 +201,11 @@ export interface VelcronCardDefinition extends VelcronDefinition, VelcronColorSt
196
201
  footer?: Array<VelcronDefinition>;
197
202
  events?: VelcronOnPressEvent;
198
203
  }
199
- export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling {
204
+ export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
200
205
  type: "Text";
201
- text: string;
202
206
  editLabel?: VelcronBindableProp;
203
207
  lineClamp?: number;
204
208
  noWrap?: boolean;
205
- typography?: string;
206
- size?: string;
207
209
  events?: VelcronOnPressEvent & VelcronOnUpdatedEvent;
208
210
  }
209
211
  export declare enum VelcronImageRatios {
@@ -252,9 +254,8 @@ export interface VelcronIconDefinition extends VelcronDefinition, VelcronColorSt
252
254
  size?: VelcronBindableProp<number>;
253
255
  events?: VelcronOnPressEvent;
254
256
  }
255
- export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode {
257
+ export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
256
258
  type: "Markdown";
257
- text: string;
258
259
  events: VelcronOnUpdatedEvent;
259
260
  }
260
261
  export interface VelcronDimensions {
@@ -27,6 +27,7 @@ import wc5a6940e10c51454aa5e0a4144ab01288 from './ux/filterengine/components/sel
27
27
  import wc937eab372066440fa95551ac8cba45d7 from './ux/filterengine/components/renderer/dialog/DialogContent';
28
28
  import wc7813f37afbf34cb085a2ef74e71e20fa from './ux/filterengine/components/renderer/PropertyDropdownRenderer';
29
29
  import wc373cd0c180af441ca9f973b1da4de7f9 from './ux/filterengine/components/renderer/PropertyListRenderer';
30
+ import wc46a6c15c2a0e446fbef9770274409366 from './ux/filterpicker/FilterPicker';
30
31
  import wca7608d8c42184cbb994910dc06c464a1 from './ux/identities/IdentityRenderer';
31
32
  import wc01c6a5e974334f06a390c9af5a7689d0 from './ux/identities/components/shared/IdentitySyncPropertyBindingSetup';
32
33
  import wcc2a811dfd3774d15862abb2f6a435a5c from './ux/identities/components/shared/IdentitySyncRuleSetup';
@@ -272,6 +273,7 @@ declare global {
272
273
  "omfx-filterengine-dialog-content": typeof wc937eab372066440fa95551ac8cba45d7.propsDefinition & VueComponentBaseProps;
273
274
  "omfx-filterengine-property-dropdown": typeof wc7813f37afbf34cb085a2ef74e71e20fa.propsDefinition & VueComponentBaseProps;
274
275
  "omfx-filterengine-property-list": typeof wc373cd0c180af441ca9f973b1da4de7f9.propsDefinition & VueComponentBaseProps;
276
+ "omfx-filter-picker": typeof wc46a6c15c2a0e446fbef9770274409366.propsDefinition & VueComponentBaseProps;
275
277
  "omfx-identity-renderer": typeof wca7608d8c42184cbb994910dc06c464a1.propsDefinition & VueComponentBaseProps;
276
278
  "omfx-identity-sync-property-binding-setup": typeof wc01c6a5e974334f06a390c9af5a7689d0.propsDefinition & VueComponentBaseProps;
277
279
  "omfx-identity-sync-rule-setup": typeof wcc2a811dfd3774d15862abb2f6a435a5c.propsDefinition & VueComponentBaseProps;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.56-vnext",
4
+ "version": "8.0.58-vnext",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.56-vnext",
23
+ "@omnia/fx-models": "8.0.58-vnext",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",
@@ -1,2 +0,0 @@
1
- import { VelcronDefinitionRegistration } from "@omnia/fx-models";
2
- export declare const Content_Image_Left: VelcronDefinitionRegistration<object>;