@woosmap/ui 4.184.1001 → 4.184.1003
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
CHANGED
|
@@ -209,6 +209,27 @@ import { ReactComponent as StockAvailability } from '../../icons/stock-availabil
|
|
|
209
209
|
import { ReactComponent as StoreGog } from '../../icons/store-cog.svg';
|
|
210
210
|
import { ReactComponent as StoreInfo } from '../../icons/store-info.svg';
|
|
211
211
|
|
|
212
|
+
import { ReactComponent as Stores } from '../../icons/stores.svg';
|
|
213
|
+
import { ReactComponent as Traffic } from '../../icons/traffic.svg';
|
|
214
|
+
import { ReactComponent as Geofencing } from '../../icons/geofencing.svg';
|
|
215
|
+
import { ReactComponent as StoreLocator } from '../../icons/storelocator.svg';
|
|
216
|
+
import { ReactComponent as MultiSearch } from '../../icons/multisearch.svg';
|
|
217
|
+
import { ReactComponent as Mapping } from '../../icons/mapping.svg';
|
|
218
|
+
import { ReactComponent as Connectors } from '../../icons/connectors.svg';
|
|
219
|
+
import { ReactComponent as Showcases } from '../../icons/showcases.svg';
|
|
220
|
+
import { ReactComponent as Indoor } from '../../icons/indoor.svg';
|
|
221
|
+
import { ReactComponent as Address } from '../../icons/address.svg';
|
|
222
|
+
import { ReactComponent as Distance } from '../../icons/distance.svg';
|
|
223
|
+
import { ReactComponent as Geolocation } from '../../icons/geolocation.svg';
|
|
224
|
+
import { ReactComponent as Localities } from '../../icons/localities.svg';
|
|
225
|
+
import { ReactComponent as Map } from '../../icons/map.svg';
|
|
226
|
+
|
|
227
|
+
import { ReactComponent as SocialFacebook } from '../../icons/social-facebook.svg';
|
|
228
|
+
import { ReactComponent as SocialGithub } from '../../icons/social-github.svg';
|
|
229
|
+
import { ReactComponent as SocialGoogle } from '../../icons/social-google.svg';
|
|
230
|
+
import { ReactComponent as SocialLinkedin } from '../../icons/social-linkedin.svg';
|
|
231
|
+
import { ReactComponent as SocialTwitter } from '../../icons/social-twitter.svg';
|
|
232
|
+
|
|
212
233
|
const WebsiteIcons = {
|
|
213
234
|
autocomplete: Autocomplete,
|
|
214
235
|
'autocomplete-check': AutocompleteCheck,
|
|
@@ -418,9 +439,32 @@ const MapDemo = {
|
|
|
418
439
|
'map-high-speed-train': MapHighSpeedTrain,
|
|
419
440
|
};
|
|
420
441
|
|
|
442
|
+
const ProductsIcons = {
|
|
443
|
+
address: Address,
|
|
444
|
+
connectors: Connectors,
|
|
445
|
+
distance: Distance,
|
|
446
|
+
geofencing: Geofencing,
|
|
447
|
+
geolocation: Geolocation,
|
|
448
|
+
indoor: Indoor,
|
|
449
|
+
localities: Localities,
|
|
450
|
+
mapping: Mapping,
|
|
451
|
+
maps: Map,
|
|
452
|
+
multisearch: MultiSearch,
|
|
453
|
+
storelocator: StoreLocator,
|
|
454
|
+
stores: Stores,
|
|
455
|
+
traffic: Traffic,
|
|
456
|
+
showcases: Showcases,
|
|
457
|
+
};
|
|
458
|
+
|
|
421
459
|
const Icons = {
|
|
422
460
|
...WebsiteIcons,
|
|
461
|
+
...ProductsIcons,
|
|
423
462
|
...MapDemo,
|
|
463
|
+
'social-facebook': SocialFacebook,
|
|
464
|
+
'social-github': SocialGithub,
|
|
465
|
+
'social-google': SocialGoogle,
|
|
466
|
+
'social-linkedin': SocialLinkedin,
|
|
467
|
+
'social-twitter': SocialTwitter,
|
|
424
468
|
};
|
|
425
469
|
|
|
426
470
|
class Icon extends Component {
|