@scalar/api-client 2.2.28 → 2.2.29
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 +17 -0
- package/dist/components/DataTable/DataTableInput.vue.d.ts.map +1 -1
- package/dist/components/DataTable/DataTableInput.vue.js +1 -1
- package/dist/components/DataTable/DataTableInput.vue2.js +31 -32
- package/dist/components/DataTable/index.js +14 -14
- package/dist/components/Sidebar/SidebarList.vue.d.ts.map +1 -1
- package/dist/components/Sidebar/SidebarList.vue.js +4 -4
- package/dist/components/ViewLayout/ViewLayoutCollapse.vue.d.ts +2 -0
- package/dist/components/ViewLayout/ViewLayoutCollapse.vue.d.ts.map +1 -1
- package/dist/components/ViewLayout/ViewLayoutCollapse.vue.js +39 -28
- package/dist/style.css +1 -1
- package/dist/views/Cookies/Cookies.vue.d.ts.map +1 -1
- package/dist/views/Cookies/Cookies.vue2.js +49 -43
- package/dist/views/Environment/Environment.vue.d.ts.map +1 -1
- package/dist/views/Environment/Environment.vue2.js +56 -51
- package/dist/views/Request/RequestSection/RequestAuth/DeleteRequestAuthModal.vue.d.ts +3 -1
- package/dist/views/Request/RequestSection/RequestAuth/DeleteRequestAuthModal.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/DeleteRequestAuthModal.vue.js +2 -2
- package/dist/views/Request/RequestSection/RequestAuth/OAuthScopesInput.vue.d.ts +0 -1
- package/dist/views/Request/RequestSection/RequestAuth/OAuthScopesInput.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/OAuthScopesInput.vue.js +38 -41
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.d.ts +6 -1
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.js +2 -2
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue2.js +154 -44
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthDataTable.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthDataTable.vue.js +3 -3
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthDataTable.vue2.js +53 -192
- package/dist/views/Request/RequestSection/RequestAuth/RequestExampleAuth.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/RequestExampleAuth.vue.js +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/RequestExampleAuth.vue2.js +84 -88
- package/dist/views/Request/RequestSection/RequestAuth/index.d.ts +1 -0
- package/dist/views/Request/RequestSection/RequestAuth/index.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/index.js +4 -2
- package/dist/views/Request/RequestSection/RequestBody.vue.js +2 -2
- package/dist/views/Request/RequestSection/RequestBody.vue2.js +2 -2
- package/dist/views/Request/RequestSidebar.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSidebar.vue.js +1 -1
- package/dist/views/Request/RequestSidebar.vue2.js +89 -90
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/package.json +8 -8
|
@@ -1,96 +1,93 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as C, computed as x, openBlock as m, createBlock as w, unref as t, withCtx as a, createElementVNode as n, createVNode as r, normalizeClass as y, toDisplayString as d, createElementBlock as v, Fragment as k, renderList as V, createTextVNode as b, createCommentVNode as D } from "vue";
|
|
2
2
|
import { Disclosure as $, DisclosureButton as B, DisclosurePanel as N } from "@headlessui/vue";
|
|
3
3
|
import { ScalarIcon as O } from "@scalar/components";
|
|
4
4
|
import S from "../../../../components/DataTable/DataTableCell.vue.js";
|
|
5
5
|
import T from "../../../../components/DataTable/DataTableRow.vue.js";
|
|
6
6
|
import j from "../../../../components/DataTable/DataTableCheckbox.vue.js";
|
|
7
7
|
const z = { class: "flex h-fit w-full" }, E = { class: "flex-1" }, F = {
|
|
8
|
-
class: "grid auto-rows-auto
|
|
8
|
+
class: "grid auto-rows-auto",
|
|
9
9
|
style: { gridTemplateColumns: "1fr auto" }
|
|
10
|
-
}, I = { key: 0 }, R = { class: "font-code text-xs" }, H = /* @__PURE__ */
|
|
10
|
+
}, I = { key: 0 }, R = { class: "font-code text-xs" }, H = /* @__PURE__ */ C({
|
|
11
11
|
__name: "OAuthScopesInput",
|
|
12
12
|
props: {
|
|
13
13
|
flow: {},
|
|
14
|
-
layout: { default: "client" },
|
|
15
14
|
updateScheme: { type: Function }
|
|
16
15
|
},
|
|
17
|
-
setup(
|
|
16
|
+
setup(o) {
|
|
18
17
|
const g = x(
|
|
19
18
|
() => {
|
|
20
19
|
var e;
|
|
21
|
-
return Object.entries(((e =
|
|
20
|
+
return Object.entries(((e = o.flow) == null ? void 0 : e.scopes) ?? {}).map(([l, s]) => ({
|
|
22
21
|
id: l,
|
|
23
22
|
label: l,
|
|
24
|
-
description:
|
|
23
|
+
description: s
|
|
25
24
|
}));
|
|
26
25
|
}
|
|
27
26
|
), u = x(() => {
|
|
28
27
|
var e;
|
|
29
|
-
return ((e =
|
|
28
|
+
return ((e = o.flow) == null ? void 0 : e.selectedScopes) || [];
|
|
30
29
|
});
|
|
31
30
|
function _(e, l) {
|
|
32
|
-
l ?
|
|
31
|
+
l ? o.updateScheme(`flows.${o.flow.type}.selectedScopes`, [
|
|
33
32
|
...u.value,
|
|
34
33
|
e
|
|
35
|
-
]) :
|
|
36
|
-
`flows.${
|
|
37
|
-
u.value.filter((
|
|
34
|
+
]) : o.updateScheme(
|
|
35
|
+
`flows.${o.flow.type}.selectedScopes`,
|
|
36
|
+
u.value.filter((s) => s !== e)
|
|
38
37
|
);
|
|
39
38
|
}
|
|
40
|
-
return (e, l) => (
|
|
41
|
-
default:
|
|
42
|
-
|
|
43
|
-
l[0] || (l[0] =
|
|
44
|
-
o("span", { class: "h-8 flex items-center" }, " Scopes ")
|
|
45
|
-
], -1)),
|
|
39
|
+
return (e, l) => (m(), w(t(S), { class: "items-center min-h-8 h-auto !max-h-[initial]" }, {
|
|
40
|
+
default: a(() => [
|
|
41
|
+
n("div", z, [
|
|
42
|
+
l[0] || (l[0] = n("div", { class: "text-c-1 items-center h-full" }, null, -1)),
|
|
46
43
|
r(t($), {
|
|
47
44
|
as: "div",
|
|
48
45
|
class: "flex flex-col w-full bl"
|
|
49
46
|
}, {
|
|
50
|
-
default:
|
|
51
|
-
var
|
|
47
|
+
default: a(() => {
|
|
48
|
+
var s, h;
|
|
52
49
|
return [
|
|
53
50
|
r(t(B), {
|
|
54
|
-
class:
|
|
55
|
-
"group/scopes-accordion flex items-center text-left min-h-8 gap-1.5 h-auto pl-2 hover:text-c-1
|
|
56
|
-
(((h = (
|
|
51
|
+
class: y([
|
|
52
|
+
"group/scopes-accordion flex items-center text-left min-h-8 gap-1.5 h-auto pl-3 pr-2 hover:text-c-1 cursor-pointer",
|
|
53
|
+
(((h = (s = e.flow) == null ? void 0 : s.selectedScopes) == null ? void 0 : h.length) || 0) > 0 ? "text-c-1" : "text-c-3"
|
|
57
54
|
])
|
|
58
55
|
}, {
|
|
59
|
-
default:
|
|
60
|
-
var f, i,
|
|
56
|
+
default: a(({ open: c }) => {
|
|
57
|
+
var f, i, p;
|
|
61
58
|
return [
|
|
62
|
-
|
|
59
|
+
n("div", E, " Scopes Selected " + d(((i = (f = e.flow) == null ? void 0 : f.selectedScopes) == null ? void 0 : i.length) || 0) + " / " + d(Object.keys(((p = e.flow) == null ? void 0 : p.scopes) ?? {}).length || 0), 1),
|
|
63
60
|
r(t(O), {
|
|
64
61
|
class: "text-c-3 group-hover/scopes-accordion:text-c-2",
|
|
65
|
-
icon:
|
|
66
|
-
size: "
|
|
62
|
+
icon: c ? "ChevronDown" : "ChevronRight",
|
|
63
|
+
size: "sm"
|
|
67
64
|
}, null, 8, ["icon"])
|
|
68
65
|
];
|
|
69
66
|
}),
|
|
70
67
|
_: 1
|
|
71
68
|
}, 8, ["class"]),
|
|
72
69
|
r(t(N), { as: "template" }, {
|
|
73
|
-
default:
|
|
74
|
-
|
|
75
|
-
(
|
|
76
|
-
key:
|
|
70
|
+
default: a(() => [
|
|
71
|
+
n("table", F, [
|
|
72
|
+
(m(!0), v(k, null, V(g.value, ({ id: c, label: f, description: i }) => (m(), w(t(T), {
|
|
73
|
+
key: c,
|
|
77
74
|
class: "text-c-2",
|
|
78
|
-
onClick: (
|
|
75
|
+
onClick: (p) => _(c, !u.value.includes(c))
|
|
79
76
|
}, {
|
|
80
|
-
default:
|
|
81
|
-
r(t(S), { class: "w-full px-
|
|
82
|
-
default:
|
|
83
|
-
|
|
84
|
-
i ? (
|
|
85
|
-
|
|
86
|
-
|
|
77
|
+
default: a(() => [
|
|
78
|
+
r(t(S), { class: "w-full px-3 py-1.5 hover:text-c-1 cursor-pointer !max-h-[initial]" }, {
|
|
79
|
+
default: a(() => [
|
|
80
|
+
n("span", null, [
|
|
81
|
+
i ? (m(), v("span", I, [
|
|
82
|
+
n("span", R, d(f), 1),
|
|
83
|
+
b(" – " + d(i), 1)
|
|
87
84
|
])) : D("", !0)
|
|
88
85
|
])
|
|
89
86
|
]),
|
|
90
87
|
_: 2
|
|
91
88
|
}, 1024),
|
|
92
89
|
r(t(j), {
|
|
93
|
-
modelValue: u.value.includes(
|
|
90
|
+
modelValue: u.value.includes(c),
|
|
94
91
|
"onUpdate:modelValue": () => {
|
|
95
92
|
}
|
|
96
93
|
}, null, 8, ["modelValue"])
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
selectedSecuritySchemeUids: string[];
|
|
3
3
|
title: string;
|
|
4
|
+
layout?: 'client' | 'reference';
|
|
4
5
|
};
|
|
5
|
-
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:selectedSecuritySchemeUids": (args_0: string[]) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
+
"onUpdate:selectedSecuritySchemeUids"?: ((args_0: string[]) => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
11
|
export default _default;
|
|
7
12
|
//# sourceMappingURL=RequestAuth.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RequestAuth.vue.d.ts","sourceRoot":"","sources":["../../../../../src/views/Request/RequestSection/RequestAuth/RequestAuth.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RequestAuth.vue.d.ts","sourceRoot":"","sources":["../../../../../src/views/Request/RequestSection/RequestAuth/RequestAuth.vue"],"names":[],"mappings":"AA+UA,KAAK,WAAW,GAAG;IACjB,0BAA0B,EAAE,MAAM,EAAE,CAAA;IACpC,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,QAAQ,GAAG,WAAW,CAAA;CAChC,CAAC;;;;;;AAsYF,wBAQG"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import t from "./RequestAuth.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import o from "../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const p = /* @__PURE__ */ o(t, [["__scopeId", "data-v-456c0241"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
p as default
|
|
7
7
|
};
|
|
@@ -1,61 +1,171 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import
|
|
3
|
-
import { useActiveEntities as
|
|
4
|
-
import { ScalarIcon as
|
|
5
|
-
import { isDefined as
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}, L = /* @__PURE__ */ q({
|
|
1
|
+
import { defineComponent as F, ref as C, computed as r, openBlock as O, createBlock as K, withCtx as d, createElementVNode as p, toDisplayString as x, createElementBlock as N, normalizeClass as z, createCommentVNode as W, createVNode as m, unref as a } from "vue";
|
|
2
|
+
import H from "../../../../components/ViewLayout/ViewLayoutCollapse.vue.js";
|
|
3
|
+
import { useActiveEntities as L } from "../../../../store/active-entities.js";
|
|
4
|
+
import { useModal as P, ScalarComboboxMultiselect as G, ScalarButton as J, ScalarIcon as Q } from "@scalar/components";
|
|
5
|
+
import { isDefined as q } from "@scalar/oas-utils/helpers";
|
|
6
|
+
import X from "./DeleteRequestAuthModal.vue.js";
|
|
7
|
+
import Y from "./RequestAuthDataTable.vue.js";
|
|
8
|
+
import { ADD_AUTH_OPTIONS as Z } from "../../consts/new-auth-options.js";
|
|
9
|
+
import { useWorkspace as ee } from "../../../../store/store.js";
|
|
10
|
+
import { displaySchemeFormatter as U } from "../../libs/auth.js";
|
|
11
|
+
const te = { class: "inline-flex gap-1 items-center" }, le = { class: "flex flex-1 -mx-1" }, ie = { class: "text-c-1" }, fe = /* @__PURE__ */ F({
|
|
13
12
|
__name: "RequestAuth",
|
|
14
13
|
props: {
|
|
15
14
|
selectedSecuritySchemeUids: {},
|
|
16
|
-
title: {}
|
|
15
|
+
title: {},
|
|
16
|
+
layout: { default: "client" }
|
|
17
17
|
},
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
18
|
+
emits: ["update:selectedSecuritySchemeUids"],
|
|
19
|
+
setup(g, { emit: M }) {
|
|
20
|
+
const R = M, { activeCollection: n, activeRequest: h } = L(), {
|
|
21
|
+
isReadOnly: v,
|
|
22
|
+
securitySchemes: _,
|
|
23
|
+
securitySchemeMutators: $,
|
|
24
|
+
requestMutators: B,
|
|
25
|
+
collectionMutators: V
|
|
26
|
+
} = ee(), k = C(null), f = P(), y = C(null), A = r(() => {
|
|
27
|
+
var l, o;
|
|
28
|
+
const e = ((l = h.value) == null ? void 0 : l.security) ?? ((o = n.value) == null ? void 0 : o.security) ?? [];
|
|
29
|
+
return { filteredRequirements: e.filter(
|
|
30
|
+
(s) => Object.keys(s).length
|
|
31
|
+
), requirements: e };
|
|
32
|
+
}), S = r(() => {
|
|
33
|
+
const { filteredRequirements: e, requirements: t } = A.value;
|
|
25
34
|
if (!t.length) return null;
|
|
26
|
-
const
|
|
27
|
-
return { icon:
|
|
28
|
-
}),
|
|
29
|
-
() =>
|
|
30
|
-
const t =
|
|
35
|
+
const l = e.length < t.length, o = l ? "Unlock" : "Lock", s = l ? "Optional" : "Required", u = `${e.length === 1 ? Object.keys(e[0] || {})[0] : ""} ${s}`;
|
|
36
|
+
return { icon: o, text: u };
|
|
37
|
+
}), c = r(
|
|
38
|
+
() => g.selectedSecuritySchemeUids.map((e) => {
|
|
39
|
+
const t = _[e ?? ""];
|
|
31
40
|
if (t)
|
|
32
|
-
return
|
|
33
|
-
}).filter(
|
|
41
|
+
return U(t);
|
|
42
|
+
}).filter(q)
|
|
34
43
|
);
|
|
35
|
-
|
|
44
|
+
function w(e) {
|
|
45
|
+
var o, s;
|
|
46
|
+
if (!((o = n.value) != null && o.uid) || !((s = h.value) != null && s.uid)) return;
|
|
47
|
+
const t = e.find((i) => i.payload), l = e.filter((i) => !i.payload).map(({ id: i }) => i);
|
|
48
|
+
if (t != null && t.payload) {
|
|
49
|
+
const i = $.add(
|
|
50
|
+
t.payload,
|
|
51
|
+
n.value.uid
|
|
52
|
+
);
|
|
53
|
+
i && l.push(i.uid);
|
|
54
|
+
}
|
|
55
|
+
D(l), R("update:selectedSecuritySchemeUids", l);
|
|
56
|
+
}
|
|
57
|
+
const D = (e) => {
|
|
58
|
+
!n.value || !h.value || (v ? V.edit(
|
|
59
|
+
n.value.uid,
|
|
60
|
+
"selectedSecuritySchemeUids",
|
|
61
|
+
e
|
|
62
|
+
) : B.edit(
|
|
63
|
+
h.value.uid,
|
|
64
|
+
"selectedSecuritySchemeUids",
|
|
65
|
+
e
|
|
66
|
+
));
|
|
67
|
+
};
|
|
68
|
+
function T(e) {
|
|
69
|
+
y.value = e, f.show();
|
|
70
|
+
}
|
|
71
|
+
const E = (e) => {
|
|
72
|
+
var l;
|
|
73
|
+
const t = g.selectedSecuritySchemeUids.filter(
|
|
74
|
+
(o) => o !== e
|
|
75
|
+
);
|
|
76
|
+
D(t), R("update:selectedSecuritySchemeUids", t), (l = k.value) == null || l.$el.focus(), f.hide();
|
|
77
|
+
}, I = r(() => {
|
|
78
|
+
var t;
|
|
79
|
+
return (((t = n.value) == null ? void 0 : t.securitySchemes) ?? []).map((l) => _[l]).filter((l) => l);
|
|
80
|
+
}), j = r(
|
|
81
|
+
() => {
|
|
82
|
+
const e = [...I.value], t = [];
|
|
83
|
+
A.value.filteredRequirements.forEach((i) => {
|
|
84
|
+
const u = e.findIndex(
|
|
85
|
+
(b) => (b == null ? void 0 : b.nameKey) === Object.keys(i)[0]
|
|
86
|
+
);
|
|
87
|
+
u > -1 && (t.push(e[u]), e.splice(u, 1));
|
|
88
|
+
});
|
|
89
|
+
const l = e.map((i) => i ? U(i) : void 0).filter(q), o = t.map((i) => i ? U(i) : void 0).filter(q), s = [
|
|
90
|
+
{ label: "Required authentication", options: o },
|
|
91
|
+
{ label: "Available authentication", options: l }
|
|
92
|
+
];
|
|
93
|
+
return v ? o.length ? s : l : (s.push({
|
|
94
|
+
label: "Add new authentication",
|
|
95
|
+
options: Z
|
|
96
|
+
}), s);
|
|
97
|
+
}
|
|
98
|
+
);
|
|
99
|
+
return (e, t) => (O(), K(H, {
|
|
36
100
|
class: "group/params",
|
|
37
|
-
itemCount:
|
|
101
|
+
itemCount: c.value.length,
|
|
102
|
+
layout: e.layout
|
|
38
103
|
}, {
|
|
39
|
-
title:
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
104
|
+
title: d(() => [
|
|
105
|
+
p("div", te, [
|
|
106
|
+
p("span", null, x(e.title), 1),
|
|
107
|
+
S.value ? (O(), N("span", {
|
|
108
|
+
key: 0,
|
|
109
|
+
class: z(["text-c-3 text-xs leading-[normal]", { "text-c-1": S.value.text === "Required" }])
|
|
110
|
+
}, x(S.value.text), 3)) : W("", !0)
|
|
111
|
+
])
|
|
112
|
+
]),
|
|
113
|
+
actions: d(() => [
|
|
114
|
+
p("div", le, [
|
|
115
|
+
m(a(G), {
|
|
116
|
+
class: "text-xs w-72",
|
|
117
|
+
isDeletable: !a(v),
|
|
118
|
+
modelValue: c.value,
|
|
119
|
+
multiple: "",
|
|
120
|
+
options: j.value,
|
|
121
|
+
onDelete: T,
|
|
122
|
+
"onUpdate:modelValue": w
|
|
123
|
+
}, {
|
|
124
|
+
default: d(() => [
|
|
125
|
+
m(a(J), {
|
|
126
|
+
ref_key: "comboboxButtonRef",
|
|
127
|
+
ref: k,
|
|
128
|
+
class: "h-auto px-1.5 py-0.75 hover:bg-b-3 text-c-1 hover:text-c-1 font-normal",
|
|
129
|
+
fullWidth: "",
|
|
130
|
+
variant: "ghost"
|
|
131
|
+
}, {
|
|
132
|
+
default: d(() => {
|
|
133
|
+
var l;
|
|
134
|
+
return [
|
|
135
|
+
p("div", ie, x(c.value.length === 0 ? "Auth Type" : c.value.length === 1 ? (l = c.value[0]) == null ? void 0 : l.label : "Multiple"), 1),
|
|
136
|
+
m(a(Q), {
|
|
137
|
+
class: "ml-1 shrink-0",
|
|
138
|
+
icon: "ChevronDown",
|
|
139
|
+
size: "sm"
|
|
140
|
+
})
|
|
141
|
+
];
|
|
142
|
+
}),
|
|
143
|
+
_: 1
|
|
144
|
+
}, 512)
|
|
145
|
+
]),
|
|
146
|
+
_: 1
|
|
147
|
+
}, 8, ["isDeletable", "modelValue", "options"])
|
|
50
148
|
])
|
|
51
149
|
]),
|
|
52
|
-
default:
|
|
53
|
-
|
|
150
|
+
default: d(() => [
|
|
151
|
+
m(Y, {
|
|
152
|
+
layout: e.layout,
|
|
153
|
+
selectedSecuritySchemeUids: e.selectedSecuritySchemeUids
|
|
154
|
+
}, null, 8, ["layout", "selectedSecuritySchemeUids"]),
|
|
155
|
+
m(X, {
|
|
156
|
+
scheme: y.value,
|
|
157
|
+
state: a(f),
|
|
158
|
+
onClose: t[0] || (t[0] = (l) => a(f).hide()),
|
|
159
|
+
onDelete: t[1] || (t[1] = (l) => {
|
|
160
|
+
var o;
|
|
161
|
+
return E((o = y.value) == null ? void 0 : o.id);
|
|
162
|
+
})
|
|
163
|
+
}, null, 8, ["scheme", "state"])
|
|
54
164
|
]),
|
|
55
165
|
_: 1
|
|
56
|
-
}, 8, ["itemCount"]));
|
|
166
|
+
}, 8, ["itemCount", "layout"]));
|
|
57
167
|
}
|
|
58
168
|
});
|
|
59
169
|
export {
|
|
60
|
-
|
|
170
|
+
fe as default
|
|
61
171
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RequestAuthDataTable.vue.d.ts","sourceRoot":"","sources":["../../../../../src/views/Request/RequestSection/RequestAuth/RequestAuthDataTable.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RequestAuthDataTable.vue.d.ts","sourceRoot":"","sources":["../../../../../src/views/Request/RequestSection/RequestAuth/RequestAuthDataTable.vue"],"names":[],"mappings":"AA+LA,KAAK,WAAW,GAAG;IACjB,0BAA0B,EAAE,MAAM,EAAE,CAAA;IACpC,MAAM,CAAC,EAAE,QAAQ,GAAG,WAAW,CAAA;CAChC,CAAC;;AA4MF,wBAOG"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import t from "./RequestAuthDataTable.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
4
|
-
const
|
|
3
|
+
import o from "../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const m = /* @__PURE__ */ o(t, [["__scopeId", "data-v-77c33357"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
m as default
|
|
7
7
|
};
|