@woosmap/ui 4.180.0 → 4.181.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": "4.180.0",
3
+ "version": "4.181.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -19,6 +19,7 @@ import merchantImg from '../../images/products/product-merchant.png';
19
19
  import indoorImg from '../../images/products/product-indoor.png';
20
20
  import what3wordsImg from '../../images/products/product-what3words.png';
21
21
  import transitImg from '../../images/products/product-transit.png';
22
+ import distanceTollImg from '../../images/products/product-distance-toll.png';
22
23
 
23
24
  import datasetsImgSq from '../../images/products/product-datasets-sq.png';
24
25
  import localitiesImgSq from '../../images/products/product-localities-sq.png';
@@ -33,6 +34,7 @@ import merchantImgSq from '../../images/products/product-merchant-sq.png';
33
34
  import indoorImgSq from '../../images/products/product-indoor-sq.png';
34
35
  import what3wordsImgSq from '../../images/products/product-what3words-sq.png';
35
36
  import transitImgSq from '../../images/products/product-transit-sq.png';
37
+ import distanceTollImgSq from '../../images/products/product-distance-toll-sq.png';
36
38
 
37
39
  const productImg = {
38
40
  DATASETS: datasetsImg,
@@ -49,6 +51,7 @@ const productImg = {
49
51
  INDOOR: indoorImg,
50
52
  W3W: what3wordsImg,
51
53
  TRANSIT: transitImg,
54
+ DISTANCE_WITH_TOLLS: distanceTollImg,
52
55
  };
53
56
  const productImgSq = {
54
57
  DATASETS: datasetsImgSq,
@@ -65,6 +68,7 @@ const productImgSq = {
65
68
  INDOOR: indoorImgSq,
66
69
  W3W: what3wordsImgSq,
67
70
  TRANSIT: transitImgSq,
71
+ DISTANCE_WITH_TOLLS: distanceTollImgSq,
68
72
  };
69
73
 
70
74
  class Header extends Component {
@@ -151,7 +155,7 @@ class Aside extends Component {
151
155
  wrap
152
156
  text={tr(
153
157
  '{{name}} add-on not included in the 10k Free queries/month. Usage is chargeable from the first request.',
154
- { name: product.name },
158
+ { name: product.name }
155
159
  )}
156
160
  >
157
161
  <div className="card__aside__list__item__section__paying-label">
@@ -270,7 +274,7 @@ class Card extends Component {
270
274
  `card--${product.toLowerCase()}`,
271
275
  className,
272
276
  { active },
273
- { 'card--list': isList },
277
+ { 'card--list': isList }
274
278
  )}
275
279
  {...rest}
276
280
  onClick={onClick}