@woosmap/ui 3.125.0 → 3.128.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "3.125.0",
3
+ "version": "3.128.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -5,6 +5,7 @@ import PropTypes from 'prop-types';
5
5
  import { tr } from '../utils/locale';
6
6
  import Icon from '../Icon/Icon';
7
7
  import localitiesImg from '../../images/products/product-localities.png';
8
+ import localitiesUkImg from '../../images/products/product-localities-uk.png';
8
9
  import geolocationImg from '../../images/products/product-geolocation.png';
9
10
  import storesImg from '../../images/products/product-stores.png';
10
11
  import distanceImg from '../../images/products/product-distance.png';
@@ -13,6 +14,7 @@ import mapImg from '../../images/products/product-map.png';
13
14
  import trafficImg from '../../images/products/product-traffic.png';
14
15
  import merchantImg from '../../images/products/product-merchant.png';
15
16
  import localitiesImgSq from '../../images/products/product-localities-sq.png';
17
+ import localitiesUkImgSq from '../../images/products/product-localities-uk-sq.png';
16
18
  import geolocationImgSq from '../../images/products/product-geolocation-sq.png';
17
19
  import storesImgSq from '../../images/products/product-stores-sq.png';
18
20
  import distanceImgSq from '../../images/products/product-distance-sq.png';
@@ -23,6 +25,7 @@ import merchantImgSq from '../../images/products/product-merchant-sq.png';
23
25
 
24
26
  const productImg = {
25
27
  LOCALITIES: localitiesImg,
28
+ LOCALITIES_ADDRESS_UK: localitiesUkImg,
26
29
  GEOLOCATION: geolocationImg,
27
30
  STORES: storesImg,
28
31
  DISTANCE: distanceImg,
@@ -33,6 +36,7 @@ const productImg = {
33
36
  };
34
37
  const productImgSq = {
35
38
  LOCALITIES: localitiesImgSq,
39
+ LOCALITIES_ADDRESS_UK: localitiesUkImgSq,
36
40
  GEOLOCATION: geolocationImgSq,
37
41
  STORES: storesImgSq,
38
42
  DISTANCE: distanceImgSq,
@@ -183,6 +187,7 @@ Card.propTypes = {
183
187
  onClick: PropTypes.func,
184
188
  product: PropTypes.oneOf([
185
189
  'LOCALITIES',
190
+ 'LOCALITIES_ADDRESS_UK',
186
191
  'GEOLOCATION',
187
192
  'STORES',
188
193
  'DISTANCE',