@sinco/react 1.1.1-rc.5 → 1.1.1-rc.6

Sign up to get free protection for your applications and to get access to all the features.
package/index.js CHANGED
@@ -6789,6 +6789,29 @@ const paletteAdpro = {
6789
6789
 
6790
6790
  var _palette$action;
6791
6791
  const components = {
6792
+ MuiTabs: {
6793
+ styleOverrides: {
6794
+ root: {
6795
+ minHeight: 40
6796
+ }
6797
+ }
6798
+ },
6799
+ MuiTab: {
6800
+ styleOverrides: {
6801
+ labelIcon: {
6802
+ paddingTop: 10,
6803
+ paddingBottom: 10
6804
+ },
6805
+ root: {
6806
+ minHeight: "40px",
6807
+ root: {
6808
+ "& .MuiTabs-root": {
6809
+ minHeight: "40px"
6810
+ }
6811
+ }
6812
+ }
6813
+ }
6814
+ },
6792
6815
  MuiDataGrid: {
6793
6816
  defaultProps: {
6794
6817
  columnHeaderHeight: 35,
@@ -7179,6 +7202,9 @@ const components = {
7179
7202
  },
7180
7203
  MuiFilledInput: {
7181
7204
  styleOverrides: {
7205
+ root: {
7206
+ height: 48
7207
+ },
7182
7208
  sizeSmall: {
7183
7209
  height: 38
7184
7210
  }
@@ -7200,7 +7226,8 @@ const components = {
7200
7226
  paddingBlock: 14
7201
7227
  },
7202
7228
  ".MuiFilledInput-input.MuiInputBase-inputSizeSmall": {
7203
- paddingBlock: "none"
7229
+ paddingTop: 16,
7230
+ paddingBottom: 2
7204
7231
  },
7205
7232
  ".MuiFilledInput-input": {
7206
7233
  paddingTop: 22,
@@ -7341,13 +7368,31 @@ const components = {
7341
7368
  padding: "4px 0px 4px 0px"
7342
7369
  },
7343
7370
  root: {
7344
- padding: "7.5px 0px 7.5px 0px"
7371
+ padding: "7.5px 16px 7.5px 16px"
7345
7372
  }
7346
7373
  }
7347
7374
  },
7348
7375
  MuiMenuItem: {
7349
- defaultProps: {
7350
- dense: true
7376
+ styleOverrides: {
7377
+ dense: {
7378
+ height: 28,
7379
+ minHeight: 28,
7380
+ ".MuiListItemText-root > .MuiTypography-root": {
7381
+ lineHeight: "14.3px",
7382
+ letterSpacing: 0.15
7383
+ }
7384
+ },
7385
+ root: {
7386
+ padding: "7px 16px 7px 16px",
7387
+ ".MuiMenuList-root": {
7388
+ height: 34,
7389
+ minHeight: 34
7390
+ },
7391
+ ".MuiListItemText-root > .MuiTypography-root": {
7392
+ lineHeight: "20px",
7393
+ letterSpacing: 0.17
7394
+ }
7395
+ }
7351
7396
  }
7352
7397
  },
7353
7398
  MuiTable: {
@@ -14306,6 +14351,8 @@ const borderStyles = {
14306
14351
  };
14307
14352
  const DrawerComponent = ({
14308
14353
  title,
14354
+ backgroundColor,
14355
+ color,
14309
14356
  children,
14310
14357
  actions,
14311
14358
  showActions,
@@ -14325,7 +14372,7 @@ const DrawerComponent = ({
14325
14372
  anchor: _anchor,
14326
14373
  open: open,
14327
14374
  onClose: onClose,
14328
- sx: {
14375
+ sx: Object.assign({
14329
14376
  '& .MuiBackdrop-root': {
14330
14377
  backgroundColor: '#F0f0f099 !important',
14331
14378
  backdropFilter: 'blur(4px)'
@@ -14333,7 +14380,7 @@ const DrawerComponent = ({
14333
14380
  '& .MuiDrawer-paper': Object.assign({
14334
14381
  width: width
14335
14382
  }, paperSx)
14336
- }
14383
+ }, sx)
14337
14384
  }, /*#__PURE__*/React__default.createElement(Stack$1, {
14338
14385
  height: "100%"
14339
14386
  }, /*#__PURE__*/React__default.createElement(Stack$1, {
@@ -14344,7 +14391,7 @@ const DrawerComponent = ({
14344
14391
  px: 1,
14345
14392
  bgcolor: "secondary.main"
14346
14393
  }, /*#__PURE__*/React__default.createElement(Typography$1, {
14347
- sx: Object.assign({}, sx),
14394
+ color: color,
14348
14395
  variant: "h6"
14349
14396
  }, title), /*#__PURE__*/React__default.createElement(IconButton$1, {
14350
14397
  onClick: onClose,
@@ -14352,6 +14399,9 @@ const DrawerComponent = ({
14352
14399
  }, /*#__PURE__*/React__default.createElement(Close, {
14353
14400
  fontSize: "small"
14354
14401
  }))), /*#__PURE__*/React__default.createElement(Stack$1, {
14402
+ sx: {
14403
+ backgroundColor: backgroundColor
14404
+ },
14355
14405
  py: 1.5,
14356
14406
  px: 1,
14357
14407
  overflow: "auto",
@@ -14360,7 +14410,6 @@ const DrawerComponent = ({
14360
14410
  }, children), stateActions && /*#__PURE__*/React__default.createElement(Stack$1, {
14361
14411
  alignItems: _anchorActions,
14362
14412
  gap: 1,
14363
- mt: 0.5,
14364
14413
  py: 1.5,
14365
14414
  px: 1,
14366
14415
  sx: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.1.1-rc.5",
3
+ "version": "1.1.1-rc.6",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -12,6 +12,8 @@ export interface DrawerComponentProperties {
12
12
  open: boolean;
13
13
  onClose: () => void;
14
14
  sx?: SxProps;
15
+ backgroundColor?: string;
16
+ color?: string;
15
17
  }
16
- export declare const DrawerComponent: ({ title, children, actions, showActions, anchor, anchorActions, width, open, onClose, sx, }: DrawerComponentProperties) => JSX.Element;
18
+ export declare const DrawerComponent: ({ title, backgroundColor, color, children, actions, showActions, anchor, anchorActions, width, open, onClose, sx, }: DrawerComponentProperties) => JSX.Element;
17
19
  export { DrawerComponent as Drawer };