@etsoo/materialui 1.2.45 → 1.2.47
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.
- package/lib/Tiplist.js +1 -1
- package/lib/TiplistPro.js +1 -1
- package/package.json +7 -10
- package/src/Tiplist.tsx +1 -1
- package/src/TiplistPro.tsx +1 -1
package/lib/Tiplist.js
CHANGED
|
@@ -174,7 +174,7 @@ export function Tiplist(props) {
|
|
|
174
174
|
onValueChange(value);
|
|
175
175
|
// For clear case
|
|
176
176
|
if (reason === "clear") {
|
|
177
|
-
stateUpdate({ options: [], open:
|
|
177
|
+
stateUpdate({ options: [], open: event.type === "click" });
|
|
178
178
|
loadDataDirect();
|
|
179
179
|
}
|
|
180
180
|
}, open: states.open, openOnFocus: openOnFocus, onOpen: () => {
|
package/lib/TiplistPro.js
CHANGED
|
@@ -165,7 +165,7 @@ export function TiplistPro(props) {
|
|
|
165
165
|
}
|
|
166
166
|
// For clear case
|
|
167
167
|
if (reason === "clear") {
|
|
168
|
-
stateUpdate({ options: [], open:
|
|
168
|
+
stateUpdate({ options: [], open: event.type === "click" });
|
|
169
169
|
loadDataDirect();
|
|
170
170
|
}
|
|
171
171
|
}, open: states.open, openOnFocus: openOnFocus, onOpen: () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/materialui",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.47",
|
|
4
4
|
"description": "TypeScript Material-UI Implementation",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
"@emotion/css": "^11.11.0",
|
|
51
51
|
"@emotion/react": "^11.11.0",
|
|
52
52
|
"@emotion/styled": "^11.11.0",
|
|
53
|
-
"@etsoo/appscript": "^1.4.
|
|
53
|
+
"@etsoo/appscript": "^1.4.10",
|
|
54
54
|
"@etsoo/notificationbase": "^1.1.25",
|
|
55
|
-
"@etsoo/react": "^1.6.
|
|
55
|
+
"@etsoo/react": "^1.6.87",
|
|
56
56
|
"@etsoo/shared": "^1.2.5",
|
|
57
57
|
"@mui/icons-material": "^5.11.16",
|
|
58
|
-
"@mui/material": "^5.13.
|
|
58
|
+
"@mui/material": "^5.13.1",
|
|
59
59
|
"@mui/x-data-grid": "^6.4.0",
|
|
60
60
|
"@types/pica": "^9.0.1",
|
|
61
61
|
"@types/pulltorefreshjs": "^0.1.5",
|
|
@@ -63,16 +63,13 @@
|
|
|
63
63
|
"@types/react-avatar-editor": "^13.0.0",
|
|
64
64
|
"@types/react-dom": "^18.2.4",
|
|
65
65
|
"@types/react-input-mask": "^3.0.2",
|
|
66
|
-
"@types/react-window": "^1.8.5",
|
|
67
66
|
"pica": "^9.0.1",
|
|
68
67
|
"pulltorefreshjs": "^0.1.22",
|
|
69
68
|
"react": "^18.2.0",
|
|
70
69
|
"react-avatar-editor": "^13.0.0",
|
|
71
70
|
"react-dom": "^18.2.0",
|
|
72
71
|
"react-draggable": "^4.4.5",
|
|
73
|
-
"react-imask": "^6.6.1"
|
|
74
|
-
"react-router-dom": "^6.11.1",
|
|
75
|
-
"react-window": "^1.8.9"
|
|
72
|
+
"react-imask": "^6.6.1"
|
|
76
73
|
},
|
|
77
74
|
"devDependencies": {
|
|
78
75
|
"@babel/cli": "^7.21.5",
|
|
@@ -85,8 +82,8 @@
|
|
|
85
82
|
"@testing-library/jest-dom": "^5.16.5",
|
|
86
83
|
"@testing-library/react": "^14.0.0",
|
|
87
84
|
"@types/jest": "^29.5.1",
|
|
88
|
-
"@typescript-eslint/eslint-plugin": "^5.59.
|
|
89
|
-
"@typescript-eslint/parser": "^5.59.
|
|
85
|
+
"@typescript-eslint/eslint-plugin": "^5.59.6",
|
|
86
|
+
"@typescript-eslint/parser": "^5.59.6",
|
|
90
87
|
"jest": "^29.5.0",
|
|
91
88
|
"jest-environment-jsdom": "^29.5.0",
|
|
92
89
|
"typescript": "^5.0.4"
|
package/src/Tiplist.tsx
CHANGED
package/src/TiplistPro.tsx
CHANGED
|
@@ -309,7 +309,7 @@ export function TiplistPro<T extends ListType2 = ListType2>(
|
|
|
309
309
|
|
|
310
310
|
// For clear case
|
|
311
311
|
if (reason === "clear") {
|
|
312
|
-
stateUpdate({ options: [], open:
|
|
312
|
+
stateUpdate({ options: [], open: event.type === "click" });
|
|
313
313
|
loadDataDirect();
|
|
314
314
|
}
|
|
315
315
|
}}
|