Skip to content

Commit

Permalink
feat: add Card component (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan authored Nov 19, 2024
1 parent c6148ec commit 75051d1
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
26 changes: 26 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions packages/react-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"@vaadin/avatar": "24.6.0-alpha9",
"@vaadin/avatar-group": "24.6.0-alpha9",
"@vaadin/button": "24.6.0-alpha9",
"@vaadin/card": "24.6.0-alpha9",
"@vaadin/checkbox": "24.6.0-alpha9",
"@vaadin/checkbox-group": "24.6.0-alpha9",
"@vaadin/combo-box": "24.6.0-alpha9",
Expand Down Expand Up @@ -147,6 +148,10 @@
"types": "./Button.d.ts",
"default": "./Button.js"
},
"./Card.js": {
"types": "./Card.d.ts",
"default": "./Card.js"
},
"./Checkbox.js": {
"types": "./Checkbox.d.ts",
"default": "./Checkbox.js"
Expand Down Expand Up @@ -402,6 +407,7 @@
"./Avatar": "./Avatar.js",
"./AvatarGroup": "./AvatarGroup.js",
"./Button": "./Button.js",
"./Card": "./Card.js",
"./Checkbox": "./Checkbox.js",
"./CheckboxGroup": "./CheckboxGroup.js",
"./ComboBox": "./ComboBox.js",
Expand Down
1 change: 1 addition & 0 deletions packages/react-components/src/Card.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './generated/Card.js';

0 comments on commit 75051d1

Please sign in to comment.