@haiilo/catalyst 0.14.3 → 0.15.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 (65) hide show
  1. package/dist/catalyst/catalyst.esm.js +1 -1
  2. package/dist/catalyst/catalyst.esm.js.map +1 -1
  3. package/dist/catalyst/index.cdn.js +17 -12
  4. package/dist/catalyst/p-7fff102c.entry.js +12 -0
  5. package/dist/catalyst/p-7fff102c.entry.js.map +1 -0
  6. package/dist/cjs/{cat-alert_22.cjs.entry.js → cat-alert_24.cjs.entry.js} +2234 -19
  7. package/dist/cjs/cat-alert_24.cjs.entry.js.map +1 -0
  8. package/dist/cjs/catalyst.cjs.js +1 -1
  9. package/dist/cjs/loader.cjs.js +1 -1
  10. package/dist/collection/collection-manifest.json +2 -0
  11. package/dist/collection/components/cat-badge/cat-badge.css +5 -5
  12. package/dist/collection/components/cat-button/cat-button.css +4 -0
  13. package/dist/collection/components/cat-checkbox/cat-checkbox.css +1 -0
  14. package/dist/collection/components/cat-input/cat-input.css +1 -0
  15. package/dist/collection/components/cat-scrollable/cat-scrollable.css +0 -1
  16. package/dist/collection/components/cat-select-remote/cat-select-remote.css +210 -0
  17. package/dist/collection/components/cat-select-remote/cat-select-remote.js +818 -0
  18. package/dist/collection/components/cat-select-remote/cat-select-remote.js.map +1 -0
  19. package/dist/collection/components/cat-select-remote-test/cat-select-remote-test.js +1288 -0
  20. package/dist/collection/components/cat-select-remote-test/cat-select-remote-test.js.map +1 -0
  21. package/dist/collection/index.cdn.js +17 -12
  22. package/dist/collection/index.js.map +1 -1
  23. package/dist/components/cat-badge.js +1 -1
  24. package/dist/components/cat-badge.js.map +1 -1
  25. package/dist/components/cat-button2.js +1 -1
  26. package/dist/components/cat-button2.js.map +1 -1
  27. package/dist/components/cat-checkbox.js +1 -115
  28. package/dist/components/cat-checkbox.js.map +1 -1
  29. package/dist/components/cat-checkbox2.js +119 -0
  30. package/dist/components/cat-checkbox2.js.map +1 -0
  31. package/dist/components/cat-input.js +1 -1
  32. package/dist/components/cat-input.js.map +1 -1
  33. package/dist/components/cat-scrollable.js +1 -1355
  34. package/dist/components/cat-scrollable.js.map +1 -1
  35. package/dist/components/cat-scrollable2.js +1359 -0
  36. package/dist/components/cat-scrollable2.js.map +1 -0
  37. package/dist/components/cat-select-remote-test.d.ts +11 -0
  38. package/dist/components/cat-select-remote-test.js +1368 -0
  39. package/dist/components/cat-select-remote-test.js.map +1 -0
  40. package/dist/components/cat-select-remote.d.ts +11 -0
  41. package/dist/components/cat-select-remote.js +8 -0
  42. package/dist/components/cat-select-remote.js.map +1 -0
  43. package/dist/components/cat-select-remote2.js +987 -0
  44. package/dist/components/cat-select-remote2.js.map +1 -0
  45. package/dist/components/cat-skeleton.js +1 -71
  46. package/dist/components/cat-skeleton.js.map +1 -1
  47. package/dist/components/cat-skeleton2.js +75 -0
  48. package/dist/components/cat-skeleton2.js.map +1 -0
  49. package/dist/components/index.d.ts +2 -0
  50. package/dist/components/index.js +2 -0
  51. package/dist/components/index.js.map +1 -1
  52. package/dist/esm/{cat-alert_22.entry.js → cat-alert_24.entry.js} +2233 -20
  53. package/dist/esm/cat-alert_24.entry.js.map +1 -0
  54. package/dist/esm/catalyst.js +1 -1
  55. package/dist/esm/loader.js +1 -1
  56. package/dist/types/components/cat-select-remote/autosize.d.ts +1 -0
  57. package/dist/types/components/cat-select-remote/cat-select-remote.d.ts +164 -0
  58. package/dist/types/components/cat-select-remote-test/cat-select-remote-test.d.ts +6 -0
  59. package/dist/types/components.d.ts +149 -0
  60. package/dist/types/index.d.ts +3 -0
  61. package/package.json +5 -4
  62. package/dist/catalyst/p-45547af1.entry.js +0 -12
  63. package/dist/catalyst/p-45547af1.entry.js.map +0 -1
  64. package/dist/cjs/cat-alert_22.cjs.entry.js.map +0 -1
  65. package/dist/esm/cat-alert_22.entry.js.map +0 -1
@@ -0,0 +1,1288 @@
1
+ import { Component, h, Host } from '@stencil/core';
2
+ import { of, delay } from 'rxjs';
3
+ export class CatSelectRemoteTest {
4
+ componentDidLoad() {
5
+ var _a, _b;
6
+ (_a = this.multipleSelect) === null || _a === void 0 ? void 0 : _a.connect({
7
+ resolve: (ids) => {
8
+ console.info(`Resolving data... (${ids.join(', ')})`);
9
+ return of(ids.map(id => ({
10
+ id,
11
+ firstName: 'John',
12
+ lastName: `Doe (${id})`,
13
+ desc: 'resolved'
14
+ }))).pipe(delay(500));
15
+ },
16
+ retrieve: (term, page) => {
17
+ console.info(`Retrieving data... ("${term}", ${page})`);
18
+ return term === 'no'
19
+ ? of({ last: true, content: [], totalElements: 0 })
20
+ : of({
21
+ last: false,
22
+ totalElements: 10000,
23
+ content: Array.from({ length: 10 }, (_, i) => ({
24
+ id: '' + (i + page * 10),
25
+ firstName: 'John',
26
+ lastName: `Doe (${i + page * 10})`,
27
+ desc: `"${term}": page ${page}`
28
+ }))
29
+ }).pipe(delay(500));
30
+ },
31
+ render: (user) => ({
32
+ label: `${user.firstName} ${user.lastName}`,
33
+ description: user.desc
34
+ })
35
+ });
36
+ (_b = this.singleSelect) === null || _b === void 0 ? void 0 : _b.connect({
37
+ resolve: (ids) => {
38
+ console.info(`Resolving data... (${ids.join(', ')})`);
39
+ return of(ids.map(id => countries.find(value => value.id === id))).pipe(delay(500));
40
+ },
41
+ retrieve: (term, page) => {
42
+ console.info(`Retrieving data... ("${term}", ${page})`);
43
+ const filter = countries.filter(value => {
44
+ var _a;
45
+ return value.country.toLowerCase().indexOf(term.toLowerCase()) === 0 ||
46
+ ((_a = value.capital) === null || _a === void 0 ? void 0 : _a.toLowerCase().indexOf(term.toLowerCase())) === 0;
47
+ });
48
+ const slice = filter.slice(page * 10, page * 10 + 10);
49
+ return of({
50
+ last: slice.length < 10,
51
+ totalElements: filter.length,
52
+ content: slice
53
+ }).pipe(delay(500));
54
+ },
55
+ render: (country) => ({
56
+ label: country.country,
57
+ description: country.capital || 'No capital'
58
+ })
59
+ });
60
+ }
61
+ render() {
62
+ return (h(Host, { style: { display: 'flex', flexDirection: 'column' } },
63
+ h("cat-select-remote", { label: "Multiple Select", hint: "This is a hint!", ref: el => (this.multipleSelect = el), value: ['1'], placeholder: "Hello World", onCatChange: e => console.log('Multiple', e), onCatBlur: e => console.log('Multiple blur', e), multiple: true, clearable: true },
64
+ h("span", { slot: "hint" },
65
+ "Searching for \"no\" -",
66
+ '>',
67
+ " no options are returned!")),
68
+ h("cat-select-remote", { label: "Single Select", hint: "This is a hint!", ref: el => (this.singleSelect = el), value: '1', placeholder: "Search for a country or capital", onCatChange: e => console.log('Single', e), onCatBlur: e => console.log('Single blur', e), clearable: true })));
69
+ }
70
+ static get is() { return "cat-select-remote-test"; }
71
+ static get encapsulation() { return "shadow"; }
72
+ }
73
+ const countries = [
74
+ {
75
+ id: '0',
76
+ country: 'Afghanistan Extra extra large extra large extra large extra large extra large extra large extra large extra large extra large extra large extra large extra large extra large extra large ',
77
+ capital: 'Kabul'
78
+ },
79
+ {
80
+ id: '1',
81
+ country: 'Albania',
82
+ capital: 'Tirana'
83
+ },
84
+ {
85
+ id: '2',
86
+ country: 'Algeria',
87
+ capital: 'Alger'
88
+ },
89
+ {
90
+ id: '3',
91
+ country: 'American Samoa',
92
+ capital: 'Fagatogo'
93
+ },
94
+ {
95
+ id: '4',
96
+ country: 'Andorra',
97
+ capital: 'Andorra la Vella'
98
+ },
99
+ {
100
+ id: '5',
101
+ country: 'Angola',
102
+ capital: 'Luanda'
103
+ },
104
+ {
105
+ id: '6',
106
+ country: 'Anguilla',
107
+ capital: 'The Valley'
108
+ },
109
+ {
110
+ id: '7',
111
+ country: 'Antarctica'
112
+ },
113
+ {
114
+ id: '8',
115
+ country: 'Antigua and Barbuda',
116
+ capital: "Saint John's"
117
+ },
118
+ {
119
+ id: '9',
120
+ country: 'Argentina',
121
+ capital: 'Buenos Aires'
122
+ },
123
+ {
124
+ id: '10',
125
+ country: 'Armenia',
126
+ capital: 'Yerevan'
127
+ },
128
+ {
129
+ id: '11',
130
+ country: 'Aruba',
131
+ capital: 'Oranjestad'
132
+ },
133
+ {
134
+ id: '12',
135
+ country: 'Australia',
136
+ capital: 'Canberra'
137
+ },
138
+ {
139
+ id: '13',
140
+ country: 'Austria',
141
+ capital: 'Wien'
142
+ },
143
+ {
144
+ id: '14',
145
+ country: 'Azerbaijan',
146
+ capital: 'Baku'
147
+ },
148
+ {
149
+ id: '15',
150
+ country: 'Bahamas',
151
+ capital: 'Nassau'
152
+ },
153
+ {
154
+ id: '16',
155
+ country: 'Bahrain',
156
+ capital: 'al-Manama'
157
+ },
158
+ {
159
+ id: '17',
160
+ country: 'Bangladesh',
161
+ capital: 'Dhaka'
162
+ },
163
+ {
164
+ id: '18',
165
+ country: 'Barbados',
166
+ capital: 'Bridgetown'
167
+ },
168
+ {
169
+ id: '19',
170
+ country: 'Belarus',
171
+ capital: 'Minsk'
172
+ },
173
+ {
174
+ id: '20',
175
+ country: 'Belgium',
176
+ capital: 'Bruxelles [Brussel]'
177
+ },
178
+ {
179
+ id: '21',
180
+ country: 'Belize',
181
+ capital: 'Belmopan'
182
+ },
183
+ {
184
+ id: '22',
185
+ country: 'Benin',
186
+ capital: 'Porto-Novo'
187
+ },
188
+ {
189
+ id: '23',
190
+ country: 'Bermuda',
191
+ capital: 'Hamilton'
192
+ },
193
+ {
194
+ id: '24',
195
+ country: 'Bhutan',
196
+ capital: 'Thimphu'
197
+ },
198
+ {
199
+ id: '25',
200
+ country: 'Bolivia',
201
+ capital: 'La Paz'
202
+ },
203
+ {
204
+ id: '26',
205
+ country: 'Bosnia and Herzegovina',
206
+ capital: 'Sarajevo'
207
+ },
208
+ {
209
+ id: '27',
210
+ country: 'Botswana',
211
+ capital: 'Gaborone'
212
+ },
213
+ {
214
+ id: '28',
215
+ country: 'Bouvet Island'
216
+ },
217
+ {
218
+ id: '29',
219
+ country: 'Brazil',
220
+ capital: 'Brasília'
221
+ },
222
+ {
223
+ id: '30',
224
+ country: 'British Indian Ocean Territory'
225
+ },
226
+ {
227
+ id: '31',
228
+ country: 'Brunei',
229
+ capital: 'Bandar Seri Begawan'
230
+ },
231
+ {
232
+ id: '32',
233
+ country: 'Bulgaria',
234
+ capital: 'Sofia'
235
+ },
236
+ {
237
+ id: '33',
238
+ country: 'Burkina Faso',
239
+ capital: 'Ouagadougou'
240
+ },
241
+ {
242
+ id: '34',
243
+ country: 'Burundi',
244
+ capital: 'Bujumbura'
245
+ },
246
+ {
247
+ id: '35',
248
+ country: 'Cambodia',
249
+ capital: 'Phnom Penh'
250
+ },
251
+ {
252
+ id: '36',
253
+ country: 'Cameroon',
254
+ capital: 'Yaound'
255
+ },
256
+ {
257
+ id: '37',
258
+ country: 'Canada',
259
+ capital: 'Ottawa'
260
+ },
261
+ {
262
+ id: '38',
263
+ country: 'Cape Verde',
264
+ capital: 'Praia'
265
+ },
266
+ {
267
+ id: '39',
268
+ country: 'Cayman Islands',
269
+ capital: 'George Town'
270
+ },
271
+ {
272
+ id: '40',
273
+ country: 'Central African Republic',
274
+ capital: 'Bangui'
275
+ },
276
+ {
277
+ id: '41',
278
+ country: 'Chad',
279
+ capital: "N'Djam"
280
+ },
281
+ {
282
+ id: '42',
283
+ country: 'Chile',
284
+ capital: 'Santiago de Chile'
285
+ },
286
+ {
287
+ id: '43',
288
+ country: 'China',
289
+ capital: 'Peking'
290
+ },
291
+ {
292
+ id: '44',
293
+ country: 'Christmas Island',
294
+ capital: 'Flying Fish Cove'
295
+ },
296
+ {
297
+ id: '45',
298
+ country: 'Cocos (Keeling) Islands',
299
+ capital: 'West Island'
300
+ },
301
+ {
302
+ id: '46',
303
+ country: 'Colombia',
304
+ capital: 'Santaf'
305
+ },
306
+ {
307
+ id: '47',
308
+ country: 'Comoros',
309
+ capital: 'Moroni'
310
+ },
311
+ {
312
+ id: '48',
313
+ country: 'Congo',
314
+ capital: 'Brazzaville'
315
+ },
316
+ {
317
+ id: '49',
318
+ country: 'Cook Islands',
319
+ capital: 'Avarua'
320
+ },
321
+ {
322
+ id: '50',
323
+ country: 'Costa Rica',
324
+ capital: 'San José'
325
+ },
326
+ {
327
+ id: '51',
328
+ country: 'Croatia',
329
+ capital: 'Zagreb'
330
+ },
331
+ {
332
+ id: '52',
333
+ country: 'Cuba',
334
+ capital: 'La Habana'
335
+ },
336
+ {
337
+ id: '53',
338
+ country: 'Cyprus',
339
+ capital: 'Nicosia'
340
+ },
341
+ {
342
+ id: '54',
343
+ country: 'Czech Republic',
344
+ capital: 'Praha'
345
+ },
346
+ {
347
+ id: '55',
348
+ country: 'Denmark',
349
+ capital: 'Copenhagen'
350
+ },
351
+ {
352
+ id: '56',
353
+ country: 'Djibouti',
354
+ capital: 'Djibouti'
355
+ },
356
+ {
357
+ id: '57',
358
+ country: 'Dominica',
359
+ capital: 'Roseau'
360
+ },
361
+ {
362
+ id: '58',
363
+ country: 'Dominican Republic',
364
+ capital: 'Santo Domingo de Guzm'
365
+ },
366
+ {
367
+ id: '59',
368
+ country: 'East Timor',
369
+ capital: 'Dili'
370
+ },
371
+ {
372
+ id: '60',
373
+ country: 'Ecuador',
374
+ capital: 'Quito'
375
+ },
376
+ {
377
+ id: '61',
378
+ country: 'Egypt',
379
+ capital: 'Cairo'
380
+ },
381
+ {
382
+ id: '62',
383
+ country: 'El Salvador',
384
+ capital: 'San Salvador'
385
+ },
386
+ {
387
+ id: '63',
388
+ country: 'England',
389
+ capital: 'London'
390
+ },
391
+ {
392
+ id: '64',
393
+ country: 'Equatorial Guinea',
394
+ capital: 'Malabo'
395
+ },
396
+ {
397
+ id: '65',
398
+ country: 'Eritrea',
399
+ capital: 'Asmara'
400
+ },
401
+ {
402
+ id: '66',
403
+ country: 'Estonia',
404
+ capital: 'Tallinn'
405
+ },
406
+ {
407
+ id: '67',
408
+ country: 'Ethiopia',
409
+ capital: 'Addis Abeba'
410
+ },
411
+ {
412
+ id: '68',
413
+ country: 'Falkland Islands',
414
+ capital: 'Stanley'
415
+ },
416
+ {
417
+ id: '69',
418
+ country: 'Faroe Islands',
419
+ capital: 'Tórshavn'
420
+ },
421
+ {
422
+ id: '70',
423
+ country: 'Fiji Islands',
424
+ capital: 'Suva'
425
+ },
426
+ {
427
+ id: '71',
428
+ country: 'Finland',
429
+ capital: 'Helsinki [Helsingfors]'
430
+ },
431
+ {
432
+ id: '72',
433
+ country: 'France',
434
+ capital: 'Paris'
435
+ },
436
+ {
437
+ id: '73',
438
+ country: 'French Guiana',
439
+ capital: 'Cayenne'
440
+ },
441
+ {
442
+ id: '74',
443
+ country: 'French Polynesia',
444
+ capital: 'Papeete'
445
+ },
446
+ {
447
+ id: '75',
448
+ country: 'French Southern territories'
449
+ },
450
+ {
451
+ id: '76',
452
+ country: 'Gabon',
453
+ capital: 'Libreville'
454
+ },
455
+ {
456
+ id: '77',
457
+ country: 'Gambia',
458
+ capital: 'Banjul'
459
+ },
460
+ {
461
+ id: '78',
462
+ country: 'Georgia',
463
+ capital: 'Tbilisi'
464
+ },
465
+ {
466
+ id: '79',
467
+ country: 'Germany',
468
+ capital: 'Berlin'
469
+ },
470
+ {
471
+ id: '80',
472
+ country: 'Ghana',
473
+ capital: 'Accra'
474
+ },
475
+ {
476
+ id: '81',
477
+ country: 'Gibraltar',
478
+ capital: 'Gibraltar'
479
+ },
480
+ {
481
+ id: '82',
482
+ country: 'Greece',
483
+ capital: 'Athenai'
484
+ },
485
+ {
486
+ id: '83',
487
+ country: 'Greenland',
488
+ capital: 'Nuuk'
489
+ },
490
+ {
491
+ id: '84',
492
+ country: 'Grenada',
493
+ capital: "Saint George's"
494
+ },
495
+ {
496
+ id: '85',
497
+ country: 'Guadeloupe',
498
+ capital: 'Basse-Terre'
499
+ },
500
+ {
501
+ id: '86',
502
+ country: 'Guam',
503
+ capital: 'Aga'
504
+ },
505
+ {
506
+ id: '87',
507
+ country: 'Guatemala',
508
+ capital: 'Ciudad de Guatemala'
509
+ },
510
+ {
511
+ id: '88',
512
+ country: 'Guinea',
513
+ capital: 'Conakry'
514
+ },
515
+ {
516
+ id: '89',
517
+ country: 'Guinea-Bissau',
518
+ capital: 'Bissau'
519
+ },
520
+ {
521
+ id: '90',
522
+ country: 'Guyana',
523
+ capital: 'Georgetown'
524
+ },
525
+ {
526
+ id: '91',
527
+ country: 'Haiti',
528
+ capital: 'Port-au-Prince'
529
+ },
530
+ {
531
+ id: '92',
532
+ country: 'Heard Island and McDonald Islands'
533
+ },
534
+ {
535
+ id: '93',
536
+ country: 'Holy See (Vatican City State)',
537
+ capital: 'Citt'
538
+ },
539
+ {
540
+ id: '94',
541
+ country: 'Honduras',
542
+ capital: 'Tegucigalpa'
543
+ },
544
+ {
545
+ id: '95',
546
+ country: 'Hong Kong',
547
+ capital: 'Victoria'
548
+ },
549
+ {
550
+ id: '96',
551
+ country: 'Hungary',
552
+ capital: 'Budapest'
553
+ },
554
+ {
555
+ id: '97',
556
+ country: 'Iceland',
557
+ capital: 'Reykjavík'
558
+ },
559
+ {
560
+ id: '98',
561
+ country: 'India',
562
+ capital: 'New Delhi'
563
+ },
564
+ {
565
+ id: '99',
566
+ country: 'Indonesia',
567
+ capital: 'Jakarta'
568
+ },
569
+ {
570
+ id: '100',
571
+ country: 'Iran',
572
+ capital: 'Tehran'
573
+ },
574
+ {
575
+ id: '101',
576
+ country: 'Iraq',
577
+ capital: 'Baghdad'
578
+ },
579
+ {
580
+ id: '102',
581
+ country: 'Ireland',
582
+ capital: 'Dublin'
583
+ },
584
+ {
585
+ id: '103',
586
+ country: 'Israel',
587
+ capital: 'Jerusalem'
588
+ },
589
+ {
590
+ id: '104',
591
+ country: 'Italy',
592
+ capital: 'Roma'
593
+ },
594
+ {
595
+ id: '105',
596
+ country: 'Ivory Coast',
597
+ capital: 'Yamoussoukro'
598
+ },
599
+ {
600
+ id: '106',
601
+ country: 'Jamaica',
602
+ capital: 'Kingston'
603
+ },
604
+ {
605
+ id: '107',
606
+ country: 'Japan',
607
+ capital: 'Tokyo'
608
+ },
609
+ {
610
+ id: '108',
611
+ country: 'Jordan',
612
+ capital: 'Amman'
613
+ },
614
+ {
615
+ id: '109',
616
+ country: 'Kazakhstan',
617
+ capital: 'Astana'
618
+ },
619
+ {
620
+ id: '110',
621
+ country: 'Kenya',
622
+ capital: 'Nairobi'
623
+ },
624
+ {
625
+ id: '111',
626
+ country: 'Kiribati',
627
+ capital: 'Bairiki'
628
+ },
629
+ {
630
+ id: '112',
631
+ country: 'Kuwait',
632
+ capital: 'Kuwait'
633
+ },
634
+ {
635
+ id: '113',
636
+ country: 'Kyrgyzstan',
637
+ capital: 'Bishkek'
638
+ },
639
+ {
640
+ id: '114',
641
+ country: 'Laos',
642
+ capital: 'Vientiane'
643
+ },
644
+ {
645
+ id: '115',
646
+ country: 'Latvia',
647
+ capital: 'Riga'
648
+ },
649
+ {
650
+ id: '116',
651
+ country: 'Lebanon',
652
+ capital: 'Beirut'
653
+ },
654
+ {
655
+ id: '117',
656
+ country: 'Lesotho',
657
+ capital: 'Maseru'
658
+ },
659
+ {
660
+ id: '118',
661
+ country: 'Liberia',
662
+ capital: 'Monrovia'
663
+ },
664
+ {
665
+ id: '119',
666
+ country: 'Libyan Arab Jamahiriya',
667
+ capital: 'Tripoli'
668
+ },
669
+ {
670
+ id: '120',
671
+ country: 'Liechtenstein',
672
+ capital: 'Vaduz'
673
+ },
674
+ {
675
+ id: '121',
676
+ country: 'Lithuania',
677
+ capital: 'Vilnius'
678
+ },
679
+ {
680
+ id: '122',
681
+ country: 'Luxembourg',
682
+ capital: 'Luxembourg [Luxemburg/L'
683
+ },
684
+ {
685
+ id: '123',
686
+ country: 'Macao',
687
+ capital: 'Macao'
688
+ },
689
+ {
690
+ id: '124',
691
+ country: 'North Macedonia',
692
+ capital: 'Skopje'
693
+ },
694
+ {
695
+ id: '125',
696
+ country: 'Madagascar',
697
+ capital: 'Antananarivo'
698
+ },
699
+ {
700
+ id: '126',
701
+ country: 'Malawi',
702
+ capital: 'Lilongwe'
703
+ },
704
+ {
705
+ id: '127',
706
+ country: 'Malaysia',
707
+ capital: 'Kuala Lumpur'
708
+ },
709
+ {
710
+ id: '128',
711
+ country: 'Maldives',
712
+ capital: 'Male'
713
+ },
714
+ {
715
+ id: '129',
716
+ country: 'Mali',
717
+ capital: 'Bamako'
718
+ },
719
+ {
720
+ id: '130',
721
+ country: 'Malta',
722
+ capital: 'Valletta'
723
+ },
724
+ {
725
+ id: '131',
726
+ country: 'Marshall Islands',
727
+ capital: 'Dalap-Uliga-Darrit'
728
+ },
729
+ {
730
+ id: '132',
731
+ country: 'Martinique',
732
+ capital: 'Fort-de-France'
733
+ },
734
+ {
735
+ id: '133',
736
+ country: 'Mauritania',
737
+ capital: 'Nouakchott'
738
+ },
739
+ {
740
+ id: '134',
741
+ country: 'Mauritius',
742
+ capital: 'Port-Louis'
743
+ },
744
+ {
745
+ id: '135',
746
+ country: 'Mayotte',
747
+ capital: 'Mamoutzou'
748
+ },
749
+ {
750
+ id: '136',
751
+ country: 'Mexico',
752
+ capital: 'Ciudad de M'
753
+ },
754
+ {
755
+ id: '137',
756
+ country: 'Micronesia, Federated States of',
757
+ capital: 'Palikir'
758
+ },
759
+ {
760
+ id: '138',
761
+ country: 'Moldova',
762
+ capital: 'Chisinau'
763
+ },
764
+ {
765
+ id: '139',
766
+ country: 'Monaco',
767
+ capital: 'Monaco-Ville'
768
+ },
769
+ {
770
+ id: '140',
771
+ country: 'Mongolia',
772
+ capital: 'Ulan Bator'
773
+ },
774
+ {
775
+ id: '141',
776
+ country: 'Montenegro',
777
+ capital: 'Podgorica'
778
+ },
779
+ {
780
+ id: '142',
781
+ country: 'Montserrat',
782
+ capital: 'Plymouth'
783
+ },
784
+ {
785
+ id: '143',
786
+ country: 'Morocco',
787
+ capital: 'Rabat'
788
+ },
789
+ {
790
+ id: '144',
791
+ country: 'Mozambique',
792
+ capital: 'Maputo'
793
+ },
794
+ {
795
+ id: '145',
796
+ country: 'Myanmar',
797
+ capital: 'Rangoon (Yangon)'
798
+ },
799
+ {
800
+ id: '146',
801
+ country: 'Namibia',
802
+ capital: 'Windhoek'
803
+ },
804
+ {
805
+ id: '147',
806
+ country: 'Nauru',
807
+ capital: 'Yaren'
808
+ },
809
+ {
810
+ id: '148',
811
+ country: 'Nepal',
812
+ capital: 'Kathmandu'
813
+ },
814
+ {
815
+ id: '149',
816
+ country: 'Netherlands',
817
+ capital: 'Amsterdam'
818
+ },
819
+ {
820
+ id: '150',
821
+ country: 'Netherlands Antilles',
822
+ capital: 'Willemstad'
823
+ },
824
+ {
825
+ id: '151',
826
+ country: 'New Caledonia',
827
+ capital: 'Noum'
828
+ },
829
+ {
830
+ id: '152',
831
+ country: 'New Zealand',
832
+ capital: 'Wellington'
833
+ },
834
+ {
835
+ id: '153',
836
+ country: 'Nicaragua',
837
+ capital: 'Managua'
838
+ },
839
+ {
840
+ id: '154',
841
+ country: 'Niger',
842
+ capital: 'Niamey'
843
+ },
844
+ {
845
+ id: '155',
846
+ country: 'Nigeria',
847
+ capital: 'Abuja'
848
+ },
849
+ {
850
+ id: '156',
851
+ country: 'Niue',
852
+ capital: 'Alofi'
853
+ },
854
+ {
855
+ id: '157',
856
+ country: 'Norfolk Island',
857
+ capital: 'Kingston'
858
+ },
859
+ {
860
+ id: '158',
861
+ country: 'North Korea',
862
+ capital: 'Pyongyang'
863
+ },
864
+ {
865
+ id: '159',
866
+ country: 'Northern Ireland',
867
+ capital: 'Belfast'
868
+ },
869
+ {
870
+ id: '160',
871
+ country: 'Northern Mariana Islands',
872
+ capital: 'Garapan'
873
+ },
874
+ {
875
+ id: '161',
876
+ country: 'Norway',
877
+ capital: 'Oslo'
878
+ },
879
+ {
880
+ id: '162',
881
+ country: 'Oman',
882
+ capital: 'Masqat'
883
+ },
884
+ {
885
+ id: '163',
886
+ country: 'Pakistan',
887
+ capital: 'Islamabad'
888
+ },
889
+ {
890
+ id: '164',
891
+ country: 'Palau',
892
+ capital: 'Koror'
893
+ },
894
+ {
895
+ id: '165',
896
+ country: 'Palestine',
897
+ capital: 'Gaza'
898
+ },
899
+ {
900
+ id: '166',
901
+ country: 'Panama',
902
+ capital: 'Ciudad de Panamá'
903
+ },
904
+ {
905
+ id: '167',
906
+ country: 'Papua New Guinea',
907
+ capital: 'Port Moresby'
908
+ },
909
+ {
910
+ id: '168',
911
+ country: 'Paraguay',
912
+ capital: 'Asunción'
913
+ },
914
+ {
915
+ id: '169',
916
+ country: 'Peru',
917
+ capital: 'Lima'
918
+ },
919
+ {
920
+ id: '170',
921
+ country: 'Philippines',
922
+ capital: 'Manila'
923
+ },
924
+ {
925
+ id: '171',
926
+ country: 'Pitcairn',
927
+ capital: 'Adamstown'
928
+ },
929
+ {
930
+ id: '172',
931
+ country: 'Poland',
932
+ capital: 'Warszawa'
933
+ },
934
+ {
935
+ id: '173',
936
+ country: 'Portugal',
937
+ capital: 'Lisboa'
938
+ },
939
+ {
940
+ id: '174',
941
+ country: 'Puerto Rico',
942
+ capital: 'San Juan'
943
+ },
944
+ {
945
+ id: '175',
946
+ country: 'Qatar',
947
+ capital: 'Doha'
948
+ },
949
+ {
950
+ id: '176',
951
+ country: 'Reunion',
952
+ capital: 'Saint-Denis'
953
+ },
954
+ {
955
+ id: '177',
956
+ country: 'Romania',
957
+ capital: 'Bucuresti'
958
+ },
959
+ {
960
+ id: '178',
961
+ country: 'Russian Federation',
962
+ capital: 'Moscow'
963
+ },
964
+ {
965
+ id: '179',
966
+ country: 'Rwanda',
967
+ capital: 'Kigali'
968
+ },
969
+ {
970
+ id: '180',
971
+ country: 'Saint Helena',
972
+ capital: 'Jamestown'
973
+ },
974
+ {
975
+ id: '181',
976
+ country: 'Saint Kitts and Nevis',
977
+ capital: 'Basseterre'
978
+ },
979
+ {
980
+ id: '182',
981
+ country: 'Saint Lucia',
982
+ capital: 'Castries'
983
+ },
984
+ {
985
+ id: '183',
986
+ country: 'Saint Pierre and Miquelon',
987
+ capital: 'Saint-Pierre'
988
+ },
989
+ {
990
+ id: '184',
991
+ country: 'Saint Vincent and the Grenadines',
992
+ capital: 'Kingstown'
993
+ },
994
+ {
995
+ id: '185',
996
+ country: 'Samoa',
997
+ capital: 'Apia'
998
+ },
999
+ {
1000
+ id: '186',
1001
+ country: 'San Marino',
1002
+ capital: 'San Marino'
1003
+ },
1004
+ {
1005
+ id: '187',
1006
+ country: 'Sao Tome and Principe',
1007
+ capital: 'São Tomé'
1008
+ },
1009
+ {
1010
+ id: '188',
1011
+ country: 'Saudi Arabia',
1012
+ capital: 'Riyadh'
1013
+ },
1014
+ {
1015
+ id: '189',
1016
+ country: 'Scotland',
1017
+ capital: 'Edinburgh'
1018
+ },
1019
+ {
1020
+ id: '190',
1021
+ country: 'Senegal',
1022
+ capital: 'Dakar'
1023
+ },
1024
+ {
1025
+ id: '191',
1026
+ country: 'Serbia',
1027
+ capital: 'Belgrade'
1028
+ },
1029
+ {
1030
+ id: '192',
1031
+ country: 'Seychelles',
1032
+ capital: 'Victoria'
1033
+ },
1034
+ {
1035
+ id: '193',
1036
+ country: 'Sierra Leone',
1037
+ capital: 'Freetown'
1038
+ },
1039
+ {
1040
+ id: '194',
1041
+ country: 'Singapore',
1042
+ capital: 'Singapore'
1043
+ },
1044
+ {
1045
+ id: '195',
1046
+ country: 'Slovakia',
1047
+ capital: 'Bratislava'
1048
+ },
1049
+ {
1050
+ id: '196',
1051
+ country: 'Slovenia',
1052
+ capital: 'Ljubljana'
1053
+ },
1054
+ {
1055
+ id: '197',
1056
+ country: 'Solomon Islands',
1057
+ capital: 'Honiara'
1058
+ },
1059
+ {
1060
+ id: '198',
1061
+ country: 'Somalia',
1062
+ capital: 'Mogadishu'
1063
+ },
1064
+ {
1065
+ id: '199',
1066
+ country: 'South Africa',
1067
+ capital: 'Pretoria'
1068
+ },
1069
+ {
1070
+ id: '200',
1071
+ country: 'South Georgia and the South Sandwich Islands'
1072
+ },
1073
+ {
1074
+ id: '201',
1075
+ country: 'South Korea',
1076
+ capital: 'Seoul'
1077
+ },
1078
+ {
1079
+ id: '202',
1080
+ country: 'South Sudan',
1081
+ capital: 'Juba'
1082
+ },
1083
+ {
1084
+ id: '203',
1085
+ country: 'Spain',
1086
+ capital: 'Madrid'
1087
+ },
1088
+ {
1089
+ id: '204',
1090
+ country: 'Sri Lanka',
1091
+ capital: 'Colombo, Sri Jayawardenepura Kotte'
1092
+ },
1093
+ {
1094
+ id: '205',
1095
+ country: 'Sudan',
1096
+ capital: 'Khartum'
1097
+ },
1098
+ {
1099
+ id: '206',
1100
+ country: 'Suriname',
1101
+ capital: 'Paramaribo'
1102
+ },
1103
+ {
1104
+ id: '207',
1105
+ country: 'Svalbard and Jan Mayen',
1106
+ capital: 'Longyearbyen'
1107
+ },
1108
+ {
1109
+ id: '208',
1110
+ country: 'Swaziland',
1111
+ capital: 'Mbabane'
1112
+ },
1113
+ {
1114
+ id: '209',
1115
+ country: 'Sweden',
1116
+ capital: 'Stockholm'
1117
+ },
1118
+ {
1119
+ id: '210',
1120
+ country: 'Switzerland',
1121
+ capital: 'Bern'
1122
+ },
1123
+ {
1124
+ id: '211',
1125
+ country: 'Syria',
1126
+ capital: 'Damascus'
1127
+ },
1128
+ {
1129
+ id: '212',
1130
+ country: 'Tajikistan',
1131
+ capital: 'Dushanbe'
1132
+ },
1133
+ {
1134
+ id: '213',
1135
+ country: 'Tanzania',
1136
+ capital: 'Dodoma'
1137
+ },
1138
+ {
1139
+ id: '214',
1140
+ country: 'Thailand',
1141
+ capital: 'Bangkok'
1142
+ },
1143
+ {
1144
+ id: '215',
1145
+ country: 'The Democratic Republic of Congo',
1146
+ capital: 'Kinshasa'
1147
+ },
1148
+ {
1149
+ id: '216',
1150
+ country: 'Togo',
1151
+ capital: 'Lomé'
1152
+ },
1153
+ {
1154
+ id: '217',
1155
+ country: 'Tokelau',
1156
+ capital: 'Fakaofo'
1157
+ },
1158
+ {
1159
+ id: '218',
1160
+ country: 'Tonga',
1161
+ capital: "Nuku'alofa"
1162
+ },
1163
+ {
1164
+ id: '219',
1165
+ country: 'Trinidad and Tobago',
1166
+ capital: 'Port-of-Spain'
1167
+ },
1168
+ {
1169
+ id: '220',
1170
+ country: 'Tunisia',
1171
+ capital: 'Tunis'
1172
+ },
1173
+ {
1174
+ id: '221',
1175
+ country: 'Turkey',
1176
+ capital: 'Ankara'
1177
+ },
1178
+ {
1179
+ id: '222',
1180
+ country: 'Turkmenistan',
1181
+ capital: 'Ashgabat'
1182
+ },
1183
+ {
1184
+ id: '223',
1185
+ country: 'Turks and Caicos Islands',
1186
+ capital: 'Cockburn Town'
1187
+ },
1188
+ {
1189
+ id: '224',
1190
+ country: 'Tuvalu',
1191
+ capital: 'Funafuti'
1192
+ },
1193
+ {
1194
+ id: '225',
1195
+ country: 'Uganda',
1196
+ capital: 'Kampala'
1197
+ },
1198
+ {
1199
+ id: '226',
1200
+ country: 'Ukraine',
1201
+ capital: 'Kyiv'
1202
+ },
1203
+ {
1204
+ id: '227',
1205
+ country: 'United Arab Emirates',
1206
+ capital: 'Abu Dhabi'
1207
+ },
1208
+ {
1209
+ id: '228',
1210
+ country: 'United Kingdom',
1211
+ capital: 'London'
1212
+ },
1213
+ {
1214
+ id: '229',
1215
+ country: 'United States',
1216
+ capital: 'Washington'
1217
+ },
1218
+ {
1219
+ id: '230',
1220
+ country: 'United States Minor Outlying Islands'
1221
+ },
1222
+ {
1223
+ id: '231',
1224
+ country: 'Uruguay',
1225
+ capital: 'Montevideo'
1226
+ },
1227
+ {
1228
+ id: '232',
1229
+ country: 'Uzbekistan',
1230
+ capital: 'Toskent'
1231
+ },
1232
+ {
1233
+ id: '233',
1234
+ country: 'Vanuatu',
1235
+ capital: 'Port-Vila'
1236
+ },
1237
+ {
1238
+ id: '234',
1239
+ country: 'Venezuela',
1240
+ capital: 'Caracas'
1241
+ },
1242
+ {
1243
+ id: '235',
1244
+ country: 'Vietnam',
1245
+ capital: 'Hanoi'
1246
+ },
1247
+ {
1248
+ id: '236',
1249
+ country: 'Virgin Islands, British',
1250
+ capital: 'Road Town'
1251
+ },
1252
+ {
1253
+ id: '237',
1254
+ country: 'Virgin Islands, U.S.',
1255
+ capital: 'Charlotte Amalie'
1256
+ },
1257
+ {
1258
+ id: '238',
1259
+ country: 'Wales',
1260
+ capital: 'Cardiff'
1261
+ },
1262
+ {
1263
+ id: '239',
1264
+ country: 'Wallis and Futuna',
1265
+ capital: 'Mata-Utu'
1266
+ },
1267
+ {
1268
+ id: '240',
1269
+ country: 'Western Sahara',
1270
+ capital: 'El-Aai'
1271
+ },
1272
+ {
1273
+ id: '241',
1274
+ country: 'Yemen',
1275
+ capital: 'Sanaa'
1276
+ },
1277
+ {
1278
+ id: '242',
1279
+ country: 'Zambia',
1280
+ capital: 'Lusaka'
1281
+ },
1282
+ {
1283
+ id: '243',
1284
+ country: 'Zimbabwe',
1285
+ capital: 'Harare'
1286
+ }
1287
+ ];
1288
+ //# sourceMappingURL=cat-select-remote-test.js.map