@scalar/api-reference 1.29.2 → 1.30.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 +29 -0
- package/README.md +13 -114
- package/dist/browser/standalone.js +2402 -2306
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Content/Introduction/Introduction.vue.js +2 -2
- package/dist/components/Content/Introduction/Introduction.vue2.js +1 -1
- package/dist/components/Content/Schema/Schema.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/Schema.vue.js +2 -2
- package/dist/components/Content/Schema/Schema.vue2.js +118 -84
- package/dist/components/Content/Schema/SchemaComposition.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaComposition.vue.js +62 -60
- package/dist/components/Content/Schema/SchemaDiscriminator.vue.d.ts +13 -0
- package/dist/components/Content/Schema/SchemaDiscriminator.vue.d.ts.map +1 -0
- package/dist/components/Content/Schema/SchemaDiscriminator.vue.js +49 -0
- package/dist/components/Content/Schema/SchemaDiscriminator.vue2.js +4 -0
- 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 +40 -39
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue.js +2 -2
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue2.js +133 -114
- package/dist/components/Content/Schema/helpers/schema-discriminator.d.ts +9 -1
- package/dist/components/Content/Schema/helpers/schema-discriminator.d.ts.map +1 -1
- package/dist/components/Content/Schema/helpers/schema-discriminator.js +45 -0
- package/dist/components/Section/SectionHeaderTag.vue.d.ts.map +1 -1
- package/dist/components/Section/SectionHeaderTag.vue.js +2 -2
- package/dist/features/ApiClientModal/useApiClient.d.ts +28 -8
- package/dist/features/ApiClientModal/useApiClient.d.ts.map +1 -1
- package/dist/features/Operation/components/callbacks/Callback.vue.d.ts +14 -0
- package/dist/features/Operation/components/callbacks/Callback.vue.d.ts.map +1 -0
- package/dist/features/Operation/components/callbacks/Callback.vue.js +7 -0
- package/dist/features/Operation/components/callbacks/Callback.vue2.js +62 -0
- package/dist/features/Operation/components/callbacks/Callbacks.vue.d.ts +10 -0
- package/dist/features/Operation/components/callbacks/Callbacks.vue.d.ts.map +1 -0
- package/dist/features/Operation/components/callbacks/Callbacks.vue.js +30 -0
- package/dist/features/Operation/components/callbacks/Callbacks.vue2.js +4 -0
- package/dist/features/Operation/layouts/ModernLayout.vue.d.ts +2 -2
- 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 +86 -74
- package/dist/features/Operation/types/schemas.d.ts +3 -0
- package/dist/features/Operation/types/schemas.d.ts.map +1 -0
- package/dist/index.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +8 -8
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { defineComponent as c, computed as n, createBlock as u, openBlock as b, unref as s, withCtx as f, createElementVNode as i, createVNode as V, toDisplayString as m } from "vue";
|
|
2
|
+
import { ScalarListbox as x } from "@scalar/components";
|
|
3
|
+
import { ScalarIconCaretDown as g } from "@scalar/icons";
|
|
4
|
+
const v = {
|
|
5
|
+
class: "bg-b-1.5 hover:bg-b-2 py-1.25 flex w-full items-center gap-1 border-b px-2",
|
|
6
|
+
type: "button"
|
|
7
|
+
}, y = { class: "composition-selector-label text-c-1 relative" }, _ = /* @__PURE__ */ c({
|
|
8
|
+
__name: "SchemaDiscriminator",
|
|
9
|
+
props: {
|
|
10
|
+
discriminatorMapping: {},
|
|
11
|
+
modelValue: {},
|
|
12
|
+
discriminatorPropertyName: {}
|
|
13
|
+
},
|
|
14
|
+
emits: ["update:modelValue"],
|
|
15
|
+
setup(l, { emit: p }) {
|
|
16
|
+
const d = p, r = n(
|
|
17
|
+
() => Object.keys(l.discriminatorMapping).map((e) => ({
|
|
18
|
+
id: e,
|
|
19
|
+
label: e
|
|
20
|
+
}))
|
|
21
|
+
), a = n({
|
|
22
|
+
get: () => r.value.find(
|
|
23
|
+
(e) => e.id === l.modelValue
|
|
24
|
+
),
|
|
25
|
+
set: (e) => d("update:modelValue", e.id)
|
|
26
|
+
});
|
|
27
|
+
return (e, t) => (b(), u(s(x), {
|
|
28
|
+
modelValue: a.value,
|
|
29
|
+
"onUpdate:modelValue": t[0] || (t[0] = (o) => a.value = o),
|
|
30
|
+
options: r.value,
|
|
31
|
+
resize: ""
|
|
32
|
+
}, {
|
|
33
|
+
default: f(() => {
|
|
34
|
+
var o;
|
|
35
|
+
return [
|
|
36
|
+
i("button", v, [
|
|
37
|
+
t[1] || (t[1] = i("span", { class: "text-c-2" }, "Discriminator", -1)),
|
|
38
|
+
i("span", y, m(e.discriminatorPropertyName) + " " + m((o = a.value) == null ? void 0 : o.label), 1),
|
|
39
|
+
V(s(g))
|
|
40
|
+
])
|
|
41
|
+
];
|
|
42
|
+
}),
|
|
43
|
+
_: 1
|
|
44
|
+
}, 8, ["modelValue", "options"]));
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
export {
|
|
48
|
+
_ as default
|
|
49
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SchemaProperty.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Content/Schema/SchemaProperty.vue"],"names":[],"mappings":"AA+gBA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AAC9E,OAAO,EAAY,KAAK,SAAS,EAAE,MAAM,KAAK,CAAA;AAc9C;;;;;GAKG;AAEH,KAAK,WAAW,GAAG;IACf,EAAE,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,OAAO,CAAC,EACJ,SAAS,CAAC,iBAAiB,GAC3B,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,YAAY,CAAC,GACtC,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,YAAY,CAAC,GACxC,OAAO,CAAA;IACX,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB,CAAC;;cAZW,OAAO;WAFV,MAAM;aAGJ,OAAO;kBAIF,OAAO;;
|
|
1
|
+
{"version":3,"file":"SchemaProperty.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Content/Schema/SchemaProperty.vue"],"names":[],"mappings":"AA+gBA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AAC9E,OAAO,EAAY,KAAK,SAAS,EAAE,MAAM,KAAK,CAAA;AAc9C;;;;;GAKG;AAEH,KAAK,WAAW,GAAG;IACf,EAAE,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,OAAO,CAAC,EACJ,SAAS,CAAC,iBAAiB,GAC3B,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,YAAY,CAAC,GACtC,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,YAAY,CAAC,GACxC,OAAO,CAAA;IACX,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB,CAAC;;cAZW,OAAO;WAFV,MAAM;aAGJ,OAAO;kBAIF,OAAO;;AAmd1B,0BAQG"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./SchemaProperty.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const a = /* @__PURE__ */ r(o, [["__scopeId", "data-v-689c7117"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
a as default
|
|
7
7
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { defineComponent as Z, computed as y, createBlock as h, openBlock as l, resolveDynamicComponent as M, normalizeClass as
|
|
1
|
+
import { defineComponent as Z, computed as y, createBlock as h, openBlock as l, resolveDynamicComponent as M, normalizeClass as I, withCtx as m, createCommentVNode as r, createElementBlock as o, createVNode as a, createSlots as G, createTextVNode as D, toDisplayString as c, unref as i, Fragment as d, renderList as k, createElementVNode as f } from "vue";
|
|
2
2
|
import { Disclosure as J, DisclosurePanel as K, DisclosureButton as Q } from "@headlessui/vue";
|
|
3
3
|
import { ScalarMarkdown as H, ScalarIcon as W } from "@scalar/components";
|
|
4
4
|
import { optimizeValueForDisplay as X, compositions as Y } from "./helpers/optimizeValueForDisplay.js";
|
|
5
|
-
import
|
|
6
|
-
import
|
|
5
|
+
import L from "./Schema.vue.js";
|
|
6
|
+
import O from "./SchemaComposition.vue.js";
|
|
7
7
|
import x from "./SchemaPropertyHeading.vue.js";
|
|
8
8
|
import ee from "../../SpecificationExtension/SpecificationExtension.vue.js";
|
|
9
9
|
const ne = {
|
|
@@ -15,10 +15,10 @@ const ne = {
|
|
|
15
15
|
}, le = {
|
|
16
16
|
key: 3,
|
|
17
17
|
class: "property-enum"
|
|
18
|
-
},
|
|
18
|
+
}, se = {
|
|
19
19
|
key: 0,
|
|
20
20
|
class: "property-list"
|
|
21
|
-
},
|
|
21
|
+
}, oe = { class: "property-heading" }, ae = { class: "property-name" }, ie = { class: "property-description" }, re = {
|
|
22
22
|
key: 1,
|
|
23
23
|
class: "property-enum-values"
|
|
24
24
|
}, pe = { class: "property-enum-value-label" }, me = { class: "property-enum-value-label" }, ce = {
|
|
@@ -44,8 +44,8 @@ const ne = {
|
|
|
44
44
|
schemas: {},
|
|
45
45
|
hideHeading: { type: Boolean }
|
|
46
46
|
},
|
|
47
|
-
setup(
|
|
48
|
-
const $ =
|
|
47
|
+
setup(_) {
|
|
48
|
+
const $ = _, S = {
|
|
49
49
|
integer: {
|
|
50
50
|
_default: "Integer numbers.",
|
|
51
51
|
int32: "Signed 32-bit integers (commonly used integer type).",
|
|
@@ -71,7 +71,7 @@ const ne = {
|
|
|
71
71
|
return (e, t) => {
|
|
72
72
|
var g;
|
|
73
73
|
return l(), h(M(e.is ?? "li"), {
|
|
74
|
-
class:
|
|
74
|
+
class: I(["property", [
|
|
75
75
|
(B(e.description, n.value), ""),
|
|
76
76
|
`property--level-${e.level}`,
|
|
77
77
|
{
|
|
@@ -113,42 +113,42 @@ const ne = {
|
|
|
113
113
|
key: "1"
|
|
114
114
|
} : void 0
|
|
115
115
|
]), 1032, ["additional", "enum", "pattern", "required", "value", "schemas"])) : r("", !0),
|
|
116
|
-
B(e.description, n.value) ? (l(),
|
|
116
|
+
B(e.description, n.value) ? (l(), o("div", ne, [
|
|
117
117
|
a(i(H), {
|
|
118
118
|
value: B(e.description, n.value)
|
|
119
119
|
}, null, 8, ["value"])
|
|
120
|
-
])) : E(n.value) ? (l(),
|
|
120
|
+
])) : E(n.value) ? (l(), o("div", te, [
|
|
121
121
|
a(i(H), {
|
|
122
122
|
value: E(n.value) || ""
|
|
123
123
|
}, null, 8, ["value"])
|
|
124
124
|
])) : r("", !0),
|
|
125
|
-
((v = p(n.value)) == null ? void 0 : v.length) > 0 ? (l(),
|
|
126
|
-
Array.isArray((w = n.value) == null ? void 0 : w["x-enumDescriptions"]) ? (l(),
|
|
127
|
-
(l(!0),
|
|
128
|
-
key:
|
|
125
|
+
((v = p(n.value)) == null ? void 0 : v.length) > 0 ? (l(), o("div", le, [
|
|
126
|
+
Array.isArray((w = n.value) == null ? void 0 : w["x-enumDescriptions"]) ? (l(), o("div", se, [
|
|
127
|
+
(l(!0), o(d, null, k(p(n.value), (s) => (l(), o("div", {
|
|
128
|
+
key: s,
|
|
129
129
|
class: "property"
|
|
130
130
|
}, [
|
|
131
|
-
f("div",
|
|
132
|
-
f("div", ae, c(
|
|
131
|
+
f("div", oe, [
|
|
132
|
+
f("div", ae, c(s), 1)
|
|
133
133
|
]),
|
|
134
134
|
f("div", ie, [
|
|
135
135
|
a(i(H), {
|
|
136
|
-
value: n.value["x-enumDescriptions"][
|
|
136
|
+
value: n.value["x-enumDescriptions"][s]
|
|
137
137
|
}, null, 8, ["value"])
|
|
138
138
|
])
|
|
139
139
|
]))), 128))
|
|
140
|
-
])) : (l(),
|
|
141
|
-
(l(!0),
|
|
142
|
-
key:
|
|
140
|
+
])) : (l(), o("ul", re, [
|
|
141
|
+
(l(!0), o(d, null, k(R.value, (s) => (l(), o("li", {
|
|
142
|
+
key: s,
|
|
143
143
|
class: "property-enum-value"
|
|
144
144
|
}, [
|
|
145
|
-
f("span", pe, c(
|
|
145
|
+
f("span", pe, c(s), 1)
|
|
146
146
|
]))), 128)),
|
|
147
147
|
C.value ? (l(), h(i(J), { key: 0 }, {
|
|
148
|
-
default: m(({ open:
|
|
148
|
+
default: m(({ open: s }) => [
|
|
149
149
|
a(i(K), null, {
|
|
150
150
|
default: m(() => [
|
|
151
|
-
(l(!0),
|
|
151
|
+
(l(!0), o(d, null, k(T.value, (u) => (l(), o("li", {
|
|
152
152
|
key: u,
|
|
153
153
|
class: "property-enum-value"
|
|
154
154
|
}, [
|
|
@@ -160,11 +160,11 @@ const ne = {
|
|
|
160
160
|
a(i(Q), { class: "enum-toggle-button" }, {
|
|
161
161
|
default: m(() => [
|
|
162
162
|
a(i(W), {
|
|
163
|
-
class:
|
|
163
|
+
class: I(["enum-toggle-button-icon", { "enum-toggle-button-icon--open": s }]),
|
|
164
164
|
icon: "Add",
|
|
165
165
|
size: "sm"
|
|
166
166
|
}, null, 8, ["class"]),
|
|
167
|
-
D(" " + c(
|
|
167
|
+
D(" " + c(s ? "Hide values" : "Show all values"), 1)
|
|
168
168
|
]),
|
|
169
169
|
_: 2
|
|
170
170
|
}, 1024)
|
|
@@ -173,8 +173,8 @@ const ne = {
|
|
|
173
173
|
})) : r("", !0)
|
|
174
174
|
]))
|
|
175
175
|
])) : r("", !0),
|
|
176
|
-
((q = n.value) == null ? void 0 : q.type) === "object" && ((F = n.value) != null && F.properties || (N = n.value) != null && N.additionalProperties) ? (l(),
|
|
177
|
-
a(
|
|
176
|
+
((q = n.value) == null ? void 0 : q.type) === "object" && ((F = n.value) != null && F.properties || (N = n.value) != null && N.additionalProperties) ? (l(), o("div", ce, [
|
|
177
|
+
a(L, {
|
|
178
178
|
compact: e.compact,
|
|
179
179
|
level: e.level + 1,
|
|
180
180
|
name: e.name,
|
|
@@ -183,34 +183,35 @@ const ne = {
|
|
|
183
183
|
schemas: e.schemas
|
|
184
184
|
}, null, 8, ["compact", "level", "name", "noncollapsible", "value", "schemas"])
|
|
185
185
|
])) : r("", !0),
|
|
186
|
-
(V = n.value) != null && V.items && typeof n.value.items == "object" && "type" in n.value.items && typeof n.value.items.type == "string" ? (l(),
|
|
187
|
-
["object"].includes((z = (j = n.value) == null ? void 0 : j.items) == null ? void 0 : z.type) ? (l(),
|
|
188
|
-
a(
|
|
186
|
+
(V = n.value) != null && V.items && typeof n.value.items == "object" && "type" in n.value.items && typeof n.value.items.type == "string" ? (l(), o(d, { key: 5 }, [
|
|
187
|
+
["object"].includes((z = (j = n.value) == null ? void 0 : j.items) == null ? void 0 : z.type) ? (l(), o("div", de, [
|
|
188
|
+
a(L, {
|
|
189
189
|
compact: e.compact,
|
|
190
190
|
level: e.level + 1,
|
|
191
191
|
name: e.name,
|
|
192
192
|
noncollapsible: e.noncollapsible,
|
|
193
|
-
value: n.value.items
|
|
194
|
-
|
|
193
|
+
value: n.value.items,
|
|
194
|
+
schemas: e.schemas
|
|
195
|
+
}, null, 8, ["compact", "level", "name", "noncollapsible", "value", "schemas"])
|
|
195
196
|
])) : r("", !0)
|
|
196
197
|
], 64)) : r("", !0),
|
|
197
|
-
(l(!0),
|
|
198
|
-
var u,
|
|
199
|
-
return l(),
|
|
200
|
-
(u = n.value) != null && u[
|
|
198
|
+
(l(!0), o(d, null, k(i(Y), (s) => {
|
|
199
|
+
var u, A;
|
|
200
|
+
return l(), o(d, { key: s }, [
|
|
201
|
+
(u = n.value) != null && u[s] ? (l(), h(O, {
|
|
201
202
|
key: 0,
|
|
202
203
|
compact: e.compact,
|
|
203
|
-
composition:
|
|
204
|
+
composition: s,
|
|
204
205
|
hideHeading: e.hideHeading,
|
|
205
206
|
level: e.level,
|
|
206
207
|
name: e.name,
|
|
207
208
|
noncollapsible: e.noncollapsible,
|
|
208
209
|
schemas: e.schemas,
|
|
209
210
|
value: n.value
|
|
210
|
-
}, null, 8, ["compact", "composition", "hideHeading", "level", "name", "noncollapsible", "schemas", "value"])) : (
|
|
211
|
+
}, null, 8, ["compact", "composition", "hideHeading", "level", "name", "noncollapsible", "schemas", "value"])) : (A = n.value) != null && A.items && typeof s == "string" && typeof n.value.items == "object" && !("type" in n.value.items) && s in n.value.items ? (l(), h(O, {
|
|
211
212
|
key: 1,
|
|
212
213
|
compact: e.compact,
|
|
213
|
-
composition:
|
|
214
|
+
composition: s,
|
|
214
215
|
hideHeading: e.hideHeading,
|
|
215
216
|
level: e.level,
|
|
216
217
|
name: e.name,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SchemaPropertyHeading.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Content/Schema/SchemaPropertyHeading.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SchemaPropertyHeading.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Content/Schema/SchemaPropertyHeading.vue"],"names":[],"mappings":"AAsYA,OAAO,KAAK,EAEV,SAAS,EACT,SAAS,EACT,WAAW,EACZ,MAAM,uBAAuB,CAAA;AAgB9B,KAAK,WAAW,GAAG;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC3B,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,OAAO,CAAC,EACJ,SAAS,CAAC,iBAAiB,GAC3B,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,YAAY,CAAC,GACtC,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,YAAY,CAAC,GACxC,OAAO,CAAA;CACZ,CAAC;AAkJF,iBAAS,cAAc;WA4UT,OAAO,IAA6B;;sBATxB,GAAG;sBACH,GAAG;;;;EAa5B;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,6SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./SchemaPropertyHeading.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
4
|
-
const m = /* @__PURE__ */
|
|
3
|
+
import e from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const m = /* @__PURE__ */ e(o, [["__scopeId", "data-v-ce6ed2af"]]);
|
|
5
5
|
export {
|
|
6
6
|
m as default
|
|
7
7
|
};
|