@woosmap/ui 4.220.2 → 4.220.4

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.220.2",
3
+ "version": "4.220.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -173,7 +173,7 @@ const Pricing = {
173
173
  description:
174
174
  "Generate customizable, embeddable map images with minimal integration effort",
175
175
  pricing: [
176
- [5000, 0]
176
+ [5000, 0],
177
177
  [100000, 0.74],
178
178
  [500000, 0.59],
179
179
  [1000000, 0.55],
@@ -170,6 +170,12 @@ export default class PricingSlider extends Component {
170
170
  </tr>
171
171
  );
172
172
  })}
173
+ {displayedPricing[displayedPricing.length] ? (
174
+ <tr>
175
+ <td>{`${numeral(displayedPricing[displayedPricing.length][0]).format('0.[0]a')} to ∞`}</td>
176
+ <td>Contact us for discount</td>
177
+ </tr>
178
+ ) : null}
173
179
  </table>
174
180
  </div>
175
181
  );