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';