@sinco/react 1.0.15-rc.4 → 1.0.15-rc.40
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.js +1883 -15734
- package/package.json +9 -1
- package/src/lib/Components/Drawer.d.ts +7 -5
- package/src/lib/Components/EmptyState.d.ts +9 -10
- package/src/lib/Components/PageHeader.d.ts +1 -2
- package/src/lib/Components/index.d.ts +4 -5
- package/src/lib/Theme/components.d.ts +5 -5
- package/src/lib/Theme/index.d.ts +1 -0
- package/src/lib/Theme/theme.d.ts +1 -0
- package/src/lib/Utils/svgTransform.d.ts +0 -0
- package/src/lib/Components/Main.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sinco/react",
|
|
3
|
-
"version": "1.0.15-rc.
|
|
3
|
+
"version": "1.0.15-rc.40",
|
|
4
4
|
"description": "package for the configuration of mui react sinco",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,6 +8,14 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/SincosoftSAS/DesignSystem.git"
|
|
10
10
|
},
|
|
11
|
+
"peerDependencies": {
|
|
12
|
+
"react": "^18.2.0",
|
|
13
|
+
"@emotion/react": "^11.11.0",
|
|
14
|
+
"@emotion/styled": "^11.11.0",
|
|
15
|
+
"@mui/icons-material": "^5.14.3",
|
|
16
|
+
"@mui/material": "^5.14.13",
|
|
17
|
+
"@mui/x-data-grid": "^6.6.0"
|
|
18
|
+
},
|
|
11
19
|
"sideEffects": false,
|
|
12
20
|
"module": "./index.js",
|
|
13
21
|
"main": "./index.js",
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import { ReactNode } from
|
|
2
|
-
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
import { SxProps } from "@mui/material";
|
|
3
|
+
export type DrawerPosition = "left" | "right";
|
|
3
4
|
export interface DrawerComponentProperties {
|
|
4
5
|
title: string;
|
|
5
6
|
children: ReactNode;
|
|
6
|
-
|
|
7
|
+
actions: ReactNode;
|
|
7
8
|
showActions?: boolean;
|
|
8
|
-
|
|
9
|
+
anchor?: DrawerPosition;
|
|
9
10
|
width: string;
|
|
10
11
|
open: boolean;
|
|
11
12
|
onClose: () => void;
|
|
13
|
+
sx?: SxProps;
|
|
12
14
|
}
|
|
13
|
-
export declare const DrawerComponent: ({ title, children,
|
|
15
|
+
export declare const DrawerComponent: ({ title, children, actions, showActions, anchor, width, open, onClose, sx, }: DrawerComponentProperties) => JSX.Element;
|
|
@@ -1,15 +1,14 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
2
|
export type EmptyStateStates = 'create' | 'error' | 'noResult' | 'search';
|
|
3
|
-
export declare
|
|
4
|
-
error = "error",
|
|
5
|
-
search = "search",
|
|
6
|
-
noResult = "noResult",
|
|
7
|
-
create = "create"
|
|
8
|
-
}
|
|
3
|
+
export declare const EmptyStateImageUrls: Record<EmptyStateStates, string>;
|
|
9
4
|
export interface EmptyStateProperties {
|
|
5
|
+
icon?: ReactNode;
|
|
10
6
|
state?: EmptyStateStates;
|
|
11
|
-
title
|
|
12
|
-
|
|
7
|
+
title: string;
|
|
8
|
+
subtitle?: string;
|
|
13
9
|
actions?: ReactNode;
|
|
10
|
+
iconStyle?: React.CSSProperties;
|
|
11
|
+
containerHeight?: string;
|
|
14
12
|
}
|
|
15
|
-
export declare const EmptyStateComponent: ({ state, title,
|
|
13
|
+
export declare const EmptyStateComponent: ({ state, title, subtitle, actions, containerHeight, iconStyle, icon, }: EmptyStateProperties) => JSX.Element;
|
|
14
|
+
export { EmptyStateComponent as EmptyState };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
interface PageheaderProperties {
|
|
2
|
+
export interface PageheaderProperties {
|
|
3
3
|
title: string | React.ReactNode;
|
|
4
4
|
subtitle?: string | React.ReactNode;
|
|
5
5
|
actions?: React.ReactNode;
|
|
@@ -7,4 +7,3 @@ interface PageheaderProperties {
|
|
|
7
7
|
fixed?: boolean;
|
|
8
8
|
}
|
|
9
9
|
export declare const PageHeaderComponent: ({ title, subtitle, actions, buttonBack, fixed, }: PageheaderProperties) => JSX.Element;
|
|
10
|
-
export {};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from './PageHeader';
|
|
1
|
+
export * from "./EmptyState";
|
|
2
|
+
export * from "./Drawer";
|
|
3
|
+
export * from "./FooterAction";
|
|
4
|
+
export * from "./PageHeader";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Components } from
|
|
2
|
-
declare module
|
|
3
|
-
interface
|
|
4
|
-
|
|
1
|
+
import { Components } from "@mui/material";
|
|
2
|
+
declare module "@mui/material/Radio" {
|
|
3
|
+
interface RadioPropsSizeOverrides {
|
|
4
|
+
large: true;
|
|
5
5
|
}
|
|
6
6
|
}
|
|
7
7
|
declare module "@mui/material/Checkbox" {
|
|
8
8
|
interface CheckboxPropsSizeOverrides {
|
|
9
|
-
|
|
9
|
+
large: true;
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
export declare const components: Components;
|
package/src/lib/Theme/index.d.ts
CHANGED
package/src/lib/Theme/theme.d.ts
CHANGED
|
File without changes
|