verstak 0.24.120 → 0.24.123
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.
|
@@ -29,13 +29,12 @@ export class WebDriver extends ElDriver {
|
|
|
29
29
|
const element = node.element;
|
|
30
30
|
const native = element.native;
|
|
31
31
|
if (native) {
|
|
32
|
-
const node = element.node;
|
|
33
32
|
const sequential = node.owner.children.isStrict;
|
|
34
33
|
const automaticHost = RxNode.findMatchingHost(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
|
|
35
34
|
const automaticNativeHost = automaticHost === null || automaticHost === void 0 ? void 0 : automaticHost.element.native;
|
|
36
35
|
if (automaticNativeHost) {
|
|
37
36
|
if (sequential && !node.driver.isPartitionSeparator) {
|
|
38
|
-
const after = RxNode.findMatchingPrevSibling(
|
|
37
|
+
const after = RxNode.findMatchingPrevSibling(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
|
|
39
38
|
if (after === undefined || after.driver.isPartitionSeparator) {
|
|
40
39
|
if (automaticNativeHost !== native.parentNode || !native.previousSibling)
|
|
41
40
|
automaticNativeHost.prepend(native);
|
|
@@ -59,12 +58,12 @@ export class WebDriver extends ElDriver {
|
|
|
59
58
|
element.prepareForUpdate();
|
|
60
59
|
const result = super.update(node);
|
|
61
60
|
if (element.area === undefined) {
|
|
62
|
-
const oel =
|
|
61
|
+
const oel = node.owner.element;
|
|
63
62
|
if (oel instanceof ElImpl && oel.isTable)
|
|
64
63
|
element.area = undefined;
|
|
65
64
|
}
|
|
66
65
|
if (gBlinkingEffectMarker)
|
|
67
|
-
blink(element.native, RxNode.currentUpdatePriority,
|
|
66
|
+
blink(element.native, RxNode.currentUpdatePriority, node.stamp);
|
|
68
67
|
return result;
|
|
69
68
|
}
|
|
70
69
|
static findBrotherlyHost(node) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verstak",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.123",
|
|
4
4
|
"description": "Verstak - Front-End Library",
|
|
5
5
|
"publisher": "Nezaboodka Software",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/nezaboodka/verstak/blob/master/README.md#readme",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"reactronic": "^0.24.
|
|
34
|
+
"reactronic": "^0.24.123"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "20.10.4",
|