From d3b4d16e20b60161154fb58018ea7d7ad7fbc39e Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Mon, 23 Sep 2024 11:44:48 +0200 Subject: [PATCH] fix: add missing `printUtils` export --- packages/core/src/index.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 313e62df5f..9157a9caba 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -129,16 +129,19 @@ export { default as StencilShapeRegistry } from './view/geometry/node/StencilSha export * as constants from './util/Constants'; export { default as Guide } from './view/other/Guide'; export { default as Translations } from './util/Translations'; -export * as utils from './util/Utils'; + +export * as cellArrayUtils from './util/cellArrayUtils'; export * as cloneUtils from './util/cloneUtils'; export * as domUtils from './util/domUtils'; export * as eventUtils from './util/EventUtils'; export * as gestureUtils from './util/gestureUtils'; +export * as mathUtils from './util/mathUtils'; +export * as printUtils from './util/printUtils'; export * as stringUtils from './util/StringUtils'; -export * as xmlUtils from './util/xmlUtils'; export * as styleUtils from './util/styleUtils'; -export * as mathUtils from './util/mathUtils'; -export * as cellArrayUtils from './util/cellArrayUtils'; +export * as utils from './util/Utils'; +export * as xmlUtils from './util/xmlUtils'; + export { GlobalConfig } from './util/config'; export * from './util/logger';