@micromag/screen-image 0.2.315 → 0.2.320
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 +77 -18
- package/lib/index.js +77 -18
- package/package.json +11 -11
package/es/index.js
CHANGED
|
@@ -26,6 +26,7 @@ var styles = {"container":"micromag-screen-image-container","image":"micromag-sc
|
|
|
26
26
|
var propTypes = {
|
|
27
27
|
layout: PropTypes.oneOf(['normal', 'fullscreen', 'reverse', 'card', 'card-reverse', 'title-top']),
|
|
28
28
|
image: PropTypes$1.imageMedia,
|
|
29
|
+
imageFit: PropTypes.oneOf(['contain', 'cover']),
|
|
29
30
|
defaultImageFit: PropTypes.string,
|
|
30
31
|
title: PropTypes$1.headingElement,
|
|
31
32
|
text: PropTypes$1.textElement,
|
|
@@ -43,6 +44,7 @@ var propTypes = {
|
|
|
43
44
|
var defaultProps = {
|
|
44
45
|
layout: 'normal',
|
|
45
46
|
image: null,
|
|
47
|
+
imageFit: null,
|
|
46
48
|
defaultImageFit: 'cover',
|
|
47
49
|
title: null,
|
|
48
50
|
text: null,
|
|
@@ -59,10 +61,11 @@ var defaultProps = {
|
|
|
59
61
|
};
|
|
60
62
|
|
|
61
63
|
var ImageScreen = function ImageScreen(_ref) {
|
|
62
|
-
var
|
|
64
|
+
var _ref3;
|
|
63
65
|
|
|
64
66
|
var layout = _ref.layout,
|
|
65
67
|
image = _ref.image,
|
|
68
|
+
imageFit = _ref.imageFit,
|
|
66
69
|
defaultImageFit = _ref.defaultImageFit,
|
|
67
70
|
title = _ref.title,
|
|
68
71
|
text = _ref.text,
|
|
@@ -76,15 +79,11 @@ var ImageScreen = function ImageScreen(_ref) {
|
|
|
76
79
|
current = _ref.current,
|
|
77
80
|
transitions = _ref.transitions,
|
|
78
81
|
className = _ref.className;
|
|
79
|
-
|
|
80
|
-
var _ref2 = image || {},
|
|
81
|
-
fit = _ref2.fit;
|
|
82
|
-
|
|
83
|
-
var imageFit = useMemo(function () {
|
|
82
|
+
var finalImageFit = useMemo(function () {
|
|
84
83
|
return {
|
|
85
|
-
fit:
|
|
84
|
+
fit: imageFit || defaultImageFit
|
|
86
85
|
};
|
|
87
|
-
}, [
|
|
86
|
+
}, [imageFit, defaultImageFit]);
|
|
88
87
|
|
|
89
88
|
var _useScreenSize = useScreenSize(),
|
|
90
89
|
width = _useScreenSize.width,
|
|
@@ -129,9 +128,9 @@ var ImageScreen = function ImageScreen(_ref) {
|
|
|
129
128
|
imageCntRef = _useResizeObserver.ref,
|
|
130
129
|
contentRect = _useResizeObserver.entry.contentRect;
|
|
131
130
|
|
|
132
|
-
var
|
|
133
|
-
imageWidth =
|
|
134
|
-
imageHeight =
|
|
131
|
+
var _ref2 = contentRect || {},
|
|
132
|
+
imageWidth = _ref2.width,
|
|
133
|
+
imageHeight = _ref2.height;
|
|
135
134
|
|
|
136
135
|
var cardImageMargin = isCardReverse ? "".concat(finalSpacing / 2, "px ").concat(-finalSpacing / 2, "px 0") : "0 ".concat(-finalSpacing / 2, "px ").concat(finalSpacing / 2, "px");
|
|
137
136
|
var imageMargin = isCard || isCardReverse ? cardImageMargin : finalSpacing / 2;
|
|
@@ -165,7 +164,7 @@ var ImageScreen = function ImageScreen(_ref) {
|
|
|
165
164
|
}, /*#__PURE__*/React.createElement(Visual, {
|
|
166
165
|
className: styles.image,
|
|
167
166
|
media: image,
|
|
168
|
-
objectFit:
|
|
167
|
+
objectFit: finalImageFit,
|
|
169
168
|
width: imageWidth,
|
|
170
169
|
height: imageHeight,
|
|
171
170
|
videoAutoplay: backgroundPlaying,
|
|
@@ -270,7 +269,7 @@ var ImageScreen = function ImageScreen(_ref) {
|
|
|
270
269
|
}
|
|
271
270
|
|
|
272
271
|
return /*#__PURE__*/React.createElement("div", {
|
|
273
|
-
className: classNames([styles.container, (
|
|
272
|
+
className: classNames([styles.container, (_ref3 = {}, _defineProperty(_ref3, className, className !== null), _defineProperty(_ref3, styles.isReversed, isReversed), _defineProperty(_ref3, styles.isPlaceholder, isPlaceholder), _defineProperty(_ref3, styles.isCard, isCard), _defineProperty(_ref3, styles.isCardReverse, isCardReverse), _defineProperty(_ref3, styles.isFullscreen, isFullscreen), _ref3)]),
|
|
274
273
|
"data-screen-ready": ready
|
|
275
274
|
}, !isPlaceholder ? /*#__PURE__*/React.createElement(Background, Object.assign({}, background, {
|
|
276
275
|
width: width,
|
|
@@ -413,7 +412,7 @@ var definition = [{
|
|
|
413
412
|
})
|
|
414
413
|
}, {
|
|
415
414
|
name: 'image',
|
|
416
|
-
type: 'visual
|
|
415
|
+
type: 'visual',
|
|
417
416
|
label: defineMessage({
|
|
418
417
|
"id": "xsipID",
|
|
419
418
|
"defaultMessage": [{
|
|
@@ -421,6 +420,18 @@ var definition = [{
|
|
|
421
420
|
"value": "Image"
|
|
422
421
|
}]
|
|
423
422
|
})
|
|
423
|
+
}, {
|
|
424
|
+
name: 'imageFit',
|
|
425
|
+
type: 'fit',
|
|
426
|
+
defaultValue: 'cover',
|
|
427
|
+
values: ['cover', 'contain'],
|
|
428
|
+
label: defineMessage({
|
|
429
|
+
"id": "dkBBRa",
|
|
430
|
+
"defaultMessage": [{
|
|
431
|
+
"type": 0,
|
|
432
|
+
"value": "Image fit"
|
|
433
|
+
}]
|
|
434
|
+
})
|
|
424
435
|
}, {
|
|
425
436
|
name: 'background',
|
|
426
437
|
type: 'background',
|
|
@@ -476,7 +487,7 @@ var definition = [{
|
|
|
476
487
|
})
|
|
477
488
|
}, {
|
|
478
489
|
name: 'image',
|
|
479
|
-
type: 'visual
|
|
490
|
+
type: 'visual',
|
|
480
491
|
label: defineMessage({
|
|
481
492
|
"id": "xsipID",
|
|
482
493
|
"defaultMessage": [{
|
|
@@ -484,6 +495,18 @@ var definition = [{
|
|
|
484
495
|
"value": "Image"
|
|
485
496
|
}]
|
|
486
497
|
})
|
|
498
|
+
}, {
|
|
499
|
+
name: 'imageFit',
|
|
500
|
+
type: 'fit',
|
|
501
|
+
defaultValue: 'cover',
|
|
502
|
+
values: ['cover', 'contain'],
|
|
503
|
+
label: defineMessage({
|
|
504
|
+
"id": "dkBBRa",
|
|
505
|
+
"defaultMessage": [{
|
|
506
|
+
"type": 0,
|
|
507
|
+
"value": "Image fit"
|
|
508
|
+
}]
|
|
509
|
+
})
|
|
487
510
|
}, {
|
|
488
511
|
name: 'title',
|
|
489
512
|
type: 'heading-element',
|
|
@@ -553,7 +576,7 @@ var definition = [{
|
|
|
553
576
|
})
|
|
554
577
|
}, {
|
|
555
578
|
name: 'image',
|
|
556
|
-
type: 'visual
|
|
579
|
+
type: 'visual',
|
|
557
580
|
label: defineMessage({
|
|
558
581
|
"id": "xsipID",
|
|
559
582
|
"defaultMessage": [{
|
|
@@ -561,6 +584,18 @@ var definition = [{
|
|
|
561
584
|
"value": "Image"
|
|
562
585
|
}]
|
|
563
586
|
})
|
|
587
|
+
}, {
|
|
588
|
+
name: 'imageFit',
|
|
589
|
+
type: 'fit',
|
|
590
|
+
defaultValue: 'cover',
|
|
591
|
+
values: ['cover', 'contain'],
|
|
592
|
+
label: defineMessage({
|
|
593
|
+
"id": "dkBBRa",
|
|
594
|
+
"defaultMessage": [{
|
|
595
|
+
"type": 0,
|
|
596
|
+
"value": "Image fit"
|
|
597
|
+
}]
|
|
598
|
+
})
|
|
564
599
|
}, {
|
|
565
600
|
name: 'text',
|
|
566
601
|
type: 'text-element',
|
|
@@ -629,7 +664,7 @@ var definition = [{
|
|
|
629
664
|
})
|
|
630
665
|
}, {
|
|
631
666
|
name: 'image',
|
|
632
|
-
type: 'visual
|
|
667
|
+
type: 'visual',
|
|
633
668
|
isHorizontal: false,
|
|
634
669
|
label: defineMessage({
|
|
635
670
|
"id": "xsipID",
|
|
@@ -638,6 +673,18 @@ var definition = [{
|
|
|
638
673
|
"value": "Image"
|
|
639
674
|
}]
|
|
640
675
|
})
|
|
676
|
+
}, {
|
|
677
|
+
name: 'imageFit',
|
|
678
|
+
type: 'fit',
|
|
679
|
+
defaultValue: 'cover',
|
|
680
|
+
values: ['cover', 'contain'],
|
|
681
|
+
label: defineMessage({
|
|
682
|
+
"id": "dkBBRa",
|
|
683
|
+
"defaultMessage": [{
|
|
684
|
+
"type": 0,
|
|
685
|
+
"value": "Image fit"
|
|
686
|
+
}]
|
|
687
|
+
})
|
|
641
688
|
}, {
|
|
642
689
|
name: 'title',
|
|
643
690
|
type: 'text-element',
|
|
@@ -720,7 +767,7 @@ var definition = [{
|
|
|
720
767
|
})
|
|
721
768
|
}, {
|
|
722
769
|
name: 'image',
|
|
723
|
-
type: 'visual
|
|
770
|
+
type: 'visual',
|
|
724
771
|
label: defineMessage({
|
|
725
772
|
"id": "xsipID",
|
|
726
773
|
"defaultMessage": [{
|
|
@@ -728,6 +775,18 @@ var definition = [{
|
|
|
728
775
|
"value": "Image"
|
|
729
776
|
}]
|
|
730
777
|
})
|
|
778
|
+
}, {
|
|
779
|
+
name: 'imageFit',
|
|
780
|
+
type: 'fit',
|
|
781
|
+
defaultValue: 'cover',
|
|
782
|
+
values: ['cover', 'contain'],
|
|
783
|
+
label: defineMessage({
|
|
784
|
+
"id": "dkBBRa",
|
|
785
|
+
"defaultMessage": [{
|
|
786
|
+
"type": 0,
|
|
787
|
+
"value": "Image fit"
|
|
788
|
+
}]
|
|
789
|
+
})
|
|
731
790
|
}, {
|
|
732
791
|
name: 'legend',
|
|
733
792
|
type: 'text-element',
|
package/lib/index.js
CHANGED
|
@@ -48,6 +48,7 @@ var styles = {"container":"micromag-screen-image-container","image":"micromag-sc
|
|
|
48
48
|
var propTypes = {
|
|
49
49
|
layout: PropTypes__default['default'].oneOf(['normal', 'fullscreen', 'reverse', 'card', 'card-reverse', 'title-top']),
|
|
50
50
|
image: core.PropTypes.imageMedia,
|
|
51
|
+
imageFit: PropTypes__default['default'].oneOf(['contain', 'cover']),
|
|
51
52
|
defaultImageFit: PropTypes__default['default'].string,
|
|
52
53
|
title: core.PropTypes.headingElement,
|
|
53
54
|
text: core.PropTypes.textElement,
|
|
@@ -65,6 +66,7 @@ var propTypes = {
|
|
|
65
66
|
var defaultProps = {
|
|
66
67
|
layout: 'normal',
|
|
67
68
|
image: null,
|
|
69
|
+
imageFit: null,
|
|
68
70
|
defaultImageFit: 'cover',
|
|
69
71
|
title: null,
|
|
70
72
|
text: null,
|
|
@@ -81,10 +83,11 @@ var defaultProps = {
|
|
|
81
83
|
};
|
|
82
84
|
|
|
83
85
|
var ImageScreen = function ImageScreen(_ref) {
|
|
84
|
-
var
|
|
86
|
+
var _ref3;
|
|
85
87
|
|
|
86
88
|
var layout = _ref.layout,
|
|
87
89
|
image = _ref.image,
|
|
90
|
+
imageFit = _ref.imageFit,
|
|
88
91
|
defaultImageFit = _ref.defaultImageFit,
|
|
89
92
|
title = _ref.title,
|
|
90
93
|
text = _ref.text,
|
|
@@ -98,15 +101,11 @@ var ImageScreen = function ImageScreen(_ref) {
|
|
|
98
101
|
current = _ref.current,
|
|
99
102
|
transitions = _ref.transitions,
|
|
100
103
|
className = _ref.className;
|
|
101
|
-
|
|
102
|
-
var _ref2 = image || {},
|
|
103
|
-
fit = _ref2.fit;
|
|
104
|
-
|
|
105
|
-
var imageFit = React.useMemo(function () {
|
|
104
|
+
var finalImageFit = React.useMemo(function () {
|
|
106
105
|
return {
|
|
107
|
-
fit:
|
|
106
|
+
fit: imageFit || defaultImageFit
|
|
108
107
|
};
|
|
109
|
-
}, [
|
|
108
|
+
}, [imageFit, defaultImageFit]);
|
|
110
109
|
|
|
111
110
|
var _useScreenSize = contexts.useScreenSize(),
|
|
112
111
|
width = _useScreenSize.width,
|
|
@@ -151,9 +150,9 @@ var ImageScreen = function ImageScreen(_ref) {
|
|
|
151
150
|
imageCntRef = _useResizeObserver.ref,
|
|
152
151
|
contentRect = _useResizeObserver.entry.contentRect;
|
|
153
152
|
|
|
154
|
-
var
|
|
155
|
-
imageWidth =
|
|
156
|
-
imageHeight =
|
|
153
|
+
var _ref2 = contentRect || {},
|
|
154
|
+
imageWidth = _ref2.width,
|
|
155
|
+
imageHeight = _ref2.height;
|
|
157
156
|
|
|
158
157
|
var cardImageMargin = isCardReverse ? "".concat(finalSpacing / 2, "px ").concat(-finalSpacing / 2, "px 0") : "0 ".concat(-finalSpacing / 2, "px ").concat(finalSpacing / 2, "px");
|
|
159
158
|
var imageMargin = isCard || isCardReverse ? cardImageMargin : finalSpacing / 2;
|
|
@@ -187,7 +186,7 @@ var ImageScreen = function ImageScreen(_ref) {
|
|
|
187
186
|
}, /*#__PURE__*/React__default['default'].createElement(Visual__default['default'], {
|
|
188
187
|
className: styles.image,
|
|
189
188
|
media: image,
|
|
190
|
-
objectFit:
|
|
189
|
+
objectFit: finalImageFit,
|
|
191
190
|
width: imageWidth,
|
|
192
191
|
height: imageHeight,
|
|
193
192
|
videoAutoplay: backgroundPlaying,
|
|
@@ -292,7 +291,7 @@ var ImageScreen = function ImageScreen(_ref) {
|
|
|
292
291
|
}
|
|
293
292
|
|
|
294
293
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
295
|
-
className: classNames__default['default']([styles.container, (
|
|
294
|
+
className: classNames__default['default']([styles.container, (_ref3 = {}, _defineProperty__default['default'](_ref3, className, className !== null), _defineProperty__default['default'](_ref3, styles.isReversed, isReversed), _defineProperty__default['default'](_ref3, styles.isPlaceholder, isPlaceholder), _defineProperty__default['default'](_ref3, styles.isCard, isCard), _defineProperty__default['default'](_ref3, styles.isCardReverse, isCardReverse), _defineProperty__default['default'](_ref3, styles.isFullscreen, isFullscreen), _ref3)]),
|
|
296
295
|
"data-screen-ready": ready
|
|
297
296
|
}, !isPlaceholder ? /*#__PURE__*/React__default['default'].createElement(Background__default['default'], Object.assign({}, background, {
|
|
298
297
|
width: width,
|
|
@@ -435,7 +434,7 @@ var definition = [{
|
|
|
435
434
|
})
|
|
436
435
|
}, {
|
|
437
436
|
name: 'image',
|
|
438
|
-
type: 'visual
|
|
437
|
+
type: 'visual',
|
|
439
438
|
label: reactIntl.defineMessage({
|
|
440
439
|
"id": "xsipID",
|
|
441
440
|
"defaultMessage": [{
|
|
@@ -443,6 +442,18 @@ var definition = [{
|
|
|
443
442
|
"value": "Image"
|
|
444
443
|
}]
|
|
445
444
|
})
|
|
445
|
+
}, {
|
|
446
|
+
name: 'imageFit',
|
|
447
|
+
type: 'fit',
|
|
448
|
+
defaultValue: 'cover',
|
|
449
|
+
values: ['cover', 'contain'],
|
|
450
|
+
label: reactIntl.defineMessage({
|
|
451
|
+
"id": "dkBBRa",
|
|
452
|
+
"defaultMessage": [{
|
|
453
|
+
"type": 0,
|
|
454
|
+
"value": "Image fit"
|
|
455
|
+
}]
|
|
456
|
+
})
|
|
446
457
|
}, {
|
|
447
458
|
name: 'background',
|
|
448
459
|
type: 'background',
|
|
@@ -498,7 +509,7 @@ var definition = [{
|
|
|
498
509
|
})
|
|
499
510
|
}, {
|
|
500
511
|
name: 'image',
|
|
501
|
-
type: 'visual
|
|
512
|
+
type: 'visual',
|
|
502
513
|
label: reactIntl.defineMessage({
|
|
503
514
|
"id": "xsipID",
|
|
504
515
|
"defaultMessage": [{
|
|
@@ -506,6 +517,18 @@ var definition = [{
|
|
|
506
517
|
"value": "Image"
|
|
507
518
|
}]
|
|
508
519
|
})
|
|
520
|
+
}, {
|
|
521
|
+
name: 'imageFit',
|
|
522
|
+
type: 'fit',
|
|
523
|
+
defaultValue: 'cover',
|
|
524
|
+
values: ['cover', 'contain'],
|
|
525
|
+
label: reactIntl.defineMessage({
|
|
526
|
+
"id": "dkBBRa",
|
|
527
|
+
"defaultMessage": [{
|
|
528
|
+
"type": 0,
|
|
529
|
+
"value": "Image fit"
|
|
530
|
+
}]
|
|
531
|
+
})
|
|
509
532
|
}, {
|
|
510
533
|
name: 'title',
|
|
511
534
|
type: 'heading-element',
|
|
@@ -575,7 +598,7 @@ var definition = [{
|
|
|
575
598
|
})
|
|
576
599
|
}, {
|
|
577
600
|
name: 'image',
|
|
578
|
-
type: 'visual
|
|
601
|
+
type: 'visual',
|
|
579
602
|
label: reactIntl.defineMessage({
|
|
580
603
|
"id": "xsipID",
|
|
581
604
|
"defaultMessage": [{
|
|
@@ -583,6 +606,18 @@ var definition = [{
|
|
|
583
606
|
"value": "Image"
|
|
584
607
|
}]
|
|
585
608
|
})
|
|
609
|
+
}, {
|
|
610
|
+
name: 'imageFit',
|
|
611
|
+
type: 'fit',
|
|
612
|
+
defaultValue: 'cover',
|
|
613
|
+
values: ['cover', 'contain'],
|
|
614
|
+
label: reactIntl.defineMessage({
|
|
615
|
+
"id": "dkBBRa",
|
|
616
|
+
"defaultMessage": [{
|
|
617
|
+
"type": 0,
|
|
618
|
+
"value": "Image fit"
|
|
619
|
+
}]
|
|
620
|
+
})
|
|
586
621
|
}, {
|
|
587
622
|
name: 'text',
|
|
588
623
|
type: 'text-element',
|
|
@@ -651,7 +686,7 @@ var definition = [{
|
|
|
651
686
|
})
|
|
652
687
|
}, {
|
|
653
688
|
name: 'image',
|
|
654
|
-
type: 'visual
|
|
689
|
+
type: 'visual',
|
|
655
690
|
isHorizontal: false,
|
|
656
691
|
label: reactIntl.defineMessage({
|
|
657
692
|
"id": "xsipID",
|
|
@@ -660,6 +695,18 @@ var definition = [{
|
|
|
660
695
|
"value": "Image"
|
|
661
696
|
}]
|
|
662
697
|
})
|
|
698
|
+
}, {
|
|
699
|
+
name: 'imageFit',
|
|
700
|
+
type: 'fit',
|
|
701
|
+
defaultValue: 'cover',
|
|
702
|
+
values: ['cover', 'contain'],
|
|
703
|
+
label: reactIntl.defineMessage({
|
|
704
|
+
"id": "dkBBRa",
|
|
705
|
+
"defaultMessage": [{
|
|
706
|
+
"type": 0,
|
|
707
|
+
"value": "Image fit"
|
|
708
|
+
}]
|
|
709
|
+
})
|
|
663
710
|
}, {
|
|
664
711
|
name: 'title',
|
|
665
712
|
type: 'text-element',
|
|
@@ -742,7 +789,7 @@ var definition = [{
|
|
|
742
789
|
})
|
|
743
790
|
}, {
|
|
744
791
|
name: 'image',
|
|
745
|
-
type: 'visual
|
|
792
|
+
type: 'visual',
|
|
746
793
|
label: reactIntl.defineMessage({
|
|
747
794
|
"id": "xsipID",
|
|
748
795
|
"defaultMessage": [{
|
|
@@ -750,6 +797,18 @@ var definition = [{
|
|
|
750
797
|
"value": "Image"
|
|
751
798
|
}]
|
|
752
799
|
})
|
|
800
|
+
}, {
|
|
801
|
+
name: 'imageFit',
|
|
802
|
+
type: 'fit',
|
|
803
|
+
defaultValue: 'cover',
|
|
804
|
+
values: ['cover', 'contain'],
|
|
805
|
+
label: reactIntl.defineMessage({
|
|
806
|
+
"id": "dkBBRa",
|
|
807
|
+
"defaultMessage": [{
|
|
808
|
+
"type": 0,
|
|
809
|
+
"value": "Image fit"
|
|
810
|
+
}]
|
|
811
|
+
})
|
|
753
812
|
}, {
|
|
754
813
|
name: 'legend',
|
|
755
814
|
type: 'text-element',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/screen-image",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.320",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -49,15 +49,15 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@babel/runtime": "^7.13.10",
|
|
52
|
-
"@micromag/core": "^0.2.
|
|
53
|
-
"@micromag/element-background": "^0.2.
|
|
54
|
-
"@micromag/element-call-to-action": "^0.2.
|
|
55
|
-
"@micromag/element-container": "^0.2.
|
|
56
|
-
"@micromag/element-heading": "^0.2.
|
|
57
|
-
"@micromag/element-layout": "^0.2.
|
|
58
|
-
"@micromag/element-text": "^0.2.
|
|
59
|
-
"@micromag/element-visual": "^0.2.
|
|
60
|
-
"@micromag/transforms": "^0.2.
|
|
52
|
+
"@micromag/core": "^0.2.320",
|
|
53
|
+
"@micromag/element-background": "^0.2.320",
|
|
54
|
+
"@micromag/element-call-to-action": "^0.2.320",
|
|
55
|
+
"@micromag/element-container": "^0.2.320",
|
|
56
|
+
"@micromag/element-heading": "^0.2.320",
|
|
57
|
+
"@micromag/element-layout": "^0.2.320",
|
|
58
|
+
"@micromag/element-text": "^0.2.320",
|
|
59
|
+
"@micromag/element-visual": "^0.2.320",
|
|
60
|
+
"@micromag/transforms": "^0.2.320",
|
|
61
61
|
"classnames": "^2.2.6",
|
|
62
62
|
"lodash": "^4.17.20",
|
|
63
63
|
"prop-types": "^15.7.2",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "e710981101344c5b9dabf805fae6258743337e51"
|
|
71
71
|
}
|