ninegrid2 6.1217.0 → 6.1218.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.
@@ -16566,6 +16566,7 @@ class ngData
16566
16566
  }
16567
16567
  set source(v) {
16568
16568
  this.clear();
16569
+ console.log(v);
16569
16570
  this.add(v, false);
16570
16571
  }
16571
16572
 
@@ -16562,6 +16562,7 @@ class ngData
16562
16562
  }
16563
16563
  set source(v) {
16564
16564
  this.clear();
16565
+ console.log(v);
16565
16566
  this.add(v, false);
16566
16567
  }
16567
16568
 
@@ -129,6 +129,7 @@ export class ngData
129
129
  }
130
130
  set source(v) {
131
131
  this.clear();
132
+ console.log(v);
132
133
  this.add(v, false);
133
134
  }
134
135
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1217.0",
4
+ "version": "6.1218.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
package/src/etc/ngData.js CHANGED
@@ -129,6 +129,7 @@ export class ngData
129
129
  }
130
130
  set source(v) {
131
131
  this.clear();
132
+ console.log(v);
132
133
  this.add(v, false);
133
134
  }
134
135