openproject-primer_view_components 0.49.1 → 0.49.2

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: f984469d4ddf44225371effff2febbe1fa1fd9e6b2d3fd96d37a6265d8614c04
4
- data.tar.gz: 65d5dae2b8daae1024fc8d62553e1647cae83c70a18828bd98c91b403198bf3d
3
+ metadata.gz: 138d168a620ee0ae3f26a4025aa4c254fd3528ea5eb35cedde2ea8054686fc90
4
+ data.tar.gz: 2c43fc07c52dd548f7aaff6313915f0c049978049e3e71b7a1800c8d1accabf5
5
5
  SHA512:
6
- metadata.gz: d969e41904ea4ed090d1639e9713e8fdac92e84b52ead84f5450b56572bd7d8777d7e54a65893c8cd758bb844ae60365daf0f5c9529e463e74c13df7a81fa6c2
7
- data.tar.gz: 36a98aa21fb1152f8b37ec889a2be7da79b3e39b57d754d5393cdf51ce8938336299aec36eb76cd313790abdeb6024745439e22d509d4e6c24bcee0f0e63861a
6
+ metadata.gz: f543b09f11f15b6108b522d03ef17187123c310b842856656b047252c4b037516c53b95090462fcc7a22662cc0d82c20547b11f2090dc24963267a9164f30c96
7
+ data.tar.gz: e8554c27d2c0c74e10cb9980608a07f064d950a68c3f9582fd9a9b9fcf262c8056110f510d4e17432c9440f2e69d709c031bf0e84155ed8bbe5187a4426b1e9d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.49.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3204](https://github.com/primer/view_components/pull/3204) [`f24feab`](https://github.com/opf/primer_view_components/commit/f24feab6546fe1ae6be5938fbd42fb1daebf3951) Thanks [@joshblack](https://github.com/joshblack)! - Update caret styles for Popover to correctly position caret in different orientations
8
+
9
+ - [#3187](https://github.com/primer/view_components/pull/3187) [`a91aa93`](https://github.com/opf/primer_view_components/commit/a91aa93f0c75171e6f469b355c2ef747698d2280) Thanks [@camertron](https://github.com/camertron)! - [SelectPanel] Fix result count in screen reader announcements
10
+
3
11
  ## 0.49.1
4
12
 
5
13
  ### Patch Changes
@@ -1,5 +1,7 @@
1
1
  import { IncludeFragmentElement } from '@github/include-fragment-element';
2
2
  import type { AnchorAlignment, AnchorSide } from '@primer/behaviors';
3
+ import type { LiveRegionElement } from '@primer/live-region-element';
4
+ import '@primer/live-region-element';
3
5
  import '@oddbird/popover-polyfill';
4
6
  type SelectVariant = 'none' | 'single' | 'multiple' | null;
5
7
  type SelectedItem = {
@@ -16,11 +18,11 @@ export declare class SelectPanelElement extends HTMLElement {
16
18
  filterInputTextField: HTMLInputElement;
17
19
  remoteInput: HTMLElement;
18
20
  list: HTMLElement;
19
- ariaLiveContainer: HTMLElement;
20
21
  noResults: HTMLElement;
21
22
  fragmentErrorElement: HTMLElement;
22
23
  bannerErrorElement: HTMLElement;
23
24
  bodySpinner: HTMLElement;
25
+ liveRegion: LiveRegionElement;
24
26
  filterFn?: FilterFn;
25
27
  get open(): boolean;
26
28
  get selectVariant(): SelectVariant;
@@ -7,7 +7,6 @@ import './anchored_position';
7
7
  import './dialog_helper';
8
8
  import './focus_group';
9
9
  import './scrollable_region';
10
- import './aria_live';
11
10
  import './shared_events';
12
11
  import './alpha/modal_dialog';
13
12
  import './beta/nav_list';