element-assits 0.0.99 → 0.0.100

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.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -1412,7 +1412,7 @@ const vx = {
1412
1412
  if (!r)
1413
1413
  return !0;
1414
1414
  const i = this.endProps.label, a = this.endProps.desc ? this.endProps.desc : this.endProps.value, o = ot(t[i]) ? "" : String(t[i]), d = ot(t[a]) ? "" : String(t[a]);
1415
- return o.indexOf(r) > -1 || d.indexOf(r) > -1;
1415
+ return r = r.toLowerCase(), o.toLowerCase().indexOf(r) > -1 || d.toLowerCase().indexOf(r) > -1;
1416
1416
  });
1417
1417
  },
1418
1418
  cacheCurrent() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "element-assits",
3
- "version": "0.0.99",
3
+ "version": "0.0.100",
4
4
  "description": "element-ui 的扩展组件库",
5
5
  "main": "lib/index.js",
6
6
  "type": "module",