@scalar/components 0.13.24 → 0.13.26
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/dist/components/ScalarButton/variants.d.ts.map +1 -1
- package/dist/components/ScalarButton/variants.js +2 -8
- package/dist/components/ScalarColorModeToggle/ScalarColorModeToggleIcon.vue.d.ts +1 -1
- package/dist/components/ScalarColorModeToggle/ScalarColorModeToggleIcon.vue.d.ts.map +1 -1
- package/dist/components/ScalarColorModeToggle/ScalarColorModeToggleIcon.vue.js +2 -2
- package/dist/components/ScalarColorModeToggle/ScalarColorModeToggleIcon.vue2.js +14 -11
- package/dist/components/ScalarCombobox/types.d.ts.map +1 -1
- package/dist/components/ScalarFileUpload/ScalarFileUpload.stories.d.ts.map +1 -1
- package/dist/components/ScalarFileUpload/types.d.ts.map +1 -1
- package/dist/components/ScalarFloating/useResizeWithTarget.d.ts.map +1 -1
- package/dist/components/ScalarFloating/useResizeWithTarget.js +2 -6
- package/dist/components/ScalarIcon/ScalarIcon.stories.d.ts +1 -1
- package/dist/components/ScalarIcon/icons/Alert.svg.js +21 -0
- package/dist/components/ScalarIcon/icons/Markdown.svg.js +19 -0
- package/dist/components/ScalarIcon/icons/NotAllowed.svg.js +21 -0
- package/dist/components/ScalarIcon/icons/index.d.ts +1 -1
- package/dist/components/ScalarIcon/icons/index.d.ts.map +1 -1
- package/dist/components/ScalarIcon/utils/index.js +272 -266
- package/dist/components/ScalarIconButton/ScalarIconButton.stories.d.ts +1 -1
- package/dist/components/ScalarMenu/ScalarMenuTeamPicker.vue.d.ts.map +1 -1
- package/dist/components/ScalarMenu/ScalarMenuTeamPicker.vue.js +6 -6
- package/dist/components/ScalarModal/ScalarModal.stories.d.ts +10 -12
- package/dist/components/ScalarModal/ScalarModal.stories.d.ts.map +1 -1
- package/dist/components/ScalarModal/ScalarModal.vue.d.ts +3 -5
- package/dist/components/ScalarModal/ScalarModal.vue.d.ts.map +1 -1
- package/dist/components/ScalarModal/ScalarModal.vue.js +4 -4
- package/dist/components/ScalarModal/ScalarModal.vue2.js +42 -47
- package/dist/components/ScalarSearchInput/ScalarSearchInput.vue.d.ts.map +1 -1
- package/dist/components/ScalarSearchInput/ScalarSearchInput.vue.js +2 -2
- package/dist/components/ScalarSearchInput/ScalarSearchInput.vue2.js +34 -31
- package/dist/components/ScalarSearchResults/ScalarSearchResultItem.vue.d.ts.map +1 -1
- package/dist/components/ScalarSearchResults/ScalarSearchResultItem.vue.js +5 -8
- package/dist/components/ScalarSidebar/ScalarSidebar.stories.d.ts.map +1 -1
- package/dist/components/ScalarSidebar/ScalarSidebarButton.vue.d.ts.map +1 -1
- package/dist/components/ScalarSidebar/ScalarSidebarButton.vue.js +29 -30
- package/dist/components/ScalarSidebar/ScalarSidebarGroup.vue.d.ts +23 -6
- package/dist/components/ScalarSidebar/ScalarSidebarGroup.vue.d.ts.map +1 -1
- package/dist/components/ScalarSidebar/ScalarSidebarGroup.vue.js +37 -19
- package/dist/components/ScalarSidebar/ScalarSidebarIndent.vue.d.ts +20 -0
- package/dist/components/ScalarSidebar/ScalarSidebarIndent.vue.d.ts.map +1 -0
- package/dist/components/ScalarSidebar/ScalarSidebarIndent.vue.js +7 -0
- package/dist/components/ScalarSidebar/ScalarSidebarIndent.vue2.js +37 -0
- package/dist/components/ScalarSidebar/ScalarSidebarItem.vue.d.ts.map +1 -1
- package/dist/components/ScalarSidebar/ScalarSidebarItem.vue.js +8 -8
- package/dist/components/ScalarSidebar/ScalarSidebarItems.vue.js +3 -3
- package/dist/components/ScalarSidebar/types.d.ts +2 -0
- package/dist/components/ScalarSidebar/types.d.ts.map +1 -1
- package/dist/components/ScalarSidebar/useSidebarGroups.d.ts.map +1 -1
- package/dist/components/ScalarVirtualText/ScalarVirtualText.stories.d.ts.map +1 -1
- package/dist/helpers/add-scalar-classes.d.ts.map +1 -1
- package/dist/helpers/add-scalar-classes.js +1 -3
- package/dist/helpers/oas-utils.d.ts.map +1 -1
- package/dist/hooks/useBindCx.stories.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +6 -6
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Component } from 'vue';
|
|
2
|
+
import { type SidebarGroupLevel } from './useSidebarGroups.js';
|
|
2
3
|
/**
|
|
3
4
|
* Scalar Sidebar Group component
|
|
4
5
|
*
|
|
@@ -17,29 +18,45 @@ import type { Component } from 'vue';
|
|
|
17
18
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
18
19
|
modelValue?: boolean;
|
|
19
20
|
} & {
|
|
21
|
+
/** Override the element tag */
|
|
20
22
|
is?: Component | string;
|
|
21
23
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
24
|
"update:modelValue": (value: boolean) => any;
|
|
23
25
|
}, string, import("vue").PublicProps, Readonly<{
|
|
24
26
|
modelValue?: boolean;
|
|
25
27
|
} & {
|
|
28
|
+
/** Override the element tag */
|
|
26
29
|
is?: Component | string;
|
|
27
30
|
}> & Readonly<{
|
|
28
31
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
29
32
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, Readonly<{
|
|
30
33
|
/** The text content of the toggle */
|
|
31
|
-
default?: (
|
|
34
|
+
default?: (props: {
|
|
35
|
+
open: boolean;
|
|
36
|
+
}) => any;
|
|
32
37
|
/** Override the entire toggle button */
|
|
33
|
-
button?: (
|
|
38
|
+
button?: (props: {
|
|
39
|
+
open: boolean;
|
|
40
|
+
level: SidebarGroupLevel;
|
|
41
|
+
}) => any;
|
|
34
42
|
/** The list of sidebar subitems */
|
|
35
|
-
items?: (
|
|
43
|
+
items?: (props: {
|
|
44
|
+
open: boolean;
|
|
45
|
+
}) => any;
|
|
36
46
|
}> & {
|
|
37
47
|
/** The text content of the toggle */
|
|
38
|
-
default?: (
|
|
48
|
+
default?: (props: {
|
|
49
|
+
open: boolean;
|
|
50
|
+
}) => any;
|
|
39
51
|
/** Override the entire toggle button */
|
|
40
|
-
button?: (
|
|
52
|
+
button?: (props: {
|
|
53
|
+
open: boolean;
|
|
54
|
+
level: SidebarGroupLevel;
|
|
55
|
+
}) => any;
|
|
41
56
|
/** The list of sidebar subitems */
|
|
42
|
-
items?: (
|
|
57
|
+
items?: (props: {
|
|
58
|
+
open: boolean;
|
|
59
|
+
}) => any;
|
|
43
60
|
}>;
|
|
44
61
|
export default _default;
|
|
45
62
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScalarSidebarGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarSidebar/ScalarSidebarGroup.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ScalarSidebarGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarSidebar/ScalarSidebarGroup.vue"],"names":[],"mappings":"AAqFA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAA;AAMpC,OAAO,EAAE,KAAK,iBAAiB,EAAoB,MAAM,oBAAoB,CAAA;AAI7E;;;;;;;;;;;;;;GAcG;;iBAkCU,OAAO;;IA9BlB,+BAA+B;SAC1B,SAAS,GAAG,MAAM;;;;iBA6BZ,OAAO;;IA9BlB,+BAA+B;SAC1B,SAAS,GAAG,MAAM;;;;IAQvB,qCAAqC;cAC3B,CAAC,KAAK,EAAE;QAAE,IAAI,EAAE,OAAO,CAAA;KAAE,KAAK,GAAG;IAC3C,wCAAwC;aAC/B,CAAC,KAAK,EAAE;QAAE,IAAI,EAAE,OAAO,CAAC;QAAC,KAAK,EAAE,iBAAiB,CAAA;KAAE,KAAK,GAAG;IACpE,mCAAmC;YAC3B,CAAC,KAAK,EAAE;QAAE,IAAI,EAAE,OAAO,CAAA;KAAE,KAAK,GAAG;;IALzC,qCAAqC;cAC3B,CAAC,KAAK,EAAE;QAAE,IAAI,EAAE,OAAO,CAAA;KAAE,KAAK,GAAG;IAC3C,wCAAwC;aAC/B,CAAC,KAAK,EAAE;QAAE,IAAI,EAAE,OAAO,CAAC;QAAC,KAAK,EAAE,iBAAiB,CAAA;KAAE,KAAK,GAAG;IACpE,mCAAmC;YAC3B,CAAC,KAAK,EAAE;QAAE,IAAI,EAAE,OAAO,CAAA;KAAE,KAAK,GAAG;;AAjB3C,wBAkKC;AAWD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { defineComponent as d, mergeModels as p, useModel as c, openBlock as
|
|
2
|
-
import { useBindCx as
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
|
|
1
|
+
import { defineComponent as d, mergeModels as p, useModel as c, openBlock as i, createElementBlock as f, renderSlot as a, unref as t, createVNode as r, withCtx as n, createBlock as v, resolveDynamicComponent as _, normalizeProps as x, mergeProps as b, createCommentVNode as C } from "vue";
|
|
2
|
+
import { useBindCx as S } from "../../hooks/useBindCx.js";
|
|
3
|
+
import $ from "./ScalarSidebarButton.vue.js";
|
|
4
|
+
import g from "./ScalarSidebarGroupToggle.vue.js";
|
|
5
|
+
import k from "./ScalarSidebarIndent.vue.js";
|
|
6
|
+
import { useSidebarGroups as B } from "./useSidebarGroups.js";
|
|
7
|
+
const V = { class: "group/item contents" }, y = {}, A = /* @__PURE__ */ d({
|
|
7
8
|
...y,
|
|
8
9
|
inheritAttrs: !1,
|
|
9
10
|
__name: "ScalarSidebarGroup",
|
|
@@ -14,34 +15,51 @@ const S = { class: "contents" }, y = {}, w = /* @__PURE__ */ d({
|
|
|
14
15
|
modelModifiers: {}
|
|
15
16
|
}),
|
|
16
17
|
emits: ["update:modelValue"],
|
|
17
|
-
setup(
|
|
18
|
-
const e = c(
|
|
19
|
-
return (o,
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
setup(u) {
|
|
19
|
+
const e = c(u, "modelValue"), { level: l } = B({ increment: !0 }), { cx: m } = S();
|
|
20
|
+
return (o, s) => (i(), f("li", V, [
|
|
21
|
+
a(o.$slots, "button", {
|
|
22
|
+
level: t(l),
|
|
23
|
+
open: !!e.value
|
|
24
|
+
}, () => [
|
|
25
|
+
r($, {
|
|
22
26
|
is: "button",
|
|
23
27
|
"aria-expanded": e.value,
|
|
24
|
-
|
|
25
|
-
|
|
28
|
+
class: "text-c-1 bg-b-1",
|
|
29
|
+
indent: t(l),
|
|
30
|
+
onClick: s[0] || (s[0] = (M) => e.value = !e.value)
|
|
26
31
|
}, {
|
|
32
|
+
indent: n(() => [
|
|
33
|
+
r(k, {
|
|
34
|
+
class: "mr-0",
|
|
35
|
+
indent: t(l)
|
|
36
|
+
}, null, 8, ["indent"])
|
|
37
|
+
]),
|
|
27
38
|
icon: n(() => [
|
|
28
|
-
|
|
39
|
+
r(g, {
|
|
40
|
+
class: "text-c-3",
|
|
41
|
+
open: e.value
|
|
42
|
+
}, null, 8, ["open"])
|
|
29
43
|
]),
|
|
30
44
|
default: n(() => [
|
|
31
|
-
|
|
45
|
+
a(o.$slots, "default", {
|
|
46
|
+
open: !!e.value
|
|
47
|
+
})
|
|
32
48
|
]),
|
|
33
49
|
_: 3
|
|
34
50
|
}, 8, ["aria-expanded", "indent"])
|
|
35
51
|
]),
|
|
36
|
-
e.value ? (
|
|
52
|
+
e.value ? (i(), v(_(o.is), x(b({ key: 0 }, t(m)("flex flex-col gap-px"))), {
|
|
37
53
|
default: n(() => [
|
|
38
|
-
|
|
54
|
+
a(o.$slots, "items", {
|
|
55
|
+
open: !!e.value
|
|
56
|
+
})
|
|
39
57
|
]),
|
|
40
58
|
_: 3
|
|
41
|
-
}, 16)) :
|
|
59
|
+
}, 16)) : C("", !0)
|
|
42
60
|
]));
|
|
43
61
|
}
|
|
44
62
|
});
|
|
45
63
|
export {
|
|
46
|
-
|
|
64
|
+
A as default
|
|
47
65
|
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { SidebarGroupLevel } from './useSidebarGroups.js';
|
|
2
|
+
/**
|
|
3
|
+
* Scalar Sidebar Indent component
|
|
4
|
+
*
|
|
5
|
+
* @example
|
|
6
|
+
* <ScalarSidebarIndent :indent="1" />
|
|
7
|
+
*/
|
|
8
|
+
declare const _default: import("vue").DefineComponent<{
|
|
9
|
+
/** The number of indents to render @default 0 */
|
|
10
|
+
indent?: SidebarGroupLevel;
|
|
11
|
+
/** Whether the indent is selected @default false */
|
|
12
|
+
selected?: boolean;
|
|
13
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
14
|
+
/** The number of indents to render @default 0 */
|
|
15
|
+
indent?: SidebarGroupLevel;
|
|
16
|
+
/** Whether the indent is selected @default false */
|
|
17
|
+
selected?: boolean;
|
|
18
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
export default _default;
|
|
20
|
+
//# sourceMappingURL=ScalarSidebarIndent.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScalarSidebarIndent.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarSidebar/ScalarSidebarIndent.vue"],"names":[],"mappings":"AAiFA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;AAI3D;;;;;GAKG;;IAID,iDAAiD;aACxC,iBAAiB;IAC1B,oDAAoD;eACzC,OAAO;;IAHlB,iDAAiD;aACxC,iBAAiB;IAC1B,oDAAoD;eACzC,OAAO;;AANpB,wBAkHC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { defineComponent as o, computed as c, openBlock as t, createElementBlock as n, normalizeProps as u, guardReactiveProps as b, unref as m, Fragment as f, renderList as p, createElementVNode as v, normalizeClass as g, createCommentVNode as y } from "vue";
|
|
2
|
+
import { useBindCx as _ } from "../../hooks/useBindCx.js";
|
|
3
|
+
const h = {}, C = /* @__PURE__ */ o({
|
|
4
|
+
...h,
|
|
5
|
+
inheritAttrs: !1,
|
|
6
|
+
__name: "ScalarSidebarIndent",
|
|
7
|
+
props: {
|
|
8
|
+
indent: { default: 0 },
|
|
9
|
+
selected: { type: Boolean, default: !1 }
|
|
10
|
+
},
|
|
11
|
+
setup(s) {
|
|
12
|
+
const a = c(() => Array.from({ length: s.indent }, (e, r) => r)), { cx: d } = _();
|
|
13
|
+
return (e, r) => (t(), n("div", u(b(
|
|
14
|
+
m(d)("scalar-sidebar-indent flex justify-center", {
|
|
15
|
+
"mr-[calc(18px-var(--scalar-sidebar-indent))]": e.indent > 0,
|
|
16
|
+
"scalar-sidebar-indent-selected": e.selected
|
|
17
|
+
})
|
|
18
|
+
)), [
|
|
19
|
+
(t(!0), n(f, null, p(a.value, (l, i) => (t(), n("div", {
|
|
20
|
+
key: l,
|
|
21
|
+
class: "relative w-[var(--scalar-sidebar-indent)]"
|
|
22
|
+
}, [
|
|
23
|
+
r[0] || (r[0] = v("div", { class: "scalar-sidebar-indent-border absolute left-1.75 inset-y-0 w-border bg-sidebar-indent-border" }, null, -1)),
|
|
24
|
+
i === a.value.length - 1 ? (t(), n("div", {
|
|
25
|
+
key: 0,
|
|
26
|
+
class: g([
|
|
27
|
+
"absolute left-1.75 inset-y-0 w-border",
|
|
28
|
+
e.selected ? "bg-sidebar-indent-active" : "group-hover/button:bg-sidebar-indent-hover"
|
|
29
|
+
])
|
|
30
|
+
}, null, 2)) : y("", !0)
|
|
31
|
+
]))), 128))
|
|
32
|
+
], 16));
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
export {
|
|
36
|
+
C as default
|
|
37
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScalarSidebarItem.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarSidebar/ScalarSidebarItem.vue"],"names":[],"mappings":"AAmDA,OAAO,KAAK,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAA;AAK7E;;;;;;;;;;;;;;;;;GAiBG;;AACH,
|
|
1
|
+
{"version":3,"file":"ScalarSidebarItem.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarSidebar/ScalarSidebarItem.vue"],"names":[],"mappings":"AAmDA,OAAO,KAAK,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAA;AAK7E;;;;;;;;;;;;;;;;;GAiBG;;AACH,wBAwFC;AAWD,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
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as n, useSlots as s, openBlock as i, createElementBlock as l, createVNode as a, mergeProps as d, unref as p, createSlots as c, renderList as _, withCtx as m, renderSlot as f } from "vue";
|
|
2
2
|
import u from "./ScalarSidebarButton.vue.js";
|
|
3
3
|
import { useSidebarGroups as S } from "./useSidebarGroups.js";
|
|
4
|
-
const h = { class: "contents" }, B = {},
|
|
4
|
+
const h = { class: "group/item contents" }, B = {}, C = /* @__PURE__ */ n({
|
|
5
5
|
...B,
|
|
6
6
|
inheritAttrs: !1,
|
|
7
7
|
__name: "ScalarSidebarItem",
|
|
@@ -14,15 +14,15 @@ const h = { class: "contents" }, B = {}, g = /* @__PURE__ */ r({
|
|
|
14
14
|
} }
|
|
15
15
|
},
|
|
16
16
|
setup($) {
|
|
17
|
-
const o = s(), { level:
|
|
17
|
+
const o = s(), { level: r } = S();
|
|
18
18
|
return (e, b) => (i(), l("li", h, [
|
|
19
19
|
a(u, d({ ...e.$attrs, ...e.$props }, {
|
|
20
|
-
indent: e.indent ?? p(
|
|
20
|
+
indent: e.indent ?? p(r)
|
|
21
21
|
}), c({ _: 2 }, [
|
|
22
|
-
_(o, (
|
|
22
|
+
_(o, (g, t) => ({
|
|
23
23
|
name: t,
|
|
24
|
-
fn:
|
|
25
|
-
|
|
24
|
+
fn: m(() => [
|
|
25
|
+
f(e.$slots, t)
|
|
26
26
|
])
|
|
27
27
|
}))
|
|
28
28
|
]), 1040, ["indent"])
|
|
@@ -30,5 +30,5 @@ const h = { class: "contents" }, B = {}, g = /* @__PURE__ */ r({
|
|
|
30
30
|
}
|
|
31
31
|
});
|
|
32
32
|
export {
|
|
33
|
-
|
|
33
|
+
C as default
|
|
34
34
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as o, openBlock as r, createBlock as
|
|
1
|
+
import { defineComponent as o, openBlock as r, createBlock as a, resolveDynamicComponent as n, normalizeProps as s, guardReactiveProps as l, unref as p, withCtx as i, renderSlot as c } from "vue";
|
|
2
2
|
import { useBindCx as f } from "../../hooks/useBindCx.js";
|
|
3
3
|
const u = {}, C = /* @__PURE__ */ o({
|
|
4
4
|
...u,
|
|
@@ -9,8 +9,8 @@ const u = {}, C = /* @__PURE__ */ o({
|
|
|
9
9
|
},
|
|
10
10
|
setup(m) {
|
|
11
11
|
const { cx: t } = f();
|
|
12
|
-
return (e, _) => (r(), n(
|
|
13
|
-
default:
|
|
12
|
+
return (e, _) => (r(), a(n(e.is), s(l(p(t)("flex flex-col p-3 gap-px"))), {
|
|
13
|
+
default: i(() => [
|
|
14
14
|
c(e.$slots, "default")
|
|
15
15
|
]),
|
|
16
16
|
_: 3
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarSidebar/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAA;AAEpC,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,eAAe,CAAA;AACzC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;AAE3D,gCAAgC;AAChC,MAAM,MAAM,sBAAsB,GAAG;IACnC,qCAAqC;IACrC,EAAE,CAAC,EAAE,SAAS,GAAG,MAAM,CAAA;IACvB,iCAAiC;IACjC,IAAI,CAAC,EAAE,IAAI,CAAA;IACX,yCAAyC;IACzC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,qCAAqC;IACrC,MAAM,CAAC,EAAE,iBAAiB,CAAA;CAC3B,CAAA;AAED,gCAAgC;AAChC,MAAM,MAAM,sBAAsB,GAAG;IACnC,0CAA0C;IAC1C,OAAO,CAAC,EAAE,MAAM,GAAG,CAAA;IACnB,wBAAwB;IACxB,IAAI,CAAC,EAAE,MAAM,GAAG,CAAA;IAChB,8DAA8D;IAC9D,KAAK,CAAC,EAAE,MAAM,GAAG,CAAA;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarSidebar/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAA;AAEpC,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,eAAe,CAAA;AACzC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;AAE3D,gCAAgC;AAChC,MAAM,MAAM,sBAAsB,GAAG;IACnC,qCAAqC;IACrC,EAAE,CAAC,EAAE,SAAS,GAAG,MAAM,CAAA;IACvB,iCAAiC;IACjC,IAAI,CAAC,EAAE,IAAI,CAAA;IACX,yCAAyC;IACzC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,qCAAqC;IACrC,MAAM,CAAC,EAAE,iBAAiB,CAAA;CAC3B,CAAA;AAED,gCAAgC;AAChC,MAAM,MAAM,sBAAsB,GAAG;IACnC,0CAA0C;IAC1C,OAAO,CAAC,EAAE,MAAM,GAAG,CAAA;IACnB,wBAAwB;IACxB,IAAI,CAAC,EAAE,MAAM,GAAG,CAAA;IAChB,8DAA8D;IAC9D,KAAK,CAAC,EAAE,MAAM,GAAG,CAAA;IACjB,2CAA2C;IAC3C,MAAM,CAAC,EAAE,MAAM,GAAG,CAAA;CACnB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useSidebarGroups.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarSidebar/useSidebarGroups.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAmB,MAAM,KAAK,CAAA;AAExD;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;AAEzD;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,EAAe,YAAY,CAAC,iBAAiB,CAAC,CAAA;AAEhF;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,oBAE1B;IACD,2DAA2D;IAC3D,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;;
|
|
1
|
+
{"version":3,"file":"useSidebarGroups.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarSidebar/useSidebarGroups.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAmB,MAAM,KAAK,CAAA;AAExD;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;AAEzD;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,EAAe,YAAY,CAAC,iBAAiB,CAAC,CAAA;AAEhF;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,oBAE1B;IACD,2DAA2D;IAC3D,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;;CAOA,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScalarVirtualText.stories.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarVirtualText/ScalarVirtualText.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,iBAAiB,CAAA;AAIrD,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkBgC,CAAA;AAE1C,eAAe,IAAI,CAAA;AACnB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAA;AAElC,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"ScalarVirtualText.stories.d.ts","sourceRoot":"","sources":["../../../src/components/ScalarVirtualText/ScalarVirtualText.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,iBAAiB,CAAA;AAIrD,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkBgC,CAAA;AAE1C,eAAe,IAAI,CAAA;AACnB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAA;AAElC,eAAO,MAAM,IAAI,EAAE,KASlB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-scalar-classes.d.ts","sourceRoot":"","sources":["../../src/helpers/add-scalar-classes.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,0BAA0B,
|
|
1
|
+
{"version":3,"file":"add-scalar-classes.d.ts","sourceRoot":"","sources":["../../src/helpers/add-scalar-classes.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,0BAA0B,YAwBtC,CAAA"}
|
|
@@ -5,9 +5,7 @@ const l = () => {
|
|
|
5
5
|
else {
|
|
6
6
|
const a = new MutationObserver((t) => {
|
|
7
7
|
const d = t.find(
|
|
8
|
-
(s) => Array.from(s.addedNodes).find(
|
|
9
|
-
(o) => o.id === "headlessui-portal-root"
|
|
10
|
-
)
|
|
8
|
+
(s) => Array.from(s.addedNodes).find((o) => o.id === "headlessui-portal-root")
|
|
11
9
|
);
|
|
12
10
|
if (d) {
|
|
13
11
|
const s = d.addedNodes[0];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oas-utils.d.ts","sourceRoot":"","sources":["../../src/helpers/oas-utils.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;
|
|
1
|
+
{"version":3,"file":"oas-utils.d.ts","sourceRoot":"","sources":["../../src/helpers/oas-utils.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAiCH;;GAEG;AACH,eAAO,MAAM,eAAe,UAAW,MAAM,GAAG,MAAM,GAAG,GAAG,EAAE,GAAG,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,WAqBhF,CAAA;AAwBD;;;;;GAKG;AACH,eAAO,MAAM,KAAK,OAAQ,MAAM,qBAA0C,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useBindCx.stories.d.ts","sourceRoot":"","sources":["../../src/hooks/useBindCx.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,iBAAiB,CAAA;
|
|
1
|
+
{"version":3,"file":"useBindCx.stories.d.ts","sourceRoot":"","sources":["../../src/hooks/useBindCx.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,iBAAiB,CAAA;AA4BrD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiDM,CAAA;AAEhB,eAAe,IAAI,CAAA;AACnB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAA;AAElC,eAAO,MAAM,IAAI,EAAE,KAAU,CAAA"}
|