openproject-primer_view_components 0.45.0 → 0.46.0

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: 200c93917da76df084b238c3ece5f0044b3b3277c4a4b9a13a4a56cb2738b854
4
- data.tar.gz: 7fe82bcb136c96f6034ab3e7e23006f421bbcc085aa9ba4bc92ec2e20611b6ff
3
+ metadata.gz: 6b709c407f6608c68093b59a4a9b86efe18c9d0f733c9e691abff9beb127b867
4
+ data.tar.gz: 77c2f77d4b45c3e5caf1f07e64fcf6dfa0330d7b44c3960992f30039a791ed91
5
5
  SHA512:
6
- metadata.gz: 73bbbd97e26037041987f0d1777b555eba176b38788007cf385b9fb64f401cb528b047727f39867d25528bc96b68428b6f6df863915d2d317468fb1fd1541523
7
- data.tar.gz: d09fc23e471daa0095de4b36449bd013cddaae7a19d1b11ca206feacfab6926b06ea615ad5267da708eff2ae673fbf94a269b3af63e9beb20334593a754bb8e8
6
+ metadata.gz: f0121bf228358a9c5045e4598c069363b14f97e5cb2d3d07108376ed8b12e8e58c7dd017ae21c3ec8acd36c3937996cc6c94ddc6198e6dca763adc0b129bbc8a
7
+ data.tar.gz: d8fb908c972817644d14dab0cde00c95b0b9a72abadafb7ab0c4dfb5178d97866f27a3e6a129c0320c0d5e584acec21bfc25ed24c5a0f1b2f3484d18005fa5c6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.46.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#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.
8
+
9
+ ### Patch Changes
10
+
11
+ - [#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
12
+
3
13
  ## 0.45.0
4
14
 
5
15
  ### 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 {