@easydata/crud 1.5.1 → 1.5.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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * EasyData.JS CRUD v1.5.1
3
+ * EasyData.JS CRUD v1.5.2
4
4
  * Copyright 2020-2024 Korzh.com
5
5
  * Licensed under MIT
6
6
  */
@@ -298,10 +298,10 @@ class TextFilterWidget {
298
298
  this.render();
299
299
  }
300
300
  render() {
301
- const horizClass = ui.browserUtils.IsIE()
301
+ const horizClass = ui.browserUtils.isIE()
302
302
  ? 'kfrm-fields-ie is-horizontal'
303
303
  : 'kfrm-fields is-horizontal';
304
- const isEdgeOrIE = ui.browserUtils.IsIE() || ui.browserUtils.IsEdge();
304
+ const isEdgeOrIE = ui.browserUtils.isIE() || ui.browserUtils.isEdge();
305
305
  ui.domel(this.slot)
306
306
  .addClass(horizClass)
307
307
  .addChild('div', b => {
@@ -478,7 +478,7 @@ class TextFilterWidget {
478
478
  }
479
479
  }
480
480
 
481
- const isIE = ui.browserUtils.IsIE();
481
+ const isIE = ui.browserUtils.isIE();
482
482
  class EntityEditFormBuilder {
483
483
  constructor(context, params) {
484
484
  this.context = context;
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * EasyData.JS CRUD v1.5.1
3
+ * EasyData.JS CRUD v1.5.2
4
4
  * Copyright 2020-2024 Korzh.com
5
5
  * Licensed under MIT
6
6
  */
@@ -296,10 +296,10 @@ class TextFilterWidget {
296
296
  this.render();
297
297
  }
298
298
  render() {
299
- const horizClass = browserUtils.IsIE()
299
+ const horizClass = browserUtils.isIE()
300
300
  ? 'kfrm-fields-ie is-horizontal'
301
301
  : 'kfrm-fields is-horizontal';
302
- const isEdgeOrIE = browserUtils.IsIE() || browserUtils.IsEdge();
302
+ const isEdgeOrIE = browserUtils.isIE() || browserUtils.isEdge();
303
303
  domel(this.slot)
304
304
  .addClass(horizClass)
305
305
  .addChild('div', b => {
@@ -476,7 +476,7 @@ class TextFilterWidget {
476
476
  }
477
477
  }
478
478
 
479
- const isIE = browserUtils.IsIE();
479
+ const isIE = browserUtils.isIE();
480
480
  class EntityEditFormBuilder {
481
481
  constructor(context, params) {
482
482
  this.context = context;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easydata/crud",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "EasyData.JS UI widgets and views for CRUD manipulations",
5
5
  "types": "./dist/types/public_api.d.ts",
6
6
  "main": "./dist/easydata.crud.cjs.js",
@@ -31,8 +31,8 @@
31
31
  "defaults and supports es6-module"
32
32
  ],
33
33
  "peerDependencies": {
34
- "@easydata/core": "1.4.21",
35
- "@easydata/ui": "1.4.21"
34
+ "@easydata/core": "^1.5.2",
35
+ "@easydata/ui": "^1.5.2"
36
36
  },
37
37
  "files": [
38
38
  "dist"