* fix: editor is always available * fix: remove deprecated v14 stuff * fix: the block manager should not care about the editor * fix: the block manager should not care about the editor * feat: add new tiptap blockpicker extension * fix: save valid content * fix: disable white-space to conform blocks inside text * fix: set block types back to TinyMCE until migration has been completed * feat: define block content when inserting * feat: make `getLayouts` available on the base class * fix: remove unused parameter * feat: cleanup blocks on change * feat: adds inline blocks * feat: set docs for typings and update the interfaces to match and add setEditor to get the editor instance * feat: set docs for typings and update the interfaces to match and add setEditor to get the editor instance * feat: adds blocks in rte * chore: sonarcloud fix * feat: remove delete button as components can be stripped away directly from the DOM * feat: allow custom views for block-rte and filter the views based on conditions * feat: mark tiptap blocks with an outline when active * feat: export data content udi const * fix: add block-rte to vite's importmap so that tinymce works on the dev server * feat(tinymce): get the value from the event target * feat: allow tinymce to insert blocks by listening to the context * chore: mark styles as readonly * chore: cleanup code * fix: remove two fixed TODO comments * feat: used named capturing group * chore: import correct type in testing file * Removed extra `originData` from Block List manager context * Fixed issues in Tiptap toolbar button * Corrected base class for Tiptap Image extension * Fixed up the RTE package vite config to export the Tiptap classes (for CMS build) --------- Co-authored-by: leekelleher <leekelleher@gmail.com>
24 lines
802 B
HTML
24 lines
802 B
HTML
<!doctype html>
|
|
<html lang="en-us" dir="ltr">
|
|
<head>
|
|
<base href="/" />
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="umbraco/backoffice/assets/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Umbraco</title>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"@umbraco-cms/backoffice/block-rte": "/src/packages/block/block-rte/index.ts"
|
|
}
|
|
}
|
|
</script>
|
|
<script src="node_modules/msw/lib/iife/index.js"></script>
|
|
<link rel="stylesheet" href="node_modules/@umbraco-ui/uui-css/dist/uui-css.css" />
|
|
<link rel="stylesheet" href="src/css/umb-css.css" />
|
|
<script type="module" src="index.ts"></script>
|
|
</head>
|
|
|
|
<body class="uui-font uui-text" style="margin: 0; padding: 0; overflow: hidden"></body>
|
|
</html>
|