@omnia/fx-models 7.9.16-preview → 7.9.17-preview
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.
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { IconPickerModel } from "../Exposes";
|
|
1
|
+
import { BlockRegistration, BlockTemplate, BlockTemplateView, CustomRegistration, IconPickerModel } from "../Exposes";
|
|
2
2
|
import { BlockGalleryHeader } from "./Header";
|
|
3
3
|
export interface BlockGallerySetting {
|
|
4
4
|
headers: Array<BlockGalleryHeader>;
|
|
5
5
|
orderedItems: Array<BlockGalleryItem>;
|
|
6
|
+
enabled: boolean;
|
|
6
7
|
}
|
|
7
8
|
export declare const BlockGallerySettingsKey = "$omnia_block_gallery_settings$";
|
|
8
9
|
export interface BlockGalleryItem {
|
|
@@ -13,6 +14,7 @@ export interface BlockGalleryItemView extends BlockGalleryItem {
|
|
|
13
14
|
title: string;
|
|
14
15
|
icon?: string;
|
|
15
16
|
iconPicker?: IconPickerModel;
|
|
17
|
+
item: CustomRegistration | BlockRegistration | BlockGalleryHeader | BlockTemplate | BlockTemplateView;
|
|
16
18
|
}
|
|
17
19
|
export declare enum BlockGalleryItemType {
|
|
18
20
|
CustomRegistration = 1,
|
package/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PrincipalTypes } from "@omnia/fx-models";
|
|
1
2
|
import { Guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
|
2
3
|
import { LockStatusExcludeChildren, PropertyLockStatusType } from "../../../ux";
|
|
3
4
|
import { PropertyDefinition, PropertyDisplaySettingsBase } from "../PropertyDefinition";
|
|
@@ -12,6 +13,8 @@ export type IdentityPropertyEditorSettings = {
|
|
|
12
13
|
locks?: PropertyLockStatusType<Omit<IdentityPropertyEditorSettings, "locks">>;
|
|
13
14
|
required?: boolean;
|
|
14
15
|
multiple?: boolean;
|
|
16
|
+
hideDynamicGroupSelection?: boolean;
|
|
17
|
+
type?: PrincipalTypes;
|
|
15
18
|
};
|
|
16
19
|
export declare const identityPropertyDefinitionId: Guid;
|
|
17
20
|
export declare class IdentityPropertyDefinition extends PropertyDefinition<IdentityPropertyValue, IdentityPropertyDisplaySettings, IdentityPropertyEditorSettings> {
|