@sinco/react 0.0.0-rc.0

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/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@sinco/react",
3
+ "version": "0.0.0-rc.0",
4
+ "description": "package for the configuration of mui react sinco",
5
+ "private": false,
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/SincosoftSAS/DesignSystem.git"
10
+ },
11
+ "sideEffects": false,
12
+ "module": "./index.js",
13
+ "main": "./index.js",
14
+ "type": "module",
15
+ "types": "./src\\index.d.ts"
16
+ }
package/src/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './lib/bitakoraTheme';
@@ -0,0 +1 @@
1
+ export declare const BitakoraTheme: import("@mui/material/styles").Theme;
@@ -0,0 +1,2 @@
1
+ import { PaletteOptions } from '@mui/material';
2
+ export declare const palette: PaletteOptions;
@@ -0,0 +1,2 @@
1
+ import { Shadows } from '@mui/material/styles/shadows';
2
+ export declare const shadows: Shadows;
@@ -0,0 +1,2 @@
1
+ import { ThemeOptions } from '@mui/material';
2
+ export declare const light: ThemeOptions;
@@ -0,0 +1,2 @@
1
+ import { TypographyOptions } from '@mui/material/styles/createTypography';
2
+ export declare const typography: TypographyOptions;