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