@omnia/fx 8.0.70-dev → 8.0.71-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 (42) hide show
  1. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +1 -1
  2. package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.d.ts +5 -5
  3. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +1 -1
  4. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts +0 -188
  5. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.css.d.ts +0 -15
  6. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +0 -212
  7. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutPlaceHolder.d.ts +0 -212
  8. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts +0 -198
  9. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSectionTab.d.ts +1 -1
  10. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutTab.d.ts +1 -1
  11. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutrenderinghooks/LayoutBlock.css.d.ts +11 -0
  12. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutrenderinghooks/LayoutBlockEditorHooks.d.ts +6 -0
  13. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutrenderinghooks/LayoutColumn.css.d.ts +9 -0
  14. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutrenderinghooks/LayoutColumnEditorHooks.d.ts +5 -0
  15. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutrenderinghooks/LayoutSection.css.d.ts +15 -0
  16. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutrenderinghooks/LayoutSectionEditorHooks.d.ts +8 -0
  17. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutrenderinghooks/index.d.ts +3 -0
  18. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.css.d.ts +1 -0
  19. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/internal.d.ts +1 -0
  20. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/index.d.ts +5 -0
  21. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.css.d.ts +6 -0
  22. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +11 -11
  23. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.css.d.ts +4 -0
  24. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.d.ts +11 -11
  25. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.css.d.ts +6 -0
  26. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +11 -11
  27. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionStepperRenderer.d.ts +1 -1
  28. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +1 -1
  29. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +1 -1
  30. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutTabRenderer.d.ts +1 -1
  31. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/SharedRendererStyles.css.d.ts +0 -1
  32. package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +5 -5
  33. package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.d.ts +5 -5
  34. package/internal-do-not-import-from-here/ux/permissioninput/PermissionInput.d.ts +2 -2
  35. package/internal-do-not-import-from-here/ux/versionedlayout/renderer/InternalVersionedLayoutRenderer.d.ts +2 -2
  36. package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +1 -1
  37. package/package.json +2 -2
  38. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.css.d.ts +0 -19
  39. /package/internal-do-not-import-from-here/ux/layoutcanvas/{editor → shared}/layoutItemselector/LayoutItemSelection.css.d.ts +0 -0
  40. /package/internal-do-not-import-from-here/ux/layoutcanvas/{editor → shared}/layoutItemselector/LayoutItemSelection.d.ts +0 -0
  41. /package/internal-do-not-import-from-here/ux/layoutcanvas/{editor → shared}/layoutItemselector/LayoutItemSelector.css.d.ts +0 -0
  42. /package/internal-do-not-import-from-here/ux/layoutcanvas/{editor → shared}/layoutItemselector/LayoutItemSelector.d.ts +0 -0
@@ -1,198 +0,0 @@
1
- import { LayoutItem, Section } from "../../../../models";
2
- export interface LayoutSectionProps {
3
- parentContainer: LayoutItem;
4
- section: Section;
5
- layoutId: string;
6
- useScrollMargingFix: boolean;
7
- tabState: object;
8
- }
9
- declare const _default: {
10
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
11
- "tab-state": {
12
- type: import("vue").PropType<object>;
13
- };
14
- tabState: {
15
- type: import("vue").PropType<object>;
16
- };
17
- "use-scroll-marging-fix": {
18
- type: import("vue").PropType<boolean>;
19
- };
20
- useScrollMargingFix: {
21
- type: import("vue").PropType<boolean>;
22
- };
23
- "layout-id": {
24
- type: import("vue").PropType<string>;
25
- };
26
- layoutId: {
27
- type: import("vue").PropType<string>;
28
- };
29
- section: {
30
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
31
- } & {
32
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
33
- };
34
- "parent-container": {
35
- type: import("vue").PropType<LayoutItem>;
36
- };
37
- parentContainer: {
38
- type: import("vue").PropType<LayoutItem>;
39
- };
40
- colorSchemaType?: any;
41
- container?: any;
42
- colors?: any;
43
- blueprintType?: any;
44
- blueprint?: any;
45
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
46
- "tab-state": {
47
- type: import("vue").PropType<object>;
48
- };
49
- tabState: {
50
- type: import("vue").PropType<object>;
51
- };
52
- "use-scroll-marging-fix": {
53
- type: import("vue").PropType<boolean>;
54
- };
55
- useScrollMargingFix: {
56
- type: import("vue").PropType<boolean>;
57
- };
58
- "layout-id": {
59
- type: import("vue").PropType<string>;
60
- };
61
- layoutId: {
62
- type: import("vue").PropType<string>;
63
- };
64
- section: {
65
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
66
- } & {
67
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
68
- };
69
- "parent-container": {
70
- type: import("vue").PropType<LayoutItem>;
71
- };
72
- parentContainer: {
73
- type: import("vue").PropType<LayoutItem>;
74
- };
75
- colorSchemaType?: any;
76
- container?: any;
77
- colors?: any;
78
- blueprintType?: any;
79
- blueprint?: any;
80
- }>>, {
81
- container?: any;
82
- blueprint?: any;
83
- colorSchemaType?: any;
84
- blueprintType?: any;
85
- colors?: any;
86
- }, true, {}, {}, {
87
- P: {};
88
- B: {};
89
- D: {};
90
- C: {};
91
- M: {};
92
- Defaults: {};
93
- }, Readonly<import("vue").ExtractPropTypes<{
94
- "tab-state": {
95
- type: import("vue").PropType<object>;
96
- };
97
- tabState: {
98
- type: import("vue").PropType<object>;
99
- };
100
- "use-scroll-marging-fix": {
101
- type: import("vue").PropType<boolean>;
102
- };
103
- useScrollMargingFix: {
104
- type: import("vue").PropType<boolean>;
105
- };
106
- "layout-id": {
107
- type: import("vue").PropType<string>;
108
- };
109
- layoutId: {
110
- type: import("vue").PropType<string>;
111
- };
112
- section: {
113
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
114
- } & {
115
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
116
- };
117
- "parent-container": {
118
- type: import("vue").PropType<LayoutItem>;
119
- };
120
- parentContainer: {
121
- type: import("vue").PropType<LayoutItem>;
122
- };
123
- colorSchemaType?: any;
124
- container?: any;
125
- colors?: any;
126
- blueprintType?: any;
127
- blueprint?: any;
128
- }>>, () => JSX.Element, {}, {}, {}, {
129
- container?: any;
130
- blueprint?: any;
131
- colorSchemaType?: any;
132
- blueprintType?: any;
133
- colors?: any;
134
- }>;
135
- __isFragment?: never;
136
- __isTeleport?: never;
137
- __isSuspense?: never;
138
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
139
- "tab-state": {
140
- type: import("vue").PropType<object>;
141
- };
142
- tabState: {
143
- type: import("vue").PropType<object>;
144
- };
145
- "use-scroll-marging-fix": {
146
- type: import("vue").PropType<boolean>;
147
- };
148
- useScrollMargingFix: {
149
- type: import("vue").PropType<boolean>;
150
- };
151
- "layout-id": {
152
- type: import("vue").PropType<string>;
153
- };
154
- layoutId: {
155
- type: import("vue").PropType<string>;
156
- };
157
- section: {
158
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
159
- } & {
160
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
161
- };
162
- "parent-container": {
163
- type: import("vue").PropType<LayoutItem>;
164
- };
165
- parentContainer: {
166
- type: import("vue").PropType<LayoutItem>;
167
- };
168
- colorSchemaType?: any;
169
- container?: any;
170
- colors?: any;
171
- blueprintType?: any;
172
- blueprint?: any;
173
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
174
- container?: any;
175
- blueprint?: any;
176
- colorSchemaType?: any;
177
- blueprintType?: any;
178
- colors?: any;
179
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
180
- propsDefinition: Omit<Readonly<{
181
- container?: any;
182
- blueprint?: any;
183
- colorSchemaType?: any;
184
- blueprintType?: any;
185
- colors?: any;
186
- } & {
187
- section?: Section<import("@omnia/fx-models").SectionSettings>;
188
- parentContainer?: LayoutItem;
189
- layoutId?: string;
190
- useScrollMargingFix?: boolean;
191
- "layout-id"?: string;
192
- "use-scroll-marging-fix"?: boolean;
193
- "parent-container"?: LayoutItem;
194
- tabState?: object;
195
- "tab-state"?: object;
196
- }>, never>;
197
- };
198
- export default _default;
@@ -111,8 +111,8 @@ declare const _default: {
111
111
  propsDefinition: Omit<Readonly<{} & {
112
112
  section?: Section<import("@omnia/fx-models").SectionSettings>;
113
113
  layoutId?: string;
114
- useScrollMargingFix?: boolean;
115
114
  "layout-id"?: string;
115
+ useScrollMargingFix?: boolean;
116
116
  "use-scroll-marging-fix"?: boolean;
117
117
  tabState?: object;
118
118
  "tab-state"?: object;
@@ -132,8 +132,8 @@ declare const _default: {
132
132
  tab?: SectionItem<TabbedSectionItemSettings>;
133
133
  settings?: SectionSettings;
134
134
  layoutId?: string;
135
- useScrollMargingFix?: boolean;
136
135
  "layout-id"?: string;
136
+ useScrollMargingFix?: boolean;
137
137
  "use-scroll-marging-fix"?: boolean;
138
138
  tabState?: object;
139
139
  "tab-state"?: object;
@@ -0,0 +1,11 @@
1
+ import { BlockLayoutSettings, ColorDefinition } from "@omnia/fx-models";
2
+ /**
3
+ * Styles for the LayoutColumnStyles component
4
+ */
5
+ export declare const LayoutBlockStyles: {
6
+ selectorContainerExtensions: (colors: ColorDefinition, isSelected: boolean, settings: BlockLayoutSettings) => string;
7
+ toolbar: string;
8
+ positionItemSelectorOnBorderTop: string;
9
+ positionItemSelectorOnBorderBottom: string;
10
+ padLockIcon: string;
11
+ };
@@ -0,0 +1,6 @@
1
+ import { LayoutEngineRenderContext, Block, SectionSettings } from "@omnia/fx/models";
2
+ export declare function useLayoutBlockEditorHooks(rendererContext: LayoutEngineRenderContext<Block, SectionSettings>): {
3
+ renderSelectors: () => JSX.Element;
4
+ onBlockSelected: (e: MouseEvent) => void;
5
+ containerStyleExtensions: () => string;
6
+ };
@@ -0,0 +1,9 @@
1
+ import { SectionSettings } from "@omnia/fx-models";
2
+ /**
3
+ * Styles for the LayoutColumnStyles component
4
+ */
5
+ export declare const LayoutColumnStyles: {
6
+ selectorPositioner: string;
7
+ columnWrapperExtensions: string;
8
+ selectorWrapper: (settings: SectionSettings) => string;
9
+ };
@@ -0,0 +1,5 @@
1
+ import { LayoutEngineRenderContext, SectionSettings, ColumnedSectionItemSettings, SectionItem } from "@omnia/fx/models";
2
+ export declare function useLayoutColumnEditorHooks(rendererContext: LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>): {
3
+ renderSelectors: () => JSX.Element;
4
+ columnWrapperStyleExtensions: string;
5
+ };
@@ -0,0 +1,15 @@
1
+ import { ColorDefinition, SectionSettings } from "@omnia/fx-models";
2
+ /**
3
+ * Styles for the LayoutColumnStyles component
4
+ */
5
+ export declare const LayoutSectionStyles: {
6
+ sectionContentExtensions: (settings: SectionSettings) => string;
7
+ sectionWrapperExtensions: (colors: ColorDefinition, isSelected: boolean, settings: SectionSettings) => string;
8
+ showhideTransition: (show: any) => string;
9
+ toolbar: (baseColor: ColorDefinition) => string;
10
+ removeScrollMargin: string;
11
+ positionItemSelectorOnBorderTop: string;
12
+ positionItemSelectorOnBorderTopCorrection: string;
13
+ positionItemSelectorOnBorderBottom: string;
14
+ padLockIcon: string;
15
+ };
@@ -0,0 +1,8 @@
1
+ import { LayoutEngineRenderContext, LayoutItemSettings } from "@omnia/fx/models";
2
+ import { Section } from "../../../../models";
3
+ export declare function useLayoutSectionEditorHooks(rendererContext: LayoutEngineRenderContext<Section, LayoutItemSettings>): {
4
+ renderSelectors: () => JSX.Element;
5
+ onSectionSelected: (e: Event) => void;
6
+ sectionWrapperStyleExtensions: () => string;
7
+ sectionContentStylesExtensions: () => string;
8
+ };
@@ -0,0 +1,3 @@
1
+ export * from "./LayoutBlockEditorHooks";
2
+ export * from "./LayoutColumnEditorHooks";
3
+ export * from "./LayoutSectionEditorHooks";
@@ -4,4 +4,5 @@
4
4
  export declare const TargetSelectorStyles: {
5
5
  smallPosition: string;
6
6
  buttonWrapper: string;
7
+ chrome: string;
7
8
  };
@@ -1,3 +1,4 @@
1
1
  export * from "./layoutitemsrenderer";
2
2
  export * from "./LayoutRenditionManager";
3
3
  export * from "./layoutitemsdesigner";
4
+ export * from "./layoutItemselector";
@@ -0,0 +1,5 @@
1
+ export * from "./LayoutItemSelection";
2
+ export * from "./LayoutItemSelector";
3
+ import LayoutItemSelector from "./LayoutItemSelector";
4
+ import LayoutItemSelection from "./LayoutItemSelection";
5
+ export { LayoutItemSelector, LayoutItemSelection };
@@ -0,0 +1,6 @@
1
+ import { BlockLayoutSettings, DisplayBreakPoint, SectionSettings } from "@omnia/fx-models";
2
+ export declare const LayoutBlockRendererStyles: {
3
+ createMediaBreakPointForDevice: (blockSettings: BlockLayoutSettings, deviceBreakPoint: DisplayBreakPoint) => import("typestyle/lib/types").NestedCSSProperties;
4
+ clickProtectionOverlay: string;
5
+ blockContainer: (sectionSettings: SectionSettings, blockSettings: BlockLayoutSettings) => string;
6
+ };
@@ -1,11 +1,11 @@
1
- import { Block, RenderContext, SectionSettings } from "@omnia/fx-models";
1
+ import { Block, LayoutEngineRenderContext, SectionSettings } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
4
  "render-context": {
5
- type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
5
+ type: import("vue").PropType<LayoutEngineRenderContext<Block, SectionSettings>>;
6
6
  };
7
7
  renderContext: {
8
- type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
8
+ type: import("vue").PropType<LayoutEngineRenderContext<Block, SectionSettings>>;
9
9
  };
10
10
  }>> & {
11
11
  onBlockInstanceCreated?: (blockInstance: any) => any;
@@ -17,10 +17,10 @@ declare const _default: {
17
17
  blockInstanceCacheKeyUpdated: (blockInstance: any) => any;
18
18
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
19
19
  "render-context": {
20
- type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
20
+ type: import("vue").PropType<LayoutEngineRenderContext<Block, SectionSettings>>;
21
21
  };
22
22
  renderContext: {
23
- type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
23
+ type: import("vue").PropType<LayoutEngineRenderContext<Block, SectionSettings>>;
24
24
  };
25
25
  }>> & {
26
26
  onBlockInstanceCreated?: (blockInstance: any) => any;
@@ -35,10 +35,10 @@ declare const _default: {
35
35
  Defaults: {};
36
36
  }, Readonly<import("vue").ExtractPropTypes<{
37
37
  "render-context": {
38
- type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
38
+ type: import("vue").PropType<LayoutEngineRenderContext<Block, SectionSettings>>;
39
39
  };
40
40
  renderContext: {
41
- type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
41
+ type: import("vue").PropType<LayoutEngineRenderContext<Block, SectionSettings>>;
42
42
  };
43
43
  }>> & {
44
44
  onBlockInstanceCreated?: (blockInstance: any) => any;
@@ -50,10 +50,10 @@ declare const _default: {
50
50
  __isSuspense?: never;
51
51
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
52
52
  "render-context": {
53
- type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
53
+ type: import("vue").PropType<LayoutEngineRenderContext<Block, SectionSettings>>;
54
54
  };
55
55
  renderContext: {
56
- type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
56
+ type: import("vue").PropType<LayoutEngineRenderContext<Block, SectionSettings>>;
57
57
  };
58
58
  }>> & {
59
59
  onBlockInstanceCreated?: (blockInstance: any) => any;
@@ -65,8 +65,8 @@ declare const _default: {
65
65
  blockInstanceCacheKeyUpdated: (blockInstance: any) => any;
66
66
  }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
67
67
  propsDefinition: Omit<Readonly<{} & {
68
- renderContext?: RenderContext<Block, SectionSettings>;
69
- "render-context"?: RenderContext<Block, SectionSettings>;
68
+ renderContext?: LayoutEngineRenderContext<Block, SectionSettings>;
69
+ "render-context"?: LayoutEngineRenderContext<Block, SectionSettings>;
70
70
  }>, "onBlockInstanceCreated" | "onGetBlock" | "onBlockInstanceCacheKeyUpdated"> & {
71
71
  onBlockInstanceCreated?: (blockInstance: any) => any;
72
72
  onGetBlock?: (ref: any) => any;
@@ -0,0 +1,4 @@
1
+ import { ColumnedSectionItemSettings, SectionSettings } from "@omnia/fx-models";
2
+ export declare const LayoutColumnRendererStyles: {
3
+ columnWrapper: (columnSettings: ColumnedSectionItemSettings, sectionSettings: SectionSettings) => string;
4
+ };
@@ -1,4 +1,4 @@
1
- import { ColumnedSectionItemSettings, SectionSettings, SectionItem, RenderContext } from "../../../../models";
1
+ import { ColumnedSectionItemSettings, SectionSettings, SectionItem, LayoutEngineRenderContext } from "../../../../models";
2
2
  import { VueComponentBaseProps } from "../../../VueComponentBase";
3
3
  export interface ColumnRendererProps extends VueComponentBaseProps {
4
4
  column: SectionItem<ColumnedSectionItemSettings>;
@@ -9,17 +9,17 @@ export interface ColumnRendererProps extends VueComponentBaseProps {
9
9
  declare const _default: {
10
10
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
11
11
  "render-context": {
12
- type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
12
+ type: import("vue").PropType<LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
13
13
  };
14
14
  renderContext: {
15
- type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
15
+ type: import("vue").PropType<LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
16
16
  };
17
17
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
18
18
  "render-context": {
19
- type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
19
+ type: import("vue").PropType<LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
20
20
  };
21
21
  renderContext: {
22
- type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
22
+ type: import("vue").PropType<LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
23
23
  };
24
24
  }>>, {}, true, {}, {}, {
25
25
  P: {};
@@ -30,10 +30,10 @@ declare const _default: {
30
30
  Defaults: {};
31
31
  }, Readonly<import("vue").ExtractPropTypes<{
32
32
  "render-context": {
33
- type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
33
+ type: import("vue").PropType<LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
34
34
  };
35
35
  renderContext: {
36
- type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
36
+ type: import("vue").PropType<LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
37
37
  };
38
38
  }>>, () => JSX.Element, {}, {}, {}, {}>;
39
39
  __isFragment?: never;
@@ -41,15 +41,15 @@ declare const _default: {
41
41
  __isSuspense?: never;
42
42
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
43
43
  "render-context": {
44
- type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
44
+ type: import("vue").PropType<LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
45
45
  };
46
46
  renderContext: {
47
- type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
47
+ type: import("vue").PropType<LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
48
48
  };
49
49
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
50
50
  propsDefinition: Omit<Readonly<{} & {
51
- renderContext?: RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>;
52
- "render-context"?: RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>;
51
+ renderContext?: LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>;
52
+ "render-context"?: LayoutEngineRenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>;
53
53
  }>, never>;
54
54
  };
55
55
  export default _default;
@@ -0,0 +1,6 @@
1
+ import { SectionSettings } from "@omnia/fx-models";
2
+ export declare const LayoutSectionStyles: {
3
+ getAlignmentSettings: (sectionSettings: SectionSettings) => any;
4
+ sectionWrapper: (sectionSettings: SectionSettings) => string;
5
+ sectionContent: (settings: SectionSettings, useScrollMargingFix: boolean) => string;
6
+ };
@@ -1,4 +1,4 @@
1
- import { LayoutItem, Section, SectionSettings, RenderContext } from "../../../../models";
1
+ import { LayoutItem, Section, SectionSettings, LayoutEngineRenderContext } from "../../../../models";
2
2
  import { VueComponentBaseProps } from "../../../VueComponentBase";
3
3
  export interface LayoutSectionRendererProps extends VueComponentBaseProps {
4
4
  parentContainer: LayoutItem;
@@ -9,17 +9,17 @@ export interface LayoutSectionRendererProps extends VueComponentBaseProps {
9
9
  declare const _default: {
10
10
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
11
11
  "render-context": {
12
- type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
12
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
13
13
  };
14
14
  renderContext: {
15
- type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
15
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
16
16
  };
17
17
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
18
18
  "render-context": {
19
- type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
19
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
20
20
  };
21
21
  renderContext: {
22
- type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
22
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
23
23
  };
24
24
  }>>, {}, true, {}, {}, {
25
25
  P: {};
@@ -30,10 +30,10 @@ declare const _default: {
30
30
  Defaults: {};
31
31
  }, Readonly<import("vue").ExtractPropTypes<{
32
32
  "render-context": {
33
- type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
33
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
34
34
  };
35
35
  renderContext: {
36
- type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
36
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
37
37
  };
38
38
  }>>, () => JSX.Element, {}, {}, {}, {}>;
39
39
  __isFragment?: never;
@@ -41,15 +41,15 @@ declare const _default: {
41
41
  __isSuspense?: never;
42
42
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
43
43
  "render-context": {
44
- type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
44
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
45
45
  };
46
46
  renderContext: {
47
- type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
47
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
48
48
  };
49
49
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
50
50
  propsDefinition: Omit<Readonly<{} & {
51
- renderContext?: RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>;
52
- "render-context"?: RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>;
51
+ renderContext?: LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>;
52
+ "render-context"?: LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>;
53
53
  }>, never>;
54
54
  };
55
55
  export default _default;
@@ -118,9 +118,9 @@ declare const _default: {
118
118
  section?: Section<StepperSectionSettings>;
119
119
  themeTargetId?: string;
120
120
  layoutId?: string;
121
- useScrollMargingFix?: boolean;
122
121
  "theme-target-id"?: string;
123
122
  "layout-id"?: string;
123
+ useScrollMargingFix?: boolean;
124
124
  "use-scroll-marging-fix"?: boolean;
125
125
  }>, never>;
126
126
  };
@@ -112,9 +112,9 @@ declare const _default: {
112
112
  section?: Section<import("@omnia/fx-models").SectionSettings>;
113
113
  themeTargetId?: string;
114
114
  layoutId?: string;
115
- useScrollMargingFix?: boolean;
116
115
  "theme-target-id"?: string;
117
116
  "layout-id"?: string;
117
+ useScrollMargingFix?: boolean;
118
118
  "use-scroll-marging-fix"?: boolean;
119
119
  }>, never>;
120
120
  };
@@ -159,9 +159,9 @@ declare const _default: {
159
159
  designRender?: boolean;
160
160
  "design-render"?: boolean;
161
161
  layoutId?: string;
162
- useScrollMargingFix?: boolean;
163
162
  "theme-target-id"?: string;
164
163
  "layout-id"?: string;
164
+ useScrollMargingFix?: boolean;
165
165
  "use-scroll-marging-fix"?: boolean;
166
166
  }>, never>;
167
167
  };
@@ -159,9 +159,9 @@ declare const _default: {
159
159
  designRender?: boolean;
160
160
  "design-render"?: boolean;
161
161
  layoutId?: string;
162
- useScrollMargingFix?: boolean;
163
162
  "theme-target-id"?: string;
164
163
  "layout-id"?: string;
164
+ useScrollMargingFix?: boolean;
165
165
  "use-scroll-marging-fix"?: boolean;
166
166
  }>, never>;
167
167
  };
@@ -22,7 +22,6 @@ export declare function useSharedRendererStyles(): {
22
22
  };
23
23
  column: {
24
24
  getStylesFromSettings: (columnSettings: ColumnedSectionItemSettings, backgroundUrl: string, sectionSettings: SectionSettings) => string;
25
- getStylesForMarginCollaps: (sectionSettings: SectionSettings) => string;
26
25
  hideContainer: (items: Array<LayoutItem>, isEditMode: boolean) => string;
27
26
  container: (sectionSettings: SectionSettings, blockSettings: BlockLayoutSettings) => string;
28
27
  triggerHideContainer: (isEditMode: boolean, isHidden: boolean) => string;
@@ -6,7 +6,7 @@ declare const _default: {
6
6
  type: import("vue").PropType<OScrollTypesCombination>;
7
7
  required: false;
8
8
  };
9
- storeHook: {
9
+ getApi: {
10
10
  type: import("vue").PropType<(store: ReturnType<typeof useScrollContainerStore>) => void>;
11
11
  };
12
12
  disableScrolling: {
@@ -38,7 +38,7 @@ declare const _default: {
38
38
  type: import("vue").PropType<OScrollTypesCombination>;
39
39
  required: false;
40
40
  };
41
- storeHook: {
41
+ getApi: {
42
42
  type: import("vue").PropType<(store: ReturnType<typeof useScrollContainerStore>) => void>;
43
43
  };
44
44
  disableScrolling: {
@@ -83,7 +83,7 @@ declare const _default: {
83
83
  type: import("vue").PropType<OScrollTypesCombination>;
84
84
  required: false;
85
85
  };
86
- storeHook: {
86
+ getApi: {
87
87
  type: import("vue").PropType<(store: ReturnType<typeof useScrollContainerStore>) => void>;
88
88
  };
89
89
  disableScrolling: {
@@ -125,7 +125,7 @@ declare const _default: {
125
125
  type: import("vue").PropType<OScrollTypesCombination>;
126
126
  required: false;
127
127
  };
128
- storeHook: {
128
+ getApi: {
129
129
  type: import("vue").PropType<(store: ReturnType<typeof useScrollContainerStore>) => void>;
130
130
  };
131
131
  disableScrolling: {
@@ -173,7 +173,7 @@ declare const _default: {
173
173
  toned?: boolean;
174
174
  disableScrolling?: boolean;
175
175
  scrolling?: OScrollTypesCombination;
176
- storeHook?: (store: ReturnType<typeof useScrollContainerStore>) => void;
176
+ getApi?: (store: ReturnType<typeof useScrollContainerStore>) => void;
177
177
  }>, never>;
178
178
  };
179
179
  export default _default;