@scalar/components 0.14.34 → 0.14.35
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 +8 -7
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"url": "git+https://github.com/scalar/scalar.git",
|
|
11
11
|
"directory": "packages/components"
|
|
12
12
|
},
|
|
13
|
-
"version": "0.14.
|
|
13
|
+
"version": "0.14.35",
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": ">=20"
|
|
16
16
|
},
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"radix-vue": "^1.9.3",
|
|
40
40
|
"vue": "^3.5.17",
|
|
41
41
|
"vue-component-type-helpers": "^3.0.4",
|
|
42
|
-
"@scalar/code-highlight": "0.
|
|
43
|
-
"@scalar/themes": "0.13.17",
|
|
44
|
-
"@scalar/icons": "0.4.7",
|
|
45
|
-
"@scalar/use-hooks": "0.2.5",
|
|
42
|
+
"@scalar/code-highlight": "0.2.0",
|
|
46
43
|
"@scalar/helpers": "0.0.11",
|
|
44
|
+
"@scalar/icons": "0.4.7",
|
|
45
|
+
"@scalar/oas-utils": "0.4.30",
|
|
46
|
+
"@scalar/themes": "0.13.18",
|
|
47
47
|
"@scalar/use-toasts": "0.8.0",
|
|
48
|
-
"@scalar/
|
|
48
|
+
"@scalar/use-hooks": "0.2.5"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@headlessui/tailwindcss": "^0.2.2",
|
|
@@ -83,11 +83,12 @@
|
|
|
83
83
|
"lint:check": "eslint . && pnpm lint:icons",
|
|
84
84
|
"lint:fix": "eslint . --fix",
|
|
85
85
|
"lint:icons": "svglint src/components/ScalarIcon/icons/*.svg --config src/components/ScalarIcon/.svglintrc.js",
|
|
86
|
+
"playwright:cleanup-docker": "docker rm -f scalar-playwright 2>/dev/null || true",
|
|
86
87
|
"preview": "vite preview --outDir storybook-static -c test/vite.config.ts 1>&2",
|
|
87
88
|
"test": "vitest",
|
|
88
89
|
"test:e2e": "PW_TEST_CONNECT_WS_ENDPOINT=ws://127.0.0.1:5001/ playwright test",
|
|
89
90
|
"test:e2e:ci": "CI=1 playwright test",
|
|
90
|
-
"test:e2e:playwright": "docker run --network=host -e PORT=5001 --rm --name scalar-playwright scalarapi/playwright:1.55.0",
|
|
91
|
+
"test:e2e:playwright": "pnpm playwright:cleanup-docker && docker run --network=host -e PORT=5001 --rm --name scalar-playwright scalarapi/playwright:1.55.0",
|
|
91
92
|
"test:e2e:report": "playwright show-report",
|
|
92
93
|
"test:e2e:ui": "pnpm test:e2e --ui",
|
|
93
94
|
"test:e2e:update": "pnpm test:e2e --update-snapshots",
|