@primer/stylelint-config 12.7.1-rc.ad3398b → 12.7.1-rc.c4a4e27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/plugins/lib/primitives-v8.json +22 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
- [#328](https://github.com/primer/stylelint-config/pull/328) [`5ae7400`](https://github.com/primer/stylelint-config/commit/5ae7400340afc2cd21006093ce7b33206a00372e) Thanks [@langermank](https://github.com/langermank)! - Fix failing tests in no-deprecated-colors
|
|
8
8
|
|
|
9
|
+
- [#332](https://github.com/primer/stylelint-config/pull/332) [`6485cf0`](https://github.com/primer/stylelint-config/commit/6485cf053f502d71a8ce8c407ad01a939038959c) Thanks [@langermank](https://github.com/langermank)! - Updated deprecated json color file
|
|
10
|
+
|
|
9
11
|
- [#322](https://github.com/primer/stylelint-config/pull/322) [`726d7d1`](https://github.com/primer/stylelint-config/commit/726d7d1bf4eac82a032c448cb0be32d5bf66b29a) Thanks [@jonrohan](https://github.com/jonrohan)! - Updating no-deprecated-colors for primitives v8
|
|
10
12
|
|
|
11
13
|
## 12.7.0
|
package/package.json
CHANGED
|
@@ -283,7 +283,12 @@
|
|
|
283
283
|
"replacement": "--selectMenu-borderColor"
|
|
284
284
|
}
|
|
285
285
|
],
|
|
286
|
-
"--color-select-menu-tap-highlight": [
|
|
286
|
+
"--color-select-menu-tap-highlight": [
|
|
287
|
+
{
|
|
288
|
+
"props": ["background"],
|
|
289
|
+
"replacement": "--control-bgColor-active"
|
|
290
|
+
}
|
|
291
|
+
],
|
|
287
292
|
"--color-select-menu-tap-focus-bg": [
|
|
288
293
|
{
|
|
289
294
|
"props": ["background"],
|
|
@@ -352,7 +357,7 @@
|
|
|
352
357
|
],
|
|
353
358
|
"--color-btn-selected-bg": [
|
|
354
359
|
{
|
|
355
|
-
"props": ["
|
|
360
|
+
"props": ["background"],
|
|
356
361
|
"replacement": "--button-default-bgColor-selected"
|
|
357
362
|
}
|
|
358
363
|
],
|
|
@@ -556,7 +561,7 @@
|
|
|
556
561
|
],
|
|
557
562
|
"--color-btn-danger-disabled-bg": [
|
|
558
563
|
{
|
|
559
|
-
"props": ["
|
|
564
|
+
"props": ["background"],
|
|
560
565
|
"replacement": "--button-danger-bgColor-disabled"
|
|
561
566
|
}
|
|
562
567
|
],
|
|
@@ -852,7 +857,7 @@
|
|
|
852
857
|
],
|
|
853
858
|
"--color-border-default": [
|
|
854
859
|
{
|
|
855
|
-
"props": ["border", "background"],
|
|
860
|
+
"props": ["border", "background", "box-shadow"],
|
|
856
861
|
"replacement": "--borderColor-default"
|
|
857
862
|
}
|
|
858
863
|
],
|
|
@@ -870,7 +875,7 @@
|
|
|
870
875
|
],
|
|
871
876
|
"--color-neutral-emphasis-plus": [
|
|
872
877
|
{
|
|
873
|
-
"props": ["background"],
|
|
878
|
+
"props": ["background", "border", "color"],
|
|
874
879
|
"replacement": "--bgColor-emphasis"
|
|
875
880
|
}
|
|
876
881
|
],
|
|
@@ -888,6 +893,10 @@
|
|
|
888
893
|
{
|
|
889
894
|
"props": ["border"],
|
|
890
895
|
"replacement": "--borderColor-neutral-muted"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"props": ["background"],
|
|
899
|
+
"replacement": "--bgColor-neutral-muted"
|
|
891
900
|
}
|
|
892
901
|
],
|
|
893
902
|
"--color-neutral-subtle": [
|
|
@@ -900,6 +909,10 @@
|
|
|
900
909
|
{
|
|
901
910
|
"props": ["color", "fill"],
|
|
902
911
|
"replacement": "--fgColor-accent"
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"props": ["border"],
|
|
915
|
+
"replacement": "--borderColor-accent-emphasis"
|
|
903
916
|
}
|
|
904
917
|
],
|
|
905
918
|
"--color-accent-emphasis": [
|
|
@@ -910,6 +923,10 @@
|
|
|
910
923
|
{
|
|
911
924
|
"props": ["border"],
|
|
912
925
|
"replacement": "--borderColor-accent-emphasis"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"props": ["color", "fill"],
|
|
929
|
+
"replacement": "--fgColor-accent"
|
|
913
930
|
}
|
|
914
931
|
],
|
|
915
932
|
"--color-accent-muted": [
|