@omnia/fx 8.0.516-dev → 8.0.518-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 (22) hide show
  1. package/internal-do-not-import-from-here/ux/UxModels.d.ts +2 -0
  2. package/internal-do-not-import-from-here/ux/conditioncontrol/ConditionControl.d.ts +9 -3
  3. package/internal-do-not-import-from-here/ux/datetimefilterquery/loc/localize.d.ts +1 -1
  4. package/internal-do-not-import-from-here/ux/enterpriseproperties/models/display/EnterprisePropertiesTagDisplaySettings.d.ts +1 -0
  5. package/internal-do-not-import-from-here/ux/enterpriseproperties/models/display/EnterprisePropertiesTaxonomyDisplaySettings.d.ts +1 -0
  6. package/internal-do-not-import-from-here/ux/filter/JourneyFilterDialog.d.ts +3 -1
  7. package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +2 -2
  8. package/internal-do-not-import-from-here/ux/journey/selection/JourneySelectBase.d.ts +2 -2
  9. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/DefineLayoutEditorCanvas.d.ts +1 -0
  10. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +1 -0
  11. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvasContextProvider.d.ts +1 -0
  12. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasEditorStore.d.ts +1 -0
  13. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +1 -0
  14. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStoreV2.d.ts +1 -0
  15. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/ReactiveLayoutItemsSettingsStore.d.ts +1 -1
  16. package/internal-do-not-import-from-here/ux/models/linkpicker/LinkPickerRegistration.d.ts +1 -1
  17. package/internal-do-not-import-from-here/ux/oxide/icon/shared-mobile/useIconComponent.d.ts +1 -1
  18. package/internal-do-not-import-from-here/ux/oxide/selection/Selection.d.ts +2 -2
  19. package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.d.ts +3 -3
  20. package/internal-do-not-import-from-here/ux/rollupfilter/loc/localize.d.ts +2 -0
  21. package/internal-do-not-import-from-here/wctypings.d.ts +11 -2
  22. package/package.json +3 -3
@@ -346,6 +346,7 @@ export interface OmniaUxLocalization {
346
346
  Columns: string;
347
347
  SiteTemplate: string;
348
348
  AppTemplate: string;
349
+ AppTemplates: string;
349
350
  Query: string;
350
351
  Display: string;
351
352
  Filter: string;
@@ -426,6 +427,7 @@ export interface OmniaUxLocalization {
426
427
  OverlayColor: string;
427
428
  NoResultText: string;
428
429
  Metric: string;
430
+ AddAppTemplate: string;
429
431
  ShowMetric: string;
430
432
  Color: string;
431
433
  DialogWidth: string;
@@ -1,7 +1,12 @@
1
- import { IConditionControlItemFilterValues, IConditionControlItemRow } from "@omnia/fx-models";
1
+ import { guid, IConditionControlItemFilterValues, IConditionControlItemRow } from "@omnia/fx-models";
2
2
  import { DefineEmit, DefineProp, DefineSlot, DefineVModel } from "@omnia/fx/ux";
3
3
  import { VNodeChild } from "vue";
4
4
  import { ControlConditionBladeElement } from "@omnia/fx/ux";
5
+ interface IItem<TItem = any> {
6
+ uniqueId: guid;
7
+ title: string;
8
+ value: TItem;
9
+ }
5
10
  type ConditionControlProps<TItem> = DefineVModel<"", Array<TItem>, true> & DefineProp<"label", string, false, null, "Label for the control"> & DefineProp<"labelAddItem", string, false, null, "Label for the add item button"> & DefineProp<"labelAddItemValue", string, false, null, "Label for the add filter value button"> & DefineProp<"getItemTitle", (item: TItem) => string, false, null, "Callback function to return the title of the item"> & DefineSlot<"selectionRender", (item: {
6
11
  addItem: (item: TItem, title: string) => void;
7
12
  items: Array<TItem>;
@@ -16,11 +21,12 @@ type ConditionControlProps<TItem> = DefineVModel<"", Array<TItem>, true> & Defin
16
21
  SettingsRenderer: ControlConditionBladeElement;
17
22
  item: TItem;
18
23
  updateItem: (item: TItem) => void;
19
- }) => VNodeChild> & DefineSlot<"itemRenderer", (row: IConditionControlItemRow<TItem>) => VNodeChild, "Used to render each item in the list"> & DefineSlot<"itemValuesRenderer", (row: IConditionControlItemFilterValues<TItem>) => VNodeChild, "Used to render the item values in the filter"> & DefineEmit<"itemAdd", (item: TItem) => void, "Emitted when an item is added"> & DefineEmit<"itemRemove", (item: TItem) => void, "Emitted when an item is removed">;
24
+ }) => VNodeChild> & DefineSlot<"itemRenderer", (row: IConditionControlItemRow<TItem>) => VNodeChild, "Used to render each item in the list"> & DefineSlot<"itemValuesRenderer", (row: IConditionControlItemFilterValues<TItem>) => VNodeChild, "Used to render the item values in the filter"> & DefineEmit<"itemAdd", (item: TItem) => void, "Emitted when an item is added"> & DefineEmit<"itemRemove", (item: TItem) => void, "Emitted when an item is removed"> & DefineEmit<"showAddFilterValue", (item: IItem<TItem>) => void>;
20
25
  declare const _default: <TItem extends unknown = any>(props: import("@omnia/fx/ux").ExtractProps<ConditionControlProps<TItem>> & {
21
26
  "onUpdate:modelValue"?: (value: TItem[]) => any;
22
27
  onItemAdd?: (item: TItem) => any;
23
28
  onItemRemove?: (item: TItem) => any;
29
+ onShowAddFilterValue?: (item: IItem<TItem>) => any;
24
30
  } & {
25
31
  "v-slots"?: {
26
32
  selectionRender?: (item: {
@@ -47,5 +53,5 @@ declare const _default: <TItem extends unknown = any>(props: import("@omnia/fx/u
47
53
  default?: import("vue").Slot;
48
54
  $stable?: boolean;
49
55
  }, "selectionRender" | "settingsRender" | "settingsRenderV2" | "selectionRenderV2" | "itemRenderer" | "itemValuesRenderer">;
50
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "modelValue" | "emit:update:modelValue" | "slot:selectionRender" | "slot:settingsRender" | "slot:settingsRenderV2" | "slot:selectionRenderV2" | "labelAddItem" | "labelAddItemValue" | "getItemTitle" | "slot:itemRenderer" | "slot:itemValuesRenderer" | "emit:itemAdd" | "emit:itemRemove"> & import("@omnia/fx/ux").VNodeEvents) => any;
56
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "modelValue" | "emit:update:modelValue" | "slot:selectionRender" | "slot:settingsRender" | "slot:settingsRenderV2" | "slot:selectionRenderV2" | "labelAddItem" | "labelAddItemValue" | "getItemTitle" | "slot:itemRenderer" | "slot:itemValuesRenderer" | "emit:itemAdd" | "emit:itemRemove" | "emit:showAddFilterValue"> & import("@omnia/fx/ux").VNodeEvents) => any;
51
57
  export default _default;
@@ -1,5 +1,5 @@
1
1
  export declare namespace DateTimeFilterQueryLocalization {
2
- const namespace = "Omnia.Ux.DateTimeFilterQuery";
2
+ type Namespace = "Omnia.Ux.DateTimeFilterQuery";
3
3
  interface locInterface {
4
4
  DatePeriods: {
5
5
  OneWeekFromNow: string;
@@ -19,4 +19,5 @@ export interface EnterprisePropertiesTagDisplaySettings extends EnterpriseProper
19
19
  title: string;
20
20
  };
21
21
  }[];
22
+ textOnly?: boolean;
22
23
  }
@@ -24,4 +24,5 @@ export interface EnterprisePropertiesTaxonomyDisplaySettings extends EnterpriseP
24
24
  icon: IIcon;
25
25
  };
26
26
  }[]);
27
+ textOnly?: boolean;
27
28
  }
@@ -8,6 +8,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
8
8
  searchable?: boolean | Ref<boolean, boolean>;
9
9
  } & DefineSlot<"filter", () => VNodeChild> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"applyFilter", () => true> & DefineEmit<"closeFilter", () => true> & {
10
10
  variant?: "dialog" | "journey";
11
+ } & {
12
+ hideFilterLabel?: boolean;
11
13
  }> & {
12
14
  onSearch?: (searchText: string) => any;
13
15
  onCloseFilter?: () => any;
@@ -19,5 +21,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
19
21
  default?: import("vue").Slot;
20
22
  $stable?: boolean;
21
23
  }, "filter">;
22
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "searchable" | "slot:filter" | "emit:search" | "emit:closeFilter" | "heightDialog" | "countFieldHasValue" | "emit:applyFilter"> & import("@omnia/fx/ux").VNodeEvents) => any;
24
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "searchable" | "hideFilterLabel" | "slot:filter" | "emit:search" | "emit:closeFilter" | "heightDialog" | "countFieldHasValue" | "emit:applyFilter"> & import("@omnia/fx/ux").VNodeEvents) => any;
23
25
  export default _default;
@@ -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<"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.">;
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, "switch" | "icon" | "actions" | "title" | "variant" | "size" | "create" | "remove" | "delete" | "add" | "ok" | "settings" | "id" | "disabled" | "toned" | "slot:actions" | "eager" | "loading" | "subTitle" | "emit:click:cancel" | "getApi" | "searchable" | "manageList" | "manageListText" | "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, "switch" | "icon" | "actions" | "title" | "variant" | "size" | "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;
37
37
  export default _default;
@@ -1,7 +1,7 @@
1
1
  import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineVModel, JourneySelectBladeElement, JourneySelectItem, JourneySelectPropertyMapping, useJourneySelectStore } from "@omnia/fx/ux";
2
2
  import { VNodeChild } from "vue";
3
3
  import { ActionDefinition } from "@omnia/fx-models";
4
- type BaseProps<TItem> = DefinePropTheming & DefineVModel<"", Array<any> | any> & DefineProp<"getApi", (store: ReturnType<typeof useJourneySelectStore>) => void, false, null, "callback to get a reference to the store"> & DefineProp<"items", Array<TItem>, false, null, "Items to select from"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"multiple", boolean, false, null, "If it is allowed to select multiple or single"> & DefineProp<"propertyValueMapping", JourneySelectPropertyMapping<TItem>, false, null, "Property value mappings"> & DefineProp<"returnSelectionAsObject", boolean, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value"> & DefineProp<"label", string, null, null, "The label of the component"> & DefineProp<"labelAdd", string, null, null, "The add label of the component"> & DefineProp<"titleAdd", string, null, null, "The add title of the add blade"> & DefineProp<"titleEdit", string, null, null, "The edit title of the edit blade"> & DefineProp<"disableSearch", boolean, false, null, "Disables the automatic search"> & DefineProp<"disableSave", boolean, false, null, "If it is allowed save"> & DefineProp<"sortable", boolean, false, null, "If it is allowed to sort"> & DefineProp<"readonly", boolean, false, null, "Disable add and delete"> & DefineProp<"list", boolean, false, null, "Always render the items as a list"> & DefineProp<"confirmDelete", boolean, false, null, "If you confirm before delete from the items"> & DefineProp<"noAddConfirm", boolean, false, null, "If items are added without a save button"> & DefineProp<"bladelessAdd", boolean, false, null, "If addis not a blade and only fires events"> & DefineProp<"bladeless", boolean, false, null, "If add/edit is not a blade and only fires events"> & DefineProp<"actions", ActionDefinition[], false, null, "Actions to display in the blade header of the selection blade"> & DefineProp<"itemSettingable", (item: TItem) => boolean, false, null, "Item has settings or not."> & DefineProp<"itemDeletable", (item: TItem) => boolean, false, null, "Item can be deleted or not."> & DefineSlot<"selectionItemRender", (item: JourneySelectItem<any>, index: number, isSelected: boolean) => VNodeChild> & DefineSlot<"selectionRender", () => VNodeChild> & DefineSlot<"selectedItemRenderer", (item: JourneySelectItem<any>, index: number) => VNodeChild> & DefineSlot<"settingsRender", (item: JourneySelectItem<any>, index: number) => VNodeChild> & DefineSlot<"settingsRenderV2", (item: {
4
+ type BaseProps<TItem> = DefinePropTheming & DefineVModel<"", Array<any> | any> & DefineProp<"getApi", (store: ReturnType<typeof useJourneySelectStore>) => void, false, null, "callback to get a reference to the store"> & DefineProp<"items", Array<TItem>, false, null, "Items to select from"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"multiple", boolean, false, null, "If it is allowed to select multiple or single"> & DefineProp<"propertyValueMapping", JourneySelectPropertyMapping<TItem>, false, null, "Property value mappings"> & DefineProp<"returnSelectionAsObject", boolean, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value"> & DefineProp<"label", string, null, null, "The label of the component"> & DefineProp<"labelAdd", string, null, null, "The add label of the component"> & DefineProp<"titleAdd", string, null, null, "The add title of the add blade"> & DefineProp<"titleEdit", string, null, null, "The edit title of the edit blade"> & DefineProp<"disableSearch", boolean, false, null, "Disables the automatic search"> & DefineProp<"disableSave", boolean, false, null, "If it is allowed save"> & DefineProp<"disabledAddButton", string, null, null, "Disables add button with explanatory tooltip"> & DefineProp<"sortable", boolean, false, null, "If it is allowed to sort"> & DefineProp<"readonly", boolean, false, null, "Disable add and delete"> & DefineProp<"list", boolean, false, null, "Always render the items as a list"> & DefineProp<"confirmDelete", boolean, false, null, "If you confirm before delete from the items"> & DefineProp<"noAddConfirm", boolean, false, null, "If items are added without a save button"> & DefineProp<"bladelessAdd", boolean, false, null, "If addis not a blade and only fires events"> & DefineProp<"bladeless", boolean, false, null, "If add/edit is not a blade and only fires events"> & DefineProp<"actions", ActionDefinition[], false, null, "Actions to display in the blade header of the selection blade"> & DefineProp<"itemSettingable", (item: TItem) => boolean, false, null, "Item has settings or not."> & DefineProp<"itemDeletable", (item: TItem) => boolean, false, null, "Item can be deleted or not."> & DefineSlot<"selectionItemRender", (item: JourneySelectItem<any>, index: number, isSelected: boolean) => VNodeChild> & DefineSlot<"selectionRender", () => VNodeChild> & DefineSlot<"selectedItemRenderer", (item: JourneySelectItem<any>, index: number) => VNodeChild> & DefineSlot<"settingsRender", (item: JourneySelectItem<any>, index: number) => VNodeChild> & DefineSlot<"settingsRenderV2", (item: {
5
5
  SettingsRenderer: JourneySelectBladeElement;
6
6
  item: JourneySelectItem<any>;
7
7
  index: number;
@@ -33,5 +33,5 @@ declare const _default: <TItem extends unknown = any>(props: import("@omnia/fx/u
33
33
  default?: import("vue").Slot;
34
34
  $stable?: boolean;
35
35
  }, "actions" | "selectionItemRender" | "selectionRender" | "selectedItemRenderer" | "settingsRender" | "settingsRenderV2" | "selectionRenderV2">;
36
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "actions" | "label" | "colorSchemaType" | "list" | "multiple" | "colors" | "toned" | "v-model" | "modelValue" | "slot:actions" | "emit:update:modelValue" | "items" | "readonly" | "getApi" | "emit:search" | "itemDeletable" | "emit:click:clear" | "sortable" | "propertyValueMapping" | "returnSelectionAsObject" | "labelAdd" | "titleAdd" | "titleEdit" | "disableSearch" | "disableSave" | "confirmDelete" | "noAddConfirm" | "bladelessAdd" | "bladeless" | "itemSettingable" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:selectedItemRenderer" | "slot:settingsRender" | "slot:settingsRenderV2" | "slot:selectionRenderV2" | "emit:showAdd" | "emit:showEdit" | "onClickAdd" | "onRemoveItem" | "onClickUpdate" | "onClickDelete"> & import("@omnia/fx/ux").VNodeEvents) => any;
36
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "actions" | "label" | "colorSchemaType" | "list" | "multiple" | "colors" | "toned" | "v-model" | "modelValue" | "slot:actions" | "emit:update:modelValue" | "items" | "readonly" | "getApi" | "emit:search" | "itemDeletable" | "emit:click:clear" | "sortable" | "propertyValueMapping" | "returnSelectionAsObject" | "labelAdd" | "titleAdd" | "titleEdit" | "disableSearch" | "disableSave" | "disabledAddButton" | "confirmDelete" | "noAddConfirm" | "bladelessAdd" | "bladeless" | "itemSettingable" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:selectedItemRenderer" | "slot:settingsRender" | "slot:settingsRenderV2" | "slot:selectionRenderV2" | "emit:showAdd" | "emit:showEdit" | "onClickAdd" | "onRemoveItem" | "onClickUpdate" | "onClickDelete"> & import("@omnia/fx/ux").VNodeEvents) => any;
37
37
  export default _default;
@@ -115,6 +115,7 @@ export declare function defineLayoutEditorCanvas(settings: LayoutEditorCanvasSet
115
115
  ensureRemoveDeletedBlocks: (layout: import("@omnia/fx-models").Layout) => void;
116
116
  };
117
117
  show: () => import("../../mobile").StoreReturnDefineAction<{
118
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
118
119
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
119
120
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
120
121
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -107,6 +107,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
107
107
  ensureRemoveDeletedBlocks: (layout: import("@omnia/fx-models").Layout) => void;
108
108
  };
109
109
  show: () => import("../../mobile").StoreReturnDefineAction<{
110
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
110
111
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
111
112
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
112
113
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -109,6 +109,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
109
109
  ensureRemoveDeletedBlocks: (layout: import("@omnia/fx-models").Layout) => void;
110
110
  };
111
111
  show: () => import("../../mobile").StoreReturnDefineAction<{
112
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
112
113
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
113
114
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
114
115
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -44,6 +44,7 @@ export declare const useLayoutCanvasEditorStore: () => {
44
44
  ensureRemoveDeletedBlocks: (layout: Layout) => void;
45
45
  };
46
46
  show: () => import("@omnia/fx/stores").StoreReturnDefineAction<{
47
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
47
48
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
48
49
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
49
50
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -127,6 +127,7 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
127
127
  ensureRemoveDeletedBlocks: (layout: Layout) => void;
128
128
  };
129
129
  show: () => import("../../../stores").StoreReturnDefineAction<{
130
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
130
131
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
131
132
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
132
133
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -120,6 +120,7 @@ export declare const useLayoutCanvasStore: () => {
120
120
  ensureRemoveDeletedBlocks: (layout: Layout) => void;
121
121
  };
122
122
  show: () => import("@omnia/fx/stores").StoreReturnDefineAction<{
123
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
123
124
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
124
125
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
125
126
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -1,5 +1,5 @@
1
1
  import { ReactiveLayoutItemSettings, IReactiveLayoutItemsSettingsStore, BlockSettings, guid, IMessageBusTopicSubscription } from "../../../models";
2
- import { MessageBusTopicMediator } from "../../../core";
2
+ import { MessageBusTopicMediator } from "@omnia/fx";
3
3
  interface ReactiveLayoutItemSettingsExtends extends ReactiveLayoutItemSettings {
4
4
  readyWatchSettings?: boolean;
5
5
  }
@@ -1,6 +1,7 @@
1
1
  import { guid, IIcon, LinkItem, LinkProviderId } from "@omnia/fx-models";
2
2
  export interface ILinkPickerComponentProps {
3
3
  modelValue: LinkItem;
4
+ editMode: boolean;
4
5
  }
5
6
  export interface LinkPickerRegistration {
6
7
  id: LinkProviderId;
@@ -9,5 +10,4 @@ export interface LinkPickerRegistration {
9
10
  componentManifestToRender: guid;
10
11
  weight: number;
11
12
  onSaved?: (link: LinkItem) => Promise<LinkItem>;
12
- getProviderProperties?: () => object;
13
13
  }
@@ -21,7 +21,7 @@ export declare const useIconComponent: () => {
21
21
  [x: string]: string | number;
22
22
  };
23
23
  class: (string | String | String[])[];
24
- color: string;
24
+ color: any;
25
25
  };
26
26
  };
27
27
  actions: import("@omnia/fx-models/internal-do-not-import-from-here/shared").StoreReturnDefineAction<{
@@ -2,7 +2,7 @@ import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, ItemValueType }
2
2
  import { VNodeChild } from "vue";
3
3
  import { OMultiSelectionStyles } from "@omnia/fx-models";
4
4
  type SelectionVariants = "remove" | "settings" | "readonly" | "delete";
5
- type BaseProps<TItem> = DefinePropTheming & DefineProp<"items", TItem[], false, null, "TItem must be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the item-title, item-value and item-disabled props."> & DefineProp<"variant", SelectionVariants, false, null, "The component variants"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"sorting", boolean, false, null, "Sets the component to sorting mode"> & DefineProp<"itemValue", ItemValueType<TItem>, false, null, "Property on supplied items that contains its value."> & DefineProp<"itemTitle", ItemValueType<TItem>, false, null, "Property on supplied items that contains its title."> & DefineProp<"itemSubtitle", string, false, null, "Property on supplied items that contains its value."> & DefineProp<"itemIcon", string, false, null, "Property on supplied items that contains its value."> & DefineProp<"enableAdd", boolean, false, null, "If add button is shown"> & DefineProp<"labelAdd", string, null, null, "The label for the add button of the component"> & DefineProp<"selectionStyle", OMultiSelectionStyles, false, null, "The style of multi select"> & DefineProp<"itemSettingable", (item: TItem) => boolean, false, null, "Item has settings or not."> & DefineProp<"itemDeletable", (item: TItem) => boolean, false, null, "Item can be deleted or not."> & DefineSlot<"item", (item: TItem, index: Number) => VNodeChild> & DefineEmit<"selectItem", (index: any) => true> & DefineEmit<"removeItem", (index: any) => true> & DefineEmit<"sort:update", (items: TItem[]) => true> & DefineEmit<"addItem", () => true>;
5
+ type BaseProps<TItem> = DefinePropTheming & DefineProp<"items", TItem[], false, null, "TItem must be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the item-title, item-value and item-disabled props."> & DefineProp<"variant", SelectionVariants, false, null, "The component variants"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"sorting", boolean, false, null, "Sets the component to sorting mode"> & DefineProp<"itemValue", ItemValueType<TItem>, false, null, "Property on supplied items that contains its value."> & DefineProp<"itemTitle", ItemValueType<TItem>, false, null, "Property on supplied items that contains its title."> & DefineProp<"itemSubtitle", string, false, null, "Property on supplied items that contains its value."> & DefineProp<"itemIcon", string, false, null, "Property on supplied items that contains its value."> & DefineProp<"enableAdd", boolean, false, null, "If add button is shown"> & DefineProp<"disabledAddButton", string, null, null, "Disables add button with explanatory tooltip"> & DefineProp<"labelAdd", string, null, null, "The label for the add button of the component"> & DefineProp<"selectionStyle", OMultiSelectionStyles, false, null, "The style of multi select"> & DefineProp<"itemSettingable", (item: TItem) => boolean, false, null, "Item has settings or not."> & DefineProp<"itemDeletable", (item: TItem) => boolean, false, null, "Item can be deleted or not."> & DefineSlot<"item", (item: TItem, index: Number) => VNodeChild> & DefineEmit<"selectItem", (index: any) => true> & DefineEmit<"removeItem", (index: any) => true> & DefineEmit<"sort:update", (items: TItem[]) => true> & DefineEmit<"addItem", () => true>;
6
6
  declare const _default: <TItem extends unknown>(props: import("@omnia/fx/ux").ExtractProps<BaseProps<TItem>> & {
7
7
  onRemoveItem?: (index: any) => any;
8
8
  onAddItem?: () => any;
@@ -15,5 +15,5 @@ declare const _default: <TItem extends unknown>(props: import("@omnia/fx/ux").Ex
15
15
  default?: import("vue").Slot;
16
16
  $stable?: boolean;
17
17
  }, "item">;
18
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "variant" | "colors" | "toned" | "items" | "itemValue" | "slot:item" | "itemTitle" | "itemDeletable" | "itemIcon" | "labelAdd" | "itemSettingable" | "sorting" | "itemSubtitle" | "enableAdd" | "selectionStyle" | "emit:selectItem" | "emit:removeItem" | "emit:sort:update" | "emit:addItem"> & import("@omnia/fx/ux").VNodeEvents) => any;
18
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "variant" | "colors" | "toned" | "items" | "itemValue" | "slot:item" | "itemTitle" | "itemDeletable" | "itemIcon" | "labelAdd" | "disabledAddButton" | "itemSettingable" | "sorting" | "itemSubtitle" | "enableAdd" | "selectionStyle" | "emit:selectItem" | "emit:removeItem" | "emit:sort:update" | "emit:addItem"> & import("@omnia/fx/ux").VNodeEvents) => any;
19
19
  export default _default;
@@ -1,13 +1,13 @@
1
- import { TagsPropertyDefinition, IPropertyDisplayRenderer, PropertyValueType, Tag, IIcon, TagsDisplaySettings } from "@omnia/fx-models";
1
+ import { TagsPropertyDefinition, IPropertyDisplayRenderer, PropertyValueType, Tag, IIcon, TagsDisplaySettings, ColorValue } from "@omnia/fx-models";
2
2
  import { DefineProp, DefineSlot, DefineVModel, TagsFieldDisplayStyles } from "@omnia/fx/ux";
3
3
  import { VNodeChild } from "vue";
4
4
  export type TagsDisplayProps = IPropertyDisplayRenderer<TagsPropertyDefinition> & ComponentProps;
5
- type ComponentProps = DefineVModel<"", PropertyValueType<TagsPropertyDefinition>> & DefineProp<"displaySettings", TagsDisplaySettings> & DefineProp<"renderTextOnly", boolean, false, false> & DefineProp<"renderTextOnly", boolean, false, false> & DefineProp<"clickableIcon", IIcon> & DefineProp<"appendedTagContents", {
5
+ type ComponentProps = DefineVModel<"", PropertyValueType<TagsPropertyDefinition>> & DefineProp<"displaySettings", TagsDisplaySettings> & DefineProp<"renderTextOnly", boolean, false, false> & DefineProp<"clickableIcon", IIcon> & DefineProp<"appendedTagContents", {
6
6
  [tagName: string]: {
7
7
  icon: IIcon;
8
8
  title: string;
9
9
  };
10
- }[]> & DefineProp<"hideSelected", boolean> & DefineProp<"styles", typeof TagsFieldDisplayStyles> & DefineProp<"contentColor", string> & DefineProp<"onTagClicked", (tag: Tag) => void> & DefineProp<"persistentLabels", boolean, false, false> & DefineSlot<"appendedElement", () => JSX.Element> & DefineSlot<"renderer", (renderProps: {
10
+ }[]> & DefineProp<"hideSelected", boolean> & DefineProp<"styles", typeof TagsFieldDisplayStyles> & DefineProp<"contentColor", ColorValue> & DefineProp<"onTagClicked", (tag: Tag) => void> & DefineProp<"persistentLabels", boolean, false, false> & DefineSlot<"appendedElement", () => JSX.Element> & DefineSlot<"renderer", (renderProps: {
11
11
  tags: Array<Tag>;
12
12
  }) => VNodeChild>;
13
13
  declare const _default: (props: import("@omnia/fx/ux").ExtractProps<TagsDisplayProps> & {
@@ -18,6 +18,8 @@ export declare namespace RollupFilterLocalization {
18
18
  User: string;
19
19
  CurrentProcess: string;
20
20
  };
21
+ AddAppTemplate: string;
22
+ AddFilter: string;
21
23
  };
22
24
  Common: {
23
25
  TermSetNotFound: string;
@@ -22,6 +22,7 @@ import wc109f737cdec14061b134c74ab16b0ad9 from './ux/draggable/DraggableComponen
22
22
  import wc60feadd89e4d4c2eb095cee9f104ee96 from './ux/dynamicplaceholder/DynamicPlaceholder';
23
23
  import wcac8a9be60cfb47f288f602ececa6687f from './ux/dynamicplaceholder/DynamicPlaceholderSettings';
24
24
  import wc710dc11b823c4a80b2a031395c206325 from './ux/editorchrome/EditorChrome_old';
25
+ import wc0e9f4c84ccb64abc958671f40207f4dc from './ux/editorchrome/EditorChrome';
25
26
  import wc41a6d1b1b02e4b368aac19ded6b391a1 from './ux/enterpriseglossary/EnterpriseGlossaryPicker';
26
27
  import wc0619d10d541645aaabbdc17d5b867501 from './ux/enterprisepropertysets/Picker';
27
28
  import wc82e8cb4daeee4ea6a50c727b93bbbac3 from './ux/errormessage/ErrorMessage';
@@ -1044,13 +1045,21 @@ declare global {
1044
1045
  };
1045
1046
  };
1046
1047
  "editor": {
1047
- "chrome": typeof wc710dc11b823c4a80b2a031395c206325 extends {
1048
+ "chrome": (typeof wc710dc11b823c4a80b2a031395c206325 extends {
1048
1049
  propsDefinition: infer TProp;
1049
1050
  } ? {
1050
1051
  new (...args: any[]): {
1051
1052
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1052
1053
  };
1053
- } : typeof wc710dc11b823c4a80b2a031395c206325;
1054
+ } : typeof wc710dc11b823c4a80b2a031395c206325) & {
1055
+ "v2": typeof wc0e9f4c84ccb64abc958671f40207f4dc extends {
1056
+ propsDefinition: infer TProp;
1057
+ } ? {
1058
+ new (...args: any[]): {
1059
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1060
+ };
1061
+ } : typeof wc0e9f4c84ccb64abc958671f40207f4dc;
1062
+ };
1054
1063
  "canvas": {
1055
1064
  "block": {
1056
1065
  "settings": typeof wc1467198b10eb445181f99ac65363050c extends {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.516-dev",
4
+ "version": "8.0.518-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,13 +20,13 @@
20
20
  ],
21
21
  "author": "Omnia Digital Workplace AB",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.516-dev",
23
+ "@omnia/fx-models": "8.0.518-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
27
27
  "splitpanes": "3.2.0",
28
28
  "vue": "3.5.17",
29
- "vuetify": "3.9.1",
29
+ "vuetify": "3.9.3",
30
30
  "tslib": "2.6.2",
31
31
  "typescript": "5.8.2",
32
32
  "@tiptap/vue-3": "2.1.13",