@omnia/fx-models 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.
- package/Constants.d.ts +1 -0
- package/Constants.js +2 -1
- package/Layout.d.ts +4 -10
- package/package.json +1 -1
package/Constants.d.ts
CHANGED
package/Constants.js
CHANGED
@@ -235,7 +235,8 @@ exports.Constants = {
|
|
235
235
|
identities: {
|
236
236
|
builtInIdentityProviderIds: {
|
237
237
|
azureAd: new models_1.Guid("bb9f80dd-9dfa-4147-b923-7e2f8e0e7a0c"),
|
238
|
-
omnia: new models_1.Guid("aa000000-0000-aaaa-0000-0000000000aa")
|
238
|
+
omnia: new models_1.Guid("aa000000-0000-aaaa-0000-0000000000aa"),
|
239
|
+
ldap: new models_1.Guid("ab5c4983-1254-44d7-87e9-72021703dfc5") // available in onprem only
|
239
240
|
},
|
240
241
|
builtInGroupTypeIds: {
|
241
242
|
unknown: new models_1.Guid("16486d7d-6e3f-459e-9924-ecb3574345f8"),
|
package/Layout.d.ts
CHANGED
@@ -120,23 +120,17 @@ export declare enum SectionTypes {
|
|
120
120
|
export interface Section<T extends SectionSettings = SectionSettings> extends LayoutItem {
|
121
121
|
settings: T;
|
122
122
|
}
|
123
|
-
export interface
|
124
|
-
cssClass: string;
|
125
|
-
containerRenderer?: JSX.Element;
|
126
|
-
}
|
127
|
-
export interface RenderContextHooks {
|
128
|
-
onSectionRendered?: ((item: Section) => OnSectionRenderedHookResult);
|
129
|
-
}
|
130
|
-
export interface RenderContext<TItemType = LayoutItem, TSettings = LayoutItemSettings> {
|
123
|
+
export interface LayoutEngineRenderContext<TItemType = LayoutItem, TSettings = LayoutItemSettings> {
|
131
124
|
id?: string;
|
132
|
-
|
125
|
+
useEditorHooks?: boolean;
|
133
126
|
parentContainer?: LayoutItem;
|
134
127
|
item?: TItemType;
|
135
128
|
layoutId?: string;
|
136
129
|
settings?: TSettings;
|
137
|
-
|
130
|
+
useScrollMarginFix?: boolean;
|
138
131
|
state?: object;
|
139
132
|
maxWidth?: number;
|
133
|
+
orphaned?: boolean;
|
140
134
|
}
|
141
135
|
export interface SectionSettings extends LayoutItemSettings {
|
142
136
|
type: SectionTypes;
|