@omnia/fx 8.0.270-dev → 8.0.272-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 (80) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  3. package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
  4. package/internal-do-not-import-from-here/stores/floweditor/index.d.ts +0 -1
  5. package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/UserManagementConstants.d.ts +3 -0
  6. package/internal-do-not-import-from-here/ux/admin/usermanagement/usertypes/blades/AddOrEditUserTypeBladeAuthentication.d.ts +13 -0
  7. package/internal-do-not-import-from-here/ux/admin/usermanagement/usertypes/blades/AddOrEditUserTypeBladeGeneral.d.ts +11 -0
  8. package/internal-do-not-import-from-here/ux/admin/usermanagement/usertypes/blades/AddOrEditUserTypeBladeProperties.d.ts +11 -0
  9. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/ViewTemplatePicker.d.ts +2 -0
  10. package/internal-do-not-import-from-here/ux/enterpriseproperties/renderers/EnterprisePropertyValue.d.ts +1 -1
  11. package/internal-do-not-import-from-here/ux/flow/editor/FlowEditor.d.ts +1 -1
  12. package/internal-do-not-import-from-here/ux/flow/editor/commands/EditorCommands.d.ts +2 -1
  13. package/internal-do-not-import-from-here/ux/flow/editor/models/EditorModels.d.ts +1 -0
  14. package/internal-do-not-import-from-here/ux/flow/editor/models/EditorPlugin.d.ts +4 -5
  15. package/internal-do-not-import-from-here/ux/flow/editor/parsers/HtmlParser.d.ts +1 -1
  16. package/internal-do-not-import-from-here/ux/flow/editor/parsers/JSONParser.d.ts +1 -1
  17. package/internal-do-not-import-from-here/ux/flow/editor/plugins/elements/ElementConverter.d.ts +1 -1
  18. package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/converters/WordConverter.d.ts +5 -0
  19. package/internal-do-not-import-from-here/ux/flow/editor/plugins/spacing/SpacingButton.d.ts +2 -0
  20. package/internal-do-not-import-from-here/ux/flow/editor/plugins/spacing/SpacingPlugin.d.ts +3 -0
  21. package/internal-do-not-import-from-here/ux/flow/editor/plugins/textalign/TextAlignPlugin.d.ts +3 -0
  22. package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorStore.d.ts +7 -3
  23. package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorToolbarStore.d.ts +65 -45
  24. package/internal-do-not-import-from-here/ux/flow/renderer/FlowRenderer.css.d.ts +0 -1
  25. package/internal-do-not-import-from-here/ux/flow/renderer/FlowRenderer.d.ts +1 -4
  26. package/internal-do-not-import-from-here/ux/flow/renderer/models/Constants.d.ts +1 -1
  27. package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererContentPlugin.d.ts +1 -1
  28. package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererToHtmlContext.d.ts +1 -1
  29. package/internal-do-not-import-from-here/ux/flow/renderer/parsers/JSONParser.d.ts +2 -2
  30. package/internal-do-not-import-from-here/ux/flow/renderer/plugins/spacing/SpacingPlugin.d.ts +3 -0
  31. package/internal-do-not-import-from-here/ux/flow/renderer/plugins/textalign/TextAlignPlugin.d.ts +3 -0
  32. package/internal-do-not-import-from-here/ux/flow/renderer/stores/FlowRendererStore.d.ts +6 -8
  33. package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +1 -1
  34. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitleSettings.css.d.ts +1 -0
  35. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/titlerenderer/TitleRenderer.d.ts +5 -0
  36. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/titlerenderer/TitleRendererSettings.d.ts +11 -0
  37. package/internal-do-not-import-from-here/ux/linkpicker/LinkPicker.d.ts +51 -0
  38. package/internal-do-not-import-from-here/ux/linkpicker/LinkRenderer.css.d.ts +9 -0
  39. package/internal-do-not-import-from-here/ux/linkpicker/LinkRenderer.d.ts +5 -0
  40. package/internal-do-not-import-from-here/ux/linkpicker/apis/InternalLinkHandlerRegistrationApi.d.ts +7 -0
  41. package/internal-do-not-import-from-here/ux/linkpicker/apis/InternalLinkProviderRegistrationApi.d.ts +5 -0
  42. package/internal-do-not-import-from-here/ux/linkpicker/apis/Registration.d.ts +1 -0
  43. package/internal-do-not-import-from-here/ux/linkpicker/factory/LinkItemFactory.d.ts +9 -0
  44. package/internal-do-not-import-from-here/ux/linkpicker/store/LinkPickerStore.d.ts +34 -0
  45. package/internal-do-not-import-from-here/ux/models/flow/FlowEditorStore.d.ts +2 -0
  46. package/internal-do-not-import-from-here/ux/models/flow/FlowEditorToolbarStore.d.ts +2 -0
  47. package/internal-do-not-import-from-here/ux/models/flow/SpacingFormatNode.d.ts +5 -0
  48. package/internal-do-not-import-from-here/ux/models/flow/TextAlignNode.d.ts +5 -0
  49. package/internal-do-not-import-from-here/ux/{flow/models → models/flow}/index.d.ts +4 -0
  50. package/internal-do-not-import-from-here/ux/models/index.d.ts +3 -1
  51. package/internal-do-not-import-from-here/ux/models/linkpicker/CustomLinkPropertyData.d.ts +5 -0
  52. package/internal-do-not-import-from-here/ux/models/linkpicker/ILinkPickerProvider.d.ts +8 -0
  53. package/internal-do-not-import-from-here/ux/models/linkpicker/ILinkRenderer.d.ts +3 -0
  54. package/internal-do-not-import-from-here/ux/models/linkpicker/LinkItem.d.ts +8 -0
  55. package/internal-do-not-import-from-here/ux/models/linkpicker/LinkItemHandler.d.ts +7 -0
  56. package/internal-do-not-import-from-here/ux/models/linkpicker/LinkPickerClient.d.ts +4 -0
  57. package/internal-do-not-import-from-here/ux/models/linkpicker/LinkPickerProviderContext.d.ts +19 -0
  58. package/internal-do-not-import-from-here/ux/models/linkpicker/LinkPickerRegistration.d.ts +16 -0
  59. package/internal-do-not-import-from-here/ux/models/linkpicker/LinkPickerStyle.d.ts +15 -0
  60. package/internal-do-not-import-from-here/ux/models/linkpicker/index.d.ts +9 -0
  61. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +1 -1
  62. package/internal-do-not-import-from-here/ux/oxide/stickycontainer/StickyContainer.d.ts +1 -1
  63. package/internal-do-not-import-from-here/ux/oxide/stickycontainer/store/StickyContainerStore.d.ts +2 -0
  64. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +18 -0
  65. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +17 -0
  66. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +5 -4
  67. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +1 -1
  68. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts +3 -1
  69. package/internal-do-not-import-from-here/wctypings.d.ts +36 -16
  70. package/package.json +4 -4
  71. package/internal-do-not-import-from-here/stores/floweditor/FlowRendererPluginStore.d.ts +0 -44
  72. package/internal-do-not-import-from-here/ux/admin/usermanagement/dynamicgroups/DynamicGroupDeletedDetailBlade.d.ts +0 -8
  73. package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorAction.d.ts +0 -48
  74. package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorActionSettings.d.ts +0 -7
  75. /package/internal-do-not-import-from-here/ux/{layoutcanvas/actionhandler/LayoutEditorClickHandler.d.ts → linkpicker/LinkPicker.css.d.ts} +0 -0
  76. /package/internal-do-not-import-from-here/ux/{flow/models → models/flow}/ColorFormatNode.d.ts +0 -0
  77. /package/internal-do-not-import-from-here/ux/{flow/models → models/flow}/ElementNode.d.ts +0 -0
  78. /package/internal-do-not-import-from-here/ux/{flow/models → models/flow}/FlowContent.d.ts +0 -0
  79. /package/internal-do-not-import-from-here/ux/{flow/models → models/flow}/TypographyNode.d.ts +0 -0
  80. /package/internal-do-not-import-from-here/ux/{flow/models → models/flow}/VelcronNode.d.ts +0 -0
@@ -0,0 +1,51 @@
1
+ import { guid } from "@omnia/fx-models";
2
+ import { DefineEmit } from "@omnia/fx/ux";
3
+ import "./LinkPicker.css";
4
+ import { LinkItem, LinkPickerRegistration } from "@omnia/fx/ux";
5
+ export declare const LinkPickerVariantDefinitions: readonly ["default", "dialog"];
6
+ export type LinkPickerVariant = typeof LinkPickerVariantDefinitions[number];
7
+ export declare const LinkPickerVariantTypesName = "LinkPickerVariant";
8
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
9
+ "emit:update:selectedItem": (value: LinkItem) => void;
10
+ } & {
11
+ "v-model:selectedItem"?: LinkItem;
12
+ } & {
13
+ "onUpdate:selectedItem"?: (value: LinkItem) => void;
14
+ } & {
15
+ selectedItem?: LinkItem;
16
+ } & {
17
+ "emit:update:modelValue": (value: boolean) => void;
18
+ } & {
19
+ "v-model"?: boolean;
20
+ } & {
21
+ "onUpdate:modelValue"?: (value: boolean) => void;
22
+ } & {
23
+ modelValue?: boolean;
24
+ } & {
25
+ title?: string;
26
+ } & {
27
+ variant?: "default" | "dialog";
28
+ } & {
29
+ hideToolbar?: boolean;
30
+ } & {
31
+ providerFilter?: guid[];
32
+ } & {
33
+ styles?: {
34
+ toolbar?: import("typestyle/lib/types").NestedCSSProperties;
35
+ closeButton?: import("typestyle/lib/types").NestedCSSProperties;
36
+ heightWrapper?: import("typestyle/lib/types").NestedCSSProperties;
37
+ wrapper?: import("typestyle/lib/types").NestedCSSProperties;
38
+ leftPanel?: import("typestyle/lib/types").NestedCSSProperties;
39
+ leftPanelContainer?: import("typestyle/lib/types").NestedCSSProperties;
40
+ leftPanelMenuItemIcon?: import("typestyle/lib/types").NestedCSSProperties;
41
+ leftPanelMenuItemTitle?: import("typestyle/lib/types").NestedCSSProperties;
42
+ leftPanelMenuItemContainer?: (theming: import("@omnia/fx/ux").ITheming, selected: boolean) => import("typestyle/lib/types").NestedCSSProperties;
43
+ rightPanelWrapper?: import("typestyle/lib/types").NestedCSSProperties;
44
+ rightPanelContent?: import("typestyle/lib/types").NestedCSSProperties;
45
+ };
46
+ } & {
47
+ onSaved?: (link: LinkItem) => void | Promise<void>;
48
+ } & {
49
+ onConfigureProviders?: (providers: Array<LinkPickerRegistration>) => void;
50
+ } & DefineEmit<"update:modelValue", (value: boolean) => void> & DefineEmit<"update:selectedItem", (value: LinkItem) => void> & DefineEmit<"close", () => void>>) => any;
51
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { types } from "typestyle";
2
+ export declare const LinkRendererStyles: {
3
+ link: types.NestedCSSProperties;
4
+ linkWithNoCursor: types.NestedCSSProperties;
5
+ };
6
+ export declare const LinkRendererCss: {
7
+ link: types.NestedCSSProperties;
8
+ linkWithNoCursor: types.NestedCSSProperties;
9
+ };
@@ -0,0 +1,5 @@
1
+ import { DefineProp, DefineSlot } from "@omnia/fx/ux";
2
+ import { ILinkRenderer, LinkItem } from "@omnia/fx/ux";
3
+ export type InternalLinkRender = DefineSlot<"renderer", (link: LinkItem) => void> & DefineProp<"target", string, false, "_self"> & ILinkRenderer;
4
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<InternalLinkRender>) => any;
5
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import { ILinkItemHandlerRegistrationApi } from "@omnia/fx-models";
2
+ import { ILinkItemHandler } from "@omnia/fx/ux";
3
+ export declare class InternalLinkHandlerRegistrationApi implements ILinkItemHandlerRegistrationApi {
4
+ linkItemHandlers: ILinkItemHandler[];
5
+ registerLinkRenderer(linkItemHandler: ILinkItemHandler): boolean;
6
+ getAllRegistration(): ILinkItemHandler[];
7
+ }
@@ -0,0 +1,5 @@
1
+ import { ILinkProviderRegistrationApi } from "@omnia/fx-models";
2
+ import { LinkPickerRegistration } from "@omnia/fx/ux";
3
+ export interface ILinkProviderRegistrationApiInternal extends ILinkProviderRegistrationApi {
4
+ getAllLinkProviders: () => LinkPickerRegistration[];
5
+ }
@@ -0,0 +1,9 @@
1
+ export declare const LinkItemFactory: {
2
+ default: () => {
3
+ linkType: string;
4
+ url: string;
5
+ title: string;
6
+ icon: any;
7
+ openInNewWindow: boolean;
8
+ };
9
+ };
@@ -0,0 +1,34 @@
1
+ import { LinkPickerRegistration } from "@omnia/fx/ux";
2
+ export declare const useLinkPickerStore: () => {
3
+ state: {
4
+ providers: LinkPickerRegistration[];
5
+ };
6
+ getters: {
7
+ currentProvider: () => LinkPickerRegistration[];
8
+ getProviders: (filters: string[]) => LinkPickerRegistration[];
9
+ };
10
+ mutate: {
11
+ providers: (value: LinkPickerRegistration[] | ((prev: LinkPickerRegistration[]) => LinkPickerRegistration[])) => void;
12
+ };
13
+ actions: {
14
+ onDispatching: {
15
+ ensureLinkPickerProviders: {
16
+ subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
17
+ };
18
+ };
19
+ onDispatched: {
20
+ ensureLinkPickerProviders: {
21
+ subscribe(fn: (result: LinkPickerRegistration[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
22
+ };
23
+ };
24
+ onFailure: {
25
+ ensureLinkPickerProviders: {
26
+ subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
27
+ };
28
+ };
29
+ } & {
30
+ ensureLinkPickerProviders(): Promise<LinkPickerRegistration[]>;
31
+ };
32
+ } & {
33
+ dispose?: () => void;
34
+ };
@@ -0,0 +1,2 @@
1
+ import { useFlowEditorStore } from "../../flow/editor/stores";
2
+ export type FlowEditorStore = ReturnType<typeof useFlowEditorStore>;
@@ -0,0 +1,2 @@
1
+ import { useFlowEditorToolbarStore } from "../../flow/editor";
2
+ export type FlowEditorToolbarStore = ReturnType<typeof useFlowEditorToolbarStore>;
@@ -0,0 +1,5 @@
1
+ import { Spacing } from "@omnia/fx-models";
2
+ import { FlowNode } from "./FlowContent";
3
+ export interface SpacingFormatNode extends FlowNode {
4
+ data: Spacing;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { FlowNode } from "./FlowContent";
2
+ export type FlowTextAlignment = "left" | "center" | "right";
3
+ export interface TextAlignFormatNode extends FlowNode {
4
+ data: FlowTextAlignment;
5
+ }
@@ -3,3 +3,7 @@ export * from "./TypographyNode";
3
3
  export * from "./ColorFormatNode";
4
4
  export * from "./ElementNode";
5
5
  export * from "./VelcronNode";
6
+ export * from "./FlowEditorStore";
7
+ export * from "./FlowEditorToolbarStore";
8
+ export * from "./TextAlignNode";
9
+ export * from "./SpacingFormatNode";
@@ -1,3 +1,5 @@
1
+ export * from "./enterpriseproperties";
2
+ export * from "./flow";
1
3
  export * from "./ColorPicker";
2
4
  export * from "./HeadingStyle";
3
5
  export * from "./DialogStyles";
@@ -5,7 +7,6 @@ export * from "./CommentStyles";
5
7
  export * from "./LikeStyles";
6
8
  export * from "./IconStyles";
7
9
  export * from "./AdminChromeStyles";
8
- export * from "./enterpriseproperties";
9
10
  export * from "./LanguagePickerStyles";
10
11
  export * from "./WizardStyles";
11
12
  export * from "./TimeZonePickerStyles";
@@ -60,3 +61,4 @@ export * from "./LocalizationAdminStyles";
60
61
  export { ValidationOnDefinitions, type IValidationRuleBuilder, type IValidator, type ValidationRule, type ValidationResult } from "./Validation";
61
62
  export type { ValidationOnTypes } from "./Validation";
62
63
  export * from "./SpecialUserConfiguration";
64
+ export * from "./linkpicker";
@@ -0,0 +1,5 @@
1
+ export interface CustomLinkPropertyData extends LinkPickerPropertyData {
2
+ isValidateTitle?: boolean;
3
+ }
4
+ export interface LinkPickerPropertyData {
5
+ }
@@ -0,0 +1,8 @@
1
+ import { MediaPickerStorageProviderContext } from "@omnia/fx-models";
2
+ import { CustomLinkPropertyData } from "./CustomLinkPropertyData";
3
+ import { LinkItem } from "./LinkItem";
4
+ export interface ILinkPickerProvider {
5
+ linkData?: LinkItem;
6
+ propertyData?: CustomLinkPropertyData;
7
+ mediaPickerProviderContext?: MediaPickerStorageProviderContext;
8
+ }
@@ -0,0 +1,3 @@
1
+ import { DefineVModel } from "@omnia/fx/ux";
2
+ import { LinkItem } from "./LinkItem";
3
+ export type ILinkRenderer = DefineVModel<"link", LinkItem>;
@@ -0,0 +1,8 @@
1
+ import { IconPickerModel } from "../../../models/Icon";
2
+ export interface LinkItem {
3
+ linkType: string;
4
+ title: string;
5
+ url: string;
6
+ icon: IconPickerModel;
7
+ openInNewWindow: boolean;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { guid } from "@omnia/fx-models";
2
+ import { LinkItem } from "./LinkItem";
3
+ export interface ILinkItemHandler {
4
+ id: guid;
5
+ onClick: (e: MouseEvent, link: LinkItem) => void;
6
+ href: (link: LinkItem) => string;
7
+ }
@@ -0,0 +1,4 @@
1
+ import { LinkPickerRegistration } from "../linkpicker/LinkPickerRegistration";
2
+ export interface LinkPickerClient extends LinkPickerRegistration {
3
+ selected?: boolean;
4
+ }
@@ -0,0 +1,19 @@
1
+ export declare class LinkPickerProviderContext {
2
+ providerProps: {
3
+ [propName: string]: any;
4
+ };
5
+ /**
6
+ *
7
+ * @param providerProps link picker provider properties
8
+ */
9
+ constructor(providerProps: {
10
+ [propName: string]: any;
11
+ });
12
+ /**
13
+ *
14
+ * @returns link picker provider properties
15
+ */
16
+ getProviderProperties(): {
17
+ [propName: string]: any;
18
+ };
19
+ }
@@ -0,0 +1,16 @@
1
+ import { IIcon } from "@omnia/fx/ux";
2
+ import { ILinkPickerProvider } from "./ILinkPickerProvider";
3
+ import { guid } from "@omnia/fx-models";
4
+ export interface LinkPickerRegistration extends ILinkPickerProvider {
5
+ id: guid;
6
+ name: string;
7
+ icon: IIcon;
8
+ elementPickerToRender: string;
9
+ weight: number;
10
+ /**
11
+ * Provider use to handle onClick, href on <a> tag of Link item
12
+ *
13
+ *
14
+ */
15
+ handlerProviderId?: guid;
16
+ }
@@ -0,0 +1,15 @@
1
+ import { ITheming } from "@omnia/fx/ux";
2
+ import { types } from "typestyle";
3
+ export declare const LinkPickerStyle: {
4
+ toolbar?: types.NestedCSSProperties;
5
+ closeButton?: types.NestedCSSProperties;
6
+ heightWrapper?: types.NestedCSSProperties;
7
+ wrapper?: types.NestedCSSProperties;
8
+ leftPanel?: types.NestedCSSProperties;
9
+ leftPanelContainer?: types.NestedCSSProperties;
10
+ leftPanelMenuItemIcon?: types.NestedCSSProperties;
11
+ leftPanelMenuItemTitle?: types.NestedCSSProperties;
12
+ leftPanelMenuItemContainer?: (theming: ITheming, selected: boolean) => types.NestedCSSProperties;
13
+ rightPanelWrapper?: types.NestedCSSProperties;
14
+ rightPanelContent?: types.NestedCSSProperties;
15
+ };
@@ -0,0 +1,9 @@
1
+ export * from "./ILinkPickerProvider";
2
+ export * from "./LinkItem";
3
+ export * from "./LinkPickerRegistration";
4
+ export * from "./CustomLinkPropertyData";
5
+ export * from "./LinkPickerStyle";
6
+ export * from "./ILinkRenderer";
7
+ export * from "./LinkItemHandler";
8
+ export * from "./LinkPickerClient";
9
+ export * from "./LinkPickerProviderContext";
@@ -215,10 +215,10 @@ declare const _default: {
215
215
  container: boolean;
216
216
  }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
217
217
  propsDefinition: Omit<Readonly<{} & {
218
+ inline?: boolean;
218
219
  container?: boolean;
219
220
  class?: String | String[];
220
221
  label?: string;
221
- inline?: boolean;
222
222
  disabled?: boolean;
223
223
  colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
224
224
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
@@ -1,6 +1,6 @@
1
1
  import { DefineProp, DefineSlot } from "@omnia/fx/ux";
2
2
  import { useStickyContainerStore } from "./store";
3
3
  import { VNodeChild } from "vue";
4
- type StickyContainerProps = DefineProp<"getApi", (store: ReturnType<typeof useStickyContainerStore>) => void, false, null, "callback to get a reference to the scrolling store. The store is used to interact with the scrolling component."> & DefineProp<"viewportElementTrackingId", string, false, null, "hides the sticky container when the element is not visible in the viewport. Use it for toolbars etc"> & DefineSlot<"customRenderer", () => VNodeChild>;
4
+ type StickyContainerProps = DefineProp<"getApi", (store: ReturnType<typeof useStickyContainerStore>) => void, false, null, "callback to get a reference to the scrolling store. The store is used to interact with the scrolling component."> & DefineProp<"viewportElementTrackingId", string, false, null, "hides the sticky container when the element is not visible in the viewport. Use it for toolbars etc"> & DefineProp<"editor", boolean, false, null, "If the container runs in the content editor"> & DefineSlot<"customRenderer", () => VNodeChild>;
5
5
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<StickyContainerProps>) => any;
6
6
  export default _default;
@@ -3,11 +3,13 @@ export declare const useStickyContainerStore: () => {
3
3
  isSticky: boolean;
4
4
  hideStickyElement: boolean;
5
5
  contentVisibilityTracking: boolean;
6
+ isEditor: boolean;
6
7
  };
7
8
  events: {
8
9
  onMutatedIsSticky: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
9
10
  onMutatedHideStickyElement: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
10
11
  onMutatedContentVisibilityTracking: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
12
+ onMutatedIsEditor: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
11
13
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
12
14
  actions: {
13
15
  onDispatching: {
@@ -1,3 +1,4 @@
1
+ import { guid, PropertyDefinition } from "@omnia/fx-models";
1
2
  import { PropertyRegistration } from "../models/PropertyInput";
2
3
  import { IDataSourcePropertyCreator } from "@omnia/fx/services";
3
4
  declare const _default: {
@@ -14,6 +15,10 @@ declare const _default: {
14
15
  type: import("vue").PropType<PropertyRegistration[]>;
15
16
  required: false;
16
17
  };
18
+ selectableProperties: {
19
+ type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
20
+ required: false;
21
+ };
17
22
  hideConfiguration: {
18
23
  type: import("vue").PropType<boolean>;
19
24
  required: false;
@@ -117,6 +122,10 @@ declare const _default: {
117
122
  type: import("vue").PropType<PropertyRegistration[]>;
118
123
  required: false;
119
124
  };
125
+ selectableProperties: {
126
+ type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
127
+ required: false;
128
+ };
120
129
  hideConfiguration: {
121
130
  type: import("vue").PropType<boolean>;
122
131
  required: false;
@@ -222,6 +231,10 @@ declare const _default: {
222
231
  type: import("vue").PropType<PropertyRegistration[]>;
223
232
  required: false;
224
233
  };
234
+ selectableProperties: {
235
+ type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
236
+ required: false;
237
+ };
225
238
  hideConfiguration: {
226
239
  type: import("vue").PropType<boolean>;
227
240
  required: false;
@@ -324,6 +337,10 @@ declare const _default: {
324
337
  type: import("vue").PropType<PropertyRegistration[]>;
325
338
  required: false;
326
339
  };
340
+ selectableProperties: {
341
+ type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
342
+ required: false;
343
+ };
327
344
  hideConfiguration: {
328
345
  type: import("vue").PropType<boolean>;
329
346
  required: false;
@@ -484,6 +501,7 @@ declare const _default: {
484
501
  "onUpdate:modelValue"?: (value: PropertyRegistration) => any | void;
485
502
  hideDetails?: boolean;
486
503
  hideConfiguration?: boolean;
504
+ selectableProperties?: guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[];
487
505
  loadingProperties?: boolean;
488
506
  propertyCreator?: IDataSourcePropertyCreator;
489
507
  propertyRegistrations?: PropertyRegistration[];
@@ -25,6 +25,10 @@ declare const _default: {
25
25
  type: import("vue").PropType<IDataSourcePropertySelection>;
26
26
  required: false;
27
27
  };
28
+ resetAfterSelected: {
29
+ type: import("vue").PropType<boolean>;
30
+ required: false;
31
+ };
28
32
  hideConfiguration: {
29
33
  type: import("vue").PropType<boolean>;
30
34
  required: false;
@@ -69,6 +73,10 @@ declare const _default: {
69
73
  type: import("vue").PropType<IDataSourcePropertySelection>;
70
74
  required: false;
71
75
  };
76
+ resetAfterSelected: {
77
+ type: import("vue").PropType<boolean>;
78
+ required: false;
79
+ };
72
80
  hideConfiguration: {
73
81
  type: import("vue").PropType<boolean>;
74
82
  required: false;
@@ -120,6 +128,10 @@ declare const _default: {
120
128
  type: import("vue").PropType<IDataSourcePropertySelection>;
121
129
  required: false;
122
130
  };
131
+ resetAfterSelected: {
132
+ type: import("vue").PropType<boolean>;
133
+ required: false;
134
+ };
123
135
  hideConfiguration: {
124
136
  type: import("vue").PropType<boolean>;
125
137
  required: false;
@@ -168,6 +180,10 @@ declare const _default: {
168
180
  type: import("vue").PropType<IDataSourcePropertySelection>;
169
181
  required: false;
170
182
  };
183
+ resetAfterSelected: {
184
+ type: import("vue").PropType<boolean>;
185
+ required: false;
186
+ };
171
187
  hideConfiguration: {
172
188
  type: import("vue").PropType<boolean>;
173
189
  required: false;
@@ -195,6 +211,7 @@ declare const _default: {
195
211
  disabled?: boolean;
196
212
  hideDetails?: boolean;
197
213
  hideConfiguration?: boolean;
214
+ resetAfterSelected?: boolean;
198
215
  selectionProperty?: IDataSourcePropertySelection;
199
216
  selectableDataSources?: guid[];
200
217
  selectableProperties?: guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[];
@@ -36,11 +36,12 @@ export interface VelcronNumberEditorSettings {
36
36
  max: number;
37
37
  step: number;
38
38
  }
39
+ export interface VelcronPropertyMapping {
40
+ name: string;
41
+ definitionId: guid;
42
+ }
39
43
  export interface VelcronPropertyResolverEditorSettings {
40
- properties: Array<{
41
- name: string;
42
- definitionId: guid;
43
- }>;
44
+ properties: Array<VelcronPropertyMapping>;
44
45
  }
45
46
  export interface VelcronBlueprintEditorSettings {
46
47
  type: "container" | "icon";
@@ -173,8 +173,8 @@ declare const _default: {
173
173
  colorSchemaType?: "background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
174
174
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
175
175
  themeDefinition?: ThemeDefinitionV2;
176
- context?: VelcronRenderContext;
177
176
  editMode?: boolean;
177
+ context?: VelcronRenderContext;
178
178
  eventHandlers?: VelcronRenderContextEventHandlers;
179
179
  }>, "onSetup:context" | "onState:updated"> & {
180
180
  "onSetup:context"?: (context: VelcronRenderContext) => any;
@@ -1,5 +1,7 @@
1
- import { VelcronPropertyDefinitionValueResolver, VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
1
+ import { EditorLocation, VelcronPropertyDefinitionValueResolver, VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
2
2
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
+ location?: EditorLocation;
4
+ } & {
3
5
  settings?: VelcronPropertyResolverEditorSettings;
4
6
  } & {
5
7
  "emit:update:modelValue": (value: VelcronPropertyDefinitionValueResolver[]) => void;
@@ -60,6 +60,8 @@ import wcd91fa8e10e3b4350bb158f9cbeace0e8 from './ux/journey/SettingsJourneyMenu
60
60
  import wc3392707566c844e39f57097aade4e81c from './ux/jsonexportimport/ExportImport';
61
61
  import wc20b4e8166fb44f2b8b240724eb5f2db2 from './ux/languagepicker/LanguagePicker';
62
62
  import wc6c2ac8bf4da44a2b8e544eaf5b42099f from './ux/limited-label/LimitedLabel';
63
+ import wc9e7b4a48efba4dc390986eeb638b34cd from './ux/linkpicker/LinkPicker';
64
+ import wc4892102894624a4ca84e67df764cbe93 from './ux/linkpicker/LinkRenderer';
63
65
  import wc106dba3f206e4ad7bbb28e574e3da49e from './ux/magiclink/MagicLinkLogin';
64
66
  import wc168b37eb8cbc4e46944cbf9a6a5e9063 from './ux/magiclink/MagicLinkSuccess';
65
67
  import wcd836de74ad894f4999e21046b1ba2cab from './ux/magiclink/MagicLinkFailure';
@@ -211,8 +213,6 @@ import wcb4fdf9c1a0314fb7a3d3d0cc6e9569b3 from './ux/hub/feed/HubFeed';
211
213
  import wcbaecc57591074830a5ae2dda9f6b5ed5 from './ux/hub/feed/HubFeedSettings';
212
214
  import wcb11d3955272348cdb3a131cb1bf61374 from './ux/hub/feed/HubFeedChrome';
213
215
  import wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e from './ux/image/scalingsettings/ScalingSettings';
214
- import wc800a5cc9e969441ab62989d09642fd91 from './ux/layoutcanvas/actionhandler/LayoutEditorAction';
215
- import wcf8c97eefe53a4f3eaab4aedd8a53f5a8 from './ux/layoutcanvas/actionhandler/LayoutEditorActionSettings';
216
216
  import wc8e03e2f7fb024945bc51138b77d06088 from './ux/layoutcanvas/editor/LayoutEditorCanvas';
217
217
  import wc4aed54beb02341e3a6cbde5af5fb6c78 from './ux/layoutcanvas/layoutactionhandler/LayoutAction';
218
218
  import wc02c473f7041b40038ceecdf09e6ba4ca from './ux/layoutcanvas/layoutactionhandler/LayoutActionSettings';
@@ -510,6 +510,8 @@ import wc48ff129f9a254eec9276b47f0c0f8b3e from './ux/layoutcanvas/editor/setting
510
510
  import wccac6f7b1e12d4d8b8d302340d885bd48 from './ux/layoutcanvas/editor/settings/section/Columns';
511
511
  import wc2a460a78bf504a2b9d00b1f86a347d46 from './ux/layoutcanvas/editor/settings/settingstabs/TabLayoutSettings';
512
512
  import wc5b6b6242356046c29e05c24fb2135bf0 from './ux/layoutcanvas/editor/settings/settingstabs/TabBlockSettings';
513
+ import wc1a332a3221ad4e578db3643745b0f3c7 from './ux/layoutcanvas/editor/settings/titlerenderer/TitleRendererSettings';
514
+ import wc694cc2e8dd154aee90d4d882c1903bd8 from './ux/layoutcanvas/editor/settings/titlerenderer/TitleRenderer';
513
515
  import wc0f5cb3a8175d418c8527d1852cb28782 from './ux/richtexteditor/extensions/EnterpriseGlossaryLink/components/SuggestionComponent';
514
516
  import wc4cd5054dab4a44dfb4f0cd4be9d1ee50 from './ux/app/apps/admin/appsettings/admin/AppSettingsJourney';
515
517
  import wc1476702e8f24468d9185322be5931c54 from './ux/app/management/tabs/shared/addbutton/AddButton';
@@ -651,13 +653,6 @@ declare global {
651
653
  };
652
654
  "layout": {
653
655
  "action": {
654
- "settings": typeof wcf8c97eefe53a4f3eaab4aedd8a53f5a8 extends {
655
- propsDefinition: infer TProp;
656
- } ? {
657
- new (...args: any[]): {
658
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
659
- };
660
- } : typeof wcf8c97eefe53a4f3eaab4aedd8a53f5a8;
661
656
  "btn": {
662
657
  "settings": typeof wc02c473f7041b40038ceecdf09e6ba4ca extends {
663
658
  propsDefinition: infer TProp;
@@ -675,13 +670,6 @@ declare global {
675
670
  };
676
671
  } : typeof wc4aed54beb02341e3a6cbde5af5fb6c78;
677
672
  };
678
- "action$": typeof wc800a5cc9e969441ab62989d09642fd91 extends {
679
- propsDefinition: infer TProp;
680
- } ? {
681
- new (...args: any[]): {
682
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
683
- };
684
- } : typeof wc800a5cc9e969441ab62989d09642fd91;
685
673
  "developertools": typeof wc41f1eb15438a488b8b227b1ff31ca66f extends {
686
674
  propsDefinition: infer TProp;
687
675
  } ? {
@@ -1544,6 +1532,22 @@ declare global {
1544
1532
  };
1545
1533
  } : typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f;
1546
1534
  };
1535
+ "link": {
1536
+ "picker": typeof wc9e7b4a48efba4dc390986eeb638b34cd extends {
1537
+ propsDefinition: infer TProp;
1538
+ } ? {
1539
+ new (...args: any[]): {
1540
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1541
+ };
1542
+ } : typeof wc9e7b4a48efba4dc390986eeb638b34cd;
1543
+ "renderer": typeof wc4892102894624a4ca84e67df764cbe93 extends {
1544
+ propsDefinition: infer TProp;
1545
+ } ? {
1546
+ new (...args: any[]): {
1547
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1548
+ };
1549
+ } : typeof wc4892102894624a4ca84e67df764cbe93;
1550
+ };
1547
1551
  "magiclink": {
1548
1552
  "login": typeof wc106dba3f206e4ad7bbb28e574e3da49e extends {
1549
1553
  propsDefinition: infer TProp;
@@ -3003,6 +3007,22 @@ declare global {
3003
3007
  } : typeof wc5b6b6242356046c29e05c24fb2135bf0;
3004
3008
  };
3005
3009
  };
3010
+ "title": {
3011
+ "settings": typeof wc1a332a3221ad4e578db3643745b0f3c7 extends {
3012
+ propsDefinition: infer TProp;
3013
+ } ? {
3014
+ new (...args: any[]): {
3015
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3016
+ };
3017
+ } : typeof wc1a332a3221ad4e578db3643745b0f3c7;
3018
+ "renderer": typeof wc694cc2e8dd154aee90d4d882c1903bd8 extends {
3019
+ propsDefinition: infer TProp;
3020
+ } ? {
3021
+ new (...args: any[]): {
3022
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3023
+ };
3024
+ } : typeof wc694cc2e8dd154aee90d4d882c1903bd8;
3025
+ };
3006
3026
  };
3007
3027
  "photowall": {
3008
3028
  "slider": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.270-dev",
4
+ "version": "8.0.272-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": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.270-dev",
23
+ "@omnia/fx-models": "8.0.272-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.1.5",
28
- "vue": "3.4.34",
29
- "vuetify": "3.6.13",
28
+ "vue": "3.4.38",
29
+ "vuetify": "3.7.0",
30
30
  "tslib": "2.6.2",
31
31
  "typescript": "5.5.4",
32
32
  "@tiptap/vue-3": "2.1.13",