move icon picker manifest
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import type { ManifestPropertyEditorUI } from '@umbraco-cms/models';
|
||||
|
||||
export const manifest: ManifestPropertyEditorUI = {
|
||||
type: 'propertyEditorUI',
|
||||
alias: 'Umb.PropertyEditorUI.IconPicker',
|
||||
name: 'Icon Picker Property Editor UI',
|
||||
loader: () => import('./property-editor-ui-icon-picker.element'),
|
||||
meta: {
|
||||
label: 'Icon Picker',
|
||||
propertyEditorModel: 'Umbraco.JSON',
|
||||
icon: 'umb:autofill',
|
||||
group: 'common',
|
||||
},
|
||||
};
|
||||
@@ -25,6 +25,7 @@ import { manifests as blockGrid } from './block-grid/manifests';
|
||||
import { manifest as orderDirection } from './order-direction/manifests';
|
||||
import { manifests as collectionView } from './collection-view/manifests';
|
||||
import { manifests as tinyMCE } from './tiny-mce/manifests';
|
||||
import { manifest as iconPicker } from './icon-picker/manifests';
|
||||
import type { ManifestPropertyEditorUI } from '@umbraco-cms/models';
|
||||
|
||||
export const manifests: Array<ManifestPropertyEditorUI> = [
|
||||
@@ -49,6 +50,7 @@ export const manifests: Array<ManifestPropertyEditorUI> = [
|
||||
imageCropper,
|
||||
uploadField,
|
||||
orderDirection,
|
||||
iconPicker,
|
||||
...textBoxes,
|
||||
...treePicker,
|
||||
...blockList,
|
||||
@@ -67,16 +69,4 @@ export const manifests: Array<ManifestPropertyEditorUI> = [
|
||||
propertyEditorModel: 'Umbraco.Integer',
|
||||
},
|
||||
},
|
||||
{
|
||||
type: 'propertyEditorUI',
|
||||
alias: 'Umb.PropertyEditorUI.IconPicker',
|
||||
name: 'Icon Picker Property Editor UI',
|
||||
loader: () => import('./icon-picker/property-editor-ui-icon-picker.element'),
|
||||
meta: {
|
||||
label: 'Icon Picker',
|
||||
propertyEditorModel: 'Umbraco.IconPicker',
|
||||
icon: 'umb:document',
|
||||
group: 'common',
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user