@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.
- package/CHANGELOG.md +4 -1
- package/dist/components/molecules/SkipToMain/SkipToMain.style.d.ts +1 -1
- package/dist/harmonic.cjs.development.js +39 -40
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +39 -40
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +1 -10
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -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 = {
|