ninegrid2 6.460.0 → 6.461.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/ai/aiMessage.js +7 -0
- package/dist/bundle.cjs.js +7 -0
- package/dist/bundle.esm.js +7 -0
- package/package.json +1 -1
- package/src/ai/aiMessage.js +7 -0
package/dist/ai/aiMessage.js
CHANGED
|
@@ -53,9 +53,16 @@ class aiMessage extends HTMLElement
|
|
|
53
53
|
if (this.#unique) {
|
|
54
54
|
const grd = document.querySelector("nine-grid");
|
|
55
55
|
|
|
56
|
+
console.log(this.#data.map(item =>
|
|
57
|
+
Object.fromEntries(this.#unique.map(key => [key, item[key]]))
|
|
58
|
+
));
|
|
59
|
+
|
|
56
60
|
grd.filtering.set(this.#data.map(item =>
|
|
57
61
|
Object.fromEntries(this.#unique.map(key => [key, item[key]]))
|
|
58
62
|
));
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
59
66
|
}
|
|
60
67
|
});
|
|
61
68
|
|
package/dist/bundle.cjs.js
CHANGED
|
@@ -27478,9 +27478,16 @@ class aiMessage extends HTMLElement
|
|
|
27478
27478
|
if (this.#unique) {
|
|
27479
27479
|
const grd = document.querySelector("nine-grid");
|
|
27480
27480
|
|
|
27481
|
+
console.log(this.#data.map(item =>
|
|
27482
|
+
Object.fromEntries(this.#unique.map(key => [key, item[key]]))
|
|
27483
|
+
));
|
|
27484
|
+
|
|
27481
27485
|
grd.filtering.set(this.#data.map(item =>
|
|
27482
27486
|
Object.fromEntries(this.#unique.map(key => [key, item[key]]))
|
|
27483
27487
|
));
|
|
27488
|
+
|
|
27489
|
+
|
|
27490
|
+
|
|
27484
27491
|
}
|
|
27485
27492
|
});
|
|
27486
27493
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -27476,9 +27476,16 @@ class aiMessage extends HTMLElement
|
|
|
27476
27476
|
if (this.#unique) {
|
|
27477
27477
|
const grd = document.querySelector("nine-grid");
|
|
27478
27478
|
|
|
27479
|
+
console.log(this.#data.map(item =>
|
|
27480
|
+
Object.fromEntries(this.#unique.map(key => [key, item[key]]))
|
|
27481
|
+
));
|
|
27482
|
+
|
|
27479
27483
|
grd.filtering.set(this.#data.map(item =>
|
|
27480
27484
|
Object.fromEntries(this.#unique.map(key => [key, item[key]]))
|
|
27481
27485
|
));
|
|
27486
|
+
|
|
27487
|
+
|
|
27488
|
+
|
|
27482
27489
|
}
|
|
27483
27490
|
});
|
|
27484
27491
|
|
package/package.json
CHANGED
package/src/ai/aiMessage.js
CHANGED
|
@@ -53,9 +53,16 @@ class aiMessage extends HTMLElement
|
|
|
53
53
|
if (this.#unique) {
|
|
54
54
|
const grd = document.querySelector("nine-grid");
|
|
55
55
|
|
|
56
|
+
console.log(this.#data.map(item =>
|
|
57
|
+
Object.fromEntries(this.#unique.map(key => [key, item[key]]))
|
|
58
|
+
));
|
|
59
|
+
|
|
56
60
|
grd.filtering.set(this.#data.map(item =>
|
|
57
61
|
Object.fromEntries(this.#unique.map(key => [key, item[key]]))
|
|
58
62
|
));
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
59
66
|
}
|
|
60
67
|
});
|
|
61
68
|
|