@sinco/react 1.0.14-rc.14 → 1.0.14-rc.15

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.0.14-rc.14",
3
+ "version": "1.0.14-rc.15",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ interface PageheaderProperties {
3
+ title?: string;
4
+ subtitle?: string;
5
+ actions?: React.ReactNode;
6
+ buttonBack?: React.ReactNode;
7
+ fixed?: boolean;
8
+ }
9
+ export declare const PageHeaderContent: import("@emotion/styled").StyledComponent<import("@mui/material").StackOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
10
+ ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
11
+ }, keyof import("@mui/material/OverridableComponent").CommonProps | keyof import("@mui/material").StackOwnProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
12
+ export declare const PageHeaderComponent: ({ title, subtitle, actions, buttonBack, fixed, }: PageheaderProperties) => JSX.Element;
13
+ export {};
@@ -1,2 +1,12 @@
1
1
  import { Components } from '@mui/material';
2
+ declare module '@mui/material/Chip' {
3
+ interface ChipPropsSizeOverrides {
4
+ xsmall: true;
5
+ }
6
+ }
7
+ declare module "@mui/material/Checkbox" {
8
+ interface CheckboxPropsSizeOverrides {
9
+ xsmall: true;
10
+ }
11
+ }
2
12
  export declare const components: Components;
@@ -1,2 +1 @@
1
1
  export declare const SincoTheme: import("@mui/material/styles").Theme;
2
- export declare const AdproSincoTheme: import("@mui/material/styles").Theme;
@@ -1,3 +1,2 @@
1
1
  import { PaletteOptions } from '@mui/material';
2
2
  export declare const palette: PaletteOptions;
3
- export declare const paletteADPRO: PaletteOptions;
@@ -1,3 +1,2 @@
1
1
  import { ThemeOptions } from "@mui/material/styles";
2
2
  export declare const themeOptions: ThemeOptions;
3
- export declare const themeAdproOptions: ThemeOptions;