Compare commits

...

2 Commits

Author SHA1 Message Date
d2771dfc31 1.2.0 2024-10-07 13:43:15 +02:00
dd46d3e2f4 feat(index.ts): Add export for colors module in index.ts 2024-10-07 13:43:15 +02:00
4 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog # 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) ## 2024-10-06 - 1.1.13 - fix(dees-button)
Fix styling issue in button component. Fix styling issue in button component.

View File

@ -1,6 +1,6 @@
{ {
"name": "@design.estate/dees-catalog", "name": "@design.estate/dees-catalog",
"version": "1.1.13", "version": "1.2.0",
"private": false, "private": false,
"description": "A library for building components and other projects", "description": "A library for building components and other projects",
"main": "dist_ts_web/index.js", "main": "dist_ts_web/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '1.1.13', version: '1.2.0',
description: 'A library for building components and other projects' description: 'A library for building components and other projects'
} }

View File

@ -1,2 +1,4 @@
export * from './elements/index.js'; export * from './elements/index.js';
import * as colors from './elements/00colors.js';
export { colors };
export { commitinfo } from './00_commitinfo_data.js'; export { commitinfo } from './00_commitinfo_data.js';