@opengeoweb/theme 2.0.0 → 2.1.2
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/README.md +459 -63
- package/index.d.ts +1 -1
- package/lib/components/Theme/ThemeContext.d.ts +17 -0
- package/{theme.test.d.ts → lib/components/Theme/ThemeContext.spec.d.ts} +1 -1
- package/lib/components/Theme/darkTheme.d.ts +3 -0
- package/{theme.d.ts → lib/components/Theme/gwTheme.d.ts} +7 -7
- package/lib/components/Theme/index.d.ts +5 -0
- package/lib/components/Theme/lightTheme.d.ts +3 -0
- package/lib/components/Theme/types.d.ts +121 -0
- package/lib/components/Theme/utils.d.ts +7 -0
- package/lib/components/Theme/utils.spec.d.ts +1 -0
- package/lib/stories/Backdrop.stories.d.ts +7 -0
- package/lib/stories/Card.stories.d.ts +3 -0
- package/lib/stories/Colors.stories.d.ts +7 -0
- package/lib/stories/Elevation.stories.d.ts +3 -0
- package/lib/stories/FormElements.stories.d.ts +4 -0
- package/lib/stories/List.stories.d.ts +3 -0
- package/lib/stories/Slider.stories.d.ts +3 -0
- package/lib/stories/StoryWrapper.d.ts +9 -0
- package/lib/stories/Table.stories.d.ts +3 -0
- package/lib/stories/Tabs.stories.d.ts +8 -0
- package/lib/stories/Tooltip.stories.d.ts +3 -0
- package/lib/stories/Typography.stories.d.ts +4 -0
- package/lib/stories/index.stories.d.ts +15 -0
- package/lib/stories/snapshots/Backdrop.stories.d.ts +17 -0
- package/lib/stories/snapshots/Card.stories.d.ts +17 -0
- package/lib/stories/snapshots/Colors.stories.d.ts +17 -0
- package/lib/stories/snapshots/Elevation.stories.d.ts +17 -0
- package/lib/stories/snapshots/FormElements.stories.d.ts +7 -0
- package/lib/stories/snapshots/List.stories.d.ts +7 -0
- package/lib/stories/snapshots/Slider.stories.d.ts +7 -0
- package/lib/stories/snapshots/Table.stories.d.ts +17 -0
- package/lib/stories/snapshots/Tabs.stories.d.ts +7 -0
- package/lib/stories/snapshots/Tooltip.stories.d.ts +17 -0
- package/lib/stories/snapshots/Typography.stories.d.ts +7 -0
- package/lib/storyshots/Storyshots.spec.d.ts +1 -0
- package/package.json +11 -121
- package/theme.esm.js +1247 -0
- package/theme.umd.js +1226 -0
- package/AUTHORS +0 -14
- package/LICENCE +0 -13
- package/index.js +0 -13
- package/theme.js +0 -206
- package/theme.stories.d.ts +0 -7
- package/theme.stories.js +0 -255
- package/theme.test.js +0 -44
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface CSSProperties extends React.CSSProperties {
|
|
3
|
+
rgba?: string;
|
|
4
|
+
}
|
|
5
|
+
export declare type GeowebColorPalette = {
|
|
6
|
+
background: {
|
|
7
|
+
surface: CSSProperties['color'];
|
|
8
|
+
surfaceApp: CSSProperties['color'];
|
|
9
|
+
surfaceBrowser: CSSProperties['color'];
|
|
10
|
+
};
|
|
11
|
+
brand: {
|
|
12
|
+
brand: CSSProperties['color'];
|
|
13
|
+
};
|
|
14
|
+
buttons: {
|
|
15
|
+
primary: CSSProperties;
|
|
16
|
+
primaryMouseover: CSSProperties;
|
|
17
|
+
primaryActive: CSSProperties;
|
|
18
|
+
flatMouseover: CSSProperties;
|
|
19
|
+
focusDefault: CSSProperties;
|
|
20
|
+
disabled: CSSProperties;
|
|
21
|
+
surfaceIconDefault: CSSProperties;
|
|
22
|
+
};
|
|
23
|
+
typographyAndIcons: {
|
|
24
|
+
text: CSSProperties['color'];
|
|
25
|
+
icon: CSSProperties['color'];
|
|
26
|
+
buttonIcon: CSSProperties['color'];
|
|
27
|
+
iconLinkActive: CSSProperties['color'];
|
|
28
|
+
iconLinkDisabled: CSSProperties['color'];
|
|
29
|
+
textLinkActive: CSSProperties['color'];
|
|
30
|
+
buttonIconTertiaryFlat: CSSProperties['color'];
|
|
31
|
+
};
|
|
32
|
+
textInputField: {
|
|
33
|
+
default: CSSProperties;
|
|
34
|
+
active: CSSProperties;
|
|
35
|
+
disabled: CSSProperties;
|
|
36
|
+
};
|
|
37
|
+
tab: {
|
|
38
|
+
mouseOver: CSSProperties;
|
|
39
|
+
};
|
|
40
|
+
greys: {
|
|
41
|
+
accessible: CSSProperties['color'];
|
|
42
|
+
};
|
|
43
|
+
cards: {
|
|
44
|
+
cardContainer: CSSProperties['color'];
|
|
45
|
+
cardContainerBorder?: CSSProperties['color'];
|
|
46
|
+
};
|
|
47
|
+
backdrops: {
|
|
48
|
+
black: CSSProperties;
|
|
49
|
+
white: CSSProperties;
|
|
50
|
+
};
|
|
51
|
+
timeSlider: {
|
|
52
|
+
playerNeedleTimeTop: CSSProperties;
|
|
53
|
+
playerNeedleTime: CSSProperties;
|
|
54
|
+
playerNeedlePlayerTop: CSSProperties;
|
|
55
|
+
playerNeedlePlayer: CSSProperties;
|
|
56
|
+
playerRailObservation: CSSProperties;
|
|
57
|
+
playerRailSelection: CSSProperties;
|
|
58
|
+
playerRailForecastData: CSSProperties;
|
|
59
|
+
playerRailForecastNoData: CSSProperties;
|
|
60
|
+
playerTimeMarkers: CSSProperties;
|
|
61
|
+
playerTimeText: CSSProperties;
|
|
62
|
+
timelineIndicator: CSSProperties;
|
|
63
|
+
timelineText: CSSProperties;
|
|
64
|
+
timelineTimeScale: CSSProperties;
|
|
65
|
+
timelineNightTime: CSSProperties;
|
|
66
|
+
timelineTimelineSurface: CSSProperties;
|
|
67
|
+
timelineMonthChangeDash: CSSProperties;
|
|
68
|
+
timeScaleText: CSSProperties;
|
|
69
|
+
timeScalePointer: CSSProperties;
|
|
70
|
+
timeScaleHorizontalScale: CSSProperties;
|
|
71
|
+
timeScaleTimeIndicators: CSSProperties;
|
|
72
|
+
timeScaleTimeIndicatorsActive: CSSProperties;
|
|
73
|
+
timeScaleShadowButtonScale: CSSProperties;
|
|
74
|
+
};
|
|
75
|
+
customSlider: {
|
|
76
|
+
rail: CSSProperties['color'];
|
|
77
|
+
railDisabled: CSSProperties['color'];
|
|
78
|
+
track: CSSProperties['color'];
|
|
79
|
+
trackDisabled: CSSProperties['color'];
|
|
80
|
+
thumb: CSSProperties['color'];
|
|
81
|
+
thumbDisabled: CSSProperties['color'];
|
|
82
|
+
mark: CSSProperties['color'];
|
|
83
|
+
markDisabled: CSSProperties['color'];
|
|
84
|
+
switchTrack: CSSProperties['color'];
|
|
85
|
+
switchTrackDisabled: CSSProperties['color'];
|
|
86
|
+
};
|
|
87
|
+
syncGroups: {
|
|
88
|
+
drawerOpen: CSSProperties;
|
|
89
|
+
};
|
|
90
|
+
layerManager: {
|
|
91
|
+
tableRowDefaultIcon: CSSProperties;
|
|
92
|
+
tableRowDefaultText: CSSProperties;
|
|
93
|
+
tableRowDefaultCardContainer: CSSProperties;
|
|
94
|
+
tableRowMouseover: CSSProperties;
|
|
95
|
+
tableRowDisabledIcon: CSSProperties;
|
|
96
|
+
tableRowDisabledText: CSSProperties;
|
|
97
|
+
tableRowDisabledCardContainer: CSSProperties;
|
|
98
|
+
};
|
|
99
|
+
tooltips: {
|
|
100
|
+
tooltipContainer: CSSProperties;
|
|
101
|
+
tooltipText: CSSProperties;
|
|
102
|
+
};
|
|
103
|
+
captions: {
|
|
104
|
+
captionStatus: CSSProperties;
|
|
105
|
+
captionInformation: CSSProperties;
|
|
106
|
+
captionError: CSSProperties;
|
|
107
|
+
captionDisabled: CSSProperties;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
export declare type Elevations = {
|
|
111
|
+
[id: string]: string;
|
|
112
|
+
};
|
|
113
|
+
declare module '@material-ui/core/styles/createPalette' {
|
|
114
|
+
interface Palette {
|
|
115
|
+
geowebColors: GeowebColorPalette;
|
|
116
|
+
}
|
|
117
|
+
interface PaletteOptions {
|
|
118
|
+
geowebColors: GeowebColorPalette;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Theme, PaletteType } from '@material-ui/core';
|
|
2
|
+
import { Shadows } from '@material-ui/core/styles/shadows';
|
|
3
|
+
import { Elevations, GeowebColorPalette } from './types';
|
|
4
|
+
export declare const hex2rgba: (hex: string, alpha?: number) => string;
|
|
5
|
+
export declare const parseColors: (colors: GeowebColorPalette) => GeowebColorPalette;
|
|
6
|
+
export declare const createShadows: (elevations: Elevations) => Shadows;
|
|
7
|
+
export declare const createTheme: (paletteType: PaletteType, geowebColors: GeowebColorPalette, shadows: Shadows) => Theme;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export { Backdrop } from './Backdrop.stories';
|
|
2
|
+
export { Cards } from './Card.stories';
|
|
3
|
+
export { Colors } from './Colors.stories';
|
|
4
|
+
export { Elevation } from './Elevation.stories';
|
|
5
|
+
export { List } from './List.stories';
|
|
6
|
+
export { Slider } from './Slider.stories';
|
|
7
|
+
export { Table } from './Table.stories';
|
|
8
|
+
export { Tabs } from './Tabs.stories';
|
|
9
|
+
export { Typography, TypographyGWTheme } from './Typography.stories';
|
|
10
|
+
export { Tooltips } from './Tooltip.stories';
|
|
11
|
+
export { FormElementsGWTheme, FormElements } from './FormElements.stories';
|
|
12
|
+
declare const _default: {
|
|
13
|
+
title: string;
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const BackDropLight: {
|
|
7
|
+
(): React.ReactElement;
|
|
8
|
+
parameters: {
|
|
9
|
+
layout: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const BackDropDark: {
|
|
13
|
+
(): React.ReactElement;
|
|
14
|
+
parameters: {
|
|
15
|
+
layout: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const CardLight: {
|
|
7
|
+
(): React.ReactElement;
|
|
8
|
+
parameters: {
|
|
9
|
+
layout: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const CardDark: {
|
|
13
|
+
(): React.ReactElement;
|
|
14
|
+
parameters: {
|
|
15
|
+
layout: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const ColorsLight: {
|
|
7
|
+
(): React.ReactElement;
|
|
8
|
+
parameters: {
|
|
9
|
+
layout: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const ColorsDark: {
|
|
13
|
+
(): React.ReactElement;
|
|
14
|
+
parameters: {
|
|
15
|
+
layout: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const ElevationLight: {
|
|
7
|
+
(): React.ReactElement;
|
|
8
|
+
parameters: {
|
|
9
|
+
layout: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const ElevationDark: {
|
|
13
|
+
(): React.ReactElement;
|
|
14
|
+
parameters: {
|
|
15
|
+
layout: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const TableLight: {
|
|
7
|
+
(): React.ReactElement;
|
|
8
|
+
parameters: {
|
|
9
|
+
layout: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const TableDark: {
|
|
13
|
+
(): React.ReactElement;
|
|
14
|
+
parameters: {
|
|
15
|
+
layout: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const TooltipDemoLight: {
|
|
7
|
+
(): React.ReactElement;
|
|
8
|
+
parameters: {
|
|
9
|
+
layout: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const TooltipDemoDark: {
|
|
13
|
+
(): React.ReactElement;
|
|
14
|
+
parameters: {
|
|
15
|
+
layout: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,130 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/theme",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "GeoWeb Theme library for the opengeoweb project",
|
|
5
|
+
"license": "Apache-2.0",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
7
|
-
"url": "git@gitlab.com:opengeoweb/
|
|
8
|
+
"url": "git@gitlab.com:opengeoweb/opengeoweb.git"
|
|
8
9
|
},
|
|
9
|
-
"
|
|
10
|
-
"module": "./
|
|
11
|
-
"
|
|
12
|
-
"dependencies": {
|
|
13
|
-
|
|
14
|
-
"@material-ui/
|
|
10
|
+
"main": "./theme.umd.js",
|
|
11
|
+
"module": "./theme.esm.js",
|
|
12
|
+
"typings": "./index.d.ts",
|
|
13
|
+
"dependencies": {},
|
|
14
|
+
"peerDependencies": {
|
|
15
|
+
"@material-ui/core": "^4.11.0",
|
|
15
16
|
"@material-ui/lab": "^4.0.0-alpha.56",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"react": "^16.9.0",
|
|
19
|
-
"react-dom": "^16.9.0"
|
|
20
|
-
},
|
|
21
|
-
"resolutions": {
|
|
22
|
-
"minimist": "1.2.5"
|
|
23
|
-
},
|
|
24
|
-
"license": "Apache-2.0",
|
|
25
|
-
"scripts": {
|
|
26
|
-
"build": "npm run babel",
|
|
27
|
-
"clean": "rm -rf dist lib node_modules",
|
|
28
|
-
"storybook": "start-storybook -p 6006",
|
|
29
|
-
"build-storybook": "build-storybook -c .storybook -o storybook-opengeoweb-theme",
|
|
30
|
-
"test": "jest",
|
|
31
|
-
"test:coverage": "jest --coverage",
|
|
32
|
-
"prettier": "prettier 'src/**/*.+(js|jsx|ts|tsx)' 'stories/**/*.+(js|jsx|ts|tsx)' --check",
|
|
33
|
-
"prettier:fix": "prettier 'src/**/*.+(js|jsx|ts|tsx)' 'stories/**/*.+(js|jsx|ts|tsx)' --write",
|
|
34
|
-
"lint": "eslint '*/**/*.{ts,tsx,js,jsx}'",
|
|
35
|
-
"lint:fix": "eslint '*/**/*.{ts,tsx,js,jsx}' --fix",
|
|
36
|
-
"typecheck": "tsc",
|
|
37
|
-
"docs": "typedoc --out docs src",
|
|
38
|
-
"generate-types-internal": "tsc --project tsconfig.d.json --outDir ./lib",
|
|
39
|
-
"generate-types": "rm -rf ./lib && npm run generate-types-internal",
|
|
40
|
-
"babel": "rm -rf lib && babel src --out-dir lib --extensions '.ts,.tsx,.js,.jsx' && cp package.json LICENCE AUTHORS README.md lib",
|
|
41
|
-
"webpack": "webpack --mode development --display-modules",
|
|
42
|
-
"package": "npm run babel && npm run generate-types-internal && npm pack ./lib",
|
|
43
|
-
"prepublishOnly": "npm ci && npm run babel && npm run generate-types-internal && npm pack ./lib",
|
|
44
|
-
"publish": "npm publish ./lib --access public",
|
|
45
|
-
"licence:check": "license-check-and-add check -f './licence.config.json'",
|
|
46
|
-
"licence:add": "license-check-and-add add -f './licence.config.json'",
|
|
47
|
-
"licence:remove": "license-check-and-add remove -f './licence.config.json'",
|
|
48
|
-
"postversion": "git push --tags && git push"
|
|
49
|
-
},
|
|
50
|
-
"_eslintConfig": {
|
|
51
|
-
"extends": "react-app"
|
|
52
|
-
},
|
|
53
|
-
"browserslist": {
|
|
54
|
-
"production": [
|
|
55
|
-
">0.2%",
|
|
56
|
-
"not dead",
|
|
57
|
-
"not op_mini all"
|
|
58
|
-
],
|
|
59
|
-
"development": [
|
|
60
|
-
"last 1 chrome version",
|
|
61
|
-
"last 1 firefox version",
|
|
62
|
-
"last 1 safari version"
|
|
63
|
-
]
|
|
64
|
-
},
|
|
65
|
-
"devDependencies": {
|
|
66
|
-
"@babel/cli": "^7.8.4",
|
|
67
|
-
"@babel/core": "^7.8.4",
|
|
68
|
-
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
69
|
-
"@babel/polyfill": "^7.0.0",
|
|
70
|
-
"@babel/preset-env": "^7.0.0",
|
|
71
|
-
"@babel/preset-react": "^7.0.0",
|
|
72
|
-
"@babel/preset-typescript": "^7.10.4",
|
|
73
|
-
"@babel/register": "^7.6.2",
|
|
74
|
-
"@storybook/addon-actions": "^6.0.21",
|
|
75
|
-
"@storybook/addon-console": "^1.2.1",
|
|
76
|
-
"@storybook/addon-jest": "^6.0.21",
|
|
77
|
-
"@storybook/addon-links": "^6.0.21",
|
|
78
|
-
"@storybook/addon-storyshots": "^6.0.21",
|
|
79
|
-
"@storybook/addon-storysource": "^6.0.21",
|
|
80
|
-
"@storybook/addons": "^6.0.21",
|
|
81
|
-
"@storybook/react": "^6.0.21",
|
|
82
|
-
"@testing-library/react": "^10.4.5",
|
|
83
|
-
"@testing-library/react-hooks": "^3.3.0",
|
|
84
|
-
"@types/jest": "^25.2.3",
|
|
85
|
-
"@types/node": "12.7.1",
|
|
86
|
-
"@types/react": "^16.9.21",
|
|
87
|
-
"@types/react-dom": "16.8.5",
|
|
88
|
-
"@typescript-eslint/eslint-plugin": "^2.18.0",
|
|
89
|
-
"@typescript-eslint/parser": "^2.18.0",
|
|
90
|
-
"autoprefixer": "latest",
|
|
91
|
-
"awesome-typescript-loader": "^5.2.1",
|
|
92
|
-
"babel-core": "^7.0.0-bridge.0",
|
|
93
|
-
"babel-eslint": "^10.0.3",
|
|
94
|
-
"babel-loader": "^8.0.6",
|
|
95
|
-
"babel-polyfill": "^6.26.0",
|
|
96
|
-
"babel-register": "^6.26.0",
|
|
97
|
-
"copy-webpack-plugin": "^6.0.4",
|
|
98
|
-
"enzyme": "^3.11.0",
|
|
99
|
-
"enzyme-adapter-react-16": "^1.15.2",
|
|
100
|
-
"enzyme-to-json": "^3.4.3",
|
|
101
|
-
"eslint": "^6.8.0",
|
|
102
|
-
"eslint-config-airbnb": "^18.0.1",
|
|
103
|
-
"eslint-config-airbnb-typescript": "^6.3.1",
|
|
104
|
-
"eslint-config-prettier": "^6.10.0",
|
|
105
|
-
"eslint-plugin-import": "^2.20.1",
|
|
106
|
-
"eslint-plugin-jest": "^23.6.0",
|
|
107
|
-
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
108
|
-
"eslint-plugin-prettier": "^3.1.2",
|
|
109
|
-
"eslint-plugin-react": "^7.18.3",
|
|
110
|
-
"eslint-plugin-react-hooks": "^1.7.0",
|
|
111
|
-
"eslint-plugin-testing-library": "^3.3.1",
|
|
112
|
-
"file-loader": "^6.0.0",
|
|
113
|
-
"html-loader": "^0.5.5",
|
|
114
|
-
"jest": "^25.1.0",
|
|
115
|
-
"jest-css-modules": "^2.1.0",
|
|
116
|
-
"license-check-and-add": "^3.0.4",
|
|
117
|
-
"mini-css-extract-plugin": "^0.9.0",
|
|
118
|
-
"node-sass": "^4.12.0",
|
|
119
|
-
"prettier": "^1.19.1",
|
|
120
|
-
"react-docgen-typescript-loader": "^3.3.0",
|
|
121
|
-
"regenerator-runtime": "^0.13.3",
|
|
122
|
-
"require-context.macro": "^1.2.2",
|
|
123
|
-
"typedoc": "^0.16.11",
|
|
124
|
-
"typescript": "^3.7.5",
|
|
125
|
-
"webpack": "^4.41.5",
|
|
126
|
-
"webpack-cli": "^3.3.10",
|
|
127
|
-
"webpack-dev-server": "^3.10.1",
|
|
128
|
-
"webpack-node-externals": "^1.7.2"
|
|
17
|
+
"react": "16.14.0",
|
|
18
|
+
"@material-ui/icons": "^4.9.1"
|
|
129
19
|
}
|
|
130
20
|
}
|