@micromag/core 0.3.273 → 0.3.274
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 +5 -0
- package/es/index.js +6 -0
- package/lib/components.js +5 -0
- package/lib/index.js +6 -0
- package/package.json +2 -2
package/es/components.js
CHANGED
|
@@ -2789,6 +2789,11 @@ PropTypes$1.shape({
|
|
|
2789
2789
|
label: textElement,
|
|
2790
2790
|
buttonStyle: boxStyle
|
|
2791
2791
|
});
|
|
2792
|
+
PropTypes$1.shape({
|
|
2793
|
+
active: PropTypes$1.bool,
|
|
2794
|
+
label: textElement,
|
|
2795
|
+
boxStyle: boxStyle
|
|
2796
|
+
});
|
|
2792
2797
|
var speaker = PropTypes$1.shape({
|
|
2793
2798
|
id: PropTypes$1.string,
|
|
2794
2799
|
name: PropTypes$1.string,
|
package/es/index.js
CHANGED
|
@@ -365,6 +365,11 @@ var callToAction = PropTypes$1.shape({
|
|
|
365
365
|
label: textElement,
|
|
366
366
|
buttonStyle: boxStyle
|
|
367
367
|
});
|
|
368
|
+
var shareIncentive = PropTypes$1.shape({
|
|
369
|
+
active: PropTypes$1.bool,
|
|
370
|
+
label: textElement,
|
|
371
|
+
boxStyle: boxStyle
|
|
372
|
+
});
|
|
368
373
|
var speaker = PropTypes$1.shape({
|
|
369
374
|
id: PropTypes$1.string,
|
|
370
375
|
name: PropTypes$1.string,
|
|
@@ -687,6 +692,7 @@ var PropTypes = /*#__PURE__*/Object.freeze({
|
|
|
687
692
|
quizAnswers: quizAnswers,
|
|
688
693
|
callToActionTypes: callToActionTypes,
|
|
689
694
|
callToAction: callToAction,
|
|
695
|
+
shareIncentive: shareIncentive,
|
|
690
696
|
speaker: speaker,
|
|
691
697
|
speakers: speakers,
|
|
692
698
|
conversationMessage: conversationMessage,
|
package/lib/components.js
CHANGED
|
@@ -2830,6 +2830,11 @@ PropTypes__default["default"].shape({
|
|
|
2830
2830
|
label: textElement,
|
|
2831
2831
|
buttonStyle: boxStyle
|
|
2832
2832
|
});
|
|
2833
|
+
PropTypes__default["default"].shape({
|
|
2834
|
+
active: PropTypes__default["default"].bool,
|
|
2835
|
+
label: textElement,
|
|
2836
|
+
boxStyle: boxStyle
|
|
2837
|
+
});
|
|
2833
2838
|
var speaker = PropTypes__default["default"].shape({
|
|
2834
2839
|
id: PropTypes__default["default"].string,
|
|
2835
2840
|
name: PropTypes__default["default"].string,
|
package/lib/index.js
CHANGED
|
@@ -392,6 +392,11 @@ var callToAction = PropTypes__default["default"].shape({
|
|
|
392
392
|
label: textElement,
|
|
393
393
|
buttonStyle: boxStyle
|
|
394
394
|
});
|
|
395
|
+
var shareIncentive = PropTypes__default["default"].shape({
|
|
396
|
+
active: PropTypes__default["default"].bool,
|
|
397
|
+
label: textElement,
|
|
398
|
+
boxStyle: boxStyle
|
|
399
|
+
});
|
|
395
400
|
var speaker = PropTypes__default["default"].shape({
|
|
396
401
|
id: PropTypes__default["default"].string,
|
|
397
402
|
name: PropTypes__default["default"].string,
|
|
@@ -714,6 +719,7 @@ var PropTypes = /*#__PURE__*/Object.freeze({
|
|
|
714
719
|
quizAnswers: quizAnswers,
|
|
715
720
|
callToActionTypes: callToActionTypes,
|
|
716
721
|
callToAction: callToAction,
|
|
722
|
+
shareIncentive: shareIncentive,
|
|
717
723
|
speaker: speaker,
|
|
718
724
|
speakers: speakers,
|
|
719
725
|
conversationMessage: conversationMessage,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.274",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -133,5 +133,5 @@
|
|
|
133
133
|
"publishConfig": {
|
|
134
134
|
"access": "public"
|
|
135
135
|
},
|
|
136
|
-
"gitHead": "
|
|
136
|
+
"gitHead": "70243ec672b98f29deab481133a1caec87a43bf8"
|
|
137
137
|
}
|