@woosmap/ui 4.247.0 → 4.248.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/Button/Button.js +1 -0
- package/src/components/Card/Card.js +5 -0
- package/src/components/Icon/Icon.js +1 -0
- package/src/components/Label/Label.js +1 -1
- package/src/components/UseCase/UseCase.js +2 -0
- package/src/images/products/product-localities-ie-sq.png +0 -0
- package/src/images/products/product-localities-ie.png +0 -0
package/package.json
CHANGED
|
@@ -35,11 +35,14 @@ import indoorImgSq from '../../images/products/product-indoor-sq.png';
|
|
|
35
35
|
import what3wordsImgSq from '../../images/products/product-what3words-sq.png';
|
|
36
36
|
import transitImgSq from '../../images/products/product-transit-sq.png';
|
|
37
37
|
import distanceTollImgSq from '../../images/products/product-distance-toll-sq.png';
|
|
38
|
+
import localitiesIeImg from '../../images/products/product-localities-ie.png';
|
|
39
|
+
import localitiesIeImgSq from '../../images/products/product-localities-ie-sq.png';
|
|
38
40
|
|
|
39
41
|
const productImg = {
|
|
40
42
|
DATASETS: datasetsImg,
|
|
41
43
|
LOCALITIES: localitiesImg,
|
|
42
44
|
LOCALITIES_ADDRESS_UK: localitiesUkImg,
|
|
45
|
+
LOCALITIES_IE: localitiesIeImg,
|
|
43
46
|
GEOLOCATION: geolocationImg,
|
|
44
47
|
STORES: storesImg,
|
|
45
48
|
DISTANCE: distanceImg,
|
|
@@ -56,6 +59,7 @@ const productImg = {
|
|
|
56
59
|
const productImgSq = {
|
|
57
60
|
DATASETS: datasetsImgSq,
|
|
58
61
|
LOCALITIES: localitiesImgSq,
|
|
62
|
+
LOCALITIES_IE: localitiesIeImgSq,
|
|
59
63
|
LOCALITIES_ADDRESS_UK: localitiesUkImgSq,
|
|
60
64
|
GEOLOCATION: geolocationImgSq,
|
|
61
65
|
STORES: storesImgSq,
|
|
@@ -325,6 +329,7 @@ Card.propTypes = {
|
|
|
325
329
|
onClick: PropTypes.func,
|
|
326
330
|
product: PropTypes.oneOf([
|
|
327
331
|
'LOCALITIES',
|
|
332
|
+
'LOCALITIES_IE',
|
|
328
333
|
'LOCALITIES_ADDRESS_UK',
|
|
329
334
|
'GEOLOCATION',
|
|
330
335
|
'STORES',
|
|
@@ -423,6 +423,7 @@ import { ReactComponent as Pricing } from '../../icons/pricing.svg';
|
|
|
423
423
|
import { ReactComponent as Contact } from '../../icons/contact.svg';
|
|
424
424
|
|
|
425
425
|
const WebsiteIcons = {
|
|
426
|
+
documentation: Documentation,
|
|
426
427
|
autocomplete: Autocomplete,
|
|
427
428
|
'autocomplete-check': AutocompleteCheck,
|
|
428
429
|
automotive: Automotive,
|
|
@@ -111,7 +111,7 @@ Label.propTypes = {
|
|
|
111
111
|
'datasets',
|
|
112
112
|
undefined,
|
|
113
113
|
]),
|
|
114
|
-
plan: PropTypes.oneOf(['free', 'standard', 'enterprise', 'enterprise--free', undefined]),
|
|
114
|
+
plan: PropTypes.oneOf(['free', 'standard', 'enterprise', 'enterprise--free', 'enterprise_payg', undefined]),
|
|
115
115
|
size: PropTypes.oneOf(['small', 'mini', 'nano', undefined]),
|
|
116
116
|
privilege: PropTypes.oneOf(['superuser', 'staff', 'owner', 'co-owner', undefined]),
|
|
117
117
|
round: PropTypes.bool,
|
|
@@ -12,10 +12,12 @@ import addressImgSq from '../../images/products/product-address-sq.png';
|
|
|
12
12
|
import mapImgSq from '../../images/products/product-map-sq.png';
|
|
13
13
|
import trafficImgSq from '../../images/products/product-traffic-sq.png';
|
|
14
14
|
import indoorImgSq from '../../images/products/product-indoor-sq.png';
|
|
15
|
+
import localitiesIeImgSq from '../../images/products/product-localities-ie-sq.png';
|
|
15
16
|
|
|
16
17
|
const productImg = {
|
|
17
18
|
LOCALITIES: localitiesImgSq,
|
|
18
19
|
LOCALITIES_ADDRESS_UK: localitiesUkImgSq,
|
|
20
|
+
LOCALITIES_IE: localitiesIeImgSq,
|
|
19
21
|
GEOLOCATION: geolocationImgSq,
|
|
20
22
|
STORES: storesImgSq,
|
|
21
23
|
DISTANCE: distanceImgSq,
|
|
Binary file
|
|
Binary file
|