@synerise/ds-select 0.15.0 → 0.15.2

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,26 @@
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
+ ## [0.15.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@0.15.1...@synerise/ds-select@0.15.2) (2023-04-05)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-select
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.15.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@0.15.0...@synerise/ds-select@0.15.1) (2023-03-09)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **select:** fix custom scroll in select ([52b874c](https://github.com/synerise/synerise-design/commit/52b874c9f0c3717e60d8248b497d3fd25027320f))
20
+ * **select:** fix custom scroll in select ([8472fcc](https://github.com/synerise/synerise-design/commit/8472fcc3676c4cc91e5ceeaa1b61aa149c1ad44b))
21
+
22
+
23
+
24
+
25
+
6
26
  # [0.15.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@0.14.38...@synerise/ds-select@0.15.0) (2023-03-06)
7
27
 
8
28
 
package/dist/Select.js CHANGED
@@ -1,4 +1,4 @@
1
- var _excluded = ["label", "description", "errorText", "error", "tooltip", "tooltipConfig", "clearTooltip", "prefixel", "suffixel", "style", "listHeight", "className", "getPopupContainer", "grey"];
1
+ var _excluded = ["label", "description", "errorText", "error", "tooltip", "tooltipConfig", "clearTooltip", "prefixel", "suffixel", "style", "listHeight", "className", "getPopupContainer", "grey", "dropdownClassName"];
2
2
 
3
3
  function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
4
 
@@ -46,6 +46,7 @@ var Select = /*#__PURE__*/function (_React$Component) {
46
46
  _this$props$getPopupC = _this$props.getPopupContainer,
47
47
  getPopupContainer = _this$props$getPopupC === void 0 ? defaultGetPopupContainer : _this$props$getPopupC,
48
48
  grey = _this$props.grey,
49
+ dropdownClassName = _this$props.dropdownClassName,
49
50
  antdProps = _objectWithoutPropertiesLoose(_this$props, _excluded);
50
51
 
51
52
  var size = antdProps.size;
@@ -82,7 +83,8 @@ var Select = /*#__PURE__*/function (_React$Component) {
82
83
  }),
83
84
  className: classNames({
84
85
  error: errorText || error
85
- })
86
+ }),
87
+ dropdownClassName: classNames('ps__child--consume', dropdownClassName)
86
88
  })), !!suffixel && /*#__PURE__*/React.createElement(S.SuffixWrapper, null, suffixel)), errorText && /*#__PURE__*/React.createElement(S.ErrorWrapper, {
87
89
  description: Boolean(description)
88
90
  }, /*#__PURE__*/React.createElement(ErrorText, null, errorText)), description && /*#__PURE__*/React.createElement(S.DescWrapper, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-select",
3
- "version": "0.15.0",
3
+ "version": "0.15.2",
4
4
  "description": "Select UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -33,7 +33,7 @@
33
33
  "types": "dist/index.d.ts",
34
34
  "dependencies": {
35
35
  "@synerise/ds-icon": "^0.54.0",
36
- "@synerise/ds-input": "^0.18.36",
36
+ "@synerise/ds-input": "^0.18.37",
37
37
  "@synerise/ds-typography": "^0.12.7",
38
38
  "classnames": "^2.2.6"
39
39
  },
@@ -45,5 +45,5 @@
45
45
  "devDependencies": {
46
46
  "@synerise/ds-utils": "^0.19.0"
47
47
  },
48
- "gitHead": "a9c9628df732abd42421880fd1aa61b7f7c580ee"
48
+ "gitHead": "42bda32506d121cbc207c73efca09f300a749120"
49
49
  }