redux-connected-devtools 1.0.0 → 1.0.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redux-connected-devtools",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "redux-connected-devtools",
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -23,11 +23,11 @@
23
23
  "dotenv-flow": "^3.2.0",
24
24
  "react-redux": "^7.2.6",
25
25
  "react-window": "^1.8.8",
26
- "redux-connected": "^0.0.101",
27
- "redux-store-generator": "^0.9.86",
26
+ "redux-connected": "^0.0.103",
27
+ "redux-store-generator": "^0.9.89",
28
28
  "reselect": "^4.1.5",
29
29
  "rollup-plugin-analyzer": "^4.0.0",
30
- "shared-base": "^0.0.16",
30
+ "shared-base": "^0.0.27",
31
31
  "styled-components": "^5.3.3",
32
32
  "tslib": "^2.3.1"
33
33
  },
@@ -18,16 +18,19 @@ export const MenuGroupTitle = styled.div`
18
18
  background-color: rgba(0, 0, 0, 0.1);
19
19
  `;
20
20
 
21
- export const MenuItem = styled.div<{ selected: boolean }>`
21
+ export const MenuItem = styled.div`
22
22
  display: flex;
23
23
  flex-direction: row;
24
24
  align-items: center;
25
25
  padding: 6px 10px;
26
26
  font-size: 14px;
27
- color: ${(props) =>
28
- props.selected ? 'gold' : 'rgba(255, 255, 255, 0.89)'};
29
- background-color: ${(props) =>
30
- props.selected ? 'rgba(255, 255, 255, 0.05)' : 'transparent'};
27
+ color: rgba(255, 255, 255, 0.89);
28
+ background-color: transparent;
29
+
30
+ &.selected {
31
+ color: gold;
32
+ background-color: rgba(255, 255, 255, 0.05);
33
+ }
31
34
 
32
35
  &:hover {
33
36
  background-color: rgba(255, 255, 255, 0.1);
package/.depcheck DELETED
@@ -1,20 +0,0 @@
1
- Unused dependencies
2
- * @redux-devtools/extension
3
- * dotenv-flow
4
- * redux-store-generator
5
- * tslib
6
- Unused devDependencies
7
- * @types/chrome
8
- * glob
9
- * ts-loader
10
- * vite-plugin-react-svg
11
- * vite-tsconfig-paths
12
- * webpack-cli
13
- Missing dependencies
14
- * vite-plugin-dts: ./vite.config.ts
15
- * rollup-plugin-analyzer: ./vite.config.ts
16
- * shared-base: ./vite.config.ts
17
- * lodash: ./src/hooks/useStoreSize.ts
18
- * bytes: ./src/components/Size/Size.tsx
19
- * classnames: ./src/components/DevtoolsApp/DevtoolsApp.tsx
20
- * react-window: ./src/components/DevList/DevList.tsx
@@ -1,12 +0,0 @@
1
- {
2
- "typescript.tsdk": "./node_modules/typescript/lib",
3
- "files.eol": "\n",
4
- "json.schemas": [
5
- {
6
- "fileMatch": [
7
- "/manifest.json"
8
- ],
9
- "url": "http://json.schemastore.org/chrome-manifest"
10
- }
11
- ]
12
- }
@@ -1,33 +0,0 @@
1
- {
2
- // See https://go.microsoft.com/fwlink/?LinkId=733558
3
- // for the documentation about the tasks.json format
4
- "version": "2.0.0",
5
- "command": "npm",
6
- "tasks": [
7
- {
8
- "label": "install",
9
- "type": "shell",
10
- "command": "npm",
11
- "args": ["install"]
12
- },
13
- {
14
- "label": "update",
15
- "type": "shell",
16
- "command": "npm",
17
- "args": ["update"]
18
- },
19
- {
20
- "label": "test",
21
- "type": "shell",
22
- "command": "npm",
23
- "args": ["run", "test"]
24
- },
25
- {
26
- "label": "build",
27
- "type": "shell",
28
- "group": "build",
29
- "command": "npm",
30
- "args": ["run", "watch"]
31
- }
32
- ]
33
- }