Update project status
Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
@@ -43,19 +43,19 @@ import { Columns, Text, ComponentStatus, Banner, Title } from './components';
|
||||
/>
|
||||
<ComponentStatus
|
||||
name="Box component"
|
||||
status="inProgress"
|
||||
status="review"
|
||||
link="/?path=/docs/components-box--docs"
|
||||
/>
|
||||
<ComponentStatus
|
||||
name="Stack component"
|
||||
status="review"
|
||||
link="/?path=/docs/components-stack--default"
|
||||
/>
|
||||
<ComponentStatus
|
||||
name="Inline component"
|
||||
status="inProgress"
|
||||
link="/?path=/story/components-inline--default"
|
||||
/>
|
||||
<ComponentStatus
|
||||
name="Stack component"
|
||||
status="inProgress"
|
||||
link="/?path=/docs/components-stack--default"
|
||||
/>
|
||||
<ComponentStatus
|
||||
name="Button component"
|
||||
status="inProgress"
|
||||
|
||||
@@ -57,6 +57,11 @@ export const pill = recipe({
|
||||
borderColor: '#FFD000',
|
||||
color: '#D79927',
|
||||
},
|
||||
review: {
|
||||
backgroundColor: '#D7F9D7',
|
||||
borderColor: '#4ED14A',
|
||||
color: '#3A9837',
|
||||
},
|
||||
done: {
|
||||
backgroundColor: '#D7F9D7',
|
||||
borderColor: '#4ED14A',
|
||||
|
||||
@@ -24,7 +24,7 @@ export const ComponentStatus = ({
|
||||
link,
|
||||
}: {
|
||||
name: string;
|
||||
status: 'notStarted' | 'inProgress' | 'done';
|
||||
status: 'notStarted' | 'inProgress' | 'review' | 'done';
|
||||
style?: React.CSSProperties;
|
||||
link?: string;
|
||||
}) => {
|
||||
@@ -40,6 +40,7 @@ export const ComponentStatus = ({
|
||||
<span className={pill({ status })}>
|
||||
{status === 'notStarted' && 'Not Started'}
|
||||
{status === 'inProgress' && 'In Progress'}
|
||||
{status === 'review' && 'Ready for Review'}
|
||||
{status === 'done' && 'Done'}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user