@kws3/ui 2.3.2 → 2.3.3

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.mdx CHANGED
@@ -1,3 +1,6 @@
1
+ # 2.3.3
2
+ - `InfiniteList` - do not fake a scroll event on a resize event, fixes loading bugs
3
+
1
4
  # 2.3.2
2
5
  - `MultiSelect` - fixed issue where raw object were initially outputted (if provided)
3
6
  - `SearchableSelect and `MultiSelect` (Async): resolved issue with the 'active' class not attaching to the most matched item in dropdown options
@@ -131,6 +131,5 @@ while more items are loading
131
131
 
132
132
  const resize = () => {
133
133
  viewport_height = viewport.offsetHeight;
134
- handle_scroll();
135
134
  };
136
135
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kws3/ui",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "description": "UI components for use with Svelte v3 applications.",
5
5
  "main": "index.js",
6
6
  "svelte": "index.js",
@@ -35,5 +35,5 @@
35
35
  "devDependencies": {
36
36
  "typescript": "^5.0.4"
37
37
  },
38
- "gitHead": "87ea45639e414b8f652e3a0457516ad1decb5f4f"
38
+ "gitHead": "f2433c3417de63b6e7e3f64c3eff524d7fa0fd9c"
39
39
  }