@synerise/ds-context-selector 0.12.0 → 0.12.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.12.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-context-selector@0.12.0...@synerise/ds-context-selector@0.12.1) (2022-04-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **context-selector:** fixes auto height of dropdown list ([4a6b1fb](https://github.com/Synerise/synerise-design/commit/4a6b1fbddc28ddee46751afacb63617f6d341395))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [0.12.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-context-selector@0.11.0...@synerise/ds-context-selector@0.12.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: "ContextSelectorstyles__ItemsList",
|
|
13
13
|
componentId: "sc-1tuu6xk-2"
|
|
14
|
-
})(["width:100
|
|
14
|
+
})(["width:100%;.ds-context-selector-list{height:auto !important;max-height:300px;}"]);
|
|
15
15
|
export var SearchResult = styled.span.withConfig({
|
|
16
16
|
displayName: "ContextSelectorstyles__SearchResult",
|
|
17
17
|
componentId: "sc-1tuu6xk-3"
|
|
@@ -297,6 +297,7 @@ var ContextSelectorDropdown = function ContextSelectorDropdown(_ref) {
|
|
|
297
297
|
onYReachEnd: onFetchData,
|
|
298
298
|
onScroll: handleScroll
|
|
299
299
|
}, /*#__PURE__*/React.createElement(List, {
|
|
300
|
+
className: "ds-context-selector-list",
|
|
300
301
|
key: "list-" + activeGroup + "-" + activeTab,
|
|
301
302
|
width: "100%",
|
|
302
303
|
height: 300,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-context-selector",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"description": "ContextSelector UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"test:watch": "npm run test -- --watchAll",
|
|
27
27
|
"types": "tsc --noEmit"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "21879cf06623fe6e1c2523ebf7c055ab9dbd50ef",
|
|
30
30
|
"sideEffects": [
|
|
31
31
|
"dist/style/*",
|
|
32
32
|
"*.less"
|