@megafon/ui-core 3.14.0 → 3.15.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.15.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-core@3.14.0...@megafon/ui-core@3.15.0) (2022-10-03)
7
+
8
+
9
+ ### Features
10
+
11
+ * **select:** add class to list-inner element ([44a366c](https://github.com/MegafonWebLab/megafon-ui/commit/44a366ce6b79222f3ef68532c719f5ee13d3d6bf))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.14.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-core@3.13.0...@megafon/ui-core@3.14.0) (2022-09-06)
7
18
 
8
19
 
@@ -59,6 +59,7 @@ export interface ISelectProps<T extends SelectItemValueType> {
59
59
  title?: string;
60
60
  titleInner?: string;
61
61
  list?: string;
62
+ listInner?: string;
62
63
  listItem?: string;
63
64
  listItemTitle?: string;
64
65
  };
@@ -100,6 +101,7 @@ declare const Select: {
100
101
  title: PropTypes.Requireable<string>;
101
102
  titleInner: PropTypes.Requireable<string>;
102
103
  list: PropTypes.Requireable<string>;
104
+ listInner: PropTypes.Requireable<string>;
103
105
  listItem: PropTypes.Requireable<string>;
104
106
  listItemTitle: PropTypes.Requireable<string>;
105
107
  }>>;
@@ -363,7 +363,7 @@ var Select = function Select(_ref) {
363
363
  return /*#__PURE__*/React.createElement("div", {
364
364
  className: cn('list', [classes.list])
365
365
  }, /*#__PURE__*/React.createElement("div", {
366
- className: cn('list-inner'),
366
+ className: cn('list-inner', [classes.listInner]),
367
367
  ref: itemWrapperNode
368
368
  }, currentItems.map(function (_ref3, i) {
369
369
  var title = _ref3.title,
@@ -435,6 +435,7 @@ Select.propTypes = {
435
435
  title: PropTypes.string,
436
436
  titleInner: PropTypes.string,
437
437
  list: PropTypes.string,
438
+ listInner: PropTypes.string,
438
439
  listItem: PropTypes.string,
439
440
  listItemTitle: PropTypes.string
440
441
  }),
@@ -59,6 +59,7 @@ export interface ISelectProps<T extends SelectItemValueType> {
59
59
  title?: string;
60
60
  titleInner?: string;
61
61
  list?: string;
62
+ listInner?: string;
62
63
  listItem?: string;
63
64
  listItemTitle?: string;
64
65
  };
@@ -100,6 +101,7 @@ declare const Select: {
100
101
  title: PropTypes.Requireable<string>;
101
102
  titleInner: PropTypes.Requireable<string>;
102
103
  list: PropTypes.Requireable<string>;
104
+ listInner: PropTypes.Requireable<string>;
103
105
  listItem: PropTypes.Requireable<string>;
104
106
  listItemTitle: PropTypes.Requireable<string>;
105
107
  }>>;
@@ -398,7 +398,7 @@ var Select = function Select(_ref) {
398
398
  return /*#__PURE__*/React.createElement("div", {
399
399
  className: cn('list', [classes.list])
400
400
  }, /*#__PURE__*/React.createElement("div", {
401
- className: cn('list-inner'),
401
+ className: cn('list-inner', [classes.listInner]),
402
402
  ref: itemWrapperNode
403
403
  }, currentItems.map(function (_ref3, i) {
404
404
  var title = _ref3.title,
@@ -470,6 +470,7 @@ Select.propTypes = {
470
470
  title: PropTypes.string,
471
471
  titleInner: PropTypes.string,
472
472
  list: PropTypes.string,
473
+ listInner: PropTypes.string,
473
474
  listItem: PropTypes.string,
474
475
  listItemTitle: PropTypes.string
475
476
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@megafon/ui-core",
3
- "version": "3.14.0",
3
+ "version": "3.15.0",
4
4
  "files": [
5
5
  "dist",
6
6
  "styles"
@@ -97,5 +97,5 @@
97
97
  "react-popper": "^2.2.3",
98
98
  "swiper": "^6.5.6"
99
99
  },
100
- "gitHead": "24435bfc98f949ea9e2d60a415d4e90554cb1166"
100
+ "gitHead": "16be55dd99791687663b209a67e4ab6ec485b19c"
101
101
  }