@sinco/react 1.1.2-rc.63 → 1.1.2-rc.64

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.2-rc.63",
3
+ "version": "1.1.2-rc.64",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -1,13 +1,13 @@
1
- import React, { ReactNode } from 'react';
2
- import { SxProps } from '@mui/material';
3
- export type DrawerPosition = 'left' | 'right';
1
+ import React, { ReactNode } from "react";
2
+ import { SxProps } from "@mui/material";
3
+ export type DrawerPosition = "left" | "right";
4
4
  export interface DrawerComponentProperties {
5
5
  title: string;
6
6
  children: ReactNode;
7
7
  actions: ReactNode;
8
8
  showActions?: boolean;
9
9
  anchor?: DrawerPosition;
10
- anchorActions: 'flex-end' | 'flex-start';
10
+ anchorActions: "flex-end" | "flex-start";
11
11
  width: string;
12
12
  open: boolean;
13
13
  onClose: () => void;
@@ -1,6 +1,5 @@
1
1
  import React, { ReactNode } from 'react';
2
2
  export type EmptyStateStates = 'create' | 'error' | 'noResult' | 'search';
3
- export declare const EmptyStateImageUrls: Record<EmptyStateStates, string>;
4
3
  export interface EmptyStateProperties {
5
4
  icon?: ReactNode;
6
5
  state?: EmptyStateStates;
@@ -10,4 +9,5 @@ export interface EmptyStateProperties {
10
9
  iconStyle?: React.CSSProperties;
11
10
  containerHeight?: string;
12
11
  }
13
- export declare const EmptyState: ({ state, title, subtitle, actions, containerHeight, iconStyle, icon, }: EmptyStateProperties) => React.JSX.Element;
12
+ export declare const EmptyStateComponent: ({ state, title, subtitle, actions, containerHeight, iconStyle, icon, }: EmptyStateProperties) => React.JSX.Element;
13
+ export { EmptyStateComponent as EmptyState };
@@ -1,5 +1,5 @@
1
- import React from 'react';
2
- export type ToastType = 'success' | 'error' | 'warning' | 'info';
1
+ import React from "react";
2
+ export type ToastType = "success" | "error" | "warning" | "info";
3
3
  export interface ToastBaseProperties {
4
4
  type?: ToastType;
5
5
  subtitle?: string;
@@ -3,4 +3,3 @@ export * from "./Drawer";
3
3
  export * from "./FooterAction";
4
4
  export * from "./ToastNotification";
5
5
  export * from "./PageHeader";
6
- export * from './Progress';
@@ -1,3 +1,3 @@
1
- export declare const useProgress: (initialProgress: number, timeProgress: number, shouldDecrease: boolean, lote?: number) => {
1
+ export declare const useProgress: (timeProgress: number) => {
2
2
  progressToast: number;
3
3
  };
@@ -1,12 +1,3 @@
1
1
  import { Components } from "@mui/material";
2
- declare module "@mui/material/Radio" {
3
- interface RadioPropsSizeOverrides {
4
- large: true;
5
- }
6
- }
7
- declare module "@mui/material/Checkbox" {
8
- interface CheckboxPropsSizeOverrides {
9
- large: true;
10
- }
11
- }
2
+ import "../../module";
12
3
  export declare const components: Components;
@@ -0,0 +1,39 @@
1
+ /// <reference types="react" />
2
+ import "@mui/material/Typography";
3
+ import "@mui/material/Radio";
4
+ import "@mui/material/Checkbox";
5
+ import "@mui/material/styles";
6
+ declare module '@mui/material/styles' {
7
+ interface TypographyVariants {
8
+ body3: React.CSSProperties;
9
+ }
10
+ interface TypographyVariantsOptions {
11
+ body3?: React.CSSProperties;
12
+ }
13
+ }
14
+ declare module '@mui/material/Typography' {
15
+ interface TypographyPropsVariantOverrides {
16
+ body3: true;
17
+ }
18
+ }
19
+ declare module "@mui/material/Radio" {
20
+ interface RadioPropsSizeOverrides {
21
+ large: true;
22
+ }
23
+ }
24
+ declare module "@mui/material/Checkbox" {
25
+ interface CheckboxPropsSizeOverrides {
26
+ large: true;
27
+ }
28
+ }
29
+ declare module "@mui/material/styles" {
30
+ interface PaletteColor {
31
+ 50?: string;
32
+ 100?: string;
33
+ 200?: string;
34
+ 300?: string;
35
+ 600?: string;
36
+ 700?: string;
37
+ 800?: string;
38
+ }
39
+ }
@@ -1,14 +1,3 @@
1
1
  import { PaletteOptions } from "@mui/material";
2
- declare module "@mui/material/styles" {
3
- interface PaletteColor {
4
- 50?: string;
5
- 100?: string;
6
- 200?: string;
7
- 300?: string;
8
- 600?: string;
9
- 700?: string;
10
- 800?: string;
11
- }
12
- }
13
2
  export declare const palette: PaletteOptions;
14
3
  export declare const paletteAdpro: PaletteOptions;
@@ -1,11 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { TypographyOptions } from '@mui/material/styles/createTypography';
3
- declare module '@mui/material/styles' {
4
- interface TypographyVariants {
5
- body3: React.CSSProperties;
6
- }
7
- interface TypographyVariantsOptions {
8
- body3?: React.CSSProperties;
9
- }
10
- }
2
+ import "../../module";
11
3
  export declare const typography: TypographyOptions;
Binary file
@@ -1,14 +0,0 @@
1
- import { FC } from 'react';
2
- type Variant = 'buffer' | 'determinate' | 'indeterminate' | 'query' | 'lote';
3
- interface ProgressProps {
4
- time?: number;
5
- variant?: Variant;
6
- valueBuffer?: number;
7
- lote?: number;
8
- porcent?: boolean;
9
- text?: boolean;
10
- gif?: boolean;
11
- progress?: boolean;
12
- }
13
- export declare const ProgressSinco: FC<ProgressProps>;
14
- export {};