@xola/ui-kit 1.4.2

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/.github/ISSUE_TEMPLATE/v2-component.md +12 -0
  2. package/.nvmrc +1 -0
  3. package/.prettierrc +6 -0
  4. package/.storybook/main.js +17 -0
  5. package/.storybook/preview.js +3 -0
  6. package/README.md +1 -0
  7. package/babel.config.json +13 -0
  8. package/build/favicon.ico +0 -0
  9. package/build/style.css +1 -0
  10. package/build/ui-kit.mjs +12455 -0
  11. package/build/ui-kit.umd.js +33 -0
  12. package/lib/index.js +1 -0
  13. package/package.json +48 -0
  14. package/src/components/CountrySelect/CountrySelect.js +15 -0
  15. package/src/components/CountrySelect/index.js +1 -0
  16. package/src/components/DatePicker/DatePicker.js +80 -0
  17. package/src/components/DatePicker/DatePicker.module.scss +3 -0
  18. package/src/components/DatePicker/DatePicker.scss +18 -0
  19. package/src/components/DatePicker/index.js +3 -0
  20. package/src/components/FormInput/FormInput.js +23 -0
  21. package/src/components/FormInput/index.js +3 -0
  22. package/src/components/MiniStepper/MiniStepper.js +39 -0
  23. package/src/components/MiniStepper/MiniStepper.module.scss +9 -0
  24. package/src/components/MiniStepper/index.js +1 -0
  25. package/src/components/PhoneInput/PhoneInput.js +44 -0
  26. package/src/components/PhoneInput/index.js +1 -0
  27. package/src/components/ProductSelector/ProductListItem/ProductListItem.js +41 -0
  28. package/src/components/ProductSelector/ProductListItem/ProductListItem.module.scss +32 -0
  29. package/src/components/ProductSelector/ProductSelector.js +71 -0
  30. package/src/components/ProductSelector/index.js +3 -0
  31. package/src/components/ScheduleEditor/ScheduleEditor.js +277 -0
  32. package/src/components/ScheduleEditor/ScheduleEditorRow.js +26 -0
  33. package/src/components/ScheduleEditor/TimeRangeSelector/TimeRangeSelector.js +94 -0
  34. package/src/components/ScheduleEditor/TimeRangeSelector/TimeRangeSelector.module.scss +13 -0
  35. package/src/components/ScheduleEditor/TimeSlotSelector/TimeSlotSelector.js +62 -0
  36. package/src/components/ScheduleEditor/TimeSlotSelector/TimeSlotSelector.module.scss +21 -0
  37. package/src/components/ScheduleEditor/WeekSelector/WeekSelector.js +50 -0
  38. package/src/components/ScheduleEditor/helpers/schedule.js +15 -0
  39. package/src/components/ScheduleEditor/helpers/scheduleSummary.js +128 -0
  40. package/src/components/ScheduleEditor/index.js +4 -0
  41. package/src/components/Stepper/Step.js +31 -0
  42. package/src/components/Stepper/Step.module.scss +25 -0
  43. package/src/components/Stepper/Stepper.js +25 -0
  44. package/src/components/Stepper/Stepper.module.scss +5 -0
  45. package/src/components/Stepper/index.js +4 -0
  46. package/src/components/TimePicker/TimePicker.js +51 -0
  47. package/src/components/TimePicker/TimePicker.module.scss +16 -0
  48. package/src/components/TimePicker/TimePickerPopover.js +94 -0
  49. package/src/components/TimePicker/TimePickerPopover.module.scss +48 -0
  50. package/src/components/TimePicker/index.js +3 -0
  51. package/src/icons/CheckIcon.js +9 -0
  52. package/src/icons/TrashIcon.js +17 -0
  53. package/src/index.js +18 -0
  54. package/src/stories/Button.stories.js +66 -0
  55. package/src/stories/CountrySelect.stories.js +18 -0
  56. package/src/stories/DatePicker.stories.js +96 -0
  57. package/src/stories/FormInput.stories.js +25 -0
  58. package/src/stories/Forms.stories.js +43 -0
  59. package/src/stories/Icons.stories.js +21 -0
  60. package/src/stories/MiniStepper.stories.js +15 -0
  61. package/src/stories/PhoneInput.stories.js +26 -0
  62. package/src/stories/ProductSelector.stories.js +42 -0
  63. package/src/stories/ScheduleEditor.stories.js +37 -0
  64. package/src/stories/Stepper.stories.js +36 -0
  65. package/src/stories/TimePicker.stories.js +14 -0
  66. package/src/stories/Typography.stories.js +18 -0
  67. package/src/styles/custom.scss +60 -0
  68. package/src/styles/index.scss +3 -0
  69. package/src/styles/variables.scss +43 -0
  70. package/src/theme.js +359 -0
  71. package/src/values/countries.js +196 -0
  72. package/src/values/products.js +86 -0
  73. package/src/values/sellers.js +5 -0
  74. package/webpack.config.js +47 -0
package/src/theme.js ADDED
@@ -0,0 +1,359 @@
1
+ // This file is auto-generated. Do not change it manually!
2
+ /* eslint-disable prettier/prettier */
3
+ export const theme = {
4
+ "colors": {
5
+ "transparent": "transparent",
6
+ "current": "currentColor",
7
+ "black": "#222324",
8
+ "white": "#ffffff",
9
+ "gray": {
10
+ "hover": "#F7F9FB",
11
+ "lighter": "#F0F2F4",
12
+ "light": "#E0E3E7",
13
+ "DEFAULT": "#BDC0C6",
14
+ "dark": "#8A8C91",
15
+ "darker": "#505254"
16
+ },
17
+ "blue": {
18
+ "lighter": "#D1E1FF",
19
+ "light": "#2979D0",
20
+ "DEFAULT": "#1352C6",
21
+ "dark": "#3467C4",
22
+ "darker": "#0E44A8"
23
+ },
24
+ "turquoise": {
25
+ "DEFAULT": "#3FE2EE"
26
+ },
27
+ "green": {
28
+ "lighter": "#E2FFEF",
29
+ "lightish": "#C1F9D9",
30
+ "light": "#33E781",
31
+ "DEFAULT": "#27CE70",
32
+ "dark": "#23B965",
33
+ "darker": "#168848"
34
+ },
35
+ "red": {
36
+ "lighter": "#FFF0F0",
37
+ "lightish": "#FFE1E1",
38
+ "light": "#FFA1A1",
39
+ "DEFAULT": "#FF5A5A",
40
+ "dark": "#E93737",
41
+ "darker": "#CD1F1F"
42
+ },
43
+ "yellow": {
44
+ "lighter": "#FFFAF0",
45
+ "lightish": "#FFECC6",
46
+ "light": "#FFDB8E",
47
+ "DEFAULT": "#FFC03D",
48
+ "dark": "#EBAA24",
49
+ "darker": "#987122"
50
+ },
51
+ "orange": {
52
+ "lighter": "#FFF1E7",
53
+ "lightish": "#FFF1E7",
54
+ "light": "#FFB493",
55
+ "DEFAULT": "#FF9668",
56
+ "dark": "#EC743F",
57
+ "darker": "#ff7336"
58
+ },
59
+ "primary": {
60
+ "lighter": "#D1E1FF",
61
+ "light": "#2979D0",
62
+ "DEFAULT": "#1352C6",
63
+ "dark": "#3467C4",
64
+ "darker": "#0E44A8"
65
+ },
66
+ "secondary": {
67
+ "hover": "#F7F9FB",
68
+ "lighter": "#F0F2F4",
69
+ "light": "#E0E3E7",
70
+ "DEFAULT": "#BDC0C6",
71
+ "dark": "#8A8C91",
72
+ "darker": "#505254"
73
+ },
74
+ "warning": {
75
+ "lighter": "#FFFAF0",
76
+ "lightish": "#FFECC6",
77
+ "light": "#FFDB8E",
78
+ "DEFAULT": "#FFC03D",
79
+ "dark": "#EBAA24",
80
+ "darker": "#987122"
81
+ },
82
+ "success": {
83
+ "lighter": "#E2FFEF",
84
+ "lightish": "#C1F9D9",
85
+ "light": "#33E781",
86
+ "DEFAULT": "#27CE70",
87
+ "dark": "#23B965",
88
+ "darker": "#168848"
89
+ },
90
+ "danger": {
91
+ "lighter": "#FFF0F0",
92
+ "lightish": "#FFE1E1",
93
+ "light": "#FFA1A1",
94
+ "DEFAULT": "#FF5A5A",
95
+ "dark": "#E93737",
96
+ "darker": "#CD1F1F"
97
+ },
98
+ "caution": {
99
+ "lighter": "#FFF1E7",
100
+ "lightish": "#FFF1E7",
101
+ "light": "#FFB493",
102
+ "DEFAULT": "#FF9668",
103
+ "dark": "#EC743F",
104
+ "darker": "#ff7336"
105
+ }
106
+ },
107
+ "spacing": {
108
+ "0": "0px",
109
+ "1": "4px",
110
+ "2": "8px",
111
+ "3": "12px",
112
+ "4": "16px",
113
+ "5": "20px",
114
+ "6": "24px",
115
+ "7": "28px",
116
+ "8": "32px",
117
+ "9": "36px",
118
+ "10": "40px",
119
+ "11": "44px",
120
+ "12": "48px",
121
+ "14": "56px",
122
+ "15": "60px",
123
+ "16": "64px",
124
+ "20": "80px",
125
+ "24": "96px",
126
+ "25": "100px",
127
+ "28": "112px",
128
+ "30": "120px",
129
+ "32": "128px",
130
+ "36": "144px",
131
+ "40": "160px",
132
+ "44": "176px",
133
+ "48": "192px",
134
+ "50": "200px",
135
+ "52": "208px",
136
+ "54": "216px",
137
+ "56": "224px",
138
+ "60": "240px",
139
+ "64": "256px",
140
+ "65": "260px",
141
+ "72": "288px",
142
+ "75": "300px",
143
+ "80": "320px",
144
+ "85": "340px",
145
+ "96": "384px",
146
+ "100": "400px",
147
+ "105": "420px",
148
+ "110": "440px",
149
+ "125": "500px",
150
+ "140": "560px",
151
+ "150": "600px",
152
+ "200": "800px",
153
+ "0.25": "1px",
154
+ "0.5": "2px",
155
+ "0.75": "3px",
156
+ "1.5": "6px",
157
+ "2.5": "10px",
158
+ "3.5": "14px",
159
+ "4.5": "18px",
160
+ "7.5": "30px"
161
+ },
162
+ "fontSize": {
163
+ "xs": "10px",
164
+ "sm": "12px",
165
+ "base": "14px",
166
+ "md": "16px",
167
+ "lg": "18px",
168
+ "xl": "21px",
169
+ "2xl": "24px",
170
+ "3xl": "38px"
171
+ },
172
+ "borderRadius": {
173
+ "none": "0px",
174
+ "DEFAULT": "4px",
175
+ "sm": "2px",
176
+ "md": "6px",
177
+ "lg": "8px",
178
+ "xl": "12px",
179
+ "2xl": "16px",
180
+ "full": "9999px"
181
+ },
182
+ "extend": {
183
+ "fontFamily": {
184
+ "sans": [
185
+ "Inter",
186
+ "ui-sans-serif",
187
+ "system-ui",
188
+ "-apple-system",
189
+ "BlinkMacSystemFont",
190
+ "\"Segoe UI\"",
191
+ "Roboto",
192
+ "\"Helvetica Neue\"",
193
+ "Arial",
194
+ "\"Noto Sans\"",
195
+ "sans-serif",
196
+ "\"Apple Color Emoji\"",
197
+ "\"Segoe UI Emoji\"",
198
+ "\"Segoe UI Symbol\"",
199
+ "\"Noto Color Emoji\""
200
+ ],
201
+ "mono": [
202
+ "Roboto Mono",
203
+ "ui-monospace",
204
+ "SFMono-Regular",
205
+ "Menlo",
206
+ "Monaco",
207
+ "Consolas",
208
+ "\"Liberation Mono\"",
209
+ "\"Courier New\"",
210
+ "monospace"
211
+ ]
212
+ },
213
+ "lineHeight": {
214
+ "0": "0px",
215
+ "1": "4px",
216
+ "2": "8px",
217
+ "3": "12px",
218
+ "4": "16px",
219
+ "5": "20px",
220
+ "6": "24px",
221
+ "7": "28px",
222
+ "8": "32px",
223
+ "9": "36px",
224
+ "10": "40px",
225
+ "11": "44px",
226
+ "12": "48px",
227
+ "0.25": "1px",
228
+ "0.5": "2px",
229
+ "0.75": "3px",
230
+ "1.5": "6px",
231
+ "2.5": "10px",
232
+ "xs": "10px",
233
+ "sm": "12px",
234
+ "3.5": "14px",
235
+ "base": "14px",
236
+ "md": "16px",
237
+ "4.5": "18px",
238
+ "lg": "18px",
239
+ "p1": "130%",
240
+ "p2": "130%",
241
+ "p3": "110%",
242
+ "p4": "100%"
243
+ },
244
+ "letterSpacing": {
245
+ "tightest": "-.4px"
246
+ },
247
+ "minWidth": {
248
+ "0": "0px",
249
+ "1": "4px",
250
+ "2": "8px",
251
+ "3": "12px",
252
+ "4": "16px",
253
+ "5": "20px",
254
+ "6": "24px",
255
+ "7": "28px",
256
+ "8": "32px",
257
+ "9": "36px",
258
+ "10": "40px",
259
+ "11": "44px",
260
+ "12": "48px",
261
+ "14": "56px",
262
+ "15": "60px",
263
+ "16": "64px",
264
+ "20": "80px",
265
+ "24": "96px",
266
+ "25": "100px",
267
+ "28": "112px",
268
+ "30": "120px",
269
+ "32": "128px",
270
+ "36": "144px",
271
+ "40": "160px",
272
+ "44": "176px",
273
+ "48": "192px",
274
+ "50": "200px",
275
+ "52": "208px",
276
+ "54": "216px",
277
+ "56": "224px",
278
+ "60": "240px",
279
+ "64": "256px",
280
+ "65": "260px",
281
+ "72": "288px",
282
+ "75": "300px",
283
+ "80": "320px",
284
+ "85": "340px",
285
+ "96": "384px",
286
+ "100": "400px",
287
+ "105": "420px",
288
+ "110": "440px",
289
+ "125": "500px",
290
+ "140": "560px",
291
+ "150": "600px",
292
+ "200": "800px",
293
+ "0.25": "1px",
294
+ "0.5": "2px",
295
+ "0.75": "3px",
296
+ "1.5": "6px",
297
+ "2.5": "10px",
298
+ "3.5": "14px",
299
+ "4.5": "18px",
300
+ "7.5": "30px"
301
+ },
302
+ "maxWidth": {
303
+ "0": "0px",
304
+ "1": "4px",
305
+ "2": "8px",
306
+ "3": "12px",
307
+ "4": "16px",
308
+ "5": "20px",
309
+ "6": "24px",
310
+ "7": "28px",
311
+ "8": "32px",
312
+ "9": "36px",
313
+ "10": "40px",
314
+ "11": "44px",
315
+ "12": "48px",
316
+ "14": "56px",
317
+ "15": "60px",
318
+ "16": "64px",
319
+ "20": "80px",
320
+ "24": "96px",
321
+ "25": "100px",
322
+ "28": "112px",
323
+ "30": "120px",
324
+ "32": "128px",
325
+ "36": "144px",
326
+ "40": "160px",
327
+ "44": "176px",
328
+ "48": "192px",
329
+ "50": "200px",
330
+ "52": "208px",
331
+ "54": "216px",
332
+ "56": "224px",
333
+ "60": "240px",
334
+ "64": "256px",
335
+ "65": "260px",
336
+ "72": "288px",
337
+ "75": "300px",
338
+ "80": "320px",
339
+ "85": "340px",
340
+ "96": "384px",
341
+ "100": "400px",
342
+ "105": "420px",
343
+ "110": "440px",
344
+ "125": "500px",
345
+ "140": "560px",
346
+ "150": "600px",
347
+ "200": "800px",
348
+ "0.25": "1px",
349
+ "0.5": "2px",
350
+ "0.75": "3px",
351
+ "1.5": "6px",
352
+ "2.5": "10px",
353
+ "3.5": "14px",
354
+ "4.5": "18px",
355
+ "7.5": "30px"
356
+ }
357
+ }
358
+ };
359
+ /* eslint-enable */
@@ -0,0 +1,196 @@
1
+ export default [
2
+ { code: "AF", name: "Afghanistan", emoji: "🇦🇫" },
3
+ { code: "AO", name: "Angola", emoji: "🇦🇴" },
4
+ { code: "AL", name: "Albania", emoji: "🇦🇱" },
5
+ { code: "AD", name: "Andorra", emoji: "🇦🇩" },
6
+ { code: "AE", name: "United Arab Emirates", emoji: "🇦🇪" },
7
+ { code: "AR", name: "Argentina", emoji: "🇦🇷" },
8
+ { code: "AM", name: "Armenia", emoji: "🇦🇲" },
9
+ { code: "AG", name: "Antigua and Barbuda", emoji: "🇦🇬" },
10
+ { code: "AU", name: "Australia", emoji: "🇦🇺" },
11
+ { code: "AT", name: "Austria", emoji: "🇦🇹" },
12
+ { code: "AZ", name: "Azerbaijan", emoji: "🇦🇿" },
13
+ { code: "BI", name: "Burundi", emoji: "🇧🇮" },
14
+ { code: "BE", name: "Belgium", emoji: "🇧🇪" },
15
+ { code: "BJ", name: "Benin", emoji: "🇧🇯" },
16
+ { code: "BF", name: "Burkina Faso", emoji: "🇧🇫" },
17
+ { code: "BD", name: "Bangladesh", emoji: "🇧🇩" },
18
+ { code: "BG", name: "Bulgaria", emoji: "🇧🇬" },
19
+ { code: "BH", name: "Bahrain", emoji: "🇧🇭" },
20
+ { code: "BS", name: "Bahamas", emoji: "🇧🇸" },
21
+ { code: "BA", name: "Bosnia and Herzegovina", emoji: "🇧🇦" },
22
+ { code: "BY", name: "Belarus", emoji: "🇧🇾" },
23
+ { code: "BZ", name: "Belize", emoji: "🇧🇿" },
24
+ { code: "BO", name: "Bolivia", emoji: "🇧🇴" },
25
+ { code: "BR", name: "Brazil", emoji: "🇧🇷" },
26
+ { code: "BB", name: "Barbados", emoji: "🇧🇧" },
27
+ { code: "BN", name: "Brunei", emoji: "🇧🇳" },
28
+ { code: "BT", name: "Bhutan", emoji: "🇧🇹" },
29
+ { code: "BW", name: "Botswana", emoji: "🇧🇼" },
30
+ { code: "CF", name: "Central African Republic", emoji: "🇨🇫" },
31
+ { code: "CA", name: "Canada", emoji: "🇨🇦" },
32
+ { code: "CH", name: "Switzerland", emoji: "🇨🇭" },
33
+ { code: "CL", name: "Chile", emoji: "🇨🇱" },
34
+ { code: "CN", name: "China", emoji: "🇨🇳" },
35
+ { code: "CI", name: "Ivory Coast", emoji: "🇨🇮" },
36
+ { code: "CM", name: "Cameroon", emoji: "🇨🇲" },
37
+ { code: "CD", name: "DR Congo", emoji: "🇨🇩" },
38
+ { code: "CG", name: "Republic of the Congo", emoji: "🇨🇬" },
39
+ { code: "CO", name: "Colombia", emoji: "🇨🇴" },
40
+ { code: "KM", name: "Comoros", emoji: "🇰🇲" },
41
+ { code: "CV", name: "Cape Verde", emoji: "🇨🇻" },
42
+ { code: "CR", name: "Costa Rica", emoji: "🇨🇷" },
43
+ { code: "CU", name: "Cuba", emoji: "🇨🇺" },
44
+ { code: "CY", name: "Cyprus", emoji: "🇨🇾" },
45
+ { code: "CZ", name: "Czechia", emoji: "🇨🇿" },
46
+ { code: "DE", name: "Germany", emoji: "🇩🇪" },
47
+ { code: "DJ", name: "Djibouti", emoji: "🇩🇯" },
48
+ { code: "DM", name: "Dominica", emoji: "🇩🇲" },
49
+ { code: "DK", name: "Denmark", emoji: "🇩🇰" },
50
+ { code: "DO", name: "Dominican Republic", emoji: "🇩🇴" },
51
+ { code: "DZ", name: "Algeria", emoji: "🇩🇿" },
52
+ { code: "EC", name: "Ecuador", emoji: "🇪🇨" },
53
+ { code: "EG", name: "Egypt", emoji: "🇪🇬" },
54
+ { code: "ER", name: "Eritrea", emoji: "🇪🇷" },
55
+ { code: "ES", name: "Spain", emoji: "🇪🇸" },
56
+ { code: "EE", name: "Estonia", emoji: "🇪🇪" },
57
+ { code: "ET", name: "Ethiopia", emoji: "🇪🇹" },
58
+ { code: "FI", name: "Finland", emoji: "🇫🇮" },
59
+ { code: "FJ", name: "Fiji", emoji: "🇫🇯" },
60
+ { code: "FR", name: "France", emoji: "🇫🇷" },
61
+ { code: "FM", name: "Micronesia", emoji: "🇫🇲" },
62
+ { code: "GA", name: "Gabon", emoji: "🇬🇦" },
63
+ { code: "GB", name: "United Kingdom", emoji: "🇬🇧" },
64
+ { code: "GE", name: "Georgia", emoji: "🇬🇪" },
65
+ { code: "GH", name: "Ghana", emoji: "🇬🇭" },
66
+ { code: "GN", name: "Guinea", emoji: "🇬🇳" },
67
+ { code: "GM", name: "Gambia", emoji: "🇬🇲" },
68
+ { code: "GW", name: "Guinea-Bissau", emoji: "🇬🇼" },
69
+ { code: "GQ", name: "Equatorial Guinea", emoji: "🇬🇶" },
70
+ { code: "GR", name: "Greece", emoji: "🇬🇷" },
71
+ { code: "GD", name: "Grenada", emoji: "🇬🇩" },
72
+ { code: "GT", name: "Guatemala", emoji: "🇬🇹" },
73
+ { code: "GY", name: "Guyana", emoji: "🇬🇾" },
74
+ { code: "HN", name: "Honduras", emoji: "🇭🇳" },
75
+ { code: "HR", name: "Croatia", emoji: "🇭🇷" },
76
+ { code: "HT", name: "Haiti", emoji: "🇭🇹" },
77
+ { code: "HU", name: "Hungary", emoji: "🇭🇺" },
78
+ { code: "ID", name: "Indonesia", emoji: "🇮🇩" },
79
+ { code: "IN", name: "India", emoji: "🇮🇳" },
80
+ { code: "IE", name: "Ireland", emoji: "🇮🇪" },
81
+ { code: "IR", name: "Iran", emoji: "🇮🇷" },
82
+ { code: "IQ", name: "Iraq", emoji: "🇮🇶" },
83
+ { code: "IS", name: "Iceland", emoji: "🇮🇸" },
84
+ { code: "IL", name: "Israel", emoji: "🇮🇱" },
85
+ { code: "IT", name: "Italy", emoji: "🇮🇹" },
86
+ { code: "JM", name: "Jamaica", emoji: "🇯🇲" },
87
+ { code: "JO", name: "Jordan", emoji: "🇯🇴" },
88
+ { code: "JP", name: "Japan", emoji: "🇯🇵" },
89
+ { code: "KZ", name: "Kazakhstan", emoji: "🇰🇿" },
90
+ { code: "KE", name: "Kenya", emoji: "🇰🇪" },
91
+ { code: "KG", name: "Kyrgyzstan", emoji: "🇰🇬" },
92
+ { code: "KH", name: "Cambodia", emoji: "🇰🇭" },
93
+ { code: "KI", name: "Kiribati", emoji: "🇰🇮" },
94
+ { code: "KN", name: "Saint Kitts and Nevis", emoji: "🇰🇳" },
95
+ { code: "KR", name: "South Korea", emoji: "🇰🇷" },
96
+ { code: "KW", name: "Kuwait", emoji: "🇰🇼" },
97
+ { code: "LA", name: "Laos", emoji: "🇱🇦" },
98
+ { code: "LB", name: "Lebanon", emoji: "🇱🇧" },
99
+ { code: "LR", name: "Liberia", emoji: "🇱🇷" },
100
+ { code: "LY", name: "Libya", emoji: "🇱🇾" },
101
+ { code: "LC", name: "Saint Lucia", emoji: "🇱🇨" },
102
+ { code: "LI", name: "Liechtenstein", emoji: "🇱🇮" },
103
+ { code: "LK", name: "Sri Lanka", emoji: "🇱🇰" },
104
+ { code: "LS", name: "Lesotho", emoji: "🇱🇸" },
105
+ { code: "LT", name: "Lithuania", emoji: "🇱🇹" },
106
+ { code: "LU", name: "Luxembourg", emoji: "🇱🇺" },
107
+ { code: "LV", name: "Latvia", emoji: "🇱🇻" },
108
+ { code: "MA", name: "Morocco", emoji: "🇲🇦" },
109
+ { code: "MC", name: "Monaco", emoji: "🇲🇨" },
110
+ { code: "MD", name: "Moldova", emoji: "🇲🇩" },
111
+ { code: "MG", name: "Madagascar", emoji: "🇲🇬" },
112
+ { code: "MV", name: "Maldives", emoji: "🇲🇻" },
113
+ { code: "MX", name: "Mexico", emoji: "🇲🇽" },
114
+ { code: "MH", name: "Marshall Islands", emoji: "🇲🇭" },
115
+ { code: "MK", name: "Macedonia", emoji: "🇲🇰" },
116
+ { code: "ML", name: "Mali", emoji: "🇲🇱" },
117
+ { code: "MT", name: "Malta", emoji: "🇲🇹" },
118
+ { code: "MM", name: "Myanmar", emoji: "🇲🇲" },
119
+ { code: "ME", name: "Montenegro", emoji: "🇲🇪" },
120
+ { code: "MN", name: "Mongolia", emoji: "🇲🇳" },
121
+ { code: "MZ", name: "Mozambique", emoji: "🇲🇿" },
122
+ { code: "MR", name: "Mauritania", emoji: "🇲🇷" },
123
+ { code: "MU", name: "Mauritius", emoji: "🇲🇺" },
124
+ { code: "MW", name: "Malawi", emoji: "🇲🇼" },
125
+ { code: "MY", name: "Malaysia", emoji: "🇲🇾" },
126
+ { code: "NA", name: "Namibia", emoji: "🇳🇦" },
127
+ { code: "NE", name: "Niger", emoji: "🇳🇪" },
128
+ { code: "NG", name: "Nigeria", emoji: "🇳🇬" },
129
+ { code: "NI", name: "Nicaragua", emoji: "🇳🇮" },
130
+ { code: "NL", name: "Netherlands", emoji: "🇳🇱" },
131
+ { code: "NO", name: "Norway", emoji: "🇳🇴" },
132
+ { code: "NP", name: "Nepal", emoji: "🇳🇵" },
133
+ { code: "NR", name: "Nauru", emoji: "🇳🇷" },
134
+ { code: "NZ", name: "New Zealand", emoji: "🇳🇿" },
135
+ { code: "OM", name: "Oman", emoji: "🇴🇲" },
136
+ { code: "PK", name: "Pakistan", emoji: "🇵🇰" },
137
+ { code: "PA", name: "Panama", emoji: "🇵🇦" },
138
+ { code: "PE", name: "Peru", emoji: "🇵🇪" },
139
+ { code: "PH", name: "Philippines", emoji: "🇵🇭" },
140
+ { code: "PW", name: "Palau", emoji: "🇵🇼" },
141
+ { code: "PG", name: "Papua New Guinea", emoji: "🇵🇬" },
142
+ { code: "PL", name: "Poland", emoji: "🇵🇱" },
143
+ { code: "KP", name: "North Korea", emoji: "🇰🇵" },
144
+ { code: "PT", name: "Portugal", emoji: "🇵🇹" },
145
+ { code: "PY", name: "Paraguay", emoji: "🇵🇾" },
146
+ { code: "QA", name: "Qatar", emoji: "🇶🇦" },
147
+ { code: "RO", name: "Romania", emoji: "🇷🇴" },
148
+ { code: "RU", name: "Russia", emoji: "🇷🇺" },
149
+ { code: "RW", name: "Rwanda", emoji: "🇷🇼" },
150
+ { code: "SA", name: "Saudi Arabia", emoji: "🇸🇦" },
151
+ { code: "SD", name: "Sudan", emoji: "🇸🇩" },
152
+ { code: "SN", name: "Senegal", emoji: "🇸🇳" },
153
+ { code: "SG", name: "Singapore", emoji: "🇸🇬" },
154
+ { code: "SB", name: "Solomon Islands", emoji: "🇸🇧" },
155
+ { code: "SL", name: "Sierra Leone", emoji: "🇸🇱" },
156
+ { code: "SV", name: "El Salvador", emoji: "🇸🇻" },
157
+ { code: "SM", name: "San Marino", emoji: "🇸🇲" },
158
+ { code: "SO", name: "Somalia", emoji: "🇸🇴" },
159
+ { code: "RS", name: "Serbia", emoji: "🇷🇸" },
160
+ { code: "SS", name: "South Sudan", emoji: "🇸🇸" },
161
+ { code: "ST", name: "São Tomé and Príncipe", emoji: "🇸🇹" },
162
+ { code: "SR", name: "Suriname", emoji: "🇸🇷" },
163
+ { code: "SK", name: "Slovakia", emoji: "🇸🇰" },
164
+ { code: "SI", name: "Slovenia", emoji: "🇸🇮" },
165
+ { code: "SE", name: "Sweden", emoji: "🇸🇪" },
166
+ { code: "SZ", name: "Swaziland", emoji: "🇸🇿" },
167
+ { code: "SC", name: "Seychelles", emoji: "🇸🇨" },
168
+ { code: "SY", name: "Syria", emoji: "🇸🇾" },
169
+ { code: "TD", name: "Chad", emoji: "🇹🇩" },
170
+ { code: "TG", name: "Togo", emoji: "🇹🇬" },
171
+ { code: "TH", name: "Thailand", emoji: "🇹🇭" },
172
+ { code: "TJ", name: "Tajikistan", emoji: "🇹🇯" },
173
+ { code: "TM", name: "Turkmenistan", emoji: "🇹🇲" },
174
+ { code: "TL", name: "Timor-Leste", emoji: "🇹🇱" },
175
+ { code: "TO", name: "Tonga", emoji: "🇹🇴" },
176
+ { code: "TT", name: "Trinidad and Tobago", emoji: "🇹🇹" },
177
+ { code: "TN", name: "Tunisia", emoji: "🇹🇳" },
178
+ { code: "TR", name: "Turkey", emoji: "🇹🇷" },
179
+ { code: "TV", name: "Tuvalu", emoji: "🇹🇻" },
180
+ { code: "TZ", name: "Tanzania", emoji: "🇹🇿" },
181
+ { code: "UG", name: "Uganda", emoji: "🇺🇬" },
182
+ { code: "UA", name: "Ukraine", emoji: "🇺🇦" },
183
+ { code: "UY", name: "Uruguay", emoji: "🇺🇾" },
184
+ { code: "US", name: "United States", emoji: "🇺🇸" },
185
+ { code: "UZ", name: "Uzbekistan", emoji: "🇺🇿" },
186
+ { code: "VA", name: "Vatican City", emoji: "🇻🇦" },
187
+ { code: "VC", name: "Saint Vincent and the Grenadines", emoji: "🇻🇨" },
188
+ { code: "VE", name: "Venezuela", emoji: "🇻🇪" },
189
+ { code: "VN", name: "Vietnam", emoji: "🇻🇳" },
190
+ { code: "VU", name: "Vanuatu", emoji: "🇻🇺" },
191
+ { code: "WS", name: "Samoa", emoji: "🇼🇸" },
192
+ { code: "YE", name: "Yemen", emoji: "🇾🇪" },
193
+ { code: "ZA", name: "South Africa", emoji: "🇿🇦" },
194
+ { code: "ZM", name: "Zambia", emoji: "🇿🇲" },
195
+ { code: "ZW", name: "Zimbabwe", emoji: "🇿🇼" },
196
+ ];
@@ -0,0 +1,86 @@
1
+ export default [
2
+ {
3
+ id: "1",
4
+ name: "Bird Watching Experience",
5
+ seller: { id: "1" },
6
+ photo: { src: "https://placeimg.com/140/105/animals" },
7
+ },
8
+ {
9
+ id: "2",
10
+ name: "1 Hour deep dive Scuba diving",
11
+ seller: { id: "2" },
12
+ photo: { src: "https://placeimg.com/140/105/nature" },
13
+ },
14
+ {
15
+ id: "3",
16
+ name: "Paragliding Experience",
17
+ seller: { id: "1" },
18
+ photo: { src: "https://placeimg.com/140/105/nature" },
19
+ },
20
+ {
21
+ id: "4",
22
+ name: "Art n Architecture Tour",
23
+ seller: { id: "2" },
24
+ photo: { src: "https://placeimg.com/140/105/arch" },
25
+ },
26
+ {
27
+ id: "5",
28
+ name: "1 Hour Football Training",
29
+ seller: { id: "1" },
30
+ photo: { src: "https://placeimg.com/140/105/people" },
31
+ },
32
+ {
33
+ id: "6",
34
+ name: "New Delhi Virtual Tour",
35
+ seller: { id: "3" },
36
+ photo: { src: "https://placeimg.com/140/105/arch" },
37
+ },
38
+ {
39
+ id: "7",
40
+ name: "3 Hour Jungle Safari",
41
+ seller: { id: "1" },
42
+ photo: { src: "https://placeimg.com/140/105/animals" },
43
+ },
44
+ {
45
+ id: "8",
46
+ name: "Nile River Boating Experience",
47
+ seller: { id: "2" },
48
+ photo: { src: "https://placeimg.com/140/105/arch" },
49
+ },
50
+ {
51
+ id: "9",
52
+ name: "Bangalore Virtual Tour",
53
+ seller: { id: "3" },
54
+ photo: { src: "https://placeimg.com/140/105/tech" },
55
+ },
56
+ {
57
+ id: "10",
58
+ name: "Rock Climbing Adventure",
59
+ seller: { id: "1" },
60
+ photo: { src: "https://placeimg.com/140/105/people" },
61
+ },
62
+ {
63
+ id: "11",
64
+ name: "New Your Virtual Tour",
65
+ seller: { id: "1" },
66
+ photo: { src: "https://placeimg.com/140/105/arch" },
67
+ },
68
+ {
69
+ id: "12",
70
+ name: "River Rafting Experience",
71
+ seller: { id: "2" },
72
+ photo: { src: "https://placeimg.com/140/105/animals" },
73
+ },
74
+ {
75
+ id: "13",
76
+ name: "2 Hour Football Training",
77
+ seller: { id: "1" },
78
+ photo: { src: "https://placeimg.com/140/105/people" },
79
+ },
80
+ {
81
+ id: "14",
82
+ name: "Himalayas Virtual Tour",
83
+ seller: { id: "3" },
84
+ photo: { src: "https://placeimg.com/140/105/nature" },
85
+ },
86
+ ];
@@ -0,0 +1,5 @@
1
+ export default [
2
+ { id: "1", name: "Jack Daniels", photo: { src: "https://placeimg.com/100/100/nature" } },
3
+ { id: "2", name: "Woodford Reserve" },
4
+ { id: "3", name: "Virtual Tours"},
5
+ ];