@scalar/components 0.12.13 → 0.12.15
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/ScalarCodeBlock/ScalarCodeBlock.vue.js +11 -11
- package/dist/components/ScalarIcon/IconList.vue.d.ts +14 -1
- package/dist/components/ScalarIcon/IconList.vue.d.ts.map +1 -1
- package/dist/components/ScalarIcon/ScalarIcon.stories.d.ts +47 -9
- package/dist/components/ScalarIcon/ScalarIcon.stories.d.ts.map +1 -1
- package/dist/components/ScalarIcon/ScalarIcon.vue.d.ts +2 -0
- package/dist/components/ScalarIcon/ScalarIcon.vue.d.ts.map +1 -1
- package/dist/components/ScalarIcon/ScalarIcon.vue.js +5 -33
- package/dist/components/ScalarIcon/ScalarIcon.vue2.js +37 -2
- package/dist/components/ScalarIcon/icons/Add.svg.js +3 -3
- package/dist/components/ScalarIcon/icons/ArrowLeft.svg.js +14 -13
- package/dist/components/ScalarIcon/icons/ArrowRight.svg.js +11 -10
- package/dist/components/ScalarIcon/icons/Branch.svg.js +11 -11
- package/dist/components/ScalarIcon/icons/Checkmark.svg.js +3 -3
- package/dist/components/ScalarIcon/icons/ChevronDown.svg.js +5 -5
- package/dist/components/ScalarIcon/icons/ChevronLeft.svg.js +2 -2
- package/dist/components/ScalarIcon/icons/ChevronRight.svg.js +2 -2
- package/dist/components/ScalarIcon/icons/ChevronUp.svg.js +5 -5
- package/dist/components/ScalarIcon/icons/CodeFolder.svg.js +14 -13
- package/dist/components/ScalarIcon/icons/Collection.svg.js +11 -21
- package/dist/components/ScalarIcon/icons/DocsPage.svg.js +12 -11
- package/dist/components/ScalarIcon/icons/Example.svg.js +2 -4
- package/dist/components/ScalarIcon/icons/FilterList.svg.js +3 -3
- package/dist/components/ScalarIcon/icons/Folder.svg.js +0 -2
- package/dist/components/ScalarIcon/icons/Google.svg.js +16 -0
- package/dist/components/ScalarIcon/icons/Hide.svg.js +3 -10
- package/dist/components/ScalarIcon/icons/History.svg.js +14 -21
- package/dist/components/ScalarIcon/icons/House.svg.js +19 -0
- package/dist/components/ScalarIcon/icons/Import.svg.js +14 -11
- package/dist/components/ScalarIcon/icons/Key.svg.js +13 -14
- package/dist/components/ScalarIcon/icons/Link.svg.js +13 -15
- package/dist/components/ScalarIcon/icons/Menu.svg.js +3 -3
- package/dist/components/ScalarIcon/icons/Page.svg.js +13 -10
- package/dist/components/ScalarIcon/icons/{AddLine.svg.js → Pencil.svg.js} +6 -8
- package/dist/components/ScalarIcon/icons/Play.svg.js +6 -9
- package/dist/components/ScalarIcon/icons/Search.svg.js +16 -14
- package/dist/components/ScalarIcon/icons/Show.svg.js +15 -14
- package/dist/components/ScalarIcon/icons/Sort.svg.js +16 -11
- package/dist/components/ScalarIcon/icons/Terminal.svg.js +11 -10
- package/dist/components/ScalarIcon/icons/icons.d.ts +1 -1
- package/dist/components/ScalarIcon/icons/icons.d.ts.map +1 -1
- package/dist/components/ScalarIcon/icons/index.js +1 -1
- package/dist/components/ScalarIcon/icons/programming-script-code.svg.js +3 -3
- package/dist/components/ScalarIconButton/ScalarIconButton.stories.d.ts +9 -3
- package/dist/components/ScalarIconButton/ScalarIconButton.stories.d.ts.map +1 -1
- package/dist/components/ScalarIconButton/ScalarIconButton.vue.d.ts +2 -0
- package/dist/components/ScalarIconButton/ScalarIconButton.vue.d.ts.map +1 -1
- package/dist/components/ScalarIconButton/ScalarIconButton.vue.js +22 -18
- package/dist/components/ScalarListbox/ScalarListbox.vue.d.ts.map +1 -1
- package/dist/components/ScalarListbox/ScalarListbox.vue.js +12 -11
- package/dist/components/ScalarModal/ScalarModal.vue.d.ts.map +1 -1
- package/dist/components/ScalarModal/ScalarModal.vue.js +4 -4
- package/dist/components/ScalarSearchInput/ScalarSearchInput.vue.d.ts.map +1 -1
- package/dist/components/ScalarSearchInput/ScalarSearchInput.vue.js +13 -12
- package/dist/components/ScalarSearchResults/ScalarSearchResultItem.vue.js +4 -4
- package/dist/components/ScalarSearchResults/ScalarSearchResults.stories.d.ts +4 -4
- package/dist/style.css +1 -1
- package/package.json +4 -4
- package/dist/components/ScalarIcon/icons/JsonObject.svg.js +0 -21
- package/dist/components/ScalarIcon/icons/Response.svg.js +0 -20
- package/dist/components/ScalarIcon/icons/SearchNew.svg.js +0 -23
|
@@ -2,20 +2,20 @@ import { openBlock as e, createElementBlock as o, createElementVNode as t } from
|
|
|
2
2
|
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "none",
|
|
5
|
-
viewBox: "0 0
|
|
5
|
+
viewBox: "0 0 24 24"
|
|
6
6
|
}, r = /* @__PURE__ */ t("path", {
|
|
7
7
|
stroke: "currentColor",
|
|
8
8
|
"stroke-linecap": "round",
|
|
9
9
|
"stroke-linejoin": "round",
|
|
10
|
-
d: "
|
|
10
|
+
d: "M19.5 15.75 12 8.25l-7.5 7.5"
|
|
11
11
|
}, null, -1), c = [
|
|
12
12
|
r
|
|
13
13
|
];
|
|
14
|
-
function s
|
|
14
|
+
function l(s, d) {
|
|
15
15
|
return e(), o("svg", n, [...c]);
|
|
16
16
|
}
|
|
17
|
-
const _ = { render:
|
|
17
|
+
const _ = { render: l };
|
|
18
18
|
export {
|
|
19
19
|
_ as default,
|
|
20
|
-
|
|
20
|
+
l as render
|
|
21
21
|
};
|
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
import { openBlock as o, createElementBlock as
|
|
2
|
-
const
|
|
1
|
+
import { openBlock as o, createElementBlock as n, createElementVNode as e } from "vue";
|
|
2
|
+
const t = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
|
|
5
|
-
viewBox: "0 0 12 12"
|
|
4
|
+
viewBox: "0 0 24 24"
|
|
6
5
|
}, r = /* @__PURE__ */ e("path", {
|
|
6
|
+
fill: "none",
|
|
7
7
|
stroke: "currentColor",
|
|
8
8
|
"stroke-linecap": "round",
|
|
9
9
|
"stroke-linejoin": "round",
|
|
10
|
-
d: "
|
|
11
|
-
}, null, -1),
|
|
10
|
+
d: "M21.75 9V6a1.5 1.5 0 0 0-1.5-1.5h-12V3a1.5 1.5 0 0 0-1.5-1.5h-4.5A1.5 1.5 0 0 0 .75 3v17.8a1.7 1.7 0 0 0 3.336.438l2.352-11.154A1.5 1.5 0 0 1 7.879 9za1.5 1.5 0 0 1 1.45 1.886l-2.2 10.5a1.5 1.5 0 0 1-1.45 1.114H2.447"
|
|
11
|
+
}, null, -1), l = /* @__PURE__ */ e("path", {
|
|
12
|
+
fill: "none",
|
|
12
13
|
stroke: "currentColor",
|
|
13
14
|
"stroke-linecap": "round",
|
|
14
15
|
"stroke-linejoin": "round",
|
|
15
|
-
d: "
|
|
16
|
+
d: "m12 13.5-2.25 2.25L12 18m4.5-4.5 2.25 2.25L16.5 18"
|
|
16
17
|
}, null, -1), s = [
|
|
17
18
|
r,
|
|
18
|
-
|
|
19
|
+
l
|
|
19
20
|
];
|
|
20
|
-
function
|
|
21
|
-
return o(),
|
|
21
|
+
function c(d, i) {
|
|
22
|
+
return o(), n("svg", t, [...s]);
|
|
22
23
|
}
|
|
23
|
-
const
|
|
24
|
+
const u = { render: c };
|
|
24
25
|
export {
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
u as default,
|
|
27
|
+
c as render
|
|
27
28
|
};
|
|
@@ -1,31 +1,21 @@
|
|
|
1
|
-
import { openBlock as
|
|
2
|
-
const
|
|
1
|
+
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
|
2
|
+
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
width: "24",
|
|
5
|
-
height: "24",
|
|
6
4
|
fill: "none",
|
|
7
5
|
viewBox: "0 0 24 24"
|
|
8
|
-
},
|
|
6
|
+
}, c = /* @__PURE__ */ t("path", {
|
|
9
7
|
stroke: "currentColor",
|
|
10
8
|
"stroke-linecap": "round",
|
|
11
9
|
"stroke-linejoin": "round",
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
/* @__PURE__ */ e("path", { d: "M20.86 16.6c0 .32-.16.64-.47.72l-6.3 2.83a.93.93 0 0 1-.8-.08c-.23-.16-.38-.4-.38-.63V4.56c0-.24.15-.55.39-.63.24-.16.47-.16.79-.08l6.3 2.83c.31.16.47.4.47.71v9.22ZM10.7 19.52a.77.77 0 0 1-.7-.08.72.72 0 0 1-.32-.63V5.35c0-.24.15-.56.4-.63.23-.16.46-.16.78-.08M7.43 18.73a.77.77 0 0 1-.7-.08.72.72 0 0 1-.32-.63V6.05c0-.23.16-.55.4-.63.23-.15.47-.15.78-.07m-3.43 12.6a.77.77 0 0 1-.7-.08.72.72 0 0 1-.32-.63V6.84c0-.23.16-.55.4-.63.23-.16.47-.16.78-.08" })
|
|
16
|
-
], -1), r = /* @__PURE__ */ e("defs", null, [
|
|
17
|
-
/* @__PURE__ */ e("clipPath", { id: "a" }, [
|
|
18
|
-
/* @__PURE__ */ e("path", { d: "M0 0h24v24H0z" })
|
|
19
|
-
])
|
|
20
|
-
], -1), l = [
|
|
21
|
-
n,
|
|
22
|
-
r
|
|
10
|
+
d: "M20.86 16.6c0 .32-.16.64-.47.72l-6.3 2.83a.93.93 0 0 1-.8-.08c-.23-.16-.38-.4-.38-.63V4.56c0-.24.15-.55.39-.63.24-.16.47-.16.79-.08l6.3 2.83c.31.16.47.4.47.71v9.22zM10.7 19.52a.77.77 0 0 1-.7-.08.72.72 0 0 1-.32-.63V5.35c0-.24.15-.56.4-.63.23-.16.46-.16.78-.08M7.43 18.73a.77.77 0 0 1-.7-.08.72.72 0 0 1-.32-.63V6.05c0-.23.16-.55.4-.63.23-.15.47-.15.78-.07m-3.43 12.6a.77.77 0 0 1-.7-.08.72.72 0 0 1-.32-.63V6.84c0-.23.16-.55.4-.63.23-.16.47-.16.78-.08"
|
|
11
|
+
}, null, -1), r = [
|
|
12
|
+
c
|
|
23
13
|
];
|
|
24
|
-
function
|
|
25
|
-
return
|
|
14
|
+
function l(s, a) {
|
|
15
|
+
return e(), o("svg", n, [...r]);
|
|
26
16
|
}
|
|
27
|
-
const
|
|
17
|
+
const d = { render: l };
|
|
28
18
|
export {
|
|
29
|
-
|
|
30
|
-
|
|
19
|
+
d as default,
|
|
20
|
+
l as render
|
|
31
21
|
};
|
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
import { openBlock as o, createElementBlock as
|
|
2
|
-
const
|
|
1
|
+
import { openBlock as o, createElementBlock as n, createElementVNode as e } from "vue";
|
|
2
|
+
const t = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
|
|
5
|
-
viewBox: "0 0 12 12"
|
|
4
|
+
viewBox: "0 0 24 24"
|
|
6
5
|
}, r = /* @__PURE__ */ e("path", {
|
|
6
|
+
fill: "none",
|
|
7
7
|
stroke: "currentColor",
|
|
8
8
|
"stroke-linecap": "round",
|
|
9
9
|
"stroke-linejoin": "round",
|
|
10
|
-
d: "
|
|
10
|
+
d: "M5.4 22.2h13c1.1 0 2-.9 2-2V3.6c0-1.1-.9-2-2-2h-9l-6 6v12.6c0 1.1.9 2 2 2"
|
|
11
11
|
}, null, -1), c = /* @__PURE__ */ e("path", {
|
|
12
|
+
fill: "none",
|
|
12
13
|
stroke: "currentColor",
|
|
13
14
|
"stroke-linecap": "round",
|
|
14
15
|
"stroke-linejoin": "round",
|
|
15
|
-
d: "
|
|
16
|
-
}, null, -1),
|
|
16
|
+
d: "M3.6 7.6h4c1.1 0 2-.9 2-2v-4zm9.4 0h4m-10 5h10M7 17.4h10"
|
|
17
|
+
}, null, -1), l = [
|
|
17
18
|
r,
|
|
18
19
|
c
|
|
19
20
|
];
|
|
20
|
-
function
|
|
21
|
-
return o(),
|
|
21
|
+
function s(i, d) {
|
|
22
|
+
return o(), n("svg", t, [...l]);
|
|
22
23
|
}
|
|
23
|
-
const u = { render:
|
|
24
|
+
const u = { render: s };
|
|
24
25
|
export {
|
|
25
26
|
u as default,
|
|
26
|
-
|
|
27
|
+
s as render
|
|
27
28
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
|
2
2
|
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
width: "24",
|
|
5
|
-
height: "24",
|
|
6
4
|
fill: "none",
|
|
7
5
|
viewBox: "0 0 24 24"
|
|
8
6
|
}, l = /* @__PURE__ */ t("path", {
|
|
@@ -16,8 +14,8 @@ const n = {
|
|
|
16
14
|
function a(c, s) {
|
|
17
15
|
return e(), o("svg", n, [...r]);
|
|
18
16
|
}
|
|
19
|
-
const
|
|
17
|
+
const i = { render: a };
|
|
20
18
|
export {
|
|
21
|
-
|
|
19
|
+
i as default,
|
|
22
20
|
a as render
|
|
23
21
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
|
2
2
|
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
|
|
5
|
-
viewBox: "0 0 15 15"
|
|
4
|
+
viewBox: "0 0 24 24"
|
|
6
5
|
}, r = /* @__PURE__ */ t("path", {
|
|
6
|
+
fill: "none",
|
|
7
7
|
stroke: "currentColor",
|
|
8
8
|
"stroke-linecap": "round",
|
|
9
9
|
"stroke-linejoin": "round",
|
|
10
|
-
d: "
|
|
10
|
+
d: "M.75 4.293h22.5M3.146 9.431h17.708M8.72 19.707h6.56m-9.737-5.138h12.914"
|
|
11
11
|
}, null, -1), s = [
|
|
12
12
|
r
|
|
13
13
|
];
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
|
2
|
+
const n = {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
fill: "currentColor",
|
|
5
|
+
viewBox: "0 0 24 24"
|
|
6
|
+
}, r = /* @__PURE__ */ t("path", { d: "M23.93 10.67a.76.76 0 0 0-.75-.67H12.75a.76.76 0 0 0-.75.75v3.5a.76.76 0 0 0 .75.75h5.58A7 7 0 1 1 12 5a7 7 0 0 1 4.23 1.42.74.74 0 0 0 1-.07l2.47-2.49a.75.75 0 0 0 .22-.57.77.77 0 0 0-.27-.54A12 12 0 1 0 24 12a12 12 0 0 0-.07-1.33" }, null, -1), c = [
|
|
7
|
+
r
|
|
8
|
+
];
|
|
9
|
+
function l(a, s) {
|
|
10
|
+
return e(), o("svg", n, [...c]);
|
|
11
|
+
}
|
|
12
|
+
const _ = { render: l };
|
|
13
|
+
export {
|
|
14
|
+
_ as default,
|
|
15
|
+
l as render
|
|
16
|
+
};
|
|
@@ -2,22 +2,15 @@ import { openBlock as o, createElementBlock as t, createElementVNode as e } from
|
|
|
2
2
|
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "none",
|
|
5
|
-
viewBox: "0 0 12 12"
|
|
6
|
-
}, r = /* @__PURE__ */ e("path", {
|
|
7
5
|
stroke: "currentColor",
|
|
8
6
|
"stroke-linecap": "round",
|
|
9
7
|
"stroke-linejoin": "round",
|
|
10
|
-
|
|
11
|
-
}, null, -1), c = /* @__PURE__ */ e("path", {
|
|
12
|
-
stroke: "currentColor",
|
|
13
|
-
"stroke-linecap": "round",
|
|
14
|
-
"stroke-linejoin": "round",
|
|
15
|
-
d: "M4.5 7.1c-.6-.8-.4-2 .5-2.6.6-.5 1.6-.5 2.2.1M7.8 6C7.8 7 7 7.8 6 7.8"
|
|
16
|
-
}, null, -1), s = [
|
|
8
|
+
viewBox: "0 0 24 24"
|
|
9
|
+
}, r = /* @__PURE__ */ e("path", { d: "M2.78 21 21.53 3M9 19.05a9.9 9.9 0 0 0 3 .45c4.1.07 8.26-2.81 10.82-5.64a1.65 1.65 0 0 0 0-2.22 20 20 0 0 0-3.07-2.76m-2.66-1.61A11.3 11.3 0 0 0 12 6c-4-.07-8.2 2.75-10.82 5.64a1.65 1.65 0 0 0 0 2.22 20 20 0 0 0 4.93 4M9 15.07a3.85 3.85 0 0 1 5.5-5.28" }, null, -1), c = /* @__PURE__ */ e("path", { d: "M15.75 12.75A3.75 3.75 0 0 1 12 16.5" }, null, -1), s = [
|
|
17
10
|
r,
|
|
18
11
|
c
|
|
19
12
|
];
|
|
20
|
-
function l(d,
|
|
13
|
+
function l(d, a) {
|
|
21
14
|
return o(), t("svg", n, [...s]);
|
|
22
15
|
}
|
|
23
16
|
const _ = { render: l };
|
|
@@ -1,27 +1,20 @@
|
|
|
1
|
-
import { openBlock as
|
|
2
|
-
const
|
|
1
|
+
import { openBlock as o, createElementBlock as t, createElementVNode as e } from "vue";
|
|
2
|
+
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "none",
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
fill: "currentColor",
|
|
13
|
-
"fill-rule": "evenodd",
|
|
14
|
-
d: "M12.5 7a5.5 5.5 0 0 0-9.82-3.405l.966.965a.5.5 0 0 1-.353.854H.5a.5.5 0 0 1-.5-.5V2.12a.5.5 0 0 1 .854-.354l.76.761A7 7 0 1 1 .187 8.614a.75.75 0 0 1 1.46-.344A5.5 5.5 0 0 0 12.5 7",
|
|
15
|
-
"clip-rule": "evenodd"
|
|
16
|
-
}, null, -1), d = [
|
|
17
|
-
n,
|
|
18
|
-
r
|
|
5
|
+
stroke: "currentColor",
|
|
6
|
+
"stroke-linecap": "round",
|
|
7
|
+
"stroke-linejoin": "round",
|
|
8
|
+
viewBox: "0 0 24 24"
|
|
9
|
+
}, r = /* @__PURE__ */ e("path", { d: "M12.9 6.8v6.1h4.7" }, null, -1), s = /* @__PURE__ */ e("path", { d: "M6.1 17.2c1.6 2.2 4.2 3.6 7.1 3.6 4.8 0 8.8-3.9 8.8-8.8s-3.9-8.8-8.8-8.8-8.8 4-8.8 8.8v1.7M2 11.3l2.4 2.4 2.4-2.4" }, null, -1), c = [
|
|
10
|
+
r,
|
|
11
|
+
s
|
|
19
12
|
];
|
|
20
|
-
function
|
|
21
|
-
return
|
|
13
|
+
function l(d, i) {
|
|
14
|
+
return o(), t("svg", n, [...c]);
|
|
22
15
|
}
|
|
23
|
-
const
|
|
16
|
+
const h = { render: l };
|
|
24
17
|
export {
|
|
25
|
-
|
|
26
|
-
|
|
18
|
+
h as default,
|
|
19
|
+
l as render
|
|
27
20
|
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
|
2
|
+
const n = {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
fill: "none",
|
|
5
|
+
stroke: "currentColor",
|
|
6
|
+
"stroke-linecap": "round",
|
|
7
|
+
"stroke-linejoin": "round",
|
|
8
|
+
viewBox: "0 0 24 24"
|
|
9
|
+
}, r = /* @__PURE__ */ t("path", { d: "M3.753 13.944v8.25h6v-6a1.5 1.5 0 0 1 1.5-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v6h6v-8.25m-19.5-1.5L10.942 2.255a1.5 1.5 0 0 1 2.122 0l10.189 10.189" }, null, -1), s = [
|
|
10
|
+
r
|
|
11
|
+
];
|
|
12
|
+
function c(l, a) {
|
|
13
|
+
return e(), o("svg", n, [...s]);
|
|
14
|
+
}
|
|
15
|
+
const i = { render: c };
|
|
16
|
+
export {
|
|
17
|
+
i as default,
|
|
18
|
+
c as render
|
|
19
|
+
};
|
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
import { openBlock as
|
|
2
|
-
const
|
|
1
|
+
import { openBlock as o, createElementBlock as t, createElementVNode as e } from "vue";
|
|
2
|
+
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
width: "24",
|
|
5
|
-
height: "24",
|
|
6
4
|
fill: "none",
|
|
5
|
+
stroke: "currentColor",
|
|
6
|
+
"stroke-linecap": "round",
|
|
7
|
+
"stroke-linejoin": "round",
|
|
7
8
|
viewBox: "0 0 24 24"
|
|
8
|
-
},
|
|
9
|
-
|
|
9
|
+
}, s = /* @__PURE__ */ e("path", { d: "M12 10.67v7.98M14.66 16 12 18.64 9.34 16" }, null, -1), r = /* @__PURE__ */ e("path", { d: "M3.35 7.34h17.3s1.33 0 1.33 1.33v11.98s0 1.33-1.33 1.33H3.35s-1.33 0-1.33-1.33V8.67s0-1.33 1.33-1.33" }, null, -1), l = /* @__PURE__ */ e("path", { d: "m2.2 8 2.13-5.19a1.33 1.33 0 0 1 1.22-.79h12.9a1.33 1.33 0 0 1 1.22.8l2.08 5.1M12 7.34V2.02" }, null, -1), c = [
|
|
10
|
+
s,
|
|
11
|
+
r,
|
|
12
|
+
l
|
|
10
13
|
];
|
|
11
|
-
function
|
|
12
|
-
return
|
|
14
|
+
function d(h, i) {
|
|
15
|
+
return o(), t("svg", n, [...c]);
|
|
13
16
|
}
|
|
14
|
-
const
|
|
17
|
+
const a = { render: d };
|
|
15
18
|
export {
|
|
16
|
-
|
|
17
|
-
|
|
19
|
+
a as default,
|
|
20
|
+
d as render
|
|
18
21
|
};
|
|
@@ -1,21 +1,20 @@
|
|
|
1
|
-
import { openBlock as
|
|
2
|
-
const
|
|
1
|
+
import { openBlock as o, createElementBlock as t, createElementVNode as e } from "vue";
|
|
2
|
+
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "none",
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
n
|
|
5
|
+
stroke: "currentColor",
|
|
6
|
+
"stroke-linecap": "round",
|
|
7
|
+
"stroke-linejoin": "round",
|
|
8
|
+
viewBox: "0 0 24 24"
|
|
9
|
+
}, r = /* @__PURE__ */ e("path", { d: "M12.82 14.51 15.36 12l1.76.47a1.56 1.56 0 0 0 1.51-.47 1.58 1.58 0 0 0 .37-1.49l-.47-1.75.82-.76 1.76.47A1.56 1.56 0 0 0 22.62 8 1.58 1.58 0 0 0 23 6.52l-.47-1.75a2.35 2.35 0 0 0-3.33-3.33l-9.71 9.74a6.29 6.29 0 1 0 3.33 3.33" }, null, -1), l = /* @__PURE__ */ e("path", { d: "M4.26 17.84a1.9 1.9 0 1 0 3.8 0 1.9 1.9 0 1 0-3.8 0" }, null, -1), s = [
|
|
10
|
+
r,
|
|
11
|
+
l
|
|
13
12
|
];
|
|
14
|
-
function c(
|
|
15
|
-
return
|
|
13
|
+
function c(a, d) {
|
|
14
|
+
return o(), t("svg", n, [...s]);
|
|
16
15
|
}
|
|
17
|
-
const
|
|
16
|
+
const _ = { render: c };
|
|
18
17
|
export {
|
|
19
|
-
|
|
18
|
+
_ as default,
|
|
20
19
|
c as render
|
|
21
20
|
};
|
|
@@ -1,21 +1,19 @@
|
|
|
1
|
-
import { openBlock as e, createElementBlock as
|
|
2
|
-
const
|
|
1
|
+
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
|
2
|
+
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "none",
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}, null, -1), a = [
|
|
12
|
-
n
|
|
5
|
+
stroke: "currentColor",
|
|
6
|
+
"stroke-linecap": "round",
|
|
7
|
+
"stroke-linejoin": "round",
|
|
8
|
+
viewBox: "0 0 24 24"
|
|
9
|
+
}, r = /* @__PURE__ */ t("path", { d: "M13.5 18 12 19.5c-1 1-2.3 1.5-3.7 1.5s-2.7-.6-3.7-1.5c-1-1-1.5-2.3-1.5-3.7s.6-2.7 1.5-3.7l1.5-1.5M10.5 6 12 4.5c1-1 2.3-1.5 3.7-1.5s2.7.6 3.7 1.5c1 1 1.5 2.3 1.5 3.7s-.6 2.7-1.5 3.7l-1.5 1.5M9 15l6-6" }, null, -1), c = [
|
|
10
|
+
r
|
|
13
11
|
];
|
|
14
|
-
function
|
|
15
|
-
return e(),
|
|
12
|
+
function s(l, i) {
|
|
13
|
+
return e(), o("svg", n, [...c]);
|
|
16
14
|
}
|
|
17
|
-
const
|
|
15
|
+
const _ = { render: s };
|
|
18
16
|
export {
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
_ as default,
|
|
18
|
+
s as render
|
|
21
19
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
|
2
2
|
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
|
|
5
|
-
viewBox: "0 0 12 12"
|
|
4
|
+
viewBox: "0 0 24 24"
|
|
6
5
|
}, r = /* @__PURE__ */ t("path", {
|
|
6
|
+
fill: "none",
|
|
7
7
|
stroke: "currentColor",
|
|
8
8
|
"stroke-linecap": "round",
|
|
9
9
|
"stroke-linejoin": "round",
|
|
10
|
-
d: "
|
|
10
|
+
d: "M22 6.8H2m20 10.4H2"
|
|
11
11
|
}, null, -1), c = [
|
|
12
12
|
r
|
|
13
13
|
];
|
|
@@ -1,17 +1,20 @@
|
|
|
1
|
-
import { openBlock as
|
|
2
|
-
const
|
|
1
|
+
import { openBlock as o, createElementBlock as t, createElementVNode as e } from "vue";
|
|
2
|
+
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
fill: "
|
|
4
|
+
fill: "none",
|
|
5
|
+
stroke: "currentColor",
|
|
6
|
+
"stroke-linecap": "round",
|
|
7
|
+
"stroke-linejoin": "round",
|
|
5
8
|
viewBox: "0 0 24 24"
|
|
6
|
-
},
|
|
7
|
-
|
|
9
|
+
}, r = /* @__PURE__ */ e("path", { d: "M17.333 5.34c1.39-.22 2.796-.334 4.205-.34.121 0 .238.043.329.122a.44.44 0 0 1 .133.314v13.73a.44.44 0 0 1-.133.306.46.46 0 0 1-.311.13C14.186 19.708 12 22 12 22m0 0V7.38S9.822 5.096 2.462 5a.5.5 0 0 0-.329.122.44.44 0 0 0-.133.314v13.73a.44.44 0 0 0 .133.306.46.46 0 0 0 .311.13C9.814 19.708 12 22 12 22" }, null, -1), c = /* @__PURE__ */ e("path", { d: "M12 22a5.67 5.67 0 0 1 1.367-3.135c.967-1.141 2.237-1.923 3.633-2.236V2.443a.45.45 0 0 0-.051-.21.4.4 0 0 0-.14-.154.47.47 0 0 0-.409-.054 6.44 6.44 0 0 0-3.033 2.063A5.86 5.86 0 0 0 12 7.205" }, null, -1), s = [
|
|
10
|
+
r,
|
|
8
11
|
c
|
|
9
12
|
];
|
|
10
|
-
function
|
|
11
|
-
return
|
|
13
|
+
function a(l, d) {
|
|
14
|
+
return o(), t("svg", n, [...s]);
|
|
12
15
|
}
|
|
13
|
-
const
|
|
16
|
+
const _ = { render: a };
|
|
14
17
|
export {
|
|
15
|
-
|
|
16
|
-
|
|
18
|
+
_ as default,
|
|
19
|
+
a as render
|
|
17
20
|
};
|
|
@@ -2,20 +2,18 @@ import { openBlock as e, createElementBlock as o, createElementVNode as t } from
|
|
|
2
2
|
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "none",
|
|
5
|
-
viewBox: "0 0 24 24"
|
|
6
|
-
}, r = /* @__PURE__ */ t("path", {
|
|
7
5
|
stroke: "currentColor",
|
|
8
6
|
"stroke-linecap": "round",
|
|
9
7
|
"stroke-linejoin": "round",
|
|
10
|
-
|
|
11
|
-
}, null, -1), c = [
|
|
8
|
+
viewBox: "0 0 24 24"
|
|
9
|
+
}, r = /* @__PURE__ */ t("path", { d: "M17 3a2.85 2.85 0 0 1 2.064-1.007 2.87 2.87 0 0 1 2.14.834 2.83 2.83 0 0 1 .825 2.131A2.8 2.8 0 0 1 21 7L7.5 20.5 2 22l1.5-5.5z" }, null, -1), c = [
|
|
12
10
|
r
|
|
13
11
|
];
|
|
14
|
-
function s
|
|
12
|
+
function l(s, i) {
|
|
15
13
|
return e(), o("svg", n, [...c]);
|
|
16
14
|
}
|
|
17
|
-
const
|
|
15
|
+
const a = { render: l };
|
|
18
16
|
export {
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
a as default,
|
|
18
|
+
l as render
|
|
21
19
|
};
|
|
@@ -2,21 +2,18 @@ import { openBlock as e, createElementBlock as o, createElementVNode as t } from
|
|
|
2
2
|
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "none",
|
|
5
|
-
viewBox: "0 0 24 24"
|
|
6
|
-
}, r = /* @__PURE__ */ t("path", {
|
|
7
|
-
fill: "currentColor",
|
|
8
5
|
stroke: "currentColor",
|
|
9
6
|
"stroke-linecap": "round",
|
|
10
7
|
"stroke-linejoin": "round",
|
|
11
|
-
|
|
12
|
-
}, null, -1),
|
|
8
|
+
viewBox: "0 0 24 24"
|
|
9
|
+
}, r = /* @__PURE__ */ t("path", { d: "M6 6.663c0-1.582 1.75-2.538 3.082-1.682l8.301 5.337a2 2 0 0 1 0 3.364L9.082 19.02C7.75 19.875 6 18.919 6 17.337z" }, null, -1), c = [
|
|
13
10
|
r
|
|
14
11
|
];
|
|
15
|
-
function
|
|
16
|
-
return e(), o("svg", n, [...
|
|
12
|
+
function l(s, d) {
|
|
13
|
+
return e(), o("svg", n, [...c]);
|
|
17
14
|
}
|
|
18
|
-
const a = { render:
|
|
15
|
+
const a = { render: l };
|
|
19
16
|
export {
|
|
20
17
|
a as default,
|
|
21
|
-
|
|
18
|
+
l as render
|
|
22
19
|
};
|
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
import { openBlock as e, createElementBlock as
|
|
2
|
-
const
|
|
1
|
+
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
|
2
|
+
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
fill: "
|
|
5
|
-
viewBox: "0 0
|
|
6
|
-
},
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
fill: "none",
|
|
5
|
+
viewBox: "0 0 24 24"
|
|
6
|
+
}, r = /* @__PURE__ */ t("path", {
|
|
7
|
+
stroke: "currentColor",
|
|
8
|
+
"stroke-linecap": "round",
|
|
9
|
+
"stroke-linejoin": "round",
|
|
10
|
+
d: "M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16m10 2-4.35-4.35"
|
|
11
|
+
}, null, -1), c = [
|
|
12
|
+
r
|
|
11
13
|
];
|
|
12
|
-
function
|
|
13
|
-
return e(),
|
|
14
|
+
function s(l, d) {
|
|
15
|
+
return e(), o("svg", n, [...c]);
|
|
14
16
|
}
|
|
15
|
-
const
|
|
17
|
+
const a = { render: s };
|
|
16
18
|
export {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
+
a as default,
|
|
20
|
+
s as render
|
|
19
21
|
};
|
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
import { openBlock as e, createElementBlock as
|
|
2
|
-
const
|
|
1
|
+
import { openBlock as e, createElementBlock as n, createElementVNode as o } from "vue";
|
|
2
|
+
const t = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
|
|
5
|
-
viewBox: "0 0 12 12"
|
|
4
|
+
viewBox: "0 0 24 24"
|
|
6
5
|
}, r = /* @__PURE__ */ o("path", {
|
|
6
|
+
fill: "none",
|
|
7
7
|
stroke: "currentColor",
|
|
8
8
|
"stroke-linecap": "round",
|
|
9
9
|
"stroke-linejoin": "round",
|
|
10
|
-
d: "
|
|
11
|
-
}, null, -1),
|
|
10
|
+
d: "M12 5.251C7.969 5.183 3.8 8 1.179 10.885a1.663 1.663 0 0 0 0 2.226C3.743 15.935 7.9 18.817 12 18.748c4.1.069 8.258-2.813 10.824-5.637a1.663 1.663 0 0 0 0-2.226C20.2 8 16.031 5.183 12 5.251"
|
|
11
|
+
}, null, -1), l = /* @__PURE__ */ o("path", {
|
|
12
|
+
fill: "none",
|
|
12
13
|
stroke: "currentColor",
|
|
13
14
|
"stroke-linecap": "round",
|
|
14
15
|
"stroke-linejoin": "round",
|
|
15
|
-
d: "
|
|
16
|
-
}, null, -1),
|
|
16
|
+
d: "M15.75 12A3.75 3.75 0 1 1 12 8.249 3.75 3.75 0 0 1 15.75 12"
|
|
17
|
+
}, null, -1), s = [
|
|
17
18
|
r,
|
|
18
|
-
|
|
19
|
+
l
|
|
19
20
|
];
|
|
20
|
-
function
|
|
21
|
-
return e(),
|
|
21
|
+
function c(i, d) {
|
|
22
|
+
return e(), n("svg", t, [...s]);
|
|
22
23
|
}
|
|
23
|
-
const
|
|
24
|
+
const u = { render: c };
|
|
24
25
|
export {
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
u as default,
|
|
27
|
+
c as render
|
|
27
28
|
};
|