@royaloperahouse/harmonic 1.0.0-b → 1.0.1-a

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.
@@ -429,7 +429,7 @@ export declare type IHotFilterProps = {
429
429
  selectedIndex?: number;
430
430
  onSelect?: (index: number) => void;
431
431
  };
432
- export declare type ICastFilterItem = {
432
+ export declare type ICastFilterItem = Pick<AnchorHTMLAttributes<HTMLAnchorElement>, 'aria-label' | 'role'> & {
433
433
  /**
434
434
  * Name of the cast member shown below the image circle. Required.
435
435
  */
@@ -438,15 +438,6 @@ export declare type ICastFilterItem = {
438
438
  * Image source for the image to be shown. Optional but if not included an unaesthetic placeholder will show.
439
439
  */
440
440
  image?: string;
441
- /**
442
- * Optional accessible name for the option. If omitted, `name` is used.
443
- */
444
- 'aria-label'?: string;
445
- /**
446
- * Kept for backwards compatibility with existing integrations.
447
- * CastFilter always renders option semantics and ignores this value at runtime.
448
- */
449
- role?: string;
450
441
  onClick?: () => void;
451
442
  };
452
443
  export declare type ICastFiltersProps = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royaloperahouse/harmonic",
3
- "version": "1.0.0-b",
3
+ "version": "1.0.1-a",
4
4
  "author": "Royal Opera House",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",