shineout 1.7.4 → 1.7.5
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/css/Form/index.d.ts +1 -1
- package/css/Popover/Panel.js +4 -1
- package/css/index.d.ts +1 -1
- package/css/index.js +1 -1
- package/dist/shineout.js +11 -8
- package/dist/shineout.js.map +1 -1
- package/dist/shineout.min.js +1 -1
- package/es/Form/index.d.ts +1 -1
- package/es/Popover/Panel.js +4 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/lib/Form/index.d.ts +1 -1
- package/lib/Popover/Panel.js +4 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/es/Form/index.d.ts
CHANGED
package/es/Popover/Panel.js
CHANGED
|
@@ -85,7 +85,10 @@ class Panel extends Component {
|
|
|
85
85
|
|
|
86
86
|
if (!this.container) return
|
|
87
87
|
if (this.container === getCommonContainer()) {
|
|
88
|
-
this.container.removeChild(this.element)
|
|
88
|
+
// this.container.removeChild(this.element)
|
|
89
|
+
if (this.element && this.element.parentElement) {
|
|
90
|
+
this.element.parentElement.removeChild(this.element)
|
|
91
|
+
}
|
|
89
92
|
} else {
|
|
90
93
|
this.container.parentElement.removeChild(this.container)
|
|
91
94
|
}
|
package/es/index.d.ts
CHANGED
package/es/index.js
CHANGED
package/lib/Form/index.d.ts
CHANGED
package/lib/Popover/Panel.js
CHANGED
|
@@ -125,7 +125,10 @@ function (_Component) {
|
|
|
125
125
|
if (!this.container) return;
|
|
126
126
|
|
|
127
127
|
if (this.container === (0, _popContainer.default)()) {
|
|
128
|
-
this.container.removeChild(this.element)
|
|
128
|
+
// this.container.removeChild(this.element)
|
|
129
|
+
if (this.element && this.element.parentElement) {
|
|
130
|
+
this.element.parentElement.removeChild(this.element);
|
|
131
|
+
}
|
|
129
132
|
} else {
|
|
130
133
|
this.container.parentElement.removeChild(this.container);
|
|
131
134
|
}
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED