openproject-primer_view_components 0.75.1 → 0.76.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 +20 -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/select_panel.rb +12 -11
- data/app/components/primer/alpha/toggle_switch.rb +2 -2
- data/app/components/primer/alpha/tree_view/tree_view.js +4 -3
- data/app/components/primer/alpha/tree_view/tree_view.ts +3 -4
- data/app/components/primer/beta/avatar_stack.css +1 -1
- data/app/components/primer/beta/avatar_stack.css.json +0 -1
- data/app/components/primer/beta/avatar_stack.css.map +1 -1
- data/app/components/primer/beta/avatar_stack.pcss +0 -10
- data/config/locales/en.yml +4 -0
- data/lib/primer/view_components/version.rb +2 -2
- data/previews/primer/alpha/select_panel_preview/remote_fetch_form.html.erb +0 -1
- data/previews/primer/alpha/select_panel_preview/select_panel_with_icon_button.html.erb +19 -0
- data/previews/primer/alpha/select_panel_preview.rb +8 -0
- data/static/arguments.json +1 -7
- data/static/info_arch.json +20 -7
- data/static/previews.json +13 -0
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27b3203d8702b1bbb1094c751b173acf0a25385f20e769a2ab5b0d3c9cdbf888
|
|
4
|
+
data.tar.gz: 3d4baadc4718a2ffd0153ebbd67ba69ebc5b90d1d25618402144020c7a9c5840
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9171d821952afa6befaebaafe5066c095d055358d227fe53901c1a2d65c59718c8c48e3267428322be9e9ef8ded97b6c160ebfd0a9fa3ca5ac2a523e5acb252
|
|
7
|
+
data.tar.gz: 572c4ec21745745cf729ec1585c8294030d9c3e3747b3c445f4de77f0a7cf8122d2907decca2025392d8727f568de5334f06eb8b100097279d050bd3c0f13d2f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 0.76.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#3713](https://github.com/primer/view_components/pull/3713) [`4ba92f5`](https://github.com/opf/primer_view_components/commit/4ba92f579fff940943b9ee04d3097e28cb9588a6) Thanks [@kendallgassner](https://github.com/kendallgassner)! - Enable use_experimental_non_local_form for all SelectPanels
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#3731](https://github.com/primer/view_components/pull/3731) [`15ab908`](https://github.com/opf/primer_view_components/commit/15ab9083e8ad06185c727071be5ee2a0eab14ae4) Thanks [@kendallgassner](https://github.com/kendallgassner)! - Updates SelectPanel anchor to allow IconButtons
|
|
12
|
+
|
|
13
|
+
- [#378](https://github.com/opf/primer_view_components/pull/378) [`7f3e4ef`](https://github.com/opf/primer_view_components/commit/7f3e4ef832277c4a861e8e00bfd0112a0c0250b2) Thanks [@bsatarnejad](https://github.com/bsatarnejad)! - [68697] Allow deselecting tree view items in single select, when clicking on the selected item
|
|
14
|
+
|
|
15
|
+
- [#3727](https://github.com/primer/view_components/pull/3727) [`1ebafaa`](https://github.com/opf/primer_view_components/commit/1ebafaabfd3424c78dd41610372b8c0e684bac1b) Thanks [@jonrohan](https://github.com/jonrohan)! - Remove left/right bg color borders from Avatar Stack
|
|
16
|
+
|
|
17
|
+
## 0.75.2
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [#372](https://github.com/opf/primer_view_components/pull/372) [`eedf030`](https://github.com/opf/primer_view_components/commit/eedf030b9d583f0d924def49b6af41b34dc15646) Thanks [@bsatarnejad](https://github.com/bsatarnejad)! - [62820] Primer Alpha::ToggleSwitch locale support, set default values for On and Off labels
|
|
22
|
+
|
|
3
23
|
## 0.75.1
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|