@primer/stylelint-config 12.7.1-rc.ff27b7e → 12.7.2-rc.69b2f10

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 12.7.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#343](https://github.com/primer/stylelint-config/pull/343) [`5b975fc`](https://github.com/primer/stylelint-config/commit/5b975fcd45383ecd1dd9145d868a227e4fe3e27a) Thanks [@langermank](https://github.com/langermank)! - Add missing counter btn tokens to no-deprecated-colors
8
+
3
9
  ## 12.7.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primer/stylelint-config",
3
- "version": "12.7.1-rc.ff27b7e",
3
+ "version": "12.7.2-rc.69b2f10",
4
4
  "description": "Sharable stylelint config used by GitHub's CSS",
5
5
  "homepage": "http://primer.style/css/tools/linting",
6
6
  "author": "GitHub, Inc.",
@@ -1442,5 +1442,41 @@
1442
1442
  "props": ["box-shadow"],
1443
1443
  "replacement": "--shadow-floating-xlarge"
1444
1444
  }
1445
+ ],
1446
+ "--color-btn-danger-disabled-counter-fg": [
1447
+ {
1448
+ "props": ["color"],
1449
+ "replacement": "--buttonCounter-danger-fgColor-disabled"
1450
+ }
1451
+ ],
1452
+ "--color-btn-danger-hover-counter-fg": [
1453
+ {
1454
+ "props": ["color"],
1455
+ "replacement": "--buttonCounter-danger-fgColor-hover"
1456
+ }
1457
+ ],
1458
+ "--color-btn-danger-counter-fg": [
1459
+ {
1460
+ "props": ["color"],
1461
+ "replacement": "--buttonCounter-danger-fgColor-rest"
1462
+ }
1463
+ ],
1464
+ "--color-btn-outline-disabled-counter-fg": [
1465
+ {
1466
+ "props": ["color"],
1467
+ "replacement": "--buttonCounter-outline-fgColor-disabled"
1468
+ }
1469
+ ],
1470
+ "--color-btn-outline-hover-counter-fg": [
1471
+ {
1472
+ "props": ["color"],
1473
+ "replacement": "--buttonCounter-outline-fgColor-hover"
1474
+ }
1475
+ ],
1476
+ "--color-btn-outline-counter-fg": [
1477
+ {
1478
+ "props": ["color"],
1479
+ "replacement": "--buttonCounter-outline-fgColor-rest"
1480
+ }
1445
1481
  ]
1446
1482
  }