add kind types
This commit is contained in:
@@ -15,10 +15,9 @@ export const manifest: UmbBackofficeManifestKind = {
|
||||
forEntityTypes: [],
|
||||
meta: {
|
||||
icon: 'icon-height',
|
||||
label: 'Sort (TBD)...',
|
||||
label: 'Sort...',
|
||||
itemRepositoryAlias: '',
|
||||
moveRepositoryAlias: '',
|
||||
pickerModal: '',
|
||||
sortRepositoryAlias: '',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
@@ -130,3 +130,14 @@ export interface ManifestEntityActionDeleteFolderKind extends ManifestEntityActi
|
||||
export interface MetaEntityActionFolderKind extends MetaEntityActionDefaultKind {
|
||||
folderRepositoryAlias: string;
|
||||
}
|
||||
|
||||
// SORT
|
||||
export interface ManifestEntityActionSortKind extends ManifestEntityAction<MetaEntityActionSortKind> {
|
||||
type: 'entityAction';
|
||||
kind: 'sort';
|
||||
}
|
||||
|
||||
export interface MetaEntityActionSortKind extends MetaEntityActionDefaultKind {
|
||||
itemRepositoryAlias: string;
|
||||
sortRepositoryAlias: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user