openproject-primer_view_components 0.45.0 → 0.46.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: 200c93917da76df084b238c3ece5f0044b3b3277c4a4b9a13a4a56cb2738b854
4
- data.tar.gz: 7fe82bcb136c96f6034ab3e7e23006f421bbcc085aa9ba4bc92ec2e20611b6ff
3
+ metadata.gz: 52421c5977e63c54fa9795501418459324c0338850342dd2169a319dd60ca3c2
4
+ data.tar.gz: 51358821492139ed8d09bb4c3575b0c77c11990f23fbbe2747cf4416d1ad6737
5
5
  SHA512:
6
- metadata.gz: 73bbbd97e26037041987f0d1777b555eba176b38788007cf385b9fb64f401cb528b047727f39867d25528bc96b68428b6f6df863915d2d317468fb1fd1541523
7
- data.tar.gz: d09fc23e471daa0095de4b36449bd013cddaae7a19d1b11ca206feacfab6926b06ea615ad5267da708eff2ae673fbf94a269b3af63e9beb20334593a754bb8e8
6
+ metadata.gz: 9911c6965a9d6c909d70da6da23c7d1fc2be2eb8471abdc4e2c9dc95fdb0f02160e91d7960f7ec8a73460cd5152b5c58ecb1ea2173ab036fed18a7879fa9157c
7
+ data.tar.gz: '038b35746f2d0df2d73066bda8471c31ef18143718bd486f0fb2f3dc35e5af20e2d063ad7273caa9d118ae7a84f14f51e58e0b3c7ccaaf53377f88cdb3cd4b43'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.46.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#186](https://github.com/opf/primer_view_components/pull/186) [`4d5d599`](https://github.com/opf/primer_view_components/commit/4d5d5994e2995a5a3e159521c5accb0525e7c7b8) Thanks [@HDinger](https://github.com/HDinger)! - Do not overwrite custom data attributes
8
+
9
+ ## 0.46.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#174](https://github.com/opf/primer_view_components/pull/174) [`95adbb8`](https://github.com/opf/primer_view_components/commit/95adbb8f59be14e0db515e944b8f9c81f0ea778b) Thanks [@dombesz](https://github.com/dombesz)! - Toggle the visibility of the clear button on the SubHeader component's filter input based on its content.
14
+
15
+ ### Patch Changes
16
+
17
+ - [#184](https://github.com/opf/primer_view_components/pull/184) [`1a72661`](https://github.com/opf/primer_view_components/commit/1a72661224108a9af87644d5e826579a03c8615c) Thanks [@HDinger](https://github.com/HDinger)! - Increase default width of the filter input in the SubHeader
18
+
3
19
  ## 0.45.0
4
20
 
5
21
  ### Minor Changes
@@ -1,9 +1,13 @@
1
1
  declare class SubHeaderElement extends HTMLElement {
2
- filterInput: HTMLElement;
2
+ filterInput: HTMLInputElement;
3
3
  hiddenItemsOnExpandedFilter: HTMLElement[];
4
4
  shownItemsOnExpandedFilter: HTMLElement[];
5
+ connectedCallback(): void;
6
+ setupFilterInputClearButton(): void;
7
+ toggleFilterInputClearButton(): void;
5
8
  expandFilterInput(): void;
6
9
  collapseFilterInput(): void;
10
+ private waitForCondition;
7
11
  }
8
12
  declare global {
9
13
  interface Window {