Skip to content

Feat components #224

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 39 commits into from
Jul 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
fe9dc53
Init components package
Jul 1, 2025
e42cfa1
Update components package devup.json
Jul 1, 2025
e1de67c
Update button component
Jul 2, 2025
c9c963c
Remove box
Jul 2, 2025
e376e35
Merge branch 'main' of https://github.com/dev-five-git/devup-ui into …
Jul 2, 2025
3b12314
Update packages
Jul 2, 2025
841ffec
Remove unnecessary css vars
Jul 2, 2025
35cc816
Upgrade storybook to 9.0.15
Jul 2, 2025
1b4ad94
Remove unused storybook addon
Jul 2, 2025
ee92876
Fix storybook upgrade error
Jul 2, 2025
b5e125b
Install clsx
Jul 2, 2025
d024d40
Create variants object
Jul 2, 2025
a46f080
Merge branch 'main' into feat-components
Jul 2, 2025
5cb8554
Add styleVars keys
Jul 3, 2025
abfe32e
Add WithIcon story
Jul 3, 2025
6a06e5c
Merge branch 'main' into feat-components
Jul 3, 2025
198662a
Merge branch 'main' into feat-components
Jul 3, 2025
281a7fe
Add error & disabled design
Jul 3, 2025
42793ce
Add button comp form story
Jul 3, 2025
6f50121
Remove changelog md
Jul 3, 2025
499b4e9
Fix package.json, .changeset
Jul 3, 2025
8a3b9a8
Fix fallback colors
Jul 3, 2025
3fccbfd
Merge branch 'main' into feat-components
Jul 3, 2025
33ac8e0
Setup components tests
Jul 3, 2025
d2c2607
Merge branch 'main' into feat-components
Jul 4, 2025
a22507d
Merge branch 'main' into feat-components
Jul 4, 2025
d131d2d
Merge branch 'main' into feat-components
Jul 7, 2025
bfa72e4
Update repo
Jul 7, 2025
709ac9a
Edit vitest config
Jul 7, 2025
b10abf8
Fix button comp
Jul 7, 2025
a905e2f
Fix button comp test
Jul 7, 2025
4d39604
Merge branch 'main' into feat-components
Jul 7, 2025
a9b65eb
Merge branch 'main' into feat-components
Jul 7, 2025
37c36d5
Install @devup-ui/components in apps/landing
Jul 7, 2025
7c7df38
Set storybook build command in yml
Jul 7, 2025
e56667e
Add component page links and dumm mdx
Jul 7, 2025
195f96d
Fix color, letter
Jul 7, 2025
d354422
Change prop name
Jul 7, 2025
29b7cb0
Fix test
Jul 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"ignore": [
"*-example",
"*-benchmark",
"landing"
"landing",
"@devup-ui/components"
]
}
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ jobs:
pnpm lint
pnpm test
- name: Build Landing
run: pnpm -F landing build
run: |
pnpm -F landing build
pnpm -F components build-storybook
mv -r ./packages/components/storybook-static ./apps/landing/public/storybook
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ codecov.*
codecov.*.*
lcov.info
tarpaulin-report.html
tarpaulin-report.json
tarpaulin-report.json
*storybook.log
storybook-static
2 changes: 2 additions & 0 deletions apps/landing/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ public/search.json
!.yarn/releases
!.yarn/versions

public/storybook

# testing
/coverage

Expand Down
2 changes: 1 addition & 1 deletion apps/landing/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default withMDX(
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
output: 'export',
},
{},
{ include: ['@devup-ui/components'] },
),
)
3 changes: 2 additions & 1 deletion apps/landing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"dependencies": {
"body-scroll-lock": "3.1.5",
"@devup-ui/react": "workspace:*",
"@devup-ui/components": "workspace:*",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.3.4",
Expand All @@ -34,4 +35,4 @@
"glob": "^11.0.3",
"remark": "^15.0.1"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Bottom Sheet
6 changes: 6 additions & 0 deletions apps/landing/src/app/(detail)/components/button/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { Button } from '@devup-ui/components'

# Button

<Button>Button</Button>

1 change: 1 addition & 0 deletions apps/landing/src/app/(detail)/components/checkbox/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Checkbox
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Color Picker
1 change: 1 addition & 0 deletions apps/landing/src/app/(detail)/components/confirm/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Confirm
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Date Picker
1 change: 1 addition & 0 deletions apps/landing/src/app/(detail)/components/dropdown/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Dropdown
1 change: 1 addition & 0 deletions apps/landing/src/app/(detail)/components/footer/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Footer
1 change: 1 addition & 0 deletions apps/landing/src/app/(detail)/components/header/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Header
1 change: 1 addition & 0 deletions apps/landing/src/app/(detail)/components/label/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Label
1 change: 1 addition & 0 deletions apps/landing/src/app/(detail)/components/menu/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Menu
Loading