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

Exported several classes and utilities from various packages #17174

Merged
merged 2 commits into from
Oct 1, 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
2 changes: 2 additions & 0 deletions packages/ckeditor5-clipboard/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ export {
type ClipboardMarkerConfiguration
} from './clipboardmarkersutils.js';

export { default as plainTextToHtml } from './utils/plaintexttohtml.js';

export type {
ClipboardEventData
} from './clipboardobserver.js';
Expand Down
2 changes: 2 additions & 0 deletions packages/ckeditor5-image/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ export { default as ImageUtils } from './imageutils.js';
export { default as ImageBlockEditing } from './image/imageblockediting.js';
export { default as ImageCaptionUI } from './imagecaption/imagecaptionui.js';

export { createImageTypeRegExp } from './imageupload/utils.js';

export type { ImageConfig } from './imageconfig.js';
export type { default as ImageTypeCommand } from './image/imagetypecommand.js';
export type { default as InsertImageCommand } from './image/insertimagecommand.js';
Expand Down
8 changes: 6 additions & 2 deletions packages/ckeditor5-link/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@ export { default as LinkImage } from './linkimage.js';
export { default as LinkImageEditing } from './linkimageediting.js';
export { default as LinkImageUI } from './linkimageui.js';
export { default as AutoLink } from './autolink.js';

export type { LinkConfig, LinkDecoratorDefinition } from './linkconfig.js';
export { default as LinkActionsView } from './ui/linkactionsview.js';
export { default as LinkFormView } from './ui/linkformview.js';
export { default as LinkCommand } from './linkcommand.js';
export { default as UnlinkCommand } from './unlinkcommand.js';

export { addLinkProtocolIfApplicable, isLinkableElement } from './utils.js';

export type { LinkConfig, LinkDecoratorDefinition } from './linkconfig.js';

import './augmentation.js';