openproject-primer_view_components 0.52.1 → 0.52.3
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 +22 -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_menu/action_menu_element.js +1 -0
- data/app/components/primer/alpha/action_menu/action_menu_element.ts +1 -0
- data/app/components/primer/alpha/text_field.css +1 -1
- data/app/components/primer/alpha/text_field.css.json +14 -0
- data/app/components/primer/alpha/text_field.css.map +1 -1
- data/app/components/primer/alpha/text_field.pcss +89 -2
- data/app/components/primer/beta/button.html.erb +1 -1
- data/app/components/primer/beta/button.rb +2 -1
- data/app/lib/primer/forms/acts_as_component.rb +32 -17
- data/app/lib/primer/forms/base_component.rb +5 -12
- data/app/lib/primer/forms/dsl/text_field_input.rb +10 -7
- data/app/lib/primer/forms/text_field.html.erb +5 -0
- data/app/lib/primer/forms/text_field.rb +37 -0
- data/lib/primer/classify/utilities.yml +1 -1
- data/lib/primer/view_components/version.rb +1 -1
- data/previews/primer/alpha/text_field_preview.rb +30 -0
- data/previews/primer/alpha/tooltip_preview.rb +1 -1
- data/static/arguments.json +6 -0
- data/static/info_arch.json +71 -0
- data/static/previews.json +65 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab6dec56ffb6d80a8f8d4ccbed980b75707157fbdc6640c010940ebb83975f55
|
4
|
+
data.tar.gz: ad31a564b5a1d9da8c06a3ac228e6c50eabd6c9ea77700f7f60459640bbc2ac3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 359bc6693381fe12ea642afefea1497c049cb0511349723bc23f63226baf86375df461d18eac57779356ed5a8d0c71b6b763989c03a641f221f2a6e95b1d11fc
|
7
|
+
data.tar.gz: bef96cd8baaa0fced4fda9f4e44d0c71e93ab8a876a17e27db9f899db1672e25768327b598499fce225a9c78c6016c36c8f2e4c2dacc2552bdd2a3d5d40828b7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.52.3
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#3270](https://github.com/primer/view_components/pull/3270) [`fa16aec`](https://github.com/opf/primer_view_components/commit/fa16aec26afb654a627c5c7ed68812f1fa807d0a) Thanks [@khiga8](https://github.com/khiga8)! - Ensure counter content is exposed to screen reader users
|
8
|
+
|
9
|
+
## 0.52.2
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- [#3260](https://github.com/primer/view_components/pull/3260) [`87b0ddb`](https://github.com/opf/primer_view_components/commit/87b0ddbfc7368156d04c68bd7fccbe407c9c03e4) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Add more support for ruby 3.4 in tests
|
14
|
+
|
15
|
+
- [#3267](https://github.com/primer/view_components/pull/3267) [`7378b29`](https://github.com/opf/primer_view_components/commit/7378b29bc2e0341e12c6921c246667b8a3ab820c) Thanks [@camertron](https://github.com/camertron)! - Add trailing visuals to the text field
|
16
|
+
|
17
|
+
- [#3265](https://github.com/primer/view_components/pull/3265) [`3c2454a`](https://github.com/opf/primer_view_components/commit/3c2454a304baa045e4234375d19713427f467395) Thanks [@myabc](https://github.com/myabc)! - Fix incorrect classname keys when generating `lib/primer/classify/utilities.yml` with `bundle exec rake utilities:build`.
|
18
|
+
|
19
|
+
- [#3268](https://github.com/primer/view_components/pull/3268) [`43e621e`](https://github.com/opf/primer_view_components/commit/43e621eff9b48352ae5580f4864a98e18c2d2dc9) Thanks [@camertron](https://github.com/camertron)! - Ensure ActionMenu's itemActivated event bubbles
|
20
|
+
|
21
|
+
- [#3266](https://github.com/primer/view_components/pull/3266) [`73d64d9`](https://github.com/opf/primer_view_components/commit/73d64d975bff0f360e20bcc477af427cf1c7e797) Thanks [@camertron](https://github.com/camertron)! - Fix memory leak in forms framework causing form templates to be compiled on each render in development
|
22
|
+
|
23
|
+
- [#3257](https://github.com/primer/view_components/pull/3257) [`9f87ab1`](https://github.com/opf/primer_view_components/commit/9f87ab122fbe7a85552b3124c4efbcec060e9af4) Thanks [@joelhawksley](https://github.com/joelhawksley)! - add support for Ruby 3.4 in test suite
|
24
|
+
|
3
25
|
## 0.52.1
|
4
26
|
|
5
27
|
### Patch Changes
|