primer_view_components 0.35.1 → 0.35.2

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: 1772fd177b55a4a6ed5a1fd127155e742785376ffadcdac93f6da3ced8186df3
4
- data.tar.gz: 52baf3a1822206ebb43244730492b87cc6209ccecd46b0b8519916d78798ef12
3
+ metadata.gz: 9e880e886a9bc7db466f4d743167949d9661ff189e92da4739333f339da40e53
4
+ data.tar.gz: c1a232ed0aa1f1d0a0922d8e20e9fd8ee852264f233945abdeedff1b60dd16b1
5
5
  SHA512:
6
- metadata.gz: 7e61a86885102dcdbf1ede1ec08fa769fa08321702d3509d7a12a4419fdb93a6f41a814628383231c3e0730e273e6fbeba7dbb903540a5e2c5fedf7c314492fd
7
- data.tar.gz: 4278066f395915d832a9d1d422b2956f509f10aeed5c0df15550ae1ea9440d15c16efa3393b0c91d7b57f8624460f65eeb023d2bc9993703424f8ae3ad3756de
6
+ metadata.gz: 3832aa3b1d976ee5af260f1aa9caad92ace2f74c08cee4ea7642280710a82aee811cd4476f29622f4e173c25d8da805b2b822fe374600261356398d3d707695a
7
+ data.tar.gz: efb9a2154c7333c7c0584f5b3761917438a4a0e37b2c8eeacccf49ccfa8171378421429f42d05472b5f778c78688f0fe698713dc73f355694a05f8eac5df6526
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.35.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3204](https://github.com/primer/view_components/pull/3204) [`f24feab`](https://github.com/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/primer/view_components/commit/a91aa93f0c75171e6f469b355c2ef747698d2280) Thanks [@camertron](https://github.com/camertron)! - [SelectPanel] Fix result count in screen reader announcements
10
+
3
11
  ## 0.35.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';