Skip to content

Commit

Permalink
Merge pull request #124 from birotaio/fix/expose-types-for-icons
Browse files Browse the repository at this point in the history
  • Loading branch information
arhubi authored Mar 20, 2024
2 parents 84d9871 + 1a5e683 commit 8e05689
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.23.3 (March 20, 2024)

### Fixes

- [Lib] Add `types` for all icon paths

## 0.23.2 (March 20, 2024)

### Fixes
Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fifteen/design-system-vue",
"version": "0.23.2",
"version": "0.23.3",
"description": "Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System",
"repository": {
"type": "git",
Expand Down Expand Up @@ -59,15 +59,18 @@
},
"./icons": {
"import": "./dist/es/.generated/icons.js",
"require": "./dist/cjs/.generated/icons.js"
"require": "./dist/cjs/.generated/icons.js",
"types": "./icons/index.d.ts"
},
"./icons/flags": {
"import": "./dist/es/.generated/flags.js",
"require": "./dist/cjs/.generated/flags.js"
"require": "./dist/cjs/.generated/flags.js",
"types": "./icons/flags.d.ts"
},
"./icons/credit-cards": {
"import": "./dist/es/.generated/credit-cards.js",
"require": "./dist/cjs/.generated/credit-cards.js"
"require": "./dist/cjs/.generated/credit-cards.js",
"types": "./icons/credit-cards.d.ts"
},
"./styles/*.styl": "./dist/styles/*.styl",
"./style.css": "./dist/style.css",
Expand Down

0 comments on commit 8e05689

Please sign in to comment.