muba-posting 8.0.4 → 8.0.6

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.
Files changed (74) hide show
  1. package/EditHead.js +7 -8
  2. package/Posting.js +27 -0
  3. package/Publish3.js +200 -0
  4. package/Publish5.js +147 -330
  5. package/Publish6.js +1 -1
  6. package/commonStyles.js +54 -39
  7. package/fonts/AdFeatures.json +26629 -0
  8. package/fonts/Font-Awesome-ad.ttf +0 -0
  9. package/fonts/selection-ad.json +1 -0
  10. package/locales/ar.json +6 -1
  11. package/locales/en.json +6 -1
  12. package/locales/es.json +6 -1
  13. package/locales/fr.json +6 -1
  14. package/locales/it.json +6 -1
  15. package/locales/nl.json +6 -1
  16. package/package.json +1 -1
  17. package/assets/images/air-hover.png +0 -0
  18. package/assets/images/air.png +0 -0
  19. package/assets/images/animals-hover.png +0 -0
  20. package/assets/images/animals.png +0 -0
  21. package/assets/images/concierge-hover.png +0 -0
  22. package/assets/images/concierge.png +0 -0
  23. package/assets/images/diningroom-hover.png +0 -0
  24. package/assets/images/diningroom.png +0 -0
  25. package/assets/images/door-hover.png +0 -0
  26. package/assets/images/door.png +0 -0
  27. package/assets/images/elevator-hover.png +0 -0
  28. package/assets/images/elevator.png +0 -0
  29. package/assets/images/exteriorFacade-hover.png +0 -0
  30. package/assets/images/exteriorFacade.png +0 -0
  31. package/assets/images/fire-hover.png +0 -0
  32. package/assets/images/fire.png +0 -0
  33. package/assets/images/fridge-hover.png +0 -0
  34. package/assets/images/fridge.png +0 -0
  35. package/assets/images/furnish-hover.png +0 -0
  36. package/assets/images/furnish.png +0 -0
  37. package/assets/images/garage-hover.png +0 -0
  38. package/assets/images/garage.png +0 -0
  39. package/assets/images/garden-hover.png +0 -0
  40. package/assets/images/garden.png +0 -0
  41. package/assets/images/glazing-hover.png +0 -0
  42. package/assets/images/glazing.png +0 -0
  43. package/assets/images/heating-hover.png +0 -0
  44. package/assets/images/heating.png +0 -0
  45. package/assets/images/internet-hover.png +0 -0
  46. package/assets/images/internet.png +0 -0
  47. package/assets/images/kitchen-hover.png +0 -0
  48. package/assets/images/kitchen.png +0 -0
  49. package/assets/images/microwave-hover.png +0 -0
  50. package/assets/images/microwave.png +0 -0
  51. package/assets/images/moroccan-hover.png +0 -0
  52. package/assets/images/moroccan.png +0 -0
  53. package/assets/images/orientation-hover.png +0 -0
  54. package/assets/images/orientation.png +0 -0
  55. package/assets/images/oven-hover.png +0 -0
  56. package/assets/images/oven.png +0 -0
  57. package/assets/images/pool-hover.png +0 -0
  58. package/assets/images/pool.png +0 -0
  59. package/assets/images/satellite-hover.png +0 -0
  60. package/assets/images/satellite.png +0 -0
  61. package/assets/images/sea-hover.png +0 -0
  62. package/assets/images/sea.png +0 -0
  63. package/assets/images/security-hover.png +0 -0
  64. package/assets/images/security.png +0 -0
  65. package/assets/images/storage-hover.png +0 -0
  66. package/assets/images/storage.png +0 -0
  67. package/assets/images/terrace-hover.png +0 -0
  68. package/assets/images/terrace.png +0 -0
  69. package/assets/images/tv-hover.png +0 -0
  70. package/assets/images/tv.png +0 -0
  71. package/assets/images/views-hover.png +0 -0
  72. package/assets/images/views.png +0 -0
  73. package/assets/images/washing-hover.png +0 -0
  74. package/assets/images/washing.png +0 -0
package/commonStyles.js CHANGED
@@ -69,7 +69,7 @@ export default StyleSheet.create({
69
69
  },
70
70
 
71
71
  blue: {
72
- color: '#00afca'
72
+ color: '#0093ff'
73
73
  },
74
74
 
75
75
  black: {
@@ -124,6 +124,11 @@ export default StyleSheet.create({
124
124
  width: '50%'
125
125
  },
126
126
 
127
+ col6Sep: {
128
+ width: '48%',
129
+ marginHorizontal: '1%'
130
+ },
131
+
127
132
  col7: {
128
133
  width: '58.33%'
129
134
  },
@@ -137,21 +142,16 @@ export default StyleSheet.create({
137
142
  },
138
143
 
139
144
  input: {
140
- backgroundColor: '#fff'
145
+ backgroundColor: '#fff',
146
+ borderColor: '#bcbcbc',
147
+ borderWidth: 1,
148
+ borderRadius: 5
141
149
  },
142
150
 
143
151
  inputContainer: {
144
152
  marginTop: 20
145
153
  },
146
154
 
147
- inputPhoneBox: {
148
- backgroundColor: '#eff0f1'
149
- },
150
-
151
- inputPhoneBoxError: {
152
- backgroundColor: '#f1d8d8'
153
- },
154
-
155
155
  disabled: {
156
156
  opacity: 0.2,
157
157
  },
@@ -209,7 +209,7 @@ export default StyleSheet.create({
209
209
  },
210
210
 
211
211
  homeContentH2: {
212
- color: '#00AFCA',
212
+ color: '#0093ff',
213
213
  textAlign: 'center',
214
214
  paddingTop: 50,
215
215
  paddingBottom: 25,
@@ -301,7 +301,7 @@ export default StyleSheet.create({
301
301
  },
302
302
 
303
303
  progressTitleColor: {
304
- color: '#00afca',
304
+ color: '#0093ff',
305
305
  marginLeft: 0,
306
306
  },
307
307
 
@@ -341,8 +341,8 @@ export default StyleSheet.create({
341
341
  justifyContent: 'center',
342
342
  position: 'relative',
343
343
  zIndex: 10,
344
- backgroundColor: '#00b5d0',
345
- borderColor: '#00b5d0',
344
+ backgroundColor: '#0093ff',
345
+ borderColor: '#0093ff',
346
346
  },
347
347
 
348
348
  progressbar_li_span_text: {
@@ -377,7 +377,7 @@ export default StyleSheet.create({
377
377
  progressbarInputAreaH3: {
378
378
  fontFamily: 'PostingMedium',
379
379
  fontSize: 19,
380
- color: '#00afca',
380
+ color: '#0093ff',
381
381
  textAlign: 'left'
382
382
  },
383
383
 
@@ -432,7 +432,7 @@ export default StyleSheet.create({
432
432
 
433
433
  carteNote: {
434
434
  fontSize: 14,
435
- color: '#00afca',
435
+ color: '#0093ff',
436
436
  fontFamily: 'PostingLight',
437
437
  justifyContent: 'flex-start'
438
438
  },
@@ -454,10 +454,6 @@ export default StyleSheet.create({
454
454
  maxHeight: 190,
455
455
  },
456
456
 
457
- progressBarInputGrey: {
458
- backgroundColor: '#eff0f1',
459
- },
460
-
461
457
  /*---------- Posting Setup ----------*/
462
458
  coinInput: {
463
459
  width: '20%',
@@ -511,6 +507,9 @@ export default StyleSheet.create({
511
507
 
512
508
  /*----------Setup 4----------*/
513
509
  area: {
510
+ borderColor: '#bcbcbc',
511
+ borderWidth: 1,
512
+ borderRadius: 5,
514
513
  borderBottomRightRadius: 0,
515
514
  borderTopRightRadius: 0,
516
515
  backgroundColor: '#fff'
@@ -518,15 +517,17 @@ export default StyleSheet.create({
518
517
 
519
518
  unit: {
520
519
  position: 'absolute',
521
- borderLeftWidth: 1,
522
- borderLeftColor: '#d4d4d4',
520
+ borderColor: '#bcbcbc',
521
+ borderWidth: 1,
522
+ borderRadius: 5,
523
+ borderLeftWidth: 0,
523
524
  paddingLeft: 15,
524
525
  height: 35,
525
526
  width: '100%',
526
527
  justifyContent: 'center',
527
528
  backgroundColor: '#fff',
528
- borderTopRightRadius: 5,
529
- borderBottomRightRadius: 5,
529
+ borderTopLeftRadius: 0,
530
+ borderBottomLeftRadius: 0,
530
531
  bottom: 0
531
532
  },
532
533
 
@@ -583,7 +584,7 @@ export default StyleSheet.create({
583
584
 
584
585
  photoAddIcon: {
585
586
  fontSize: 32,
586
- color: '#00afca'
587
+ color: '#0093ff'
587
588
  },
588
589
 
589
590
  photoAddText: {
@@ -671,6 +672,11 @@ export default StyleSheet.create({
671
672
  textAlign: 'center'
672
673
  },
673
674
 
675
+ characIconTextSelected: {
676
+ color: '#0093ff',
677
+ fontFamily: 'PostingSemiBold'
678
+ },
679
+
674
680
  characIcon: {
675
681
  width: 60,
676
682
  height: 60,
@@ -682,13 +688,18 @@ export default StyleSheet.create({
682
688
  justifyContent: 'center',
683
689
  },
684
690
 
685
- characIconSelected: {
686
- backgroundColor: '#00afca'
691
+ characImage: {
692
+ fontSize: 40,
693
+ color: '#616161',
694
+ padding: 10
687
695
  },
688
696
 
689
- characImage: {
690
- width: 40,
691
- height: 40
697
+ characImageSelected: {
698
+ color: '#0093ff',
699
+ backgroundColor: '#d2f4f9',
700
+ borderColor: 'rgba(0,175,202,0.7)',
701
+ borderWidth: 1,
702
+ borderRadius: 360
692
703
  },
693
704
 
694
705
  selectPublish: {
@@ -908,7 +919,7 @@ export default StyleSheet.create({
908
919
  },
909
920
 
910
921
  blueTitle: {
911
- color: '#00afca'
922
+ color: '#0093ff'
912
923
  },
913
924
 
914
925
  orangeTitle: {
@@ -955,7 +966,7 @@ export default StyleSheet.create({
955
966
  },
956
967
 
957
968
  btnBlue1: {
958
- backgroundColor: '#00afca'
969
+ backgroundColor: '#0093ff'
959
970
  },
960
971
 
961
972
  btnBlue2: {
@@ -987,7 +998,7 @@ export default StyleSheet.create({
987
998
 
988
999
  numberInputText: {
989
1000
  fontSize: 16,
990
- color: '#00afca',
1001
+ color: '#0093ff',
991
1002
  },
992
1003
 
993
1004
  numberBtnSpan: {
@@ -1025,6 +1036,9 @@ export default StyleSheet.create({
1025
1036
  /*---------- Input Select ----------*/
1026
1037
  inputSelect: {
1027
1038
  backgroundColor: '#fff',
1039
+ borderColor: '#bcbcbc',
1040
+ borderWidth: 1,
1041
+ borderRadius: 5
1028
1042
  },
1029
1043
 
1030
1044
  inputSelectIcon: {
@@ -1044,11 +1058,11 @@ export default StyleSheet.create({
1044
1058
 
1045
1059
  inputSelectSectionText: {
1046
1060
  fontFamily: 'PostingSemiBold',
1047
- color: '#00afca',
1061
+ color: '#0093ff',
1048
1062
  },
1049
1063
 
1050
1064
  inputSelectCancel: {
1051
- backgroundColor: '#00afca',
1065
+ backgroundColor: '#0093ff',
1052
1066
  },
1053
1067
 
1054
1068
  inputSelectOverlay: {
@@ -1129,7 +1143,7 @@ export default StyleSheet.create({
1129
1143
  marginBottom: 10,
1130
1144
  fontFamily: 'PostingMedium',
1131
1145
  fontSize: 19,
1132
- color: '#00afca',
1146
+ color: '#0093ff',
1133
1147
  textAlign: 'center',
1134
1148
  lineHeight: 24,
1135
1149
  marginTop: 10
@@ -1140,7 +1154,7 @@ export default StyleSheet.create({
1140
1154
  },
1141
1155
 
1142
1156
  popupIcon: {
1143
- color: '#00afca',
1157
+ color: '#0093ff',
1144
1158
  fontSize: 22,
1145
1159
  },
1146
1160
 
@@ -1153,7 +1167,7 @@ export default StyleSheet.create({
1153
1167
  },
1154
1168
 
1155
1169
  okBtnBox: {
1156
- backgroundColor: '#00afca',
1170
+ backgroundColor: '#0093ff',
1157
1171
  bottom: 0,
1158
1172
  zIndex: 80,
1159
1173
  left: 0,
@@ -1207,7 +1221,8 @@ export default StyleSheet.create({
1207
1221
  /*---------- Edit Bar ----------*/
1208
1222
  editBar: {
1209
1223
  backgroundColor: 'rgba(0, 0, 0, 0.25)',
1210
- paddingBottom: 10
1224
+ position: 'absolute',
1225
+ width: '100%'
1211
1226
  },
1212
1227
 
1213
1228
  editTitle: {