openproject-primer_view_components 0.35.2 → 0.36.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -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_list/item.rb +5 -3
- data/app/components/primer/alpha/action_list.rb +14 -2
- data/app/components/primer/alpha/action_menu.rb +4 -1
- data/app/components/primer/alpha/text_field.css +1 -1
- data/app/components/primer/alpha/text_field.css.map +1 -1
- data/app/components/primer/focus_group.js +1 -1
- data/app/components/primer/focus_group.ts +1 -1
- data/app/components/primer/open_project/input_group.html.erb +10 -2
- data/app/components/primer/open_project/input_group.rb +10 -2
- data/app/components/primer/open_project/page_header.css +1 -1
- data/app/components/primer/open_project/page_header.css.map +1 -1
- data/app/components/primer/open_project/page_header.pcss +1 -1
- data/lib/primer/classify/utilities.rb +13 -13
- data/lib/primer/view_components/version.rb +2 -2
- data/previews/primer/alpha/action_list_preview.rb +19 -0
- data/previews/primer/open_project/input_group_preview.rb +14 -1
- data/static/arguments.json +18 -0
- data/static/constants.json +6 -0
- data/static/info_arch.json +58 -0
- data/static/previews.json +26 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94b660fc74cac296f4ab8aac594ce1b2b8d61686a56d06ba4d2d58e4fb8de36e
|
4
|
+
data.tar.gz: c221df12a23bdd46ce531b8b1e083a5042eb74f4956db9eea0789031b48db2d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87b535e0fc4ecc0bd03c2f661e99bb793e37391e0a3316c60a23271ac3f887e4af5ceaea0e3904e46a5fc1dda39a3a94282181e5870c158d84280a7244870ce4
|
7
|
+
data.tar.gz: fe99795fe87038995734ed2fef0dc43a1f3b071728fb65bd756ec189d21e221ab6bda696267833154590553acc0c439da670be80188e065b107159e46a1761a9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,30 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.36.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#140](https://github.com/opf/primer_view_components/pull/140) [`56c285c`](https://github.com/opf/primer_view_components/commit/56c285cee825e9f8fb3f2c8b0ca79924566b2819) Thanks [@bsatarnejad](https://github.com/bsatarnejad)! - Space between title and tabs in page header component is increased.
|
8
|
+
[56060] spacing between title and tabs in page headers is too small
|
9
|
+
|
10
|
+
- [#142](https://github.com/opf/primer_view_components/pull/142) [`55abb63`](https://github.com/opf/primer_view_components/commit/55abb63a52d115c51ab8aedbcecc49679443dee5) Thanks [@bsatarnejad](https://github.com/bsatarnejad)! - Space between title and tabs in page header component is increased.
|
11
|
+
[56060] Spacing between title and tabs in page headers is too small
|
12
|
+
|
13
|
+
- [#71](https://github.com/opf/primer_view_components/pull/71) [`1a73dd4`](https://github.com/opf/primer_view_components/commit/1a73dd4275db9514a735ea0a6b59d2640abc4109) Thanks [@akabiru](https://github.com/akabiru)! - `Primer::OpenProject::InputGroup` component text input group broke when provided with a caption.
|
14
|
+
Split out the caption into it's own flex container so it's isolated from the text input + trailing input action.
|
15
|
+
|
16
|
+
## 0.36.0
|
17
|
+
|
18
|
+
### Minor Changes
|
19
|
+
|
20
|
+
- [#2922](https://github.com/primer/view_components/pull/2922) [`fb5917d`](https://github.com/opf/primer_view_components/commit/fb5917dc9e6246af85a8199e6e47f73e2db3ba70) Thanks [@camertron](https://github.com/camertron)! - Change ActionMenu to accept and forward overlay arguments
|
21
|
+
|
22
|
+
### Patch Changes
|
23
|
+
|
24
|
+
- [#2925](https://github.com/primer/view_components/pull/2925) [`6c730c4`](https://github.com/opf/primer_view_components/commit/6c730c4b8eeb050cf706d4843a87f2740e379a49) Thanks [@kendallgassner](https://github.com/kendallgassner)! - Update ActionList such that if role='listbox' is passed in the items render as options
|
25
|
+
|
26
|
+
- [#2924](https://github.com/primer/view_components/pull/2924) [`235544d`](https://github.com/opf/primer_view_components/commit/235544d3f0770717c16532e6f0801d6249f6a884) Thanks [@kendallgassner](https://github.com/kendallgassner)! - Add a valid selector to focus-group
|
27
|
+
|
3
28
|
## 0.35.2
|
4
29
|
|
5
30
|
### Patch Changes
|