@etsoo/materialui 1.2.66 → 1.2.68

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.
@@ -23,15 +23,15 @@ function getResp(singleRow) {
23
23
  return typeof singleRow === "object"
24
24
  ? singleRow
25
25
  : singleRow === "default"
26
- ? { xs: 12, sm: 12, md: 12, lg: 6, xl: 6 }
26
+ ? { xs: 12, sm: 12, md: 6, lg: 4, xl: 3 }
27
27
  : singleRow === true
28
28
  ? { xs: 12, sm: 12, md: 12, lg: 12, xl: 12 }
29
29
  : {
30
30
  xs: singleRow === false ? 12 : 6,
31
31
  sm: 6,
32
- md: 6,
33
- lg: 4,
34
- xl: 3
32
+ md: 4,
33
+ lg: 3,
34
+ xl: 2
35
35
  };
36
36
  }
37
37
  function getItemField(field, data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.2.66",
3
+ "version": "1.2.68",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -50,18 +50,18 @@
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.24",
53
+ "@etsoo/appscript": "^1.4.26",
54
54
  "@etsoo/notificationbase": "^1.1.25",
55
- "@etsoo/react": "^1.6.96",
56
- "@etsoo/shared": "^1.2.7",
57
- "@mui/icons-material": "^5.13.7",
58
- "@mui/material": "^5.13.7",
59
- "@mui/x-data-grid": "^6.9.2",
55
+ "@etsoo/react": "^1.6.97",
56
+ "@etsoo/shared": "^1.2.8",
57
+ "@mui/icons-material": "^5.14.0",
58
+ "@mui/material": "^5.14.0",
59
+ "@mui/x-data-grid": "^6.10.0",
60
60
  "@types/pica": "^9.0.1",
61
61
  "@types/pulltorefreshjs": "^0.1.5",
62
- "@types/react": "^18.2.14",
62
+ "@types/react": "^18.2.15",
63
63
  "@types/react-avatar-editor": "^13.0.0",
64
- "@types/react-dom": "^18.2.6",
64
+ "@types/react-dom": "^18.2.7",
65
65
  "@types/react-input-mask": "^3.0.2",
66
66
  "chart.js": "^4.3.0",
67
67
  "chartjs-plugin-datalabels": "^2.2.0",
@@ -75,18 +75,18 @@
75
75
  "react-imask": "6.6.3"
76
76
  },
77
77
  "devDependencies": {
78
- "@babel/cli": "^7.22.6",
79
- "@babel/core": "^7.22.8",
80
- "@babel/plugin-transform-runtime": "^7.22.7",
81
- "@babel/preset-env": "^7.22.7",
78
+ "@babel/cli": "^7.22.9",
79
+ "@babel/core": "^7.22.9",
80
+ "@babel/plugin-transform-runtime": "^7.22.9",
81
+ "@babel/preset-env": "^7.22.9",
82
82
  "@babel/preset-react": "^7.22.5",
83
83
  "@babel/preset-typescript": "^7.22.5",
84
84
  "@babel/runtime-corejs3": "^7.22.6",
85
- "@testing-library/jest-dom": "^5.16.5",
85
+ "@testing-library/jest-dom": "^5.17.0",
86
86
  "@testing-library/react": "^14.0.0",
87
- "@types/jest": "^29.5.2",
88
- "@typescript-eslint/eslint-plugin": "^5.61.0",
89
- "@typescript-eslint/parser": "^5.61.0",
87
+ "@types/jest": "^29.5.3",
88
+ "@typescript-eslint/eslint-plugin": "^6.1.0",
89
+ "@typescript-eslint/parser": "^6.1.0",
90
90
  "jest": "^29.6.1",
91
91
  "jest-environment-jsdom": "^29.6.1",
92
92
  "typescript": "^5.1.6"
@@ -136,15 +136,15 @@ function getResp(singleRow: ViewPageRowType) {
136
136
  return typeof singleRow === "object"
137
137
  ? singleRow
138
138
  : singleRow === "default"
139
- ? { xs: 12, sm: 12, md: 12, lg: 6, xl: 6 }
139
+ ? { xs: 12, sm: 12, md: 6, lg: 4, xl: 3 }
140
140
  : singleRow === true
141
141
  ? { xs: 12, sm: 12, md: 12, lg: 12, xl: 12 }
142
142
  : {
143
143
  xs: singleRow === false ? 12 : 6,
144
144
  sm: 6,
145
- md: 6,
146
- lg: 4,
147
- xl: 3
145
+ md: 4,
146
+ lg: 3,
147
+ xl: 2
148
148
  };
149
149
  }
150
150