@sinco/react 1.1.2-rc.7 → 1.1.2-rc.71

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.7",
3
+ "version": "1.1.2-rc.71",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -16,8 +16,7 @@
16
16
  "@mui/x-data-grid": "^6.6.0"
17
17
  },
18
18
  "sideEffects": false,
19
- "module": "./index.js",
20
- "main": "./index.js",
19
+ "module": "./index.esm.js",
21
20
  "type": "module",
22
- "types": "./src\\index.d.ts"
21
+ "main": "./index.esm.js"
23
22
  }
package/src/index.d.ts CHANGED
@@ -2,4 +2,4 @@ export * from './lib/Theme';
2
2
  export * from './lib/Components';
3
3
  export * from './lib/Hooks';
4
4
  export * from './lib/Utils';
5
- export * from './module.';
5
+ export * from './module';
@@ -1,4 +1,4 @@
1
- import { ReactNode } from "react";
1
+ import React, { ReactNode } from "react";
2
2
  import { SxProps } from "@mui/material";
3
3
  export type DrawerPosition = "left" | "right";
4
4
  export interface DrawerComponentProperties {
@@ -15,5 +15,5 @@ export interface DrawerComponentProperties {
15
15
  backgroundColor?: string;
16
16
  color?: string;
17
17
  }
18
- export declare const DrawerComponent: ({ title, backgroundColor, color, 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) => React.JSX.Element;
19
19
  export { DrawerComponent as Drawer };
@@ -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) => JSX.Element;
12
+ export declare const EmptyStateComponent: ({ state, title, subtitle, actions, containerHeight, iconStyle, icon, }: EmptyStateProperties) => React.JSX.Element;
13
+ export { EmptyStateComponent as EmptyState };
@@ -4,5 +4,5 @@ interface FooterActionsProperties {
4
4
  leftContent?: React.ReactNode;
5
5
  rightContent?: React.ReactNode;
6
6
  }
7
- export declare const FooterAction: ({ leftContent, rightContent, labelChangeCounter, }: FooterActionsProperties) => JSX.Element;
7
+ export declare const FooterAction: ({ leftContent, rightContent, labelChangeCounter, }: FooterActionsProperties) => React.JSX.Element;
8
8
  export {};
@@ -11,6 +11,5 @@ export declare function PageHeaderWraps({ item, color, variant, }: {
11
11
  item: string | React.ReactNode;
12
12
  color: string;
13
13
  variant: Variant;
14
- }): JSX.Element;
15
- export declare const PageHeaderComponent: ({ title, subtitle, actions, buttonBack, fixed, }: PageheaderProperties) => JSX.Element;
16
- export { PageHeaderComponent as PageHeader };
14
+ }): React.JSX.Element;
15
+ export declare const PageHeader: ({ title, subtitle, actions, buttonBack, fixed, }: PageheaderProperties) => React.JSX.Element;
@@ -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;
@@ -9,4 +9,4 @@ export interface ToastBaseProperties {
9
9
  actions?: React.ReactNode;
10
10
  seeMore?: boolean;
11
11
  }
12
- export declare const ToastNotification: (toast: ToastBaseProperties) => JSX.Element;
12
+ export declare const ToastNotification: (toast: ToastBaseProperties) => React.JSX.Element;
@@ -1,2 +1,3 @@
1
1
  import { Components } from "@mui/material";
2
+ import "../../module";
2
3
  export declare const components: Components;
@@ -1,7 +1,16 @@
1
+ /// <reference types="react" />
1
2
  import "@mui/material/Typography";
2
3
  import "@mui/material/Radio";
3
4
  import "@mui/material/Checkbox";
4
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
+ }
5
14
  declare module '@mui/material/Typography' {
6
15
  interface TypographyPropsVariantOverrides {
7
16
  body3: true;
@@ -1,11 +1,3 @@
1
- /// <reference types="react" />
2
- 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
- }
1
+ import { TypographyOptions } from "@mui/material/styles/createTypography";
2
+ import "../../module";
11
3
  export declare const typography: TypographyOptions;
@@ -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
+ }