From 42001f77e84f5d453e81cbcc3ebf69972a90ad8d Mon Sep 17 00:00:00 2001 From: Marek Lewandowski Date: Mon, 22 May 2023 16:44:57 +0200 Subject: [PATCH] Merge pull request #14208 from ckeditor/ck/14205 Fix (ui): Fixed way how code exports the `colorPaletteIcon` icon, which could result with a broken build. Closes #14205. --- packages/ckeditor5-ui/src/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/ckeditor5-ui/src/index.ts b/packages/ckeditor5-ui/src/index.ts index f6d3f9ced24..b6f602bb69f 100644 --- a/packages/ckeditor5-ui/src/index.ts +++ b/packages/ckeditor5-ui/src/index.ts @@ -75,6 +75,10 @@ export { default as BlockToolbar } from './toolbar/block/blocktoolbar'; export { default as View, type UIViewRenderEvent } from './view'; export { default as ViewCollection } from './viewcollection'; -export { default as ColorPaletteIcon } from '../theme/icons/color-palette.svg'; +import { default as colorPaletteIcon } from '../theme/icons/color-palette.svg'; + +export const icons = { + colorPaletteIcon +}; import './augmentation';