Skip to content

Commit

Permalink
Merge pull request #17784 from ckeditor/ck/17783-missing-exports
Browse files Browse the repository at this point in the history
Other (font): Export ColorSelectorDropdownView type. Closes #17783.

Other (ui): Export DocumentColorCollection class. Closes #17783.

Other (engine): Export SchemaCompiledItemDefinition type. Closes #17783.

Other (utils): Export add function. Closes #17783.
  • Loading branch information
mmotyczynska authored Jan 20, 2025
2 parents bcf775f + fb693e1 commit 2877d4b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/ckeditor5-engine/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ export type {
SchemaChildCheckCallback,
AttributeProperties,
SchemaItemDefinition,
SchemaCompiledItemDefinition,
SchemaContext,
SchemaContextDefinition
} from './model/schema.js';
Expand Down
3 changes: 2 additions & 1 deletion packages/ckeditor5-font/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export type {
FONT_BACKGROUND_COLOR,
FONT_COLOR,
FONT_FAMILY,
FONT_SIZE
FONT_SIZE,
ColorSelectorDropdownView
} from './utils.js';

export type {
Expand Down
2 changes: 2 additions & 0 deletions packages/ckeditor5-ui/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ export {
type ColorSelectorColorPickerShowEvent
} from './colorselector/colorselectorview.js';

export { default as DocumentColorCollection } from './colorselector/documentcolorcollection.js';

export { default as ComponentFactory } from './componentfactory.js';

export { default as Dialog } from './dialog/dialog.js';
Expand Down
1 change: 1 addition & 0 deletions packages/ckeditor5-utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export { default as FocusTracker, type ViewWithFocusTracker, isViewWithFocusTrac
export { default as KeystrokeHandler, type KeystrokeHandlerOptions } from './keystrokehandler.js';
export { default as toArray, type ArrayOrItem, type ReadonlyArrayOrItem } from './toarray.js';
export { default as toMap } from './tomap.js';
export { add } from './translation-service.js';
export { default as priorities, type PriorityString } from './priorities.js';
export { default as retry, exponentialDelay } from './retry.js';
export { default as insertToPriorityArray } from './inserttopriorityarray.js';
Expand Down

0 comments on commit 2877d4b

Please sign in to comment.