File tree Expand file tree Collapse file tree 4 files changed +18
-21
lines changed Expand file tree Collapse file tree 4 files changed +18
-21
lines changed Original file line number Diff line number Diff line change 1
- import { manifests as tinyMcePluginManifests } from './tiny-mce-plugin/manifests.js' ;
2
1
import { manifests as workspaceManifests } from './workspace/manifests.js' ;
3
2
4
- export const manifests : Array < UmbExtensionManifest > = [ ... tinyMcePluginManifests , ... workspaceManifests ] ;
3
+ export const manifests : Array < UmbExtensionManifest > = workspaceManifests ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -46,4 +46,19 @@ export const manifests: Array<ManifestTinyMcePlugin> = [
46
46
] ,
47
47
} ,
48
48
} ,
49
+ {
50
+ type : 'tinyMcePlugin' ,
51
+ alias : 'Umb.TinyMcePlugin.BlockPicker' ,
52
+ name : 'Block Picker TinyMCE Plugin' ,
53
+ js : ( ) => import ( './tiny-mce-block-picker.plugin.js' ) ,
54
+ meta : {
55
+ toolbar : [
56
+ {
57
+ alias : 'umbblockpicker' ,
58
+ label : '#blockEditor_insertBlock' ,
59
+ icon : 'visualblocks' ,
60
+ } ,
61
+ ] ,
62
+ } ,
63
+ } ,
49
64
] ;
Original file line number Diff line number Diff line change 1
- import { UMB_BLOCK_RTE_MANAGER_CONTEXT } from '../context/block-rte-manager.context-token.js' ;
2
- import { UMB_BLOCK_RTE_ENTRIES_CONTEXT } from '../context/block-rte-entries.context-token.js' ;
1
+ import { UMB_BLOCK_RTE_MANAGER_CONTEXT } from '../../block/block-rte/ context/block-rte-manager.context-token.js' ;
2
+ import { UMB_BLOCK_RTE_ENTRIES_CONTEXT } from '../../block/block-rte/ context/block-rte-entries.context-token.js' ;
3
3
import { type TinyMcePluginArguments , UmbTinyMcePluginBase } from '@umbraco-cms/backoffice/tiny-mce' ;
4
4
import { UmbLocalizationController } from '@umbraco-cms/backoffice/localization-api' ;
5
5
import type { UmbBlockTypeBaseModel } from '@umbraco-cms/backoffice/block-type' ;
You can’t perform that action at this time.
0 commit comments