-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release of version 0.3.0 See below the full CHANGELOG details. Added - [Library] Add color semantic tokens `colorBackgroundStatusNeutral`, some `OnBackgroundEmphasized`, `colorBackgroundAction`, `colorBackgroundAlways`, `colorContent` variants - [Library] Add typography semantic tokens for font letter spacing - [DemoApp] Create token section (Border, Typography, Elevation, Opacity) ([#120](#120)) - [Library] Unit tests for multiple tokens - [Library] Add color semantic composite tokens embeding light and dark modes values - [Library] Add spacing semantic tokens "huge" and "jumbo" - [Library] Add closed "sys" dimension semantic tokens - [Tool] GitHub issue template for tokens update request - [Library] Add more sizing semantic tokens ([#122](#122)) - [Library] Add letter spacing and more font family tokens for typography ([#51](#51)) Changed - [Library] Rename and move color raw tokens for core, Orange brand and Sosh brand - [Library] Remove web-specific grid tokens, keep compact/regular widths ([#147](#147)) - [Library] Rename of typography font weight raw tokens - [Library] Rename dimension semantic tokens to apply T-Shirt size rules ([#130](#130)) - [Library] Rename `SizingCompositeSemanticToken` to `MultipleSizingSemanticToken` to keep "composite" word for *Figma* design system - [Library] Rename `ColorCompositeSemanticToken` to `MultipleColorRawToken` to keep "composite" word for *Figma* design system - [Library] Rename `TypographyCompositeSemanticToken` to `MultipleTypographyTokens` to keep "composite" word for *Figma* design system - [Library] Rename `SpacingCompositeSemanticToken` to `MultipleSpacingTokens` to keep "composite" word for *Figma* design system - [Library] Rename `SizingCompositeSemanticToken` to `MultipleSizingTokens` to keep "composite" word for *Figma* design system - [Library] Rename `ColorCompositeSemanticToken` to `MultipleColorTokens` to keep "composite" word for *Figma* design system - [Library] Elevation colors have been merged into "multiple" objects colors to have less variables and manage color schemes - [Library] Rename `ColorCompositeSemanticToken` to `MultipleColorSemanticToken` to keep "composite" word for *Figma* design system - [Library] Elevation colors have been merged into composite colors to have less variables and manage color schemes - [Library] Rename `SpacingCompositeSemanticToken` to `MultipleSpacingTokens` to keep "composite" word for *Figma* design system - [Library] Rename `SizingCompositeSemanticToken` to `MultipleSizingTokens` to keep "composite" word for *Figma* design system - [Library] Rename `ColorCompositeSemanticToken` to `MultipleColorTokens` to keep "composite" word for *Figma* design system - [Library] Elevation colors have been merged into "multiple" objects colors to have less variables and manage color schemes - [Library] Update color semantic tokens to better manage light and dark modes values - [Library] Update elevation colors focus light and dark - [Library] Rename space padding inline component tokens by removing "component" word - [Library] Improve documentation about raw and semantic tokens definitions ([#127](#127)) - [Library] Improve documentation about raw tokens definitions - [Library] Move composite tokens elsewhere to help parser ([#129](#129)) - [Library] Improve documentation about raw and semantic tokens definitions ([#127](#127)) - [Library] Rename some sizing semantic tokens ([#122](#122)) - [Library] Replace "adaptable" word by "scaled" in space semantic tokens, "fix" by "fixed" and remove "layout" ([#117](#117)) Removed - [Library] Color semantic token `colorBackgroundEmphasizedSecondary`, `colorOnBackground` variants - [Library] Remove raw tokens `elevationZIndex` ([#119](#119)) Fixed - [Library] Blur values for elevation composite raw tokens Co-authored-by: Pierre-Yves Lapersonne <[email protected]> Co-authored-by: Ludovic Pinel <[email protected]> Co-authored-by: Tayeb Sedraia <[email protected]> Signed-off-by: Pierre-Yves Lapersonne <[email protected]>
- Loading branch information
Showing
197 changed files
with
7,183 additions
and
4,211 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,4 @@ | |
Julien DERAMOND <[email protected]> | ||
Pierre-Yves LAPERSONNE <[email protected]> | ||
Ludovic PINEL <[email protected]> | ||
Tayeb SEDRAIA <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Token Update Request | ||
description: Please fill out the following details for your token update request. | ||
title: "[Token Update] - Title" | ||
labels: ["📀 token", "🔍 triage"] | ||
assignees: ["ludovic35", "pylapp", "Tayebsed93"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Type of tokens | ||
Please fill the checkboxes of the token type you want to update: | ||
- [ ] Raw token (i.e. associated to _SwiftUI_ or _Swift_ value) | ||
- [ ] Semantic token (i.e. pointing to a raw token) | ||
- [ ] Component token (i.e. pointing to a semantic token, used for a component) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Describe your need in details | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: motivation_context | ||
attributes: | ||
label: Motivation & Context | ||
description: Why is this change required? What problem does it solve? | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Types of change | ||
Please fill the suitable items in the list: | ||
- [ ] Add new tokens | ||
- [ ] Update existing tokens (i.e. change name or value) | ||
- [ ] Remove existing token | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Checklist for Core Team | ||
- [ ] Tokens have been updated | ||
- [ ] Documentation have been updated | ||
- [ ] Unit tests have been updated | ||
- [ ] Retrocompatibility has been checked, or broken API have been flagged as deprecated without a workaround | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.