ninegrid2 6.729.0 → 6.730.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 +1 -0
- package/dist/bundle.esm.js +1 -0
- package/dist/nx/nxTab.js +1 -0
- package/package.json +1 -1
- package/src/nx/nxTab.js +1 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -120958,6 +120958,7 @@ class nxTab extends HTMLElement {
|
|
|
120958
120958
|
|
|
120959
120959
|
#init = () => {
|
|
120960
120960
|
const observer = new MutationObserver(() => {
|
|
120961
|
+
console.log("1111");
|
|
120961
120962
|
const activeContent = this.shadowRoot.querySelector('.tab-page.active');
|
|
120962
120963
|
if (activeContent) {
|
|
120963
120964
|
this.shadowRoot.querySelector('.tab-pages').style.height = `${activeContent.scrollHeight}px`;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -120954,6 +120954,7 @@ class nxTab extends HTMLElement {
|
|
|
120954
120954
|
|
|
120955
120955
|
#init = () => {
|
|
120956
120956
|
const observer = new MutationObserver(() => {
|
|
120957
|
+
console.log("1111");
|
|
120957
120958
|
const activeContent = this.shadowRoot.querySelector('.tab-page.active');
|
|
120958
120959
|
if (activeContent) {
|
|
120959
120960
|
this.shadowRoot.querySelector('.tab-pages').style.height = `${activeContent.scrollHeight}px`;
|
package/dist/nx/nxTab.js
CHANGED
|
@@ -110,6 +110,7 @@ class nxTab extends HTMLElement {
|
|
|
110
110
|
|
|
111
111
|
#init = () => {
|
|
112
112
|
const observer = new MutationObserver(() => {
|
|
113
|
+
console.log("1111")
|
|
113
114
|
const activeContent = this.shadowRoot.querySelector('.tab-page.active');
|
|
114
115
|
if (activeContent) {
|
|
115
116
|
this.shadowRoot.querySelector('.tab-pages').style.height = `${activeContent.scrollHeight}px`;
|
package/package.json
CHANGED
package/src/nx/nxTab.js
CHANGED
|
@@ -110,6 +110,7 @@ class nxTab extends HTMLElement {
|
|
|
110
110
|
|
|
111
111
|
#init = () => {
|
|
112
112
|
const observer = new MutationObserver(() => {
|
|
113
|
+
console.log("1111")
|
|
113
114
|
const activeContent = this.shadowRoot.querySelector('.tab-page.active');
|
|
114
115
|
if (activeContent) {
|
|
115
116
|
this.shadowRoot.querySelector('.tab-pages').style.height = `${activeContent.scrollHeight}px`;
|