ninegrid2 6.194.0 → 6.195.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.
- package/dist/bundle.cjs.js +4 -4
- package/dist/bundle.esm.js +4 -4
- package/dist/etc/ngFiltering.js +4 -4
- package/package.json +1 -1
- package/src/etc/ngFiltering.js +4 -4
package/dist/bundle.cjs.js
CHANGED
|
@@ -18487,11 +18487,11 @@ class ngFilterPanel extends HTMLElement
|
|
|
18487
18487
|
|
|
18488
18488
|
let data = owner.data.getValidDataNF();
|
|
18489
18489
|
|
|
18490
|
-
|
|
18490
|
+
console.log(data);
|
|
18491
18491
|
|
|
18492
18492
|
owner.body.querySelectorAll("ng-filter-button").forEach(el => {
|
|
18493
18493
|
//console.log(el);
|
|
18494
|
-
if (el.closest('th,td').dataset.col != col
|
|
18494
|
+
if (el.closest('th,td').dataset.col != col && el.filterOptions) {
|
|
18495
18495
|
|
|
18496
18496
|
//console.log("================", el.filterOptions);
|
|
18497
18497
|
|
|
@@ -18507,7 +18507,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
18507
18507
|
}
|
|
18508
18508
|
});
|
|
18509
18509
|
|
|
18510
|
-
|
|
18510
|
+
console.log(data);
|
|
18511
18511
|
|
|
18512
18512
|
/**
|
|
18513
18513
|
$("ng-filter-button", owner.body).each((index,el) => {
|
|
@@ -18539,7 +18539,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
18539
18539
|
filterButton.filterOptions.forEach((filterOption,i) => {
|
|
18540
18540
|
|
|
18541
18541
|
//const colnm = filterOption.colnm;
|
|
18542
|
-
console.log(filterOption);
|
|
18542
|
+
//console.log(filterOption);
|
|
18543
18543
|
|
|
18544
18544
|
ds.push({
|
|
18545
18545
|
LVL: 1,
|
package/dist/bundle.esm.js
CHANGED
|
@@ -18485,11 +18485,11 @@ class ngFilterPanel extends HTMLElement
|
|
|
18485
18485
|
|
|
18486
18486
|
let data = owner.data.getValidDataNF();
|
|
18487
18487
|
|
|
18488
|
-
|
|
18488
|
+
console.log(data);
|
|
18489
18489
|
|
|
18490
18490
|
owner.body.querySelectorAll("ng-filter-button").forEach(el => {
|
|
18491
18491
|
//console.log(el);
|
|
18492
|
-
if (el.closest('th,td').dataset.col != col
|
|
18492
|
+
if (el.closest('th,td').dataset.col != col && el.filterOptions) {
|
|
18493
18493
|
|
|
18494
18494
|
//console.log("================", el.filterOptions);
|
|
18495
18495
|
|
|
@@ -18505,7 +18505,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
18505
18505
|
}
|
|
18506
18506
|
});
|
|
18507
18507
|
|
|
18508
|
-
|
|
18508
|
+
console.log(data);
|
|
18509
18509
|
|
|
18510
18510
|
/**
|
|
18511
18511
|
$("ng-filter-button", owner.body).each((index,el) => {
|
|
@@ -18537,7 +18537,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
18537
18537
|
filterButton.filterOptions.forEach((filterOption,i) => {
|
|
18538
18538
|
|
|
18539
18539
|
//const colnm = filterOption.colnm;
|
|
18540
|
-
console.log(filterOption);
|
|
18540
|
+
//console.log(filterOption);
|
|
18541
18541
|
|
|
18542
18542
|
ds.push({
|
|
18543
18543
|
LVL: 1,
|
package/dist/etc/ngFiltering.js
CHANGED
|
@@ -557,11 +557,11 @@ class ngFilterPanel extends HTMLElement
|
|
|
557
557
|
|
|
558
558
|
let data = owner.data.getValidDataNF();
|
|
559
559
|
|
|
560
|
-
|
|
560
|
+
console.log(data);
|
|
561
561
|
|
|
562
562
|
owner.body.querySelectorAll("ng-filter-button").forEach(el => {
|
|
563
563
|
//console.log(el);
|
|
564
|
-
if (el.closest('th,td').dataset.col != col
|
|
564
|
+
if (el.closest('th,td').dataset.col != col && el.filterOptions) {
|
|
565
565
|
|
|
566
566
|
//console.log("================", el.filterOptions);
|
|
567
567
|
|
|
@@ -577,7 +577,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
577
577
|
}
|
|
578
578
|
});
|
|
579
579
|
|
|
580
|
-
|
|
580
|
+
console.log(data);
|
|
581
581
|
|
|
582
582
|
/**
|
|
583
583
|
$("ng-filter-button", owner.body).each((index,el) => {
|
|
@@ -609,7 +609,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
609
609
|
filterButton.filterOptions.forEach((filterOption,i) => {
|
|
610
610
|
|
|
611
611
|
//const colnm = filterOption.colnm;
|
|
612
|
-
console.log(filterOption);
|
|
612
|
+
//console.log(filterOption);
|
|
613
613
|
|
|
614
614
|
ds.push({
|
|
615
615
|
LVL: 1,
|
package/package.json
CHANGED
package/src/etc/ngFiltering.js
CHANGED
|
@@ -557,11 +557,11 @@ class ngFilterPanel extends HTMLElement
|
|
|
557
557
|
|
|
558
558
|
let data = owner.data.getValidDataNF();
|
|
559
559
|
|
|
560
|
-
|
|
560
|
+
console.log(data);
|
|
561
561
|
|
|
562
562
|
owner.body.querySelectorAll("ng-filter-button").forEach(el => {
|
|
563
563
|
//console.log(el);
|
|
564
|
-
if (el.closest('th,td').dataset.col != col
|
|
564
|
+
if (el.closest('th,td').dataset.col != col && el.filterOptions) {
|
|
565
565
|
|
|
566
566
|
//console.log("================", el.filterOptions);
|
|
567
567
|
|
|
@@ -577,7 +577,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
577
577
|
}
|
|
578
578
|
});
|
|
579
579
|
|
|
580
|
-
|
|
580
|
+
console.log(data);
|
|
581
581
|
|
|
582
582
|
/**
|
|
583
583
|
$("ng-filter-button", owner.body).each((index,el) => {
|
|
@@ -609,7 +609,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
609
609
|
filterButton.filterOptions.forEach((filterOption,i) => {
|
|
610
610
|
|
|
611
611
|
//const colnm = filterOption.colnm;
|
|
612
|
-
console.log(filterOption);
|
|
612
|
+
//console.log(filterOption);
|
|
613
613
|
|
|
614
614
|
ds.push({
|
|
615
615
|
LVL: 1,
|