@megafon/ui-shared 8.3.0 → 8.5.0

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.
Files changed (35) hide show
  1. package/dist/es/components/ChipsBox/ChipBox.d.ts +5 -0
  2. package/dist/es/components/ChipsBox/ChipBox.js +7 -0
  3. package/dist/es/components/ChipsBox/ChipsBox.css +1 -0
  4. package/dist/es/components/ChipsBox/ChipsBox.d.ts +16 -0
  5. package/dist/es/components/ChipsBox/ChipsBox.js +76 -0
  6. package/dist/es/components/Container/Container.css +1 -1
  7. package/dist/es/components/ImageBanner/ImageBanner.css +1 -1
  8. package/dist/es/components/ImageBanner/ImageBanner.d.ts +2 -0
  9. package/dist/es/components/ImageBanner/ImageBanner.js +3 -0
  10. package/dist/es/components/InfoCards/components/InfoCard/InfoCard.js +2 -2
  11. package/dist/es/components/Partners/Partners.d.ts +1 -0
  12. package/dist/es/components/Partners/Partners.js +5 -1
  13. package/dist/es/components/PictureBox/PictureBox.css +1 -1
  14. package/dist/es/components/PictureBox/img/mac-book-1x.png +0 -0
  15. package/dist/es/components/PictureBox/img/mac-book-2x.png +0 -0
  16. package/dist/es/index.d.ts +2 -0
  17. package/dist/es/index.js +2 -0
  18. package/dist/lib/components/ChipsBox/ChipBox.d.ts +5 -0
  19. package/dist/lib/components/ChipsBox/ChipBox.js +17 -0
  20. package/dist/lib/components/ChipsBox/ChipsBox.css +1 -0
  21. package/dist/lib/components/ChipsBox/ChipsBox.d.ts +16 -0
  22. package/dist/lib/components/ChipsBox/ChipsBox.js +85 -0
  23. package/dist/lib/components/Container/Container.css +1 -1
  24. package/dist/lib/components/ImageBanner/ImageBanner.css +1 -1
  25. package/dist/lib/components/ImageBanner/ImageBanner.d.ts +2 -0
  26. package/dist/lib/components/ImageBanner/ImageBanner.js +3 -0
  27. package/dist/lib/components/InfoCards/components/InfoCard/InfoCard.js +1 -1
  28. package/dist/lib/components/Partners/Partners.d.ts +1 -0
  29. package/dist/lib/components/Partners/Partners.js +5 -1
  30. package/dist/lib/components/PictureBox/PictureBox.css +1 -1
  31. package/dist/lib/components/PictureBox/img/mac-book-1x.png +0 -0
  32. package/dist/lib/components/PictureBox/img/mac-book-2x.png +0 -0
  33. package/dist/lib/index.d.ts +2 -0
  34. package/dist/lib/index.js +14 -0
  35. package/package.json +4 -4
@@ -2,7 +2,7 @@ import _extends from "@babel/runtime/helpers/extends";
2
2
  import "core-js/modules/es.symbol.js";
3
3
  import "core-js/modules/es.symbol.description.js";
4
4
  import * as React from 'react';
5
- import { cnCreate, convert, filterDataAttrs } from '@megafon/ui-helpers';
5
+ import { cnCreate, convert, filterDataAttrs, textConvertConfig } from '@megafon/ui-helpers';
6
6
  import { setRelAttribute } from "../../../../helpers/setRelAttribute";
7
7
  import "./InfoCard.css";
8
8
  var ArrowRight16 = function ArrowRight16(props) {
@@ -76,7 +76,7 @@ var InfoCard = function InfoCard(_ref) {
76
76
  className: cn('title', [classes === null || classes === void 0 ? void 0 : classes.title])
77
77
  }), convert(title, {})), !!description && /*#__PURE__*/React.createElement("div", _extends({}, filterDataAttrs(dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.description), {
78
78
  className: cn('description')
79
- }), convert(description, {})), !!moreInfo && /*#__PURE__*/React.createElement("div", _extends({}, filterDataAttrs(dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.moreInfo), {
79
+ }), convert(description, textConvertConfig)), !!moreInfo && /*#__PURE__*/React.createElement("div", _extends({}, filterDataAttrs(dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.moreInfo), {
80
80
  className: cn('more-info')
81
81
  }), /*#__PURE__*/React.createElement("span", {
82
82
  className: cn('more-info-text')
@@ -18,6 +18,7 @@ export interface IPartnersProps {
18
18
  classes?: {
19
19
  root?: string;
20
20
  itemClass?: string;
21
+ slide?: string;
21
22
  };
22
23
  /** Дополнительный класс корневого элемента */
23
24
  className?: string;
@@ -25,6 +25,7 @@ var Partners = function Partners(_ref) {
25
25
  _ref$classes2 = _ref$classes === void 0 ? {} : _ref$classes,
26
26
  root = _ref$classes2.root,
27
27
  itemClass = _ref$classes2.itemClass,
28
+ slide = _ref$classes2.slide,
28
29
  dataAttrs = _ref.dataAttrs,
29
30
  className = _ref.className,
30
31
  items = _ref.items,
@@ -77,6 +78,9 @@ var Partners = function Partners(_ref) {
77
78
  var topRow = items.slice(0, halfItemsLength);
78
79
  var bottomRow = items.slice(halfItemsLength);
79
80
  return /*#__PURE__*/React.createElement(Carousel, {
81
+ classes: {
82
+ slide: cn('slide', [slide])
83
+ },
80
84
  slidesSettings: slidesSettings,
81
85
  onChange: onChange,
82
86
  onNextClick: onNextClick,
@@ -95,7 +99,7 @@ var Partners = function Partners(_ref) {
95
99
  className: cn('slide')
96
100
  }, renderItem(item, i), renderItem(bottomRow[i], i));
97
101
  }));
98
- }, [items, onChange, onNextClick, onPrevClick, renderItem]);
102
+ }, [items, slide, onChange, onNextClick, onPrevClick, renderItem]);
99
103
  return /*#__PURE__*/React.createElement("div", _extends({
100
104
  ref: rootRef,
101
105
  className: cn([root, className])
@@ -1 +1 @@
1
- h1,h2,h3,h4,h5{margin:0}.mfui-picture-box_mask_none .mfui-picture-box__image{border-radius:24px;vertical-align:top;width:100%}@media screen and (min-width:768px){.mfui-picture-box_mask_none .mfui-picture-box__image{height:414px;-o-object-fit:cover;object-fit:cover}}@media screen and (min-width:1280px){.mfui-picture-box_mask_none .mfui-picture-box__image{height:520px}}.mfui-picture-box_mask_mac-book .mfui-picture-box__image{border-top-left-radius:1.4% 2.2988505747%;border-top-right-radius:1.4% 2.2988505747%;height:87%;left:0;margin:0 auto;-o-object-fit:cover;object-fit:cover;position:absolute;right:0;top:2%;width:82%}.mfui-picture-box__content{-ms-flex-item-align:center;align-self:center;margin-top:32px}@media screen and (min-width:1024px){.mfui-picture-box__content{margin-top:0}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-picture-box_align_left .mfui-picture-box__content{margin-left:12px}}@media screen and (min-width:1280px){.mfui-picture-box_align_left .mfui-picture-box__content{margin-left:44px}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-picture-box_align_right .mfui-picture-box__content{margin-right:12px}}@media screen and (min-width:1280px){.mfui-picture-box_align_right .mfui-picture-box__content{margin-right:44px}}.mfui-picture-box__button-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:20px;margin-top:32px}.mfui-picture-box_mask_mac-book .mfui-picture-box__mask{background-image:url(i/mac-book-1x.png);background-repeat:no-repeat;background-size:100% auto;padding-bottom:60.9%;position:relative}@media screen and (-webkit-min-device-pixel-ratio:2),screen and (min-device-pixel-ratio:2),screen and (min-resolution:192dpi),screen and (min-resolution:2dppx){.mfui-picture-box_mask_mac-book .mfui-picture-box__mask{background-image:url(i/mac-book-2x.png)}}
1
+ h1,h2,h3,h4,h5{margin:0}.mfui-picture-box_mask_none .mfui-picture-box__image{border-radius:24px;vertical-align:top;width:100%}@media screen and (min-width:768px){.mfui-picture-box_mask_none .mfui-picture-box__image{height:414px;-o-object-fit:cover;object-fit:cover}}@media screen and (min-width:1280px){.mfui-picture-box_mask_none .mfui-picture-box__image{height:520px}}.mfui-picture-box_mask_mac-book .mfui-picture-box__image{border-top-left-radius:1.4% 2.2988505747%;border-top-right-radius:1.4% 2.2988505747%;height:87%;left:0;margin:0 auto;-o-object-fit:cover;object-fit:cover;position:absolute;right:0;top:2%;width:82%}.mfui-picture-box__content{-ms-flex-item-align:center;align-self:center;margin-top:32px}@media screen and (min-width:1024px){.mfui-picture-box__content{margin-top:0}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-picture-box_align_left .mfui-picture-box__content{margin-left:12px}}@media screen and (min-width:1280px){.mfui-picture-box_align_left .mfui-picture-box__content{margin-left:44px}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-picture-box_align_right .mfui-picture-box__content{margin-right:12px}}@media screen and (min-width:1280px){.mfui-picture-box_align_right .mfui-picture-box__content{margin-right:44px}}.mfui-picture-box__button-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:20px;margin-top:32px}.mfui-picture-box_mask_mac-book .mfui-picture-box__mask{background-image:url(img/mac-book-1x.png);background-repeat:no-repeat;background-size:100% auto;padding-bottom:60.9%;position:relative}@media screen and (-webkit-min-device-pixel-ratio:2),screen and (min-device-pixel-ratio:2),screen and (min-resolution:192dpi),screen and (min-resolution:2dppx){.mfui-picture-box_mask_mac-book .mfui-picture-box__mask{background-image:url(img/mac-book-2x.png)}}
@@ -17,6 +17,8 @@ export { default as ButtonsBox } from './components/ButtonsBox/ButtonsBox';
17
17
  export { default as Card } from './components/Card/Card';
18
18
  export { default as CardsBox } from './components/CardsBox/CardsBox';
19
19
  export { default as CarouselBox } from './components/CarouselBox/CarouselBox';
20
+ export { default as ChipBox } from './components/ChipsBox/ChipBox';
21
+ export { default as ChipsBox } from './components/ChipsBox/ChipsBox';
20
22
  export { default as Container } from './components/Container/Container';
21
23
  export { default as DarkGradientCard } from './components/DarkGradientCards/components/DarkGradientCard';
22
24
  export { default as DarkGradientCards } from './components/DarkGradientCards/DarkGradientCards';
package/dist/es/index.js CHANGED
@@ -17,6 +17,8 @@ export { default as ButtonsBox } from "./components/ButtonsBox/ButtonsBox";
17
17
  export { default as Card } from "./components/Card/Card";
18
18
  export { default as CardsBox } from "./components/CardsBox/CardsBox";
19
19
  export { default as CarouselBox } from "./components/CarouselBox/CarouselBox";
20
+ export { default as ChipBox } from "./components/ChipsBox/ChipBox";
21
+ export { default as ChipsBox } from "./components/ChipsBox/ChipsBox";
20
22
  export { default as Container } from "./components/Container/Container";
21
23
  export { default as DarkGradientCard } from "./components/DarkGradientCards/components/DarkGradientCard";
22
24
  export { default as DarkGradientCards } from "./components/DarkGradientCards/DarkGradientCards";
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ import { Chip } from '@megafon/ui-core';
3
+ export type ChipBoxPropsType = Omit<React.ComponentProps<typeof Chip>, 'color' | 'checked'>;
4
+ declare const ChipBox: React.FC<ChipBoxPropsType>;
5
+ export default ChipBox;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var React = _interopRequireWildcard(require("react"));
9
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
10
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
11
+ /* eslint-disable react/no-unused-prop-types */
12
+
13
+ var ChipBox = function ChipBox(_ref) {
14
+ var children = _ref.children;
15
+ return /*#__PURE__*/React.createElement(React.Fragment, null, children);
16
+ };
17
+ var _default = exports["default"] = ChipBox;
@@ -0,0 +1 @@
1
+ h1,h2,h3,h4,h5{margin:0}.mfui-chips-box__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.mfui-chips-box__panel{display:none}.mfui-chips-box__panel_current{display:block}
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ import { Chips } from '@megafon/ui-core';
3
+ import { ChipBoxPropsType } from './ChipBox';
4
+ import './ChipsBox.scss';
5
+ export type ChipsItemsPropsType = React.ComponentProps<typeof Chips>['items'];
6
+ export type ChipBoxChildrenType = Array<React.ReactElement<ChipBoxPropsType>>;
7
+ export type ChipsBoxPropsType = Omit<React.ComponentProps<typeof Chips>, 'items'> & {
8
+ /** Рендер содержимого только для текущего варианта */
9
+ renderOnlyCurrentPanel?: boolean;
10
+ /** Дочерние элементы */
11
+ children: ChipBoxChildrenType;
12
+ /** Ссылка на корневой элемент */
13
+ rootRef?: React.Ref<HTMLDivElement>;
14
+ };
15
+ declare const ChipsBox: React.FC<ChipsBoxPropsType>;
16
+ export default ChipsBox;
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
9
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
10
+ require("core-js/modules/es.symbol.js");
11
+ require("core-js/modules/es.array.filter.js");
12
+ require("core-js/modules/es.array.index-of.js");
13
+ require("core-js/modules/es.array.map.js");
14
+ require("core-js/modules/es.object.to-string.js");
15
+ require("core-js/modules/es.promise.js");
16
+ var React = _interopRequireWildcard(require("react"));
17
+ var _uiCore = require("@megafon/ui-core");
18
+ var _uiHelpers = require("@megafon/ui-helpers");
19
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
20
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
21
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
22
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
23
+ var t = {};
24
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
25
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
26
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
27
+ }
28
+ return t;
29
+ };
30
+ var cn = (0, _uiHelpers.cnCreate)('mfui-chips-box');
31
+ var ChipsBox = function ChipsBox(_a) {
32
+ var _b;
33
+ var _a$renderOnlyCurrentP = _a.renderOnlyCurrentPanel,
34
+ renderOnlyCurrentPanel = _a$renderOnlyCurrentP === void 0 ? false : _a$renderOnlyCurrentP,
35
+ _a$isScrollable = _a.isScrollable,
36
+ isScrollable = _a$isScrollable === void 0 ? true : _a$isScrollable,
37
+ rootRef = _a.rootRef,
38
+ children = _a.children,
39
+ value = _a.value,
40
+ onChange = _a.onChange,
41
+ chipsProps = __rest(_a, ["renderOnlyCurrentPanel", "isScrollable", "rootRef", "children", "value", "onChange"]);
42
+ var childArray = React.Children.toArray(children).filter(function (child) {
43
+ return /*#__PURE__*/React.isValidElement(child);
44
+ });
45
+ var chipsItems = childArray.map(function (child) {
46
+ return (0, _extends2["default"])((0, _extends2["default"])({}, child.props), {
47
+ children: null
48
+ });
49
+ });
50
+ var _React$useState = React.useState(value || ((_b = chipsItems[0]) === null || _b === void 0 ? void 0 : _b.id)),
51
+ _React$useState2 = (0, _slicedToArray2["default"])(_React$useState, 2),
52
+ currentId = _React$useState2[0],
53
+ setCurrentId = _React$useState2[1];
54
+ var panels = childArray.map(function (child) {
55
+ var props = child.props;
56
+ var id = props.id,
57
+ panel = props.children;
58
+ var isCurrentPanel = currentId === id;
59
+ if (!panel || renderOnlyCurrentPanel && !isCurrentPanel) {
60
+ return null;
61
+ }
62
+ return /*#__PURE__*/React.createElement("div", {
63
+ key: id,
64
+ className: cn('panel', {
65
+ current: isCurrentPanel
66
+ })
67
+ }, panel);
68
+ });
69
+ var handleChange = React.useCallback(function (id) {
70
+ setCurrentId(id);
71
+ onChange === null || onChange === void 0 ? void 0 : onChange(id);
72
+ }, [onChange]);
73
+ return /*#__PURE__*/React.createElement("div", {
74
+ ref: rootRef,
75
+ className: cn()
76
+ }, /*#__PURE__*/React.createElement("div", {
77
+ className: cn('wrapper')
78
+ }, /*#__PURE__*/React.createElement(_uiCore.Chips, (0, _extends2["default"])({}, chipsProps, {
79
+ value: currentId,
80
+ items: chipsItems,
81
+ isScrollable: isScrollable,
82
+ onChange: handleChange
83
+ }))), panels);
84
+ };
85
+ var _default = exports["default"] = ChipsBox;