openproject-primer_view_components 0.9.1 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +28 -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/action_bar/item.rb +3 -2
- data/app/components/primer/alpha/action_bar.rb +1 -5
- data/app/components/primer/alpha/overlay.css +1 -1
- data/app/components/primer/alpha/overlay.css.json +3 -1
- data/app/components/primer/alpha/overlay.css.map +1 -1
- data/app/components/primer/alpha/overlay.pcss +4 -0
- data/app/components/primer/alpha/tool_tip.js +28 -8
- data/app/components/primer/alpha/tool_tip.ts +27 -8
- data/app/components/primer/anchored_position.js +14 -5
- data/app/components/primer/anchored_position.ts +13 -4
- data/app/components/primer/beta/spinner.html.erb +1 -1
- data/lib/primer/view_components/linters/migrations/iconbutton_component.rb +36 -0
- data/lib/primer/view_components/version.rb +2 -2
- data/previews/primer/alpha/overlay_preview/in_an_action_menu.html.erb +13 -0
- data/previews/primer/alpha/overlay_preview.rb +5 -0
- data/static/info_arch.json +13 -0
- data/static/previews.json +13 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72ca823337f4d723d643d53296f508372124c9edb6f822bd305bd88780954d9c
|
4
|
+
data.tar.gz: cf0658ccd772fd39061ab945717f841422e8a3f701222dcd6cb54dcfc614c6a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55412b39598e67c9d0708e0b09a464d4c138fedb57d26fd2596bf1caa024700b61ea0208f5f17727deaad097cb09ad9305f85310ea9758924357572545736ab3
|
7
|
+
data.tar.gz: 24dc87933bdf299ef660a6fbc72726311cd9ba05f7255d58a8a56c8db994020cb95dd296e4bfac497e85c6eed280fb7ef5f85eea4e1143da3e2e2517df2f16ef
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,33 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.10.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- [#2205](https://github.com/primer/view_components/pull/2205) [`88ac3095`](https://github.com/opf/primer_view_components/commit/88ac309577b5b735af5067ee6ab2c8c30f48aefc) Thanks [@TylerJDev](https://github.com/TylerJDev)! - Add rubocop linter for `IconButton` component
|
8
|
+
|
9
|
+
<!-- Changed components: Primer::IconButton -->
|
10
|
+
|
11
|
+
- [#2223](https://github.com/primer/view_components/pull/2223) [`00b7d5d7`](https://github.com/opf/primer_view_components/commit/00b7d5d78e2f52dc6bc6c54689e50da976289203) Thanks [@jonrohan](https://github.com/jonrohan)! - Moving the render for the ActionBar::Item from the slot initializer to the call method.
|
12
|
+
|
13
|
+
<!-- Changed components: _none_ -->
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- [#2227](https://github.com/primer/view_components/pull/2227) [`bb336bb6`](https://github.com/opf/primer_view_components/commit/bb336bb6f034e20778b4834edae3540c365b9d9f) Thanks [@jonrohan](https://github.com/jonrohan)! - [Bug] Don't fill in the spinner circle svg path
|
18
|
+
|
19
|
+
- [#2237](https://github.com/primer/view_components/pull/2237) [`70a8336f`](https://github.com/opf/primer_view_components/commit/70a8336fda45b144f81c1ece54b17a26037126e4) Thanks [@jonrohan](https://github.com/jonrohan)! - Fixing ActionBar more menu items including buttons with no type
|
20
|
+
|
21
|
+
<!-- Changed components: Primer::Alpha::ActionBar -->
|
22
|
+
|
23
|
+
- [#2204](https://github.com/primer/view_components/pull/2204) [`ed1644a2`](https://github.com/opf/primer_view_components/commit/ed1644a2fa5b701611a13513cb903774f3f74152) Thanks [@keithamus](https://github.com/keithamus)! - Fix errors in older browsers with :popover-open
|
24
|
+
|
25
|
+
<!-- Changed components: Primer::Alpha::Tooltip -->
|
26
|
+
|
27
|
+
- [#2236](https://github.com/primer/view_components/pull/2236) [`d663e450`](https://github.com/opf/primer_view_components/commit/d663e4508341f5b9ef1788b8a2231782ce3ed44d) Thanks [@keithamus](https://github.com/keithamus)! - Centre anchored-position elements when their anchor is not present
|
28
|
+
|
29
|
+
<!-- Changed components: Primer::Alpha::Overlay -->
|
30
|
+
|
3
31
|
## 0.9.1
|
4
32
|
|
5
33
|
### Patch Changes
|