@dazn/kopytko-framework 1.1.0 → 1.1.1
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.1.1](https://github.com/getndazn/kopytko-framework/compare/v1.1.0...v1.1.1) (2022-06-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* validating parent when removing children from Kopytko component ([#29](https://github.com/getndazn/kopytko-framework/issues/29)) ([fefe313](https://github.com/getndazn/kopytko-framework/commit/fefe31360aa3d90ab7f97ecd5ac422530fe9351e))
|
|
7
|
+
|
|
1
8
|
# [1.1.0](https://github.com/getndazn/kopytko-framework/compare/v1.0.6...v1.1.0) (2022-05-20)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -98,7 +98,11 @@ function KopytkoDOM() as Object
|
|
|
98
98
|
|
|
99
99
|
if (element <> Invalid)
|
|
100
100
|
m._destroyKopytkoElement(element)
|
|
101
|
-
element.getParent()
|
|
101
|
+
parent = element.getParent()
|
|
102
|
+
' parent may be invalid if it was removed from the view while in the middle of removing children elements
|
|
103
|
+
if (parent <> Invalid)
|
|
104
|
+
parent.removeChild(element)
|
|
105
|
+
end if
|
|
102
106
|
end if
|
|
103
107
|
|
|
104
108
|
rootElement.delete(elementId)
|