@etsoo/react 1.8.95 → 1.8.97
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.
|
@@ -22,7 +22,7 @@ export declare namespace ReactUtils {
|
|
|
22
22
|
* @param value New value
|
|
23
23
|
* @param cancelable Cancelable
|
|
24
24
|
*/
|
|
25
|
-
function triggerChange(input: HTMLInputElement, value: string, cancelable?: boolean): void;
|
|
25
|
+
function triggerChange(input: HTMLInputElement | HTMLTextAreaElement, value: string, cancelable?: boolean): void;
|
|
26
26
|
/**
|
|
27
27
|
* Update refs
|
|
28
28
|
* @param refs Refs
|
|
@@ -22,7 +22,7 @@ export declare namespace ReactUtils {
|
|
|
22
22
|
* @param value New value
|
|
23
23
|
* @param cancelable Cancelable
|
|
24
24
|
*/
|
|
25
|
-
function triggerChange(input: HTMLInputElement, value: string, cancelable?: boolean): void;
|
|
25
|
+
function triggerChange(input: HTMLInputElement | HTMLTextAreaElement, value: string, cancelable?: boolean): void;
|
|
26
26
|
/**
|
|
27
27
|
* Update refs
|
|
28
28
|
* @param refs Refs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/react",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.97",
|
|
4
4
|
"description": "TypeScript ReactJs UI Independent Framework",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -38,26 +38,26 @@
|
|
|
38
38
|
"@emotion/css": "^11.13.5",
|
|
39
39
|
"@emotion/react": "^11.14.0",
|
|
40
40
|
"@emotion/styled": "^11.14.1",
|
|
41
|
-
"@etsoo/appscript": "^1.6.
|
|
42
|
-
"@etsoo/notificationbase": "^1.1.
|
|
43
|
-
"@etsoo/shared": "^1.2.
|
|
41
|
+
"@etsoo/appscript": "^1.6.72",
|
|
42
|
+
"@etsoo/notificationbase": "^1.1.74",
|
|
43
|
+
"@etsoo/shared": "^1.2.90",
|
|
44
44
|
"react": "^19.2.7",
|
|
45
45
|
"react-dom": "^19.2.7",
|
|
46
46
|
"react-router-dom": "^7.18.1",
|
|
47
|
-
"react-window": "^2.
|
|
47
|
+
"react-window": "^2.3.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@babel/core": "^8.0.1",
|
|
51
51
|
"@babel/plugin-transform-runtime": "^8.0.1",
|
|
52
52
|
"@babel/preset-env": "^8.0.2",
|
|
53
53
|
"@babel/runtime-corejs3": "^8.0.0",
|
|
54
|
-
"@testing-library/jest-dom": "^
|
|
54
|
+
"@testing-library/jest-dom": "^7.0.0",
|
|
55
55
|
"@testing-library/react": "^16.3.2",
|
|
56
56
|
"@types/react": "^19.2.17",
|
|
57
57
|
"@types/react-dom": "^19.2.3",
|
|
58
58
|
"@vitejs/plugin-react": "^6.0.3",
|
|
59
59
|
"jsdom": "^29.1.1",
|
|
60
|
-
"typescript": "^
|
|
60
|
+
"typescript": "^7.0.2",
|
|
61
61
|
"vitest": "^4.1.10"
|
|
62
62
|
},
|
|
63
63
|
"allowScripts": {
|
package/src/app/ReactUtils.ts
CHANGED