@omnia/fx-models 8.0.79-dev → 8.0.80-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.
package/Layout.d.ts CHANGED
@@ -118,6 +118,7 @@ export declare enum SectionTypes {
118
118
  Slider = 6
119
119
  }
120
120
  export interface Section<T extends SectionSettings = SectionSettings> extends LayoutItem {
121
+ name?: string;
121
122
  settings: T;
122
123
  }
123
124
  export interface LayoutEngineRenderContext<TItemType = LayoutItem, TSettings = LayoutItemSettings> {
@@ -14,7 +14,7 @@ export interface OmniaSharedBootstrapData {
14
14
  tokenKey?: OmniaToken;
15
15
  tokenRef: GuidValue;
16
16
  identity: string;
17
- hubIdentity: number;
17
+ hubIdentity?: number;
18
18
  licenses: Array<Guid>;
19
19
  hubDev?: boolean;
20
20
  realtimeDevPort?: string;
@@ -9,7 +9,7 @@ export interface OmniaToken {
9
9
  export interface OmniaTokenRef {
10
10
  tenantId: GuidValue;
11
11
  identityId: string;
12
- hubIdentityId: number;
12
+ hubIdentityId?: number;
13
13
  tokenRef: GuidValue;
14
14
  localDev: boolean;
15
15
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.79-dev",
4
+ "version": "8.0.80-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -4,6 +4,7 @@ import { NestedCSSPropertiesExtends } from "./StyleFlow";
4
4
  */
5
5
  export declare const LayoutEditorCanvasStyles: {
6
6
  canvasWrapper: NestedCSSPropertiesExtends;
7
+ zoomWrapper: (zoomLevel: number) => NestedCSSPropertiesExtends;
7
8
  contentContainer: (isEditMode: boolean) => NestedCSSPropertiesExtends;
8
9
  containerVerticalAlign: (isAlignVertical: boolean) => NestedCSSPropertiesExtends;
9
10
  layoutItemSelectorPosition: NestedCSSPropertiesExtends;