verstak 0.24.108 → 0.24.109
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.
|
@@ -4,7 +4,6 @@ export declare class VerstakDriver<T extends Element, M = unknown, C = unknown>
|
|
|
4
4
|
initialize(element: El<T, M, C>): void;
|
|
5
5
|
finalize(element: El<T, M, C>, isLeader: boolean): boolean;
|
|
6
6
|
mount(element: El<T, M, C>): void;
|
|
7
|
-
relocate(element: El<T, M, C>): void;
|
|
8
7
|
update(element: El<T, M, C>): void | Promise<void>;
|
|
9
8
|
static findBrotherlyHost<T, R>(node: RxNode<El<T>>): RxNode<El<R>> | undefined;
|
|
10
9
|
static findBrotherlyPrevSibling<T, R>(node: RxNode<El<T>>): RxNode<El<R>> | undefined;
|
|
@@ -44,9 +44,9 @@ export class VerstakDriver extends ElDriver {
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
|
-
relocate(element) {
|
|
48
|
-
}
|
|
49
47
|
update(element) {
|
|
48
|
+
if (element instanceof ElImpl)
|
|
49
|
+
element.prepareForUpdate();
|
|
50
50
|
const result = super.update(element);
|
|
51
51
|
if (element.area === undefined) {
|
|
52
52
|
const oel = element.node.owner.element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verstak",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.109",
|
|
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.107"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "20.10.4",
|