@adminforth/universal-search 1.0.1 → 1.0.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/build.log CHANGED
@@ -7,5 +7,5 @@ custom/
7
7
  custom/UniversalSearchInput.vue
8
8
  custom/tsconfig.json
9
9
 
10
- sent 4,168 bytes received 58 bytes 8,452.00 bytes/sec
11
- total size is 3,944 speedup is 0.93
10
+ sent 4,166 bytes received 58 bytes 8,448.00 bytes/sec
11
+ total size is 3,942 speedup is 0.93
@@ -48,7 +48,7 @@ function buildFilters(term: string) {
48
48
  }
49
49
  } else {
50
50
  operator = col.caseSensitive ? 'like' : 'ilike';
51
- value = `%${term}%`;
51
+ value = `${term}`;
52
52
  }
53
53
  result.push({ field, operator, value });
54
54
  };
@@ -48,7 +48,7 @@ function buildFilters(term: string) {
48
48
  }
49
49
  } else {
50
50
  operator = col.caseSensitive ? 'like' : 'ilike';
51
- value = `%${term}%`;
51
+ value = `${term}`;
52
52
  }
53
53
  result.push({ field, operator, value });
54
54
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/universal-search",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Universal quick search input plugin for AdminForth (injected before action buttons)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",