Skip to content

Commit 61e603f

Browse files
authored
feat: extension v1.0.7 (#315)
1 parent e9a3a8a commit 61e603f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+703
-1133
lines changed

biome.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"linter": {
2424
"enabled": true,
2525
"rules": {
26-
"recommended": false,
26+
"recommended": true,
2727
"correctness": {
2828
"noUnusedFunctionParameters": {
2929
"level": "warn",

packages/extension/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ pnpm pack:all
6464
```
6565

6666
This will create:
67-
- `chrome-extension-v1.0.5.zip`
68-
- `firefox-extension-v1.0.5.zip`
69-
- `brave-extension-v1.0.5.zip`
67+
- `chrome-extension-v1.0.7.zip`
68+
- `firefox-extension-v1.0.7.zip`
69+
- `brave-extension-v1.0.7.zip`
7070

7171
in the `build` directory.

packages/extension/build-worker.mjs

-44
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

packages/extension/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-scan/extension",
3-
"version": "1.0.5",
3+
"version": "1.0.7",
44
"private": true,
55
"type": "module",
66
"scripts": {
@@ -22,7 +22,8 @@
2222
"typecheck": "tsc --noEmit"
2323
},
2424
"dependencies": {
25-
"@pivanov/utils": "^0.0.1",
25+
"@pivanov/utils": "0.0.2",
26+
"bippy": "0.2.7",
2627
"react": "^18.2.0",
2728
"react-dom": "^18.2.0",
2829
"react-scan": "workspace:*",
@@ -35,7 +36,6 @@
3536
"@types/webextension-polyfill": "^0.10.0",
3637
"@vitejs/plugin-react": "^4.2.1",
3738
"bestzip": "^2.2.1",
38-
"bippy": "0.2.7",
3939
"cross-env": "^7.0.3",
4040
"vite": "^6.0.7",
4141
"vite-plugin-web-extension": "^4.4.3",
-42.1 KB
Binary file not shown.

packages/extension/public/icon/16.png

-702 Bytes
Binary file not shown.

packages/extension/public/icon/32.png

-1.68 KB
Binary file not shown.

packages/extension/public/icon/48.png

-2.92 KB
Binary file not shown.

packages/extension/public/icon/96.png

-6.75 KB
Binary file not shown.
Binary file not shown.

packages/extension/public/icon/icon.svg

-16
This file was deleted.

packages/extension/public/icon/logo-animated.svg

-23
This file was deleted.
6.34 KB
Loading
725 Bytes
Loading
1.58 KB
Loading
2.66 KB
Loading
5.74 KB
Loading
631 Bytes
Loading
1.37 KB
Loading
2.29 KB
Loading

packages/extension/src/assets/css/no-react.css

+4-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ html.freeze #react-scan-toast {
3232
top: 50%;
3333
left: 50%;
3434
display: flex;
35-
padding: 14px 40px 14px 20px;
35+
padding: 12px 40px 12px 16px;
3636
min-width: 320px;
3737
max-width: 480px;
3838
color: #fff;
@@ -50,13 +50,14 @@ html.freeze #react-scan-toast {
5050

5151
#react-scan-toast .icon {
5252
font-size: .75rem;
53+
margin-right: 8px;
5354
}
5455

5556
@media (max-width: 320px) {
5657
#react-scan-toast {
5758
flex-direction: column;
5859
min-width: auto;
59-
width: calc(100% - 32px);
60+
width: calc(100% - 36px);
6061
}
6162
}
6263

@@ -68,7 +69,7 @@ html.freeze #react-scan-toast {
6869

6970
#react-scan-toast-close-button {
7071
position: absolute;
71-
top: 8px;
72+
top: 10px;
7273
right: 8px;
7374
display: flex;
7475
align-items: center;

0 commit comments

Comments
 (0)