@scalar/api-reference 1.40.8 → 1.41.0
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 +50 -0
- package/dist/browser/standalone.js +8897 -8841
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Content/Schema/Schema.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/Schema.vue.js +1 -1
- package/dist/components/Content/Schema/Schema.vue2.js +7 -1
- package/dist/components/Content/Schema/helpers/is-empty-schema-object.d.ts +8 -0
- package/dist/components/Content/Schema/helpers/is-empty-schema-object.d.ts.map +1 -0
- package/dist/components/Content/Schema/helpers/is-empty-schema-object.js +13 -0
- package/dist/components/Content/Tags/components/ModernLayout.vue.d.ts.map +1 -1
- package/dist/components/Content/Tags/components/ModernLayout.vue.js +1 -1
- package/dist/components/Content/Tags/components/ModernLayout.vue2.js +2 -1
- package/dist/features/Operation/layouts/ClassicLayout.vue.d.ts.map +1 -1
- package/dist/features/Operation/layouts/ClassicLayout.vue.js +1 -1
- package/dist/features/Operation/layouts/ClassicLayout.vue2.js +31 -21
- package/dist/features/Operation/layouts/ModernLayout.vue.d.ts.map +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue.js +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue2.js +12 -8
- package/dist/style.css +133 -107
- package/package.json +13 -13
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"vue",
|
|
21
21
|
"vue3"
|
|
22
22
|
],
|
|
23
|
-
"version": "1.
|
|
23
|
+
"version": "1.41.0",
|
|
24
24
|
"engines": {
|
|
25
25
|
"node": ">=20"
|
|
26
26
|
},
|
|
@@ -89,24 +89,24 @@
|
|
|
89
89
|
"type-fest": "5.0.0",
|
|
90
90
|
"vue": "^3.5.21",
|
|
91
91
|
"zod": "^4.1.11",
|
|
92
|
-
"@scalar/api-client": "2.17.0",
|
|
93
|
-
"@scalar/components": "0.16.11",
|
|
94
92
|
"@scalar/code-highlight": "0.2.2",
|
|
95
|
-
"@scalar/
|
|
93
|
+
"@scalar/icons": "0.5.2",
|
|
96
94
|
"@scalar/helpers": "0.2.4",
|
|
97
|
-
"@scalar/
|
|
95
|
+
"@scalar/components": "0.16.13",
|
|
96
|
+
"@scalar/json-magic": "0.8.8",
|
|
97
|
+
"@scalar/oas-utils": "0.6.12",
|
|
98
98
|
"@scalar/object-utils": "1.2.18",
|
|
99
|
-
"@scalar/icons": "0.5.2",
|
|
100
99
|
"@scalar/openapi-parser": "0.23.9",
|
|
101
|
-
"@scalar/openapi-upgrader": "0.1.6",
|
|
102
100
|
"@scalar/openapi-types": "0.5.3",
|
|
103
|
-
"@scalar/sidebar": "0.7.
|
|
101
|
+
"@scalar/sidebar": "0.7.3",
|
|
102
|
+
"@scalar/openapi-upgrader": "0.1.6",
|
|
104
103
|
"@scalar/snippetz": "0.6.1",
|
|
105
104
|
"@scalar/themes": "0.13.26",
|
|
106
105
|
"@scalar/types": "0.5.4",
|
|
106
|
+
"@scalar/use-hooks": "0.3.3",
|
|
107
107
|
"@scalar/use-toasts": "0.9.1",
|
|
108
|
-
"@scalar/workspace-store": "0.24.
|
|
109
|
-
"@scalar/
|
|
108
|
+
"@scalar/workspace-store": "0.24.2",
|
|
109
|
+
"@scalar/api-client": "2.17.2"
|
|
110
110
|
},
|
|
111
111
|
"devDependencies": {
|
|
112
112
|
"@hono/node-server": "1.19.5",
|
|
@@ -126,10 +126,10 @@
|
|
|
126
126
|
"vite-plugin-banner": "^0.7.1",
|
|
127
127
|
"vite-plugin-css-injected-by-js": "^3.4.0",
|
|
128
128
|
"vitest": "3.2.4",
|
|
129
|
-
"@scalar/build-tooling": "0.4.0",
|
|
130
129
|
"@scalar/core": "0.3.28",
|
|
131
|
-
"@scalar/
|
|
132
|
-
"@scalar/galaxy": "0.5.12"
|
|
130
|
+
"@scalar/build-tooling": "0.4.0",
|
|
131
|
+
"@scalar/galaxy": "0.5.12",
|
|
132
|
+
"@scalar/react-renderer": "0.3.0"
|
|
133
133
|
},
|
|
134
134
|
"scripts": {
|
|
135
135
|
"build": "pnpm build:default && pnpm build:standalone && pnpm types:build",
|