move color picker schema
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
import { manifest as blockGrid } from './Umbraco.BlockGrid.js';
|
||||
import { manifest as blockList } from './Umbraco.BlockList.js';
|
||||
import { manifest as colorPicker } from './Umbraco.ColorPicker.js';
|
||||
import { manifest as contentPicker } from './Umbraco.ContentPicker.js';
|
||||
import { manifest as dateTime } from './Umbraco.DateTime.js';
|
||||
import { manifest as decimal } from './Umbraco.Decimal.js';
|
||||
@@ -33,7 +32,6 @@ import type { ManifestPropertyEditorSchema } from '@umbraco-cms/backoffice/exten
|
||||
export const manifests: Array<ManifestPropertyEditorSchema> = [
|
||||
blockGrid,
|
||||
blockList,
|
||||
colorPicker,
|
||||
contentPicker,
|
||||
dateTime,
|
||||
decimal,
|
||||
|
||||
@@ -1,14 +1,18 @@
|
||||
import type { ManifestPropertyEditorUi } from '@umbraco-cms/backoffice/extension-registry';
|
||||
import { manifest as schemaManifest } from './Umbraco.ColorPicker.js';
|
||||
import type { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry';
|
||||
|
||||
export const manifest: ManifestPropertyEditorUi = {
|
||||
type: 'propertyEditorUi',
|
||||
alias: 'Umb.PropertyEditorUi.ColorPicker',
|
||||
name: 'Color Picker Property Editor UI',
|
||||
element: () => import('./property-editor-ui-color-picker.element.js'),
|
||||
meta: {
|
||||
label: 'Color Picker',
|
||||
propertyEditorSchemaAlias: 'Umbraco.ColorPicker',
|
||||
icon: 'icon-colorpicker',
|
||||
group: 'pickers',
|
||||
export const manifests: Array<ManifestTypes> = [
|
||||
{
|
||||
type: 'propertyEditorUi',
|
||||
alias: 'Umb.PropertyEditorUi.ColorPicker',
|
||||
name: 'Color Picker Property Editor UI',
|
||||
element: () => import('./property-editor-ui-color-picker.element.js'),
|
||||
meta: {
|
||||
label: 'Color Picker',
|
||||
propertyEditorSchemaAlias: 'Umbraco.ColorPicker',
|
||||
icon: 'icon-colorpicker',
|
||||
group: 'pickers',
|
||||
},
|
||||
},
|
||||
};
|
||||
schemaManifest,
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user