@omnia/fx 8.0.209-dev → 8.0.210-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. package/internal-do-not-import-from-here/core/utils/Utils.d.ts +6 -0
  2. package/internal-do-not-import-from-here/manifests/omnia.fx.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/services/identities/UserService.d.ts +1 -1
  5. package/internal-do-not-import-from-here/stores/mediapicker/ImageTransformerStore.d.ts +105 -4
  6. package/internal-do-not-import-from-here/stores/mediapicker/constants.d.ts +7 -0
  7. package/internal-do-not-import-from-here/stores/mediapicker/handlers/Utils/utils.d.ts +3 -0
  8. package/internal-do-not-import-from-here/stores/mediapicker/handlers/imagetransformer/filter.d.ts +4 -1
  9. package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
  10. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/ViewTemplatePicker.css.d.ts +4 -0
  11. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/ViewTemplatePicker.d.ts +68 -0
  12. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/docs/ExampleComponents.d.ts +1 -0
  13. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/docs/SampleComponent.d.ts +47 -0
  14. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/docs/index.d.ts +1 -0
  15. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +847 -3511
  16. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +847 -3511
  17. package/internal-do-not-import-from-here/ux/directives/Scroll.d.ts +0 -23
  18. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +17 -0
  19. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +2 -2
  20. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayConfiguration.d.ts +5 -0
  21. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeConfiguration.d.ts +5 -0
  22. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +5 -0
  23. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +5 -0
  24. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +5 -0
  25. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +5 -0
  26. package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +5 -0
  27. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +5 -0
  28. package/internal-do-not-import-from-here/ux/signin/AuthenticationBlockSettings.d.ts +47 -0
  29. package/internal-do-not-import-from-here/ux/signin/Shared.d.ts +7 -0
  30. package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +4 -0
  31. package/internal-do-not-import-from-here/ux/signin/omnia/Login.d.ts +51 -15
  32. package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +6 -0
  33. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.css.d.ts +2 -0
  34. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +50 -0
  35. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.css.d.ts +2 -0
  36. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +10 -0
  37. package/internal-do-not-import-from-here/wctypings.d.ts +29 -1
  38. package/internal-do-not-import-from-here/workers/ServiceWorker.d.ts +2 -0
  39. package/package.json +2 -2
@@ -4,26 +4,3 @@ export interface ScrollOption {
4
4
  */
5
5
  callback: Function;
6
6
  }
7
- /**
8
- * Create a vue directive instance that can be used on an element
9
- *
10
- * Usage:
11
- *
12
- const directives = [
13
- ScrollDirective({
14
- callback: this.scrollCallback
15
- })
16
- ]
17
- <input type="text" v-model={this.keyword} {...{ directives }} />
18
- *
19
- * Or without options:
20
- <div omfx-scroll={this.scrollCallback} ></div>
21
- *
22
- */
23
- export declare function ScrollDirective(option: ScrollOption): {
24
- name: string;
25
- args: {
26
- callback: boolean;
27
- };
28
- };
29
- export declare function registerScrollDirective(): void;
@@ -49,6 +49,10 @@ declare const _default: {
49
49
  title: {
50
50
  type: import("vue").PropType<string>;
51
51
  };
52
+ eager: {
53
+ type: import("vue").PropType<boolean>;
54
+ required: false;
55
+ };
52
56
  "v-slots": import("vue").Prop<{
53
57
  default?: import("../../DefineVueTypings").Slot<any[]>;
54
58
  } & {
@@ -143,6 +147,10 @@ declare const _default: {
143
147
  title: {
144
148
  type: import("vue").PropType<string>;
145
149
  };
150
+ eager: {
151
+ type: import("vue").PropType<boolean>;
152
+ required: false;
153
+ };
146
154
  "v-slots": import("vue").Prop<{
147
155
  default?: import("../../DefineVueTypings").Slot<any[]>;
148
156
  } & {
@@ -241,6 +249,10 @@ declare const _default: {
241
249
  title: {
242
250
  type: import("vue").PropType<string>;
243
251
  };
252
+ eager: {
253
+ type: import("vue").PropType<boolean>;
254
+ required: false;
255
+ };
244
256
  "v-slots": import("vue").Prop<{
245
257
  default?: import("../../DefineVueTypings").Slot<any[]>;
246
258
  } & {
@@ -336,6 +348,10 @@ declare const _default: {
336
348
  title: {
337
349
  type: import("vue").PropType<string>;
338
350
  };
351
+ eager: {
352
+ type: import("vue").PropType<boolean>;
353
+ required: false;
354
+ };
339
355
  "v-slots": import("vue").Prop<{
340
356
  default?: import("../../DefineVueTypings").Slot<any[]>;
341
357
  } & {
@@ -397,6 +413,7 @@ declare const _default: {
397
413
  class?: String | String[];
398
414
  size?: "small" | "medium" | "large" | "x-small" | "full";
399
415
  persistent?: boolean;
416
+ eager?: boolean;
400
417
  colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
401
418
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
402
419
  "v-model"?: boolean;
@@ -2,7 +2,7 @@ import { ODraggableVariants } from "@omnia/fx-models";
2
2
  import { DataTableHeader, DefineEmit, DefineProp, DefineSlot, DefineVModel, IDataTableRowRenderer } from "@omnia/fx/ux";
3
3
  import { Ref, VNodeChild } from "vue";
4
4
  declare const defaultHeadersValue: any[];
5
- export type DraggableProps = DefineVModel<"", Array<any>, false, null, "The draggable items."> & DefineProp<"itemTitle", string | ((item: any) => VNodeChild), false, null, "Specify title property of an item or provide custom render it."> & DefineProp<"itemValue", string | ((item: any) => string), false, null, "Property on supplied items that contains its value."> & DefineProp<"disabledItem", string, false, null, "Specify a class name for items that are disabled for sortable."> & DefineProp<"placeholderClass", string, false, null, "Custom styles of the placeholder."> & DefineProp<"navigable", boolean | Ref<boolean>, false, false, "Show navigate icon for further navigation."> & DefineProp<"hideDraggableIcon", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"variant", ODraggableVariants, false, "default", "Applies a distinct style to the component."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeadersValue, "An array of objects that each describe a header column for data-table variant."> & DefineSlot<"item", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Define a custom item appearance."> & DefineSlot<"append", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Provide extra actions to the end of the item. Applicable in structured variants like List, DataTable,..."> & DefineEmit<"click:navigate", (value: any) => true, "Emit a navigate event."> & DefineEmit<"sort:start", () => true, "Emit a sort start event."> & DefineEmit<"sort:end", () => true, "Emit a sort end event.">;
5
+ export type DraggableProps = DefineVModel<"", Array<any>, false, null, "The draggable items."> & DefineProp<"itemTitle", string | ((item: any) => VNodeChild), false, null, "Specify title property of an item or provide custom render it."> & DefineProp<"itemValue", string | ((item: any) => string), false, null, "Property on supplied items that contains its value."> & DefineProp<"disabledItem", string, false, null, "Specify a class name for items that are disabled for sortable."> & DefineProp<"placeholderClass", string, false, null, "Custom styles of the placeholder."> & DefineProp<"navigable", boolean | Ref<boolean>, false, false, "Show navigate icon for further navigation."> & DefineProp<"hideDraggableIcon", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"draggableWholeRow", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"variant", ODraggableVariants, false, "default", "Applies a distinct style to the component."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeadersValue, "An array of objects that each describe a header column for data-table variant."> & DefineSlot<"item", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Define a custom item appearance."> & DefineSlot<"append", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Provide extra actions to the end of the item. Applicable in structured variants like List, DataTable,..."> & DefineEmit<"click:navigate", (value: any) => true, "Emit a navigate event."> & DefineEmit<"sort:start", () => true, "Emit a sort start event."> & DefineEmit<"sort:end", () => true, "Emit a sort end event.">;
6
6
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<DraggableProps>) => {
7
7
  $: import("vue").ComponentInternalInstance;
8
8
  $data: {};
@@ -52,7 +52,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<D
52
52
  "onSort:end"?: () => any;
53
53
  "onClick:navigate"?: (value: any) => any;
54
54
  "onSort:start"?: () => any;
55
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "itemValue" | "itemTitle" | "disabledItem" | "placeholderClass" | "navigable" | "hideDraggableIcon">;
55
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "itemValue" | "itemTitle" | "disabledItem" | "placeholderClass" | "navigable" | "hideDraggableIcon" | "draggableWholeRow">;
56
56
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
57
57
  [key: string]: any;
58
58
  }>;
@@ -6,12 +6,14 @@ declare const _default: {
6
6
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
7
7
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
8
8
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<BirthdayPropertyDefinition>, PropertyConfiguration<BirthdayPropertyDefinition>>;
9
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
9
10
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
10
11
  modelValue: import("vue").Prop<PropertyConfiguration<BirthdayPropertyDefinition>, PropertyConfiguration<BirthdayPropertyDefinition>>;
11
12
  onConfigurationValid: import("vue").Prop<(validConfig?: PropertyConfiguration<BirthdayPropertyDefinition>) => void, (validConfig?: PropertyConfiguration<BirthdayPropertyDefinition>) => void>;
12
13
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
13
14
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
14
15
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<BirthdayPropertyDefinition>, PropertyConfiguration<BirthdayPropertyDefinition>>;
16
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
15
17
  }>>, {}, true, {}, {}, {
16
18
  P: {};
17
19
  B: {};
@@ -25,6 +27,7 @@ declare const _default: {
25
27
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
26
28
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
27
29
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<BirthdayPropertyDefinition>, PropertyConfiguration<BirthdayPropertyDefinition>>;
30
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
28
31
  }>>, {}, {}, {}, {}, {}>;
29
32
  __isFragment?: never;
30
33
  __isTeleport?: never;
@@ -35,9 +38,11 @@ declare const _default: {
35
38
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
36
39
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
37
40
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<BirthdayPropertyDefinition>, PropertyConfiguration<BirthdayPropertyDefinition>>;
41
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
38
42
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
39
43
  propsDefinition: Omit<Readonly<{} & {
40
44
  modelValue?: PropertyConfiguration<BirthdayPropertyDefinition>;
45
+ multilingualContext?: import("@omnia/fx/ux").MultilingualContext;
41
46
  onConfigurationValid?: (validConfig?: PropertyConfiguration<BirthdayPropertyDefinition>) => void;
42
47
  showLockConfiguration?: boolean;
43
48
  renderEditSettings?: boolean;
@@ -6,12 +6,14 @@ declare const _default: {
6
6
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
7
7
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
8
8
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<DateTimePropertyDefinition>, PropertyConfiguration<DateTimePropertyDefinition>>;
9
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
9
10
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
10
11
  modelValue: import("vue").Prop<PropertyConfiguration<DateTimePropertyDefinition>, PropertyConfiguration<DateTimePropertyDefinition>>;
11
12
  onConfigurationValid: import("vue").Prop<(validConfig?: PropertyConfiguration<DateTimePropertyDefinition>) => void, (validConfig?: PropertyConfiguration<DateTimePropertyDefinition>) => void>;
12
13
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
13
14
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
14
15
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<DateTimePropertyDefinition>, PropertyConfiguration<DateTimePropertyDefinition>>;
16
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
15
17
  }>>, {}, true, {}, {}, {
16
18
  P: {};
17
19
  B: {};
@@ -25,6 +27,7 @@ declare const _default: {
25
27
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
26
28
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
27
29
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<DateTimePropertyDefinition>, PropertyConfiguration<DateTimePropertyDefinition>>;
30
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
28
31
  }>>, {}, {}, {}, {}, {}>;
29
32
  __isFragment?: never;
30
33
  __isTeleport?: never;
@@ -35,9 +38,11 @@ declare const _default: {
35
38
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
36
39
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
37
40
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<DateTimePropertyDefinition>, PropertyConfiguration<DateTimePropertyDefinition>>;
41
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
38
42
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
39
43
  propsDefinition: Omit<Readonly<{} & {
40
44
  modelValue?: PropertyConfiguration<DateTimePropertyDefinition>;
45
+ multilingualContext?: import("@omnia/fx/ux").MultilingualContext;
41
46
  onConfigurationValid?: (validConfig?: PropertyConfiguration<DateTimePropertyDefinition>) => void;
42
47
  showLockConfiguration?: boolean;
43
48
  renderEditSettings?: boolean;
@@ -6,12 +6,14 @@ declare const _default: {
6
6
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
7
7
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
8
8
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<HtmlPropertyDefinition>, PropertyConfiguration<HtmlPropertyDefinition>>;
9
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
9
10
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
10
11
  modelValue: import("vue").Prop<PropertyConfiguration<HtmlPropertyDefinition>, PropertyConfiguration<HtmlPropertyDefinition>>;
11
12
  onConfigurationValid: import("vue").Prop<(validConfig?: PropertyConfiguration<HtmlPropertyDefinition>) => void, (validConfig?: PropertyConfiguration<HtmlPropertyDefinition>) => void>;
12
13
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
13
14
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
14
15
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<HtmlPropertyDefinition>, PropertyConfiguration<HtmlPropertyDefinition>>;
16
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
15
17
  }>>, {}, true, {}, {}, {
16
18
  P: {};
17
19
  B: {};
@@ -25,6 +27,7 @@ declare const _default: {
25
27
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
26
28
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
27
29
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<HtmlPropertyDefinition>, PropertyConfiguration<HtmlPropertyDefinition>>;
30
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
28
31
  }>>, {}, {}, {}, {}, {}>;
29
32
  __isFragment?: never;
30
33
  __isTeleport?: never;
@@ -35,9 +38,11 @@ declare const _default: {
35
38
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
36
39
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
37
40
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<HtmlPropertyDefinition>, PropertyConfiguration<HtmlPropertyDefinition>>;
41
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
38
42
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
39
43
  propsDefinition: Omit<Readonly<{} & {
40
44
  modelValue?: PropertyConfiguration<HtmlPropertyDefinition>;
45
+ multilingualContext?: import("@omnia/fx/ux").MultilingualContext;
41
46
  onConfigurationValid?: (validConfig?: PropertyConfiguration<HtmlPropertyDefinition>) => void;
42
47
  showLockConfiguration?: boolean;
43
48
  renderEditSettings?: boolean;
@@ -6,6 +6,7 @@ declare const _default: {
6
6
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
7
7
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
8
8
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<IdentityPropertyDefinition>, PropertyConfiguration<IdentityPropertyDefinition>>;
9
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
9
10
  "v-model": import("vue").Prop<PropertyConfiguration<IdentityPropertyDefinition>, PropertyConfiguration<IdentityPropertyDefinition>>;
10
11
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
11
12
  modelValue: import("vue").Prop<PropertyConfiguration<IdentityPropertyDefinition>, PropertyConfiguration<IdentityPropertyDefinition>>;
@@ -13,6 +14,7 @@ declare const _default: {
13
14
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
14
15
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
15
16
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<IdentityPropertyDefinition>, PropertyConfiguration<IdentityPropertyDefinition>>;
17
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
16
18
  "v-model": import("vue").Prop<PropertyConfiguration<IdentityPropertyDefinition>, PropertyConfiguration<IdentityPropertyDefinition>>;
17
19
  }>>, {}, true, {}, {}, {
18
20
  P: {};
@@ -27,6 +29,7 @@ declare const _default: {
27
29
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
28
30
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
29
31
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<IdentityPropertyDefinition>, PropertyConfiguration<IdentityPropertyDefinition>>;
32
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
30
33
  "v-model": import("vue").Prop<PropertyConfiguration<IdentityPropertyDefinition>, PropertyConfiguration<IdentityPropertyDefinition>>;
31
34
  }>>, {}, {}, {}, {}, {}>;
32
35
  __isFragment?: never;
@@ -38,11 +41,13 @@ declare const _default: {
38
41
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
39
42
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
40
43
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<IdentityPropertyDefinition>, PropertyConfiguration<IdentityPropertyDefinition>>;
44
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
41
45
  "v-model": import("vue").Prop<PropertyConfiguration<IdentityPropertyDefinition>, PropertyConfiguration<IdentityPropertyDefinition>>;
42
46
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
43
47
  propsDefinition: Omit<Readonly<{} & {
44
48
  "v-model"?: PropertyConfiguration<IdentityPropertyDefinition>;
45
49
  modelValue?: PropertyConfiguration<IdentityPropertyDefinition>;
50
+ multilingualContext?: import("@omnia/fx/ux").MultilingualContext;
46
51
  onConfigurationValid?: (validConfig?: PropertyConfiguration<IdentityPropertyDefinition>) => void;
47
52
  showLockConfiguration?: boolean;
48
53
  renderEditSettings?: boolean;
@@ -6,6 +6,7 @@ declare const _default: {
6
6
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
7
7
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
8
8
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<ImagePropertyDefinition>, PropertyConfiguration<ImagePropertyDefinition>>;
9
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
9
10
  "v-model": import("vue").Prop<PropertyConfiguration<ImagePropertyDefinition>, PropertyConfiguration<ImagePropertyDefinition>>;
10
11
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
11
12
  modelValue: import("vue").Prop<PropertyConfiguration<ImagePropertyDefinition>, PropertyConfiguration<ImagePropertyDefinition>>;
@@ -13,6 +14,7 @@ declare const _default: {
13
14
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
14
15
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
15
16
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<ImagePropertyDefinition>, PropertyConfiguration<ImagePropertyDefinition>>;
17
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
16
18
  "v-model": import("vue").Prop<PropertyConfiguration<ImagePropertyDefinition>, PropertyConfiguration<ImagePropertyDefinition>>;
17
19
  }>>, {}, true, {}, {}, {
18
20
  P: {};
@@ -27,6 +29,7 @@ declare const _default: {
27
29
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
28
30
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
29
31
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<ImagePropertyDefinition>, PropertyConfiguration<ImagePropertyDefinition>>;
32
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
30
33
  "v-model": import("vue").Prop<PropertyConfiguration<ImagePropertyDefinition>, PropertyConfiguration<ImagePropertyDefinition>>;
31
34
  }>>, {}, {}, {}, {}, {}>;
32
35
  __isFragment?: never;
@@ -38,11 +41,13 @@ declare const _default: {
38
41
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
39
42
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
40
43
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<ImagePropertyDefinition>, PropertyConfiguration<ImagePropertyDefinition>>;
44
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
41
45
  "v-model": import("vue").Prop<PropertyConfiguration<ImagePropertyDefinition>, PropertyConfiguration<ImagePropertyDefinition>>;
42
46
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
43
47
  propsDefinition: Omit<Readonly<{} & {
44
48
  "v-model"?: PropertyConfiguration<ImagePropertyDefinition>;
45
49
  modelValue?: PropertyConfiguration<ImagePropertyDefinition>;
50
+ multilingualContext?: import("@omnia/fx/ux").MultilingualContext;
46
51
  onConfigurationValid?: (validConfig?: PropertyConfiguration<ImagePropertyDefinition>) => void;
47
52
  showLockConfiguration?: boolean;
48
53
  renderEditSettings?: boolean;
@@ -6,6 +6,7 @@ declare const _default: {
6
6
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
7
7
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
8
8
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<LinkPropertyDefinition>, PropertyConfiguration<LinkPropertyDefinition>>;
9
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
9
10
  "v-model": import("vue").Prop<PropertyConfiguration<LinkPropertyDefinition>, PropertyConfiguration<LinkPropertyDefinition>>;
10
11
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
11
12
  modelValue: import("vue").Prop<PropertyConfiguration<LinkPropertyDefinition>, PropertyConfiguration<LinkPropertyDefinition>>;
@@ -13,6 +14,7 @@ declare const _default: {
13
14
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
14
15
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
15
16
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<LinkPropertyDefinition>, PropertyConfiguration<LinkPropertyDefinition>>;
17
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
16
18
  "v-model": import("vue").Prop<PropertyConfiguration<LinkPropertyDefinition>, PropertyConfiguration<LinkPropertyDefinition>>;
17
19
  }>>, {}, true, {}, {}, {
18
20
  P: {};
@@ -27,6 +29,7 @@ declare const _default: {
27
29
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
28
30
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
29
31
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<LinkPropertyDefinition>, PropertyConfiguration<LinkPropertyDefinition>>;
32
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
30
33
  "v-model": import("vue").Prop<PropertyConfiguration<LinkPropertyDefinition>, PropertyConfiguration<LinkPropertyDefinition>>;
31
34
  }>>, {}, {}, {}, {}, {}>;
32
35
  __isFragment?: never;
@@ -38,11 +41,13 @@ declare const _default: {
38
41
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
39
42
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
40
43
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<LinkPropertyDefinition>, PropertyConfiguration<LinkPropertyDefinition>>;
44
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
41
45
  "v-model": import("vue").Prop<PropertyConfiguration<LinkPropertyDefinition>, PropertyConfiguration<LinkPropertyDefinition>>;
42
46
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
43
47
  propsDefinition: Omit<Readonly<{} & {
44
48
  "v-model"?: PropertyConfiguration<LinkPropertyDefinition>;
45
49
  modelValue?: PropertyConfiguration<LinkPropertyDefinition>;
50
+ multilingualContext?: import("@omnia/fx/ux").MultilingualContext;
46
51
  onConfigurationValid?: (validConfig?: PropertyConfiguration<LinkPropertyDefinition>) => void;
47
52
  showLockConfiguration?: boolean;
48
53
  renderEditSettings?: boolean;
@@ -7,6 +7,7 @@ declare const _default: {
7
7
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
8
8
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
9
9
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
10
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
10
11
  "v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
11
12
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
12
13
  modelValue: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
@@ -14,6 +15,7 @@ declare const _default: {
14
15
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
15
16
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
16
17
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
18
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
17
19
  "v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
18
20
  }>>, {}, true, {}, {}, {
19
21
  P: {};
@@ -28,6 +30,7 @@ declare const _default: {
28
30
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
29
31
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
30
32
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
33
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
31
34
  "v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
32
35
  }>>, {}, {}, {}, {}, {}>;
33
36
  __isFragment?: never;
@@ -39,11 +42,13 @@ declare const _default: {
39
42
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
40
43
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
41
44
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
45
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
42
46
  "v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
43
47
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
44
48
  propsDefinition: Omit<Readonly<{} & {
45
49
  "v-model"?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>;
46
50
  modelValue?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>;
51
+ multilingualContext?: import("@omnia/fx/ux").MultilingualContext;
47
52
  onConfigurationValid?: (validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>) => void;
48
53
  showLockConfiguration?: boolean;
49
54
  renderEditSettings?: boolean;
@@ -7,6 +7,7 @@ declare const _default: {
7
7
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
8
8
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
9
9
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
10
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
10
11
  "v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
11
12
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
12
13
  modelValue: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
@@ -14,6 +15,7 @@ declare const _default: {
14
15
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
15
16
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
16
17
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
18
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
17
19
  "v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
18
20
  }>>, {}, true, {}, {}, {
19
21
  P: {};
@@ -28,6 +30,7 @@ declare const _default: {
28
30
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
29
31
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
30
32
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
33
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
31
34
  "v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
32
35
  }>>, {}, {}, {}, {}, {}>;
33
36
  __isFragment?: never;
@@ -39,11 +42,13 @@ declare const _default: {
39
42
  showLockConfiguration?: import("vue").Prop<boolean, boolean>;
40
43
  renderEditSettings?: import("vue").Prop<boolean, boolean>;
41
44
  defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
45
+ multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
42
46
  "v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
43
47
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
44
48
  propsDefinition: Omit<Readonly<{} & {
45
49
  "v-model"?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>;
46
50
  modelValue?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>;
51
+ multilingualContext?: import("@omnia/fx/ux").MultilingualContext;
47
52
  onConfigurationValid?: (validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>) => void;
48
53
  showLockConfiguration?: boolean;
49
54
  renderEditSettings?: boolean;
@@ -0,0 +1,47 @@
1
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<Record<string, any>>) => {
2
+ $: import("vue").ComponentInternalInstance;
3
+ $data: {};
4
+ $props: {};
5
+ $attrs: {
6
+ [x: string]: unknown;
7
+ };
8
+ $refs: {
9
+ [x: string]: unknown;
10
+ };
11
+ $slots: Readonly<{
12
+ [name: string]: import("vue").Slot<any>;
13
+ }>;
14
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
15
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
16
+ $emit: (event: string, ...args: any[]) => void;
17
+ $el: any;
18
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
19
+ beforeCreate?: (() => void) | (() => void)[];
20
+ created?: (() => void) | (() => void)[];
21
+ beforeMount?: (() => void) | (() => void)[];
22
+ mounted?: (() => void) | (() => void)[];
23
+ beforeUpdate?: (() => void) | (() => void)[];
24
+ updated?: (() => void) | (() => void)[];
25
+ activated?: (() => void) | (() => void)[];
26
+ deactivated?: (() => void) | (() => void)[];
27
+ beforeDestroy?: (() => void) | (() => void)[];
28
+ beforeUnmount?: (() => void) | (() => void)[];
29
+ destroyed?: (() => void) | (() => void)[];
30
+ unmounted?: (() => void) | (() => void)[];
31
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
32
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
33
+ 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)[];
34
+ };
35
+ $forceUpdate: () => void;
36
+ $nextTick: typeof import("vue").nextTick;
37
+ $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;
38
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
39
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {
40
+ "v-slots"?: {
41
+ default?: import("vue").Slot;
42
+ } & {};
43
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
44
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
45
+ [key: string]: any;
46
+ }>;
47
+ export default _default;
@@ -9,9 +9,16 @@ export interface OmniaAuthProviderContext {
9
9
  uniqueName: string;
10
10
  redirectUrl: string;
11
11
  hasOtherWaysToLogin: boolean;
12
+ hideForgotPassword: boolean;
12
13
  showError: (authenticationResult: AuthenticationResult) => void;
13
14
  openSelections: () => void;
14
15
  }
15
16
  export interface OmniaAuthProviderChainAction {
16
17
  (result: AuthenticationSessionResult): void;
17
18
  }
19
+ export interface AuthenticationBlockSettings {
20
+ hideForgotPassword: boolean;
21
+ }
22
+ export declare const AuthenticationBlockSettingsFactory: {
23
+ defaultSettings(): AuthenticationBlockSettings;
24
+ };
@@ -1,6 +1,10 @@
1
1
  export declare namespace SignInLocalization {
2
2
  const namespace = "Omnia.SignIn";
3
3
  interface locInterface {
4
+ Settings: {
5
+ DisplaySection: string;
6
+ HideForgotPassword: string;
7
+ };
4
8
  Login: string;
5
9
  SendMagicLink: string;
6
10
  MagicLinkIsValidMessage: string;
@@ -1,16 +1,52 @@
1
- declare const _default: {
2
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
3
- P: {};
4
- B: {};
5
- D: {};
6
- C: {};
7
- M: {};
8
- Defaults: {};
9
- }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
10
- __isFragment?: never;
11
- __isTeleport?: never;
12
- __isSuspense?: never;
13
- } & 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 & {
14
- propsDefinition: Omit<Readonly<{} & {}>, never>;
15
- };
1
+ import { AuthenticationBlockSettings } from "../Shared";
2
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
+ settings?: AuthenticationBlockSettings;
4
+ }>) => {
5
+ $: import("vue").ComponentInternalInstance;
6
+ $data: {};
7
+ $props: {};
8
+ $attrs: {
9
+ [x: string]: unknown;
10
+ };
11
+ $refs: {
12
+ [x: string]: unknown;
13
+ };
14
+ $slots: Readonly<{
15
+ [name: string]: import("vue").Slot<any>;
16
+ }>;
17
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
18
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
19
+ $emit: (event: string, ...args: any[]) => void;
20
+ $el: any;
21
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
22
+ beforeCreate?: (() => void) | (() => void)[];
23
+ created?: (() => void) | (() => void)[];
24
+ beforeMount?: (() => void) | (() => void)[];
25
+ mounted?: (() => void) | (() => void)[];
26
+ beforeUpdate?: (() => void) | (() => void)[];
27
+ updated?: (() => void) | (() => void)[];
28
+ activated?: (() => void) | (() => void)[];
29
+ deactivated?: (() => void) | (() => void)[];
30
+ beforeDestroy?: (() => void) | (() => void)[];
31
+ beforeUnmount?: (() => void) | (() => void)[];
32
+ destroyed?: (() => void) | (() => void)[];
33
+ unmounted?: (() => void) | (() => void)[];
34
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
35
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
36
+ 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)[];
37
+ };
38
+ $forceUpdate: () => void;
39
+ $nextTick: typeof import("vue").nextTick;
40
+ $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;
41
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
42
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
43
+ settings?: AuthenticationBlockSettings;
44
+ }> & {
45
+ "v-slots"?: {
46
+ default?: import("vue").Slot;
47
+ } & {};
48
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "settings">;
49
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
50
+ [key: string]: any;
51
+ }>;
16
52
  export default _default;
@@ -1,3 +1,4 @@
1
+ import { AuthenticationBlockSettings } from "../Shared";
1
2
  import { AuthenticationOption, AuthenticationMetaData } from "@omnia/fx-models";
2
3
  declare const _default: {
3
4
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
@@ -5,12 +6,14 @@ declare const _default: {
5
6
  uniqueName: import("vue").Prop<string, string>;
6
7
  back: import("vue").Prop<() => void, () => void>;
7
8
  onProviderSelected: import("vue").Prop<(authOption: AuthenticationMetaData) => void, (authOption: AuthenticationMetaData) => void>;
9
+ settings: import("vue").Prop<AuthenticationBlockSettings, AuthenticationBlockSettings>;
8
10
  memorizedProvider: import("vue").Prop<AuthenticationMetaData, AuthenticationMetaData>;
9
11
  }>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
10
12
  authFlows: import("vue").Prop<AuthenticationOption[][], AuthenticationOption[][]>;
11
13
  uniqueName: import("vue").Prop<string, string>;
12
14
  back: import("vue").Prop<() => void, () => void>;
13
15
  onProviderSelected: import("vue").Prop<(authOption: AuthenticationMetaData) => void, (authOption: AuthenticationMetaData) => void>;
16
+ settings: import("vue").Prop<AuthenticationBlockSettings, AuthenticationBlockSettings>;
14
17
  memorizedProvider: import("vue").Prop<AuthenticationMetaData, AuthenticationMetaData>;
15
18
  }>>, {}, true, {}, {}, {
16
19
  P: {};
@@ -24,6 +27,7 @@ declare const _default: {
24
27
  uniqueName: import("vue").Prop<string, string>;
25
28
  back: import("vue").Prop<() => void, () => void>;
26
29
  onProviderSelected: import("vue").Prop<(authOption: AuthenticationMetaData) => void, (authOption: AuthenticationMetaData) => void>;
30
+ settings: import("vue").Prop<AuthenticationBlockSettings, AuthenticationBlockSettings>;
27
31
  memorizedProvider: import("vue").Prop<AuthenticationMetaData, AuthenticationMetaData>;
28
32
  }>>, () => JSX.Element, {}, {}, {}, {}>;
29
33
  __isFragment?: never;
@@ -34,9 +38,11 @@ declare const _default: {
34
38
  uniqueName: import("vue").Prop<string, string>;
35
39
  back: import("vue").Prop<() => void, () => void>;
36
40
  onProviderSelected: import("vue").Prop<(authOption: AuthenticationMetaData) => void, (authOption: AuthenticationMetaData) => void>;
41
+ settings: import("vue").Prop<AuthenticationBlockSettings, AuthenticationBlockSettings>;
37
42
  memorizedProvider: import("vue").Prop<AuthenticationMetaData, AuthenticationMetaData>;
38
43
  }>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
39
44
  propsDefinition: Omit<Readonly<{} & {
45
+ settings?: AuthenticationBlockSettings;
40
46
  uniqueName?: string;
41
47
  authFlows?: AuthenticationOption[][];
42
48
  back?: () => void;