browser-extension-settings 0.5.0 → 0.5.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/lib/style.scss +10 -3
- package/package.json +7 -4
package/lib/style.scss
CHANGED
|
@@ -296,8 +296,13 @@
|
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
pre {
|
|
299
|
-
font-family:
|
|
300
|
-
|
|
299
|
+
font-family:
|
|
300
|
+
Consolas,
|
|
301
|
+
panic sans,
|
|
302
|
+
bitstream vera sans mono,
|
|
303
|
+
Menlo,
|
|
304
|
+
microsoft yahei,
|
|
305
|
+
monospace;
|
|
301
306
|
font-size: 13px;
|
|
302
307
|
letter-spacing: 0.015em;
|
|
303
308
|
line-height: 120%;
|
|
@@ -360,7 +365,9 @@
|
|
|
360
365
|
top: calc(50% - var(--toggle-diameter) / 2);
|
|
361
366
|
border-radius: 50%;
|
|
362
367
|
background: #ffffff;
|
|
363
|
-
box-shadow:
|
|
368
|
+
box-shadow:
|
|
369
|
+
0px 3px 8px rgba(0, 0, 0, 0.15),
|
|
370
|
+
0px 3px 1px rgba(0, 0, 0, 0.06);
|
|
364
371
|
transition: all 0.2s ease-out;
|
|
365
372
|
cursor: pointer;
|
|
366
373
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browser-extension-settings",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Settings module for developing browser extensions and userscripts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./lib/index.js"
|
|
9
|
+
},
|
|
7
10
|
"scripts": {
|
|
8
11
|
"p": "prettier --write .",
|
|
9
12
|
"lint": "run-s lint:*",
|
|
@@ -27,16 +30,16 @@
|
|
|
27
30
|
},
|
|
28
31
|
"homepage": "https://github.com/utags/browser-extension-settings#readme",
|
|
29
32
|
"dependencies": {
|
|
30
|
-
"browser-extension-i18n": "^0.0.
|
|
33
|
+
"browser-extension-i18n": "^0.0.5",
|
|
31
34
|
"browser-extension-storage": "^0.1.2",
|
|
32
35
|
"browser-extension-utils": "^0.1.17"
|
|
33
36
|
},
|
|
34
37
|
"devDependencies": {
|
|
35
38
|
"@types/chrome": "^0.0.243",
|
|
36
39
|
"npm-run-all": "^4.1.5",
|
|
37
|
-
"prettier": "^
|
|
40
|
+
"prettier": "^3.0.2",
|
|
38
41
|
"typescript": "^5.1.6",
|
|
39
|
-
"xo": "^0.
|
|
42
|
+
"xo": "^0.56.0"
|
|
40
43
|
},
|
|
41
44
|
"files": [
|
|
42
45
|
"lib/",
|