@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.
- package/lib/cjs/SearchBar.d.ts +1 -0
- package/lib/cjs/SearchBar.js +1 -0
- package/lib/mjs/SearchBar.d.ts +1 -0
- package/lib/mjs/SearchBar.js +1 -0
- package/package.json +6 -6
- package/src/SearchBar.tsx +1 -0
package/lib/cjs/SearchBar.d.ts
CHANGED
package/lib/cjs/SearchBar.js
CHANGED
package/lib/mjs/SearchBar.d.ts
CHANGED
package/lib/mjs/SearchBar.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/materialui",
|
|
3
|
-
"version": "1.4.
|
|
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.
|
|
43
|
+
"@etsoo/appscript": "^1.6.9",
|
|
44
44
|
"@etsoo/notificationbase": "^1.1.58",
|
|
45
|
-
"@etsoo/react": "^1.8.
|
|
45
|
+
"@etsoo/react": "^1.8.31",
|
|
46
46
|
"@etsoo/shared": "^1.2.61",
|
|
47
|
-
"@mui/icons-material": "^6.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.
|
|
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.
|
|
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
|
*/
|