@etsoo/materialui 1.2.63 → 1.2.64

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/HiSelector.js CHANGED
@@ -33,7 +33,7 @@ export function HiSelector(props) {
33
33
  };
34
34
  React.useEffect(() => {
35
35
  setValues(values);
36
- }, [values]);
36
+ }, [values.toString()]);
37
37
  const currentValue = localValues.at(-1);
38
38
  React.useEffect(() => {
39
39
  updateValue(currentValue);
@@ -27,7 +27,7 @@ export function HiSelectorTL(props) {
27
27
  };
28
28
  React.useEffect(() => {
29
29
  setValues(values);
30
- }, [values]);
30
+ }, [values.toString()]);
31
31
  const currentValue = localValues.at(-1);
32
32
  React.useEffect(() => {
33
33
  updateValue(currentValue);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.2.63",
3
+ "version": "1.2.64",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -50,9 +50,9 @@
50
50
  "@emotion/css": "^11.11.2",
51
51
  "@emotion/react": "^11.11.1",
52
52
  "@emotion/styled": "^11.11.0",
53
- "@etsoo/appscript": "^1.4.21",
53
+ "@etsoo/appscript": "^1.4.22",
54
54
  "@etsoo/notificationbase": "^1.1.25",
55
- "@etsoo/react": "^1.6.94",
55
+ "@etsoo/react": "^1.6.95",
56
56
  "@etsoo/shared": "^1.2.7",
57
57
  "@mui/icons-material": "^5.11.16",
58
58
  "@mui/material": "^5.13.6",
@@ -89,6 +89,6 @@
89
89
  "@typescript-eslint/parser": "^5.60.1",
90
90
  "jest": "^29.5.0",
91
91
  "jest-environment-jsdom": "^29.5.0",
92
- "typescript": "^5.1.3"
92
+ "typescript": "^5.1.6"
93
93
  }
94
94
  }
@@ -143,7 +143,7 @@ export function HiSelector<
143
143
 
144
144
  React.useEffect(() => {
145
145
  setValues(values);
146
- }, [values]);
146
+ }, [values.toString()]);
147
147
 
148
148
  const currentValue = localValues.at(-1);
149
149
  React.useEffect(() => {
@@ -138,7 +138,7 @@ export function HiSelectorTL<
138
138
 
139
139
  React.useEffect(() => {
140
140
  setValues(values);
141
- }, [values]);
141
+ }, [values.toString()]);
142
142
 
143
143
  const currentValue = localValues.at(-1);
144
144
  React.useEffect(() => {