ninegrid2 6.1216.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.
- package/dist/bundle.cjs.js +4 -2
- package/dist/bundle.esm.js +4 -2
- package/dist/etc/ngData.js +1 -0
- package/dist/nx/nxModal.js +3 -2
- package/package.json +1 -1
- package/src/etc/ngData.js +1 -0
- package/src/nx/nxModal.js +3 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -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
|
|
|
@@ -122307,8 +122308,9 @@ class nxModal extends HTMLElement
|
|
|
122307
122308
|
</dialog>
|
|
122308
122309
|
`;
|
|
122309
122310
|
|
|
122310
|
-
|
|
122311
|
-
|
|
122311
|
+
const titleElement = this.querySelector('.title');
|
|
122312
|
+
if (titleElement && title) {
|
|
122313
|
+
titleElement.textContent = title; // 또는 titleElement.innerHTML = title;
|
|
122312
122314
|
}
|
|
122313
122315
|
|
|
122314
122316
|
this.#init();
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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
|
|
|
@@ -122303,8 +122304,9 @@ class nxModal extends HTMLElement
|
|
|
122303
122304
|
</dialog>
|
|
122304
122305
|
`;
|
|
122305
122306
|
|
|
122306
|
-
|
|
122307
|
-
|
|
122307
|
+
const titleElement = this.querySelector('.title');
|
|
122308
|
+
if (titleElement && title) {
|
|
122309
|
+
titleElement.textContent = title; // 또는 titleElement.innerHTML = title;
|
|
122308
122310
|
}
|
|
122309
122311
|
|
|
122310
122312
|
this.#init();
|
package/dist/etc/ngData.js
CHANGED
package/dist/nx/nxModal.js
CHANGED
|
@@ -54,8 +54,9 @@ class nxModal extends HTMLElement
|
|
|
54
54
|
</dialog>
|
|
55
55
|
`;
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
const titleElement = this.querySelector('.title');
|
|
58
|
+
if (titleElement && title) {
|
|
59
|
+
titleElement.textContent = title; // 또는 titleElement.innerHTML = title;
|
|
59
60
|
}
|
|
60
61
|
|
|
61
62
|
this.#init();
|
package/package.json
CHANGED
package/src/etc/ngData.js
CHANGED
package/src/nx/nxModal.js
CHANGED
|
@@ -54,8 +54,9 @@ class nxModal extends HTMLElement
|
|
|
54
54
|
</dialog>
|
|
55
55
|
`;
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
const titleElement = this.querySelector('.title');
|
|
58
|
+
if (titleElement && title) {
|
|
59
|
+
titleElement.textContent = title; // 또는 titleElement.innerHTML = title;
|
|
59
60
|
}
|
|
60
61
|
|
|
61
62
|
this.#init();
|