@omnia/fx 8.0.549-dev → 8.0.550-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 (20) hide show
  1. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/{fills → container-fills}/store/ContainerFillsEditorStore.d.ts +6 -1
  2. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/{fills → text-fills}/store/TextFillsEditorStore.d.ts +6 -1
  3. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/themes/store/ThemeEditorStore.d.ts +11 -3
  4. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/velcron/Velcron.d.ts +7 -0
  5. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/store/ButtonStylePickerStore.d.ts +42 -1
  6. package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +3 -3
  7. package/internal-do-not-import-from-here/ux/{aurora/admin/theme-designer/fills/FillsJourney.d.ts → journey/JourneyDocumentation.d.ts} +3 -3
  8. package/internal-do-not-import-from-here/ux/journey/JourneyMenu.d.ts +3 -3
  9. package/internal-do-not-import-from-here/ux/journey/models/BladeInstance.d.ts +5 -0
  10. package/internal-do-not-import-from-here/wctypings.d.ts +65 -29
  11. package/package.json +2 -2
  12. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/fills/ContainerFillsBlade.stylex.d.ts +0 -3
  13. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/fills/store/FillsEditorStore.d.ts +0 -94
  14. /package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/{ThemeDesignMenu.d.ts → PresetsMenuJourney.d.ts} +0 -0
  15. /package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/{DesignToolsJourney.d.ts → ThemeDesignMenuJourney.d.ts} +0 -0
  16. /package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/{fills/containerBlades → container-fills}/ContainerFillsEditBlade.d.ts +0 -0
  17. /package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/{fills/containerBlades/ContainerFillsBlade.d.ts → container-fills/ContainerFillsJourney.d.ts} +0 -0
  18. /package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/{fills/textBlades → text-fills}/TextFillsEditBlade.d.ts +0 -0
  19. /package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/{fills/textBlades/TextFillsBlade.d.ts → text-fills/TextFillsJourney.d.ts} +0 -0
  20. /package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/themes/{EditLayoutWidthBlade.d.ts → EditLayoutBlade.d.ts} +0 -0
@@ -1,4 +1,4 @@
1
- import { ContainerFillBlueprint, ContainerFillBlueprints, BlueprintVariant, ITemplateRegistration } from "@omnia/fx-models";
1
+ import { ContainerFillBlueprint, ContainerFillBlueprints, BlueprintVariant, guid, ITemplateRegistration } from "@omnia/fx-models";
2
2
  export declare const useContainerFillsEditorStore: () => {
3
3
  state: {
4
4
  editingVariant: ContainerFillBlueprint;
@@ -28,6 +28,11 @@ export declare const useContainerFillsEditorStore: () => {
28
28
  label: (variant: BlueprintVariant) => string;
29
29
  variant: (variant: BlueprintVariant) => ContainerFillBlueprint;
30
30
  };
31
+ bladeIds: {
32
+ allFills: guid;
33
+ editFills: guid;
34
+ editFill: guid;
35
+ };
31
36
  } & {
32
37
  dispose?: () => void;
33
38
  };
@@ -1,4 +1,4 @@
1
- import { BlueprintVariant, TextFillBlueprint, TextFillBlueprints, ITemplateRegistration } from "@omnia/fx-models";
1
+ import { BlueprintVariant, guid, TextFillBlueprint, TextFillBlueprints, ITemplateRegistration } from "@omnia/fx-models";
2
2
  export declare const useTextFillsEditorStore: () => {
3
3
  state: {
4
4
  editingVariant: TextFillBlueprint;
@@ -28,6 +28,11 @@ export declare const useTextFillsEditorStore: () => {
28
28
  label: (variant: BlueprintVariant) => string;
29
29
  variant: (variant: BlueprintVariant) => any;
30
30
  };
31
+ bladeIds: {
32
+ allFills: guid;
33
+ editFills: guid;
34
+ editFill: guid;
35
+ };
31
36
  } & {
32
37
  dispose?: () => void;
33
38
  };
@@ -1,4 +1,4 @@
1
- import { guid, ITemplateRegistration, ResolvedThemeDefinition, TemplateRegistrationType, ColorSchema, ColorSchemaType, MediaPickerImage } from "@omnia/fx-models";
1
+ import { guid, ITemplateRegistration, ResolvedThemeDefinition, TemplateRegistrationType, ColorSchema, ColorSchemaType, MediaPickerImage, SpacingValue, Spacing } from "@omnia/fx-models";
2
2
  export declare const useThemeEditorStore: () => {
3
3
  state: {
4
4
  definition: ITemplateRegistration<ResolvedThemeDefinition>;
@@ -9,6 +9,10 @@ export declare const useThemeEditorStore: () => {
9
9
  layoutType: {
10
10
  selected: string;
11
11
  width: number;
12
+ layoutMargin: SpacingValue;
13
+ blockSpacing: SpacingValue;
14
+ sectionMargin: Spacing;
15
+ columnSpacing: SpacingValue;
12
16
  };
13
17
  fills: {
14
18
  show: boolean;
@@ -24,6 +28,10 @@ export declare const useThemeEditorStore: () => {
24
28
  layoutType: {
25
29
  selected: string;
26
30
  width: number;
31
+ layoutMargin: SpacingValue;
32
+ blockSpacing: SpacingValue;
33
+ sectionMargin: Spacing;
34
+ columnSpacing: SpacingValue;
27
35
  };
28
36
  fills: {
29
37
  show: boolean;
@@ -38,7 +46,7 @@ export declare const useThemeEditorStore: () => {
38
46
  };
39
47
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
40
48
  layoutType(): {
41
- set: (type: string) => void;
49
+ setwidthType: (type: string) => void;
42
50
  width: (width: number) => void;
43
51
  };
44
52
  setPreviewTheme(): void;
@@ -80,7 +88,7 @@ export declare const useThemeEditorStore: () => {
80
88
  viewBlade: guid;
81
89
  editColorSchemasBlade: guid;
82
90
  editMediaResourcesBlade: guid;
83
- editLayoutWidthBlade: guid;
91
+ editLayoutBlade: guid;
84
92
  };
85
93
  dataTypes: {
86
94
  itemTypes: {
@@ -0,0 +1,7 @@
1
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{}> & {} & {
2
+ "v-slots"?: {} & Omit<{
3
+ default?: import("vue").Slot;
4
+ $stable?: boolean;
5
+ }, never>;
6
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, never> & import("@omnia/fx/ux").VNodeEvents) => any;
7
+ export default _default;
@@ -1,4 +1,5 @@
1
- import { BlueprintsStrategyBase, ButtonBlueprint, ButtonBlueprints, ButtonBlueprintVariant, VelcronAppDefinition } from "@omnia/fx-models";
1
+ import { BlueprintsStrategyBase, ButtonBlueprint, ButtonBlueprints, ButtonBlueprintVariant, MultilingualString, VelcronAppDefinition } from "@omnia/fx-models";
2
+ import { IIcon } from "@omnia/fx/ux";
2
3
  export interface ButtonType {
3
4
  id: string;
4
5
  title: string;
@@ -15,12 +16,52 @@ export declare const useButtonStylePickerStore: () => {
15
16
  velcronDefinition: VelcronAppDefinition<object>;
16
17
  blueprints: ButtonBlueprints;
17
18
  baseStrategy: BlueprintsStrategyBase;
19
+ selectedBlueprint: ButtonBlueprint;
20
+ hasSelection: boolean;
21
+ pickerStore: {
22
+ readonly slots: {
23
+ selectionRender: () => import("vue").VNodeChild;
24
+ };
25
+ state: {
26
+ searchText: string;
27
+ blueprint: import("@omnia/fx-models").InputBlueprint;
28
+ variant: "button" | "dialog" | "dropdown" | "journey" | "virtual-list";
29
+ showMenu: boolean;
30
+ };
31
+ events: import("@omnia/fx/stores").StoreEvents<{
32
+ searchText: string;
33
+ blueprint: import("@omnia/fx-models").InputBlueprint;
34
+ variant: "button" | "dialog" | "dropdown" | "journey" | "virtual-list";
35
+ showMenu: boolean;
36
+ }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
37
+ actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
38
+ itemSelections: () => {
39
+ show: () => void;
40
+ hide: () => void;
41
+ };
42
+ init(externalModel: import("@omnia/fx-models").MenuState, renderingSlots: any, blueprint: import("@omnia/fx-models").InputBlueprint, variant: "button" | "dialog" | "dropdown" | "journey" | "virtual-list"): void;
43
+ }>;
44
+ get: {
45
+ readonly bladesId: {
46
+ selection: import("@omnia/fx-models").guid;
47
+ };
48
+ };
49
+ } & {
50
+ dispose?: () => void;
51
+ };
52
+ preview: {
53
+ title: string | MultilingualString;
54
+ icon: IIcon;
55
+ };
18
56
  };
19
57
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
20
58
  selectItem(value: ButtonBlueprint | ButtonBlueprintVariant): void;
59
+ loadSelectedBlueprint: () => any;
21
60
  initState: (model: ButtonBlueprint | ButtonBlueprintVariant, blueprints: ButtonBlueprints, baseStrategy: BlueprintsStrategyBase) => void;
22
61
  }>;
23
62
  get: {
63
+ getSelectionName: () => string | MultilingualString;
64
+ getFormattedName: (blueprint: ButtonBlueprint, variant: ButtonBlueprintVariant) => string | MultilingualString;
24
65
  blueprint: {
25
66
  byButtonType: (button: ButtonType) => ButtonBlueprint;
26
67
  fallbackBlueprint: (variant: ButtonBlueprintVariant) => any;
@@ -1,5 +1,5 @@
1
1
  import { ActionDefinition, guid, IIcon } from "@omnia/fx-models";
2
- import { BladeContext, BladeContexts, BladeSizeTypes, BladeVariantTypes, ConfirmDialogOptions, DefineEmit, DefineProp, DefineSlot, useJourneyStore } from "@omnia/fx/ux";
2
+ import { BladeContext, BladeContexts, BladeSizeTypes, BladeVariantTypes, ConfirmDialogOptions, DefineEmit, DefineProp, DefineSlot, Documentation, useJourneyStore } from "@omnia/fx/ux";
3
3
  import { Ref, VNodeChild } from "vue";
4
4
  export interface SwitchValue {
5
5
  value: boolean;
@@ -12,7 +12,7 @@ export interface DisabledButtonTooltips {
12
12
  remove?: string;
13
13
  commit?: string;
14
14
  }
15
- export type JourneyBladeProps = DefineProp<"getApi", (store: ReturnType<typeof useJourneyStore>) => void, false, null, "callback to get a reference to the journey store. The store is used to navigate the journey blades."> & DefineProp<"title", string, false, null, "Specify the title of the blade."> & DefineProp<"toned", boolean, false, null, "IF the color is toned"> & DefineProp<"subTitle", string, false, null, "Specify a subtitle for the blade and the title is displayed in a breadcrumb style where the subTittle is prominent."> & DefineProp<"id", guid, true, null, "The id of the blade. Used to identify the blade in the journey store."> & DefineProp<"size", BladeSizeTypes, false, "x-small", "Specify the size of the blade. Small will show the header buttons as icons."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"ok", boolean, false, false, "Specify if the blade should show a ok button. If a ok button is shown, a cancel button will also be shown."> & DefineProp<"searchable", boolean | Ref<boolean>, false, false, "Specify if the blade should show a search field."> & DefineProp<"delete", boolean, false, false, "Specify if the blade should show a delete button."> & DefineProp<"remove", boolean, false, false, "Specify if the blade should show a remove button."> & DefineProp<"disabled", boolean, false, false, "Specify if the blade should shoud be read only."> & DefineProp<"manageList", boolean | Ref<boolean>, false, false, "Specify if the blade shoud be draggable on items."> & DefineProp<"manageListText", string, false, null, "Customize the text for Manage List Button."> & DefineProp<"switch", SwitchValue, false, null, "Specify if the blade should show switch."> & DefineProp<"settings", boolean, false, false, "Specify if the blade should show a settings button."> & DefineProp<"hideFilterLabel", boolean, false, false, "Hide label of the filter button."> & DefineProp<"create", boolean, false, false, "Specify if the blade should show a create button."> & DefineProp<"add", boolean, false, false, "Specify if the blade should show a add button."> & DefineProp<"actions", ActionDefinition[], false, null, "Specify if the blade should show responsive actions. Useful for both mobile and desktop."> & DefineProp<"bladeContext", BladeContexts | BladeContext, false, null, "Specify context of the journey."> & DefineProp<"icon", IIcon, false, null, "Specify an icon for the blade header. This should be used to hightlight the blade type such as create blades, edit blades etc."> & DefineProp<"variant", BladeVariantTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"onOk", () => boolean | Promise<boolean>, false, null, "Trigger when user click ok, return true if ok to close the blade."> & DefineProp<"onRemove", () => boolean | Promise<boolean>, false, null, "Trigger when user click remove, return true if ok to close the blade."> & DefineProp<"onDelete", () => boolean | Promise<boolean>, false, null, "Trigger when user click delete, return true if ok to close the blade."> & DefineProp<"onSwitch", (value: boolean) => boolean | Promise<boolean>, false, null, "Trigger when user toggle switch, return true if ok to close the blade."> & DefineProp<"confirmDeleteDialogOption", ConfirmDialogOptions, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineProp<"eager", boolean, false, false, "Force the tab content to preload. This is useful if you have content that you want to be preloaded, instead of 'load on click' default behavior."> & DefineProp<"disabledButtonTooltips", DisabledButtonTooltips, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineProp<"sizeOnMobile", BladeSizeTypes, false, null, "Specify the size of the blade on mobile. Default full width on mobile view"> & DefineSlot<"actions", () => VNodeChild> & DefineSlot<"actionsFooter", () => VNodeChild> & DefineSlot<"filter", () => VNodeChild> & DefineEmit<"click:create", (id: guid) => true> & DefineEmit<"click:add", (id: guid) => true> & DefineEmit<"click:back", (id: guid) => true> & DefineEmit<"click:cancel", (id: guid) => true> & DefineEmit<"click:settings", (id: guid) => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"changeFilter", () => true> & DefineEmit<"closeFilter", () => true> & DefineEmit<"hidden", () => true> & DefineEmit<"click:manageList", () => true> & DefineProp<"commit", "create" | "save", false, null, "Specify the commit type, and a button with the specified type will be automatically generated in the footer. The default value is Save."> & DefineProp<"onCommit", () => boolean | Promise<boolean>, false, null, "Trigger when users commit the changes. Return true to close the blade.">;
15
+ export type JourneyBladeProps = DefineProp<"getApi", (store: ReturnType<typeof useJourneyStore>) => void, false, null, "callback to get a reference to the journey store. The store is used to navigate the journey blades."> & DefineProp<"title", string, false, null, "Specify the title of the blade."> & DefineProp<"toned", boolean, false, null, "IF the color is toned"> & DefineProp<"subTitle", string, false, null, "Specify a subtitle for the blade and the title is displayed in a breadcrumb style where the subTittle is prominent."> & DefineProp<"id", guid, true, null, "The id of the blade. Used to identify the blade in the journey store."> & DefineProp<"size", BladeSizeTypes, false, "x-small", "Specify the size of the blade. Small will show the header buttons as icons."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"ok", boolean, false, false, "Specify if the blade should show a ok button. If a ok button is shown, a cancel button will also be shown."> & DefineProp<"searchable", boolean | Ref<boolean>, false, false, "Specify if the blade should show a search field."> & DefineProp<"delete", boolean, false, false, "Specify if the blade should show a delete button."> & DefineProp<"remove", boolean, false, false, "Specify if the blade should show a remove button."> & DefineProp<"disabled", boolean, false, false, "Specify if the blade should shoud be read only."> & DefineProp<"manageList", boolean | Ref<boolean>, false, false, "Specify if the blade shoud be draggable on items."> & DefineProp<"manageListText", string, false, null, "Customize the text for Manage List Button."> & DefineProp<"switch", SwitchValue, false, null, "Specify if the blade should show switch."> & DefineProp<"settings", boolean, false, false, "Specify if the blade should show a settings button."> & DefineProp<"hideFilterLabel", boolean, false, false, "Hide label of the filter button."> & DefineProp<"create", boolean, false, false, "Specify if the blade should show a create button."> & DefineProp<"add", boolean, false, false, "Specify if the blade should show a add button."> & DefineProp<"actions", ActionDefinition[], false, null, "Specify if the blade should show responsive actions. Useful for both mobile and desktop."> & DefineProp<"bladeContext", BladeContexts | BladeContext, false, null, "Specify context of the journey."> & DefineProp<"icon", IIcon, false, null, "Specify an icon for the blade header. This should be used to hightlight the blade type such as create blades, edit blades etc."> & DefineProp<"variant", BladeVariantTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"onOk", () => boolean | Promise<boolean>, false, null, "Trigger when user click ok, return true if ok to close the blade."> & DefineProp<"onRemove", () => boolean | Promise<boolean>, false, null, "Trigger when user click remove, return true if ok to close the blade."> & DefineProp<"onDelete", () => boolean | Promise<boolean>, false, null, "Trigger when user click delete, return true if ok to close the blade."> & DefineProp<"onSwitch", (value: boolean) => boolean | Promise<boolean>, false, null, "Trigger when user toggle switch, return true if ok to close the blade."> & DefineProp<"confirmDeleteDialogOption", ConfirmDialogOptions, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineProp<"eager", boolean, false, false, "Force the tab content to preload. This is useful if you have content that you want to be preloaded, instead of 'load on click' default behavior."> & DefineProp<"disabledButtonTooltips", DisabledButtonTooltips, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineProp<"sizeOnMobile", BladeSizeTypes, false, null, "Specify the size of the blade on mobile. Default full width on mobile view"> & DefineSlot<"actions", () => VNodeChild> & DefineSlot<"actionsFooter", () => VNodeChild> & DefineSlot<"filter", () => VNodeChild> & DefineEmit<"click:create", (id: guid) => true> & DefineEmit<"click:add", (id: guid) => true> & DefineEmit<"click:back", (id: guid) => true> & DefineEmit<"click:cancel", (id: guid) => true> & DefineEmit<"click:settings", (id: guid) => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"changeFilter", () => true> & DefineEmit<"closeFilter", () => true> & DefineEmit<"hidden", () => true> & DefineEmit<"click:manageList", () => true> & DefineProp<"commit", "create" | "save", false, null, "Specify the commit type, and a button with the specified type will be automatically generated in the footer. The default value is Save."> & DefineProp<"onCommit", () => boolean | Promise<boolean>, false, null, "Trigger when users commit the changes. Return true to close the blade."> & DefineProp<"documentation", Documentation, false, null, "Specifies the documentation reference for the blade header. Provide the corresponding Omnia documentation URL along with a display title.">;
16
16
  declare const _default: (props: import("@omnia/fx/ux").ExtractProps<JourneyBladeProps> & {
17
17
  "onClick:cancel"?: (id: guid) => any;
18
18
  "onClick:back"?: (id: guid) => any;
@@ -33,5 +33,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<JourneyBlade
33
33
  default?: import("vue").Slot;
34
34
  $stable?: boolean;
35
35
  }, "filter" | "actions" | "actionsFooter">;
36
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "icon" | "variant" | "size" | "switch" | "actions" | "create" | "remove" | "delete" | "add" | "ok" | "settings" | "id" | "disabled" | "toned" | "slot:actions" | "eager" | "loading" | "subTitle" | "emit:click:cancel" | "getApi" | "searchable" | "manageList" | "manageListText" | "hideFilterLabel" | "bladeContext" | "onOk" | "onRemove" | "onDelete" | "onSwitch" | "confirmDeleteDialogOption" | "disabledButtonTooltips" | "sizeOnMobile" | "slot:actionsFooter" | "slot:filter" | "emit:click:create" | "emit:click:add" | "emit:click:back" | "emit:click:settings" | "emit:search" | "emit:changeFilter" | "emit:closeFilter" | "emit:hidden" | "emit:click:manageList" | "commit" | "onCommit"> & import("@omnia/fx/ux").VNodeEvents) => any;
36
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "icon" | "variant" | "size" | "switch" | "actions" | "create" | "remove" | "delete" | "add" | "ok" | "settings" | "id" | "disabled" | "toned" | "slot:actions" | "eager" | "loading" | "subTitle" | "emit:click:cancel" | "getApi" | "searchable" | "manageList" | "manageListText" | "hideFilterLabel" | "bladeContext" | "onOk" | "onRemove" | "onDelete" | "onSwitch" | "confirmDeleteDialogOption" | "disabledButtonTooltips" | "sizeOnMobile" | "slot:actionsFooter" | "slot:filter" | "emit:click:create" | "emit:click:add" | "emit:click:back" | "emit:click:settings" | "emit:search" | "emit:changeFilter" | "emit:closeFilter" | "emit:hidden" | "emit:click:manageList" | "commit" | "onCommit" | "documentation"> & import("@omnia/fx/ux").VNodeEvents) => any;
37
37
  export default _default;
@@ -1,10 +1,10 @@
1
- type FillType = "container" | "text";
1
+ import { Documentation } from "@omnia/fx/ux";
2
2
  declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
- fillType?: FillType;
3
+ documentation?: Documentation;
4
4
  }> & {} & {
5
5
  "v-slots"?: {} & Omit<{
6
6
  default?: import("vue").Slot;
7
7
  $stable?: boolean;
8
8
  }, never>;
9
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "fillType"> & import("@omnia/fx/ux").VNodeEvents) => any;
9
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "documentation"> & import("@omnia/fx/ux").VNodeEvents) => any;
10
10
  export default _default;
@@ -1,9 +1,9 @@
1
1
  import { guid, IIcon, JourneyMenuItem, JourneySwitchMenuItem } from "@omnia/fx-models";
2
- import { BladeSizeTypes, useJourneyMenuStore, DefineProp, DefineSlot, DefineEmit } from "@omnia/fx/ux";
2
+ import { BladeSizeTypes, useJourneyMenuStore, DefineProp, DefineSlot, DefineEmit, Documentation } from "@omnia/fx/ux";
3
3
  import { VNodeChild } from "vue";
4
4
  import { type SwitchValue } from "./JourneyBlade";
5
5
  declare const defaultItems: any[];
6
- export type JourneyMenuProps = DefineProp<"getApi", (store: ReturnType<typeof useJourneyMenuStore>) => void, false, null, "callback to get a reference to the journey store. The store is used to navigate the journey blades."> & DefineProp<"title", string, false, null, "Specify the title of the blade."> & DefineProp<"id", guid, false, null, "The id of the blade. Used to identify the blade in the journey store."> & DefineProp<"save", boolean, false, false, "Specify if the blade should show a save button. If a save button is shown, a cancel button will also be shown."> & DefineProp<"switch", SwitchValue, false, null, "Specify if the blade should show switch."> & DefineProp<"onSave", () => boolean | Promise<boolean>, false, null, "Trigger when user click save, return true if ok to close the blade."> & DefineProp<"onSwitch", (value: boolean) => boolean | Promise<boolean>, false, null, "Trigger when user toggle switch, return true if ok to close the blade."> & DefineProp<"icon", IIcon, false, null, "Specify an icon for the blade header. This should be used to hightlight the blade type such as create blades, edit blades etc."> & DefineProp<"size", BladeSizeTypes, false, "x-small", "Specify the size of the blade. Small will show the header buttons as icons."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"items", JourneyMenuItem[], false, typeof defaultItems, "An array of menu items used for automatically generating menu items"> & DefineSlot<"selection", (selected: JourneyMenuItem) => VNodeChild, "Custom renderer selected node."> & DefineSlot<"actionsFooter", () => VNodeChild> & DefineEmit<"itemSelected", (item: JourneyMenuItem) => true> & DefineEmit<"valueChanged", (item: JourneySwitchMenuItem) => true>;
6
+ export type JourneyMenuProps = DefineProp<"getApi", (store: ReturnType<typeof useJourneyMenuStore>) => void, false, null, "callback to get a reference to the journey store. The store is used to navigate the journey blades."> & DefineProp<"title", string, false, null, "Specify the title of the blade."> & DefineProp<"id", guid, false, null, "The id of the blade. Used to identify the blade in the journey store."> & DefineProp<"save", boolean, false, false, "Specify if the blade should show a save button. If a save button is shown, a cancel button will also be shown."> & DefineProp<"switch", SwitchValue, false, null, "Specify if the blade should show switch."> & DefineProp<"onSave", () => boolean | Promise<boolean>, false, null, "Trigger when user click save, return true if ok to close the blade."> & DefineProp<"onSwitch", (value: boolean) => boolean | Promise<boolean>, false, null, "Trigger when user toggle switch, return true if ok to close the blade."> & DefineProp<"icon", IIcon, false, null, "Specify an icon for the blade header. This should be used to hightlight the blade type such as create blades, edit blades etc."> & DefineProp<"size", BladeSizeTypes, false, "x-small", "Specify the size of the blade. Small will show the header buttons as icons."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"items", JourneyMenuItem[], false, typeof defaultItems, "An array of menu items used for automatically generating menu items"> & DefineSlot<"selection", (selected: JourneyMenuItem) => VNodeChild, "Custom renderer selected node."> & DefineSlot<"actionsFooter", () => VNodeChild> & DefineEmit<"itemSelected", (item: JourneyMenuItem) => true> & DefineEmit<"valueChanged", (item: JourneySwitchMenuItem) => true> & DefineProp<"documentation", Documentation, false, null, "Specifies the documentation reference for the blade header. Provide the corresponding Omnia documentation URL along with a display title.">;
7
7
  declare const _default: (props: import("@omnia/fx/ux").ExtractProps<JourneyMenuProps> & {
8
8
  onValueChanged?: (item: JourneySwitchMenuItem) => any;
9
9
  onItemSelected?: (item: JourneyMenuItem) => any;
@@ -15,5 +15,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<JourneyMenuP
15
15
  default?: import("vue").Slot;
16
16
  $stable?: boolean;
17
17
  }, "selection" | "actionsFooter">;
18
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "icon" | "size" | "switch" | "save" | "id" | "items" | "loading" | "getApi" | "onSwitch" | "slot:actionsFooter" | "emit:valueChanged" | "onSave" | "slot:selection" | "emit:itemSelected"> & import("@omnia/fx/ux").VNodeEvents) => any;
18
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "icon" | "size" | "switch" | "save" | "id" | "items" | "loading" | "getApi" | "onSwitch" | "slot:actionsFooter" | "documentation" | "emit:valueChanged" | "onSave" | "slot:selection" | "emit:itemSelected"> & import("@omnia/fx/ux").VNodeEvents) => any;
19
19
  export default _default;
@@ -4,6 +4,10 @@ interface FilterInstance<T> {
4
4
  filterValues: T;
5
5
  resetFilterValues(value: T): void;
6
6
  }
7
+ export interface Documentation {
8
+ title?: string;
9
+ url?: string;
10
+ }
7
11
  export interface BladeInstance {
8
12
  id: guid;
9
13
  size: BladeSizeTypes;
@@ -14,5 +18,6 @@ export interface BladeInstance {
14
18
  changeFilter?: (value: any) => void;
15
19
  countFieldHasValue?: number;
16
20
  filterInstance?: FilterInstance<any>;
21
+ documentation?: Documentation;
17
22
  }
18
23
  export {};
@@ -74,6 +74,7 @@ import wc4357bb8264e3482c8710afed3b2be35c from './ux/journey/JourneyBlade';
74
74
  import wc0ce695fbce6f4c08906de47bbd84152d from './ux/journey/JourneyPlaceHolder';
75
75
  import wc828a4c20542945858e792ec584148a5c from './ux/journey/JourneyMenu';
76
76
  import wcd91fa8e10e3b4350bb158f9cbeace0e8 from './ux/journey/SettingsJourneyMenu';
77
+ import wc6d3766e2abe94ac1921672cf5667b0b3 from './ux/journey/JourneyDocumentation';
77
78
  import wc3392707566c844e39f57097aade4e81c from './ux/jsonexportimport/ExportImport';
78
79
  import wc20b4e8166fb44f2b8b240724eb5f2db2 from './ux/languagepicker/LanguagePicker';
79
80
  import wcfc7e793728e64099ab1b37b8f89e8693 from './ux/letteravatar/LetterAvatar';
@@ -401,9 +402,9 @@ import wc97fc43f2fa6e429483740135f5884c00 from './ux/app/apps/admin/TeamworkApps
401
402
  import wc633b2666fb3c48078175013704c7f7ac from './ux/app/apps/admin/CommunitiesAppsJourney';
402
403
  import wca457ba6d0da84795925235989b9c0c9a from './ux/app/apps/admin/AppManagementCategoryJourney';
403
404
  import wc669778312f2b40739774539e6de4d1ea from './ux/app/apps/admin/AppDefinitionsListing';
404
- import wc97cad1f254694fb2ab76b333cf8fe84c from './ux/aurora/admin/theme-designer/DesignToolsJourney';
405
+ import wc97cad1f254694fb2ab76b333cf8fe84c from './ux/aurora/admin/theme-designer/ThemeDesignMenuJourney';
405
406
  import wc9a366d289a7c4302b1073b43eb5b8d74 from './ux/aurora/admin/theme-designer/themes/ThemeDesignJourney';
406
- import wc5e7631b4411b498eafa68ebde2136cc5 from './ux/aurora/admin/theme-designer/ThemeDesignMenu';
407
+ import wc5e7631b4411b498eafa68ebde2136cc5 from './ux/aurora/admin/theme-designer/PresetsMenuJourney';
407
408
  import wcbed95d1ec67f4a15986fc72adebdb78f from './ux/aurora/admin/theme-selection/ThemeSelectionJourney';
408
409
  import wcd789d3dea034427490fb0a9133262d2c from './ux/aurora/admin/theme-selection/SelectBPThemeJourney';
409
410
  import wca506689e1e2845b5b2535095ef278edf from './ux/aurora/admin/theme-selection/SelectAppThemeJourney';
@@ -574,12 +575,14 @@ import wc9fbf91affc974ca698437e8ada43bb0c from './ux/admin/system/submenu/tenant
574
575
  import wc0aa3df9194784591a5be530314b8ac7f from './ux/aurora/admin/theme-designer/chrome/Chrome';
575
576
  import wcd90e0352809742c482bdda733dc8872a from './ux/aurora/admin/theme-designer/colorschemas/ColorSchemasJourney';
576
577
  import wc56efc575579e4da3bb45d3a45d8c0888 from './ux/aurora/admin/theme-designer/componentblueprints/BlueprintsJourney';
577
- import wcfebab40186954cadbb54852c509f31e6 from './ux/aurora/admin/theme-designer/fills/FillsJourney';
578
+ import wcfebab40186954cadbb54852c509f31e6 from './ux/aurora/admin/theme-designer/container-fills/ContainerFillsJourney';
578
579
  import wc8142fa90f0d34258bb080a15aa21ab74 from './ux/aurora/admin/theme-designer/fontsmanager/FontManager';
579
580
  import wc891de93e73cc47b0a552d24fdf34c9cf from './ux/aurora/admin/theme-designer/spacing/SpacingJourney';
580
581
  import wc682077b575c74b2086cbf438346e0ed3 from './ux/aurora/admin/theme-designer/templates/TemplatesJourney';
582
+ import wc3e2d77032e5248a78f34e39946d3f77a from './ux/aurora/admin/theme-designer/text-fills/TextFillsJourney';
581
583
  import wc8fd849bf99e84ba38daf8af9d6ea745b from './ux/aurora/admin/theme-designer/textstyles/TextStyles';
582
584
  import wcfc2401c7c3384790ae7ce17d05b0855f from './ux/aurora/admin/theme-designer/typography/TypographyJourney';
585
+ import wc1072582c49164765939d6f5901ae6a41 from './ux/aurora/admin/theme-designer/velcron/Velcron';
583
586
  import wc4834285963564938a31a1ac1dfb1b5d8 from './ux/layoutcanvas/editor/_old/blockplaceholder/BlockPlaceholder';
584
587
  import wc4512676606d342adbd011def4b615151 from './ux/layoutcanvas/editor/_old/canvastoolbar/CanvasToolbar';
585
588
  import wcd89913a1055942b38285fcab85751865 from './ux/layoutcanvas/editor/_old/devicepreviewer/DevicePreviewer';
@@ -807,14 +810,16 @@ declare global {
807
810
  };
808
811
  } : typeof wc56efc575579e4da3bb45d3a45d8c0888;
809
812
  };
810
- "fills": {
811
- "journey": typeof wcfebab40186954cadbb54852c509f31e6 extends {
812
- propsDefinition: infer TProp;
813
- } ? {
814
- new (...args: any[]): {
815
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
816
- };
817
- } : typeof wcfebab40186954cadbb54852c509f31e6;
813
+ "container": {
814
+ "fills": {
815
+ "journey": typeof wcfebab40186954cadbb54852c509f31e6 extends {
816
+ propsDefinition: infer TProp;
817
+ } ? {
818
+ new (...args: any[]): {
819
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
820
+ };
821
+ } : typeof wcfebab40186954cadbb54852c509f31e6;
822
+ };
818
823
  };
819
824
  "fontmanager": {
820
825
  "journey": typeof wc8142fa90f0d34258bb080a15aa21ab74 extends {
@@ -843,6 +848,17 @@ declare global {
843
848
  };
844
849
  } : typeof wc682077b575c74b2086cbf438346e0ed3;
845
850
  };
851
+ "text": {
852
+ "fills": {
853
+ "journey": typeof wc3e2d77032e5248a78f34e39946d3f77a extends {
854
+ propsDefinition: infer TProp;
855
+ } ? {
856
+ new (...args: any[]): {
857
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
858
+ };
859
+ } : typeof wc3e2d77032e5248a78f34e39946d3f77a;
860
+ };
861
+ };
846
862
  "textstyles": {
847
863
  "journey": typeof wc8fd849bf99e84ba38daf8af9d6ea745b extends {
848
864
  propsDefinition: infer TProp;
@@ -1764,6 +1780,13 @@ declare global {
1764
1780
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1765
1781
  };
1766
1782
  } : typeof wc828a4c20542945858e792ec584148a5c;
1783
+ "documentation": typeof wc6d3766e2abe94ac1921672cf5667b0b3 extends {
1784
+ propsDefinition: infer TProp;
1785
+ } ? {
1786
+ new (...args: any[]): {
1787
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1788
+ };
1789
+ } : typeof wc6d3766e2abe94ac1921672cf5667b0b3;
1767
1790
  "selection": {
1768
1791
  "list": typeof wc58e999e5a1184a7fbea90061fc377f91 extends {
1769
1792
  propsDefinition: infer TProp;
@@ -3143,15 +3166,6 @@ declare global {
3143
3166
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3144
3167
  };
3145
3168
  } : typeof wc9a366d289a7c4302b1073b43eb5b8d74;
3146
- "design": {
3147
- "menu": typeof wc5e7631b4411b498eafa68ebde2136cc5 extends {
3148
- propsDefinition: infer TProp;
3149
- } ? {
3150
- new (...args: any[]): {
3151
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3152
- };
3153
- } : typeof wc5e7631b4411b498eafa68ebde2136cc5;
3154
- };
3155
3169
  "definition": {
3156
3170
  "picker": typeof wc252ece0016594978b3ddfafdd59adda4 extends {
3157
3171
  propsDefinition: infer TProp;
@@ -4179,6 +4193,15 @@ declare global {
4179
4193
  } : typeof wc2717acc386ab40198b6dae0986557da3;
4180
4194
  };
4181
4195
  };
4196
+ "preset": {
4197
+ "menu": typeof wc5e7631b4411b498eafa68ebde2136cc5 extends {
4198
+ propsDefinition: infer TProp;
4199
+ } ? {
4200
+ new (...args: any[]): {
4201
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
4202
+ };
4203
+ } : typeof wc5e7631b4411b498eafa68ebde2136cc5;
4204
+ };
4182
4205
  "background": {
4183
4206
  "editor": typeof wc1f34388f1f4140d3a38e6b0cc8897fc5 extends {
4184
4207
  propsDefinition: infer TProp;
@@ -5070,15 +5093,17 @@ declare global {
5070
5093
  } : typeof wc669778312f2b40739774539e6de4d1ea;
5071
5094
  };
5072
5095
  };
5073
- "design": {
5074
- "tool": {
5075
- "journey": typeof wc97cad1f254694fb2ab76b333cf8fe84c extends {
5076
- propsDefinition: infer TProp;
5077
- } ? {
5078
- new (...args: any[]): {
5079
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
5080
- };
5081
- } : typeof wc97cad1f254694fb2ab76b333cf8fe84c;
5096
+ "theme": {
5097
+ "design": {
5098
+ "menu": {
5099
+ "journey": typeof wc97cad1f254694fb2ab76b333cf8fe84c extends {
5100
+ propsDefinition: infer TProp;
5101
+ } ? {
5102
+ new (...args: any[]): {
5103
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
5104
+ };
5105
+ } : typeof wc97cad1f254694fb2ab76b333cf8fe84c;
5106
+ };
5082
5107
  };
5083
5108
  };
5084
5109
  "themes": {
@@ -5224,6 +5249,17 @@ declare global {
5224
5249
  } : typeof wc0aa3df9194784591a5be530314b8ac7f;
5225
5250
  };
5226
5251
  };
5252
+ "velcron": {
5253
+ "studio": {
5254
+ "journey": typeof wc1072582c49164765939d6f5901ae6a41 extends {
5255
+ propsDefinition: infer TProp;
5256
+ } ? {
5257
+ new (...args: any[]): {
5258
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
5259
+ };
5260
+ } : typeof wc1072582c49164765939d6f5901ae6a41;
5261
+ };
5262
+ };
5227
5263
  };
5228
5264
  let o: {
5229
5265
  "action": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.549-dev",
4
+ "version": "8.0.550-dev",
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": "Omnia Digital Workplace AB",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.549-dev",
23
+ "@omnia/fx-models": "8.0.550-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
@@ -1,3 +0,0 @@
1
- export declare const FillStyles: {
2
- preview: Readonly<import("internal/fx/ux/Styles.stylex").StylexValue>;
3
- };
@@ -1,94 +0,0 @@
1
- import { guid } from "@omnia/fx-models";
2
- type RouteTypes = "containers" | "text";
3
- export declare const useFillsEditorStore: () => {
4
- state: {
5
- activeRoute: RouteTypes;
6
- };
7
- events: import("@omnia/fx/stores").StoreEvents<{
8
- activeRoute: RouteTypes;
9
- }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
10
- actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
11
- setActiveRoute(bladeId: guid): void;
12
- }>;
13
- get: {
14
- textFillsEditorStore: {
15
- state: {
16
- editingVariant: import("@omnia/fx-models").TextFillBlueprint;
17
- editingVariantType: import("@omnia/fx-models").BlueprintVariant;
18
- fillBlueprints: import("@omnia/fx-models").ITemplateRegistration<import("@omnia/fx-models").TextFillBlueprints, import("@omnia/fx-models").TemplateRegistrationType>;
19
- editMode: boolean;
20
- };
21
- events: import("@omnia/fx/stores").StoreEvents<{
22
- editingVariant: import("@omnia/fx-models").TextFillBlueprint;
23
- editingVariantType: import("@omnia/fx-models").BlueprintVariant;
24
- fillBlueprints: import("@omnia/fx-models").ITemplateRegistration<import("@omnia/fx-models").TextFillBlueprints, import("@omnia/fx-models").TemplateRegistrationType>;
25
- editMode: boolean;
26
- }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
27
- actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
28
- deleteEditingVariant(): void;
29
- editBlueprints(blueprints: import("@omnia/fx-models").ITemplateRegistration<import("@omnia/fx-models").TextFillBlueprints>): void;
30
- editVariant(variantName: import("@omnia/fx-models").BlueprintVariant): void;
31
- addBlueprint(): void;
32
- applyChanges(): void;
33
- save(): Promise<boolean>;
34
- delete(): Promise<boolean>;
35
- }>;
36
- rules: {
37
- isPlaceholder(variant: import("@omnia/fx-models").BlueprintVariant): boolean;
38
- };
39
- get: {
40
- label: (variant: import("@omnia/fx-models").BlueprintVariant) => string;
41
- variant: (variant: import("@omnia/fx-models").BlueprintVariant) => any;
42
- };
43
- } & {
44
- dispose?: () => void;
45
- };
46
- containerFillsEditorStore: {
47
- state: {
48
- editingVariant: import("@omnia/fx-models").ContainerFillBlueprint;
49
- editingVariantType: import("@omnia/fx-models").BlueprintVariant;
50
- fillBlueprints: import("@omnia/fx-models").ITemplateRegistration<import("@omnia/fx-models").ContainerFillBlueprints, import("@omnia/fx-models").TemplateRegistrationType>;
51
- editMode: boolean;
52
- };
53
- events: import("@omnia/fx/stores").StoreEvents<{
54
- editingVariant: import("@omnia/fx-models").ContainerFillBlueprint;
55
- editingVariantType: import("@omnia/fx-models").BlueprintVariant;
56
- fillBlueprints: import("@omnia/fx-models").ITemplateRegistration<import("@omnia/fx-models").ContainerFillBlueprints, import("@omnia/fx-models").TemplateRegistrationType>;
57
- editMode: boolean;
58
- }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
59
- actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
60
- editBlueprints(blueprints: import("@omnia/fx-models").ITemplateRegistration<import("@omnia/fx-models").ContainerFillBlueprints>): void;
61
- deleteEditingVariant(): void;
62
- editVariant(variantName: import("@omnia/fx-models").BlueprintVariant): void;
63
- addBlueprint(): void;
64
- applyChanges(): void;
65
- save(): Promise<boolean>;
66
- delete(): Promise<boolean>;
67
- }>;
68
- rules: {
69
- isPlaceholder(variant: import("@omnia/fx-models").BlueprintVariant): boolean;
70
- };
71
- get: {
72
- label: (variant: import("@omnia/fx-models").BlueprintVariant) => string;
73
- variant: (variant: import("@omnia/fx-models").BlueprintVariant) => import("@omnia/fx-models").ContainerFillBlueprint;
74
- };
75
- } & {
76
- dispose?: () => void;
77
- };
78
- };
79
- bladeIds: {
80
- containers: {
81
- allFills: guid;
82
- editFills: guid;
83
- editFill: guid;
84
- };
85
- text: {
86
- allFills: guid;
87
- editFills: guid;
88
- editFill: guid;
89
- };
90
- };
91
- } & {
92
- dispose?: () => void;
93
- };
94
- export {};