@synerise/ds-factors 0.13.0 → 0.13.1
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
|
+
## [0.13.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.13.0...@synerise/ds-factors@0.13.1) (2022-04-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **factors:** fixes auto height of parameters dropdown list ([67ced37](https://github.com/Synerise/synerise-design/commit/67ced37b02f9e442721afb274c6a32b5def18a83))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [0.13.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.12.2...@synerise/ds-factors@0.13.0) (2022-04-29)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -11,7 +11,7 @@ export var ContentPlaceholder = styled.div.withConfig({
|
|
|
11
11
|
export var ItemsList = styled(Menu).withConfig({
|
|
12
12
|
displayName: "Parameterstyle__ItemsList",
|
|
13
13
|
componentId: "u2uvgh-2"
|
|
14
|
-
})(["width:100
|
|
14
|
+
})(["width:100%;.ds-factors-parameter-list{height:auto !important;max-height:300px;}"]);
|
|
15
15
|
export var SearchResult = styled.span.withConfig({
|
|
16
16
|
displayName: "Parameterstyle__SearchResult",
|
|
17
17
|
componentId: "u2uvgh-3"
|
|
@@ -220,6 +220,7 @@ var ParameterDropdown = function ParameterDropdown(_ref) {
|
|
|
220
220
|
onYReachEnd: onFetchData,
|
|
221
221
|
onScroll: handleScroll
|
|
222
222
|
}, /*#__PURE__*/React.createElement(List, {
|
|
223
|
+
className: "ds-factors-parameter-list",
|
|
223
224
|
width: "100%",
|
|
224
225
|
height: 300,
|
|
225
226
|
itemCount: currentItems.length,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-factors",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "Factors UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"@synerise/ds-core": "*",
|
|
56
56
|
"react": ">=16.9.0 < 17.0.0"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "21879cf06623fe6e1c2523ebf7c055ab9dbd50ef"
|
|
59
59
|
}
|