tinymce as word

This commit is contained in:
Niels Lyngsø
2023-06-27 12:22:23 +02:00
parent f5067717fc
commit e5e92e43ef
4 changed files with 12 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
"Niels",
"pickable",
"templating",
"tinymce",
"umbraco",
"Uncategorized",
"variantable"

View File

@@ -4,6 +4,7 @@ import type { ManifestDashboardCollection } from './dashboard-collection.model.j
import type { ManifestEntityAction } from './entity-action.model.js';
import type { ManifestEntityBulkAction } from './entity-bulk-action.model.js';
import type { ManifestExternalLoginProvider } from './external-login-provider.model.js';
import type { ManifestGlobalContext } from './global-context.model.js';
import type { ManifestHeaderApp, ManifestHeaderAppButtonKind } from './header-app.model.js';
import type { ManifestHealthCheck } from './health-check.model.js';
import type { ManifestMenu } from './menu.model.js';
@@ -34,6 +35,7 @@ export * from './dashboard.model.js';
export * from './entity-action.model.js';
export * from './entity-bulk-action.model.js';
export * from './external-login-provider.model.js';
export * from './global-context.model.js';
export * from './header-app.model.js';
export * from './health-check.model.js';
export * from './menu-item.model.js';
@@ -66,6 +68,7 @@ export type ManifestTypes =
| ManifestEntityBulkAction
| ManifestEntryPoint
| ManifestExternalLoginProvider
| ManifestGlobalContext
| ManifestHeaderApp
| ManifestHeaderAppButtonKind
| ManifestHealthCheck

View File

@@ -1,6 +1,12 @@
import { ManifestSectionSidebarApp } from '@umbraco-cms/backoffice/extension-registry';
import { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry';
const entityActions: Array<ManifestSectionSidebarApp> = [
const entityActions: Array<ManifestTypes> = [
{
type: 'globalContext',
alias: 'Umb.GlobalContext.AppLanguage',
name: 'App Language Context',
loader: () => import('./app-language.context.js'),
},
{
type: 'sectionSidebarApp',
alias: 'Umb.SectionSidebarItem.LanguageSelect',