@omnia/fx 8.0.528-dev → 8.0.529-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.
@@ -250,6 +250,11 @@ export declare const useEditorChromeStore: () => {
250
250
  hasActive: () => boolean;
251
251
  };
252
252
  };
253
+ utils: {
254
+ configuration: {
255
+ extend: (target: EditorChromeConfiguration, configuration: EditorChromeConfiguration) => void;
256
+ };
257
+ };
253
258
  } & {
254
259
  dispose?: () => void;
255
260
  };
@@ -0,0 +1,6 @@
1
+ import { EditorChromeConfiguration } from "@omnia/fx-models";
2
+ export declare function useEditorViewManager(): {
3
+ configuration: {
4
+ extend: (target: EditorChromeConfiguration, configuration: EditorChromeConfiguration) => void;
5
+ };
6
+ };
@@ -1,9 +1,9 @@
1
1
  import { DefineProp, DefinePropTheming } from "@omnia/fx/ux";
2
- type TabbleProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"toned", boolean, false, null>;
2
+ type TabbleProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"toned", boolean, false, null> & DefineProp<"fixedHeader", boolean, false, false, "Use the fixed-header prop together with the height prop to fix the header to the top of the table."> & DefineProp<"height", string | number, false, null, "Use the height prop to set the height of the table.">;
3
3
  declare const _default: (props: import("@omnia/fx/ux").ExtractProps<TabbleProps> & {} & {
4
4
  "v-slots"?: {} & Omit<{
5
5
  default?: import("vue").Slot;
6
6
  $stable?: boolean;
7
7
  }, never>;
8
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "class" | "colors" | "toned"> & import("@omnia/fx/ux").VNodeEvents) => any;
8
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "height" | "colorSchemaType" | "class" | "colors" | "toned" | "fixedHeader"> & import("@omnia/fx/ux").VNodeEvents) => any;
9
9
  export default _default;
@@ -11,7 +11,10 @@ declare function ListComponent(props: {
11
11
  headers: {
12
12
  title: string | VNodeChild;
13
13
  colspan?: number;
14
+ width?: string | number;
14
15
  }[];
16
+ fixedHeader?: boolean;
17
+ height?: string | number;
15
18
  } & HTMLAttributes, ctx: SetupContext): import("vue/jsx-runtime").JSX.Element;
16
19
  declare function RowComponent(props: HTMLAttributes, ctx: SetupContext): import("vue/jsx-runtime").JSX.Element;
17
20
  declare function CellComponent(props: TdHTMLAttributes, ctx: SetupContext): import("vue/jsx-runtime").JSX.Element;
@@ -1,4 +1,4 @@
1
- import { guid, VersionedLayoutDefinition, VersionedLayout, LayoutEditorModes } from "@omnia/fx/models";
1
+ import { guid, VersionedLayoutDefinition, VersionedLayout } from "@omnia/fx/models";
2
2
  import { VersionedLayoutEditorApi, VersionedLayoutDefinitionEditorItem } from "@omnia/fx/ux";
3
3
  export interface VersionedLayoutEditorSettings<T extends VersionedLayoutDefinition = VersionedLayoutDefinition> {
4
4
  layoutDefinition: new () => T;
@@ -6,17 +6,10 @@ export interface VersionedLayoutEditorSettings<T extends VersionedLayoutDefiniti
6
6
  sort?: (a: VersionedLayout, b: VersionedLayout) => number;
7
7
  businessProfileId?: guid;
8
8
  checkDeletable?: (layout: VersionedLayout) => Promise<boolean>;
9
- enableBlockLockSettings?: boolean;
10
- versionedLayoutId: number;
11
- api: VersionedLayoutEditorApi;
12
- layoutEditorMode?: LayoutEditorModes;
13
9
  enableAlternateLayouts?: boolean;
14
- hideDeleteAction?: boolean;
15
10
  hideBreakpointPreview?: boolean;
16
11
  profileAdminEditable?: boolean;
17
12
  authDisabled?: boolean;
18
- layoutProvider?: string;
19
- layoutDependencyProviders?: string[];
20
13
  }
21
14
  export interface VersionedLayoutBladeSettings<T extends VersionedLayoutDefinition = VersionedLayoutDefinition> {
22
15
  layoutDefinition: new () => T;
@@ -53,7 +53,7 @@ export declare const defineDefaultEditorView: (param1: EditorChromeConfiguration
53
53
  actions: import("../../../mobile").StoreReturnDefineAction<{
54
54
  canvas: () => {
55
55
  configuration: {
56
- extend: (configuration: EditorChromeConfiguration) => void;
56
+ extend: (extension: EditorChromeConfiguration) => void;
57
57
  };
58
58
  };
59
59
  versioning: () => {
@@ -82,6 +82,7 @@ export declare const defineDefaultEditorView: (param1: EditorChromeConfiguration
82
82
  toReadMode: () => void;
83
83
  };
84
84
  };
85
+ close: () => void;
85
86
  init: (editorChromeStore: ReturnType<typeof import("@omnia/fx/ux").useEditorChromeStore>, views: import("@omnia/fx/ux").EditorViews) => void;
86
87
  }>;
87
88
  get: {
@@ -334,6 +335,11 @@ export declare const defineDefaultEditorView: (param1: EditorChromeConfiguration
334
335
  hasActive: () => boolean;
335
336
  };
336
337
  };
338
+ utils: {
339
+ configuration: {
340
+ extend: (target: EditorChromeConfiguration, configuration: EditorChromeConfiguration) => void;
341
+ };
342
+ };
337
343
  } & {
338
344
  dispose?: () => void;
339
345
  };
@@ -60,7 +60,7 @@ export declare const useVersionedLayoutEditorStore: () => {
60
60
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
61
61
  canvas: () => {
62
62
  configuration: {
63
- extend: (configuration: EditorChromeConfiguration) => void;
63
+ extend: (extension: EditorChromeConfiguration) => void;
64
64
  };
65
65
  };
66
66
  versioning: () => {
@@ -89,6 +89,7 @@ export declare const useVersionedLayoutEditorStore: () => {
89
89
  toReadMode: () => void;
90
90
  };
91
91
  };
92
+ close: () => void;
92
93
  init: (editorChromeStore: ReturnType<typeof useEditorChromeStore>, views: EditorViews) => void;
93
94
  }>;
94
95
  get: {
@@ -341,6 +342,11 @@ export declare const useVersionedLayoutEditorStore: () => {
341
342
  hasActive: () => boolean;
342
343
  };
343
344
  };
345
+ utils: {
346
+ configuration: {
347
+ extend: (target: EditorChromeConfiguration, configuration: EditorChromeConfiguration) => void;
348
+ };
349
+ };
344
350
  } & {
345
351
  dispose?: () => void;
346
352
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.528-dev",
4
+ "version": "8.0.529-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.528-dev",
23
+ "@omnia/fx-models": "8.0.529-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",