@woosmap/ui 4.226.13 → 4.226.14

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.226.13",
3
+ "version": "4.226.14",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -49,8 +49,8 @@ export default class PricingSlider extends Component {
49
49
  };
50
50
 
51
51
  computeQueries = (valueNow) => {
52
- const { productPricing, publicMode } = this.props;
53
- const { pricing, publicTierCount } = productPricing;
52
+ const { productPricing } = this.props;
53
+ const { pricing } = productPricing;
54
54
  if (pricing.length === 0) {
55
55
  return valueNow;
56
56
  }
@@ -62,7 +62,7 @@ export default class PricingSlider extends Component {
62
62
 
63
63
  const previousTier = pricing[tierIndex - 1] ? pricing[tierIndex - 1][0] : 0;
64
64
  const newValue = ((tier - previousTier) * value) / 100000 + previousTier;
65
- if (newValue > pricing[publicMode ? publicTierCount - 1 : pricing.length - 1][0]) {
65
+ if (newValue > pricing[pricing.length - 2][0]) {
66
66
  return '∞';
67
67
  }
68
68
  return Math.floor(newValue);
@@ -99,7 +99,7 @@ export default class PricingSlider extends Component {
99
99
  value = 0;
100
100
  } else {
101
101
  const index = props.key / 100000 - 1;
102
- if (index === displayedPricing.length - 1) {
102
+ if (index === displayedPricing.length - 2) {
103
103
  value = '∞';
104
104
  } else {
105
105
  const tier = displayedPricing[props.key / 100000 - 1];
@@ -306,7 +306,6 @@ PricingSlider.defaultProps = {
306
306
  PricingSlider.propTypes = {
307
307
  productPricing: PropTypes.object.isRequired,
308
308
  name: PropTypes.string.isRequired,
309
- publicMode: PropTypes.bool.isRequired,
310
309
  currency: PropTypes.string.isRequired,
311
310
  defaultQueries: PropTypes.number,
312
311
  onChange: PropTypes.func,