@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 CHANGED
@@ -201,6 +201,7 @@ export declare const Constants: {
201
201
  builtInIdentityProviderIds: {
202
202
  azureAd: Guid;
203
203
  omnia: Guid;
204
+ ldap: Guid;
204
205
  };
205
206
  builtInGroupTypeIds: {
206
207
  unknown: Guid;
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 OnSectionRenderedHookResult {
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
- hooks?: RenderContextHooks;
125
+ useEditorHooks?: boolean;
133
126
  parentContainer?: LayoutItem;
134
127
  item?: TItemType;
135
128
  layoutId?: string;
136
129
  settings?: TSettings;
137
- useScrollMargingFix?: boolean;
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.70-dev",
4
+ "version": "8.0.71-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"