verstak 0.24.136 → 0.24.137

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.
@@ -9,7 +9,7 @@ export declare function cursor(areaParams: ElArea): void;
9
9
  export declare function Note(content: string, declaration?: RxNodeDecl<El<HTMLElement, void>>): RxNode<El<HTMLElement, void>>;
10
10
  export declare function HtmlNote(content: string, declaration?: RxNodeDecl<El<HTMLElement, void>>): RxNode<El<HTMLElement, void>>;
11
11
  export declare function Group<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M>>, preset?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
12
- export declare function Handler<M = unknown>(update: Delegate<El<void, M>>): RxNode<El<void, M>>;
12
+ export declare function Handling<M = unknown>(update: Delegate<El<void, M>>): RxNode<El<void, M>>;
13
13
  export declare function SyntheticElement<M = unknown>(declaration?: RxNodeDecl<El<void, M>>, preset?: RxNodeDecl<El<void, M>>): RxNode<El<void, M>>;
14
14
  export declare class VerstakElementDriver<T extends HTMLElement> extends HtmlElementDriver<T> {
15
15
  update(node: RxNode<El<T>>): void | Promise<void>;
@@ -38,7 +38,7 @@ export function HtmlNote(content, declaration) {
38
38
  export function Group(declaration, preset) {
39
39
  return RxNode.acquire(Drivers.group, declaration, preset);
40
40
  }
41
- export function Handler(update) {
41
+ export function Handling(update) {
42
42
  return SyntheticElement({ mode: Mode.independentUpdate, update });
43
43
  }
44
44
  export function SyntheticElement(declaration, preset) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verstak",
3
- "version": "0.24.136",
3
+ "version": "0.24.137",
4
4
  "description": "Verstak - Front-End Library",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",