Skip to content
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

R18 design updates #321

Merged
merged 2 commits into from
Dec 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 10 additions & 0 deletions src/docs/release-notes/R18/R18.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
### Stickersheet Components

- Rewired all the components using Figma's newly-released variants and auto-layout
- Added images, tiles and patterns
- Added more components (badges, dialogs, form controls, icon buttons, menus, side sheets, steppers and toggle buttons)
- Reorganized the stickersheet structure

### Documentation Site

- Updated [the iconography page](/style/iconography) to enable users to download icons and search by tag names
1 change: 1 addition & 0 deletions src/docs/release-notes/R18/Summary.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TBD
9 changes: 9 additions & 0 deletions src/docs/release-notes/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';

// Full Release Notes
import R18 from './R18/R18.mdx';
import R17 from './R17/R17.mdx';
import R16 from './R16/R16.mdx';
import R15 from './R15/R15.mdx';
Expand All @@ -14,6 +15,7 @@ import R8 from './R8/R8.mdx';
import R7 from './R7/R7.mdx';

// Summaries (for Landing Page)
import R18Summary from './R18/Summary.mdx';
import R17Summary from './R17/Summary.mdx';
import R16Summary from './R16/Summary.mdx';
import R15Summary from './R15/Summary.mdx';
Expand All @@ -34,6 +36,13 @@ export type ReleaseInfo = {
summary: JSX.Element;
};
const Releases: ReleaseInfo[] = [
{
title: 'R18',
date: 'December 2020',
version: '2.3.6',
details: <R18 />,
summary: <R18Summary />,
},
{
title: 'R17',
date: 'September 2020',
Expand Down