@royaloperahouse/harmonic 0.12.0-h → 0.12.0-j
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/components/molecules/PeopleListing/PeopleListing.d.ts +1 -1
- package/dist/components/molecules/PeopleListing/PeopleListing.style.d.ts +2 -2
- package/dist/harmonic.cjs.development.js +19 -22
- 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 +19 -22
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +3 -3
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -346,10 +346,10 @@ export declare type ListingRole = {
|
|
|
346
346
|
dataROH?: string;
|
|
347
347
|
};
|
|
348
348
|
export interface IPeopleListing {
|
|
349
|
-
/**
|
|
350
|
-
* List of roles to be displayed
|
|
351
|
-
*/
|
|
349
|
+
/** List of roles to be displayed */
|
|
352
350
|
roles: ListingRole[];
|
|
351
|
+
/** Custom CSS classes */
|
|
352
|
+
className?: string;
|
|
353
353
|
}
|
|
354
354
|
export interface IPagination {
|
|
355
355
|
/**
|