@woosmap/ui 4.149.0 → 4.150.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
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
const Pricing = {
|
|
4
4
|
Geolocation: {
|
|
5
|
+
image : '../../images/products/product-geolocation-sq.png',
|
|
5
6
|
pricings: {
|
|
6
7
|
'Geolocation (Position) API': {
|
|
7
8
|
publicTierCount: 2,
|
|
@@ -34,6 +35,7 @@ const Pricing = {
|
|
|
34
35
|
},
|
|
35
36
|
},
|
|
36
37
|
Localities: {
|
|
38
|
+
image : '../../images/products/product-localities-sq.png',
|
|
37
39
|
pricings: {
|
|
38
40
|
'Localities Autocomplete API': {
|
|
39
41
|
publicTierCount: 1,
|
|
@@ -104,6 +106,7 @@ const Pricing = {
|
|
|
104
106
|
},
|
|
105
107
|
},
|
|
106
108
|
Distance: {
|
|
109
|
+
image : '../../images/products/product-distance-sq.png',
|
|
107
110
|
pricings: {
|
|
108
111
|
'Distance (Route) API (/q)': {
|
|
109
112
|
publicTierCount: 2,
|
|
@@ -164,6 +167,7 @@ const Pricing = {
|
|
|
164
167
|
},
|
|
165
168
|
},
|
|
166
169
|
'Map-Js': {
|
|
170
|
+
image : '../../images/products/product-map-sq.png',
|
|
167
171
|
pricings: {
|
|
168
172
|
'Map API': {
|
|
169
173
|
publicTierCount: 2,
|
|
@@ -182,6 +186,7 @@ const Pricing = {
|
|
|
182
186
|
},
|
|
183
187
|
},
|
|
184
188
|
Indoor: {
|
|
189
|
+
image : '../../images/products/product-indoor-sq.png',
|
|
185
190
|
pricings: {
|
|
186
191
|
'Indoor (Search) API': {
|
|
187
192
|
publicTierCount: 2,
|
|
@@ -242,6 +247,7 @@ const Pricing = {
|
|
|
242
247
|
},
|
|
243
248
|
},
|
|
244
249
|
Geofencing: {
|
|
250
|
+
image : '../../images/products/product-geofencing-sq.png',
|
|
245
251
|
pricings: {
|
|
246
252
|
'Geofencing Store (Search)': {
|
|
247
253
|
publicTierCount: 2,
|
|
@@ -288,6 +294,7 @@ const Pricing = {
|
|
|
288
294
|
},
|
|
289
295
|
},
|
|
290
296
|
Stores: {
|
|
297
|
+
image : '../../images/products/product-stores-sq.png',
|
|
291
298
|
pricings: {
|
|
292
299
|
'Store (Search) API': {
|
|
293
300
|
publicTierCount: 2,
|
|
@@ -10,7 +10,13 @@ class PricingSimulator extends Component {
|
|
|
10
10
|
<div className="pricing-simulator__wrapper">
|
|
11
11
|
{Object.keys(PricingData).map((category) => (
|
|
12
12
|
<div className="pricing-simulator__item">
|
|
13
|
-
<
|
|
13
|
+
<div className="pricing-simulator__header">
|
|
14
|
+
<div>
|
|
15
|
+
<img src={PricingData[category].image} alt={category} />
|
|
16
|
+
</div>
|
|
17
|
+
<h2>{category}</h2>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
14
20
|
{Object.keys(PricingData[category].pricings).map((pricingKey) => {
|
|
15
21
|
const productPricing = PricingData[category].pricings[pricingKey];
|
|
16
22
|
return (
|