@telefonica/mistica 10.11.0 → 10.12.0
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 +7 -0
- package/dist/card.d.ts +2 -2
- package/dist/card.js.flow +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [10.12.0](https://github.com/Telefonica/mistica-web/compare/v10.11.0...v10.12.0) (2021-11-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **DataCard:** make title and description optional ([#373](https://github.com/Telefonica/mistica-web/issues/373)) ([e44a064](https://github.com/Telefonica/mistica-web/commit/e44a06460a1c27ed06279890c7df0d692300e38e))
|
|
7
|
+
|
|
1
8
|
# [10.11.0](https://github.com/Telefonica/mistica-web/compare/v10.10.0...v10.11.0) (2021-11-24)
|
|
2
9
|
|
|
3
10
|
|
package/dist/card.d.ts
CHANGED
|
@@ -36,9 +36,9 @@ interface DataCardProps {
|
|
|
36
36
|
*/
|
|
37
37
|
icon?: React.ReactElement;
|
|
38
38
|
headline?: string | React.ReactElement<TagProps, typeof Tag>;
|
|
39
|
-
title
|
|
39
|
+
title?: string;
|
|
40
40
|
subtitle?: string;
|
|
41
|
-
description
|
|
41
|
+
description?: string;
|
|
42
42
|
extra?: React.ReactNode;
|
|
43
43
|
button?: React.ReactElement<ButtonProps, typeof ButtonPrimary>;
|
|
44
44
|
buttonLink?: React.ReactElement<ButtonLinkProps, typeof ButtonLink>;
|
package/dist/card.js.flow
CHANGED
|
@@ -32,9 +32,9 @@ declare type DataCardProps = {
|
|
|
32
32
|
*/
|
|
33
33
|
icon?: React.Element<any>,
|
|
34
34
|
headline?: string | React.Element<typeof Tag>,
|
|
35
|
-
title
|
|
35
|
+
title?: string,
|
|
36
36
|
subtitle?: string,
|
|
37
|
-
description
|
|
37
|
+
description?: string,
|
|
38
38
|
extra?: React.Node,
|
|
39
39
|
button?: React.Element<typeof ButtonPrimary>,
|
|
40
40
|
buttonLink?: React.Element<typeof ButtonLink>,
|