Skip to content

Commit

Permalink
block-list
Browse files Browse the repository at this point in the history
  • Loading branch information
nielslyngsoe committed Dec 3, 2024
1 parent c6973e3 commit 53330a0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
export const UMB_BLOCK_LIST_TYPE = 'block-list-type';
export const UMB_BLOCK_LIST = 'block-list';
export * from './property-editors/constants.js';
export * from './context/constants.js';
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export { UMB_BLOCK_LIST_ENTRIES_CONTEXT } from './block-list-entries.context-token.js';
export { UMB_BLOCK_LIST_ENTRY_CONTEXT } from './block-list-entry.context-token.js';
export { UMB_BLOCK_LIST_MANAGER_CONTEXT } from './block-list-manager.context-token.js';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const UMB_BLOCK_LIST_PROPERTY_EDITOR_SCHEMA_ALIAS = 'Umbraco.BlockList';
export const UMB_BLOCK_LIST_PROPERTY_EDITOR_UI_ALIAS = 'Umb.PropertyEditorUi.BlockList';
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import { manifest as blockListSchemaManifest } from './Umbraco.BlockList.js';
import { UMB_BLOCK_LIST_PROPERTY_EDITOR_SCHEMA_ALIAS } from './constants.js';
import { UmbStandardBlockValueResolver } from '@umbraco-cms/backoffice/block';

export const UMB_BLOCK_LIST_PROPERTY_EDITOR_SCHEMA_ALIAS = 'Umbraco.BlockList';
export const UMB_BLOCK_LIST_PROPERTY_EDITOR_UI_ALIAS = 'Umb.PropertyEditorUi.BlockList';

export const manifests: Array<UmbExtensionManifest> = [
{
type: 'propertyEditorUi',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './block-list-editor/constants.js';

0 comments on commit 53330a0

Please sign in to comment.