muba-posting 9.0.6 → 9.0.7

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
@@ -146,30 +146,6 @@ export default class Posting extends React.Component {
146
146
 
147
147
  async componentDidMount() {
148
148
  await addFontList([
149
- {
150
- name: 'PostingBold',
151
- source: require('./fonts/Poppins/Poppins-Bold.ttf')
152
- },
153
- {
154
- name: 'PostingMedium',
155
- source: require('./fonts/Poppins/Poppins-Medium.ttf')
156
- },
157
- {
158
- name: 'PostingSemiBold',
159
- source: require('./fonts/Poppins/Poppins-SemiBold.ttf')
160
- },
161
- {
162
- name: 'PostingRegular',
163
- source: require('./fonts/Poppins/Poppins-Regular.ttf')
164
- },
165
- {
166
- name: 'PostingLight',
167
- source: require('./fonts/Poppins/Poppins-Light.ttf')
168
- },
169
- {
170
- name: 'PostingExtraLight',
171
- source: require('./fonts/Poppins/Poppins-ExtraLight.ttf')
172
- },
173
149
  {
174
150
  name: 'PostingFontAwesome',
175
151
  source: require('./fonts/Font-Awesome.ttf')
package/commonStyles.js CHANGED
@@ -173,7 +173,7 @@ export default StyleSheet.create({
173
173
 
174
174
  actionButtonText: {
175
175
  fontSize: 19,
176
- fontFamily: 'PostingBold',
176
+ fontFamily: 'Bold',
177
177
  color: 'white'
178
178
  },
179
179
 
@@ -198,13 +198,13 @@ export default StyleSheet.create({
198
198
  editIconText: {
199
199
  fontSize: 12,
200
200
  color: '#333',
201
- fontFamily: 'PostingSemiBold',
201
+ fontFamily: 'SemiBold',
202
202
  textAlign: 'center',
203
203
  marginTop: 10
204
204
  },
205
205
 
206
206
  h2: {
207
- fontFamily: 'PostingSemiBold',
207
+ fontFamily: 'SemiBold',
208
208
  fontSize: 19,
209
209
  },
210
210
 
@@ -296,7 +296,7 @@ export default StyleSheet.create({
296
296
  fontSize: 11,
297
297
  marginLeft: 20,
298
298
  color: '#bbbbbb',
299
- fontFamily: 'PostingLight',
299
+ fontFamily: 'Light',
300
300
  marginBottom: 5
301
301
  },
302
302
 
@@ -347,14 +347,14 @@ export default StyleSheet.create({
347
347
 
348
348
  progressbar_li_span_text: {
349
349
  color: '#bbbbbb',
350
- fontFamily: 'PostingRegular',
350
+ fontFamily: 'Regular',
351
351
  fontSize: 10,
352
352
  marginTop: Platform.OS === 'ios' ? 0 : 2
353
353
  },
354
354
 
355
355
  progressbar_li_span_text_active: {
356
356
  color: '#fff',
357
- fontFamily: 'PostingRegular',
357
+ fontFamily: 'Regular',
358
358
  fontSize: 10,
359
359
  marginTop: Platform.OS === 'ios' ? 0 : 2
360
360
  },
@@ -375,7 +375,7 @@ export default StyleSheet.create({
375
375
  },
376
376
 
377
377
  progressbarInputAreaH3: {
378
- fontFamily: 'PostingMedium',
378
+ fontFamily: 'Medium',
379
379
  fontSize: 19,
380
380
  color: '#0093ff',
381
381
  textAlign: 'left'
@@ -404,14 +404,14 @@ export default StyleSheet.create({
404
404
  },
405
405
 
406
406
  progressbarFieldH4: {
407
- fontFamily: 'PostingBold',
407
+ fontFamily: 'Bold',
408
408
  fontSize: 12,
409
409
  marginBottom: 15,
410
410
  color: '#313541',
411
411
  },
412
412
 
413
413
  progressbarField: {
414
- fontFamily: 'PostingSemiBold',
414
+ fontFamily: 'SemiBold',
415
415
  fontSize: 12
416
416
  },
417
417
 
@@ -420,7 +420,7 @@ export default StyleSheet.create({
420
420
  },
421
421
 
422
422
  inputNumberLabel: {
423
- fontFamily: 'PostingSemiBold',
423
+ fontFamily: 'SemiBold',
424
424
  fontSize: 12,
425
425
  color: '#333'
426
426
  },
@@ -433,7 +433,7 @@ export default StyleSheet.create({
433
433
  carteNote: {
434
434
  fontSize: 14,
435
435
  color: '#0093ff',
436
- fontFamily: 'PostingLight',
436
+ fontFamily: 'Light',
437
437
  justifyContent: 'flex-start'
438
438
  },
439
439
 
@@ -475,7 +475,7 @@ export default StyleSheet.create({
475
475
  subNote: {
476
476
  fontSize: 10,
477
477
  color: '#858585',
478
- fontFamily: 'PostingRegular',
478
+ fontFamily: 'Regular',
479
479
  textAlign: 'left'
480
480
  },
481
481
 
@@ -495,7 +495,7 @@ export default StyleSheet.create({
495
495
 
496
496
  confirmNoteText: {
497
497
  color: '#155724',
498
- fontFamily: 'PostingRegular',
498
+ fontFamily: 'Regular',
499
499
  fontSize: 12,
500
500
  },
501
501
 
@@ -534,7 +534,7 @@ export default StyleSheet.create({
534
534
  unitText: {
535
535
  color: '#333',
536
536
  fontSize: 12,
537
- fontFamily: 'PostingRegular',
537
+ fontFamily: 'Regular',
538
538
  textAlign: 'left'
539
539
  },
540
540
 
@@ -590,7 +590,7 @@ export default StyleSheet.create({
590
590
  photoAddText: {
591
591
  fontSize: 14,
592
592
  color: '#333',
593
- fontFamily: 'PostingRegular'
593
+ fontFamily: 'Regular'
594
594
  },
595
595
 
596
596
  leftIcon: {
@@ -649,7 +649,7 @@ export default StyleSheet.create({
649
649
 
650
650
  conseilText: {
651
651
  fontSize: 12,
652
- fontFamily: 'PostingLight',
652
+ fontFamily: 'Light',
653
653
  color: '#858585'
654
654
  },
655
655
 
@@ -668,13 +668,13 @@ export default StyleSheet.create({
668
668
  characIconText: {
669
669
  fontSize: 10,
670
670
  color: '#333',
671
- fontFamily: 'PostingRegular',
671
+ fontFamily: 'Regular',
672
672
  textAlign: 'center'
673
673
  },
674
674
 
675
675
  characIconTextSelected: {
676
676
  color: '#0093ff',
677
- fontFamily: 'PostingSemiBold'
677
+ fontFamily: 'SemiBold'
678
678
  },
679
679
 
680
680
  characIcon: {
@@ -720,7 +720,7 @@ export default StyleSheet.create({
720
720
  display: 'flex',
721
721
  minHeight: 35,
722
722
  color: '#858585',
723
- fontFamily: 'PostingRegular',
723
+ fontFamily: 'Regular',
724
724
  marginBottom: -1
725
725
  },
726
726
 
@@ -749,7 +749,7 @@ export default StyleSheet.create({
749
749
  legalNoteText: {
750
750
  fontSize: 9.5,
751
751
  color: '#858585',
752
- fontFamily: 'PostingExtraLight',
752
+ fontFamily: 'ExtraLight',
753
753
  marginTop: 10,
754
754
  textAlign: 'left',
755
755
  lineHeight: 10
@@ -811,7 +811,7 @@ export default StyleSheet.create({
811
811
  },
812
812
 
813
813
  percentage: {
814
- fontFamily: 'PostingMedium',
814
+ fontFamily: 'Medium',
815
815
  fontSize: 17,
816
816
  color: '#fff',
817
817
  textAlign: 'center'
@@ -845,7 +845,7 @@ export default StyleSheet.create({
845
845
 
846
846
  previewInfoText: {
847
847
  fontSize: 11,
848
- fontFamily: 'PostingExtraLight',
848
+ fontFamily: 'ExtraLight',
849
849
  lineHeight: 22
850
850
  },
851
851
 
@@ -870,7 +870,7 @@ export default StyleSheet.create({
870
870
  },
871
871
 
872
872
  previewTitleText: {
873
- fontFamily: 'PostingMedium',
873
+ fontFamily: 'Medium',
874
874
  fontSize: 19,
875
875
  color: '#858585',
876
876
  textAlign: 'left'
@@ -911,7 +911,7 @@ export default StyleSheet.create({
911
911
 
912
912
  promoTitle: {
913
913
  textAlign: 'center',
914
- fontFamily: 'PostingBold',
914
+ fontFamily: 'Bold',
915
915
  fontSize: 15,
916
916
  lineHeight: 16
917
917
  },
@@ -952,7 +952,7 @@ export default StyleSheet.create({
952
952
 
953
953
  superBtnText: {
954
954
  fontSize: 9.2,
955
- fontFamily: 'PostingMedium',
955
+ fontFamily: 'Medium',
956
956
  textAlign: 'center',
957
957
  color: '#fff'
958
958
  },
@@ -1018,7 +1018,7 @@ export default StyleSheet.create({
1018
1018
  numberBtnSpanText: {
1019
1019
  fontSize: 22,
1020
1020
  color: '#858585',
1021
- fontFamily: 'PostingLight',
1021
+ fontFamily: 'Light',
1022
1022
  marginTop: 0
1023
1023
  },
1024
1024
 
@@ -1033,7 +1033,7 @@ export default StyleSheet.create({
1033
1033
  mapNoteText: {
1034
1034
  color: '#df591e',
1035
1035
  fontSize: 12,
1036
- fontFamily: 'PostingRegular',
1036
+ fontFamily: 'Regular',
1037
1037
  },
1038
1038
 
1039
1039
  /*---------- Input Select ----------*/
@@ -1055,12 +1055,12 @@ export default StyleSheet.create({
1055
1055
 
1056
1056
  inputSelectText: {
1057
1057
  fontSize: 12,
1058
- fontFamily: 'PostingRegular',
1058
+ fontFamily: 'Regular',
1059
1059
  color: '#858585'
1060
1060
  },
1061
1061
 
1062
1062
  inputSelectSectionText: {
1063
- fontFamily: 'PostingSemiBold',
1063
+ fontFamily: 'SemiBold',
1064
1064
  color: '#0093ff',
1065
1065
  },
1066
1066
 
@@ -1098,7 +1098,7 @@ export default StyleSheet.create({
1098
1098
  popupText: {
1099
1099
  fontSize: 12,
1100
1100
  color: '#858585',
1101
- fontFamily: 'PostingLight',
1101
+ fontFamily: 'Light',
1102
1102
  textAlign: 'left'
1103
1103
  },
1104
1104
 
@@ -1132,7 +1132,7 @@ export default StyleSheet.create({
1132
1132
  },
1133
1133
 
1134
1134
  okBtnTextPopup: {
1135
- fontFamily: 'PostingBold',
1135
+ fontFamily: 'Bold',
1136
1136
  fontSize: 16,
1137
1137
  marginTop: 3,
1138
1138
  color: '#fff'
@@ -1144,7 +1144,7 @@ export default StyleSheet.create({
1144
1144
 
1145
1145
  popupTitle: {
1146
1146
  marginBottom: 10,
1147
- fontFamily: 'PostingMedium',
1147
+ fontFamily: 'Medium',
1148
1148
  fontSize: 19,
1149
1149
  color: '#0093ff',
1150
1150
  textAlign: 'center',
@@ -1187,13 +1187,13 @@ export default StyleSheet.create({
1187
1187
 
1188
1188
  okBtnText: {
1189
1189
  fontSize: 14,
1190
- fontFamily: 'PostingMedium',
1190
+ fontFamily: 'Medium',
1191
1191
  color: 'white',
1192
1192
  },
1193
1193
 
1194
1194
  okBtnTextArabic: {
1195
1195
  fontSize: 19,
1196
- fontFamily: 'PostingMedium',
1196
+ fontFamily: 'Medium',
1197
1197
  color: 'white',
1198
1198
  },
1199
1199
 
@@ -1215,7 +1215,7 @@ export default StyleSheet.create({
1215
1215
  editRefText: {
1216
1216
  color: '#fff',
1217
1217
  fontSize: 14,
1218
- fontFamily: 'PostingLight',
1218
+ fontFamily: 'Light',
1219
1219
  textShadowColor: '#000',
1220
1220
  textShadowOffset: { width: -1, height: 1 },
1221
1221
  textShadowRadius: 8,
@@ -1244,7 +1244,7 @@ export default StyleSheet.create({
1244
1244
  editTitleText: {
1245
1245
  textAlign: 'center',
1246
1246
  fontSize: 12,
1247
- fontFamily: 'PostingSemiBold',
1247
+ fontFamily: 'SemiBold',
1248
1248
  },
1249
1249
 
1250
1250
  editRef: {
@@ -1256,7 +1256,7 @@ export default StyleSheet.create({
1256
1256
  editRefText: {
1257
1257
  color: '#fff',
1258
1258
  fontSize: 14,
1259
- fontFamily: 'PostingRegular',
1259
+ fontFamily: 'Regular',
1260
1260
  textShadowColor: '#000',
1261
1261
  textShadowOffset: { width: -1, height: 1 },
1262
1262
  textShadowRadius: 8,
@@ -1278,7 +1278,7 @@ export default StyleSheet.create({
1278
1278
 
1279
1279
  collapseBoxTitle: {
1280
1280
  fontSize: 14,
1281
- fontFamily: 'PostingMedium',
1281
+ fontFamily: 'Medium',
1282
1282
  paddingTop: 8,
1283
1283
  paddingBottom: 8,
1284
1284
  paddingRight: 14,
@@ -1315,7 +1315,7 @@ export default StyleSheet.create({
1315
1315
 
1316
1316
  selectedPictures: {
1317
1317
  fontSize: 14,
1318
- fontFamily: 'PostingMedium',
1318
+ fontFamily: 'Medium',
1319
1319
  color: '#fff'
1320
1320
  },
1321
1321
 
@@ -1360,7 +1360,7 @@ export default StyleSheet.create({
1360
1360
  },
1361
1361
 
1362
1362
  previewHighlightText: {
1363
- fontFamily: 'PostingSemiBold',
1363
+ fontFamily: 'SemiBold',
1364
1364
  textTransform: 'uppercase',
1365
1365
  color: 'rgb(15, 179, 166)'
1366
1366
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "muba-posting",
3
- "version": "9.0.6",
3
+ "version": "9.0.7",
4
4
  "description": "Posting",
5
5
  "main": "Posting.js",
6
6
  "scripts": {
Binary file
Binary file
Binary file
Binary file
Binary file