diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index bd6f116..6a03e52 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,5 +1,13 @@ # @tpmjs/ui +## 0.1.3 + +### Patch Changes + +- refactor(ui): convert all components from createElement to JSX syntax + + All UI components now use JSX instead of createElement for better readability and maintainability. + ## 0.1.2 ### Patch Changes diff --git a/packages/ui/package.json b/packages/ui/package.json index 1414caf..686ad75 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@tpmjs/ui", - "version": "0.1.2", + "version": "0.1.3", "type": "module", "exports": { "./Button/Button": { @@ -48,7 +48,9 @@ "default": "./dist/Header/Header.js" } }, - "files": ["dist"], + "files": [ + "dist" + ], "scripts": { "build": "tsup", "dev": "tsup --watch",