From dd46d3e2f4368f97954e542858be3117174c8984 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 7 Oct 2024 13:43:15 +0200 Subject: [PATCH] feat(index.ts): Add export for colors module in index.ts --- changelog.md | 5 +++++ ts_web/00_commitinfo_data.ts | 2 +- ts_web/index.ts | 2 ++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index f66f61c..7fd8db3 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-10-07 - 1.2.0 - feat(index.ts) +Add export for colors module in index.ts + +- The index.ts file now exports the colors module, making color utilities available for external use. + ## 2024-10-06 - 1.1.13 - fix(dees-button) Fix styling issue in button component. diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index a945df7..5e26b14 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '1.1.13', + version: '1.2.0', description: 'A library for building components and other projects' } diff --git a/ts_web/index.ts b/ts_web/index.ts index 2255a10..326f309 100644 --- a/ts_web/index.ts +++ b/ts_web/index.ts @@ -1,2 +1,4 @@ export * from './elements/index.js'; +import * as colors from './elements/00colors.js'; +export { colors }; export { commitinfo } from './00_commitinfo_data.js';