@wikicasa-dev/svg-icons 0.0.48 → 0.0.50
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/DemandIcon.js +45 -47
- package/dist/PriceIcon.js +4 -3
- package/dist/TransactionIcon.js +10 -5
- package/dist/WikicasaIcon.js +12 -12
- package/dist/favicon.ico +0 -0
- package/package.json +2 -1
package/dist/DemandIcon.js
CHANGED
|
@@ -5,53 +5,51 @@ const n = (t, { attrs: a }) => o({
|
|
|
5
5
|
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 14.069" },
|
|
6
6
|
childrenNodes: r(
|
|
7
7
|
"g",
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
[
|
|
17
|
-
r("
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
r("
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
r("
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
]
|
|
54
|
-
)
|
|
8
|
+
{
|
|
9
|
+
fill: a["fill-color"] ?? "#fff",
|
|
10
|
+
stroke: a["stroke-color"] ?? "#222",
|
|
11
|
+
"stroke-width": a["stroke-width"] ?? "1",
|
|
12
|
+
"stroke-linecap": "round",
|
|
13
|
+
"stroke-linejoin": "round"
|
|
14
|
+
},
|
|
15
|
+
[
|
|
16
|
+
r("g", { transform: "translate(.5 .5)" }, [
|
|
17
|
+
r("path", {
|
|
18
|
+
d: "M7.039 9.441H.404a.407.407 0 0 1-.4-.409V7.177a2.693 2.693 0 0 1 2.675-2.711h2.093a2.694 2.694 0 0 1 2.675 2.711v1.855a.407.407 0 0 1-.4.409Z"
|
|
19
|
+
}),
|
|
20
|
+
r("ellipse", {
|
|
21
|
+
cx: "2.322",
|
|
22
|
+
cy: "2.373",
|
|
23
|
+
rx: "2.322",
|
|
24
|
+
ry: "2.373",
|
|
25
|
+
transform: "translate(1.399)"
|
|
26
|
+
})
|
|
27
|
+
]),
|
|
28
|
+
r("g", { transform: "translate(3.617 .5)" }, [
|
|
29
|
+
r("path", {
|
|
30
|
+
d: "M8.17 10.955H.47a.471.471 0 0 1-.468-.475V8.33a3.127 3.127 0 0 1 3.1-3.147h2.434a3.126 3.126 0 0 1 3.1 3.147v2.153a.471.471 0 0 1-.472.472Z"
|
|
31
|
+
}),
|
|
32
|
+
r("ellipse", {
|
|
33
|
+
cx: "2.696",
|
|
34
|
+
cy: "2.754",
|
|
35
|
+
rx: "2.696",
|
|
36
|
+
ry: "2.754",
|
|
37
|
+
transform: "translate(1.624)"
|
|
38
|
+
})
|
|
39
|
+
]),
|
|
40
|
+
r("g", { transform: "translate(6.184 .5)" }, [
|
|
41
|
+
r("path", {
|
|
42
|
+
d: "M9.757 13.07h-9.2a.563.563 0 0 1-.56-.567v-2.57a3.733 3.733 0 0 1 3.708-3.76h2.9a3.734 3.734 0 0 1 3.707 3.759v2.571a.563.563 0 0 1-.555.567Z"
|
|
43
|
+
}),
|
|
44
|
+
r("ellipse", {
|
|
45
|
+
cx: "3.219",
|
|
46
|
+
cy: "3.289",
|
|
47
|
+
rx: "3.219",
|
|
48
|
+
ry: "3.289",
|
|
49
|
+
transform: "translate(1.94)"
|
|
50
|
+
})
|
|
51
|
+
])
|
|
52
|
+
]
|
|
55
53
|
)
|
|
56
54
|
});
|
|
57
55
|
export {
|
package/dist/PriceIcon.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { h as o } from "vue";
|
|
2
2
|
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
-
const i = (
|
|
4
|
-
props:
|
|
3
|
+
const i = (t, { attrs: r }) => e({
|
|
4
|
+
props: t,
|
|
5
5
|
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 18.701 17.024" },
|
|
6
6
|
childrenNodes: o(
|
|
7
7
|
"g",
|
|
8
8
|
{
|
|
9
9
|
fill: "none",
|
|
10
|
-
stroke:
|
|
10
|
+
stroke: r["stroke-color"] ?? "#222",
|
|
11
|
+
"stroke-width": r["stroke-width"] ?? "1",
|
|
11
12
|
"stroke-linecap": "round",
|
|
12
13
|
"stroke-linejoin": "round"
|
|
13
14
|
},
|
package/dist/TransactionIcon.js
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
import { h as o } from "vue";
|
|
2
2
|
import { s as n } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
-
const i = (
|
|
4
|
-
props:
|
|
5
|
-
svgNodeAttrs: {
|
|
3
|
+
const i = (t, { attrs: r }) => n({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 16.219 17.436",
|
|
8
|
+
"stroke-width": r["stroke-width"] ?? "1"
|
|
9
|
+
},
|
|
6
10
|
childrenNodes: o(
|
|
7
11
|
"g",
|
|
8
|
-
|
|
12
|
+
{ fill: "none", stroke: r["stroke-color"] ?? "#222", "stroke-linecap": "round" },
|
|
13
|
+
[
|
|
9
14
|
o("g", [
|
|
10
15
|
o("path", { d: "M.5 4.244h14.367" }),
|
|
11
16
|
o("path", { "stroke-linejoin": "round", d: "m11.898.707 3.821 3.821-3.821 3.821" })
|
|
@@ -14,7 +19,7 @@ const i = (r, { attrs: t }) => n({
|
|
|
14
19
|
o("path", { d: "M15.718 12.625H1.351" }),
|
|
15
20
|
o("path", { "stroke-linejoin": "round", d: "M4.321 9.088.5 12.909l3.821 3.821" })
|
|
16
21
|
])
|
|
17
|
-
]
|
|
22
|
+
]
|
|
18
23
|
)
|
|
19
24
|
});
|
|
20
25
|
export {
|
package/dist/WikicasaIcon.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { h as
|
|
2
|
-
import { s as
|
|
3
|
-
const e = (
|
|
4
|
-
props:
|
|
5
|
-
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0
|
|
1
|
+
import { h as C } from "vue";
|
|
2
|
+
import { s as L } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const e = (o) => L({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 18 18" },
|
|
6
6
|
childrenNodes: [
|
|
7
|
-
|
|
8
|
-
fill:
|
|
9
|
-
stroke:
|
|
7
|
+
C("path", {
|
|
8
|
+
fill: o["bg-color"] ?? "none",
|
|
9
|
+
stroke: o["border-color"] ?? "#222",
|
|
10
10
|
"stroke-linecap": "round",
|
|
11
11
|
"stroke-linejoin": "round",
|
|
12
12
|
"stroke-width": "1.3",
|
|
13
|
-
d: "
|
|
13
|
+
d: "M 16.356 0.993 L 1.521 0.993 C 1.201 0.995 0.939 1.259 0.937 1.587 L 0.937 13.918 C 0.937 14.245 1.2 14.509 1.521 14.51 L 7.065 14.51 L 8.7 16.868 C 8.817 17.035 9.062 17.035 9.179 16.868 L 10.814 14.51 L 16.351 14.51 C 16.672 14.509 16.937 14.245 16.937 13.918 L 16.937 1.587 C 16.941 1.258 16.679 0.991 16.356 0.993 Z"
|
|
14
14
|
}),
|
|
15
|
-
|
|
16
|
-
fill:
|
|
17
|
-
d: "
|
|
15
|
+
C("path", {
|
|
16
|
+
fill: o.color ?? "#0e1d34",
|
|
17
|
+
d: "M 15.329 3.283 L 12.666 11.98 C 12.647 12.041 12.593 12.084 12.529 12.085 L 10.45 12.085 C 10.392 12.085 10.34 12.044 10.325 11.986 L 8.9 7.234 C 8.886 7.181 8.821 7.163 8.782 7.201 C 8.773 7.21 8.767 7.222 8.764 7.234 L 7.34 11.986 C 7.322 12.04 7.272 12.076 7.214 12.075 L 5.138 12.075 C 5.075 12.075 5.02 12.032 5.002 11.97 L 2.339 3.274 C 2.318 3.196 2.361 3.115 2.437 3.092 C 2.449 3.088 2.462 3.085 2.475 3.085 L 4.51 3.085 C 4.57 3.083 4.623 3.124 4.636 3.184 L 6.065 8.498 C 6.074 8.538 6.113 8.563 6.151 8.552 C 6.175 8.547 6.195 8.53 6.203 8.505 L 7.9 3.19 C 7.921 3.131 7.974 3.092 8.036 3.091 L 9.607 3.091 C 9.67 3.091 9.727 3.135 9.744 3.196 L 11.332 8.505 C 11.346 8.559 11.411 8.577 11.45 8.538 C 11.458 8.529 11.464 8.518 11.468 8.505 L 13.018 3.191 C 13.034 3.135 13.085 3.094 13.143 3.092 L 15.179 3.092 C 15.256 3.083 15.324 3.139 15.333 3.214 C 15.335 3.236 15.334 3.256 15.327 3.275 L 15.329 3.283 Z"
|
|
18
18
|
})
|
|
19
19
|
]
|
|
20
20
|
});
|
package/dist/favicon.ico
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wikicasa-dev/svg-icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.50",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/lib/index.d.ts",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"scripts": {
|
|
47
47
|
"dev": "vite",
|
|
48
48
|
"build": "run-p type-check \"build-only {@}\" --",
|
|
49
|
+
"build-app": "vite --config vite-app.config.ts build",
|
|
49
50
|
"preview": "vite preview",
|
|
50
51
|
"build-only": "vite build",
|
|
51
52
|
"type-check": "vue-tsc --build --force",
|