@sinco/react 1.1.1-rc.9 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.1.1-rc.9",
3
+ "version": "1.1.1",
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 };