@synerise/ds-context-selector 0.10.9 → 0.10.10
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.10.10](https://github.com/Synerise/synerise-design/compare/@synerise/ds-context-selector@0.10.9...@synerise/ds-context-selector@0.10.10) (2022-03-31)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **context-selector:** pass activeGroup of currently listed entries ([a657b2f](https://github.com/Synerise/synerise-design/commit/a657b2fec51d103dacada03a14aa8db675d77553))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.10.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-context-selector@0.10.8...@synerise/ds-context-selector@0.10.9) (2022-03-30)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-context-selector
|
|
@@ -297,7 +297,7 @@ var ContextSelectorDropdown = function ContextSelectorDropdown(_ref) {
|
|
|
297
297
|
onYReachEnd: onFetchData,
|
|
298
298
|
onScroll: handleScroll
|
|
299
299
|
}, /*#__PURE__*/React.createElement(List, {
|
|
300
|
-
key: "list-" + activeTab,
|
|
300
|
+
key: "list-" + activeGroup + "-" + activeTab,
|
|
301
301
|
width: "100%",
|
|
302
302
|
height: 300,
|
|
303
303
|
itemCount: activeItems.length,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-context-selector",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.10",
|
|
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": "510d01309981d010c794496292be958796c0b6b6",
|
|
30
30
|
"sideEffects": [
|
|
31
31
|
"dist/style/*",
|
|
32
32
|
"*.less"
|