@etsoo/materialui 1.4.82 → 1.4.84

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.
@@ -30,6 +30,7 @@ export interface SearchBarProps {
30
30
  }
31
31
  /**
32
32
  * Search bar
33
+ * Make sure its container's width is fixed, not fluid, like "<Container fixed><SearchBar ../></Container>"
33
34
  * @param props Props
34
35
  * @returns Component
35
36
  */
@@ -70,6 +70,7 @@ function checkFormEvent(event) {
70
70
  }
71
71
  /**
72
72
  * Search bar
73
+ * Make sure its container's width is fixed, not fluid, like "<Container fixed><SearchBar ../></Container>"
73
74
  * @param props Props
74
75
  * @returns Component
75
76
  */
@@ -30,6 +30,7 @@ export interface SearchBarProps {
30
30
  }
31
31
  /**
32
32
  * Search bar
33
+ * Make sure its container's width is fixed, not fluid, like "<Container fixed><SearchBar ../></Container>"
33
34
  * @param props Props
34
35
  * @returns Component
35
36
  */
@@ -64,6 +64,7 @@ function checkFormEvent(event) {
64
64
  }
65
65
  /**
66
66
  * Search bar
67
+ * Make sure its container's width is fixed, not fluid, like "<Container fixed><SearchBar ../></Container>"
67
68
  * @param props Props
68
69
  * @returns Component
69
70
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.4.82",
3
+ "version": "1.4.84",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -40,14 +40,14 @@
40
40
  "@dnd-kit/sortable": "^10.0.0",
41
41
  "@emotion/react": "^11.14.0",
42
42
  "@emotion/styled": "^11.14.0",
43
- "@etsoo/appscript": "^1.6.6",
43
+ "@etsoo/appscript": "^1.6.9",
44
44
  "@etsoo/notificationbase": "^1.1.58",
45
- "@etsoo/react": "^1.8.30",
45
+ "@etsoo/react": "^1.8.31",
46
46
  "@etsoo/shared": "^1.2.61",
47
- "@mui/icons-material": "^6.4.4",
47
+ "@mui/icons-material": "^6.4.5",
48
48
  "@mui/material": "^6.4.4",
49
49
  "@mui/x-data-grid": "^7.27.0",
50
- "chart.js": "^4.4.7",
50
+ "chart.js": "^4.4.8",
51
51
  "chartjs-plugin-datalabels": "^2.2.0",
52
52
  "eventemitter3": "^5.0.1",
53
53
  "pica": "^9.0.1",
@@ -83,6 +83,6 @@
83
83
  "@vitejs/plugin-react": "^4.3.4",
84
84
  "jsdom": "^26.0.0",
85
85
  "typescript": "^5.7.3",
86
- "vitest": "^3.0.5"
86
+ "vitest": "^3.0.6"
87
87
  }
88
88
  }
package/src/SearchBar.tsx CHANGED
@@ -107,6 +107,7 @@ function checkFormEvent(event: React.FormEvent<HTMLFormElement>) {
107
107
 
108
108
  /**
109
109
  * Search bar
110
+ * Make sure its container's width is fixed, not fluid, like "<Container fixed><SearchBar ../></Container>"
110
111
  * @param props Props
111
112
  * @returns Component
112
113
  */