@nethru/ui 1.0.81 → 1.0.82

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.
@@ -0,0 +1,13 @@
1
+ const blue = {
2
+ 50: 'rgba(54,115,237,0.1)',
3
+ 100: 'rgba(54,115,237,0.2)',
4
+ 200: 'rgba(54,115,237,0.4)',
5
+ 300: 'rgba(54,115,237,0.6)',
6
+ 400: 'rgba(54,115,237,0.8)',
7
+ 500: '#3673ed',
8
+ 600: '#3169d8',
9
+ 700: '#2652a8',
10
+ 800: '#1e3f82',
11
+ 900: '#173064'
12
+ };
13
+ export default blue;
@@ -0,0 +1,6 @@
1
+ const blueGrey = {
2
+ contentBg: '#fcfcfd',
3
+ cnbBg: '#f4f5f5',
4
+ frameBg: '#ecedee'
5
+ };
6
+ export default blueGrey;
@@ -0,0 +1,13 @@
1
+ const green = {
2
+ 50: '#e9f8f1',
3
+ 100: '#bae8d5',
4
+ 200: '#98ddc0',
5
+ 300: '#6acda3',
6
+ 400: '#4dc391',
7
+ 500: '#20b476',
8
+ 600: '#1da46b',
9
+ 700: '#178054',
10
+ 800: '#126341',
11
+ 900: '#0d4c32'
12
+ };
13
+ export default green;
@@ -0,0 +1,18 @@
1
+ const grey = {
2
+ 5: 'rgba(51,51,51,0.05)',
3
+ 7: 'rgba(51,51,51,0.07)',
4
+ 10: 'rgba(51,51,51,0.1)',
5
+ 20: 'rgba(51,51,51,0.2)',
6
+ 50: '#f9f9f9',
7
+ 100: '#efefef',
8
+ 150: '#ebebeb',
9
+ 200: '#e0e0e0',
10
+ 300: '#c7c7c7',
11
+ 400: '#b9b9b9',
12
+ 500: '#9d9d9d',
13
+ 600: '#7b7b7b',
14
+ 700: '#656565',
15
+ 800: '#4e4e4e',
16
+ 900: '#333'
17
+ };
18
+ export default grey;
@@ -0,0 +1,9 @@
1
+ export { default as blue } from './blue';
2
+ export { default as blueGrey } from './blueGrey';
3
+ export { default as green } from './green';
4
+ export { default as grey } from './grey';
5
+ export { default as lime } from './lime';
6
+ export { default as orange } from './orange';
7
+ export { default as purple } from './purple';
8
+ export { default as red } from './red';
9
+ export { default as yellow } from './yellow';
@@ -0,0 +1,13 @@
1
+ const lime = {
2
+ 50: '#f5fce6',
3
+ 100: '#def4b0',
4
+ 200: '#cfef8a',
5
+ 300: '#b9e854',
6
+ 400: '#abe333',
7
+ 500: '#96dc00',
8
+ 600: '#89c800',
9
+ 700: '#6b9c00',
10
+ 800: '#537900',
11
+ 900: '#3f5c00'
12
+ };
13
+ export default lime;
@@ -0,0 +1,13 @@
1
+ const orange = {
2
+ 50: '#fff0ea',
3
+ 100: '#ffd1bd',
4
+ 200: '#ffba9d',
5
+ 300: '#ff9b71',
6
+ 400: '#ff8855',
7
+ 500: '#ff6a2b',
8
+ 600: '#e86027',
9
+ 700: '#b54b1f',
10
+ 800: '#8c3a18',
11
+ 900: '#6b2d12'
12
+ };
13
+ export default orange;
@@ -0,0 +1,13 @@
1
+ const purple = {
2
+ 50: 'rgba(149,77,241,0.1)',
3
+ 100: 'rgba(149,77,241,0.2)',
4
+ 200: 'rgba(149,77,241,0.4)',
5
+ 300: 'rgba(149,77,241,0.6)',
6
+ 400: 'rgba(149,77,241,0.8)',
7
+ 500: '#954df1',
8
+ 600: '#8846db',
9
+ 700: '#6a37ab',
10
+ 800: '#522a85',
11
+ 900: '#3f2065'
12
+ };
13
+ export default purple;
@@ -0,0 +1,13 @@
1
+ const red = {
2
+ 50: '#fde7ed',
3
+ 100: '#fab6c6',
4
+ 200: '#f892ab',
5
+ 300: '#f46184',
6
+ 400: '#f2426d',
7
+ 500: '#ef1348',
8
+ 600: '#d91142',
9
+ 700: '#aa0d33',
10
+ 800: '#830a28',
11
+ 900: '#64081e'
12
+ };
13
+ export default red;
@@ -0,0 +1,13 @@
1
+ const yellow = {
2
+ 50: '#fff6e7',
3
+ 100: '#fde4b4',
4
+ 200: '#fdd78f',
5
+ 300: '#fcc55c',
6
+ 400: '#fbba3d',
7
+ 500: '#faa90c',
8
+ 600: '#e49a0b',
9
+ 700: '#b27809',
10
+ 800: '#8a5d07',
11
+ 900: '#694705'
12
+ };
13
+ export default yellow;
package/dist/index.js CHANGED
@@ -1,3 +1,5 @@
1
+ import * as colors from './colors';
2
+ export { colors };
1
3
  export { default as Accordion } from "./Accordion";
2
4
  export { default as AccordionDetails } from "./AccordionDetails";
3
5
  export { default as AccordionSummary } from "./AccordionSummary";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nethru/ui",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "/dist"
@@ -8,13 +8,14 @@
8
8
  "dependencies": {
9
9
  "@codemirror/lang-javascript": "^6.2.1",
10
10
  "@codemirror/lang-json": "^6.0.1",
11
- "@emotion/react": "^11.11.1",
12
- "@emotion/styled": "^11.11.0",
11
+ "@emotion/react": "^11.11.4",
12
+ "@emotion/styled": "^11.11.5",
13
13
  "@fontsource/roboto": "^5.0.8",
14
14
  "@mui/icons-material": "^5.14.18",
15
- "@mui/material": "^5.14.18",
16
- "@mui/x-data-grid-pro": "^6.19.10",
17
- "@mui/x-date-pickers-pro": "^7.2.0",
15
+ "@mui/material": "^5.15.21",
16
+ "@mui/styled-engine-sc": "^6.0.0-alpha.18",
17
+ "@mui/x-data-grid-pro": "^6.20.3",
18
+ "@mui/x-date-pickers-pro": "^7.8.0",
18
19
  "@mui/x-license": "^7.2.0",
19
20
  "@mui/x-tree-view": "^6.17.0",
20
21
  "@nethru/ui": "^1.0.19",
@@ -22,12 +23,14 @@
22
23
  "@testing-library/react": "^13.4.0",
23
24
  "@testing-library/user-event": "^13.5.0",
24
25
  "@uiw/react-codemirror": "^4.21.21",
26
+ "dayjs": "^1.11.11",
25
27
  "days": "^1.1.1",
26
28
  "immer": "^10.0.3",
27
29
  "react": "^18.2.0",
28
30
  "react-dom": "^18.2.0",
29
31
  "react-router-dom": "^6.20.1",
30
- "react-scripts": "5.0.1"
32
+ "react-scripts": "5.0.1",
33
+ "styled-components": "^6.1.11"
31
34
  },
32
35
  "scripts": {
33
36
  "start": "react-scripts start",