openproject-primer_view_components 0.53.1 → 0.54.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a5ebd3e6efce535bd30f0428fd7cdd7771cef126a196dd41ff71519ac80a427
4
- data.tar.gz: fec7772667aff0aa82f06cc19740eeb121e3228aa3142645e2c86938e58e57f6
3
+ metadata.gz: ec714a72812634443605b5daf32260ccd404d3531ea1043d12c7b5188effb702
4
+ data.tar.gz: 8c90576631d011f1d67ad3fa9ce560b764bedd3683a9fd479e532d8d2166def8
5
5
  SHA512:
6
- metadata.gz: cb26f8fa7cf53c73d6560c002e1568b6a217c18e4ad462464ed1f510507c7030b63a2986e84c7a1d8d1c64d952d5166226ae5948839ae418d18a94b7489d331a
7
- data.tar.gz: ddd1fe830a42b9bfd9fe6918c057d7e90c323e69b68e8233a6555f1732107672d07331358a5519f8d2173e6206e313d37c851bccc12b15b925006f19bf8373c9
6
+ metadata.gz: 6dff655ff2f4d2a554049eec2aea33c670e24e2d54b1e851d27d298b3543f6e120d13fbaaa931ba3ca53930d9b13076c18e8030588b702ab7c8dbdee9cb47867
7
+ data.tar.gz: 9ba59040ca8905e0ac04d22a2d8b518e44a7ed411f886953e29557be78a7e6e24ba8b8f85c486dc84a02f8822f6b12e57090993efdfd0cf9c6a1d6db780447d3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.54.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#246](https://github.com/opf/primer_view_components/pull/246) [`26fdce6`](https://github.com/opf/primer_view_components/commit/26fdce6b70caf96e46d5867e52ab23b6360b45f6) Thanks [@myabc](https://github.com/myabc)! - DangerDialog now uses the "alertdialog" ARIA role
8
+
9
+ - [#245](https://github.com/opf/primer_view_components/pull/245) [`27b6af1`](https://github.com/opf/primer_view_components/commit/27b6af1cf733cb3e4ab2816a970d96d558b1dc0a) Thanks [@myabc](https://github.com/myabc)! - Fix broken FeedbackDialog aria-describedby value - was referencing non-existent id.
10
+
11
+ - [#243](https://github.com/opf/primer_view_components/pull/243) [`79986c4`](https://github.com/opf/primer_view_components/commit/79986c435adbfed95fe2128f03949e37a920039d) Thanks [@myabc](https://github.com/myabc)! - Fix DangerDialog body scroll behaviour when containing a form: the dialog's confirm and cancel buttons should now always be visible in the viewport, never scrolling with the other dialog content.
12
+
13
+ - [#245](https://github.com/opf/primer_view_components/pull/245) [`27b6af1`](https://github.com/opf/primer_view_components/commit/27b6af1cf733cb3e4ab2816a970d96d558b1dc0a) Thanks [@myabc](https://github.com/myabc)! - Fix broken DangerDialog aria-describedby value - was referencing non-existent id.
14
+
15
+ ## 0.54.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [#239](https://github.com/opf/primer_view_components/pull/239) [`2724f0c`](https://github.com/opf/primer_view_components/commit/2724f0c3f22b6266bf82dfbfe1b577622e3e26f0) Thanks [@HDinger](https://github.com/HDinger)! - Create `Primer::OpenProject::Heading` for OpenProject specific (content) headers. At the same time, increase font-weight for `Primer::OpenProject::PageHeader` to gain more visibility in the page structure
20
+
3
21
  ## 0.53.1
4
22
 
5
23
  ### Patch Changes
@@ -1,6 +1,7 @@
1
1
  declare class DangerDialogFormHelperElement extends HTMLElement {
2
2
  #private;
3
3
  checkbox: HTMLInputElement | undefined;
4
+ get form(): HTMLFormElement | null;
4
5
  get submitButton(): HTMLButtonElement | HTMLInputElement;
5
6
  connectedCallback(): void;
6
7
  toggle(): void;