@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> {
|
package/package.json
CHANGED
@@ -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;
|