alchemy-chimera 1.0.2 → 1.0.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.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.0.3 (2022-03-16)
2
+
3
+ * Make table filtering case insensitive
4
+
1
5
  ## 1.0.2 (2022-02-20)
2
6
 
3
7
  * Improve editor styling
@@ -183,7 +183,7 @@ Editor.setAction(async function edit(conduit, model_name, pk_val) {
183
183
  *
184
184
  * @author Jelle De Loecker <jelle@elevenways.be>
185
185
  * @since 1.0.0
186
- * @version 1.0.0
186
+ * @version 1.0.3
187
187
  *
188
188
  * @param {Conduit} conduit
189
189
  * @param {String} model_name
@@ -229,7 +229,7 @@ Editor.setAction(async function records(conduit, model_name) {
229
229
  continue;
230
230
  }
231
231
 
232
- val = RegExp.interpretWildcard('*' + val + '*');
232
+ val = RegExp.interpretWildcard('*' + val + '*', 'i');
233
233
  crit.where(key).equals(val);
234
234
  }
235
235
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "alchemy-chimera",
3
3
  "description": "Chimera plugin for Alchemy MVC",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "author": "Jelle De Loecker <jelle@elevenways.be>",
6
6
  "keywords": [
7
7
  "alchemy",
@@ -12,9 +12,8 @@
12
12
  "repository": "11ways/alchemy-chimera",
13
13
  "peerDependencies": {
14
14
  "alchemy-acl" : "~0.7.0",
15
- "alchemy-menu" : "~0.6.0",
16
- "alchemymvc" : "~1.1.0",
17
- "alchemy-widget": "~0.1.0"
15
+ "alchemymvc" : "~1.2.1",
16
+ "alchemy-widget": "~0.1.2"
18
17
  },
19
18
  "license": "MIT",
20
19
  "engines": {