@micromag/screen-title 0.3.420 → 0.3.429
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 +1 -2
- package/lib/index.js +49 -69
- package/package.json +19 -11
package/es/index.js
CHANGED
|
@@ -68,7 +68,6 @@ var defaultProps$2 = {
|
|
|
68
68
|
className: null
|
|
69
69
|
};
|
|
70
70
|
var TitleScreen = function TitleScreen(_ref) {
|
|
71
|
-
var _ref4;
|
|
72
71
|
var layout = _ref.layout,
|
|
73
72
|
title = _ref.title,
|
|
74
73
|
subtitle = _ref.subtitle,
|
|
@@ -166,7 +165,7 @@ var TitleScreen = function TitleScreen(_ref) {
|
|
|
166
165
|
isEmpty: !hasDescription
|
|
167
166
|
}, hasDescription ? /*#__PURE__*/React.createElement(Text, description) : null) : null;
|
|
168
167
|
return /*#__PURE__*/React.createElement("div", {
|
|
169
|
-
className: classNames([styles.container, (
|
|
168
|
+
className: classNames([styles.container, _defineProperty(_defineProperty({}, className, className !== null), styles.isPlaceholder, isPlaceholder)]),
|
|
170
169
|
"data-screen-ready": true
|
|
171
170
|
}, /*#__PURE__*/React.createElement(Container, {
|
|
172
171
|
width: width,
|
package/lib/index.js
CHANGED
|
@@ -25,45 +25,26 @@ var _objectSpread = require('@babel/runtime/helpers/objectSpread2');
|
|
|
25
25
|
var _toConsumableArray = require('@babel/runtime/helpers/toConsumableArray');
|
|
26
26
|
var appleNews = require('@micromag/transforms/apple-news');
|
|
27
27
|
|
|
28
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
29
|
-
|
|
30
|
-
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
|
|
31
|
-
var classNames__default = /*#__PURE__*/_interopDefaultLegacy(classNames);
|
|
32
|
-
var PropTypes__default = /*#__PURE__*/_interopDefaultLegacy(PropTypes);
|
|
33
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
34
|
-
var Background__default = /*#__PURE__*/_interopDefaultLegacy(Background);
|
|
35
|
-
var Container__default = /*#__PURE__*/_interopDefaultLegacy(Container);
|
|
36
|
-
var Footer__default = /*#__PURE__*/_interopDefaultLegacy(Footer);
|
|
37
|
-
var Header__default = /*#__PURE__*/_interopDefaultLegacy(Header);
|
|
38
|
-
var Heading__default = /*#__PURE__*/_interopDefaultLegacy(Heading);
|
|
39
|
-
var Layout__default = /*#__PURE__*/_interopDefaultLegacy(Layout);
|
|
40
|
-
var Text__default = /*#__PURE__*/_interopDefaultLegacy(Text);
|
|
41
|
-
var _objectDestructuringEmpty__default = /*#__PURE__*/_interopDefaultLegacy(_objectDestructuringEmpty);
|
|
42
|
-
var _extends__default = /*#__PURE__*/_interopDefaultLegacy(_extends);
|
|
43
|
-
var _objectWithoutProperties__default = /*#__PURE__*/_interopDefaultLegacy(_objectWithoutProperties);
|
|
44
|
-
var _objectSpread__default = /*#__PURE__*/_interopDefaultLegacy(_objectSpread);
|
|
45
|
-
var _toConsumableArray__default = /*#__PURE__*/_interopDefaultLegacy(_toConsumableArray);
|
|
46
|
-
|
|
47
28
|
var styles = {"container":"micromag-screen-title-container","background":"micromag-screen-title-background","disabled":"micromag-screen-title-disabled","hidden":"micromag-screen-title-hidden","placeholder":"micromag-screen-title-placeholder","content":"micromag-screen-title-content","emptyTitle":"micromag-screen-title-emptyTitle","emptySubtitle":"micromag-screen-title-emptySubtitle","emptyDescription":"micromag-screen-title-emptyDescription","title":"micromag-screen-title-title","withMargin":"micromag-screen-title-withMargin","subtitle":"micromag-screen-title-subtitle","box":"micromag-screen-title-box","isPlaceholder":"micromag-screen-title-isPlaceholder","layout":"micromag-screen-title-layout"};
|
|
48
29
|
|
|
49
30
|
var propTypes$2 = {
|
|
50
|
-
layout:
|
|
31
|
+
layout: PropTypes.oneOf(['top', 'middle', 'bottom', 'split', 'split-top', 'split-bottom']),
|
|
51
32
|
title: core.PropTypes.headingElement,
|
|
52
33
|
subtitle: core.PropTypes.headingElement,
|
|
53
34
|
description: core.PropTypes.textElement,
|
|
54
35
|
boxStyle: core.PropTypes.boxStyle,
|
|
55
|
-
withSubtitle:
|
|
56
|
-
withDescription:
|
|
57
|
-
withBox:
|
|
58
|
-
spacing:
|
|
36
|
+
withSubtitle: PropTypes.bool,
|
|
37
|
+
withDescription: PropTypes.bool,
|
|
38
|
+
withBox: PropTypes.bool,
|
|
39
|
+
spacing: PropTypes.number,
|
|
59
40
|
descriptionEmptyLabel: core.PropTypes.label,
|
|
60
41
|
header: core.PropTypes.header,
|
|
61
42
|
footer: core.PropTypes.footer,
|
|
62
43
|
background: core.PropTypes.backgroundElement,
|
|
63
|
-
current:
|
|
64
|
-
active:
|
|
65
|
-
transitionStagger:
|
|
66
|
-
className:
|
|
44
|
+
current: PropTypes.bool,
|
|
45
|
+
active: PropTypes.bool,
|
|
46
|
+
transitionStagger: PropTypes.number,
|
|
47
|
+
className: PropTypes.string
|
|
67
48
|
};
|
|
68
49
|
var defaultProps$2 = {
|
|
69
50
|
layout: 'top',
|
|
@@ -75,7 +56,7 @@ var defaultProps$2 = {
|
|
|
75
56
|
withDescription: false,
|
|
76
57
|
withBox: false,
|
|
77
58
|
spacing: 20,
|
|
78
|
-
descriptionEmptyLabel: /*#__PURE__*/
|
|
59
|
+
descriptionEmptyLabel: /*#__PURE__*/React.createElement(reactIntl.FormattedMessage, {
|
|
79
60
|
id: "507VAi",
|
|
80
61
|
defaultMessage: [{
|
|
81
62
|
"type": 0,
|
|
@@ -91,7 +72,6 @@ var defaultProps$2 = {
|
|
|
91
72
|
className: null
|
|
92
73
|
};
|
|
93
74
|
var TitleScreen = function TitleScreen(_ref) {
|
|
94
|
-
var _ref4;
|
|
95
75
|
var layout = _ref.layout,
|
|
96
76
|
title = _ref.title,
|
|
97
77
|
subtitle = _ref.subtitle,
|
|
@@ -147,10 +127,10 @@ var TitleScreen = function TitleScreen(_ref) {
|
|
|
147
127
|
openWebView: openWebView,
|
|
148
128
|
isPreview: isPreview
|
|
149
129
|
});
|
|
150
|
-
var titleElement = /*#__PURE__*/
|
|
130
|
+
var titleElement = /*#__PURE__*/React.createElement(components.ScreenElement, {
|
|
151
131
|
key: "title",
|
|
152
132
|
placeholder: "title",
|
|
153
|
-
emptyLabel: /*#__PURE__*/
|
|
133
|
+
emptyLabel: /*#__PURE__*/React.createElement(reactIntl.FormattedMessage, {
|
|
154
134
|
id: "2ZOPe+",
|
|
155
135
|
defaultMessage: [{
|
|
156
136
|
"type": 0,
|
|
@@ -159,15 +139,15 @@ var TitleScreen = function TitleScreen(_ref) {
|
|
|
159
139
|
}),
|
|
160
140
|
emptyClassName: styles.emptyTitle,
|
|
161
141
|
isEmpty: !hasTitle
|
|
162
|
-
}, hasTitle ? /*#__PURE__*/
|
|
163
|
-
className:
|
|
142
|
+
}, hasTitle ? /*#__PURE__*/React.createElement(Heading, Object.assign({
|
|
143
|
+
className: classNames([styles.title, _defineProperty({}, styles.withMargin, titleWithMargin)])
|
|
164
144
|
}, title, {
|
|
165
145
|
size: 1
|
|
166
146
|
})) : null);
|
|
167
|
-
var subtitleElement = withSubtitle ? /*#__PURE__*/
|
|
147
|
+
var subtitleElement = withSubtitle ? /*#__PURE__*/React.createElement(components.ScreenElement, {
|
|
168
148
|
key: "subtitle",
|
|
169
149
|
placeholder: "subtitle",
|
|
170
|
-
emptyLabel: /*#__PURE__*/
|
|
150
|
+
emptyLabel: /*#__PURE__*/React.createElement(reactIntl.FormattedMessage, {
|
|
171
151
|
id: "d60tSn",
|
|
172
152
|
defaultMessage: [{
|
|
173
153
|
"type": 0,
|
|
@@ -176,26 +156,26 @@ var TitleScreen = function TitleScreen(_ref) {
|
|
|
176
156
|
}),
|
|
177
157
|
emptyClassName: styles.emptySubtitle,
|
|
178
158
|
isEmpty: !hasSubtitle
|
|
179
|
-
}, hasSubtitle ? /*#__PURE__*/
|
|
180
|
-
className:
|
|
159
|
+
}, hasSubtitle ? /*#__PURE__*/React.createElement(Heading, Object.assign({
|
|
160
|
+
className: classNames([styles.subtitle, _defineProperty({}, styles.withMargin, subtitleWithMargin)])
|
|
181
161
|
}, subtitle, {
|
|
182
162
|
size: 2
|
|
183
163
|
})) : null) : null;
|
|
184
|
-
var descriptionElement = withDescription ? /*#__PURE__*/
|
|
164
|
+
var descriptionElement = withDescription ? /*#__PURE__*/React.createElement(components.ScreenElement, {
|
|
185
165
|
key: "description",
|
|
186
166
|
placeholder: "shortText",
|
|
187
167
|
emptyLabel: descriptionEmptyLabel,
|
|
188
168
|
emptyClassName: styles.emptyDescription,
|
|
189
169
|
isEmpty: !hasDescription
|
|
190
|
-
}, hasDescription ? /*#__PURE__*/
|
|
191
|
-
return /*#__PURE__*/
|
|
192
|
-
className:
|
|
170
|
+
}, hasDescription ? /*#__PURE__*/React.createElement(Text, description) : null) : null;
|
|
171
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
172
|
+
className: classNames([styles.container, _defineProperty(_defineProperty({}, className, className !== null), styles.isPlaceholder, isPlaceholder)]),
|
|
193
173
|
"data-screen-ready": true
|
|
194
|
-
}, /*#__PURE__*/
|
|
174
|
+
}, /*#__PURE__*/React.createElement(Container, {
|
|
195
175
|
width: width,
|
|
196
176
|
height: height,
|
|
197
177
|
className: styles.content
|
|
198
|
-
}, /*#__PURE__*/
|
|
178
|
+
}, /*#__PURE__*/React.createElement(Layout, {
|
|
199
179
|
className: styles.layout,
|
|
200
180
|
fullscreen: true,
|
|
201
181
|
verticalAlign: verticalAlign,
|
|
@@ -204,45 +184,45 @@ var TitleScreen = function TitleScreen(_ref) {
|
|
|
204
184
|
paddingTop: (!isPreview ? viewerTopHeight : 0) + (hasHeader ? spacing / 2 : spacing),
|
|
205
185
|
paddingBottom: (current && !isPreview ? viewerBottomHeight : 0) + (hasFooter ? spacing / 2 : spacing)
|
|
206
186
|
} : null
|
|
207
|
-
}, !isPlaceholder && hasHeader ? /*#__PURE__*/
|
|
187
|
+
}, !isPlaceholder && hasHeader ? /*#__PURE__*/React.createElement("div", {
|
|
208
188
|
style: {
|
|
209
189
|
paddingBottom: spacing
|
|
210
190
|
}
|
|
211
|
-
}, /*#__PURE__*/
|
|
191
|
+
}, /*#__PURE__*/React.createElement(Header, header)) : null, !isPlaceholder && hasFooter && isMiddleLayout ? /*#__PURE__*/React.createElement(Layout.Spacer, {
|
|
212
192
|
key: "spacer-cta-top"
|
|
213
|
-
}) : null, !isPlaceholder && hasHeader && isBottomLayout ? /*#__PURE__*/
|
|
193
|
+
}) : null, !isPlaceholder && hasHeader && isBottomLayout ? /*#__PURE__*/React.createElement(Layout.Spacer, {
|
|
214
194
|
key: "spacer-cta-top"
|
|
215
|
-
}) : null, !isPlaceholder && hasHeader && !hasFooter && isMiddleLayout ? /*#__PURE__*/
|
|
195
|
+
}) : null, !isPlaceholder && hasHeader && !hasFooter && isMiddleLayout ? /*#__PURE__*/React.createElement(Layout.Spacer, {
|
|
216
196
|
key: "spacer-cta-top"
|
|
217
|
-
}) : null, withBox && !isSplitted ? /*#__PURE__*/
|
|
197
|
+
}) : null, withBox && !isSplitted ? /*#__PURE__*/React.createElement("div", {
|
|
218
198
|
className: styles.box,
|
|
219
199
|
style: isEdit || isPlaceholder || hasTitle || hasSubtitle || hasDescription ? utils.getStyleFromBox(boxStyle) : null
|
|
220
|
-
}, [titleElement, subtitleElement, descriptionElement]) : null, withBox && isSplitted ? /*#__PURE__*/
|
|
200
|
+
}, [titleElement, subtitleElement, descriptionElement]) : null, withBox && isSplitted ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
|
221
201
|
className: styles.box,
|
|
222
202
|
key: "top",
|
|
223
203
|
style: isEdit || isPlaceholder || hasTitle || withDescription && verticalAlign === 'top' && hasSubtitle ? utils.getStyleFromBox(boxStyle) : null
|
|
224
|
-
}, titleElement, withDescription && verticalAlign === 'top' ? subtitleElement : null), /*#__PURE__*/
|
|
204
|
+
}, titleElement, withDescription && verticalAlign === 'top' ? subtitleElement : null), /*#__PURE__*/React.createElement(Layout.Spacer, {
|
|
225
205
|
key: "spacer1"
|
|
226
|
-
}), /*#__PURE__*/
|
|
206
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
227
207
|
className: styles.box,
|
|
228
208
|
key: "bottom",
|
|
229
209
|
style: isEdit || isPlaceholder || hasDescription || (!withDescription || verticalAlign === 'bottom') && hasSubtitle ? utils.getStyleFromBox(boxStyle) : null
|
|
230
|
-
}, !withDescription || verticalAlign === 'bottom' ? subtitleElement : null, descriptionElement)) : null, !withBox ? /*#__PURE__*/
|
|
210
|
+
}, !withDescription || verticalAlign === 'bottom' ? subtitleElement : null, descriptionElement)) : null, !withBox ? /*#__PURE__*/React.createElement(React.Fragment, null, titleElement, isSplitted && (!withDescription || verticalAlign === 'bottom') && /*#__PURE__*/React.createElement(Layout.Spacer, {
|
|
231
211
|
key: "spacer1"
|
|
232
|
-
}), subtitleElement, isSplitted && withDescription && verticalAlign === 'top' && /*#__PURE__*/
|
|
212
|
+
}), subtitleElement, isSplitted && withDescription && verticalAlign === 'top' && /*#__PURE__*/React.createElement(Layout.Spacer, {
|
|
233
213
|
key: "spacer2"
|
|
234
|
-
}), descriptionElement) : null, !isPlaceholder && hasFooter && (isTopLayout || isMiddleLayout) ? /*#__PURE__*/
|
|
214
|
+
}), descriptionElement) : null, !isPlaceholder && hasFooter && (isTopLayout || isMiddleLayout) ? /*#__PURE__*/React.createElement(Layout.Spacer, {
|
|
235
215
|
key: "spacer-cta-bottom"
|
|
236
|
-
}) : null, !isPlaceholder && hasHeader && !hasFooter && isMiddleLayout ? /*#__PURE__*/
|
|
216
|
+
}) : null, !isPlaceholder && hasHeader && !hasFooter && isMiddleLayout ? /*#__PURE__*/React.createElement(Layout.Spacer, {
|
|
237
217
|
key: "spacer-cta-bottom"
|
|
238
|
-
}) : null, !isPlaceholder && hasFooter ? /*#__PURE__*/
|
|
218
|
+
}) : null, !isPlaceholder && hasFooter ? /*#__PURE__*/React.createElement("div", {
|
|
239
219
|
key: "call-to-action",
|
|
240
220
|
style: {
|
|
241
221
|
paddingTop: spacing,
|
|
242
222
|
paddingLeft: Math.max(0, viewerBottomSidesWidth - spacing),
|
|
243
223
|
paddingRight: Math.max(0, viewerBottomSidesWidth - spacing)
|
|
244
224
|
}
|
|
245
|
-
}, /*#__PURE__*/
|
|
225
|
+
}, /*#__PURE__*/React.createElement(Footer, footerProps)) : null)), !isPlaceholder ? /*#__PURE__*/React.createElement(Background, {
|
|
246
226
|
background: background,
|
|
247
227
|
width: width,
|
|
248
228
|
height: height,
|
|
@@ -257,11 +237,11 @@ var TitleScreen = function TitleScreen(_ref) {
|
|
|
257
237
|
};
|
|
258
238
|
TitleScreen.propTypes = propTypes$2;
|
|
259
239
|
TitleScreen.defaultProps = defaultProps$2;
|
|
260
|
-
var TitleScreen$1 = /*#__PURE__*/
|
|
240
|
+
var TitleScreen$1 = /*#__PURE__*/React.memo(TitleScreen);
|
|
261
241
|
|
|
262
242
|
var TitleSubtitleScreen = function TitleSubtitleScreen(_ref) {
|
|
263
|
-
var props =
|
|
264
|
-
return /*#__PURE__*/
|
|
243
|
+
var props = _extends({}, (_objectDestructuringEmpty(_ref), _ref));
|
|
244
|
+
return /*#__PURE__*/React.createElement(TitleScreen$1, Object.assign({}, props, {
|
|
265
245
|
withSubtitle: true
|
|
266
246
|
}));
|
|
267
247
|
};
|
|
@@ -275,12 +255,12 @@ var defaultProps$1 = {
|
|
|
275
255
|
};
|
|
276
256
|
var TitleSubtitleCreditsScreen = function TitleSubtitleCreditsScreen(_ref) {
|
|
277
257
|
var credits = _ref.credits,
|
|
278
|
-
props =
|
|
279
|
-
return /*#__PURE__*/
|
|
258
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
259
|
+
return /*#__PURE__*/React.createElement(TitleScreen$1, Object.assign({}, props, {
|
|
280
260
|
description: credits,
|
|
281
261
|
withSubtitle: true,
|
|
282
262
|
withDescription: true,
|
|
283
|
-
descriptionEmptyLabel: /*#__PURE__*/
|
|
263
|
+
descriptionEmptyLabel: /*#__PURE__*/React.createElement(reactIntl.FormattedMessage, {
|
|
284
264
|
id: "/hupzO",
|
|
285
265
|
defaultMessage: [{
|
|
286
266
|
"type": 0,
|
|
@@ -296,7 +276,7 @@ TitleSubtitleCreditsScreen.defaultProps = defaultProps$1;
|
|
|
296
276
|
var propTypes = {};
|
|
297
277
|
var defaultProps = {};
|
|
298
278
|
var TitleWithBoxScreen = function TitleWithBoxScreen(props) {
|
|
299
|
-
return /*#__PURE__*/
|
|
279
|
+
return /*#__PURE__*/React.createElement(TitleScreen$1, Object.assign({}, props, {
|
|
300
280
|
withSubtitle: true,
|
|
301
281
|
withDescription: true,
|
|
302
282
|
withBox: true
|
|
@@ -318,11 +298,11 @@ var transform = function transform(newStory, _ref) {
|
|
|
318
298
|
var _Text = appleNews.Text(subtitleStory, credits),
|
|
319
299
|
creditsStory = _Text.story,
|
|
320
300
|
creditsComponent = _Text.component;
|
|
321
|
-
var _Container = appleNews.Container(creditsStory, [].concat(
|
|
301
|
+
var _Container = appleNews.Container(creditsStory, [].concat(_toConsumableArray(titleComponent ? [titleComponent] : []), _toConsumableArray(subtitleComponent ? [subtitleComponent] : []), _toConsumableArray(creditsComponent ? [creditsComponent] : []))),
|
|
322
302
|
containerStory = _Container.story,
|
|
323
303
|
containerComponent = _Container.component;
|
|
324
|
-
return
|
|
325
|
-
components: [].concat(
|
|
304
|
+
return _objectSpread(_objectSpread({}, containerStory), {}, {
|
|
305
|
+
components: [].concat(_toConsumableArray(newStory.components || []), _toConsumableArray(containerComponent ? [containerComponent] : []))
|
|
326
306
|
});
|
|
327
307
|
};
|
|
328
308
|
|
|
@@ -800,4 +780,4 @@ var definition = [{
|
|
|
800
780
|
exports.TitleScreen = TitleScreen$1;
|
|
801
781
|
exports.TitleSubtitleCreditsScreen = TitleSubtitleCreditsScreen;
|
|
802
782
|
exports.TitleSubtitleScreen = TitleSubtitleScreen;
|
|
803
|
-
exports
|
|
783
|
+
exports.default = definition;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/screen-title",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.429",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -32,6 +32,14 @@
|
|
|
32
32
|
"license": "ISC",
|
|
33
33
|
"main": "lib/index.js",
|
|
34
34
|
"module": "es/index.js",
|
|
35
|
+
"style": "assets/css/styles.css",
|
|
36
|
+
"exports": {
|
|
37
|
+
".": {
|
|
38
|
+
"require": "./lib/index.js",
|
|
39
|
+
"import": "./es/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./assets/css/*.css": "./assets/css/*.css"
|
|
42
|
+
},
|
|
35
43
|
"files": [
|
|
36
44
|
"lib",
|
|
37
45
|
"es",
|
|
@@ -50,15 +58,15 @@
|
|
|
50
58
|
},
|
|
51
59
|
"dependencies": {
|
|
52
60
|
"@babel/runtime": "^7.13.10",
|
|
53
|
-
"@micromag/core": "^0.3.
|
|
54
|
-
"@micromag/element-background": "^0.3.
|
|
55
|
-
"@micromag/element-container": "^0.3.
|
|
56
|
-
"@micromag/element-footer": "^0.3.
|
|
57
|
-
"@micromag/element-header": "^0.3.
|
|
58
|
-
"@micromag/element-heading": "^0.3.
|
|
59
|
-
"@micromag/element-layout": "^0.3.
|
|
60
|
-
"@micromag/element-text": "^0.3.
|
|
61
|
-
"@micromag/transforms": "^0.3.
|
|
61
|
+
"@micromag/core": "^0.3.429",
|
|
62
|
+
"@micromag/element-background": "^0.3.429",
|
|
63
|
+
"@micromag/element-container": "^0.3.429",
|
|
64
|
+
"@micromag/element-footer": "^0.3.429",
|
|
65
|
+
"@micromag/element-header": "^0.3.429",
|
|
66
|
+
"@micromag/element-heading": "^0.3.429",
|
|
67
|
+
"@micromag/element-layout": "^0.3.429",
|
|
68
|
+
"@micromag/element-text": "^0.3.429",
|
|
69
|
+
"@micromag/transforms": "^0.3.429",
|
|
62
70
|
"classnames": "^2.2.6",
|
|
63
71
|
"lodash": "^4.17.21",
|
|
64
72
|
"prop-types": "^15.7.2",
|
|
@@ -69,5 +77,5 @@
|
|
|
69
77
|
"access": "public",
|
|
70
78
|
"registry": "https://registry.npmjs.org/"
|
|
71
79
|
},
|
|
72
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "f15e72b88ecfda4c54b87626513149b58572c52b"
|
|
73
81
|
}
|