@woosmap/ui 4.184.1001 → 4.184.1002

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "4.184.1001",
3
+ "version": "4.184.1002",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -209,6 +209,21 @@ 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
+
212
227
  const WebsiteIcons = {
213
228
  autocomplete: Autocomplete,
214
229
  'autocomplete-check': AutocompleteCheck,
@@ -418,8 +433,26 @@ const MapDemo = {
418
433
  'map-high-speed-train': MapHighSpeedTrain,
419
434
  };
420
435
 
436
+ const ProductsIcons = {
437
+ address: Address,
438
+ connectors: Connectors,
439
+ distance: Distance,
440
+ geofencing: Geofencing,
441
+ geolocation: Geolocation,
442
+ indoor: Indoor,
443
+ localities: Localities,
444
+ mapping: Mapping,
445
+ maps: Map,
446
+ multisearch: MultiSearch,
447
+ storelocator: StoreLocator,
448
+ stores: Stores,
449
+ traffic: Traffic,
450
+ showcases: Showcases,
451
+ };
452
+
421
453
  const Icons = {
422
454
  ...WebsiteIcons,
455
+ ...ProductsIcons,
423
456
  ...MapDemo,
424
457
  };
425
458