ninegrid2 6.89.0 → 6.91.0

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.
@@ -10878,7 +10878,7 @@ class ninegrid {
10878
10878
  cssPath = host.getAttribute("css-path");
10879
10879
  }
10880
10880
 
10881
- console.log("========================", ninegrid.cssPath);
10881
+ //console.log("========================", ninegrid.cssPath);
10882
10882
 
10883
10883
  if (!cssPath) cssPath = ninegrid.cssPath;
10884
10884
  //console.log("================");
@@ -10886,7 +10886,7 @@ class ninegrid {
10886
10886
 
10887
10887
  //console.log(cssPath ? `@import "${cssPath}/dist/${v}";` : null);
10888
10888
 
10889
- console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
10889
+ //console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
10890
10890
 
10891
10891
  return cssPath ? `@import "${cssPath}/${v}";` : "";
10892
10892
  };
@@ -11817,8 +11817,11 @@ class ngCellEx extends HTMLElement
11817
11817
  const row = parseInt(this.cell.dataset.row);
11818
11818
 
11819
11819
  if (!rowData) return "";
11820
+
11821
+ console.log(this.cell.dataset.expr, this.cell.dataset.bind, ninegrid.ROW.ORDER);
11820
11822
 
11821
11823
  if (!ninegrid.isNull(this.cell.dataset.expr)) {
11824
+
11822
11825
  try {
11823
11826
  //console.log(this.cell.dataset.expr);
11824
11827
 
@@ -12070,7 +12073,7 @@ class ngCellEx extends HTMLElement
12070
12073
 
12071
12074
  return this.owner.exprFunction(expr).call(this, data, row, this.owner.data);
12072
12075
  } catch (e) {
12073
- //console.error(e, expr, data, row);
12076
+ console.error(e, expr, data, row);
12074
12077
  return ["NG-COMBO"].includes(this.tagName) ? "" : expr;
12075
12078
  }
12076
12079
  }
@@ -10876,7 +10876,7 @@ class ninegrid {
10876
10876
  cssPath = host.getAttribute("css-path");
10877
10877
  }
10878
10878
 
10879
- console.log("========================", ninegrid.cssPath);
10879
+ //console.log("========================", ninegrid.cssPath);
10880
10880
 
10881
10881
  if (!cssPath) cssPath = ninegrid.cssPath;
10882
10882
  //console.log("================");
@@ -10884,7 +10884,7 @@ class ninegrid {
10884
10884
 
10885
10885
  //console.log(cssPath ? `@import "${cssPath}/dist/${v}";` : null);
10886
10886
 
10887
- console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
10887
+ //console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
10888
10888
 
10889
10889
  return cssPath ? `@import "${cssPath}/${v}";` : "";
10890
10890
  };
@@ -11815,8 +11815,11 @@ class ngCellEx extends HTMLElement
11815
11815
  const row = parseInt(this.cell.dataset.row);
11816
11816
 
11817
11817
  if (!rowData) return "";
11818
+
11819
+ console.log(this.cell.dataset.expr, this.cell.dataset.bind, ninegrid.ROW.ORDER);
11818
11820
 
11819
11821
  if (!ninegrid.isNull(this.cell.dataset.expr)) {
11822
+
11820
11823
  try {
11821
11824
  //console.log(this.cell.dataset.expr);
11822
11825
 
@@ -12068,7 +12071,7 @@ class ngCellEx extends HTMLElement
12068
12071
 
12069
12072
  return this.owner.exprFunction(expr).call(this, data, row, this.owner.data);
12070
12073
  } catch (e) {
12071
- //console.error(e, expr, data, row);
12074
+ console.error(e, expr, data, row);
12072
12075
  return ["NG-COMBO"].includes(this.tagName) ? "" : expr;
12073
12076
  }
12074
12077
  }
@@ -276,8 +276,11 @@ export class ngCellEx extends HTMLElement
276
276
  const row = parseInt(this.cell.dataset.row);
277
277
 
278
278
  if (!rowData) return "";
279
+
280
+ console.log(this.cell.dataset.expr, this.cell.dataset.bind, ninegrid.ROW.ORDER);
279
281
 
280
282
  if (!ninegrid.isNull(this.cell.dataset.expr)) {
283
+
281
284
  try {
282
285
  //console.log(this.cell.dataset.expr);
283
286
 
@@ -529,7 +532,7 @@ export class ngCellEx extends HTMLElement
529
532
 
530
533
  return this.owner.exprFunction(expr).call(this, data, row, this.owner.data);
531
534
  } catch (e) {
532
- //console.error(e, expr, data, row);
535
+ console.error(e, expr, data, row);
533
536
  return ["NG-COMBO"].includes(this.tagName) ? "" : expr;
534
537
  }
535
538
  }
@@ -172,7 +172,7 @@ export class ninegrid {
172
172
  cssPath = host.getAttribute("css-path");
173
173
  }
174
174
 
175
- console.log("========================", ninegrid.cssPath);
175
+ //console.log("========================", ninegrid.cssPath);
176
176
 
177
177
  if (!cssPath) cssPath = ninegrid.cssPath;
178
178
  //console.log("================");
@@ -180,7 +180,7 @@ export class ninegrid {
180
180
 
181
181
  //console.log(cssPath ? `@import "${cssPath}/dist/${v}";` : null);
182
182
 
183
- console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
183
+ //console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
184
184
 
185
185
  return cssPath ? `@import "${cssPath}/${v}";` : "";
186
186
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.89.0",
4
+ "version": "6.91.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -276,8 +276,11 @@ export class ngCellEx extends HTMLElement
276
276
  const row = parseInt(this.cell.dataset.row);
277
277
 
278
278
  if (!rowData) return "";
279
+
280
+ console.log(this.cell.dataset.expr, this.cell.dataset.bind, ninegrid.ROW.ORDER);
279
281
 
280
282
  if (!ninegrid.isNull(this.cell.dataset.expr)) {
283
+
281
284
  try {
282
285
  //console.log(this.cell.dataset.expr);
283
286
 
@@ -529,7 +532,7 @@ export class ngCellEx extends HTMLElement
529
532
 
530
533
  return this.owner.exprFunction(expr).call(this, data, row, this.owner.data);
531
534
  } catch (e) {
532
- //console.error(e, expr, data, row);
535
+ console.error(e, expr, data, row);
533
536
  return ["NG-COMBO"].includes(this.tagName) ? "" : expr;
534
537
  }
535
538
  }
@@ -172,7 +172,7 @@ export class ninegrid {
172
172
  cssPath = host.getAttribute("css-path");
173
173
  }
174
174
 
175
- console.log("========================", ninegrid.cssPath);
175
+ //console.log("========================", ninegrid.cssPath);
176
176
 
177
177
  if (!cssPath) cssPath = ninegrid.cssPath;
178
178
  //console.log("================");
@@ -180,7 +180,7 @@ export class ninegrid {
180
180
 
181
181
  //console.log(cssPath ? `@import "${cssPath}/dist/${v}";` : null);
182
182
 
183
- console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
183
+ //console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
184
184
 
185
185
  return cssPath ? `@import "${cssPath}/${v}";` : "";
186
186
  };