@stenajs-webui/select 17.30.1 → 17.30.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 +12 -0
- package/dist/components/ui/OverflowingMultiSelect.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +271 -229
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v17.30.2 (Tue Jan 17 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Add OverflowingMultiSelect component [#547](https://github.com/StenaIT/stenajs-webui/pull/547) ([@lindskogen](https://github.com/lindskogen))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v17.13.3 (Tue Aug 30 2022)
|
|
2
14
|
|
|
3
15
|
#### 🏠 Internal
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./components/ui/AsyncMultiSelect";
|
|
2
2
|
export * from "./components/ui/AsyncSelect";
|
|
3
3
|
export * from "./components/ui/MultiSelect";
|
|
4
|
+
export * from "./components/ui/OverflowingMultiSelect";
|
|
4
5
|
export * from "./components/ui/Select";
|
|
5
6
|
export * from "./components/ui/GroupedMultiSelect";
|
|
6
7
|
export * from "./components/ui/ChipMultiSelect/ChipMultiSelect";
|