Skip to content

Commit f1504c2

Browse files
committed
changelog beta.26
1 parent 3ca8151 commit f1504c2

File tree

2 files changed

+165
-1
lines changed

2 files changed

+165
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<br><br>
44
<b>Customisable components and primitives based on design tokens</b>
55
<br><br>
6-
<img src="https://img.shields.io/badge/version-1.0.0--beta.25-F4CA64?style=flat-square"/>
6+
<img src="https://img.shields.io/badge/version-1.0.0--beta.26-F4CA64?style=flat-square"/>
77
<br><br>
88
<br><br>
99
<b>Docs:</b>

packages/docs/src/pages/changelog/index.js

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,170 @@ import { Page, Section, List } from '../../components'
66
const Changelog = () => {
77
return (
88
<Page title="Changelog">
9+
<Section>
10+
<Stack align="center" justify="space-between" marginBottom={4}>
11+
<Link variant="body" href="#1.0.0-beta.26">
12+
1.0.0-beta.26{' '}
13+
</Link>
14+
<Contributors
15+
authors={[
16+
'loweisz',
17+
'NateRadebaugh',
18+
'nurul3101',
19+
'sreetamdas',
20+
'iamdarshshah',
21+
'hazem3500',
22+
'sumdook',
23+
'shubh0107',
24+
'Sagarpreet',
25+
'JalDEV',
26+
'siddharthkp'
27+
]}
28+
/>
29+
</Stack>
30+
<Stack as={List} direction="vertical" gap={1} marginBottom={4}>
31+
<Text size={3} color="text.subtle">
32+
Additions:
33+
</Text>
34+
<Change
35+
pr="39"
36+
description="Adding Dialog component"
37+
author="loweisz"
38+
/>
39+
<Change
40+
pr="48"
41+
description="Add docs for integrating 3rd party libraries like reach-ui"
42+
author="NateRadebaugh"
43+
/>
44+
<Change
45+
pr="60"
46+
description="New component: Tooltip"
47+
author="siddharthkp"
48+
/>
49+
<Change
50+
pr="71"
51+
description="New component: Alert"
52+
author="siddharthkp"
53+
/>
54+
<Change
55+
pr="76"
56+
description="New component: Tabs"
57+
author="siddharthkp"
58+
/>
59+
<Change
60+
pr="78"
61+
description="New component: Skeleton"
62+
author="siddharthkp"
63+
/>
64+
</Stack>
65+
<Stack as={List} direction="vertical" gap={1} marginBottom={4}>
66+
<Text size={3} color="text.subtle">
67+
Improvements:
68+
</Text>
69+
<Change
70+
pr="47"
71+
description="Docs: Change favicon based on theme"
72+
author="siddharthkp"
73+
/>
74+
<Change
75+
pr="61"
76+
description="Upgraded @reach/menu-button"
77+
author="nurul3101"
78+
/>
79+
<Change
80+
pr="63"
81+
description="Update version badge in README"
82+
author="sreetamdas"
83+
/>
84+
<Change
85+
pr="80"
86+
description="Add visual tests with chromatic"
87+
author="siddharthkp"
88+
/>
89+
</Stack>
90+
<Stack as={List} direction="vertical" gap={1} marginBottom={4}>
91+
<Text size={3} color="text.subtle">
92+
Fixes:
93+
</Text>
94+
<Change
95+
pr="67"
96+
description="Fix tooltip image on components page."
97+
author="iamdarshshah"
98+
/>
99+
<Change
100+
pr="68"
101+
description="Remove duplicate paragraph in ideas docs page"
102+
author="hazem3500"
103+
/>
104+
<Change
105+
pr="79"
106+
description="Handle 0 for margin values"
107+
author="siddharthkp"
108+
/>
109+
<Change
110+
pr="84"
111+
description="Fix specificity issues"
112+
author="siddharthkp"
113+
/>
114+
</Stack>
115+
116+
<Stack as="span" align="center" gap={1} marginBottom={4}>
117+
<LinkedAvatar author="sumdook" />
118+
<LinkedAvatar author="shubh0107" />
119+
<LinkedAvatar author="Sagarpreet" />
120+
<LinkedAvatar author="JalDEV" />
121+
<Text size={3} color="text.subtle">
122+
Thanks to{' '}
123+
<Link
124+
href={`https://github.com/sumdook`}
125+
target="_blank"
126+
variant="subtle"
127+
>
128+
sumdook
129+
</Link>
130+
,{' '}
131+
<Link
132+
href={`https://github.com/shubh0107`}
133+
target="_blank"
134+
variant="subtle"
135+
>
136+
shubh0107
137+
</Link>
138+
,{' '}
139+
<Link
140+
href={`https://github.com/Sagarpreet`}
141+
target="_blank"
142+
variant="subtle"
143+
>
144+
Sagarpreet
145+
</Link>{' '}
146+
and{' '}
147+
<Link
148+
href={`https://github.com/JalDEV`}
149+
target="_blank"
150+
variant="subtle"
151+
>
152+
JalDEV
153+
</Link>{' '}
154+
for their feedback
155+
</Text>
156+
</Stack>
157+
<Stack as="span" align="center" gap={1} marginBottom={4}>
158+
<LinkedAvatar author="rubenmoya" />
159+
<Text size={3} color="text.subtle">
160+
Massive shout out to{' '}
161+
<Link
162+
href={`https://github.com/rubenmoya`}
163+
target="_blank"
164+
variant="subtle"
165+
>
166+
rubenmoya
167+
</Link>{' '}
168+
for reviewing so many pull requests!
169+
</Text>
170+
</Stack>
171+
</Section>
172+
9173
<Section>
10174
<Stack align="center" justify="space-between" marginBottom={4}>
11175
<Link variant="body" href="#1.0.0-beta.25">

0 commit comments

Comments
 (0)