@scalar/api-reference 1.28.32 → 1.28.33
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/CHANGELOG.md +34 -0
- package/dist/browser/standalone.js +5699 -5511
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Content/ClientLibraries/ClientLibraries.vue.d.ts.map +1 -1
- package/dist/components/Content/ClientLibraries/ClientLibraries.vue.js +2 -2
- package/dist/components/Content/ClientLibraries/ClientSelector.vue.d.ts.map +1 -1
- package/dist/components/Content/ClientLibraries/ClientSelector.vue.js +2 -2
- package/dist/components/Content/Content.vue.d.ts.map +1 -1
- package/dist/components/Content/Content.vue.js +1 -1
- package/dist/components/Content/Content.vue2.js +51 -50
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue.js +1 -1
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue2.js +142 -138
- package/dist/components/Section/SectionHeader.vue.js +2 -2
- package/dist/components/SpecificationExtension/SpecificationExtension.vue.d.ts.map +1 -1
- package/dist/components/SpecificationExtension/SpecificationExtension.vue.js +30 -21
- package/dist/features/ApiClientModal/useApiClient.d.ts +128 -48
- package/dist/features/ApiClientModal/useApiClient.d.ts.map +1 -1
- package/dist/features/BaseUrl/BaseUrl.vue.d.ts.map +1 -1
- package/dist/features/BaseUrl/BaseUrl.vue.js +33 -28
- package/dist/index.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +15 -10
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"vue",
|
|
21
21
|
"vue3"
|
|
22
22
|
],
|
|
23
|
-
"version": "1.28.
|
|
23
|
+
"version": "1.28.33",
|
|
24
24
|
"engines": {
|
|
25
25
|
"node": ">=18"
|
|
26
26
|
},
|
|
@@ -57,25 +57,29 @@
|
|
|
57
57
|
"nanoid": "^5.1.5",
|
|
58
58
|
"vue": "^3.5.12",
|
|
59
59
|
"zod": "3.24.1",
|
|
60
|
-
"@scalar/
|
|
61
|
-
"@scalar/components": "0.13.
|
|
62
|
-
"@scalar/
|
|
60
|
+
"@scalar/api-client": "2.3.33",
|
|
61
|
+
"@scalar/components": "0.13.58",
|
|
62
|
+
"@scalar/icons": "0.3.6",
|
|
63
63
|
"@scalar/code-highlight": "0.0.29",
|
|
64
|
+
"@scalar/oas-utils": "0.2.143",
|
|
64
65
|
"@scalar/openapi-parser": "0.10.17",
|
|
66
|
+
"@scalar/openapi-types": "0.2.3",
|
|
67
|
+
"@scalar/themes": "0.11.2",
|
|
65
68
|
"@scalar/snippetz": "0.2.20",
|
|
66
|
-
"@scalar/openapi-types": "0.2.2",
|
|
67
|
-
"@scalar/types": "0.1.14",
|
|
68
|
-
"@scalar/themes": "0.11.1",
|
|
69
|
-
"@scalar/api-client": "2.3.32",
|
|
70
69
|
"@scalar/use-toasts": "0.7.10",
|
|
71
|
-
"@scalar/
|
|
70
|
+
"@scalar/types": "0.1.15",
|
|
71
|
+
"@scalar/use-hooks": "0.1.49"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
+
"@types/react": "^19.0.1",
|
|
75
|
+
"@types/react-dom": "^19.0.2",
|
|
74
76
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
75
77
|
"@vue/server-renderer": "^3.5.13",
|
|
76
78
|
"@vue/test-utils": "^2.4.1",
|
|
77
79
|
"autoprefixer": "^10.4.19",
|
|
78
80
|
"postcss": "^8.4.38",
|
|
81
|
+
"react": "^19.0.0",
|
|
82
|
+
"react-dom": "^19.0.0",
|
|
79
83
|
"rollup-plugin-webpack-stats": "^0.2.5",
|
|
80
84
|
"tailwindcss": "^3.4.4",
|
|
81
85
|
"vite": "5.4.19",
|
|
@@ -83,7 +87,8 @@
|
|
|
83
87
|
"vite-plugin-css-injected-by-js": "^3.4.0",
|
|
84
88
|
"vitest": "^1.6.0",
|
|
85
89
|
"@scalar/build-tooling": "0.1.19",
|
|
86
|
-
"@scalar/galaxy": "0.3.2"
|
|
90
|
+
"@scalar/galaxy": "0.3.2",
|
|
91
|
+
"@scalar/react-renderer": "0.1.0"
|
|
87
92
|
},
|
|
88
93
|
"scripts": {
|
|
89
94
|
"analyze:default": "pnpm dlx vite-bundle-visualizer",
|