ninegrid2 6.166.0 → 6.168.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 +2 -0
- package/dist/bundle.esm.js +2 -0
- package/dist/utils/ninegrid.js +2 -0
- package/package.json +1 -1
- package/src/utils/ninegrid.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -10735,6 +10735,8 @@ class ninegrid {
|
|
|
10735
10735
|
let currentElement = this;
|
|
10736
10736
|
|
|
10737
10737
|
while (currentElement) {
|
|
10738
|
+
|
|
10739
|
+
console.log(currentElement);
|
|
10738
10740
|
if (currentElement.matches(selector)) return currentElement;
|
|
10739
10741
|
|
|
10740
10742
|
// ✅ Shadow Root를 가지고 있는 경우 내부에서 탐색
|
package/dist/bundle.esm.js
CHANGED
|
@@ -10733,6 +10733,8 @@ class ninegrid {
|
|
|
10733
10733
|
let currentElement = this;
|
|
10734
10734
|
|
|
10735
10735
|
while (currentElement) {
|
|
10736
|
+
|
|
10737
|
+
console.log(currentElement);
|
|
10736
10738
|
if (currentElement.matches(selector)) return currentElement;
|
|
10737
10739
|
|
|
10738
10740
|
// ✅ Shadow Root를 가지고 있는 경우 내부에서 탐색
|
package/dist/utils/ninegrid.js
CHANGED
package/package.json
CHANGED
package/src/utils/ninegrid.js
CHANGED