@omnia/fx 8.0.67-dev → 8.0.68-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/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutPlaceHolder.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSectionTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +19 -113
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.d.ts +19 -113
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +19 -118
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionStepperRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutTabRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/column/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.d.ts +14 -1
- package/internal-do-not-import-from-here/ux/oxide/flex/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +21 -1
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.d.ts +31 -1
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/store/SlidePanelStore.d.ts +41 -1
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Image.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/ImageText.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Quote.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Text.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/index.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/useDefaultDesignKit.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/pages/definitions/headers/HeaderWithImage.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/useDesignKits.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +28 -11
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/{View.d.ts → Flex.d.ts} +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/FlexColumn.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/FlexRow.d.ts +32 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +7 -0
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Contentblocks.d.ts +0 -1
@@ -7,6 +7,7 @@ export declare const LayoutItemSelectorStyles: {
|
|
7
7
|
smallPosition: string;
|
8
8
|
notScrollOutside: string;
|
9
9
|
selectorWrapper: string;
|
10
|
+
gridfillColumn: string;
|
10
11
|
contentWrapper: (background: Color) => string;
|
11
12
|
closeButton: string;
|
12
13
|
dialogHeader: (textColor: string) => string;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts
CHANGED
@@ -180,8 +180,8 @@ declare const _default: {
|
|
180
180
|
themeTargetId?: string;
|
181
181
|
settings?: SectionSettings;
|
182
182
|
parentContainer?: LayoutItem;
|
183
|
-
"parent-container"?: LayoutItem;
|
184
183
|
"theme-target-id"?: string;
|
184
|
+
"parent-container"?: LayoutItem;
|
185
185
|
orphaned?: boolean;
|
186
186
|
}>, never>;
|
187
187
|
};
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts
CHANGED
@@ -200,10 +200,10 @@ declare const _default: {
|
|
200
200
|
column?: SectionItem<ColumnedSectionItemSettings>;
|
201
201
|
themeTargetId?: string;
|
202
202
|
settings?: SectionSettings;
|
203
|
-
"theme-target-id"?: string;
|
204
203
|
layoutId?: string;
|
205
|
-
"layout-id"?: string;
|
206
204
|
useScrollMargingFix?: boolean;
|
205
|
+
"theme-target-id"?: string;
|
206
|
+
"layout-id"?: string;
|
207
207
|
"use-scroll-marging-fix"?: boolean;
|
208
208
|
tabState?: object;
|
209
209
|
"tab-state"?: object;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutPlaceHolder.d.ts
CHANGED
@@ -200,10 +200,10 @@ declare const _default: {
|
|
200
200
|
column?: SectionItem<ColumnedSectionItemSettings>;
|
201
201
|
themeTargetId?: string;
|
202
202
|
settings?: PlaceHolderSectionSettings;
|
203
|
-
"theme-target-id"?: string;
|
204
203
|
layoutId?: string;
|
205
|
-
"layout-id"?: string;
|
206
204
|
useScrollMargingFix?: boolean;
|
205
|
+
"theme-target-id"?: string;
|
206
|
+
"layout-id"?: string;
|
207
207
|
"use-scroll-marging-fix"?: boolean;
|
208
208
|
tabState?: object;
|
209
209
|
"tab-state"?: object;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts
CHANGED
@@ -186,11 +186,11 @@ declare const _default: {
|
|
186
186
|
} & {
|
187
187
|
section?: Section<import("@omnia/fx-models").SectionSettings>;
|
188
188
|
parentContainer?: LayoutItem;
|
189
|
-
"parent-container"?: LayoutItem;
|
190
189
|
layoutId?: string;
|
191
|
-
"layout-id"?: string;
|
192
190
|
useScrollMargingFix?: boolean;
|
191
|
+
"layout-id"?: string;
|
193
192
|
"use-scroll-marging-fix"?: boolean;
|
193
|
+
"parent-container"?: LayoutItem;
|
194
194
|
tabState?: object;
|
195
195
|
"tab-state"?: object;
|
196
196
|
}>, never>;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSectionTab.d.ts
CHANGED
@@ -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
|
-
"layout-id"?: string;
|
115
114
|
useScrollMargingFix?: boolean;
|
115
|
+
"layout-id"?: string;
|
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
|
-
"layout-id"?: string;
|
136
135
|
useScrollMargingFix?: boolean;
|
136
|
+
"layout-id"?: string;
|
137
137
|
"use-scroll-marging-fix"?: boolean;
|
138
138
|
tabState?: object;
|
139
139
|
"tab-state"?: object;
|
@@ -1,33 +1,11 @@
|
|
1
|
-
import { Block,
|
1
|
+
import { Block, RenderContext, SectionSettings } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
"
|
5
|
-
type: import("vue").PropType<
|
4
|
+
"render-context": {
|
5
|
+
type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
|
6
6
|
};
|
7
|
-
|
8
|
-
type: import("vue").PropType<
|
9
|
-
};
|
10
|
-
"use-click-protection": {
|
11
|
-
type: import("vue").PropType<boolean>;
|
12
|
-
};
|
13
|
-
useClickProtection: {
|
14
|
-
type: import("vue").PropType<boolean>;
|
15
|
-
};
|
16
|
-
settings: {
|
17
|
-
type: import("vue").PropType<SectionSettings>;
|
18
|
-
} & {
|
19
|
-
type: import("vue").PropType<SectionSettings>;
|
20
|
-
};
|
21
|
-
"parent-container": {
|
22
|
-
type: import("vue").PropType<LayoutItem>;
|
23
|
-
};
|
24
|
-
parentContainer: {
|
25
|
-
type: import("vue").PropType<LayoutItem>;
|
26
|
-
};
|
27
|
-
block: {
|
28
|
-
type: import("vue").PropType<Block>;
|
29
|
-
} & {
|
30
|
-
type: import("vue").PropType<Block>;
|
7
|
+
renderContext: {
|
8
|
+
type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
|
31
9
|
};
|
32
10
|
}>> & {
|
33
11
|
onBlockInstanceCreated?: (blockInstance: any) => any;
|
@@ -38,33 +16,11 @@ declare const _default: {
|
|
38
16
|
blockInstanceCreated: (blockInstance: any) => any;
|
39
17
|
blockInstanceCacheKeyUpdated: (blockInstance: any) => any;
|
40
18
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
41
|
-
"
|
42
|
-
type: import("vue").PropType<
|
43
|
-
};
|
44
|
-
themeTargetId: {
|
45
|
-
type: import("vue").PropType<string>;
|
46
|
-
};
|
47
|
-
"use-click-protection": {
|
48
|
-
type: import("vue").PropType<boolean>;
|
49
|
-
};
|
50
|
-
useClickProtection: {
|
51
|
-
type: import("vue").PropType<boolean>;
|
52
|
-
};
|
53
|
-
settings: {
|
54
|
-
type: import("vue").PropType<SectionSettings>;
|
55
|
-
} & {
|
56
|
-
type: import("vue").PropType<SectionSettings>;
|
57
|
-
};
|
58
|
-
"parent-container": {
|
59
|
-
type: import("vue").PropType<LayoutItem>;
|
60
|
-
};
|
61
|
-
parentContainer: {
|
62
|
-
type: import("vue").PropType<LayoutItem>;
|
19
|
+
"render-context": {
|
20
|
+
type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
|
63
21
|
};
|
64
|
-
|
65
|
-
type: import("vue").PropType<Block
|
66
|
-
} & {
|
67
|
-
type: import("vue").PropType<Block>;
|
22
|
+
renderContext: {
|
23
|
+
type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
|
68
24
|
};
|
69
25
|
}>> & {
|
70
26
|
onBlockInstanceCreated?: (blockInstance: any) => any;
|
@@ -78,33 +34,11 @@ declare const _default: {
|
|
78
34
|
M: {};
|
79
35
|
Defaults: {};
|
80
36
|
}, Readonly<import("vue").ExtractPropTypes<{
|
81
|
-
"
|
82
|
-
type: import("vue").PropType<
|
37
|
+
"render-context": {
|
38
|
+
type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
|
83
39
|
};
|
84
|
-
|
85
|
-
type: import("vue").PropType<
|
86
|
-
};
|
87
|
-
"use-click-protection": {
|
88
|
-
type: import("vue").PropType<boolean>;
|
89
|
-
};
|
90
|
-
useClickProtection: {
|
91
|
-
type: import("vue").PropType<boolean>;
|
92
|
-
};
|
93
|
-
settings: {
|
94
|
-
type: import("vue").PropType<SectionSettings>;
|
95
|
-
} & {
|
96
|
-
type: import("vue").PropType<SectionSettings>;
|
97
|
-
};
|
98
|
-
"parent-container": {
|
99
|
-
type: import("vue").PropType<LayoutItem>;
|
100
|
-
};
|
101
|
-
parentContainer: {
|
102
|
-
type: import("vue").PropType<LayoutItem>;
|
103
|
-
};
|
104
|
-
block: {
|
105
|
-
type: import("vue").PropType<Block>;
|
106
|
-
} & {
|
107
|
-
type: import("vue").PropType<Block>;
|
40
|
+
renderContext: {
|
41
|
+
type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
|
108
42
|
};
|
109
43
|
}>> & {
|
110
44
|
onBlockInstanceCreated?: (blockInstance: any) => any;
|
@@ -115,33 +49,11 @@ declare const _default: {
|
|
115
49
|
__isTeleport?: never;
|
116
50
|
__isSuspense?: never;
|
117
51
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
118
|
-
"
|
119
|
-
type: import("vue").PropType<
|
120
|
-
};
|
121
|
-
themeTargetId: {
|
122
|
-
type: import("vue").PropType<string>;
|
123
|
-
};
|
124
|
-
"use-click-protection": {
|
125
|
-
type: import("vue").PropType<boolean>;
|
126
|
-
};
|
127
|
-
useClickProtection: {
|
128
|
-
type: import("vue").PropType<boolean>;
|
129
|
-
};
|
130
|
-
settings: {
|
131
|
-
type: import("vue").PropType<SectionSettings>;
|
132
|
-
} & {
|
133
|
-
type: import("vue").PropType<SectionSettings>;
|
134
|
-
};
|
135
|
-
"parent-container": {
|
136
|
-
type: import("vue").PropType<LayoutItem>;
|
137
|
-
};
|
138
|
-
parentContainer: {
|
139
|
-
type: import("vue").PropType<LayoutItem>;
|
52
|
+
"render-context": {
|
53
|
+
type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
|
140
54
|
};
|
141
|
-
|
142
|
-
type: import("vue").PropType<Block
|
143
|
-
} & {
|
144
|
-
type: import("vue").PropType<Block>;
|
55
|
+
renderContext: {
|
56
|
+
type: import("vue").PropType<RenderContext<Block, SectionSettings>>;
|
145
57
|
};
|
146
58
|
}>> & {
|
147
59
|
onBlockInstanceCreated?: (blockInstance: any) => any;
|
@@ -153,14 +65,8 @@ declare const _default: {
|
|
153
65
|
blockInstanceCacheKeyUpdated: (blockInstance: any) => any;
|
154
66
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
155
67
|
propsDefinition: Omit<Readonly<{} & {
|
156
|
-
|
157
|
-
|
158
|
-
settings?: SectionSettings;
|
159
|
-
parentContainer?: LayoutItem;
|
160
|
-
"parent-container"?: LayoutItem;
|
161
|
-
useClickProtection?: boolean;
|
162
|
-
"use-click-protection"?: boolean;
|
163
|
-
"theme-target-id"?: string;
|
68
|
+
renderContext?: RenderContext<Block, SectionSettings>;
|
69
|
+
"render-context"?: RenderContext<Block, SectionSettings>;
|
164
70
|
}>, "onBlockInstanceCreated" | "onGetBlock" | "onBlockInstanceCacheKeyUpdated"> & {
|
165
71
|
onBlockInstanceCreated?: (blockInstance: any) => any;
|
166
72
|
onGetBlock?: (ref: any) => any;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColumnedSectionItemSettings, SectionSettings, SectionItem } from "../../../../models";
|
1
|
+
import { ColumnedSectionItemSettings, SectionSettings, SectionItem, RenderContext } from "../../../../models";
|
2
2
|
import { VueComponentBaseProps } from "../../../VueComponentBase";
|
3
3
|
export interface ColumnRendererProps extends VueComponentBaseProps {
|
4
4
|
column: SectionItem<ColumnedSectionItemSettings>;
|
@@ -8,62 +8,18 @@ export interface ColumnRendererProps extends VueComponentBaseProps {
|
|
8
8
|
}
|
9
9
|
declare const _default: {
|
10
10
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
11
|
-
"
|
12
|
-
type: import("vue").PropType<
|
11
|
+
"render-context": {
|
12
|
+
type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
|
13
13
|
};
|
14
|
-
|
15
|
-
type: import("vue").PropType<
|
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
|
-
settings: {
|
30
|
-
type: import("vue").PropType<SectionSettings>;
|
31
|
-
} & {
|
32
|
-
type: import("vue").PropType<SectionSettings>;
|
33
|
-
};
|
34
|
-
column: {
|
35
|
-
type: import("vue").PropType<SectionItem<ColumnedSectionItemSettings>>;
|
36
|
-
} & {
|
37
|
-
type: import("vue").PropType<SectionItem<ColumnedSectionItemSettings>>;
|
14
|
+
renderContext: {
|
15
|
+
type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
|
38
16
|
};
|
39
17
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
40
|
-
"
|
41
|
-
type: import("vue").PropType<
|
42
|
-
};
|
43
|
-
themeTargetId: {
|
44
|
-
type: import("vue").PropType<string>;
|
45
|
-
};
|
46
|
-
"use-scroll-marging-fix": {
|
47
|
-
type: import("vue").PropType<boolean>;
|
48
|
-
};
|
49
|
-
useScrollMargingFix: {
|
50
|
-
type: import("vue").PropType<boolean>;
|
51
|
-
};
|
52
|
-
"layout-id": {
|
53
|
-
type: import("vue").PropType<string>;
|
54
|
-
};
|
55
|
-
layoutId: {
|
56
|
-
type: import("vue").PropType<string>;
|
57
|
-
};
|
58
|
-
settings: {
|
59
|
-
type: import("vue").PropType<SectionSettings>;
|
60
|
-
} & {
|
61
|
-
type: import("vue").PropType<SectionSettings>;
|
18
|
+
"render-context": {
|
19
|
+
type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
|
62
20
|
};
|
63
|
-
|
64
|
-
type: import("vue").PropType<SectionItem<ColumnedSectionItemSettings>>;
|
65
|
-
} & {
|
66
|
-
type: import("vue").PropType<SectionItem<ColumnedSectionItemSettings>>;
|
21
|
+
renderContext: {
|
22
|
+
type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
|
67
23
|
};
|
68
24
|
}>>, {}, true, {}, {}, {
|
69
25
|
P: {};
|
@@ -73,77 +29,27 @@ declare const _default: {
|
|
73
29
|
M: {};
|
74
30
|
Defaults: {};
|
75
31
|
}, Readonly<import("vue").ExtractPropTypes<{
|
76
|
-
"
|
77
|
-
type: import("vue").PropType<
|
32
|
+
"render-context": {
|
33
|
+
type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
|
78
34
|
};
|
79
|
-
|
80
|
-
type: import("vue").PropType<
|
81
|
-
};
|
82
|
-
"use-scroll-marging-fix": {
|
83
|
-
type: import("vue").PropType<boolean>;
|
84
|
-
};
|
85
|
-
useScrollMargingFix: {
|
86
|
-
type: import("vue").PropType<boolean>;
|
87
|
-
};
|
88
|
-
"layout-id": {
|
89
|
-
type: import("vue").PropType<string>;
|
90
|
-
};
|
91
|
-
layoutId: {
|
92
|
-
type: import("vue").PropType<string>;
|
93
|
-
};
|
94
|
-
settings: {
|
95
|
-
type: import("vue").PropType<SectionSettings>;
|
96
|
-
} & {
|
97
|
-
type: import("vue").PropType<SectionSettings>;
|
98
|
-
};
|
99
|
-
column: {
|
100
|
-
type: import("vue").PropType<SectionItem<ColumnedSectionItemSettings>>;
|
101
|
-
} & {
|
102
|
-
type: import("vue").PropType<SectionItem<ColumnedSectionItemSettings>>;
|
35
|
+
renderContext: {
|
36
|
+
type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
|
103
37
|
};
|
104
38
|
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
105
39
|
__isFragment?: never;
|
106
40
|
__isTeleport?: never;
|
107
41
|
__isSuspense?: never;
|
108
42
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
109
|
-
"
|
110
|
-
type: import("vue").PropType<
|
111
|
-
};
|
112
|
-
themeTargetId: {
|
113
|
-
type: import("vue").PropType<string>;
|
114
|
-
};
|
115
|
-
"use-scroll-marging-fix": {
|
116
|
-
type: import("vue").PropType<boolean>;
|
117
|
-
};
|
118
|
-
useScrollMargingFix: {
|
119
|
-
type: import("vue").PropType<boolean>;
|
120
|
-
};
|
121
|
-
"layout-id": {
|
122
|
-
type: import("vue").PropType<string>;
|
123
|
-
};
|
124
|
-
layoutId: {
|
125
|
-
type: import("vue").PropType<string>;
|
126
|
-
};
|
127
|
-
settings: {
|
128
|
-
type: import("vue").PropType<SectionSettings>;
|
129
|
-
} & {
|
130
|
-
type: import("vue").PropType<SectionSettings>;
|
43
|
+
"render-context": {
|
44
|
+
type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
|
131
45
|
};
|
132
|
-
|
133
|
-
type: import("vue").PropType<SectionItem<ColumnedSectionItemSettings>>;
|
134
|
-
} & {
|
135
|
-
type: import("vue").PropType<SectionItem<ColumnedSectionItemSettings>>;
|
46
|
+
renderContext: {
|
47
|
+
type: import("vue").PropType<RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>>;
|
136
48
|
};
|
137
49
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
138
50
|
propsDefinition: Omit<Readonly<{} & {
|
139
|
-
|
140
|
-
|
141
|
-
settings?: SectionSettings;
|
142
|
-
"theme-target-id"?: string;
|
143
|
-
layoutId?: string;
|
144
|
-
"layout-id"?: string;
|
145
|
-
useScrollMargingFix?: boolean;
|
146
|
-
"use-scroll-marging-fix"?: boolean;
|
51
|
+
renderContext?: RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>;
|
52
|
+
"render-context"?: RenderContext<SectionItem<ColumnedSectionItemSettings>, SectionSettings>;
|
147
53
|
}>, never>;
|
148
54
|
};
|
149
55
|
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { LayoutItem, Section, SectionSettings } from "../../../../models";
|
1
|
+
import { LayoutItem, Section, SectionSettings, RenderContext } from "../../../../models";
|
2
2
|
import { VueComponentBaseProps } from "../../../VueComponentBase";
|
3
3
|
export interface LayoutSectionRendererProps extends VueComponentBaseProps {
|
4
4
|
parentContainer: LayoutItem;
|
@@ -8,64 +8,18 @@ export interface LayoutSectionRendererProps extends VueComponentBaseProps {
|
|
8
8
|
}
|
9
9
|
declare const _default: {
|
10
10
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
11
|
-
"
|
12
|
-
type: import("vue").PropType<
|
11
|
+
"render-context": {
|
12
|
+
type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
|
13
13
|
};
|
14
|
-
|
15
|
-
type: import("vue").PropType<
|
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
|
-
"parent-container": {
|
30
|
-
type: import("vue").PropType<LayoutItem>;
|
31
|
-
};
|
32
|
-
parentContainer: {
|
33
|
-
type: import("vue").PropType<LayoutItem>;
|
34
|
-
};
|
35
|
-
section: {
|
36
|
-
type: import("vue").PropType<Section<SectionSettings>>;
|
37
|
-
} & {
|
38
|
-
type: import("vue").PropType<Section<SectionSettings>>;
|
14
|
+
renderContext: {
|
15
|
+
type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
|
39
16
|
};
|
40
17
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
41
|
-
"
|
42
|
-
type: import("vue").PropType<
|
43
|
-
};
|
44
|
-
themeTargetId: {
|
45
|
-
type: import("vue").PropType<string>;
|
46
|
-
};
|
47
|
-
"use-scroll-marging-fix": {
|
48
|
-
type: import("vue").PropType<boolean>;
|
49
|
-
};
|
50
|
-
useScrollMargingFix: {
|
51
|
-
type: import("vue").PropType<boolean>;
|
52
|
-
};
|
53
|
-
"layout-id": {
|
54
|
-
type: import("vue").PropType<string>;
|
55
|
-
};
|
56
|
-
layoutId: {
|
57
|
-
type: import("vue").PropType<string>;
|
58
|
-
};
|
59
|
-
"parent-container": {
|
60
|
-
type: import("vue").PropType<LayoutItem>;
|
61
|
-
};
|
62
|
-
parentContainer: {
|
63
|
-
type: import("vue").PropType<LayoutItem>;
|
18
|
+
"render-context": {
|
19
|
+
type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
|
64
20
|
};
|
65
|
-
|
66
|
-
type: import("vue").PropType<Section<SectionSettings>>;
|
67
|
-
} & {
|
68
|
-
type: import("vue").PropType<Section<SectionSettings>>;
|
21
|
+
renderContext: {
|
22
|
+
type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
|
69
23
|
};
|
70
24
|
}>>, {}, true, {}, {}, {
|
71
25
|
P: {};
|
@@ -75,80 +29,27 @@ declare const _default: {
|
|
75
29
|
M: {};
|
76
30
|
Defaults: {};
|
77
31
|
}, Readonly<import("vue").ExtractPropTypes<{
|
78
|
-
"
|
79
|
-
type: import("vue").PropType<
|
32
|
+
"render-context": {
|
33
|
+
type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
|
80
34
|
};
|
81
|
-
|
82
|
-
type: import("vue").PropType<
|
83
|
-
};
|
84
|
-
"use-scroll-marging-fix": {
|
85
|
-
type: import("vue").PropType<boolean>;
|
86
|
-
};
|
87
|
-
useScrollMargingFix: {
|
88
|
-
type: import("vue").PropType<boolean>;
|
89
|
-
};
|
90
|
-
"layout-id": {
|
91
|
-
type: import("vue").PropType<string>;
|
92
|
-
};
|
93
|
-
layoutId: {
|
94
|
-
type: import("vue").PropType<string>;
|
95
|
-
};
|
96
|
-
"parent-container": {
|
97
|
-
type: import("vue").PropType<LayoutItem>;
|
98
|
-
};
|
99
|
-
parentContainer: {
|
100
|
-
type: import("vue").PropType<LayoutItem>;
|
101
|
-
};
|
102
|
-
section: {
|
103
|
-
type: import("vue").PropType<Section<SectionSettings>>;
|
104
|
-
} & {
|
105
|
-
type: import("vue").PropType<Section<SectionSettings>>;
|
35
|
+
renderContext: {
|
36
|
+
type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
|
106
37
|
};
|
107
38
|
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
108
39
|
__isFragment?: never;
|
109
40
|
__isTeleport?: never;
|
110
41
|
__isSuspense?: never;
|
111
42
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
112
|
-
"
|
113
|
-
type: import("vue").PropType<
|
114
|
-
};
|
115
|
-
themeTargetId: {
|
116
|
-
type: import("vue").PropType<string>;
|
117
|
-
};
|
118
|
-
"use-scroll-marging-fix": {
|
119
|
-
type: import("vue").PropType<boolean>;
|
120
|
-
};
|
121
|
-
useScrollMargingFix: {
|
122
|
-
type: import("vue").PropType<boolean>;
|
123
|
-
};
|
124
|
-
"layout-id": {
|
125
|
-
type: import("vue").PropType<string>;
|
126
|
-
};
|
127
|
-
layoutId: {
|
128
|
-
type: import("vue").PropType<string>;
|
129
|
-
};
|
130
|
-
"parent-container": {
|
131
|
-
type: import("vue").PropType<LayoutItem>;
|
132
|
-
};
|
133
|
-
parentContainer: {
|
134
|
-
type: import("vue").PropType<LayoutItem>;
|
43
|
+
"render-context": {
|
44
|
+
type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
|
135
45
|
};
|
136
|
-
|
137
|
-
type: import("vue").PropType<Section<SectionSettings>>;
|
138
|
-
} & {
|
139
|
-
type: import("vue").PropType<Section<SectionSettings>>;
|
46
|
+
renderContext: {
|
47
|
+
type: import("vue").PropType<RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
|
140
48
|
};
|
141
49
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
142
50
|
propsDefinition: Omit<Readonly<{} & {
|
143
|
-
|
144
|
-
|
145
|
-
parentContainer?: LayoutItem;
|
146
|
-
"parent-container"?: LayoutItem;
|
147
|
-
"theme-target-id"?: string;
|
148
|
-
layoutId?: string;
|
149
|
-
"layout-id"?: string;
|
150
|
-
useScrollMargingFix?: boolean;
|
151
|
-
"use-scroll-marging-fix"?: boolean;
|
51
|
+
renderContext?: RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>;
|
52
|
+
"render-context"?: RenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>;
|
152
53
|
}>, never>;
|
153
54
|
};
|
154
55
|
export default _default;
|
@@ -117,10 +117,10 @@ declare const _default: {
|
|
117
117
|
propsDefinition: Omit<Readonly<{} & {
|
118
118
|
section?: Section<StepperSectionSettings>;
|
119
119
|
themeTargetId?: string;
|
120
|
-
"theme-target-id"?: string;
|
121
120
|
layoutId?: string;
|
122
|
-
"layout-id"?: string;
|
123
121
|
useScrollMargingFix?: boolean;
|
122
|
+
"theme-target-id"?: string;
|
123
|
+
"layout-id"?: string;
|
124
124
|
"use-scroll-marging-fix"?: boolean;
|
125
125
|
}>, never>;
|
126
126
|
};
|
@@ -111,10 +111,10 @@ declare const _default: {
|
|
111
111
|
propsDefinition: Omit<Readonly<{} & {
|
112
112
|
section?: Section<import("@omnia/fx-models").SectionSettings>;
|
113
113
|
themeTargetId?: string;
|
114
|
-
"theme-target-id"?: string;
|
115
114
|
layoutId?: string;
|
116
|
-
"layout-id"?: string;
|
117
115
|
useScrollMargingFix?: boolean;
|
116
|
+
"theme-target-id"?: string;
|
117
|
+
"layout-id"?: string;
|
118
118
|
"use-scroll-marging-fix"?: boolean;
|
119
119
|
}>, never>;
|
120
120
|
};
|
@@ -158,10 +158,10 @@ declare const _default: {
|
|
158
158
|
step?: SectionItem<SteppedSectionItemSettings>;
|
159
159
|
designRender?: boolean;
|
160
160
|
"design-render"?: boolean;
|
161
|
-
"theme-target-id"?: string;
|
162
161
|
layoutId?: string;
|
163
|
-
"layout-id"?: string;
|
164
162
|
useScrollMargingFix?: boolean;
|
163
|
+
"theme-target-id"?: string;
|
164
|
+
"layout-id"?: string;
|
165
165
|
"use-scroll-marging-fix"?: boolean;
|
166
166
|
}>, never>;
|
167
167
|
};
|
@@ -158,10 +158,10 @@ declare const _default: {
|
|
158
158
|
settings?: SectionSettings;
|
159
159
|
designRender?: boolean;
|
160
160
|
"design-render"?: boolean;
|
161
|
-
"theme-target-id"?: string;
|
162
161
|
layoutId?: string;
|
163
|
-
"layout-id"?: string;
|
164
162
|
useScrollMargingFix?: boolean;
|
163
|
+
"theme-target-id"?: string;
|
164
|
+
"layout-id"?: string;
|
165
165
|
"use-scroll-marging-fix"?: boolean;
|
166
166
|
}>, never>;
|
167
167
|
};
|
@@ -187,9 +187,9 @@ declare const _default: {
|
|
187
187
|
margin?: SpacingSettings | SpacingType;
|
188
188
|
padding?: SpacingSettings | SpacingType;
|
189
189
|
filled?: boolean;
|
190
|
+
alignY?: "center" | "bottom" | "top";
|
190
191
|
grow?: number;
|
191
192
|
toned?: boolean;
|
192
|
-
alignY?: "center" | "bottom" | "top";
|
193
193
|
}>, never>;
|
194
194
|
};
|
195
195
|
export default _default;
|