@campxdev/react-blueprint 1.0.14 → 1.0.15
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/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
import { DataTable } from "./DataTable/DataTable";
|
|
3
|
-
|
|
4
|
-
export * from "./Card/Card";
|
|
1
|
+
export * from "./Accordion/Accordion";
|
|
5
2
|
export * from "./Avatar/Avatar";
|
|
6
|
-
export
|
|
3
|
+
export * from "./Card/Card";
|
|
4
|
+
export * from "./DataTable/DataTable";
|
|
5
|
+
export * from "./Typography/Typography";
|
|
@@ -196,6 +196,7 @@ export const getCommonTheme = (mode: Theme) => {
|
|
|
196
196
|
fontSize: "14px ",
|
|
197
197
|
fontFamily: "Poppins",
|
|
198
198
|
fontWeight: 600,
|
|
199
|
+
maxWidth: "350px",
|
|
199
200
|
"&:hover": {
|
|
200
201
|
boxShadow: "none ",
|
|
201
202
|
"@media (hover: none )": {
|
|
@@ -210,6 +211,12 @@ export const getCommonTheme = (mode: Theme) => {
|
|
|
210
211
|
},
|
|
211
212
|
"&$disabled": { boxShadow: "none" },
|
|
212
213
|
},
|
|
214
|
+
text: {
|
|
215
|
+
padding: "0px",
|
|
216
|
+
"&:hover": {
|
|
217
|
+
backgroundColor: "transparent",
|
|
218
|
+
},
|
|
219
|
+
},
|
|
213
220
|
},
|
|
214
221
|
},
|
|
215
222
|
MuiTextField: {
|
|
@@ -228,7 +235,11 @@ export const getCommonTheme = (mode: Theme) => {
|
|
|
228
235
|
display: "none",
|
|
229
236
|
},
|
|
230
237
|
},
|
|
238
|
+
"& input:-webkit-autofill": {
|
|
239
|
+
height: "7px",
|
|
240
|
+
},
|
|
231
241
|
minWidth: "200px",
|
|
242
|
+
width: "350px",
|
|
232
243
|
margin: "5px 0px",
|
|
233
244
|
},
|
|
234
245
|
},
|