@lvce-editor/output-view 2.9.0 → 2.10.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/README.md CHANGED
@@ -10,7 +10,3 @@ cd output-view &&
10
10
  npm ci &&
11
11
  npm test
12
12
  ```
13
-
14
- ## Gitpod
15
-
16
- [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/lvce-editor/output-view)
@@ -1252,7 +1252,8 @@ const filterItems = (items, filterValue) => {
1252
1252
  if (!filterValue) {
1253
1253
  return items;
1254
1254
  }
1255
- return items.filter(parts => getTextFromParts(parts).includes(filterValue));
1255
+ const normalizedFilterValue = filterValue.toLowerCase();
1256
+ return items.filter(parts => getTextFromParts(parts).toLowerCase().includes(normalizedFilterValue));
1256
1257
  };
1257
1258
 
1258
1259
  const isFileNotFoundError = error => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/output-view",
3
- "version": "2.9.0",
3
+ "version": "2.10.1",
4
4
  "description": "Output View Worker",
5
5
  "repository": {
6
6
  "type": "git",