@woosmap/ui 3.3.0 → 3.7.0
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/package.json +1 -1
- package/src/components/Card/SimpleCard.js +1 -1
- package/src/components/Demo/DistanceDemo.test.js +1 -1
- package/src/components/Demo/GeolocationDemo.test.js +1 -1
- package/src/components/Demo/LocalitiesDemo.test.js +1 -1
- package/src/components/Demo/SearchDemo.test.js +6 -20
- package/src/components/Demo/SkeletonDemo.test.js +1 -1
- package/src/components/Icon/Icon.js +35 -15
- package/src/components/Map/drawOnMap.js +46 -40
- package/src/icons/battery.svg +1 -0
- package/src/icons/cars.svg +1 -0
- package/src/icons/green.svg +1 -0
- package/src/icons/map-hd.svg +1 -0
- package/src/icons/markers.svg +1 -0
- package/src/icons/notification.svg +1 -0
- package/src/icons/schedule.svg +1 -0
- package/src/icons/security.svg +1 -0
- package/src/icons/zoom.svg +1 -0
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ import DistanceDemo from './DistanceDemo';
|
|
|
6
6
|
|
|
7
7
|
it('render distance demo', () => {
|
|
8
8
|
const { container } = render(<DistanceDemo />);
|
|
9
|
-
expect(container.firstChild).toHaveClass('demo
|
|
9
|
+
expect(container.firstChild).toHaveClass('demo');
|
|
10
10
|
});
|
|
11
11
|
|
|
12
12
|
it('test transport button', () => {
|
|
@@ -6,5 +6,5 @@ import GeolocationDemo from './GeolocationDemo';
|
|
|
6
6
|
|
|
7
7
|
it('render geolocation demo', () => {
|
|
8
8
|
const { container } = render(<GeolocationDemo />);
|
|
9
|
-
expect(container.firstChild).toHaveClass('demo
|
|
9
|
+
expect(container.firstChild).toHaveClass('demo');
|
|
10
10
|
});
|
|
@@ -7,7 +7,7 @@ import LocalitiesDemo from './LocalitiesDemo';
|
|
|
7
7
|
|
|
8
8
|
it('renders a LocalitiesDemo', () => {
|
|
9
9
|
const { container } = render(<LocalitiesDemo />);
|
|
10
|
-
expect(container.firstChild).toHaveClass('demo
|
|
10
|
+
expect(container.firstChild).toHaveClass('demo');
|
|
11
11
|
});
|
|
12
12
|
|
|
13
13
|
it('test Type in', () => {
|
|
@@ -7,7 +7,7 @@ import SearchDemo from './SearchDemo';
|
|
|
7
7
|
|
|
8
8
|
it('renders a SearchDemo', () => {
|
|
9
9
|
const { container } = render(<SearchDemo />);
|
|
10
|
-
expect(container.firstChild).toHaveClass('demo
|
|
10
|
+
expect(container.firstChild).toHaveClass('demo');
|
|
11
11
|
});
|
|
12
12
|
|
|
13
13
|
it('test tagFilter list', () => {
|
|
@@ -20,11 +20,7 @@ it('test tagFilter list', () => {
|
|
|
20
20
|
fireEvent.focus(input);
|
|
21
21
|
fireEvent.keyDown(input, { key: 'ArrowDown', code: 40 });
|
|
22
22
|
fireEvent.click(screen.getByText('In Store Wifi'));
|
|
23
|
-
expect(
|
|
24
|
-
screen.getByText(
|
|
25
|
-
'query=%28tag%3A%22parking%22%20AND%20tag%3A%22in-store_wi-fi%22%29"'
|
|
26
|
-
)
|
|
27
|
-
).toBeVisible();
|
|
23
|
+
expect(screen.getByText('query=%28tag%3A%22parking%22%20AND%20tag%3A%22in-store_wi-fi%22%29"')).toBeVisible();
|
|
28
24
|
});
|
|
29
25
|
|
|
30
26
|
it('test typeFilter list', () => {
|
|
@@ -33,16 +29,12 @@ it('test typeFilter list', () => {
|
|
|
33
29
|
fireEvent.focus(input);
|
|
34
30
|
fireEvent.keyDown(input, { key: 'ArrowDown', code: 40 });
|
|
35
31
|
fireEvent.click(screen.getByText('Bose Store'));
|
|
36
|
-
expect(
|
|
37
|
-
screen.getByText('query=%28type%3A%22bose_store%22%29"')
|
|
38
|
-
).toBeVisible();
|
|
32
|
+
expect(screen.getByText('query=%28type%3A%22bose_store%22%29"')).toBeVisible();
|
|
39
33
|
fireEvent.focus(input);
|
|
40
34
|
fireEvent.keyDown(input, { key: 'ArrowDown', code: 40 });
|
|
41
35
|
fireEvent.click(screen.getByText('Bose Factory Store'));
|
|
42
36
|
expect(
|
|
43
|
-
screen.getByText(
|
|
44
|
-
'query=%28type%3A%22bose_store%22%20OR%20type%3A%22bose_factory_store%22%29"'
|
|
45
|
-
)
|
|
37
|
+
screen.getByText('query=%28type%3A%22bose_store%22%20OR%20type%3A%22bose_factory_store%22%29"')
|
|
46
38
|
).toBeVisible();
|
|
47
39
|
});
|
|
48
40
|
|
|
@@ -52,16 +44,10 @@ it('test typeFilter and tagFilter list', () => {
|
|
|
52
44
|
fireEvent.focus(typeFilter);
|
|
53
45
|
fireEvent.keyDown(typeFilter, { key: 'ArrowDown', code: 40 });
|
|
54
46
|
fireEvent.click(screen.getByText('Bose Store'));
|
|
55
|
-
expect(
|
|
56
|
-
screen.getByText('query=%28type%3A%22bose_store%22%29"')
|
|
57
|
-
).toBeVisible();
|
|
47
|
+
expect(screen.getByText('query=%28type%3A%22bose_store%22%29"')).toBeVisible();
|
|
58
48
|
const tagFilter = container.querySelectorAll('input')[2];
|
|
59
49
|
fireEvent.focus(tagFilter);
|
|
60
50
|
fireEvent.keyDown(tagFilter, { key: 'ArrowDown', code: 40 });
|
|
61
51
|
fireEvent.click(screen.getByText('Parking'));
|
|
62
|
-
expect(
|
|
63
|
-
screen.getByText(
|
|
64
|
-
'query=%28tag%3A%22parking%22%29%20AND%20%28type%3A%22bose_store%22%29"'
|
|
65
|
-
)
|
|
66
|
-
).toBeVisible();
|
|
52
|
+
expect(screen.getByText('query=%28tag%3A%22parking%22%29%20AND%20%28type%3A%22bose_store%22%29"')).toBeVisible();
|
|
67
53
|
});
|
|
@@ -6,7 +6,7 @@ import SkeletonDemo from './SkeletonDemo';
|
|
|
6
6
|
|
|
7
7
|
it('renders a SkeletonDemo component ', () => {
|
|
8
8
|
const { container } = render(<SkeletonDemo noheader id="skeleton-test" />);
|
|
9
|
-
expect(container.firstChild).toHaveAttribute('
|
|
9
|
+
expect(container.firstChild).toHaveAttribute('class', 'demo');
|
|
10
10
|
});
|
|
11
11
|
|
|
12
12
|
it('calls copy exec command when click on copy button', () => {
|
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
import React, { Component } from 'react';
|
|
2
2
|
import cl from 'classnames';
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
|
+
import { ReactComponent as Autocomplete } from '../../icons/autocomplete.svg';
|
|
5
|
+
import { ReactComponent as Buildings } from '../../icons/buildings.svg';
|
|
6
|
+
import { ReactComponent as Battery } from '../../icons/battery.svg';
|
|
7
|
+
import { ReactComponent as Cars } from '../../icons/cars.svg';
|
|
8
|
+
import { ReactComponent as Github } from '../../icons/github.svg';
|
|
9
|
+
import { ReactComponent as Green } from '../../icons/green.svg';
|
|
10
|
+
import { ReactComponent as MapHd } from '../../icons/map-hd.svg';
|
|
11
|
+
import { ReactComponent as Markers } from '../../icons/markers.svg';
|
|
12
|
+
import { ReactComponent as Notification } from '../../icons/notification.svg';
|
|
13
|
+
import { ReactComponent as Quote } from '../../icons/quote.svg';
|
|
14
|
+
import { ReactComponent as Position } from '../../icons/position.svg';
|
|
15
|
+
import { ReactComponent as SaveMoney } from '../../icons/save-money.svg';
|
|
16
|
+
import { ReactComponent as Schedule } from '../../icons/schedule.svg';
|
|
17
|
+
import { ReactComponent as Security } from '../../icons/security.svg';
|
|
18
|
+
import { ReactComponent as World } from '../../icons/world.svg';
|
|
19
|
+
import { ReactComponent as Zoom } from '../../icons/zoom.svg';
|
|
20
|
+
|
|
4
21
|
import { ReactComponent as Access } from '../../icons/access.svg';
|
|
5
22
|
import { ReactComponent as Add } from '../../icons/add.svg';
|
|
6
23
|
import { ReactComponent as AddCircle } from '../../icons/add-circle.svg';
|
|
@@ -20,12 +37,10 @@ import { ReactComponent as ArrowLink } from '../../icons/arrow-link.svg';
|
|
|
20
37
|
import { ReactComponent as Asset } from '../../icons/asset.svg';
|
|
21
38
|
import { ReactComponent as AssetAddFile } from '../../icons/asset-add-file.svg';
|
|
22
39
|
import { ReactComponent as AssetAdd } from '../../icons/asset-add.svg';
|
|
23
|
-
import { ReactComponent as Autocomplete } from '../../icons/autocomplete.svg';
|
|
24
40
|
import { ReactComponent as Bank } from '../../icons/bank.svg';
|
|
25
41
|
import { ReactComponent as Beaker } from '../../icons/beaker.svg';
|
|
26
42
|
import { ReactComponent as Bell } from '../../icons/bell.svg';
|
|
27
43
|
import { ReactComponent as Bookmark } from '../../icons/bookmark.svg';
|
|
28
|
-
import { ReactComponent as Buildings } from '../../icons/buildings.svg';
|
|
29
44
|
import { ReactComponent as Bulb } from '../../icons/bulb.svg';
|
|
30
45
|
import { ReactComponent as CaretBotton } from '../../icons/caret-bottom.svg';
|
|
31
46
|
import { ReactComponent as CaretLeft } from '../../icons/caret-left.svg';
|
|
@@ -57,7 +72,6 @@ import { ReactComponent as Exchange } from '../../icons/exchange.svg';
|
|
|
57
72
|
import { ReactComponent as Expand } from '../../icons/expand.svg';
|
|
58
73
|
import { ReactComponent as Export } from '../../icons/export.svg';
|
|
59
74
|
import { ReactComponent as Flag } from '../../icons/flag.svg';
|
|
60
|
-
import { ReactComponent as Github } from '../../icons/github.svg';
|
|
61
75
|
import { ReactComponent as Globe } from '../../icons/globe.svg';
|
|
62
76
|
import { ReactComponent as Home } from '../../icons/home.svg';
|
|
63
77
|
import { ReactComponent as HomeUser } from '../../icons/home-user.svg';
|
|
@@ -79,23 +93,19 @@ import { ReactComponent as Organization } from '../../icons/organization.svg';
|
|
|
79
93
|
import { ReactComponent as Organizations } from '../../icons/organizations.svg';
|
|
80
94
|
import { ReactComponent as Phone } from '../../icons/phone.svg';
|
|
81
95
|
import { ReactComponent as Platform } from '../../icons/platform.svg';
|
|
82
|
-
import { ReactComponent as Position } from '../../icons/position.svg';
|
|
83
96
|
import { ReactComponent as ProductActivated } from '../../icons/product-activated.svg';
|
|
84
97
|
import { ReactComponent as ProductAdd } from '../../icons/product-add.svg';
|
|
85
98
|
import { ReactComponent as Products } from '../../icons/products.svg';
|
|
86
99
|
import { ReactComponent as Projects } from '../../icons/projects.svg';
|
|
87
100
|
import { ReactComponent as Puzzle } from '../../icons/puzzle.svg';
|
|
88
101
|
import { ReactComponent as Question } from '../../icons/question.svg';
|
|
89
|
-
import { ReactComponent as Quote } from '../../icons/quote.svg';
|
|
90
102
|
import { ReactComponent as Receipt } from '../../icons/receipt.svg';
|
|
91
|
-
import { ReactComponent as SaveMoney } from '../../icons/save-money.svg';
|
|
92
103
|
import { ReactComponent as Search } from '../../icons/search.svg';
|
|
93
104
|
import { ReactComponent as SeePage } from '../../icons/see-page.svg';
|
|
94
105
|
import { ReactComponent as Settings } from '../../icons/settings.svg';
|
|
95
106
|
import { ReactComponent as Shield } from '../../icons/shield.svg';
|
|
96
107
|
import { ReactComponent as Star } from '../../icons/star.svg';
|
|
97
108
|
import { ReactComponent as StarFilled } from '../../icons/star-filled.svg';
|
|
98
|
-
import { ReactComponent as Stores } from '../../icons/stores.svg';
|
|
99
109
|
import { ReactComponent as Support } from '../../icons/support.svg';
|
|
100
110
|
import { ReactComponent as Switch } from '../../icons/switch.svg';
|
|
101
111
|
import { ReactComponent as Team } from '../../icons/team.svg';
|
|
@@ -107,19 +117,36 @@ import { ReactComponent as ViewList } from '../../icons/view-list.svg';
|
|
|
107
117
|
import { ReactComponent as ViewMiniCard } from '../../icons/view-mini-card.svg';
|
|
108
118
|
import { ReactComponent as Warning } from '../../icons/warning.svg';
|
|
109
119
|
import { ReactComponent as Woosmap } from '../../icons/woosmap.svg';
|
|
110
|
-
import { ReactComponent as World } from '../../icons/world.svg';
|
|
111
120
|
import { ReactComponent as Address } from '../../icons/address.svg';
|
|
112
121
|
import { ReactComponent as Distance } from '../../icons/distance.svg';
|
|
113
122
|
import { ReactComponent as Geolocation } from '../../icons/geolocation.svg';
|
|
114
123
|
import { ReactComponent as Localities } from '../../icons/localities.svg';
|
|
115
124
|
import { ReactComponent as Map } from '../../icons/map.svg';
|
|
116
125
|
import { ReactComponent as Merchant } from '../../icons/merchant.svg';
|
|
126
|
+
import { ReactComponent as Stores } from '../../icons/stores.svg';
|
|
117
127
|
import { ReactComponent as Traffic } from '../../icons/traffic.svg';
|
|
118
128
|
import { ReactComponent as SocialFacebook } from '../../icons/social-facebook.svg';
|
|
119
129
|
import { ReactComponent as SocialLinkedin } from '../../icons/social-linkedin.svg';
|
|
120
130
|
import { ReactComponent as SocialTwitter } from '../../icons/social-twitter.svg';
|
|
121
131
|
|
|
122
132
|
const Icons = {
|
|
133
|
+
autocomplete: Autocomplete,
|
|
134
|
+
battery: Battery,
|
|
135
|
+
buildings: Buildings,
|
|
136
|
+
cars: Cars,
|
|
137
|
+
github: Github,
|
|
138
|
+
green: Green,
|
|
139
|
+
'map-hd': MapHd,
|
|
140
|
+
markers: Markers,
|
|
141
|
+
notification: Notification,
|
|
142
|
+
position: Position,
|
|
143
|
+
quote: Quote,
|
|
144
|
+
'save-money': SaveMoney,
|
|
145
|
+
schedule: Schedule,
|
|
146
|
+
security: Security,
|
|
147
|
+
world: World,
|
|
148
|
+
zoom: Zoom,
|
|
149
|
+
|
|
123
150
|
access: Access,
|
|
124
151
|
add: Add,
|
|
125
152
|
'add-circle': AddCircle,
|
|
@@ -139,12 +166,10 @@ const Icons = {
|
|
|
139
166
|
asset: Asset,
|
|
140
167
|
'asset-add-file': AssetAddFile,
|
|
141
168
|
'asset-add': AssetAdd,
|
|
142
|
-
autocomplete: Autocomplete,
|
|
143
169
|
bank: Bank,
|
|
144
170
|
beaker: Beaker,
|
|
145
171
|
bell: Bell,
|
|
146
172
|
bookmark: Bookmark,
|
|
147
|
-
buildings: Buildings,
|
|
148
173
|
bulb: Bulb,
|
|
149
174
|
'caret-bottom': CaretBotton,
|
|
150
175
|
'caret-left': CaretLeft,
|
|
@@ -177,7 +202,6 @@ const Icons = {
|
|
|
177
202
|
export: Export,
|
|
178
203
|
flag: Flag,
|
|
179
204
|
globe: Globe,
|
|
180
|
-
github: Github,
|
|
181
205
|
home: Home,
|
|
182
206
|
'home-user': HomeUser,
|
|
183
207
|
import: Import,
|
|
@@ -198,16 +222,13 @@ const Icons = {
|
|
|
198
222
|
organizations: Organizations,
|
|
199
223
|
phone: Phone,
|
|
200
224
|
platform: Platform,
|
|
201
|
-
position: Position,
|
|
202
225
|
'product-activated': ProductActivated,
|
|
203
226
|
'product-add': ProductAdd,
|
|
204
227
|
products: Products,
|
|
205
228
|
projects: Projects,
|
|
206
229
|
puzzle: Puzzle,
|
|
207
230
|
question: Question,
|
|
208
|
-
quote: Quote,
|
|
209
231
|
receipt: Receipt,
|
|
210
|
-
'save-money': SaveMoney,
|
|
211
232
|
search: Search,
|
|
212
233
|
'see-page': SeePage,
|
|
213
234
|
settings: Settings,
|
|
@@ -226,7 +247,6 @@ const Icons = {
|
|
|
226
247
|
'view-mini-card': ViewMiniCard,
|
|
227
248
|
warning: Warning,
|
|
228
249
|
woosmap: Woosmap,
|
|
229
|
-
world: World,
|
|
230
250
|
address: Address,
|
|
231
251
|
distance: Distance,
|
|
232
252
|
geolocation: Geolocation,
|
|
@@ -84,46 +84,52 @@ export const woosmapBoundsFromViewport = function woosmapBoundsFromViewport(view
|
|
|
84
84
|
);
|
|
85
85
|
};
|
|
86
86
|
|
|
87
|
-
export const createWoosmapMap = (node) =>
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
87
|
+
export const createWoosmapMap = (node) => {
|
|
88
|
+
try {
|
|
89
|
+
return new window.woosmap.map.Map(node, {
|
|
90
|
+
styles: [
|
|
91
|
+
{
|
|
92
|
+
featureType: 'administrative',
|
|
93
|
+
elementType: 'all',
|
|
94
|
+
stylers: [{ visibility: 'on' }, { saturation: -100 }, { lightness: 20 }],
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
featureType: 'road',
|
|
98
|
+
elementType: 'all',
|
|
99
|
+
stylers: [{ visibility: 'on' }, { saturation: -100 }, { lightness: 40 }],
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
featureType: 'water',
|
|
103
|
+
elementType: 'all',
|
|
104
|
+
stylers: [{ visibility: 'on' }, { saturation: -10 }, { lightness: 30 }],
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
featureType: 'landscape.man_made',
|
|
108
|
+
elementType: 'all',
|
|
109
|
+
stylers: [{ visibility: 'simplified' }, { saturation: -60 }, { lightness: 10 }],
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
featureType: 'landscape.natural',
|
|
113
|
+
elementType: 'all',
|
|
114
|
+
stylers: [{ visibility: 'simplified' }, { saturation: -60 }, { lightness: 60 }],
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
featureType: 'poi',
|
|
118
|
+
elementType: 'all',
|
|
119
|
+
stylers: [{ visibility: 'off' }, { saturation: -100 }, { lightness: 60 }],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
featureType: 'transit',
|
|
123
|
+
elementType: 'all',
|
|
124
|
+
stylers: [{ visibility: 'off' }, { saturation: -100 }, { lightness: 60 }],
|
|
125
|
+
},
|
|
126
|
+
],
|
|
127
|
+
});
|
|
128
|
+
} catch (e) {
|
|
129
|
+
console.error(e);
|
|
130
|
+
return null;
|
|
131
|
+
}
|
|
132
|
+
};
|
|
127
133
|
export class WoosmapMapBoundingBox {
|
|
128
134
|
constructor(bounds, padding) {
|
|
129
135
|
this.overlayView = new window.woosmap.map.OverlayView();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M44.256 77.188a1.5 1.5 0 0 1-1.461-1.84L46.346 60.1h-5.454a1.5 1.5 0 0 1-1.247-2.334l16.036-23.975a1.5 1.5 0 0 1 2.707 1.178l-3.763 15.99h5.6a1.5 1.5 0 0 1 1.236 2.35L45.493 76.538a1.5 1.5 0 0 1-1.237.65ZM43.7 57.1h4.536a1.5 1.5 0 0 1 1.461 1.84l-2.178 9.36 9.854-14.336h-4.642a1.5 1.5 0 0 1-1.46-1.844l2.3-9.772Z"/><path d="M66.1 89.777H35.313a7.619 7.619 0 0 1-7.611-7.61v-53.72a7.62 7.62 0 0 1 7.611-7.612H66.1a7.62 7.62 0 0 1 7.611 7.612v53.72a7.619 7.619 0 0 1-7.611 7.61ZM35.313 23.835a4.617 4.617 0 0 0-4.613 4.612v53.72a4.616 4.616 0 0 0 4.611 4.61H66.1a4.615 4.615 0 0 0 4.611-4.61v-53.72a4.616 4.616 0 0 0-4.611-4.612ZM58.576 18.74H42.241a1.5 1.5 0 0 1-1.5-1.5v-3.876a4.5 4.5 0 0 1 4.494-4.5h10.347a4.5 4.5 0 0 1 4.494 4.5v3.876a1.5 1.5 0 0 1-1.5 1.5Zm-14.835-3h13.335v-2.376a1.5 1.5 0 0 0-1.494-1.5H45.235a1.5 1.5 0 0 0-1.494 1.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M40.7 51.954h38.284a2.765 2.765 0 0 0 2.523-3.9l-4.392-9.771a4.147 4.147 0 0 0-3.776-2.442H46.347a4.147 4.147 0 0 0-3.776 2.442l-4.392 9.771a2.766 2.766 0 0 0 2.523 3.9Zm4.606-12.441a1.14 1.14 0 0 1 1.039-.672h26.994a1.14 1.14 0 0 1 1.039.672l4.245 9.441h-37.56Z"/><path d="M88.652 45.813 82.39 33.268a7.954 7.954 0 0 0-7.156-4.426H44.558a7.954 7.954 0 0 0-7.158 4.426l-6.259 12.545a16.041 16.041 0 0 0-1.681 7.127v24.418a6.846 6.846 0 0 0 13.692 0l33.488-.007v.007a6.846 6.846 0 1 0 13.692 0V52.94a16.037 16.037 0 0 0-1.68-7.127Zm-1.32 31.545a3.846 3.846 0 1 1-7.692 0v-3.007H40.152v3.007a3.846 3.846 0 1 1-7.692 0V52.94a13.018 13.018 0 0 1 1.365-5.787l6.262-12.546a4.969 4.969 0 0 1 4.471-2.765h30.676a4.969 4.969 0 0 1 4.471 2.765l6.263 12.546a13.024 13.024 0 0 1 1.364 5.787Z"/><path d="M49.134 57.354h-7.973a4.356 4.356 0 1 0 0 8.711h7.973a4.356 4.356 0 1 0 0-8.711Zm0 5.711h-7.973a1.356 1.356 0 1 1 0-2.711h7.973a1.356 1.356 0 1 1 0 2.711ZM78.631 57.354h-7.973a4.356 4.356 0 1 0 0 8.711h7.973a4.356 4.356 0 1 0 0-8.711Zm0 5.711h-7.973a1.356 1.356 0 1 1 0-2.711h7.973a1.356 1.356 0 1 1 0 2.711ZM20.36 64.312a3.846 3.846 0 1 1-7.692 0V39.894a13.024 13.024 0 0 1 1.364-5.787L20.3 21.561a4.967 4.967 0 0 1 4.466-2.761h30.676a4.967 4.967 0 0 1 4.471 2.765l1.634 3.274 2.685-1.34-1.632-3.278a7.955 7.955 0 0 0-7.158-4.421H24.766a7.955 7.955 0 0 0-7.156 4.425l-6.262 12.543a16.027 16.027 0 0 0-1.68 7.126v24.418a6.846 6.846 0 1 0 13.692 0l2-.008v-3h-5Z"/><path d="M25.994 26.188a1.019 1.019 0 0 1 .928-.6h25.752v-3H26.922a4.027 4.027 0 0 0-3.665 2.371l-4.191 9.321a2.708 2.708 0 0 0 2.47 3.818h7.814v-3h-7.362ZM17.013 48.663a4.361 4.361 0 0 0 4.356 4.356H24.1v-3h-2.73a1.356 1.356 0 1 1 0-2.712h3.986v-3h-3.987a4.361 4.361 0 0 0-4.356 4.356Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M88.83 44.026a7.654 7.654 0 0 0-10.814 0L67.6 54.445a7.654 7.654 0 0 0-7.612-6.965h-7.5v-8.773A5.139 5.139 0 0 1 54 35.051l1.3-1.293a10.206 10.206 0 0 0 6.043 2.012c.162 0 .326 0 .489-.013a11.641 11.641 0 0 0 7.756-3.695c7.111-7.111 5.648-18.529 5.583-19.012l-.153-1.119-1.118-.163c-.479-.071-11.817-1.629-19.027 5.582a11.744 11.744 0 0 0-3.731 7.71 10.042 10.042 0 0 0 2.026 6.586L51.88 32.93a8.141 8.141 0 0 0-1.8 2.729 8.411 8.411 0 0 0-1.65-1.307 7.659 7.659 0 0 0-1.176-5.1 8.881 8.881 0 0 0-5.354-3.64c-7.3-1.957-13.972 3.226-14.252 3.449l-.886.7.427 1.046c.136.332 3.415 8.17 10.614 10.1a10.424 10.424 0 0 0 2.706.376 8.134 8.134 0 0 0 3.765-.9 7.737 7.737 0 0 0 3.168-3.055 5.391 5.391 0 0 1 2.044 4.206v5.946H40.2a15.278 15.278 0 0 0-10 3.72l-7.976 6.9-2.24-3.6-12.875 8.009 16.023 25.763 12.875-8.007-1.741-2.8h22.013a23.806 23.806 0 0 0 16.946-7.019L88.83 54.84a7.654 7.654 0 0 0 0-10.814Zm-34.7-18.8a8.853 8.853 0 0 1 2.857-5.76c4.211-4.211 10.357-4.878 13.829-4.878.569 0 1.066.018 1.471.041.151 2.893.024 10.455-4.829 15.307a8.744 8.744 0 0 1-5.781 2.82 7.236 7.236 0 0 1-4.235-1.153l9.21-9.21-2.121-2.121-9.222 9.228a7.02 7.02 0 0 1-1.176-4.269ZM42.905 37.715a5.9 5.9 0 0 1-4.324.292c-4.338-1.163-7.02-5.285-8.085-7.263 1.893-1.185 6.235-3.412 10.63-2.234a5.973 5.973 0 0 1 3.616 2.39 4.585 4.585 0 0 1 .717 2.308l-8.533-2.287-.777 2.9 8.514 2.279a4.7 4.7 0 0 1-1.758 1.615ZM24.1 84.14 11.241 63.472l7.78-4.839L31.875 79.3Zm62.609-31.421L71.1 68.324a20.828 20.828 0 0 1-14.825 6.14H32.4l-8.57-13.779 8.335-7.212A12.275 12.275 0 0 1 40.2 50.48h19.79a4.647 4.647 0 0 1 0 9.293H47.654v3h12.332a7.541 7.541 0 0 0 1.026-.077v.077a5.99 5.99 0 0 0 4.266-1.767l14.859-14.859a4.647 4.647 0 0 1 6.572 6.572Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M87.036 27.275 66.6 19.33a10.3 10.3 0 0 0-7.484 0l-19.322 7.514a7.316 7.316 0 0 1-5.308 0l-18.062-7.023a4.773 4.773 0 0 0-6.5 4.448v47.045a4.744 4.744 0 0 0 3.043 4.448L33.4 83.708a10.305 10.305 0 0 0 7.482 0l19.325-7.514a7.316 7.316 0 0 1 5.308 0l18.062 7.023a4.772 4.772 0 0 0 6.5-4.448V31.724a4.745 4.745 0 0 0-3.041-4.449Zm.043 51.494a1.772 1.772 0 0 1-2.415 1.652L66.6 73.4a10.377 10.377 0 0 0-2.251-.584c0-.028.008-.054.008-.082v-5.676a1.5 1.5 0 1 0-3 0v5.674c0 .028.007.054.009.082a10.368 10.368 0 0 0-2.25.584l-19.322 7.514a7.415 7.415 0 0 1-1.154.337V67.177a1.5 1.5 0 0 0-3 0v14.071a7.3 7.3 0 0 1-1.154-.336l-20.435-7.946a1.762 1.762 0 0 1-1.13-1.652V24.269a1.78 1.78 0 0 1 1.767-1.776 1.775 1.775 0 0 1 .648.124L33.4 29.64a10.325 10.325 0 0 0 2.285.589 1.527 1.527 0 0 0-.044.347v4.583a1.5 1.5 0 1 0 3 0v-4.583a1.527 1.527 0 0 0-.044-.347 10.325 10.325 0 0 0 2.285-.589l19.325-7.514a7.3 7.3 0 0 1 1.153-.337V34.27a1.5 1.5 0 1 0 3 0V21.789a7.319 7.319 0 0 1 1.155.337l20.434 7.945a1.761 1.761 0 0 1 1.131 1.653Z"/><path d="M45.01 48.696h-6.186v-6.395h-3.976v16.324h3.976v-6.72h6.186v6.72h3.976V42.301H45.01v6.395zM57.963 42.3h-6.116v16.325h6.116c5.209 0 8.557-3.325 8.557-8.162 0-4.863-3.348-8.163-8.557-8.163Zm-.256 12.883h-1.884V45.7h1.884c3 0 4.768 1.767 4.768 4.767s-1.768 4.717-4.768 4.717Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M59.683 41.938a9.562 9.562 0 1 0-9.562 9.562 9.572 9.572 0 0 0 9.562-9.562Zm-16.123 0a6.562 6.562 0 1 1 6.561 6.562 6.568 6.568 0 0 1-6.561-6.562Z"/><path d="M86.741 33.162a21.642 21.642 0 0 0-9.254-4.552c-.023 0-.047 0-.07-.008A21.583 21.583 0 0 0 60.5 22.121a1.467 1.467 0 0 0-.663.213 21.376 21.376 0 0 0-19.577.066 1.489 1.489 0 0 0-.768-.279A21.583 21.583 0 0 0 22.583 28.6c-.023 0-.047 0-.07.008A21.581 21.581 0 0 0 10.6 63.555c5.09 6.067 12.644 7.36 19.95 8.612 6.618 1.133 12.869 2.2 16.671 6.735a1.5 1.5 0 0 0 .854.5 3.618 3.618 0 0 0 2.046.6 3.529 3.529 0 0 0 2.249-.773 1.482 1.482 0 0 0 .409-.331c3.8-4.532 10.053-5.6 16.671-6.735 7.306-1.252 14.86-2.545 19.95-8.612a21.6 21.6 0 0 0-2.659-30.389ZM68.314 26.2A18.594 18.594 0 0 1 79.415 50c-2.333 6.408-8.228 9.773-14.471 13.336a57.332 57.332 0 0 0-9.36 6.182 54.848 54.848 0 0 1 6.362-8.533c4.792-5.654 9.747-11.5 9.747-19.421a21.514 21.514 0 0 0-7.539-16.349 18.526 18.526 0 0 1 4.16.985Zm-36.628 0a18.56 18.56 0 0 1 4.426-1 21.517 21.517 0 0 0-7.564 16.372c0 7.92 4.955 13.767 9.748 19.421a51.9 51.9 0 0 1 6.573 8.936 53.989 53.989 0 0 0-9.813-6.585C28.813 59.775 22.918 56.41 20.585 50a18.594 18.594 0 0 1 11.101-23.8ZM12.9 61.626a18.571 18.571 0 0 1 2.289-26.165 18.671 18.671 0 0 1 4.211-2.656 21.532 21.532 0 0 0-1.636 18.223c2.708 7.442 9.364 11.241 15.8 14.915a50.851 50.851 0 0 1 9.369 6.274c-3.65-1.59-7.8-2.309-11.88-3.008C23.973 68 17.281 66.85 12.9 61.626Zm36.837 15.236c0-7.015-4.653-12.5-9.153-17.815-4.646-5.483-9.036-10.662-9.036-17.481a18.573 18.573 0 0 1 37.145 0c0 6.819-4.388 12-9.036 17.481-4.371 5.159-8.874 10.492-9.128 17.225-.094.224-.194.444-.278.676 0 .013-.006.027-.01.04a.661.661 0 0 1-.12.018c-.221 0-.358-.065-.384-.144ZM87.1 61.626C82.719 66.85 76.027 68 68.943 69.209c-4.075.7-8.23 1.418-11.88 3.008a50.851 50.851 0 0 1 9.369-6.274c6.437-3.674 13.093-7.473 15.8-14.915A21.532 21.532 0 0 0 80.6 32.805a18.7 18.7 0 0 1 4.216 2.655A18.572 18.572 0 0 1 87.1 61.626Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M49.93 89.4A40.4 40.4 0 1 1 90.332 49 40.447 40.447 0 0 1 49.93 89.4Zm0-77.8A37.4 37.4 0 1 0 87.332 49 37.444 37.444 0 0 0 49.93 11.6Z"/><path d="M49.93 75.417a10.962 10.962 0 0 1-10.95-10.949 1.5 1.5 0 0 1 1.5-1.5h18.9a1.5 1.5 0 0 1 1.5 1.5 10.962 10.962 0 0 1-10.95 10.949Zm-7.808-9.449a7.951 7.951 0 0 0 15.615 0ZM68.773 59.967H31.086a4.9 4.9 0 0 1 0-9.8h1.848V39.578A17 17 0 0 1 50.75 22.6a17.2 17.2 0 0 1 16.175 17.416v10.151h1.848a4.9 4.9 0 1 1 0 9.8Zm-37.687-6.8a1.9 1.9 0 0 0 0 3.8h37.687a1.9 1.9 0 1 0 0-3.8h-3.348a1.5 1.5 0 0 1-1.5-1.5V40.016A14.2 14.2 0 0 0 50.609 25.6a14 14 0 0 0-14.675 13.978v12.089a1.5 1.5 0 0 1-1.5 1.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M64.4 66.354a1.493 1.493 0 0 1-1.023-.4l-14.1-13.177a1.5 1.5 0 0 1 2.048-2.192l14.1 13.177a1.5 1.5 0 0 1-1.024 2.6Z"/><path d="M48.5 24.178v27.5a1.5 1.5 0 0 0 3 0v-27.5a1.5 1.5 0 1 0-3 0ZM63.163 15.166a36.954 36.954 0 0 1 5.212 2.454 1.5 1.5 0 0 0 1.486-2.606 40.031 40.031 0 0 0-5.635-2.654 1.5 1.5 0 0 0-1.063 2.806ZM78.625 26.227a1.5 1.5 0 0 0 2.31-1.915 40.64 40.64 0 0 0-4.33-4.471 1.5 1.5 0 1 0-1.988 2.247 37.491 37.491 0 0 1 4.008 4.139ZM85.172 37.893a1.5 1.5 0 0 0 1.42 1.015 1.523 1.523 0 0 0 .485-.081 1.5 1.5 0 0 0 .934-1.905 39.955 39.955 0 0 0-2.469-5.716 1.5 1.5 0 0 0-2.653 1.4 36.983 36.983 0 0 1 2.283 5.287Z"/><path d="M82.744 70.563a1.5 1.5 0 0 0-2.086.387 37.149 37.149 0 1 1-24.914-57.741 1.521 1.521 0 0 0 .232.018 1.5 1.5 0 0 0 .228-2.983A40.169 40.169 0 1 0 50 90.1a40.213 40.213 0 0 0 33.131-17.451 1.5 1.5 0 0 0-.387-2.086ZM89.867 45.006a1.5 1.5 0 1 0-2.978.364 37.718 37.718 0 0 1 .278 4.564q0 .6-.019 1.192a1.5 1.5 0 0 0 1.452 1.547h.049a1.5 1.5 0 0 0 1.5-1.452q.021-.642.021-1.288a40.873 40.873 0 0 0-.303-4.927ZM87.93 57.631a1.5 1.5 0 0 0-1.811 1.1 37.021 37.021 0 0 1-1.792 5.474 1.5 1.5 0 1 0 2.77 1.153 39.92 39.92 0 0 0 1.937-5.92 1.5 1.5 0 0 0-1.104-1.807Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M39.26 35.934v4.246h-.474a1.644 1.644 0 0 0-1.645 1.645v17.284a1.644 1.644 0 0 0 1.645 1.645h22.428a1.644 1.644 0 0 0 1.645-1.645V41.825a1.644 1.644 0 0 0-1.645-1.645h-.579v-4.246a10.688 10.688 0 1 0-21.375 0Zm12.558 15.7v4.085a1.871 1.871 0 0 1-3.741 0v-4.088a3.675 3.675 0 1 1 3.741 0Zm5.077-15.7v4.246H43v-4.246a6.948 6.948 0 1 1 13.9 0Z"/><path d="M84.589 22.3 50.446 11.653a1.491 1.491 0 0 0-.892 0L15.411 22.3a1.5 1.5 0 0 0-1.054 1.432v10.931A58.561 58.561 0 0 0 49.4 88.289a1.506 1.506 0 0 0 1.206 0 58.561 58.561 0 0 0 35.04-53.626V23.736a1.5 1.5 0 0 0-1.057-1.436Zm-1.946 12.363A55.557 55.557 0 0 1 50 85.273a55.557 55.557 0 0 1-32.643-50.61v-9.824L50 14.656l32.643 10.183Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M21.823 57.607 48.4 72.948a1.5 1.5 0 0 0 1.5 0l26.57-15.341a1.5 1.5 0 0 0 .75-1.3v-30.68a1.5 1.5 0 0 0-.75-1.3L49.9 8.988a1.5 1.5 0 0 0-1.5 0L21.823 24.329a1.5 1.5 0 0 0-.75 1.3v30.68a1.5 1.5 0 0 0 .75 1.298Zm2.25-30.014L47.645 41.2v27.851L24.073 55.442Zm26.572 41.458V41.2l23.57-13.608v27.85Zm-1.5-57.032 23.023 13.293L49.145 38.6 26.12 25.312ZM80.405 84.137h-25.04a5.569 5.569 0 0 0-10.73 0H19.6a1.5 1.5 0 0 0 0 3h25.04a5.569 5.569 0 0 0 10.73 0h25.04a1.5 1.5 0 0 0 0-3Z"/></svg>
|