@woosmap/ui 4.151.0 → 4.152.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.151.0",
3
+ "version": "4.152.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -72,7 +72,7 @@ class PricingSlider extends Component {
72
72
  }
73
73
  };
74
74
 
75
- contactSalesButton = () => <Button label={tr('Contact Sales')} />;
75
+ contactSalesButton = () => <Button size="small" label={tr('Contact Sales')} />;
76
76
 
77
77
  renderMarks = (props) => {
78
78
  const { productPricing, publicMode } = this.props;
@@ -144,10 +144,12 @@ class PricingSlider extends Component {
144
144
  }}
145
145
  max={displayedPricing.length * 1000}
146
146
  />
147
- <div className="pricing-slider__cta">
148
- <Input type="text" onChange={this.reverseComputeQueries} value={computedQueries} />{' '}
149
- {productPricing.unit}
150
- {amount}
147
+ <div className="pricing-slider__queries">
148
+ <Input type="text" onChange={this.reverseComputeQueries} value={computedQueries} />
149
+ </div>
150
+ <div className="pricing-slider__price">
151
+ <span>{productPricing.unit}</span>
152
+ <span>{amount}</span>
151
153
  </div>
152
154
  </div>
153
155
  );