@scalar/api-reference 1.28.16 → 1.28.18
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 +32 -0
- package/dist/browser/standalone.js +13908 -13949
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/ApiReferenceLayout.vue.d.ts.map +1 -1
- package/dist/components/ApiReferenceLayout.vue.js +2 -2
- package/dist/components/ApiReferenceLayout.vue2.js +93 -85
- package/dist/components/Content/Introduction/Introduction.vue.d.ts.map +1 -1
- package/dist/components/Content/Introduction/Introduction.vue.js +1 -1
- package/dist/components/Content/Introduction/Introduction.vue2.js +17 -15
- package/dist/components/Content/Schema/SchemaProperty.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue.js +2 -2
- package/dist/components/Content/Schema/SchemaProperty.vue2.js +86 -86
- package/dist/components/Content/Tag/Tag.vue.d.ts.map +1 -1
- package/dist/components/Content/Tag/Tag.vue.js +35 -33
- package/dist/components/SpecificationExtension/SpecificationExtension.vue.d.ts +9 -0
- package/dist/components/SpecificationExtension/SpecificationExtension.vue.d.ts.map +1 -0
- package/dist/components/SpecificationExtension/SpecificationExtension.vue.js +35 -0
- package/dist/components/SpecificationExtension/SpecificationExtension.vue2.js +4 -0
- package/dist/components/SpecificationExtension/index.d.ts +2 -0
- package/dist/components/SpecificationExtension/index.d.ts.map +1 -0
- package/dist/features/ApiClientModal/useApiClient.d.ts +68 -68
- package/dist/features/ApiClientModal/useApiClient.d.ts.map +1 -1
- package/dist/hooks/useConfig.d.ts +4 -1
- package/dist/hooks/useConfig.d.ts.map +1 -1
- package/dist/hooks/useMultipleDocuments.d.ts +10 -2
- package/dist/hooks/useMultipleDocuments.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/plugins/hooks/usePluginManager.d.ts +8 -0
- package/dist/plugins/hooks/usePluginManager.d.ts.map +1 -0
- package/dist/plugins/hooks/usePluginManager.js +10 -0
- package/dist/plugins/index.d.ts +3 -0
- package/dist/plugins/index.d.ts.map +1 -0
- package/dist/plugins/plugin-manager.d.ts +19 -0
- package/dist/plugins/plugin-manager.d.ts.map +1 -0
- package/dist/plugins/plugin-manager.js +21 -0
- package/dist/style.css +1 -1
- package/package.json +10 -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.18",
|
|
24
24
|
"engines": {
|
|
25
25
|
"node": ">=18"
|
|
26
26
|
},
|
|
@@ -56,17 +56,17 @@
|
|
|
56
56
|
"nanoid": "^5.1.5",
|
|
57
57
|
"vue": "^3.5.12",
|
|
58
58
|
"zod": "^3.23.8",
|
|
59
|
-
"@scalar/api-client": "2.3.
|
|
59
|
+
"@scalar/api-client": "2.3.18",
|
|
60
60
|
"@scalar/code-highlight": "0.0.27",
|
|
61
|
-
"@scalar/
|
|
62
|
-
"@scalar/
|
|
63
|
-
"@scalar/oas-utils": "0.2.128",
|
|
61
|
+
"@scalar/oas-utils": "0.2.130",
|
|
62
|
+
"@scalar/components": "0.13.47",
|
|
64
63
|
"@scalar/openapi-types": "0.2.0",
|
|
65
64
|
"@scalar/snippetz": "0.2.19",
|
|
66
|
-
"@scalar/
|
|
67
|
-
"@scalar/
|
|
65
|
+
"@scalar/openapi-parser": "0.10.14",
|
|
66
|
+
"@scalar/themes": "0.9.86",
|
|
68
67
|
"@scalar/use-toasts": "0.7.9",
|
|
69
|
-
"@scalar/use-hooks": "0.1.
|
|
68
|
+
"@scalar/use-hooks": "0.1.40",
|
|
69
|
+
"@scalar/types": "0.1.7"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
"vite-plugin-banner": "^0.7.1",
|
|
81
81
|
"vite-plugin-css-injected-by-js": "^3.4.0",
|
|
82
82
|
"vitest": "^1.6.0",
|
|
83
|
-
"@scalar/
|
|
84
|
-
"@scalar/
|
|
83
|
+
"@scalar/galaxy": "0.3.1",
|
|
84
|
+
"@scalar/build-tooling": "0.1.17"
|
|
85
85
|
},
|
|
86
86
|
"scripts": {
|
|
87
87
|
"analyze:default": "pnpm dlx vite-bundle-visualizer",
|