@micromag/screen-conversation 0.3.122 → 0.3.126

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/index.js CHANGED
@@ -34,8 +34,8 @@ var propTypes$1 = {
34
34
  typingTiming: PropTypes$1.number,
35
35
  onChange: PropTypes$1.func,
36
36
  withAnimation: PropTypes$1.bool,
37
+ active: PropTypes$1.bool,
37
38
  isPlaying: PropTypes$1.bool,
38
- shouldLoad: PropTypes$1.bool,
39
39
  speakerStyle: PropTypes.textStyle,
40
40
  messageStyle: PropTypes.textStyle,
41
41
  className: PropTypes$1.string
@@ -50,8 +50,8 @@ var defaultProps$1 = {
50
50
  typingTiming: null,
51
51
  onChange: null,
52
52
  withAnimation: false,
53
+ active: false,
53
54
  isPlaying: false,
54
- shouldLoad: true,
55
55
  messageStyle: null,
56
56
  speakerStyle: null,
57
57
  className: null
@@ -69,8 +69,8 @@ var ConversationMessage = function ConversationMessage(_ref) {
69
69
  typingTiming = _ref.typingTiming,
70
70
  onChange = _ref.onChange,
71
71
  withAnimation = _ref.withAnimation,
72
+ active = _ref.active,
72
73
  isPlaying = _ref.isPlaying,
73
- shouldLoad = _ref.shouldLoad,
74
74
  messageStyle = _ref.messageStyle,
75
75
  speakerStyle = _ref.speakerStyle,
76
76
  className = _ref.className;
@@ -168,7 +168,7 @@ var ConversationMessage = function ConversationMessage(_ref) {
168
168
  media: image,
169
169
  width: "100%",
170
170
  playing: isPlaying,
171
- shouldLoad: shouldLoad
171
+ active: active
172
172
  })) : null, /*#__PURE__*/React.createElement(Text, {
173
173
  className: styles.messageBody,
174
174
  body: messageBody,
package/lib/index.js CHANGED
@@ -56,8 +56,8 @@ var propTypes$1 = {
56
56
  typingTiming: PropTypes__default["default"].number,
57
57
  onChange: PropTypes__default["default"].func,
58
58
  withAnimation: PropTypes__default["default"].bool,
59
+ active: PropTypes__default["default"].bool,
59
60
  isPlaying: PropTypes__default["default"].bool,
60
- shouldLoad: PropTypes__default["default"].bool,
61
61
  speakerStyle: core.PropTypes.textStyle,
62
62
  messageStyle: core.PropTypes.textStyle,
63
63
  className: PropTypes__default["default"].string
@@ -72,8 +72,8 @@ var defaultProps$1 = {
72
72
  typingTiming: null,
73
73
  onChange: null,
74
74
  withAnimation: false,
75
+ active: false,
75
76
  isPlaying: false,
76
- shouldLoad: true,
77
77
  messageStyle: null,
78
78
  speakerStyle: null,
79
79
  className: null
@@ -91,8 +91,8 @@ var ConversationMessage = function ConversationMessage(_ref) {
91
91
  typingTiming = _ref.typingTiming,
92
92
  onChange = _ref.onChange,
93
93
  withAnimation = _ref.withAnimation,
94
+ active = _ref.active,
94
95
  isPlaying = _ref.isPlaying,
95
- shouldLoad = _ref.shouldLoad,
96
96
  messageStyle = _ref.messageStyle,
97
97
  speakerStyle = _ref.speakerStyle,
98
98
  className = _ref.className;
@@ -190,7 +190,7 @@ var ConversationMessage = function ConversationMessage(_ref) {
190
190
  media: image,
191
191
  width: "100%",
192
192
  playing: isPlaying,
193
- shouldLoad: shouldLoad
193
+ active: active
194
194
  })) : null, /*#__PURE__*/React__default["default"].createElement(Text__default["default"], {
195
195
  className: styles.messageBody,
196
196
  body: messageBody,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@micromag/screen-conversation",
3
- "version": "0.3.122",
3
+ "version": "0.3.126",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "javascript"
@@ -49,16 +49,16 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@babel/runtime": "^7.13.10",
52
- "@micromag/core": "^0.3.122",
53
- "@micromag/element-background": "^0.3.122",
54
- "@micromag/element-call-to-action": "^0.3.122",
55
- "@micromag/element-container": "^0.3.122",
56
- "@micromag/element-heading": "^0.3.122",
57
- "@micromag/element-layout": "^0.3.122",
58
- "@micromag/element-scroll": "^0.3.122",
59
- "@micromag/element-text": "^0.3.122",
60
- "@micromag/element-visual": "^0.3.122",
61
- "@micromag/transforms": "^0.3.122",
52
+ "@micromag/core": "^0.3.126",
53
+ "@micromag/element-background": "^0.3.126",
54
+ "@micromag/element-call-to-action": "^0.3.126",
55
+ "@micromag/element-container": "^0.3.126",
56
+ "@micromag/element-heading": "^0.3.126",
57
+ "@micromag/element-layout": "^0.3.126",
58
+ "@micromag/element-scroll": "^0.3.126",
59
+ "@micromag/element-text": "^0.3.126",
60
+ "@micromag/element-visual": "^0.3.126",
61
+ "@micromag/transforms": "^0.3.126",
62
62
  "classnames": "^2.2.6",
63
63
  "lodash": "^4.17.21",
64
64
  "prop-types": "^15.7.2",
@@ -68,5 +68,5 @@
68
68
  "publishConfig": {
69
69
  "access": "public"
70
70
  },
71
- "gitHead": "4fbee9b4305d9a4ae0e4532a1d8e143155499878"
71
+ "gitHead": "079203c5850c4aa771bc4fa1c567d2db1bc3ee3d"
72
72
  }