@omnia/fx 8.0.383-dev → 8.0.385-dev

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 (37) hide show
  1. package/internal-do-not-import-from-here/services/SecurityService.d.ts +2 -1
  2. package/internal-do-not-import-from-here/stores/DefineStore.d.ts +7 -7
  3. package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +2 -1
  4. package/internal-do-not-import-from-here/ux/UxModels.d.ts +1 -0
  5. package/internal-do-not-import-from-here/ux/admin/system/submenu/customemail/loc/localize.d.ts +4 -0
  6. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/AffixRow.d.ts +4 -4
  7. package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ButtonsEditorStore.d.ts +4 -4
  8. package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ComponentEditorStore.d.ts +3 -3
  9. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +3 -1
  10. package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +4 -4
  11. package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker_old.d.ts +475 -0
  12. package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/renderers/SwatchRenderer.d.ts +47 -0
  13. package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/stores/ColorPickerStore.d.ts +48 -0
  14. package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/store/FillPickerStore.d.ts +33 -0
  15. package/internal-do-not-import-from-here/ux/fileuploader/FileUploader.d.ts +31 -0
  16. package/internal-do-not-import-from-here/ux/inputtoken/InputToken.d.ts +23 -30
  17. package/internal-do-not-import-from-here/ux/journey/JourneyBlade.css.d.ts +1 -1
  18. package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +2 -2
  19. package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +4 -3
  20. package/internal-do-not-import-from-here/ux/journey/models/SettingsBladeRegistration.d.ts +1 -1
  21. package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +58 -1
  22. package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +1 -13
  23. package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +27 -79
  24. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
  25. package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.d.ts +1 -1
  26. package/internal-do-not-import-from-here/ux/oxide/datatable/CellRenderer.d.ts +8 -0
  27. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +3 -3
  28. package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +4 -26
  29. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +4 -3
  30. package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +3 -3
  31. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.stylex.d.ts +0 -1
  32. package/internal-do-not-import-from-here/ux/oxide/picker/Picker.d.ts +1 -1
  33. package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +1 -1
  34. package/internal-do-not-import-from-here/ux/selection/SelectionComponent.d.ts +21 -21
  35. package/internal-do-not-import-from-here/ux/sitelogoicon/SiteLogoIcon.d.ts +9 -12
  36. package/internal-do-not-import-from-here/wctypings.d.ts +28 -0
  37. package/package.json +3 -3
@@ -1,5 +1,5 @@
1
1
  import { OmniaContext } from "../contexts";
2
- import { guid, OmniaRole, PermissionBinding, RolePermissionSettingWithContextParam, AzurePermissionResource, AuthenticationSettings, AuthenticationConfiguration } from "../models";
2
+ import { guid, OmniaRole, PermissionBinding, RolePermissionSettingWithContextParam, AzurePermissionResource, AuthenticationSettings, AuthenticationConfiguration, AzureAdEnvironment } from "../models";
3
3
  export declare class SecurityService {
4
4
  private serviceContainerContext;
5
5
  omniaContext: OmniaContext;
@@ -19,6 +19,7 @@ export declare class SecurityService {
19
19
  getAuthenticationSettingsByUserTypeId: (userTypeId: guid) => Promise<AuthenticationSettings>;
20
20
  saveAuthenticationSettings: (authConfig: AuthenticationConfiguration) => Promise<void>;
21
21
  validateAzureAdPermissionsSynced: (permissionIds: Array<string>) => Promise<boolean>;
22
+ getAzureAdEnvironment: () => Promise<AzureAdEnvironment>;
22
23
  syncAzureAdPermissions: () => Promise<void>;
23
24
  private createHttpClientFromServiceId;
24
25
  }
@@ -1,5 +1,5 @@
1
1
  import { defineFactory, MessageBusExposeOnlySubscription, SetupFactoryContext } from "../core";
2
- import { IMessageBusSubscriptionHandler, IMessageBusTopicPublishSubscriber } from "@omnia/fx-models";
2
+ import { IMessageBusSubscriptionHandler, IMessageBusTopicPublishSubscriber, InstanceLifetimes } from "@omnia/fx-models";
3
3
  type MutateFn<T> = (value: T | ((prev: T) => T)) => void;
4
4
  export type StoreEvents<TState extends object, TEvents extends Record<string, IMessageBusTopicPublishSubscriber<any>> = {}> = {
5
5
  [K in keyof TState as `onMutated${Capitalize<string & K>}`]: MessageBusExposeOnlySubscription<TState[K]>;
@@ -49,20 +49,20 @@ export interface IReturnSetupStore<TState, TGetters, TActions extends {
49
49
  }
50
50
  export declare function defineStore<TState extends object, TGetters extends object, TActions extends {
51
51
  [key: string]: any;
52
- }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>>(name: string, setup: (ctx: SetupStoreContext) => InferReturnSetup): ReturnType<typeof defineFactory<InferReturnSetup>>;
52
+ }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>>(name: string, setup: (ctx: SetupStoreContext) => InferReturnSetup, lifetime?: InstanceLifetimes): ReturnType<typeof defineFactory<InferReturnSetup>>;
53
53
  export declare function defineStore<TState extends object, TGetters extends object, TActions extends {
54
54
  [key: string]: any;
55
- }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>, T1>(name: string, setup: (ctx: SetupStoreContext, param1: T1) => InferReturnSetup): ReturnType<typeof defineFactory<InferReturnSetup, T1>>;
55
+ }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>, T1>(name: string, setup: (ctx: SetupStoreContext, param1: T1) => InferReturnSetup, lifetime?: InstanceLifetimes): ReturnType<typeof defineFactory<InferReturnSetup, T1>>;
56
56
  export declare function defineStore<TState extends object, TGetters extends object, TActions extends {
57
57
  [key: string]: any;
58
- }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>, T1, T2>(name: string, setup: (ctx: SetupStoreContext, param1: T1, param2: T2) => InferReturnSetup): ReturnType<typeof defineFactory<InferReturnSetup, T1, T2>>;
58
+ }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>, T1, T2>(name: string, setup: (ctx: SetupStoreContext, param1: T1, param2: T2) => InferReturnSetup, lifetime?: InstanceLifetimes): ReturnType<typeof defineFactory<InferReturnSetup, T1, T2>>;
59
59
  export declare function defineStore<TState extends object, TGetters extends object, TActions extends {
60
60
  [key: string]: any;
61
- }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>, T1, T2, T3>(name: string, setup: (ctx: SetupStoreContext, param1: T1, param2: T2, param3: T3) => InferReturnSetup): ReturnType<typeof defineFactory<InferReturnSetup, T1, T2, T3>>;
61
+ }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>, T1, T2, T3>(name: string, setup: (ctx: SetupStoreContext, param1: T1, param2: T2, param3: T3, lifetime?: InstanceLifetimes) => InferReturnSetup): ReturnType<typeof defineFactory<InferReturnSetup, T1, T2, T3>>;
62
62
  export declare function defineStore<TState extends object, TGetters extends object, TActions extends {
63
63
  [key: string]: any;
64
- }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>, T1, T2, T3, T4>(name: string, setup: (ctx: SetupStoreContext, param1: T1, param2: T2, param3: T3, param4: T4) => InferReturnSetup): ReturnType<typeof defineFactory<InferReturnSetup, T1, T2, T3, T4>>;
64
+ }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>, T1, T2, T3, T4>(name: string, setup: (ctx: SetupStoreContext, param1: T1, param2: T2, param3: T3, param4: T4, lifetime?: InstanceLifetimes) => InferReturnSetup): ReturnType<typeof defineFactory<InferReturnSetup, T1, T2, T3, T4>>;
65
65
  export declare function defineStore<TState extends object, TGetters extends object, TActions extends {
66
66
  [key: string]: any;
67
- }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>, T1, T2, T3, T4, T5>(name: string, setup: (ctx: SetupStoreContext, param1: T1, param2: T2, param3: T3, param4: T4, param5: T5) => InferReturnSetup): ReturnType<typeof defineFactory<InferReturnSetup, T1, T2, T3, T4, T5>>;
67
+ }, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>, T1, T2, T3, T4, T5>(name: string, setup: (ctx: SetupStoreContext, param1: T1, param2: T2, param3: T3, param4: T4, param5: T5) => InferReturnSetup, lifetime?: InstanceLifetimes): ReturnType<typeof defineFactory<InferReturnSetup, T1, T2, T3, T4, T5>>;
68
68
  export {};
@@ -1,5 +1,5 @@
1
1
  import { SubscriptionHandler } from "@omnia/fx";
2
- import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, Ref, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, watch, watchEffect } from "vue";
2
+ import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, ComputedRef, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, Ref, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, watch, watchEffect } from "vue";
3
3
  import { LooseRequired, Prettify, UnionToIntersection } from "@vue/shared";
4
4
  import { ColorSchemaType, ColorSchemaTypes, ComponentBundleManifest, Directives, guid } from "@omnia/fx-models";
5
5
  import { ColorSchemaStoreType, VueComponentBaseProps } from ".";
@@ -134,6 +134,7 @@ type InternalSetupContext<ExtractedPropsType, Props, E = EmitsOptions, S extends
134
134
  attrs: Data;
135
135
  slots: ExtractVSlots<Props> & S;
136
136
  seo: boolean;
137
+ mobile: ComputedRef<boolean>;
137
138
  models?: Required<ExtractVModels<Props>>;
138
139
  colors: ReturnType<typeof useColorSchemaSetup>;
139
140
  validator: IValidator;
@@ -646,6 +646,7 @@ export interface OmniaUxLocalization {
646
646
  ShowTitle: string;
647
647
  };
648
648
  OmniaAdmin: {
649
+ Title: string;
649
650
  Close: string;
650
651
  Administration: string;
651
652
  };
@@ -1,6 +1,10 @@
1
1
  export declare namespace CustomEmailSettingsLocalization {
2
2
  const namespace = "Omnia.Fx.Ux.CustomEmailSettings";
3
3
  interface locInterface {
4
+ New7TestConfigureApplicationAccessPolicyPS: string;
5
+ New7ConfigureApplicationAccessPolicyPS: string;
6
+ New7ConfigureApplicationAccessPolicyMessage: string;
7
+ New7TestConfigureApplicationAccessPolicyMessage: string;
4
8
  Header: string;
5
9
  Email: string;
6
10
  UserMailbox: string;
@@ -1,5 +1,5 @@
1
1
  import { AffixDefinition, EnterprisePropertyDefinition, guid } from "@omnia/fx-models";
2
- import { IDataTableRowRenderer } from "@omnia/fx/ux";
2
+ import { IDataTableRow } from "@omnia/fx/ux";
3
3
  export interface AffixRowConfigurationData {
4
4
  availablePropertyTitleAsDict: {
5
5
  [internalName: string]: EnterprisePropertyDefinition;
@@ -36,12 +36,12 @@ export interface AffixRowProps {
36
36
  data: AffixRowConfigurationData;
37
37
  editingAffix: EditAffixDefinition;
38
38
  isPrefix: boolean;
39
- row: IDataTableRowRenderer<AffixDefinition>;
39
+ row: IDataTableRow<AffixDefinition>;
40
40
  onSaveAll: () => void;
41
41
  onDelete: (affix: AffixDefinition) => void;
42
42
  }
43
43
  export declare function useAffixRow(props: AffixRowProps): {
44
- renderEditAffix: () => IDataTableRowRenderer<AffixDefinition>;
45
- renderAffix: () => IDataTableRowRenderer<AffixDefinition>;
44
+ renderEditAffix: () => import("vue/jsx-runtime").JSX.Element;
45
+ renderAffix: () => import("vue/jsx-runtime").JSX.Element;
46
46
  };
47
47
  export {};
@@ -1,16 +1,16 @@
1
- import { ButtonBlueprint, ButtonBlueprintType, ButtonBlueprintVariant, ButtonBlueprints, ButtonTypes, ComponentBlueprints } from "@omnia/fx-models";
1
+ import { ButtonBlueprint, ButtonBlueprintType, ButtonBlueprintVariant, ButtonBlueprints, ButtonVariant, ComponentBlueprints } from "@omnia/fx-models";
2
2
  export declare const useButtonsEditorStore: () => {
3
3
  state: {
4
4
  blueprints: ButtonBlueprints;
5
5
  editingButtonBlueprint: ButtonBlueprint;
6
- editingButtonType: ButtonTypes;
6
+ editingButtonType: ButtonVariant;
7
7
  editingButtonBlueprintType: ButtonBlueprintType;
8
8
  strategy: string;
9
9
  };
10
10
  events: import("@omnia/fx/stores").StoreEvents<{
11
11
  blueprints: ButtonBlueprints;
12
12
  editingButtonBlueprint: ButtonBlueprint;
13
- editingButtonType: ButtonTypes;
13
+ editingButtonType: ButtonVariant;
14
14
  editingButtonBlueprintType: ButtonBlueprintType;
15
15
  strategy: string;
16
16
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
@@ -18,7 +18,7 @@ export declare const useButtonsEditorStore: () => {
18
18
  setEditingBlueprints(blueprints: ComponentBlueprints): void;
19
19
  addVariant(category: ButtonBlueprintType): ButtonBlueprintVariant;
20
20
  deleteEditingBlueprint(): void;
21
- setEditingBlueprint(type: ButtonBlueprintType, buttonType: ButtonTypes): void;
21
+ setEditingBlueprint(type: ButtonBlueprintType, buttonType: ButtonVariant): void;
22
22
  applyChanges(): void;
23
23
  }>;
24
24
  } & {
@@ -61,14 +61,14 @@ export declare const useComponentsEditorStore: () => {
61
61
  state: {
62
62
  blueprints: import("@omnia/fx-models").ButtonBlueprints;
63
63
  editingButtonBlueprint: import("@omnia/fx-models").ButtonBlueprint;
64
- editingButtonType: import("@omnia/fx-models").ButtonTypes;
64
+ editingButtonType: import("@omnia/fx-models").ButtonVariant;
65
65
  editingButtonBlueprintType: import("@omnia/fx-models").ButtonBlueprintType;
66
66
  strategy: string;
67
67
  };
68
68
  events: import("@omnia/fx/stores").StoreEvents<{
69
69
  blueprints: import("@omnia/fx-models").ButtonBlueprints;
70
70
  editingButtonBlueprint: import("@omnia/fx-models").ButtonBlueprint;
71
- editingButtonType: import("@omnia/fx-models").ButtonTypes;
71
+ editingButtonType: import("@omnia/fx-models").ButtonVariant;
72
72
  editingButtonBlueprintType: import("@omnia/fx-models").ButtonBlueprintType;
73
73
  strategy: string;
74
74
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
@@ -76,7 +76,7 @@ export declare const useComponentsEditorStore: () => {
76
76
  setEditingBlueprints(blueprints: ComponentBlueprints): void;
77
77
  addVariant(category: import("@omnia/fx-models").ButtonBlueprintType): import("@omnia/fx-models").ButtonBlueprintVariant;
78
78
  deleteEditingBlueprint(): void;
79
- setEditingBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): void;
79
+ setEditingBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonVariant): void;
80
80
  applyChanges(): void;
81
81
  }>;
82
82
  } & {
@@ -7,6 +7,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
7
7
  modelValue?: ButtonBlueprint | ButtonBlueprintVariant;
8
8
  } & {
9
9
  label?: string;
10
+ } & {
11
+ variant?: "list" | "picker";
10
12
  } & {
11
13
  placeholder?: string;
12
14
  } & {
@@ -23,5 +25,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
23
25
  "v-slots"?: {} & Omit<{
24
26
  default?: import("vue").Slot;
25
27
  }, never>;
26
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "modelValue" | "v-model" | "toned" | "placeholder" | "emit:update:modelValue" | "themeType" | "sampleText" | "customStyling"> & import("@omnia/fx/ux").VNodeEvents) => any;
28
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "label" | "modelValue" | "v-model" | "toned" | "placeholder" | "emit:update:modelValue" | "themeType" | "sampleText" | "customStyling"> & import("@omnia/fx/ux").VNodeEvents) => any;
27
29
  export default _default;
@@ -40,7 +40,7 @@ declare const _default: {
40
40
  type: import("vue").PropType<boolean>;
41
41
  };
42
42
  variant: {
43
- type: import("vue").PropType<"dropdown" | "journey">;
43
+ type: import("vue").PropType<"dropdown" | "journey" | "virtual-list">;
44
44
  };
45
45
  "onUpdate:modelValue": {
46
46
  type: import("vue").PropType<(value: ColorValue) => any | void>;
@@ -171,7 +171,7 @@ declare const _default: {
171
171
  type: import("vue").PropType<boolean>;
172
172
  };
173
173
  variant: {
174
- type: import("vue").PropType<"dropdown" | "journey">;
174
+ type: import("vue").PropType<"dropdown" | "journey" | "virtual-list">;
175
175
  };
176
176
  "onUpdate:modelValue": {
177
177
  type: import("vue").PropType<(value: ColorValue) => any | void>;
@@ -297,7 +297,7 @@ declare const _default: {
297
297
  type: import("vue").PropType<boolean>;
298
298
  };
299
299
  variant: {
300
- type: import("vue").PropType<"dropdown" | "journey">;
300
+ type: import("vue").PropType<"dropdown" | "journey" | "virtual-list">;
301
301
  };
302
302
  "onUpdate:modelValue": {
303
303
  type: import("vue").PropType<(value: ColorValue) => any | void>;
@@ -449,7 +449,7 @@ declare const _default: {
449
449
  };
450
450
  container?: boolean;
451
451
  opacity?: boolean;
452
- variant?: "dropdown" | "journey";
452
+ variant?: "dropdown" | "journey" | "virtual-list";
453
453
  label?: string;
454
454
  disabled?: boolean;
455
455
  colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic" | import("@omnia/fx-models").ColorSchemaTypes;