@wikicasa-dev/svg-icons 1.0.3 → 1.1.1
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/ConditionTypeIcon.js +46 -0
- package/dist/CrossIcon.js +40 -0
- package/dist/ZoomIcon.js +54 -0
- package/dist/index.js +111 -105
- package/dist/lib/index.d.ts +3 -0
- package/dist/lib/svgIcons/ConditionTypeIcon.d.ts +6 -0
- package/dist/lib/svgIcons/CrossIcon.d.ts +4 -0
- package/dist/lib/svgIcons/ZoomIcon.d.ts +4 -0
- package/package.json +1 -2
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { h as c } from "vue";
|
|
2
|
+
import { s } from "./svgIconFactory-BpnFimFz.js";
|
|
3
|
+
const i = (o) => s({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
viewBox: "0 0 19.13 17.54"
|
|
7
|
+
},
|
|
8
|
+
childrenNodes: [
|
|
9
|
+
c(
|
|
10
|
+
"defs",
|
|
11
|
+
c("style", ".cls-1{fill:none;stroke:#182742;stroke-linecap:round;stroke-width:1.54px;}")
|
|
12
|
+
),
|
|
13
|
+
c("g", { id: "Livello_3" }, [
|
|
14
|
+
c("path", { class: "cls-1", d: "M4.01,9.49l3.96,3.96c.28.28.72.28,1,0l9.39-9.39" }),
|
|
15
|
+
c(
|
|
16
|
+
"g",
|
|
17
|
+
{ id: "Raggruppa_7594" },
|
|
18
|
+
c(
|
|
19
|
+
"g",
|
|
20
|
+
{ id: "Raggruppa_8193" },
|
|
21
|
+
c("path", {
|
|
22
|
+
id: "Tracciato_8900",
|
|
23
|
+
class: "cls-1",
|
|
24
|
+
d: "M13.47,3.62L9.29,1c-.48-.3-1.1-.3-1.58,0L1.47,4.91c-.43.27-.7.75-.7,1.26v9.11c0,.82.67,1.49,1.49,1.49h8.06"
|
|
25
|
+
})
|
|
26
|
+
)
|
|
27
|
+
),
|
|
28
|
+
c(
|
|
29
|
+
"g",
|
|
30
|
+
{ id: "Raggruppa_7594-2" },
|
|
31
|
+
c(
|
|
32
|
+
"g",
|
|
33
|
+
{ id: "Raggruppa_8193-2" },
|
|
34
|
+
c("path", {
|
|
35
|
+
id: "Tracciato_8900-2",
|
|
36
|
+
class: "cls-1",
|
|
37
|
+
d: "M16.23,10.17v5.11c0,.82-.67,1.49-1.49,1.49h-4.41"
|
|
38
|
+
})
|
|
39
|
+
)
|
|
40
|
+
)
|
|
41
|
+
])
|
|
42
|
+
]
|
|
43
|
+
});
|
|
44
|
+
export {
|
|
45
|
+
i as ConditionTypeIcon
|
|
46
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
const i = (r, { attrs: o }) => {
|
|
3
|
+
const { width: e = 16, height: n = 16 } = r;
|
|
4
|
+
return t(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
width: `${e}`,
|
|
9
|
+
height: `${n}`,
|
|
10
|
+
viewBox: "0 0 16 16"
|
|
11
|
+
},
|
|
12
|
+
t(
|
|
13
|
+
"g",
|
|
14
|
+
{
|
|
15
|
+
transform: "translate(-541.5 -228.5)"
|
|
16
|
+
},
|
|
17
|
+
[
|
|
18
|
+
t("line", {
|
|
19
|
+
y2: "14",
|
|
20
|
+
transform: "translate(549.5 229.5)",
|
|
21
|
+
fill: "none",
|
|
22
|
+
stroke: o["stroke-color"] ?? "#fff",
|
|
23
|
+
"stroke-linecap": "round",
|
|
24
|
+
"stroke-width": "2"
|
|
25
|
+
}),
|
|
26
|
+
t("line", {
|
|
27
|
+
y2: "14",
|
|
28
|
+
transform: "translate(556.5 236.5) rotate(90)",
|
|
29
|
+
fill: "none",
|
|
30
|
+
stroke: o["stroke-color"] ?? "#fff",
|
|
31
|
+
"stroke-linecap": "round",
|
|
32
|
+
"stroke-width": "2"
|
|
33
|
+
})
|
|
34
|
+
]
|
|
35
|
+
)
|
|
36
|
+
);
|
|
37
|
+
};
|
|
38
|
+
export {
|
|
39
|
+
i as CrossIcon
|
|
40
|
+
};
|
package/dist/ZoomIcon.js
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { g as l } from "./DefaultValues-CpabIgVz.js";
|
|
3
|
+
const h = (e, { attrs: o }) => {
|
|
4
|
+
e = { ...l(), ...e };
|
|
5
|
+
const { width: i, height: r } = e;
|
|
6
|
+
return t(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: `${i}`,
|
|
11
|
+
height: `${r}`,
|
|
12
|
+
class: e.class ?? "",
|
|
13
|
+
"aria-hidden": o["aria-hidden"] ?? "true",
|
|
14
|
+
viewBox: "0 0 17.977 19.365"
|
|
15
|
+
},
|
|
16
|
+
t(
|
|
17
|
+
"g",
|
|
18
|
+
{
|
|
19
|
+
stroke: e["stroke-color"] ?? "#385cf6",
|
|
20
|
+
"stroke-linecap": "round",
|
|
21
|
+
"stroke-width": "2"
|
|
22
|
+
},
|
|
23
|
+
[
|
|
24
|
+
t(
|
|
25
|
+
"g",
|
|
26
|
+
{
|
|
27
|
+
fill: e["fill-color"] ?? "#fff"
|
|
28
|
+
},
|
|
29
|
+
[
|
|
30
|
+
t("circle", {
|
|
31
|
+
cx: "7.361",
|
|
32
|
+
cy: "7.361",
|
|
33
|
+
r: "7.361",
|
|
34
|
+
stroke: "none"
|
|
35
|
+
}),
|
|
36
|
+
t("circle", {
|
|
37
|
+
cx: "7.361",
|
|
38
|
+
cy: "7.361",
|
|
39
|
+
r: "6.361",
|
|
40
|
+
fill: "none"
|
|
41
|
+
})
|
|
42
|
+
]
|
|
43
|
+
),
|
|
44
|
+
t("path", {
|
|
45
|
+
fill: "none",
|
|
46
|
+
d: "m11.656 13.043 4.907 4.907"
|
|
47
|
+
})
|
|
48
|
+
]
|
|
49
|
+
)
|
|
50
|
+
);
|
|
51
|
+
};
|
|
52
|
+
export {
|
|
53
|
+
h as ZoomIcon
|
|
54
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -4,12 +4,12 @@ import { BarChartIcon as m } from "./BarChartIcon.js";
|
|
|
4
4
|
import { BellIcon as f } from "./BellIcon.js";
|
|
5
5
|
import { BulbIcon as x } from "./BulbIcon.js";
|
|
6
6
|
import { CheckActiveIcon as i } from "./CheckActiveIcon.js";
|
|
7
|
-
import { CheckInactiveIcon as
|
|
7
|
+
import { CheckInactiveIcon as s } from "./CheckInactiveIcon.js";
|
|
8
8
|
import { CloseIcon as g } from "./CloseIcon.js";
|
|
9
9
|
import { DashboardIcon as k } from "./DashboardIcon.js";
|
|
10
10
|
import { DeleteIcon as W } from "./DeleteIcon.js";
|
|
11
11
|
import { DrawIcon as P } from "./DrawIcon.js";
|
|
12
|
-
import { EditIcon as
|
|
12
|
+
import { EditIcon as A } from "./EditIcon.js";
|
|
13
13
|
import { GermanyFlagIcon as w } from "./GermanyFlagIcon.js";
|
|
14
14
|
import { HeartIcon as b } from "./HeartIcon.js";
|
|
15
15
|
import { HidePswIcon as N } from "./HidePswIcon.js";
|
|
@@ -21,8 +21,8 @@ import { LogoutIcon as E } from "./LogoutIcon.js";
|
|
|
21
21
|
import { MailIcon as q } from "./MailIcon.js";
|
|
22
22
|
import { MapIcon as K } from "./MapIcon.js";
|
|
23
23
|
import { NewsIcon as Q } from "./NewsIcon.js";
|
|
24
|
-
import { NotesIcon as
|
|
25
|
-
import { PhoneIcon as
|
|
24
|
+
import { NotesIcon as Z } from "./NotesIcon.js";
|
|
25
|
+
import { PhoneIcon as J } from "./PhoneIcon.js";
|
|
26
26
|
import { PinIcon as _ } from "./PinIcon.js";
|
|
27
27
|
import { PlanIcon as oo } from "./PlanIcon.js";
|
|
28
28
|
import { PlusIcon as eo } from "./PlusIcon.js";
|
|
@@ -35,7 +35,7 @@ import { SearchIcon as so } from "./SearchIcon.js";
|
|
|
35
35
|
import { ShareIcon as uo } from "./ShareIcon.js";
|
|
36
36
|
import { SuitcaseIcon as ho } from "./SuitcaseIcon.js";
|
|
37
37
|
import { TieIcon as So } from "./TieIcon.js";
|
|
38
|
-
import { TourIcon as
|
|
38
|
+
import { TourIcon as yo } from "./TourIcon.js";
|
|
39
39
|
import { UkFlagIcon as Co } from "./UkFlagIcon.js";
|
|
40
40
|
import { ValuationIcon as To } from "./ValuationIcon.js";
|
|
41
41
|
import { VideoIcon as Fo } from "./VideoIcon.js";
|
|
@@ -48,8 +48,8 @@ import { AnalyticsIcon as Uo } from "./AnalyticsIcon.js";
|
|
|
48
48
|
import { WikicasaIcon as zo } from "./WikicasaIcon.js";
|
|
49
49
|
import { GearIcon as Oo } from "./GearIcon.js";
|
|
50
50
|
import { WkFavIcon as Yo } from "./WkFavIcon.js";
|
|
51
|
-
import { FacebookIcon as
|
|
52
|
-
import { LinkedinIcon as
|
|
51
|
+
import { FacebookIcon as jo } from "./FacebookIcon.js";
|
|
52
|
+
import { LinkedinIcon as Xo } from "./LinkedinIcon.js";
|
|
53
53
|
import { InstagramIcon as $o } from "./InstagramIcon.js";
|
|
54
54
|
import { YoutubeIcon as rr } from "./YoutubeIcon.js";
|
|
55
55
|
import { HamburgerMenuIcon as tr } from "./HamburgerMenuIcon.js";
|
|
@@ -58,11 +58,11 @@ import { WikicasaRoundedIcon as pr } from "./WikicasaRoundedIcon.js";
|
|
|
58
58
|
import { ArrowIndicatorIcon as Ir } from "./ArrowIndicatorIcon.js";
|
|
59
59
|
import { PrincipalIcon as ar } from "./PrincipalIcon.js";
|
|
60
60
|
import { PinShadowedIcon as lr } from "./PinShadowedIcon.js";
|
|
61
|
-
import { HouseValuationIcon as
|
|
61
|
+
import { HouseValuationIcon as dr } from "./HouseValuationIcon.js";
|
|
62
62
|
import { CheckRoundedIcon as ur } from "./CheckRoundedIcon.js";
|
|
63
63
|
import { DownloadIcon as hr } from "./DownloadIcon.js";
|
|
64
64
|
import { SquareMeterIcon as Sr } from "./SquareMeterIcon.js";
|
|
65
|
-
import { PriceIcon as
|
|
65
|
+
import { PriceIcon as yr } from "./PriceIcon.js";
|
|
66
66
|
import { DemandIcon as Cr } from "./DemandIcon.js";
|
|
67
67
|
import { TransactionIcon as Tr } from "./TransactionIcon.js";
|
|
68
68
|
import { InfoIcon as Fr } from "./InfoIcon.js";
|
|
@@ -75,8 +75,8 @@ import { PhotoIcon as Ur } from "./PhotoIcon.js";
|
|
|
75
75
|
import { TelegramRoundedIcon as zr } from "./TelegramRoundedIcon.js";
|
|
76
76
|
import { WhatsappRoundedIcon as Or } from "./WhatsappRoundedIcon.js";
|
|
77
77
|
import { FacebookRoundedIcon as Yr } from "./FacebookRoundedIcon.js";
|
|
78
|
-
import { CredipassIcon as
|
|
79
|
-
import { HeartShadowedIcon as
|
|
78
|
+
import { CredipassIcon as jr } from "./CredipassIcon.js";
|
|
79
|
+
import { HeartShadowedIcon as Xr } from "./HeartShadowedIcon.js";
|
|
80
80
|
import { SortIcon as $r } from "./SortIcon.js";
|
|
81
81
|
import { StreetViewIcon as re } from "./StreetViewIcon.js";
|
|
82
82
|
import { StarIcon as te } from "./StarIcon.js";
|
|
@@ -85,11 +85,11 @@ import { LockIcon as pe } from "./LockIcon.js";
|
|
|
85
85
|
import { KeyIcon as Ie } from "./KeyIcon.js";
|
|
86
86
|
import { MegaphoneIcon as ae } from "./MegaphoneIcon.js";
|
|
87
87
|
import { ParkingSpotIcon as le } from "./ParkingSpotIcon.js";
|
|
88
|
-
import { BoxIcon as
|
|
88
|
+
import { BoxIcon as de } from "./BoxIcon.js";
|
|
89
89
|
import { ParkingIcon as ue } from "./ParkingIcon.js";
|
|
90
90
|
import { PoolIcon as he } from "./PoolIcon.js";
|
|
91
91
|
import { PrivateGardenIcon as Se } from "./PrivateGardenIcon.js";
|
|
92
|
-
import { CommunalGardenIcon as
|
|
92
|
+
import { CommunalGardenIcon as ye } from "./CommunalGardenIcon.js";
|
|
93
93
|
import { TennisIcon as Ce } from "./TennisIcon.js";
|
|
94
94
|
import { ReceptionIcon as Te } from "./ReceptionIcon.js";
|
|
95
95
|
import { ArchitecturalBarriersIcon as Fe } from "./ArchitecturalBarriersIcon.js";
|
|
@@ -102,8 +102,8 @@ import { PhotoAlbumIcon as Ue } from "./PhotoAlbumIcon.js";
|
|
|
102
102
|
import { FurnishedIcon as ze } from "./FurnishedIcon.js";
|
|
103
103
|
import { CellarIcon as Oe } from "./CellarIcon.js";
|
|
104
104
|
import { KitchenIcon as Ye } from "./KitchenIcon.js";
|
|
105
|
-
import { AirConditionerIcon as
|
|
106
|
-
import { AtticIcon as
|
|
105
|
+
import { AirConditionerIcon as je } from "./AirConditionerIcon.js";
|
|
106
|
+
import { AtticIcon as Xe } from "./AtticIcon.js";
|
|
107
107
|
import { TavernIcon as $e } from "./TavernIcon.js";
|
|
108
108
|
import { RoofIcon as rt } from "./RoofIcon.js";
|
|
109
109
|
import { AlarmIcon as tt } from "./AlarmIcon.js";
|
|
@@ -112,11 +112,11 @@ import { FixturesIcon as pt } from "./FixturesIcon.js";
|
|
|
112
112
|
import { TypeViewIcon as It } from "./TypeViewIcon.js";
|
|
113
113
|
import { HotWaterIcon as at } from "./HotWaterIcon.js";
|
|
114
114
|
import { CeilingIcon as lt } from "./CeilingIcon.js";
|
|
115
|
-
import { EntranceIcon as
|
|
115
|
+
import { EntranceIcon as dt } from "./EntranceIcon.js";
|
|
116
116
|
import { OpticFiberIcon as ut } from "./OpticFiberIcon.js";
|
|
117
117
|
import { ElectricGateIcon as ht } from "./ElectricGateIcon.js";
|
|
118
118
|
import { WhirlpoolIcon as St } from "./WhirlpoolIcon.js";
|
|
119
|
-
import { FireplaceIcon as
|
|
119
|
+
import { FireplaceIcon as yt } from "./FireplaceIcon.js";
|
|
120
120
|
import { SecurityDoorIcon as Ct } from "./SecurityDoorIcon.js";
|
|
121
121
|
import { TypeTvIcon as Tt } from "./TypeTvIcon.js";
|
|
122
122
|
import { SatelliteSystemIcon as Ft } from "./SatelliteSystemIcon.js";
|
|
@@ -129,109 +129,114 @@ import { AttachedIcon as Ut } from "./AttachedIcon.js";
|
|
|
129
129
|
import { SupermarketIcon as zt } from "./SupermarketIcon.js";
|
|
130
130
|
import { LiftIcon as Ot } from "./LiftIcon.js";
|
|
131
131
|
import { BalconyIcon as Yt } from "./BalconyIcon.js";
|
|
132
|
-
import { TerraceIcon as
|
|
133
|
-
import { ClockIcon as
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
132
|
+
import { TerraceIcon as jt } from "./TerraceIcon.js";
|
|
133
|
+
import { ClockIcon as Xt } from "./ClockIcon.js";
|
|
134
|
+
import { CrossIcon as $t } from "./CrossIcon.js";
|
|
135
|
+
import { ZoomIcon as rn } from "./ZoomIcon.js";
|
|
136
|
+
import { ConditionTypeIcon as tn } from "./ConditionTypeIcon.js";
|
|
137
|
+
import { BankIcon as cn } from "./BankIcon.js";
|
|
138
|
+
import { CartIcon as pn } from "./CartIcon.js";
|
|
139
|
+
import { ChargeIcon as In } from "./ChargeIcon.js";
|
|
140
|
+
import { HospitalIcon as an } from "./HospitalIcon.js";
|
|
141
|
+
import { PharmacyIcon as sn } from "./PharmacyIcon.js";
|
|
142
|
+
import { PostOfficeIcon as gn } from "./PostOfficeIcon.js";
|
|
143
|
+
import { SchoolIcon as kn } from "./SchoolIcon.js";
|
|
144
|
+
import { SubwayIcon as Wn } from "./SubwayIcon.js";
|
|
145
|
+
import { TransportIcon as Pn } from "./TransportIcon.js";
|
|
146
|
+
import { MetroIcon as An } from "./MetroIcon.js";
|
|
147
|
+
import { TrainIcon as wn } from "./TrainIcon.js";
|
|
148
|
+
import { BusIcon as bn } from "./BusIcon.js";
|
|
149
|
+
import { WikicasaDatiLogoIcon as Nn } from "./WikicasaDatiLogo.js";
|
|
150
|
+
import { WikicasaLogoIcon as vn } from "./WikicasaLogo.js";
|
|
151
|
+
import { WikiNerdImg as Dn } from "./WikiNerd.js";
|
|
152
|
+
import { WikiNerdValutaMobileImg as Mn } from "./WikiNerdValutaMobile.js";
|
|
153
|
+
import { WikiNerdMercatoImg as Vn } from "./WikiNerdMercatoHome.js";
|
|
154
|
+
import { WikiNerdValutaDesktopImg as En } from "./WikiNerdValutaDesktop.js";
|
|
155
|
+
import { WikiNerdDownloadAppImg as qn } from "./WikiNerdDownloadApp.js";
|
|
156
|
+
import { WikicasaStudioLogoIcon as Kn } from "./WikicasaStudioLogo.js";
|
|
157
|
+
import { GenericUserWikiAvatarImg as Qn } from "./GenericUserWikiAvatar.js";
|
|
158
|
+
import { ShieldImg as Zn } from "./ShieldImg.js";
|
|
159
|
+
import { SnapImg as Jn } from "./SnapImg.js";
|
|
160
|
+
import { StopWatchImg as _n } from "./StopWatchImg.js";
|
|
161
|
+
import { CheckImg as oc } from "./CheckImg.js";
|
|
162
|
+
import { IareeImg as ec } from "./IareeImg.js";
|
|
163
|
+
import { WikiNerdAnalyzeImg as nc } from "./WikiNerdAnalyzeImg.js";
|
|
164
|
+
import { WikiNerdValuationNotAvailableImg as mc } from "./WikiNerdValuationNotAvailableImg.js";
|
|
165
|
+
import { InsightImg as fc } from "./InsightImg.js";
|
|
166
|
+
import { GenericUserWikiAvatarSquaredImg as xc } from "./GenericUserWikiAvatarSquaredImg.js";
|
|
167
|
+
import { WikiNoSavedSearchesImg as ic } from "./WikiNoSavedSearches.js";
|
|
168
|
+
import { WikicasaProIcon as sc } from "./WikicasaProIcon.js";
|
|
169
|
+
import { WikiNerdAgency as gc } from "./WikiNerdAgency.js";
|
|
167
170
|
export {
|
|
168
171
|
e as AboutUsIcon,
|
|
169
|
-
|
|
172
|
+
je as AirConditionerIcon,
|
|
170
173
|
tt as AlarmIcon,
|
|
171
174
|
Uo as AnalyticsIcon,
|
|
172
175
|
Fe as ArchitecturalBarriersIcon,
|
|
173
176
|
n as ArrowIcon,
|
|
174
177
|
Ir as ArrowIndicatorIcon,
|
|
175
178
|
Ut as AttachedIcon,
|
|
176
|
-
|
|
179
|
+
Xe as AtticIcon,
|
|
177
180
|
Gr as AuctionHammerIcon,
|
|
178
181
|
Yt as BalconyIcon,
|
|
179
|
-
|
|
182
|
+
cn as BankIcon,
|
|
180
183
|
m as BarChartIcon,
|
|
181
184
|
Hr as BathroomIcon,
|
|
182
185
|
f as BellIcon,
|
|
183
|
-
|
|
186
|
+
de as BoxIcon,
|
|
184
187
|
x as BulbIcon,
|
|
185
|
-
|
|
186
|
-
|
|
188
|
+
bn as BusIcon,
|
|
189
|
+
pn as CartIcon,
|
|
187
190
|
lt as CeilingIcon,
|
|
188
191
|
Oe as CellarIcon,
|
|
189
|
-
|
|
192
|
+
In as ChargeIcon,
|
|
190
193
|
i as CheckActiveIcon,
|
|
191
194
|
Lr as CheckIcon,
|
|
192
|
-
|
|
193
|
-
|
|
195
|
+
oc as CheckImg,
|
|
196
|
+
s as CheckInactiveIcon,
|
|
194
197
|
ur as CheckRoundedIcon,
|
|
195
|
-
|
|
198
|
+
Xt as ClockIcon,
|
|
196
199
|
g as CloseIcon,
|
|
197
200
|
ct as ClosetIcon,
|
|
198
|
-
|
|
199
|
-
|
|
201
|
+
ye as CommunalGardenIcon,
|
|
202
|
+
tn as ConditionTypeIcon,
|
|
203
|
+
jr as CredipassIcon,
|
|
204
|
+
$t as CrossIcon,
|
|
200
205
|
k as DashboardIcon,
|
|
201
206
|
W as DeleteIcon,
|
|
202
207
|
Cr as DemandIcon,
|
|
203
208
|
Ge as DishwasherIcon,
|
|
204
209
|
hr as DownloadIcon,
|
|
205
210
|
P as DrawIcon,
|
|
206
|
-
|
|
211
|
+
A as EditIcon,
|
|
207
212
|
ht as ElectricGateIcon,
|
|
208
213
|
Rr as EnergyClassIcon,
|
|
209
|
-
|
|
214
|
+
dt as EntranceIcon,
|
|
210
215
|
Br as ExternalLinkIcon,
|
|
211
|
-
|
|
216
|
+
jo as FacebookIcon,
|
|
212
217
|
Yr as FacebookRoundedIcon,
|
|
213
|
-
|
|
218
|
+
yt as FireplaceIcon,
|
|
214
219
|
pt as FixturesIcon,
|
|
215
220
|
He as FridgeIcon,
|
|
216
221
|
Ht as FrontBuildingIcon,
|
|
217
222
|
ze as FurnishedIcon,
|
|
218
223
|
Oo as GearIcon,
|
|
219
|
-
|
|
220
|
-
|
|
224
|
+
Qn as GenericUserWikiAvatarImg,
|
|
225
|
+
xc as GenericUserWikiAvatarSquaredImg,
|
|
221
226
|
w as GermanyFlagIcon,
|
|
222
227
|
cr as GoogleIcon,
|
|
223
228
|
tr as HamburgerMenuIcon,
|
|
224
229
|
b as HeartIcon,
|
|
225
|
-
|
|
230
|
+
Xr as HeartShadowedIcon,
|
|
226
231
|
N as HidePswIcon,
|
|
227
232
|
Be as HobIcon,
|
|
228
233
|
v as HomeIcon,
|
|
229
|
-
|
|
234
|
+
an as HospitalIcon,
|
|
230
235
|
at as HotWaterIcon,
|
|
231
|
-
|
|
232
|
-
|
|
236
|
+
dr as HouseValuationIcon,
|
|
237
|
+
ec as IareeImg,
|
|
233
238
|
Fr as InfoIcon,
|
|
234
|
-
|
|
239
|
+
fc as InsightImg,
|
|
235
240
|
$o as InstagramIcon,
|
|
236
241
|
D as ItalyFlagIcon,
|
|
237
242
|
Ie as KeyIcon,
|
|
@@ -239,23 +244,23 @@ export {
|
|
|
239
244
|
Rt as LaundryIcon,
|
|
240
245
|
M as LayersIcon,
|
|
241
246
|
Ot as LiftIcon,
|
|
242
|
-
|
|
247
|
+
Xo as LinkedinIcon,
|
|
243
248
|
V as LocationIcon,
|
|
244
249
|
pe as LockIcon,
|
|
245
250
|
E as LogoutIcon,
|
|
246
251
|
q as MailIcon,
|
|
247
252
|
K as MapIcon,
|
|
248
253
|
ae as MegaphoneIcon,
|
|
249
|
-
|
|
254
|
+
An as MetroIcon,
|
|
250
255
|
Gt as MezzanineIcon,
|
|
251
256
|
Q as NewsIcon,
|
|
252
|
-
|
|
257
|
+
Z as NotesIcon,
|
|
253
258
|
ut as OpticFiberIcon,
|
|
254
259
|
ue as ParkingIcon,
|
|
255
260
|
le as ParkingSpotIcon,
|
|
256
261
|
ce as PartnershipIcon,
|
|
257
|
-
|
|
258
|
-
|
|
262
|
+
sn as PharmacyIcon,
|
|
263
|
+
J as PhoneIcon,
|
|
259
264
|
Ue as PhotoAlbumIcon,
|
|
260
265
|
Ur as PhotoIcon,
|
|
261
266
|
_ as PinIcon,
|
|
@@ -263,9 +268,9 @@ export {
|
|
|
263
268
|
oo as PlanIcon,
|
|
264
269
|
eo as PlusIcon,
|
|
265
270
|
he as PoolIcon,
|
|
266
|
-
|
|
271
|
+
gn as PostOfficeIcon,
|
|
267
272
|
no as PrestigeIcon,
|
|
268
|
-
|
|
273
|
+
yr as PriceIcon,
|
|
269
274
|
ar as PrincipalIcon,
|
|
270
275
|
mo as PrintIcon,
|
|
271
276
|
Se as PrivateGardenIcon,
|
|
@@ -275,29 +280,29 @@ export {
|
|
|
275
280
|
io as RequestIcon,
|
|
276
281
|
rt as RoofIcon,
|
|
277
282
|
Ft as SatelliteSystemIcon,
|
|
278
|
-
|
|
283
|
+
kn as SchoolIcon,
|
|
279
284
|
so as SearchIcon,
|
|
280
285
|
Ct as SecurityDoorIcon,
|
|
281
286
|
uo as ShareIcon,
|
|
282
|
-
|
|
283
|
-
|
|
287
|
+
Zn as ShieldImg,
|
|
288
|
+
Jn as SnapImg,
|
|
284
289
|
$r as SortIcon,
|
|
285
290
|
Sr as SquareMeterIcon,
|
|
286
291
|
te as StarIcon,
|
|
287
|
-
|
|
292
|
+
_n as StopWatchImg,
|
|
288
293
|
re as StreetViewIcon,
|
|
289
|
-
|
|
294
|
+
Wn as SubwayIcon,
|
|
290
295
|
ho as SuitcaseIcon,
|
|
291
296
|
zt as SupermarketIcon,
|
|
292
297
|
$e as TavernIcon,
|
|
293
298
|
zr as TelegramRoundedIcon,
|
|
294
299
|
Ce as TennisIcon,
|
|
295
|
-
|
|
300
|
+
jt as TerraceIcon,
|
|
296
301
|
So as TieIcon,
|
|
297
|
-
|
|
298
|
-
|
|
302
|
+
yo as TourIcon,
|
|
303
|
+
wn as TrainIcon,
|
|
299
304
|
Tr as TransactionIcon,
|
|
300
|
-
|
|
305
|
+
Pn as TransportIcon,
|
|
301
306
|
Bt as TypeFloorIcon,
|
|
302
307
|
Lt as TypeRollerShutterIcon,
|
|
303
308
|
Tt as TypeTvIcon,
|
|
@@ -313,22 +318,23 @@ export {
|
|
|
313
318
|
Re as WashingMachineIcon,
|
|
314
319
|
Or as WhatsappRoundedIcon,
|
|
315
320
|
St as WhirlpoolIcon,
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
321
|
+
gc as WikiNerdAgency,
|
|
322
|
+
nc as WikiNerdAnalyzeImg,
|
|
323
|
+
qn as WikiNerdDownloadAppImg,
|
|
324
|
+
Dn as WikiNerdImg,
|
|
325
|
+
Vn as WikiNerdMercatoImg,
|
|
326
|
+
mc as WikiNerdValuationNotAvailableImg,
|
|
327
|
+
En as WikiNerdValutaDesktopImg,
|
|
328
|
+
Mn as WikiNerdValutaMobileImg,
|
|
329
|
+
ic as WikiNoSavedSearchesImg,
|
|
330
|
+
Nn as WikicasaDatiLogoIcon,
|
|
326
331
|
zo as WikicasaIcon,
|
|
327
|
-
|
|
328
|
-
|
|
332
|
+
vn as WikicasaLogoIcon,
|
|
333
|
+
sc as WikicasaProIcon,
|
|
329
334
|
pr as WikicasaRoundedIcon,
|
|
330
|
-
|
|
335
|
+
Kn as WikicasaStudioLogoIcon,
|
|
331
336
|
Go as WkAppIcon,
|
|
332
337
|
Yo as WkFavIcon,
|
|
333
|
-
rr as YoutubeIcon
|
|
338
|
+
rr as YoutubeIcon,
|
|
339
|
+
rn as ZoomIcon
|
|
334
340
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -131,6 +131,9 @@ export { LiftIcon } from './svgIcons/LiftIcon';
|
|
|
131
131
|
export { BalconyIcon } from './svgIcons/BalconyIcon';
|
|
132
132
|
export { TerraceIcon } from './svgIcons/TerraceIcon';
|
|
133
133
|
export { ClockIcon } from './svgIcons/ClockIcon';
|
|
134
|
+
export { CrossIcon } from './svgIcons/CrossIcon';
|
|
135
|
+
export { ZoomIcon } from './svgIcons/ZoomIcon';
|
|
136
|
+
export { ConditionTypeIcon } from './svgIcons/ConditionTypeIcon';
|
|
134
137
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
135
138
|
export { CartIcon } from './svgIcons/poi/CartIcon';
|
|
136
139
|
export { ChargeIcon } from './svgIcons/poi/ChargeIcon';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wikicasa-dev/svg-icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/lib/index.d.ts",
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"vue-router": "^4.4.5"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@rushstack/eslint-patch": "^1.10.4",
|
|
16
15
|
"@tsconfig/node20": "^20.1.4",
|
|
17
16
|
"@types/node": "^20.16.9",
|
|
18
17
|
"@vitejs/plugin-vue": "^5.1.4",
|