@primer/css 20.3.0-rc.7f8e8576 → 20.3.0-rc.a3b107c6
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 +4 -0
- package/avatars/avatar-stack.scss +0 -1
- package/core/index.scss +1 -0
- package/dist/core.css +1 -1
- package/dist/core.css.map +1 -1
- package/dist/meta.json +86 -75
- package/dist/primer.css +1 -1
- package/dist/primer.css.map +1 -1
- package/dist/segmented-control.css +2 -0
- package/dist/segmented-control.css.map +1 -0
- package/dist/segmented-control.js +1 -0
- package/dist/stats/core.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/dist/stats/segmented-control.json +1 -0
- package/package.json +4 -4
- package/segmented-control/README.md +25 -0
- package/segmented-control/index.scss +3 -0
- package/segmented-control/segmented-control.scss +159 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
- [#2147](https://github.com/primer/css/pull/2147) [`9dd2a49e`](https://github.com/primer/css/commit/9dd2a49e2633f337c2316a43907f17dfd5c3173b) Thanks [@vdepizzol](https://github.com/vdepizzol)! - Add AppFrame component
|
|
8
8
|
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#2083](https://github.com/primer/css/pull/2083) [`13be7ef1`](https://github.com/primer/css/commit/13be7ef18d2d9874e7a08f20d9f93538752517c6) Thanks [@simurai](https://github.com/simurai)! - Add `SegmentedControl` component
|
|
12
|
+
|
|
9
13
|
## 20.2.4
|
|
10
14
|
|
|
11
15
|
### Patch Changes
|
package/core/index.scss
CHANGED
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
@import '../links/index.scss';
|
|
23
23
|
@import '../navigation/index.scss';
|
|
24
24
|
@import '../pagination/index.scss';
|
|
25
|
+
@import '../segmented-control/index.scss';
|
|
25
26
|
@import '../tooltips/index.scss';
|
|
26
27
|
@import '../truncate/index.scss';
|
|
27
28
|
@import '../overlay/index.scss';
|