@synerise/ds-select 0.15.44 → 0.15.46
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 +19 -0
- package/dist/Select.js +5 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.46](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@0.15.45...@synerise/ds-select@0.15.46) (2024-04-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **select:** add className to SelectContainer ([dcf78eb](https://github.com/synerise/synerise-design/commit/dcf78eb6b2d2fe01c91c659ca2447535357c3937))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.15.45](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@0.15.44...@synerise/ds-select@0.15.45) (2024-04-15)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @synerise/ds-select
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.15.44](https://github.com/synerise/synerise-design/compare/@synerise/ds-select@0.15.43...@synerise/ds-select@0.15.44) (2024-04-05)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-select
|
package/dist/Select.js
CHANGED
|
@@ -19,12 +19,12 @@ import classNames from 'classnames';
|
|
|
19
19
|
import * as S from './Select.styles';
|
|
20
20
|
|
|
21
21
|
var Select = /*#__PURE__*/function (_Component) {
|
|
22
|
-
_inheritsLoose(Select, _Component);
|
|
23
|
-
|
|
24
22
|
function Select() {
|
|
25
23
|
return _Component.apply(this, arguments) || this;
|
|
26
24
|
}
|
|
27
25
|
|
|
26
|
+
_inheritsLoose(Select, _Component);
|
|
27
|
+
|
|
28
28
|
var _proto = Select.prototype;
|
|
29
29
|
|
|
30
30
|
_proto.render = function render() {
|
|
@@ -50,7 +50,9 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
|
50
50
|
antdProps = _objectWithoutPropertiesLoose(_this$props, _excluded);
|
|
51
51
|
|
|
52
52
|
var size = antdProps.size;
|
|
53
|
-
return /*#__PURE__*/React.createElement(S.SelectContainer,
|
|
53
|
+
return /*#__PURE__*/React.createElement(S.SelectContainer, {
|
|
54
|
+
className: "ds-select-container"
|
|
55
|
+
}, /*#__PURE__*/React.createElement(S.Label, {
|
|
54
56
|
label: label,
|
|
55
57
|
tooltip: tooltip,
|
|
56
58
|
tooltipConfig: tooltipConfig
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-select",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.46",
|
|
4
4
|
"description": "Select UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-icon": "^0.60.
|
|
37
|
-
"@synerise/ds-input": "^0.20.
|
|
38
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
36
|
+
"@synerise/ds-icon": "^0.60.7",
|
|
37
|
+
"@synerise/ds-input": "^0.20.6",
|
|
38
|
+
"@synerise/ds-tooltip": "^0.14.25",
|
|
39
39
|
"@synerise/ds-typography": "^0.14.3",
|
|
40
40
|
"classnames": "2.3.2"
|
|
41
41
|
},
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"styled-components": "5.0.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@synerise/ds-utils": "^0.26.
|
|
49
|
+
"@synerise/ds-utils": "^0.26.3",
|
|
50
50
|
"@testing-library/react": "10.0.1"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "8b4c28e5e67b83507f7c4edcc5dc9392e0cf9656"
|
|
53
53
|
}
|