@royaloperahouse/chord 0.7.24 → 0.7.25
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 +2 -0
- package/dist/chord.cjs.development.js +37 -31
- package/dist/chord.cjs.development.js.map +1 -1
- package/dist/chord.cjs.production.min.js +1 -1
- package/dist/chord.cjs.production.min.js.map +1 -1
- package/dist/chord.esm.js +37 -31
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/molecules/PeopleListing/PeopleListing.style.d.ts +3 -0
- package/dist/types/types.d.ts +8 -0
- package/package.json +1 -1
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
export declare const PeopleListingGrid: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
+
export declare const PersonWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
+
export declare const HeadshotWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
4
|
export declare const RoleWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
|
+
export declare const TextWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
6
|
export declare const PersonLink: import("styled-components").StyledComponent<"a", any, {}, never>;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -249,7 +249,15 @@ export declare type ListingPerson = {
|
|
|
249
249
|
/**
|
|
250
250
|
* String separator
|
|
251
251
|
*/
|
|
252
|
+
headshot?: string;
|
|
253
|
+
/**
|
|
254
|
+
* Headshot image url
|
|
255
|
+
*/
|
|
252
256
|
separator?: string;
|
|
257
|
+
/**
|
|
258
|
+
* Use headshot or not
|
|
259
|
+
*/
|
|
260
|
+
useHeadshot: boolean;
|
|
253
261
|
};
|
|
254
262
|
export declare type ListingRole = {
|
|
255
263
|
/**
|