ninegrid2 6.1350.0 → 6.1352.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 -3
- package/dist/bundle.esm.js +1 -3
- package/dist/nx/_nxDiv.js +1 -1
- package/package.json +1 -1
- package/src/nx/_nxDiv.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -28576,9 +28576,7 @@ class nxDiv extends HTMLElement {
|
|
|
28576
28576
|
}
|
|
28577
28577
|
|
|
28578
28578
|
// 만약 순수 nx-div로만 쓰일 경우(상속 x), 내용을 shadow에 채워줌
|
|
28579
|
-
if (this.shadowRoot && this.tagName.toLowerCase() === 'nx-div')
|
|
28580
|
-
this.shadowRoot.innerHTML = this.originContents;
|
|
28581
|
-
}
|
|
28579
|
+
if (this.shadowRoot && this.tagName.toLowerCase() === 'nx-div') ;
|
|
28582
28580
|
};
|
|
28583
28581
|
}
|
|
28584
28582
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -28572,9 +28572,7 @@ class nxDiv extends HTMLElement {
|
|
|
28572
28572
|
}
|
|
28573
28573
|
|
|
28574
28574
|
// 만약 순수 nx-div로만 쓰일 경우(상속 x), 내용을 shadow에 채워줌
|
|
28575
|
-
if (this.shadowRoot && this.tagName.toLowerCase() === 'nx-div')
|
|
28576
|
-
this.shadowRoot.innerHTML = this.originContents;
|
|
28577
|
-
}
|
|
28575
|
+
if (this.shadowRoot && this.tagName.toLowerCase() === 'nx-div') ;
|
|
28578
28576
|
};
|
|
28579
28577
|
}
|
|
28580
28578
|
|
package/dist/nx/_nxDiv.js
CHANGED
|
@@ -144,7 +144,7 @@ export class nxDiv extends HTMLElement {
|
|
|
144
144
|
|
|
145
145
|
// 만약 순수 nx-div로만 쓰일 경우(상속 x), 내용을 shadow에 채워줌
|
|
146
146
|
if (this.shadowRoot && this.tagName.toLowerCase() === 'nx-div') {
|
|
147
|
-
this.shadowRoot.innerHTML = this.originContents;
|
|
147
|
+
//this.shadowRoot.innerHTML = this.originContents;
|
|
148
148
|
}
|
|
149
149
|
};
|
|
150
150
|
}
|
package/package.json
CHANGED
package/src/nx/_nxDiv.js
CHANGED
|
@@ -144,7 +144,7 @@ export class nxDiv extends HTMLElement {
|
|
|
144
144
|
|
|
145
145
|
// 만약 순수 nx-div로만 쓰일 경우(상속 x), 내용을 shadow에 채워줌
|
|
146
146
|
if (this.shadowRoot && this.tagName.toLowerCase() === 'nx-div') {
|
|
147
|
-
this.shadowRoot.innerHTML = this.originContents;
|
|
147
|
+
//this.shadowRoot.innerHTML = this.originContents;
|
|
148
148
|
}
|
|
149
149
|
};
|
|
150
150
|
}
|