Skip to content

Commit a3cea4a

Browse files
committed
bump: version 1.0.0-b5 → 1.0.0
1 parent 4ecf083 commit a3cea4a

File tree

2 files changed

+138
-1
lines changed

2 files changed

+138
-1
lines changed

CHANGELOG.md

+137
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
## v1.0.0 (2024-12-09)
2+
3+
### BREAKING CHANGE
4+
5+
- Restructured the entire folder
6+
hierarchy to adopt a feature-based structure. This
7+
change improves code modularity and maintainability
8+
but introduces breaking changes.
9+
10+
### Feat
11+
12+
- implement task dialogs
13+
- implement user invite dialog
14+
- implement users CRUD
15+
- implement global command/search
16+
- implement custom sidebar trigger
17+
- implement coming-soon page
18+
19+
### Fix
20+
21+
- uncontrolled issue in account setting
22+
- card layout issue in app integrations page
23+
- remove form reset logic from useEffect in task import
24+
- update JSX types due to react 19
25+
- prevent card stretch in filtered app layout
26+
- layout wrap issue in tasks page on mobile
27+
- update user column hover and selected colors
28+
- add setTimeout in user dialog closing
29+
- layout shift issue in dropdown modal
30+
- z-axis overflow issue in header
31+
- stretch search bar only in mobile
32+
- language dropdown issue in account setting
33+
- update overflow contents with scroll area
34+
35+
### Refactor
36+
37+
- update layouts and extract common layout
38+
- reorganize project to feature-based structure
39+
40+
## v1.0.0-beta.5 (2024-11-11)
41+
42+
### Feat
43+
44+
- add multiple language support (#37)
45+
46+
### Fix
47+
48+
- ensure site syncs with system theme changes (#49)
49+
- recent sales responsive on ipad view (#40)
50+
51+
## v1.0.0-beta.4 (2024-09-22)
52+
53+
### Feat
54+
55+
- upgrade theme button to theme dropdown (#33)
56+
- **a11y**: add "Skip to Main" button to improve keyboard navigation (#27)
57+
58+
### Fix
59+
60+
- optimize onComplete/onIncomplete invocation (#32)
61+
- solve asChild attribute issue in custom button (#31)
62+
- improve custom Button component (#28)
63+
64+
## v1.0.0-beta.3 (2024-08-25)
65+
66+
### Feat
67+
68+
- implement chat page (#21)
69+
- add 401 error page (#12)
70+
- implement apps page
71+
- add otp page
72+
73+
### Fix
74+
75+
- prevent focus zoom on mobile devices (#20)
76+
- resolve eslint script issue (#18)
77+
- **a11y**: update default aria-label of each pin-input
78+
- resolve OTP paste issue in multi-digit pin-input
79+
- update layouts and solve overflow issues (#11)
80+
- sync pin inputs programmatically
81+
82+
## v1.0.0-beta.2 (2024-03-18)
83+
84+
### Feat
85+
86+
- implement custom pin-input component (#2)
87+
88+
## v1.0.0-beta.1 (2024-02-08)
89+
90+
### Feat
91+
92+
- update theme-color meta tag when theme is updated
93+
- add coming soon page in broken pages
94+
- implement tasks table and page
95+
- add remaining settings pages
96+
- add example error page for settings
97+
- update general error page to be more flexible
98+
- implement settings layout and settings profile page
99+
- add error pages
100+
- add password-input custom component
101+
- add sign-up page
102+
- add forgot-password page
103+
- add box sign in page
104+
- add email + password sign in page
105+
- make sidebar responsive and accessible
106+
- add tailwind prettier plugin
107+
- make sidebar collapsed state in local storage
108+
- add check current active nav hook
109+
- add loader component ui
110+
- update dropdown nav by default if child is active
111+
- add main-panel in dashboard
112+
- **ui**: add dark mode
113+
- **ui**: implement side nav ui
114+
115+
### Fix
116+
117+
- update incorrect overflow side nav height
118+
- exclude shadcn components from linting and remove unused props
119+
- solve text overflow issue when nav text is long
120+
- replace nav with dropdown in mobile topnav
121+
- make sidebar scrollable when overflow
122+
- update nav link keys
123+
- **ui**: update label style
124+
125+
### Refactor
126+
127+
- move password-input component into custom component dir
128+
- add custom button component
129+
- extract redundant codes into layout component
130+
- update react-router to use new api for routing
131+
- update main panel layout
132+
- update major layouts and styling
133+
- update main panel to be responsive
134+
- update sidebar collapsed state to false in mobile
135+
- update sidebar logo and title
136+
- **ui**: remove unnecessary spacing
137+
- remove unused files

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "shadcn-admin",
33
"private": true,
4-
"version": "1.0.0-beta.5",
4+
"version": "1.0.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)