@royaloperahouse/harmonic 0.6.1-a → 0.6.1-b
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/dist/harmonic.cjs.development.js +31 -29
- 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 +31 -29
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +4 -5
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -422,16 +422,15 @@ export interface ISponsorLogoProps extends ExternalLink {
|
|
|
422
422
|
*/
|
|
423
423
|
className?: string;
|
|
424
424
|
}
|
|
425
|
-
export
|
|
425
|
+
export declare type IHotFilterItem = Pick<AnchorHTMLAttributes<HTMLAnchorElement>, 'aria-label' | 'role'> & {
|
|
426
426
|
text: string;
|
|
427
|
-
href?: string;
|
|
428
427
|
onClick?: () => void;
|
|
429
|
-
}
|
|
430
|
-
export
|
|
428
|
+
};
|
|
429
|
+
export declare type IHotFilterProps = {
|
|
431
430
|
items: IHotFilterItem[];
|
|
432
431
|
className?: string;
|
|
433
432
|
defaultSelectedIndex?: number;
|
|
434
|
-
}
|
|
433
|
+
};
|
|
435
434
|
export interface ISponsorshipProps {
|
|
436
435
|
/**
|
|
437
436
|
* Source URL for Sponsorship IFRAME.
|