-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/figma-workflow
- Loading branch information
Showing
111 changed files
with
16,709 additions
and
13,777 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,36 @@ | ||
--- | ||
"@rhds/tokens": patch | ||
--- | ||
|
||
- Added language specific font-family tokens. Example: `--rh-font-family-lang-he: 'Noto Sans Hebrew';` | ||
- Removes language fonts from `--rh-font-family-body-text` and `--rh-font-family-heading` | ||
|
||
Before: | ||
``` | ||
body { | ||
font-family: var(--rh-font-family-body-text, RedHatText, "Red Hat Text", "Noto Sans Arabic", "Noto Sans Hebrew", "Noto Sans JP", "Noto Sans KR", "Noto Sans Malayalam", "Noto Sans SC", "Noto Sans TC", "Noto Sans Thai", Helvetica, Arial, sans-serif); | ||
} | ||
:is(h1,h2,h3,h4,h5,h6) { | ||
font-family: var(--rh-font-family-heading, RedHatDisplay, "Red Hat Display", "Noto Sans Arabic", "Noto Sans Hebrew", "Noto Sans JP", "Noto Sans KR", "Noto Sans Malayalam", "Noto Sans SC", "Noto Sans TC", "Noto Sans Thai", Helvetica, Arial, sans-serif); | ||
} | ||
``` | ||
|
||
After: | ||
``` | ||
body { | ||
font-family: var(--rh-font-family-body-text, RedHatText, "Red Hat Text"); | ||
} | ||
:is(h1,h2,h3,h4,h5,h6) { | ||
font-family: var(--rh-font-family-heading, RedHatDisplay, "Red Hat Display"); | ||
} | ||
[lang="he"] { | ||
font-family: var(--rh-font-family-lang-he: "Noto Sans Hebrew"); | ||
} | ||
[lang="zh-CN"] { | ||
font-family: var(--rh-font-family-lang-zh-cn: 'Noto Sans SC'); | ||
} | ||
``` |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
--- | ||
"@rhds/tokens": patch | ||
--- | ||
|
||
Removed empty color theme tokens from \_variables.scss |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
--- | ||
"@rhds/tokens": patch | ||
--- | ||
|
||
Change the value for regular font weight token (`var(--rh-font-weight-heading-regular, 300)`) for headings from `300` to `400` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,11 +1,23 @@ | ||
node_modules | ||
build | ||
editor | ||
js | ||
json | ||
css | ||
scss | ||
design | ||
|
||
.DS_Store | ||
.wireit | ||
|
||
build/**/* | ||
|
||
editor/**/* | ||
js/**/* | ||
json/**/* | ||
css/**/* | ||
scss/**/* | ||
design/**/* | ||
plugins/cjs | ||
plugins/**/*.cjs | ||
plugins/**/*.cjs.map | ||
plugins/**/*.d.cts | ||
plugins/**/*.js | ||
plugins/**/*.js.map | ||
plugins/**/*.d.ts | ||
test/**/*.js | ||
test/**/*.js.map | ||
test/**/*.d.ts |
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 |
---|---|---|
@@ -1 +1 @@ | ||
v18.12.1 | ||
v22.7.0 |
Oops, something went wrong.