-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
163 additions
and
51 deletions.
There are no files selected for viewing
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 @@ | ||
--- | ||
'@cobalt-ui/plugin-css': patch | ||
--- | ||
|
||
Bugfix: bugs in transform() API introduced in 1.6.0 |
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,6 @@ | ||
--- | ||
'@cobalt-ui/plugin-sass': patch | ||
'@cobalt-ui/plugin-css': patch | ||
--- | ||
|
||
Bugfix: fix TypeScript signature for transform() plugin option |
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,6 @@ | ||
--- | ||
'@cobalt-ui/plugin-sass': patch | ||
'@cobalt-ui/plugin-css': patch | ||
--- | ||
|
||
Bugfix: mismatched versions of plugin-css and plugin-sass (if either were on `latest`) were broken. |
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,17 @@ | ||
{ | ||
"color": { | ||
"$type": "color", | ||
"blue": { | ||
"0": {"$value": "#ddf4ff"}, | ||
"1": {"$value": "#b6e3ff"}, | ||
"2": {"$value": "#80ccff"}, | ||
"3": {"$value": "#54aeff"}, | ||
"4": {"$value": "#218bff"}, | ||
"5": {"$value": "#0969da"}, | ||
"6": {"$value": "#0550ae"}, | ||
"7": {"$value": "#033d8b"}, | ||
"8": {"$value": "#0a3069"}, | ||
"9": {"$value": "#002155"} | ||
} | ||
} | ||
} |
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,33 @@ | ||
/** | ||
* Design Tokens | ||
* Autogenerated from tokens.json. | ||
* DO NOT EDIT! | ||
*/ | ||
|
||
:root { | ||
--color-blue-0: #ddf4ff; | ||
--color-blue-1: #b6e3ff; | ||
--color-blue-2: #80ccff; | ||
--color-blue-3: #54aeff; | ||
--color-blue-4: #218bff; | ||
--color-blue-5: #0969db; | ||
--color-blue-6: #0550ae; | ||
--color-blue-7: #033d8b; | ||
--color-blue-8: #0a3069; | ||
--color-blue-9: #002155; | ||
} | ||
|
||
@supports (color: color(display-p3 1 1 1)) { | ||
:root { | ||
--color-blue-0: color(display-p3 0.8666666666666667 0.9568627450980393 1); | ||
--color-blue-1: color(display-p3 0.7137254901960784 0.8901960784313725 1); | ||
--color-blue-2: color(display-p3 0.5019607843137255 0.8 1); | ||
--color-blue-3: color(display-p3 0.32941176470588235 0.6823529411764706 1); | ||
--color-blue-4: color(display-p3 0.12941176470588237 0.5450980392156862 1); | ||
--color-blue-5: color(display-p3 0.03529411764705882 0.4117647058823529 0.8588235294117647); | ||
--color-blue-6: color(display-p3 0.0196078431372549 0.3137254901960784 0.6823529411764706); | ||
--color-blue-7: color(display-p3 0.011764705882352941 0.23921568627450981 0.5450980392156862); | ||
--color-blue-8: color(display-p3 0.0392156862745098 0.18823529411764706 0.4117647058823529); | ||
--color-blue-9: color(display-p3 0 0.12941176470588237 0.3333333333333333); | ||
} | ||
} |
Oops, something went wrong.