primer_view_components 0.20.0 → 0.21.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/app/assets/javascripts/primer_view_components.js +1 -1
- data/app/assets/javascripts/primer_view_components.js.map +1 -1
- data/app/assets/styles/primer_view_components.css +1 -1
- data/app/assets/styles/primer_view_components.css.map +1 -1
- data/app/components/primer/alpha/banner.css +1 -1
- data/app/components/primer/alpha/banner.css.map +1 -1
- data/app/components/primer/alpha/banner.pcss +4 -4
- data/app/components/primer/alpha/dialog.css +1 -1
- data/app/components/primer/alpha/dialog.css.json +1 -2
- data/app/components/primer/alpha/dialog.css.map +1 -1
- data/app/components/primer/alpha/dialog.pcss +8 -7
- data/app/components/primer/alpha/segmented_control.css +1 -1
- data/app/components/primer/alpha/segmented_control.css.map +1 -1
- data/app/components/primer/alpha/segmented_control.pcss +1 -0
- data/app/components/primer/alpha/tool_tip.js +46 -77
- data/app/components/primer/alpha/tool_tip.ts +46 -77
- data/app/components/primer/beta/flash.css +1 -1
- data/app/components/primer/beta/flash.css.map +1 -1
- data/app/components/primer/beta/flash.pcss +4 -4
- data/lib/primer/view_components/version.rb +1 -1
- data/previews/primer/alpha/tooltip_preview/tooltip_e.html.erb +6 -0
- data/previews/primer/alpha/tooltip_preview/tooltip_n.html.erb +6 -0
- data/previews/primer/alpha/tooltip_preview/tooltip_ne.html.erb +6 -0
- data/previews/primer/alpha/tooltip_preview/tooltip_nw.html.erb +6 -0
- data/previews/primer/alpha/tooltip_preview/tooltip_s.html.erb +6 -0
- data/previews/primer/alpha/tooltip_preview/tooltip_se.html.erb +6 -0
- data/previews/primer/alpha/tooltip_preview/tooltip_sw.html.erb +6 -0
- data/previews/primer/alpha/tooltip_preview/tooltip_w.html.erb +6 -0
- data/previews/primer/alpha/tooltip_preview.rb +80 -0
- data/static/info_arch.json +104 -0
- data/static/previews.json +104 -0
- metadata +10 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92f7f626ea20a932bdd26d5f0627186bb47fd2d9fa4bb25c422ae942c591ee36
|
4
|
+
data.tar.gz: 26648104089e413857f05bcf5b30dcc96e0acb5008100a6c21b3e32083ff4c84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5e5ef0584fae43d0ed7349a8e30fad674df6f4345ca96abc3d93c33dd54dd77822b83f8af89b83d05e8f8f13504920c9fd77e71656fbdde0edea146923049c0
|
7
|
+
data.tar.gz: 14381932260e2fe23a224f5befc34d9976a347f839a96d72b2a1761d0038af168e007a13faeaab02e4c6f8031686a2b7fa1cc9390849cbb3e6ec60971059fbe0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.21.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- [#2603](https://github.com/primer/view_components/pull/2603) [`bbc1776`](https://github.com/primer/view_components/commit/bbc1776b44e089516658aa76d2fec3724a4dccfc) Thanks [@langermank](https://github.com/langermank)! - Tooltip visual refresh to match Primer React
|
8
|
+
|
9
|
+
- [#2693](https://github.com/primer/view_components/pull/2693) [`852e24f`](https://github.com/primer/view_components/commit/852e24ff578aa8c67902502fef4d7eda1476cfb8) Thanks [@camertron](https://github.com/camertron)! - - Bug fix: inactive button colors
|
10
|
+
- Bug fix: double border/box-shadow on popover and dropdown
|
11
|
+
- Bug fix: text color for primary button in dark dimmed
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- [#2706](https://github.com/primer/view_components/pull/2706) [`60c5f01`](https://github.com/primer/view_components/commit/60c5f014e60c6f2e5e5e1bcfb8702fdf48d26fa7) Thanks [@camertron](https://github.com/camertron)! - Fix dialog CSS to prevent tooltip issues
|
16
|
+
|
17
|
+
- [#2705](https://github.com/primer/view_components/pull/2705) [`90192bb`](https://github.com/primer/view_components/commit/90192bb652992cc47672a571aa8fb03b866703c5) Thanks [@langermank](https://github.com/langermank)! - Revert "Swap bg-gradient with bg-color for Banner/Flash"
|
18
|
+
|
3
19
|
## 0.20.0
|
4
20
|
|
5
21
|
### Minor Changes
|