@mxenabled/mxui 1.0.3-alpha.JB0 → 1.0.3

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.
@@ -32,77 +32,112 @@ interface ColorsTypes {
32
32
  Warning500: '#C33E01';
33
33
  White: '#FFFFFF';
34
34
  }
35
- export declare const BASE_COLORS: ColorsTypes;
36
- export interface ClientColorProfile {
37
- primary?: {
38
- 100: string;
39
- 200: string;
40
- 300: string;
41
- 400: string;
42
- 500: string;
43
- };
44
- secondary?: {
45
- 100: string;
46
- 200: string;
47
- 300: string;
48
- 400: string;
49
- 500: string;
50
- };
51
- error?: {
52
- 100: string;
53
- 200: string;
54
- 300: string;
55
- 400: string;
56
- 500: string;
57
- };
58
- warning?: {
59
- 100: string;
60
- 200: string;
61
- 300: string;
62
- 400: string;
63
- 500: string;
64
- };
65
- success?: {
66
- 100: string;
67
- 150: string;
68
- 200: string;
69
- 300: string;
70
- 400: string;
71
- 500: string;
72
- };
73
- }
74
- export declare const GET_COLORS_WITH_CLIENT_COLOR_PROFILE: (clientColorProfile?: ClientColorProfile) => {
75
- Success500: string;
76
- Success400: string;
77
- Success300: string;
78
- Success200: string;
79
- Success150: string;
80
- Success100: string;
81
- Warning500: string;
82
- Warning400: string;
83
- Warning300: string;
84
- Warning200: string;
85
- Warning100: string;
86
- Error500: string;
87
- Error400: string;
88
- Error300: string;
89
- Error200: string;
90
- Error100: string;
91
- Neutral900: string;
92
- Neutral800: string;
93
- Neutral700: string;
94
- Neutral600: string;
95
- Neutral500: string;
96
- Primary500: string;
97
- Primary400: string;
98
- Primary300: string;
99
- Primary200: string;
100
- Primary100: string;
101
- Black: "#000000";
102
- Neutral100: "#F8F9FB";
103
- Neutral200: "#EEF1F6";
104
- Neutral300: "#E4E8EE";
105
- Neutral400: "#CDD3DD";
106
- White: "#FFFFFF";
35
+ export declare const COLORS: ColorsTypes;
36
+ export declare const gray: {
37
+ White: string;
38
+ 50: string;
39
+ 100: string;
40
+ 200: string;
41
+ 300: string;
42
+ 400: string;
43
+ 500: string;
44
+ 600: string;
45
+ 700: string;
46
+ 800: string;
47
+ 900: string;
48
+ Black: string;
49
+ };
50
+ export declare const red: {
51
+ 50: string;
52
+ 100: string;
53
+ 200: string;
54
+ 300: string;
55
+ 400: string;
56
+ 500: string;
57
+ 600: string;
58
+ 700: string;
59
+ 800: string;
60
+ 900: string;
61
+ };
62
+ export declare const orange: {
63
+ 50: string;
64
+ 100: string;
65
+ 200: string;
66
+ 300: string;
67
+ 400: string;
68
+ 500: string;
69
+ 600: string;
70
+ 700: string;
71
+ 800: string;
72
+ 900: string;
73
+ };
74
+ export declare const yellow: {
75
+ 50: string;
76
+ 100: string;
77
+ 200: string;
78
+ 300: string;
79
+ 400: string;
80
+ 500: string;
81
+ 600: string;
82
+ 700: string;
83
+ 800: string;
84
+ 900: string;
85
+ };
86
+ export declare const green: {
87
+ 50: string;
88
+ 100: string;
89
+ 200: string;
90
+ 300: string;
91
+ 400: string;
92
+ 500: string;
93
+ 600: string;
94
+ 700: string;
95
+ 800: string;
96
+ 900: string;
97
+ };
98
+ export declare const blue: {
99
+ 50: string;
100
+ 100: string;
101
+ 200: string;
102
+ 300: string;
103
+ 400: string;
104
+ 500: string;
105
+ 600: string;
106
+ 700: string;
107
+ 800: string;
108
+ 900: string;
109
+ };
110
+ export declare const purple: {
111
+ 50: string;
112
+ 100: string;
113
+ 200: string;
114
+ 300: string;
115
+ 400: string;
116
+ 500: string;
117
+ 600: string;
118
+ 700: string;
119
+ 800: string;
120
+ 900: string;
121
+ };
122
+ export declare const pink: {
123
+ 50: string;
124
+ 100: string;
125
+ 200: string;
126
+ 300: string;
127
+ 400: string;
128
+ 500: string;
129
+ 600: string;
130
+ 700: string;
131
+ 800: string;
132
+ 900: string;
133
+ };
134
+ export declare const chart: {
135
+ 1: string;
136
+ 2: string;
137
+ 3: string;
138
+ 4: string;
139
+ 5: string;
140
+ 6: string;
141
+ 7: string;
107
142
  };
108
143
  export {};
@@ -1,3 +1,2 @@
1
1
  import { PaletteMode } from '@mui/material';
2
- import { ClientColorProfile } from './Colors';
3
- export declare const createMXTheme: (mode: PaletteMode, clientColorProfile?: Partial<ClientColorProfile>) => import('@mui/material').Theme;
2
+ export declare const createMXTheme: (mode: PaletteMode) => import('@mui/material').Theme;
@@ -1,3 +1,2 @@
1
1
  import { PaletteMode } from '@mui/material';
2
- import { ClientColorProfile } from './Colors';
3
- export declare const getPalette: (mode: PaletteMode, clientColorProfile?: Partial<ClientColorProfile>) => import('@mui/material').Palette;
2
+ export declare const getPalette: (mode: PaletteMode) => import('@mui/material').Palette;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mxenabled/mxui",
3
- "version": "1.0.3-alpha.JB0",
3
+ "version": "1.0.3",
4
4
  "description": "Package containing MX theme and common controls for MUI",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",