@scalar/api-reference 1.24.10 → 1.24.11

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 CHANGED
@@ -20,7 +20,7 @@
20
20
  "vue",
21
21
  "vue3"
22
22
  ],
23
- "version": "1.24.10",
23
+ "version": "1.24.11",
24
24
  "engines": {
25
25
  "node": ">=18"
26
26
  },
@@ -56,13 +56,13 @@
56
56
  "unhead": "^1.8.3",
57
57
  "unified": "^11.0.4",
58
58
  "vue": "^3.4.22",
59
- "@scalar/api-client": "1.3.11",
60
- "@scalar/api-client-modal": "0.0.9",
61
- "@scalar/oas-utils": "0.2.2",
62
- "@scalar/components": "0.11.4",
59
+ "@scalar/api-client": "1.3.12",
60
+ "@scalar/api-client-modal": "0.0.10",
61
+ "@scalar/components": "0.11.5",
62
+ "@scalar/oas-utils": "0.2.3",
63
63
  "@scalar/use-toasts": "0.7.2",
64
- "@scalar/use-tooltip": "0.7.3",
65
- "@scalar/themes": "0.9.3"
64
+ "@scalar/themes": "0.9.4",
65
+ "@scalar/use-tooltip": "0.7.3"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@etchteam/storybook-addon-css-variables-theme": "^1.5.1",
@@ -88,7 +88,7 @@
88
88
  "vitest": "^1.6.0",
89
89
  "vitest-matchmedia-mock": "^1.0.5",
90
90
  "vue-tsc": "^2.0.13",
91
- "@scalar/galaxy": "0.2.1",
91
+ "@scalar/galaxy": "0.2.2",
92
92
  "@scalar/build-tooling": "0.1.6"
93
93
  },
94
94
  "scripts": {
@@ -1,26 +0,0 @@
1
- import { defineComponent as l, ref as p, onMounted as c, openBlock as s, createElementBlock as i } from "vue";
2
- import { modalStateBus as m, apiClientBus as u } from "./api-client-bus.js";
3
- const _ = /* @__PURE__ */ l({
4
- __name: "ApiClientModal",
5
- props: {
6
- proxyUrl: {},
7
- spec: {}
8
- },
9
- setup(n) {
10
- const t = n, e = p(null);
11
- return c(async () => {
12
- if (!e.value) return;
13
- const { createScalarApiClient: o } = await import("@scalar/api-client-modal"), { open: r, modalState: a } = await o(e.value, {
14
- spec: t.spec ?? {},
15
- proxyUrl: t.proxyUrl
16
- });
17
- m.emit(a), u.on(r);
18
- }), (o, r) => (s(), i("div", {
19
- ref_key: "el",
20
- ref: e
21
- }, null, 512));
22
- }
23
- });
24
- export {
25
- _ as default
26
- };
@@ -1,4 +0,0 @@
1
- import f from "./ApiClientModal.vue.js";
2
- export {
3
- f as default
4
- };