@royaloperahouse/harmonic 0.7.1-h → 0.8.0-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/dist/components/molecules/ContactCard/ContactCard.style.d.ts +5 -4
- package/dist/components/molecules/ContentSummary/ContentSummary.style.d.ts +1 -2
- package/dist/harmonic.cjs.development.js +64 -75
- 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 +64 -75
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/contactCard.d.ts +8 -22
- package/package.json +1 -1
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import { StyledProps } from 'styled-components';
|
|
2
1
|
export interface IContactCardProps {
|
|
3
2
|
/**
|
|
4
|
-
*
|
|
3
|
+
* Title
|
|
5
4
|
*/
|
|
6
|
-
|
|
5
|
+
title: string;
|
|
6
|
+
/**
|
|
7
|
+
* Title suffix
|
|
8
|
+
*/
|
|
9
|
+
titleSuffix?: string;
|
|
7
10
|
/**
|
|
8
11
|
* Description
|
|
9
12
|
*/
|
|
@@ -25,24 +28,7 @@ export interface IContactCardProps {
|
|
|
25
28
|
*/
|
|
26
29
|
address?: string;
|
|
27
30
|
/**
|
|
28
|
-
*
|
|
29
|
-
*/
|
|
30
|
-
hideTopBorder?: boolean;
|
|
31
|
-
/**
|
|
32
|
-
* Set visibility of the top border
|
|
33
|
-
*/
|
|
34
|
-
hideBottomBorder?: boolean;
|
|
35
|
-
}
|
|
36
|
-
export interface IContactCardWrapperProps extends StyledProps<{
|
|
37
|
-
hideTopBorder: boolean;
|
|
38
|
-
hideBottomBorder: boolean;
|
|
39
|
-
}> {
|
|
40
|
-
/**
|
|
41
|
-
* Set visibility of the top border
|
|
42
|
-
*/
|
|
43
|
-
hideTopBorder: boolean;
|
|
44
|
-
/**
|
|
45
|
-
* Set visibility of the bottom border
|
|
31
|
+
* The component's class name
|
|
46
32
|
*/
|
|
47
|
-
|
|
33
|
+
className?: string;
|
|
48
34
|
}
|