@holper/react-native-holper-storybook 0.6.56 → 0.6.58

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.
@@ -13,6 +13,8 @@ export const Colors = {
13
13
  midblue: '#727C8E',
14
14
  darkblue: '#515C6F',
15
15
  brightblue: '#00D8FF',
16
+ mediumblue: '#F2F7FE',
17
+ blue: '#2A539C',
16
18
  // Violet
17
19
  violet: '#9980FA',
18
20
  // Reds
@@ -20,12 +22,15 @@ export const Colors = {
20
22
  red: '#FD4C4C',
21
23
  // Yellow
22
24
  lightyellow: '#F3F2D3',
23
- yellow: '#FDD100'
25
+ yellow: '#FDD100',
24
26
  };
25
27
 
26
28
  export const ConstantsWS = Object.freeze({
27
29
  HIRING: 'HIRING',
28
30
  CANCELED: 'CANCELED',
31
+ CANCELED_BY_PROFESSIONAL: 'CANCELED_BY_PROFESSIONAL',
32
+ NOT_CONFIRMED: 'NOT_CONFIRMED',
33
+ NOT_STARTED: 'NOT_STARTED',
29
34
  POSTULATION: 'POSTULATION',
30
35
  NOTIFICATION: 'NOTIFICATION',
31
36
  CHAT: 'CHAT',
@@ -33,7 +38,7 @@ export const ConstantsWS = Object.freeze({
33
38
  RECOMMENDATION: 'RECOMMENDATION',
34
39
  ISSUE: 'ISSUE',
35
40
  CLOSED: 'CLOSED',
36
- USER: 'USER'
41
+ USER: 'USER',
37
42
  });
38
43
 
39
44
  export const HiringStatus = Object.freeze({
@@ -45,14 +50,14 @@ export const HiringStatus = Object.freeze({
45
50
  PAYMENT_ERROR: 'paymentError',
46
51
  DONE: 'done',
47
52
  CANCELED: 'canceled',
48
- UNPAID: 'unpaid'
53
+ UNPAID: 'unpaid',
49
54
  });
50
55
 
51
56
  export const CouponStatus = Object.freeze({
52
57
  PENDING: 'pending',
53
58
  IN_USE: 'inUse',
54
59
  EXPIRED: 'expired',
55
- DONE: 'DONE'
60
+ DONE: 'DONE',
56
61
  });
57
62
 
58
63
  export const NotificationsTypes = Object.freeze({
@@ -87,166 +92,166 @@ export const NotificationsTypes = Object.freeze({
87
92
  /** Reminder for the professional when arrived to mark the arrival confirmed */
88
93
  REMINDER_ARRIVED: 'reminderArrived',
89
94
  /** Reminder for the professional to start the progress */
90
- REMINDER_START_PROGRESS: 'reminderStartProgress'
95
+ REMINDER_START_PROGRESS: 'reminderStartProgress',
91
96
  });
92
97
 
93
98
  export const MapStyle = [
94
99
  {
95
- 'elementType': 'geometry',
96
- 'stylers': [
100
+ elementType: 'geometry',
101
+ stylers: [
97
102
  {
98
- 'color': '#f5f5f5'
99
- }
100
- ]
103
+ color: '#f5f5f5',
104
+ },
105
+ ],
101
106
  },
102
107
  {
103
- 'elementType': 'labels.icon',
104
- 'stylers': [
108
+ elementType: 'labels.icon',
109
+ stylers: [
105
110
  {
106
- 'visibility': 'off'
107
- }
108
- ]
111
+ visibility: 'off',
112
+ },
113
+ ],
109
114
  },
110
115
  {
111
- 'elementType': 'labels.text.fill',
112
- 'stylers': [
116
+ elementType: 'labels.text.fill',
117
+ stylers: [
113
118
  {
114
- 'color': '#616161'
115
- }
116
- ]
119
+ color: '#616161',
120
+ },
121
+ ],
117
122
  },
118
123
  {
119
- 'elementType': 'labels.text.stroke',
120
- 'stylers': [
124
+ elementType: 'labels.text.stroke',
125
+ stylers: [
121
126
  {
122
- 'color': '#f5f5f5'
123
- }
124
- ]
127
+ color: '#f5f5f5',
128
+ },
129
+ ],
125
130
  },
126
131
  {
127
- 'featureType': 'administrative.land_parcel',
128
- 'elementType': 'labels.text.fill',
129
- 'stylers': [
132
+ featureType: 'administrative.land_parcel',
133
+ elementType: 'labels.text.fill',
134
+ stylers: [
130
135
  {
131
- 'color': '#bdbdbd'
132
- }
133
- ]
136
+ color: '#bdbdbd',
137
+ },
138
+ ],
134
139
  },
135
140
  {
136
- 'featureType': 'poi',
137
- 'elementType': 'geometry',
138
- 'stylers': [
141
+ featureType: 'poi',
142
+ elementType: 'geometry',
143
+ stylers: [
139
144
  {
140
- 'color': '#eeeeee'
141
- }
142
- ]
145
+ color: '#eeeeee',
146
+ },
147
+ ],
143
148
  },
144
149
  {
145
- 'featureType': 'poi',
146
- 'elementType': 'labels.text.fill',
147
- 'stylers': [
150
+ featureType: 'poi',
151
+ elementType: 'labels.text.fill',
152
+ stylers: [
148
153
  {
149
- 'color': '#757575'
150
- }
151
- ]
154
+ color: '#757575',
155
+ },
156
+ ],
152
157
  },
153
158
  {
154
- 'featureType': 'poi.park',
155
- 'elementType': 'geometry',
156
- 'stylers': [
159
+ featureType: 'poi.park',
160
+ elementType: 'geometry',
161
+ stylers: [
157
162
  {
158
- 'color': '#e5e5e5'
159
- }
160
- ]
163
+ color: '#e5e5e5',
164
+ },
165
+ ],
161
166
  },
162
167
  {
163
- 'featureType': 'poi.park',
164
- 'elementType': 'labels.text.fill',
165
- 'stylers': [
168
+ featureType: 'poi.park',
169
+ elementType: 'labels.text.fill',
170
+ stylers: [
166
171
  {
167
- 'color': '#9e9e9e'
168
- }
169
- ]
172
+ color: '#9e9e9e',
173
+ },
174
+ ],
170
175
  },
171
176
  {
172
- 'featureType': 'road',
173
- 'elementType': 'geometry',
174
- 'stylers': [
177
+ featureType: 'road',
178
+ elementType: 'geometry',
179
+ stylers: [
175
180
  {
176
- 'color': '#ffffff'
177
- }
178
- ]
181
+ color: '#ffffff',
182
+ },
183
+ ],
179
184
  },
180
185
  {
181
- 'featureType': 'road.arterial',
182
- 'elementType': 'labels.text.fill',
183
- 'stylers': [
186
+ featureType: 'road.arterial',
187
+ elementType: 'labels.text.fill',
188
+ stylers: [
184
189
  {
185
- 'color': '#757575'
186
- }
187
- ]
190
+ color: '#757575',
191
+ },
192
+ ],
188
193
  },
189
194
  {
190
- 'featureType': 'road.highway',
191
- 'elementType': 'geometry',
192
- 'stylers': [
195
+ featureType: 'road.highway',
196
+ elementType: 'geometry',
197
+ stylers: [
193
198
  {
194
- 'color': '#dadada'
195
- }
196
- ]
199
+ color: '#dadada',
200
+ },
201
+ ],
197
202
  },
198
203
  {
199
- 'featureType': 'road.highway',
200
- 'elementType': 'labels.text.fill',
201
- 'stylers': [
204
+ featureType: 'road.highway',
205
+ elementType: 'labels.text.fill',
206
+ stylers: [
202
207
  {
203
- 'color': '#616161'
204
- }
205
- ]
208
+ color: '#616161',
209
+ },
210
+ ],
206
211
  },
207
212
  {
208
- 'featureType': 'road.local',
209
- 'elementType': 'labels.text.fill',
210
- 'stylers': [
213
+ featureType: 'road.local',
214
+ elementType: 'labels.text.fill',
215
+ stylers: [
211
216
  {
212
- 'color': '#9e9e9e'
213
- }
214
- ]
217
+ color: '#9e9e9e',
218
+ },
219
+ ],
215
220
  },
216
221
  {
217
- 'featureType': 'transit.line',
218
- 'elementType': 'geometry',
219
- 'stylers': [
222
+ featureType: 'transit.line',
223
+ elementType: 'geometry',
224
+ stylers: [
220
225
  {
221
- 'color': '#e5e5e5'
222
- }
223
- ]
226
+ color: '#e5e5e5',
227
+ },
228
+ ],
224
229
  },
225
230
  {
226
- 'featureType': 'transit.station',
227
- 'elementType': 'geometry',
228
- 'stylers': [
231
+ featureType: 'transit.station',
232
+ elementType: 'geometry',
233
+ stylers: [
229
234
  {
230
- 'color': '#eeeeee'
231
- }
232
- ]
235
+ color: '#eeeeee',
236
+ },
237
+ ],
233
238
  },
234
239
  {
235
- 'featureType': 'water',
236
- 'elementType': 'geometry',
237
- 'stylers': [
240
+ featureType: 'water',
241
+ elementType: 'geometry',
242
+ stylers: [
238
243
  {
239
- 'color': '#c9c9c9'
240
- }
241
- ]
244
+ color: '#c9c9c9',
245
+ },
246
+ ],
242
247
  },
243
248
  {
244
- 'featureType': 'water',
245
- 'elementType': 'labels.text.fill',
246
- 'stylers': [
249
+ featureType: 'water',
250
+ elementType: 'labels.text.fill',
251
+ stylers: [
247
252
  {
248
- 'color': '#9e9e9e'
249
- }
250
- ]
251
- }
253
+ color: '#9e9e9e',
254
+ },
255
+ ],
256
+ },
252
257
  ];
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "main": "lib/index.js",
3
3
  "name": "@holper/react-native-holper-storybook",
4
4
  "description": "A component library for Holper projects",
5
- "version": "0.6.56",
5
+ "version": "0.6.58",
6
6
  "license": "MIT",
7
7
  "files": [
8
8
  "lib",