ninegrid2 6.929.0 → 6.931.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 +3 -2
- package/dist/bundle.esm.js +3 -2
- package/dist/etc/nxSideMenu.js +3 -2
- package/package.json +1 -1
- package/src/etc/nxSideMenu.js +3 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -120516,11 +120516,12 @@ class nxSideMenuItem extends HTMLElement
|
|
|
120516
120516
|
}
|
|
120517
120517
|
|
|
120518
120518
|
connectedCallback() {
|
|
120519
|
+
this.#caption = this.innerText.trim();
|
|
120519
120520
|
|
|
120520
120521
|
requestAnimationFrame(() => {
|
|
120521
|
-
this.#caption = this.innerText.trim();
|
|
120522
120522
|
|
|
120523
|
-
|
|
120523
|
+
|
|
120524
|
+
console.log("nxSideMenuItem", this.#caption);
|
|
120524
120525
|
//this.data.caption = this.#caption;
|
|
120525
120526
|
this.setAttribute("data-caption", this.innerText.trim());
|
|
120526
120527
|
this.#init();
|
package/dist/bundle.esm.js
CHANGED
|
@@ -120512,11 +120512,12 @@ class nxSideMenuItem extends HTMLElement
|
|
|
120512
120512
|
}
|
|
120513
120513
|
|
|
120514
120514
|
connectedCallback() {
|
|
120515
|
+
this.#caption = this.innerText.trim();
|
|
120515
120516
|
|
|
120516
120517
|
requestAnimationFrame(() => {
|
|
120517
|
-
this.#caption = this.innerText.trim();
|
|
120518
120518
|
|
|
120519
|
-
|
|
120519
|
+
|
|
120520
|
+
console.log("nxSideMenuItem", this.#caption);
|
|
120520
120521
|
//this.data.caption = this.#caption;
|
|
120521
120522
|
this.setAttribute("data-caption", this.innerText.trim());
|
|
120522
120523
|
this.#init();
|
package/dist/etc/nxSideMenu.js
CHANGED
|
@@ -364,11 +364,12 @@ class nxSideMenuItem extends HTMLElement
|
|
|
364
364
|
}
|
|
365
365
|
|
|
366
366
|
connectedCallback() {
|
|
367
|
+
this.#caption = this.innerText.trim();
|
|
367
368
|
|
|
368
369
|
requestAnimationFrame(() => {
|
|
369
|
-
this.#caption = this.innerText.trim();
|
|
370
370
|
|
|
371
|
-
|
|
371
|
+
|
|
372
|
+
console.log("nxSideMenuItem", this.#caption);
|
|
372
373
|
//this.data.caption = this.#caption;
|
|
373
374
|
this.setAttribute("data-caption", this.innerText.trim());
|
|
374
375
|
this.#init();
|
package/package.json
CHANGED
package/src/etc/nxSideMenu.js
CHANGED
|
@@ -364,11 +364,12 @@ class nxSideMenuItem extends HTMLElement
|
|
|
364
364
|
}
|
|
365
365
|
|
|
366
366
|
connectedCallback() {
|
|
367
|
+
this.#caption = this.innerText.trim();
|
|
367
368
|
|
|
368
369
|
requestAnimationFrame(() => {
|
|
369
|
-
this.#caption = this.innerText.trim();
|
|
370
370
|
|
|
371
|
-
|
|
371
|
+
|
|
372
|
+
console.log("nxSideMenuItem", this.#caption);
|
|
372
373
|
//this.data.caption = this.#caption;
|
|
373
374
|
this.setAttribute("data-caption", this.innerText.trim());
|
|
374
375
|
this.#init();
|