openproject-primer_view_components 0.54.0 → 0.54.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b232a9c493b3fe92bf4613685409c8c14737e47ffd7a4372e6b828738d1187e
4
- data.tar.gz: e0342d893361f18f2aafb3cd17ef6115da3768396811daf1edd740a6c70acd97
3
+ metadata.gz: ec714a72812634443605b5daf32260ccd404d3531ea1043d12c7b5188effb702
4
+ data.tar.gz: 8c90576631d011f1d67ad3fa9ce560b764bedd3683a9fd479e532d8d2166def8
5
5
  SHA512:
6
- metadata.gz: b89b889be45f0cbbdedad4f6b582b4b3ebc3f40be4a24e63676203e1e991f0d671b5f22cdc4b1642b004e960920fb07611a9225d5f7de25be7a927ab2e01f1b9
7
- data.tar.gz: f722c7663ae6c41af1c598b84fb4842f44594be59c345c598330a4c38326b6e52c4fadad104c54c805bb6467af29c0421755964ffbb135b13c6c1495320097be
6
+ metadata.gz: 6dff655ff2f4d2a554049eec2aea33c670e24e2d54b1e851d27d298b3543f6e120d13fbaaa931ba3ca53930d9b13076c18e8030588b702ab7c8dbdee9cb47867
7
+ data.tar.gz: 9ba59040ca8905e0ac04d22a2d8b518e44a7ed411f886953e29557be78a7e6e24ba8b8f85c486dc84a02f8822f6b12e57090993efdfd0cf9c6a1d6db780447d3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
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
+
3
15
  ## 0.54.0
4
16
 
5
17
  ### Minor 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;