@momentum-design/components 0.129.3 → 0.129.4
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/browser/index.js +5 -1
- package/dist/browser/index.js.map +2 -2
- package/dist/components/card/card.component.d.ts +1 -0
- package/dist/components/card/card.component.js +1 -0
- package/dist/components/cardbutton/cardbutton.component.d.ts +1 -0
- package/dist/components/cardbutton/cardbutton.component.js +1 -0
- package/dist/custom-elements.json +3910 -3886
- package/dist/react/card/index.d.ts +1 -0
- package/dist/react/card/index.js +1 -0
- package/dist/react/cardbutton/index.d.ts +1 -0
- package/dist/react/cardbutton/index.js +1 -0
- package/dist/react/index.d.ts +3 -3
- package/dist/react/index.js +3 -3
- package/dist/utils/mixins/CardComponentMixin.js +5 -1
- package/package.json +1 -1
|
@@ -25,6 +25,7 @@ declare const Card_base: import("../../utils/mixins/index.types").Constructor<im
|
|
|
25
25
|
*
|
|
26
26
|
* Interactive card additionally supports 'promotional' variant that represents the border styling - 'promotional'.
|
|
27
27
|
*
|
|
28
|
+
* @slot image - This slot is for overriding the image content of the card
|
|
28
29
|
* @slot before-body - This slot is for passing the content before the body
|
|
29
30
|
* @slot body - This slot is for passing the text content for the card
|
|
30
31
|
* @slot after-body - This slot is for passing the content after the body
|
|
@@ -39,6 +39,7 @@ import styles from './card.styles';
|
|
|
39
39
|
*
|
|
40
40
|
* Interactive card additionally supports 'promotional' variant that represents the border styling - 'promotional'.
|
|
41
41
|
*
|
|
42
|
+
* @slot image - This slot is for overriding the image content of the card
|
|
42
43
|
* @slot before-body - This slot is for passing the content before the body
|
|
43
44
|
* @slot body - This slot is for passing the text content for the card
|
|
44
45
|
* @slot after-body - This slot is for passing the content after the body
|
|
@@ -19,6 +19,7 @@ declare const CardButton_base: import("../../utils/mixins/index.types").Construc
|
|
|
19
19
|
* It fires the click event when space key is used.
|
|
20
20
|
* @event focus - (React: onFocus) Event that gets dispatched when the card receives focus.
|
|
21
21
|
*
|
|
22
|
+
* @slot image - This slot is for overriding the image content of the card
|
|
22
23
|
* @slot before-body - This slot is for passing the content before the body
|
|
23
24
|
* @slot body - This slot is for passing the text content for the card
|
|
24
25
|
* @slot after-body - This slot is for passing the content after the body
|
|
@@ -21,6 +21,7 @@ import styles from './cardbutton.styles';
|
|
|
21
21
|
* It fires the click event when space key is used.
|
|
22
22
|
* @event focus - (React: onFocus) Event that gets dispatched when the card receives focus.
|
|
23
23
|
*
|
|
24
|
+
* @slot image - This slot is for overriding the image content of the card
|
|
24
25
|
* @slot before-body - This slot is for passing the content before the body
|
|
25
26
|
* @slot body - This slot is for passing the text content for the card
|
|
26
27
|
* @slot after-body - This slot is for passing the content after the body
|