openproject-primer_view_components 0.21.0 → 0.22.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 +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/action_list.css +1 -1
- data/app/components/primer/alpha/action_list.css.map +1 -1
- data/app/components/primer/alpha/action_list.pcss +11 -33
- data/app/components/primer/alpha/segmented_control.css +1 -1
- data/app/components/primer/alpha/segmented_control.css.json +0 -4
- data/app/components/primer/alpha/segmented_control.css.map +1 -1
- data/app/components/primer/alpha/segmented_control.pcss +1 -18
- data/app/components/primer/alpha/segmented_control.rb +0 -1
- data/app/components/primer/dialog_helper.js +18 -5
- data/app/components/primer/dialog_helper.ts +17 -4
- data/lib/primer/view_components/version.rb +2 -2
- data/previews/primer/alpha/dialog_preview/dialog_inside_overlay.html.erb +9 -0
- data/previews/primer/alpha/dialog_preview/nested_dialog.html.erb +7 -0
- data/previews/primer/alpha/dialog_preview.rb +23 -0
- data/previews/primer/alpha/segmented_control_preview.rb +1 -52
- data/previews/primer/forms_preview/custom_width_fields_form.html.erb +2 -0
- data/static/classes.json +0 -3
- data/static/constants.json +2 -4
- data/static/info_arch.json +13 -65
- data/static/previews.json +13 -65
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e770336457a8f1b429496a1538adff9a185e9e06d3afd64e749fec1d259d73bc
|
4
|
+
data.tar.gz: 4b84bba50129792151486fda5207a2fd7d2dc8fb200ec34aa8608ebc542aced7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff0f06b17297d6e8c208c74ab95f5b8f009e9e435987949f4f0b1eda782426396f8617c58ba66d08d7c288423df7cc388ebc200962f1063baa4d24212b8e48d1
|
7
|
+
data.tar.gz: 3baabe23abce3fbdad71edea2210f9639471eb7a2f5017dc20beeac4458eefa1e8bd2d1c37cfed4716f0fbfbaf36edb47b54a533bbff076d98e8a668fd5ea188
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.22.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#2554](https://github.com/primer/view_components/pull/2554) [`652e795`](https://github.com/opf/primer_view_components/commit/652e7957c59ddc5d05af9c9bc797a917d01cf453) Thanks [@keithamus](https://github.com/keithamus)! - Ensure Overlays that open dialogs do not close when the Dialog opens
|
8
|
+
|
9
|
+
- [#2553](https://github.com/primer/view_components/pull/2553) [`1ca2f17`](https://github.com/opf/primer_view_components/commit/1ca2f1790a5fb95069f85936d6cb1deafad782fd) Thanks [@keithamus](https://github.com/keithamus)! - Ensure only direct clicks to the dialog can close it
|
10
|
+
|
11
|
+
## 0.22.0
|
12
|
+
|
13
|
+
### Minor Changes
|
14
|
+
|
15
|
+
- [#2551](https://github.com/primer/view_components/pull/2551) [`5340243`](https://github.com/opf/primer_view_components/commit/5340243c91a5a7d020cf216f421704fc5a76afca) Thanks [@jonrohan](https://github.com/jonrohan)! - Remove large size options from SegmentedControl
|
16
|
+
|
17
|
+
### Patch Changes
|
18
|
+
|
19
|
+
- [#2527](https://github.com/primer/view_components/pull/2527) [`1d20198`](https://github.com/opf/primer_view_components/commit/1d201989bfe0d1fb6cdb879f82264bdc55978d8d) Thanks [@keithamus](https://github.com/keithamus)! - Remove animations on actionlist checkmark
|
20
|
+
|
21
|
+
- [#2549](https://github.com/primer/view_components/pull/2549) [`1259249`](https://github.com/opf/primer_view_components/commit/1259249eaddd4b8744a3dc212fb9f8800b45daac) Thanks [@keithamus](https://github.com/keithamus)! - Ensure dialogs do not close when a child menu item (or similar) is clicked
|
22
|
+
|
3
23
|
## 0.21.0
|
4
24
|
|
5
25
|
### Minor Changes
|