verstak 0.24.111 → 0.24.113

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.
@@ -1,8 +1,8 @@
1
- import { RxNode, BaseDriver } from "reactronic";
1
+ import { RxNode, BaseDriver, RxElement } from "reactronic";
2
2
  export declare class ElDriver<T extends Element, M = unknown, C = unknown> extends BaseDriver<El<T, M, C, void>> {
3
3
  allocate(node: RxNode<El<T, M, C, void>>): El<T, M, C, void>;
4
4
  }
5
- export interface BaseEl<T = any, M = any, C = any, R = void> {
5
+ export interface BaseEl<T = any, M = any, C = any, R = void> extends RxElement {
6
6
  readonly node: RxNode<El<T, M, C, R>>;
7
7
  model: M;
8
8
  controller: C;
@@ -3,7 +3,7 @@ import { Fragment } from "./Elements.js";
3
3
  export function FocuserReaction(key, target, model, switchEditMode = undefined) {
4
4
  Fragment({
5
5
  key,
6
- mode: Mode.PinpointUpdate,
6
+ mode: Mode.IndependentUpdate,
7
7
  triggers: { target, model },
8
8
  initialize(b) {
9
9
  b.node.configureReactronic({ throttling: 0 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verstak",
3
- "version": "0.24.111",
3
+ "version": "0.24.113",
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.111"
34
+ "reactronic": "^0.24.113"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "20.10.4",