reactronic 0.24.309 → 0.24.316
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,9 +1,9 @@
|
|
|
1
1
|
import { LoggingOptions } from "../Logging.js";
|
|
2
2
|
import { MergeListReader, MergedItem } from "../util/MergeList.js";
|
|
3
3
|
import { MemberOptions } from "../Options.js";
|
|
4
|
-
export type Script<E> = (
|
|
5
|
-
export type ScriptAsync<E> = (
|
|
6
|
-
export type Handler<E = unknown, R = void> = (
|
|
4
|
+
export type Script<E> = (el: E, basis: () => void) => void;
|
|
5
|
+
export type ScriptAsync<E> = (el: E, basis: () => Promise<void>) => Promise<void>;
|
|
6
|
+
export type Handler<E = unknown, R = void> = (el: E) => R;
|
|
7
7
|
export declare enum Mode {
|
|
8
8
|
default = 0,
|
|
9
9
|
independentUpdate = 1,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reactronic",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.316",
|
|
4
4
|
"description": "Reactronic - Transactional Reactive State Management",
|
|
5
5
|
"publisher": "Nezaboodka Software",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/nezaboodka/reactronic/blob/master/README.md#readme",
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@types/node": "
|
|
35
|
-
"@types/react": "18.3.
|
|
36
|
-
"@typescript-eslint/eslint-plugin": "
|
|
37
|
-
"@typescript-eslint/parser": "
|
|
38
|
-
"ava": "6.
|
|
39
|
-
"c8": "
|
|
40
|
-
"eslint": "
|
|
34
|
+
"@types/node": "22.8.5",
|
|
35
|
+
"@types/react": "18.3.12",
|
|
36
|
+
"@typescript-eslint/eslint-plugin": "8.12.2",
|
|
37
|
+
"@typescript-eslint/parser": "8.12.2",
|
|
38
|
+
"ava": "6.2.0",
|
|
39
|
+
"c8": "10.1.2",
|
|
40
|
+
"eslint": "9.13.0",
|
|
41
41
|
"react": "18.3.1",
|
|
42
42
|
"ts-node": "10.9.2",
|
|
43
43
|
"typescript": "5.5.4"
|