Skip to content

Commit

Permalink
Merge pull request #17174 from ckeditor/cc/6576a
Browse files Browse the repository at this point in the history
Other (link, image, clipboard): Exported several classes and utilities from various packages.
  • Loading branch information
oleq authored Oct 1, 2024
2 parents ae4fce5 + 7333dbe commit 84914c1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
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';

0 comments on commit 84914c1

Please sign in to comment.