muba-posting 4.1.26 → 4.1.28

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/Posting.js CHANGED
@@ -298,7 +298,7 @@ export default class Posting extends React.Component {
298
298
 
299
299
  prevViews.unshift(this.state.view);
300
300
 
301
- if (this.state.fullPosting && this.state.postingAd.town && Views.PUBLISH_6 !== this.state.view) {
301
+ if (this.state.fullPosting && this.state.postingAd.town && Views.PUBLISH_6 !== this.state.view && Views.PAYMENT_ONLINE !== view) {
302
302
  const ad = { ...this.state.postingAd };
303
303
  if (Views.PUBLISH_4 !== this.state.view) {
304
304
  delete ad.images;
package/commonStyles.js CHANGED
@@ -1350,7 +1350,7 @@ export default StyleSheet.create({
1350
1350
  },
1351
1351
 
1352
1352
  previewHighlightText: {
1353
- fontFamily: Fonts.Button,
1353
+ fontFamily: 'PostingSemiBold',
1354
1354
  textTransform: 'uppercase',
1355
1355
  color: 'rgb(15, 179, 166)'
1356
1356
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "muba-posting",
3
- "version": "4.1.26",
3
+ "version": "4.1.28",
4
4
  "description": "Posting",
5
5
  "main": "Posting.js",
6
6
  "scripts": {
package/utils/Views.js CHANGED
@@ -7,5 +7,6 @@ export const Views = {
7
7
  PUBLISH_5: 'publish-5',
8
8
  PUBLISH_6: 'publish-6',
9
9
  PREVIEW: 'preview',
10
- EDIT_SELECTOR: 'posting-edit'
10
+ EDIT_SELECTOR: 'posting-edit',
11
+ PAYMENT_ONLINE: 'PaymentOnline'
11
12
  }