Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extension Manifest Map: Markdown Editor Action #2369

Merged
merged 4 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/packages/core/extension-registry/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import type { ManifestUfmFilter } from './ufm-filter.model.js';
import type { ManifestUserProfileApp } from './user-profile-app.model.js';
import type { ManifestGranularUserPermission } from './user-granular-permission.model.js';
import type { ManifestMfaLoginProvider } from './mfa-login-provider.model.js';
import type { ManifestMonacoMarkdownEditorAction } from './monaco-markdown-editor-action.model.js';
import type { ManifestBase, ManifestBundle, ManifestCondition } from '@umbraco-cms/backoffice/extension-api';

export type * from './auth-provider.model.js';
Expand All @@ -18,11 +17,6 @@ export type * from './dynamic-root.model.js';
export type * from './file-upload-preview.model.js';
export type * from './external-login-provider.model.js';
export type * from './mfa-login-provider.model.js';
export type * from './monaco-markdown-editor-action.model.js';
export type * from './mfa-login-provider.model.js';
export type * from './monaco-markdown-editor-action.model.js';
export type * from './mfa-login-provider.model.js';
export type * from './monaco-markdown-editor-action.model.js';
export type * from './tinymce-plugin.model.js';
export type * from './ufm-component.model.js';
export type * from './ufm-filter.model.js';
Expand All @@ -41,7 +35,6 @@ export type ManifestTypes =
| ManifestExternalLoginProvider
| ManifestGranularUserPermission
| ManifestMfaLoginProvider
| ManifestMonacoMarkdownEditorAction
| ManifestTinyMcePlugin
| ManifestUfmComponent
| ManifestUfmFilter
Expand Down
1 change: 1 addition & 0 deletions src/packages/markdown-editor/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from './components/index.js';
export * from './monaco-markdown-editor-action.extension.js';
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ export interface ManifestMonacoMarkdownEditorAction extends ManifestApi<any> {
}

export type MetaMonacoMarkdownEditorAction = object;

declare global {
interface UmbExtensionManifestMap {
umbMonacoMarkdownEditorAction: ManifestMonacoMarkdownEditorAction;
}
}
Loading