@meduza/ui-kit-2 0.1.40 → 0.1.42
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/dist/Image/Image.types.d.ts +1 -0
- package/dist/ui-kit-2.cjs.development.js +23 -13
- package/dist/ui-kit-2.cjs.development.js.map +1 -1
- package/dist/ui-kit-2.cjs.production.min.js +1 -1
- package/dist/ui-kit-2.cjs.production.min.js.map +1 -1
- package/dist/ui-kit-2.esm.js +23 -13
- package/dist/ui-kit-2.esm.js.map +1 -1
- package/dist/ui-kit.css +1792 -1789
- package/package.json +1 -1
- package/src/EmbedBlock/EmbedBlock.tsx +1 -0
- package/src/Image/Image.module.css +5 -1
- package/src/Image/Image.types.ts +1 -0
- package/src/Image/index.tsx +15 -7
- package/src/Popover/index.tsx +4 -0
|
@@ -289,6 +289,15 @@ var Switcher = function Switcher(_ref) {
|
|
|
289
289
|
}, children));
|
|
290
290
|
};
|
|
291
291
|
|
|
292
|
+
var makeStyleContext = function makeStyleContext(classNames, styleContext, styles) {
|
|
293
|
+
var context = Array.isArray(styleContext) ? styleContext.filter(function (ctx) {
|
|
294
|
+
return styles[ctx];
|
|
295
|
+
}).map(function (ctx) {
|
|
296
|
+
return [[styles[ctx]], true];
|
|
297
|
+
}) : [[styles[styleContext], !!styleContext && !!styles[styleContext]]];
|
|
298
|
+
return classNames.concat(context);
|
|
299
|
+
};
|
|
300
|
+
|
|
292
301
|
var BlockContext = /*#__PURE__*/React__default.createContext({
|
|
293
302
|
lightBox: null
|
|
294
303
|
});
|
|
@@ -431,7 +440,7 @@ var RenderPicture = function RenderPicture(_ref) {
|
|
|
431
440
|
}));
|
|
432
441
|
};
|
|
433
442
|
|
|
434
|
-
var styles$4 = {"root":"Image-module_root__1vsA_","isLoaded":"Image-module_isLoaded__3XhU5","wrapper":"Image-module_wrapper__3fLjs","fullscreen":"Image-module_fullscreen__29apx"};
|
|
443
|
+
var styles$4 = {"root":"Image-module_root__1vsA_","isLoaded":"Image-module_isLoaded__3XhU5","wrapper":"Image-module_wrapper__3fLjs","fullscreen":"Image-module_fullscreen__29apx","dark":"Image-module_dark__3o0nU"};
|
|
435
444
|
|
|
436
445
|
var Image = function Image(_ref) {
|
|
437
446
|
var alt = _ref.alt,
|
|
@@ -442,7 +451,8 @@ var Image = function Image(_ref) {
|
|
|
442
451
|
source = _ref.source,
|
|
443
452
|
lazy = _ref.lazy,
|
|
444
453
|
fullscreen = _ref.fullscreen,
|
|
445
|
-
ratio = _ref.ratio
|
|
454
|
+
ratio = _ref.ratio,
|
|
455
|
+
styleContext = _ref.styleContext;
|
|
446
456
|
|
|
447
457
|
var _useContext = React.useContext(BlockContext),
|
|
448
458
|
lightBox = _useContext.lightBox;
|
|
@@ -479,8 +489,14 @@ var Image = function Image(_ref) {
|
|
|
479
489
|
/* fallback w325 url until w6 was released */
|
|
480
490
|
|
|
481
491
|
var fallbackSource = source && source[0] || optimized.w325 && optimized.w325['1x'] || optimized.original;
|
|
492
|
+
var classNames = [[styles$4.root, true], [styles$4.isLoaded, isLoaded], [styles$4.fullscreen, fullscreen && fullscreen.desktop]];
|
|
493
|
+
|
|
494
|
+
if (styleContext) {
|
|
495
|
+
classNames = makeStyleContext(classNames, styleContext, styles$4);
|
|
496
|
+
}
|
|
497
|
+
|
|
482
498
|
return React__default.createElement("div", {
|
|
483
|
-
className: makeClassName(
|
|
499
|
+
className: makeClassName(classNames),
|
|
484
500
|
style: blockStyles,
|
|
485
501
|
"data-testid": "image"
|
|
486
502
|
}, React__default.createElement("div", {
|
|
@@ -542,9 +558,11 @@ var Popover = function Popover(_ref) {
|
|
|
542
558
|
};
|
|
543
559
|
|
|
544
560
|
React.useEffect(function () {
|
|
561
|
+
document.body.dataset.popover = 'true';
|
|
545
562
|
window.addEventListener('keydown', escFunction, false);
|
|
546
563
|
window.addEventListener('scroll', handleScroll, false);
|
|
547
564
|
return function () {
|
|
565
|
+
document.body.removeAttribute('data-popover');
|
|
548
566
|
window.removeEventListener('keydown', escFunction, false);
|
|
549
567
|
window.removeEventListener('scroll', handleScroll, false);
|
|
550
568
|
};
|
|
@@ -798,15 +816,6 @@ var DotsOnImage = function DotsOnImage(_ref) {
|
|
|
798
816
|
})))));
|
|
799
817
|
};
|
|
800
818
|
|
|
801
|
-
var makeStyleContext = function makeStyleContext(classNames, styleContext, styles) {
|
|
802
|
-
var context = Array.isArray(styleContext) ? styleContext.filter(function (ctx) {
|
|
803
|
-
return styles[ctx];
|
|
804
|
-
}).map(function (ctx) {
|
|
805
|
-
return [[styles[ctx]], true];
|
|
806
|
-
}) : [[styles[styleContext], !!styleContext && !!styles[styleContext]]];
|
|
807
|
-
return classNames.concat(context);
|
|
808
|
-
};
|
|
809
|
-
|
|
810
819
|
var styles$8 = {"root":"Tag-module_root__3IqWC","small":"Tag-module_small__2IAb7","large":"Tag-module_large__22z_o","dark":"Tag-module_dark__sgnt1","light":"Tag-module_light__1zUhp","gold":"Tag-module_gold__2ksA7","gray":"Tag-module_gray__mGAO_","inherit":"Tag-module_inherit__2QB5U","is1to1":"Tag-module_is1to1__3EDbC","is1to2":"Tag-module_is1to2__3xbC6","isInSuperBlock":"Tag-module_isInSuperBlock__38JE0","is1to3":"Tag-module_is1to3__3j5K-","is1to4":"Tag-module_is1to4__2vq4r","slide":"Tag-module_slide__2nMDw","game":"Tag-module_game__3j5yG","richRelated":"Tag-module_richRelated__2vbQQ","card":"Tag-module_card__1EAeF","live":"Tag-module_live__rwXuR","episode":"Tag-module_episode__3o6gg","podcast":"Tag-module_podcast__VPoll","rich":"Tag-module_rich__2URd9","isInDynamicBlock":"Tag-module_isInDynamicBlock__1YM9I","mobile":"Tag-module_mobile__QQxuv","desktop":"Tag-module_desktop__1Bjsy"};
|
|
811
820
|
|
|
812
821
|
var Tag = function Tag(_ref) {
|
|
@@ -1280,7 +1289,8 @@ var EmbedBlock = function EmbedBlock(_ref) {
|
|
|
1280
1289
|
height: block.data.height,
|
|
1281
1290
|
alt: block.data.caption,
|
|
1282
1291
|
display: block.data.display,
|
|
1283
|
-
lazy: block.data.lazy
|
|
1292
|
+
lazy: block.data.lazy,
|
|
1293
|
+
styleContext: styleContext
|
|
1284
1294
|
}));
|
|
1285
1295
|
}
|
|
1286
1296
|
|