@sinco/react 1.1.2-rc.62 → 1.1.2-rc.64
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/index.esm.js +12233 -14463
- package/package.json +1 -1
- package/src/lib/Components/Drawer.d.ts +4 -4
- package/src/lib/Components/EmptyState.d.ts +2 -2
- package/src/lib/Components/ToastNotification.d.ts +2 -2
- package/src/lib/Components/index.d.ts +0 -1
- package/src/lib/Hooks/useProgress.d.ts +1 -1
- package/src/lib/Theme/components.d.ts +1 -10
- package/src/lib/Theme/module.d.ts +39 -0
- package/src/lib/Theme/palette.d.ts +0 -11
- package/src/lib/Theme/typography.d.ts +1 -9
- package/6b9c10915ea2b5ed.gif +0 -0
- package/src/lib/Components/Progress.d.ts +0 -14
package/package.json
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
import React, { ReactNode } from
|
2
|
-
import { SxProps } from
|
3
|
-
export type DrawerPosition =
|
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:
|
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
|
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
|
2
|
-
export type ToastType =
|
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;
|
@@ -1,12 +1,3 @@
|
|
1
1
|
import { Components } from "@mui/material";
|
2
|
-
|
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
|
-
|
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;
|
package/6b9c10915ea2b5ed.gif
DELETED
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 {};
|