@micromag/core 0.3.36 → 0.3.39
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/es/components.js +3 -2
- package/es/index.js +2 -1
- package/lib/components.js +3 -2
- package/lib/index.js +2 -1
- package/package.json +2 -2
package/es/components.js
CHANGED
|
@@ -2519,7 +2519,7 @@ PropTypes$1.shape({
|
|
|
2519
2519
|
radius: PropTypes$1.number,
|
|
2520
2520
|
color: color
|
|
2521
2521
|
});
|
|
2522
|
-
PropTypes$1.shape({
|
|
2522
|
+
var boxStyle = PropTypes$1.shape({
|
|
2523
2523
|
backgroundColor: color,
|
|
2524
2524
|
borderRadius: PropTypes$1.number,
|
|
2525
2525
|
borderWidth: PropTypes$1.number,
|
|
@@ -2632,7 +2632,8 @@ PropTypes$1.shape({
|
|
|
2632
2632
|
active: PropTypes$1.bool,
|
|
2633
2633
|
type: callToActionTypes,
|
|
2634
2634
|
url: PropTypes$1.string,
|
|
2635
|
-
label: textElement
|
|
2635
|
+
label: textElement,
|
|
2636
|
+
buttonStyle: boxStyle
|
|
2636
2637
|
});
|
|
2637
2638
|
var speaker = PropTypes$1.shape({
|
|
2638
2639
|
id: PropTypes$1.string,
|
package/es/index.js
CHANGED
|
@@ -349,7 +349,8 @@ var callToAction = PropTypes$1.shape({
|
|
|
349
349
|
active: PropTypes$1.bool,
|
|
350
350
|
type: callToActionTypes,
|
|
351
351
|
url: PropTypes$1.string,
|
|
352
|
-
label: textElement
|
|
352
|
+
label: textElement,
|
|
353
|
+
buttonStyle: boxStyle
|
|
353
354
|
});
|
|
354
355
|
var speaker = PropTypes$1.shape({
|
|
355
356
|
id: PropTypes$1.string,
|
package/lib/components.js
CHANGED
|
@@ -2542,7 +2542,7 @@ PropTypes__default["default"].shape({
|
|
|
2542
2542
|
radius: PropTypes__default["default"].number,
|
|
2543
2543
|
color: color
|
|
2544
2544
|
});
|
|
2545
|
-
PropTypes__default["default"].shape({
|
|
2545
|
+
var boxStyle = PropTypes__default["default"].shape({
|
|
2546
2546
|
backgroundColor: color,
|
|
2547
2547
|
borderRadius: PropTypes__default["default"].number,
|
|
2548
2548
|
borderWidth: PropTypes__default["default"].number,
|
|
@@ -2655,7 +2655,8 @@ PropTypes__default["default"].shape({
|
|
|
2655
2655
|
active: PropTypes__default["default"].bool,
|
|
2656
2656
|
type: callToActionTypes,
|
|
2657
2657
|
url: PropTypes__default["default"].string,
|
|
2658
|
-
label: textElement
|
|
2658
|
+
label: textElement,
|
|
2659
|
+
buttonStyle: boxStyle
|
|
2659
2660
|
});
|
|
2660
2661
|
var speaker = PropTypes__default["default"].shape({
|
|
2661
2662
|
id: PropTypes__default["default"].string,
|
package/lib/index.js
CHANGED
|
@@ -375,7 +375,8 @@ var callToAction = PropTypes__default["default"].shape({
|
|
|
375
375
|
active: PropTypes__default["default"].bool,
|
|
376
376
|
type: callToActionTypes,
|
|
377
377
|
url: PropTypes__default["default"].string,
|
|
378
|
-
label: textElement
|
|
378
|
+
label: textElement,
|
|
379
|
+
buttonStyle: boxStyle
|
|
379
380
|
});
|
|
380
381
|
var speaker = PropTypes__default["default"].shape({
|
|
381
382
|
id: PropTypes__default["default"].string,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.39",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -132,5 +132,5 @@
|
|
|
132
132
|
"publishConfig": {
|
|
133
133
|
"access": "public"
|
|
134
134
|
},
|
|
135
|
-
"gitHead": "
|
|
135
|
+
"gitHead": "cda0a9924ae03347ffb2cdbc86d25b0f7e3ae70e"
|
|
136
136
|
}
|