@primer/css 0.0.0-20219633235 → 0.0.0-2021986475
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 +7 -3
- package/color-modes/index.scss +2 -2
- package/color-modes/themes/{dark_protanopia.scss → dark_colorblind.scss} +1 -1
- package/color-modes/themes/{light_protanopia.scss → light_colorblind.scss} +1 -1
- package/core/index.scss +14 -15
- package/deprecations.json +3 -3
- package/dist/color-modes.css +1 -1
- package/dist/core.css +1 -1
- package/dist/core.css.map +1 -1
- package/dist/deprecations.json +3 -3
- package/dist/meta.json +29 -25
- package/dist/primer.css +2 -2
- package/dist/primer.css.map +1 -1
- package/dist/stats/color-modes.json +1 -1
- package/dist/stats/core.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/dist/stats/utilities.json +1 -1
- package/dist/utilities.css +1 -1
- package/dist/utilities.css.map +1 -1
- package/package.json +2 -3
- package/utilities/colors.scss +32 -30
- package/actionlist/actionlist-edits.scss +0 -553
- package/actionlist/actionlist.scss +0 -492
- package/actionlist/index.scss +0 -3
- package/dist/actionlist.css +0 -2
- package/dist/actionlist.css.map +0 -1
- package/dist/actionlist.js +0 -1
- package/dist/stats/actionlist.json +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @primer/css
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-2021986475
|
|
4
4
|
|
|
5
5
|
### Major Changes
|
|
6
6
|
|
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
|
|
17
17
|
* [#1617](https://github.com/primer/css/pull/1617) [`e47324fa`](https://github.com/primer/css/commit/e47324faa436e892b8621a6dac1fcb2cbad3cdf1) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing `<kbd>` import from markdown package. Going forward you'll need to include `@primer/css/base/kbd.scss` directly.
|
|
18
18
|
|
|
19
|
-
- [#
|
|
19
|
+
- [#1630](https://github.com/primer/css/pull/1630) [`ab3897cb`](https://github.com/primer/css/commit/ab3897cba89f390bf2a9488c642995f28c27bde1) Thanks [@simurai](https://github.com/simurai)! - Update utilities
|
|
20
|
+
|
|
21
|
+
* [#1599](https://github.com/primer/css/pull/1599) [`13de16c7`](https://github.com/primer/css/commit/13de16c7d6787d221216d8ff21afccf6f73f4221) Thanks [@jonrohan](https://github.com/jonrohan)! - Remove break-word from utilities
|
|
20
22
|
|
|
21
23
|
### Minor Changes
|
|
22
24
|
|
|
@@ -40,7 +42,9 @@
|
|
|
40
42
|
|
|
41
43
|
* [#1631](https://github.com/primer/css/pull/1631) [`5f3689b9`](https://github.com/primer/css/commit/5f3689b907163f7be9e78abb9fc762978beda06d) Thanks [@jonrohan](https://github.com/jonrohan)! - Updating @primer/stylelint-config and @primer/primitives to 5.0
|
|
42
44
|
|
|
43
|
-
- [#
|
|
45
|
+
- [#1659](https://github.com/primer/css/pull/1659) [`d32e42f9`](https://github.com/primer/css/commit/d32e42f9ca0ca4eef546d190171cd9e5b4ec8f3d) Thanks [@jonrohan](https://github.com/jonrohan)! - Rename protanopia themes to colorblind.
|
|
46
|
+
|
|
47
|
+
* [#1658](https://github.com/primer/css/pull/1658) [`0ed0307b`](https://github.com/primer/css/commit/0ed0307b7b79ae59a898c3e8b5e1c9bd2dcd4a7d) Thanks [@koddsson](https://github.com/koddsson)! - Increase the z-index value for the details dialog overlay.
|
|
44
48
|
|
|
45
49
|
## 17.11.0
|
|
46
50
|
|
package/color-modes/index.scss
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// All themes
|
|
2
2
|
|
|
3
3
|
@import "./themes/light.scss";
|
|
4
|
-
@import "./themes/
|
|
4
|
+
@import "./themes/light_colorblind.scss";
|
|
5
5
|
@import "./themes/dark.scss";
|
|
6
6
|
@import "./themes/dark_dimmed.scss";
|
|
7
7
|
@import "./themes/dark_high_contrast.scss";
|
|
8
|
-
@import "./themes/
|
|
8
|
+
@import "./themes/dark_colorblind.scss";
|
|
9
9
|
@import "./native.scss";
|
package/core/index.scss
CHANGED
|
@@ -6,24 +6,23 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
// Global requirements
|
|
9
|
-
@import
|
|
9
|
+
@import "../support/index.scss";
|
|
10
10
|
|
|
11
11
|
// Color modes
|
|
12
12
|
|
|
13
13
|
// Core modules
|
|
14
|
-
@import
|
|
15
|
-
@import
|
|
16
|
-
@import
|
|
17
|
-
@import
|
|
18
|
-
@import
|
|
19
|
-
@import
|
|
20
|
-
@import
|
|
21
|
-
@import
|
|
22
|
-
@import
|
|
23
|
-
@import
|
|
24
|
-
@import
|
|
25
|
-
@import
|
|
26
|
-
@import '../truncate/index.scss';
|
|
14
|
+
@import "../base/index.scss";
|
|
15
|
+
@import "../box/index.scss";
|
|
16
|
+
@import "../breadcrumb/index.scss";
|
|
17
|
+
@import "../buttons/index.scss";
|
|
18
|
+
@import "../table-object/index.scss";
|
|
19
|
+
@import "../forms/index.scss";
|
|
20
|
+
@import "../layout/index.scss";
|
|
21
|
+
@import "../links/index.scss";
|
|
22
|
+
@import "../navigation/index.scss";
|
|
23
|
+
@import "../pagination/index.scss";
|
|
24
|
+
@import "../tooltips/index.scss";
|
|
25
|
+
@import "../truncate/index.scss";
|
|
27
26
|
|
|
28
27
|
// Utilities always go last so that they can override components
|
|
29
|
-
@import
|
|
28
|
+
@import "../utilities/index.scss";
|
package/deprecations.json
CHANGED
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"color-border-secondary": "color-border-muted",
|
|
21
21
|
"color-border-tertiary": "color-border-default",
|
|
22
22
|
"color-border-inverse": null,
|
|
23
|
-
"color-border-info": "color-border-accent",
|
|
24
|
-
"color-border-warning": "color-border-attention",
|
|
23
|
+
"color-border-info": "color-border-accent-emphasis",
|
|
24
|
+
"color-border-warning": "color-border-attention-emphasis",
|
|
25
25
|
"color-bg-canvas": "color-bg-default",
|
|
26
|
-
"color-bg-canvas-inverse": "color-bg-
|
|
26
|
+
"color-bg-canvas-inverse": "color-bg-emphasis",
|
|
27
27
|
"color-bg-canvas-inset": "color-bg-inset",
|
|
28
28
|
"color-bg-primary": "color-bg-default",
|
|
29
29
|
"color-bg-secondary": "color-bg-subtle",
|