@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.
- package/dist/colors/blue.js +13 -0
- package/dist/colors/blueGrey.js +6 -0
- package/dist/colors/green.js +13 -0
- package/dist/colors/grey.js +18 -0
- package/dist/colors/index.js +9 -0
- package/dist/colors/lime.js +13 -0
- package/dist/colors/orange.js +13 -0
- package/dist/colors/purple.js +13 -0
- package/dist/colors/red.js +13 -0
- package/dist/colors/yellow.js +13 -0
- package/dist/index.js +2 -0
- package/package.json +10 -7
|
@@ -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,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 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;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nethru/ui",
|
|
3
|
-
"version": "1.0.
|
|
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.
|
|
12
|
-
"@emotion/styled": "^11.11.
|
|
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.
|
|
16
|
-
"@mui/
|
|
17
|
-
"@mui/x-
|
|
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",
|