@skyux/lookup 5.1.1 → 5.2.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 (51) hide show
  1. package/bundles/skyux-lookup-testing.umd.js +8 -8
  2. package/bundles/skyux-lookup.umd.js +480 -123
  3. package/documentation.json +1102 -632
  4. package/esm2015/modules/autocomplete/autocomplete-adapter.service.js +3 -3
  5. package/esm2015/modules/autocomplete/autocomplete-input.directive.js +3 -3
  6. package/esm2015/modules/autocomplete/autocomplete-search-async-disabled.pipe.js +19 -0
  7. package/esm2015/modules/autocomplete/autocomplete.component.js +77 -30
  8. package/esm2015/modules/autocomplete/autocomplete.module.js +22 -9
  9. package/esm2015/modules/autocomplete/types/autocomplete-search-async-args.js +2 -0
  10. package/esm2015/modules/autocomplete/types/autocomplete-search-async-function.js +2 -0
  11. package/esm2015/modules/autocomplete/types/autocomplete-search-async-result-display-type.js +2 -0
  12. package/esm2015/modules/autocomplete/types/autocomplete-search-async-result.js +2 -0
  13. package/esm2015/modules/country-field/country-field.component.js +6 -5
  14. package/esm2015/modules/country-field/country-field.module.js +4 -4
  15. package/esm2015/modules/lookup/lookup-adapter.service.js +3 -3
  16. package/esm2015/modules/lookup/lookup-autocomplete-adapter.js +12 -7
  17. package/esm2015/modules/lookup/lookup-item-selected.pipe.js +16 -0
  18. package/esm2015/modules/lookup/lookup-show-more-async-modal.component.js +184 -0
  19. package/esm2015/modules/lookup/lookup-show-more-modal.component.js +8 -4
  20. package/esm2015/modules/lookup/lookup.component.js +67 -36
  21. package/esm2015/modules/lookup/lookup.module.js +25 -9
  22. package/esm2015/modules/lookup/types/lookup-show-more-native-picker-async-context.js +7 -0
  23. package/esm2015/modules/lookup/types/lookup-show-more-native-picker-config.js +1 -1
  24. package/esm2015/modules/search/search-adapter.service.js +3 -3
  25. package/esm2015/modules/search/search.component.js +8 -8
  26. package/esm2015/modules/search/search.module.js +4 -4
  27. package/esm2015/modules/shared/sky-lookup-resources.module.js +8 -5
  28. package/esm2015/public-api.js +4 -1
  29. package/esm2015/testing/country-field/country-field-testing.module.js +4 -4
  30. package/esm2015/testing/search/search-testing.module.js +4 -4
  31. package/fesm2015/skyux-lookup-testing.js +8 -8
  32. package/fesm2015/skyux-lookup.js +443 -123
  33. package/fesm2015/skyux-lookup.js.map +1 -1
  34. package/modules/autocomplete/autocomplete-search-async-disabled.pipe.d.ts +11 -0
  35. package/modules/autocomplete/autocomplete.component.d.ts +17 -6
  36. package/modules/autocomplete/autocomplete.module.d.ts +8 -7
  37. package/modules/autocomplete/types/autocomplete-search-async-args.d.ts +35 -0
  38. package/modules/autocomplete/types/autocomplete-search-async-function.d.ts +4 -0
  39. package/modules/autocomplete/types/autocomplete-search-async-result-display-type.d.ts +1 -0
  40. package/modules/autocomplete/types/autocomplete-search-async-result.d.ts +25 -0
  41. package/modules/country-field/country-field.component.d.ts +3 -2
  42. package/modules/lookup/lookup-autocomplete-adapter.d.ts +6 -4
  43. package/modules/lookup/lookup-item-selected.pipe.d.ts +7 -0
  44. package/modules/lookup/lookup-show-more-async-modal.component.d.ts +49 -0
  45. package/modules/lookup/lookup.component.d.ts +3 -0
  46. package/modules/lookup/lookup.module.d.ts +17 -15
  47. package/modules/lookup/types/lookup-show-more-native-picker-async-context.d.ts +17 -0
  48. package/modules/lookup/types/lookup-show-more-native-picker-config.d.ts +1 -1
  49. package/modules/search/search.component.d.ts +5 -5
  50. package/package.json +11 -11
  51. package/public-api.d.ts +3 -0
@@ -10,6 +10,8 @@
10
10
  "SkyAutocompleteComponent": "class-skyautocompletecomponent",
11
11
  "SkyCountryFieldComponent": "class-skycountryfieldcomponent",
12
12
  "SkyLookupComponent": "class-skylookupcomponent",
13
+ "SkyAutocompleteSearchAsyncArgs": "interface-skyautocompletesearchasyncargs",
14
+ "SkyAutocompleteSearchAsyncResult": "interface-skyautocompletesearchasyncresult",
13
15
  "SkyAutocompleteSelectionChange": "interface-skyautocompleteselectionchange",
14
16
  "SkyCountryFieldCountry": "interface-skycountryfieldcountry",
15
17
  "SkyLookupAddCallbackArgs": "interface-skylookupaddcallbackargs",
@@ -17,6 +19,7 @@
17
19
  "SkyLookupShowMoreConfig": "interface-skylookupshowmoreconfig",
18
20
  "SkyLookupShowMoreCustomPicker": "interface-skylookupshowmorecustompicker",
19
21
  "SkyLookupShowMoreNativePickerConfig": "interface-skylookupshowmorenativepickerconfig",
22
+ "AutocompleteSearchAsyncResultDisplayType": "type-alias-autocompletesearchasyncresultdisplaytype",
20
23
  "SkyAutocompleteSearchFunction": "type-alias-skyautocompletesearchfunction",
21
24
  "SkyAutocompleteSearchFunctionFilter": "type-alias-skyautocompletesearchfunctionfilter",
22
25
  "SkyAutocompleteSearchFunctionResponse": "type-alias-skyautocompletesearchfunctionresponse",
@@ -31,7 +34,7 @@
31
34
  "originalName": "",
32
35
  "children": [
33
36
  {
34
- "id": 537,
37
+ "id": 561,
35
38
  "name": "SkyAutocompleteModule",
36
39
  "kind": 128,
37
40
  "kindString": "Class",
@@ -44,27 +47,27 @@
44
47
  "name": "NgModule"
45
48
  },
46
49
  "arguments": {
47
- "obj": "{\n declarations: [SkyAutocompleteComponent, SkyAutocompleteInputDirective],\n imports: [\n CommonModule,\n FormsModule,\n SkyAffixModule,\n SkyTextHighlightModule,\n SkyIconModule,\n SkyIdModule,\n SkyLookupResourcesModule,\n SkyOverlayModule,\n SkyThemeModule,\n ],\n exports: [SkyAutocompleteComponent, SkyAutocompleteInputDirective],\n}"
50
+ "obj": "{\n declarations: [\n SkyAutocompleteComponent,\n SkyAutocompleteInputDirective,\n SkyAutcompleteSearchAsyncDisabledPipe,\n ],\n imports: [\n CommonModule,\n FormsModule,\n SkyAffixModule,\n SkyTextHighlightModule,\n SkyIconModule,\n SkyIdModule,\n SkyLookupResourcesModule,\n SkyNumericModule,\n SkyOverlayModule,\n SkyThemeModule,\n SkyWaitModule,\n ],\n exports: [SkyAutocompleteComponent, SkyAutocompleteInputDirective],\n}"
48
51
  }
49
52
  }
50
53
  ],
51
54
  "children": [
52
55
  {
53
- "id": 538,
56
+ "id": 562,
54
57
  "name": "constructor",
55
58
  "kind": 512,
56
59
  "kindString": "Constructor",
57
60
  "flags": {},
58
61
  "signatures": [
59
62
  {
60
- "id": 539,
63
+ "id": 563,
61
64
  "name": "new SkyAutocompleteModule",
62
65
  "kind": 16384,
63
66
  "kindString": "Constructor signature",
64
67
  "flags": {},
65
68
  "type": {
66
69
  "type": "reference",
67
- "id": 537,
70
+ "id": 561,
68
71
  "name": "SkyAutocompleteModule"
69
72
  }
70
73
  }
@@ -76,20 +79,20 @@
76
79
  "title": "Constructors",
77
80
  "kind": 512,
78
81
  "children": [
79
- 538
82
+ 562
80
83
  ]
81
84
  }
82
85
  ],
83
86
  "sources": [
84
87
  {
85
88
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.module.ts",
86
- "line": 34,
89
+ "line": 50,
87
90
  "character": 13
88
91
  }
89
92
  ]
90
93
  },
91
94
  {
92
- "id": 540,
95
+ "id": 564,
93
96
  "name": "SkyCountryFieldModule",
94
97
  "kind": 128,
95
98
  "kindString": "Class",
@@ -108,21 +111,21 @@
108
111
  ],
109
112
  "children": [
110
113
  {
111
- "id": 541,
114
+ "id": 565,
112
115
  "name": "constructor",
113
116
  "kind": 512,
114
117
  "kindString": "Constructor",
115
118
  "flags": {},
116
119
  "signatures": [
117
120
  {
118
- "id": 542,
121
+ "id": 566,
119
122
  "name": "new SkyCountryFieldModule",
120
123
  "kind": 16384,
121
124
  "kindString": "Constructor signature",
122
125
  "flags": {},
123
126
  "type": {
124
127
  "type": "reference",
125
- "id": 540,
128
+ "id": 564,
126
129
  "name": "SkyCountryFieldModule"
127
130
  }
128
131
  }
@@ -134,7 +137,7 @@
134
137
  "title": "Constructors",
135
138
  "kind": 512,
136
139
  "children": [
137
- 541
140
+ 565
138
141
  ]
139
142
  }
140
143
  ],
@@ -147,7 +150,7 @@
147
150
  ]
148
151
  },
149
152
  {
150
- "id": 549,
153
+ "id": 573,
151
154
  "name": "SkyLookupModule",
152
155
  "kind": 128,
153
156
  "kindString": "Class",
@@ -160,27 +163,27 @@
160
163
  "name": "NgModule"
161
164
  },
162
165
  "arguments": {
163
- "obj": "{\n declarations: [SkyLookupComponent, SkyLookupShowMoreModalComponent],\n imports: [\n CommonModule,\n FormsModule,\n SkyAutocompleteModule,\n SkyCheckboxModule,\n SkyIconModule,\n SkyInfiniteScrollModule,\n SkyI18nModule,\n SkyLookupResourcesModule,\n SkyModalModule,\n SkyRepeaterModule,\n SkySearchModule,\n SkyThemeModule,\n SkyTokensModule,\n SkyToolbarModule,\n SkyViewkeeperModule,\n ],\n entryComponents: [SkyLookupShowMoreModalComponent],\n exports: [SkyLookupComponent],\n}"
166
+ "obj": "{\n declarations: [\n SkyLookupComponent,\n SkyLookupItemSelectedPipe,\n SkyLookupShowMoreAsyncModalComponent,\n SkyLookupShowMoreModalComponent,\n ],\n imports: [\n CommonModule,\n FormsModule,\n SkyAutocompleteModule,\n SkyCheckboxModule,\n SkyIconModule,\n SkyInfiniteScrollModule,\n SkyI18nModule,\n SkyLookupResourcesModule,\n SkyModalModule,\n SkyRepeaterModule,\n SkySearchModule,\n SkyThemeModule,\n SkyTokensModule,\n SkyToolbarModule,\n SkyViewkeeperModule,\n SkyWaitModule,\n ],\n entryComponents: [\n SkyLookupShowMoreAsyncModalComponent,\n SkyLookupShowMoreModalComponent,\n ],\n exports: [SkyLookupComponent],\n}"
164
167
  }
165
168
  }
166
169
  ],
167
170
  "children": [
168
171
  {
169
- "id": 550,
172
+ "id": 574,
170
173
  "name": "constructor",
171
174
  "kind": 512,
172
175
  "kindString": "Constructor",
173
176
  "flags": {},
174
177
  "signatures": [
175
178
  {
176
- "id": 551,
179
+ "id": 575,
177
180
  "name": "new SkyLookupModule",
178
181
  "kind": 16384,
179
182
  "kindString": "Constructor signature",
180
183
  "flags": {},
181
184
  "type": {
182
185
  "type": "reference",
183
- "id": 549,
186
+ "id": 573,
184
187
  "name": "SkyLookupModule"
185
188
  }
186
189
  }
@@ -192,20 +195,20 @@
192
195
  "title": "Constructors",
193
196
  "kind": 512,
194
197
  "children": [
195
- 550
198
+ 574
196
199
  ]
197
200
  }
198
201
  ],
199
202
  "sources": [
200
203
  {
201
204
  "fileName": "projects/lookup/src/modules/lookup/lookup.module.ts",
202
- "line": 55,
205
+ "line": 56,
203
206
  "character": 13
204
207
  }
205
208
  ]
206
209
  },
207
210
  {
208
- "id": 570,
211
+ "id": 594,
209
212
  "name": "SkyLookupShowMoreCustomPickerContext",
210
213
  "kind": 128,
211
214
  "kindString": "Class",
@@ -215,28 +218,28 @@
215
218
  },
216
219
  "children": [
217
220
  {
218
- "id": 571,
221
+ "id": 595,
219
222
  "name": "constructor",
220
223
  "kind": 512,
221
224
  "kindString": "Constructor",
222
225
  "flags": {},
223
226
  "signatures": [
224
227
  {
225
- "id": 572,
228
+ "id": 596,
226
229
  "name": "new SkyLookupShowMoreCustomPickerContext",
227
230
  "kind": 16384,
228
231
  "kindString": "Constructor signature",
229
232
  "flags": {},
230
233
  "type": {
231
234
  "type": "reference",
232
- "id": 570,
235
+ "id": 594,
233
236
  "name": "SkyLookupShowMoreCustomPickerContext"
234
237
  }
235
238
  }
236
239
  ]
237
240
  },
238
241
  {
239
- "id": 574,
242
+ "id": 598,
240
243
  "name": "initialSearch",
241
244
  "kind": 1024,
242
245
  "kindString": "Property",
@@ -259,7 +262,7 @@
259
262
  }
260
263
  },
261
264
  {
262
- "id": 575,
265
+ "id": 599,
263
266
  "name": "initialValue",
264
267
  "kind": 1024,
265
268
  "kindString": "Property",
@@ -282,7 +285,7 @@
282
285
  }
283
286
  },
284
287
  {
285
- "id": 573,
288
+ "id": 597,
286
289
  "name": "items",
287
290
  "kind": 1024,
288
291
  "kindString": "Property",
@@ -313,16 +316,16 @@
313
316
  "title": "Constructors",
314
317
  "kind": 512,
315
318
  "children": [
316
- 571
319
+ 595
317
320
  ]
318
321
  },
319
322
  {
320
323
  "title": "Properties",
321
324
  "kind": 1024,
322
325
  "children": [
323
- 574,
324
- 575,
325
- 573
326
+ 598,
327
+ 599,
328
+ 597
326
329
  ]
327
330
  }
328
331
  ],
@@ -335,7 +338,7 @@
335
338
  ]
336
339
  },
337
340
  {
338
- "id": 582,
341
+ "id": 606,
339
342
  "name": "SkySearchComponent",
340
343
  "kind": 128,
341
344
  "kindString": "Class",
@@ -354,7 +357,7 @@
354
357
  ],
355
358
  "children": [
356
359
  {
357
- "id": 583,
360
+ "id": 607,
358
361
  "name": "constructor",
359
362
  "kind": 512,
360
363
  "kindString": "Constructor",
@@ -368,14 +371,14 @@
368
371
  ],
369
372
  "signatures": [
370
373
  {
371
- "id": 584,
374
+ "id": 608,
372
375
  "name": "new SkySearchComponent",
373
376
  "kind": 16384,
374
377
  "kindString": "Constructor signature",
375
378
  "flags": {},
376
379
  "parameters": [
377
380
  {
378
- "id": 585,
381
+ "id": 609,
379
382
  "name": "mediaQueryService",
380
383
  "kind": 32768,
381
384
  "kindString": "Parameter",
@@ -386,7 +389,7 @@
386
389
  }
387
390
  },
388
391
  {
389
- "id": 586,
392
+ "id": 610,
390
393
  "name": "elRef",
391
394
  "kind": 32768,
392
395
  "kindString": "Parameter",
@@ -403,7 +406,7 @@
403
406
  }
404
407
  },
405
408
  {
406
- "id": 587,
409
+ "id": 611,
407
410
  "name": "searchAdapter",
408
411
  "kind": 32768,
409
412
  "kindString": "Parameter",
@@ -414,7 +417,7 @@
414
417
  }
415
418
  },
416
419
  {
417
- "id": 588,
420
+ "id": 612,
418
421
  "name": "changeRef",
419
422
  "kind": 32768,
420
423
  "kindString": "Parameter",
@@ -427,14 +430,14 @@
427
430
  ],
428
431
  "type": {
429
432
  "type": "reference",
430
- "id": 582,
433
+ "id": 606,
431
434
  "name": "SkySearchComponent"
432
435
  }
433
436
  }
434
437
  ]
435
438
  },
436
439
  {
437
- "id": 600,
440
+ "id": 624,
438
441
  "name": "breakpointSubscription",
439
442
  "kind": 1024,
440
443
  "kindString": "Property",
@@ -454,7 +457,7 @@
454
457
  }
455
458
  },
456
459
  {
457
- "id": 604,
460
+ "id": 628,
458
461
  "name": "clearButtonShown",
459
462
  "kind": 1024,
460
463
  "kindString": "Property",
@@ -475,7 +478,7 @@
475
478
  "defaultValue": "false"
476
479
  },
477
480
  {
478
- "id": 594,
481
+ "id": 618,
479
482
  "name": "debounceTime",
480
483
  "kind": 1024,
481
484
  "kindString": "Property",
@@ -515,7 +518,7 @@
515
518
  "defaultValue": "0"
516
519
  },
517
520
  {
518
- "id": 595,
521
+ "id": 619,
519
522
  "name": "disabled",
520
523
  "kind": 1024,
521
524
  "kindString": "Property",
@@ -555,7 +558,7 @@
555
558
  "defaultValue": "false"
556
559
  },
557
560
  {
558
- "id": 603,
561
+ "id": 627,
559
562
  "name": "dismissButtonShown",
560
563
  "kind": 1024,
561
564
  "kindString": "Property",
@@ -576,7 +579,7 @@
576
579
  "defaultValue": "false"
577
580
  },
578
581
  {
579
- "id": 593,
582
+ "id": 617,
580
583
  "name": "expandMode",
581
584
  "kind": 1024,
582
585
  "kindString": "Property",
@@ -584,11 +587,11 @@
584
587
  "isPublic": true
585
588
  },
586
589
  "comment": {
587
- "shortText": "Specifies the expand mode for the search input. The valid options\ninclude `responsive` to collapse the search input into a button on\nmobile devices, `none` to *not* collapse the search input on mobile\ndevices, and `fit` to extend the search input to fit the width of its container.",
590
+ "shortText": "Specifies the expand mode for the search input. The valid options\ninclude `\"responsive\"` to collapse the search input into a button on\nmobile devices, `\"none\"` to *not* collapse the search input on mobile\ndevices, and `\"fit\"` to extend the search input to fit the width of its container.",
588
591
  "tags": [
589
592
  {
590
593
  "tag": "default",
591
- "text": "responsive\n"
594
+ "text": "\"responsive\"\n"
592
595
  }
593
596
  ]
594
597
  },
@@ -616,7 +619,7 @@
616
619
  "defaultValue": "..."
617
620
  },
618
621
  {
619
- "id": 599,
622
+ "id": 623,
620
623
  "name": "inputAnimate",
621
624
  "kind": 1024,
622
625
  "kindString": "Property",
@@ -637,7 +640,7 @@
637
640
  "defaultValue": "..."
638
641
  },
639
642
  {
640
- "id": 597,
643
+ "id": 621,
641
644
  "name": "isCollapsible",
642
645
  "kind": 1024,
643
646
  "kindString": "Property",
@@ -658,7 +661,7 @@
658
661
  "defaultValue": "true"
659
662
  },
660
663
  {
661
- "id": 596,
664
+ "id": 620,
662
665
  "name": "isFullWidth",
663
666
  "kind": 1024,
664
667
  "kindString": "Property",
@@ -679,7 +682,7 @@
679
682
  "defaultValue": "false"
680
683
  },
681
684
  {
682
- "id": 602,
685
+ "id": 626,
683
686
  "name": "mobileSearchShown",
684
687
  "kind": 1024,
685
688
  "kindString": "Property",
@@ -700,7 +703,7 @@
700
703
  "defaultValue": "false"
701
704
  },
702
705
  {
703
- "id": 598,
706
+ "id": 622,
704
707
  "name": "placeholderText",
705
708
  "kind": 1024,
706
709
  "kindString": "Property",
@@ -712,7 +715,7 @@
712
715
  "tags": [
713
716
  {
714
717
  "tag": "default",
715
- "text": "Find in this list\n"
718
+ "text": "\"Find in this list\"\n"
716
719
  }
717
720
  ]
718
721
  },
@@ -739,7 +742,7 @@
739
742
  }
740
743
  },
741
744
  {
742
- "id": 589,
745
+ "id": 613,
743
746
  "name": "searchApply",
744
747
  "kind": 1024,
745
748
  "kindString": "Property",
@@ -779,7 +782,7 @@
779
782
  "defaultValue": "..."
780
783
  },
781
784
  {
782
- "id": 601,
785
+ "id": 625,
783
786
  "name": "searchButtonShown",
784
787
  "kind": 1024,
785
788
  "kindString": "Property",
@@ -800,7 +803,7 @@
800
803
  "defaultValue": "false"
801
804
  },
802
805
  {
803
- "id": 590,
806
+ "id": 614,
804
807
  "name": "searchChange",
805
808
  "kind": 1024,
806
809
  "kindString": "Property",
@@ -840,7 +843,7 @@
840
843
  "defaultValue": "..."
841
844
  },
842
845
  {
843
- "id": 591,
846
+ "id": 615,
844
847
  "name": "searchClear",
845
848
  "kind": 1024,
846
849
  "kindString": "Property",
@@ -880,7 +883,7 @@
880
883
  "defaultValue": "..."
881
884
  },
882
885
  {
883
- "id": 592,
886
+ "id": 616,
884
887
  "name": "searchText",
885
888
  "kind": 1024,
886
889
  "kindString": "Property",
@@ -913,7 +916,7 @@
913
916
  }
914
917
  },
915
918
  {
916
- "id": 617,
919
+ "id": 641,
917
920
  "name": "applySearchText",
918
921
  "kind": 2048,
919
922
  "kindString": "Method",
@@ -929,14 +932,14 @@
929
932
  ],
930
933
  "signatures": [
931
934
  {
932
- "id": 618,
935
+ "id": 642,
933
936
  "name": "applySearchText",
934
937
  "kind": 4096,
935
938
  "kindString": "Call signature",
936
939
  "flags": {},
937
940
  "parameters": [
938
941
  {
939
- "id": 619,
942
+ "id": 643,
940
943
  "name": "searchText",
941
944
  "kind": 32768,
942
945
  "kindString": "Parameter",
@@ -955,7 +958,7 @@
955
958
  ]
956
959
  },
957
960
  {
958
- "id": 611,
961
+ "id": 635,
959
962
  "name": "clearSearchText",
960
963
  "kind": 2048,
961
964
  "kindString": "Method",
@@ -971,7 +974,7 @@
971
974
  ],
972
975
  "signatures": [
973
976
  {
974
- "id": 612,
977
+ "id": 636,
975
978
  "name": "clearSearchText",
976
979
  "kind": 4096,
977
980
  "kindString": "Call signature",
@@ -984,7 +987,7 @@
984
987
  ]
985
988
  },
986
989
  {
987
- "id": 613,
990
+ "id": 637,
988
991
  "name": "enterPress",
989
992
  "kind": 2048,
990
993
  "kindString": "Method",
@@ -1000,14 +1003,14 @@
1000
1003
  ],
1001
1004
  "signatures": [
1002
1005
  {
1003
- "id": 614,
1006
+ "id": 638,
1004
1007
  "name": "enterPress",
1005
1008
  "kind": 4096,
1006
1009
  "kindString": "Call signature",
1007
1010
  "flags": {},
1008
1011
  "parameters": [
1009
1012
  {
1010
- "id": 615,
1013
+ "id": 639,
1011
1014
  "name": "event",
1012
1015
  "kind": 32768,
1013
1016
  "kindString": "Parameter",
@@ -1018,7 +1021,7 @@
1018
1021
  }
1019
1022
  },
1020
1023
  {
1021
- "id": 616,
1024
+ "id": 640,
1022
1025
  "name": "searchText",
1023
1026
  "kind": 32768,
1024
1027
  "kindString": "Parameter",
@@ -1037,7 +1040,7 @@
1037
1040
  ]
1038
1041
  },
1039
1042
  {
1040
- "id": 629,
1043
+ "id": 653,
1041
1044
  "name": "inputAnimationEnd",
1042
1045
  "kind": 2048,
1043
1046
  "kindString": "Method",
@@ -1053,14 +1056,14 @@
1053
1056
  ],
1054
1057
  "signatures": [
1055
1058
  {
1056
- "id": 630,
1059
+ "id": 654,
1057
1060
  "name": "inputAnimationEnd",
1058
1061
  "kind": 4096,
1059
1062
  "kindString": "Call signature",
1060
1063
  "flags": {},
1061
1064
  "parameters": [
1062
1065
  {
1063
- "id": 631,
1066
+ "id": 655,
1064
1067
  "name": "event",
1065
1068
  "kind": 32768,
1066
1069
  "kindString": "Parameter",
@@ -1079,7 +1082,7 @@
1079
1082
  ]
1080
1083
  },
1081
1084
  {
1082
- "id": 626,
1085
+ "id": 650,
1083
1086
  "name": "inputAnimationStart",
1084
1087
  "kind": 2048,
1085
1088
  "kindString": "Method",
@@ -1095,14 +1098,14 @@
1095
1098
  ],
1096
1099
  "signatures": [
1097
1100
  {
1098
- "id": 627,
1101
+ "id": 651,
1099
1102
  "name": "inputAnimationStart",
1100
1103
  "kind": 4096,
1101
1104
  "kindString": "Call signature",
1102
1105
  "flags": {},
1103
1106
  "parameters": [
1104
1107
  {
1105
- "id": 628,
1108
+ "id": 652,
1106
1109
  "name": "event",
1107
1110
  "kind": 32768,
1108
1111
  "kindString": "Parameter",
@@ -1121,7 +1124,7 @@
1121
1124
  ]
1122
1125
  },
1123
1126
  {
1124
- "id": 608,
1127
+ "id": 632,
1125
1128
  "name": "ngOnChanges",
1126
1129
  "kind": 2048,
1127
1130
  "kindString": "Method",
@@ -1137,14 +1140,14 @@
1137
1140
  ],
1138
1141
  "signatures": [
1139
1142
  {
1140
- "id": 609,
1143
+ "id": 633,
1141
1144
  "name": "ngOnChanges",
1142
1145
  "kind": 4096,
1143
1146
  "kindString": "Call signature",
1144
1147
  "flags": {},
1145
1148
  "parameters": [
1146
1149
  {
1147
- "id": 610,
1150
+ "id": 634,
1148
1151
  "name": "changes",
1149
1152
  "kind": 32768,
1150
1153
  "kindString": "Parameter",
@@ -1171,7 +1174,7 @@
1171
1174
  }
1172
1175
  },
1173
1176
  {
1174
- "id": 632,
1177
+ "id": 656,
1175
1178
  "name": "ngOnDestroy",
1176
1179
  "kind": 2048,
1177
1180
  "kindString": "Method",
@@ -1187,7 +1190,7 @@
1187
1190
  ],
1188
1191
  "signatures": [
1189
1192
  {
1190
- "id": 633,
1193
+ "id": 657,
1191
1194
  "name": "ngOnDestroy",
1192
1195
  "kind": 4096,
1193
1196
  "kindString": "Call signature",
@@ -1208,7 +1211,7 @@
1208
1211
  }
1209
1212
  },
1210
1213
  {
1211
- "id": 606,
1214
+ "id": 630,
1212
1215
  "name": "ngOnInit",
1213
1216
  "kind": 2048,
1214
1217
  "kindString": "Method",
@@ -1224,7 +1227,7 @@
1224
1227
  ],
1225
1228
  "signatures": [
1226
1229
  {
1227
- "id": 607,
1230
+ "id": 631,
1228
1231
  "name": "ngOnInit",
1229
1232
  "kind": 4096,
1230
1233
  "kindString": "Call signature",
@@ -1245,7 +1248,7 @@
1245
1248
  }
1246
1249
  },
1247
1250
  {
1248
- "id": 620,
1251
+ "id": 644,
1249
1252
  "name": "searchTextChanged",
1250
1253
  "kind": 2048,
1251
1254
  "kindString": "Method",
@@ -1261,14 +1264,14 @@
1261
1264
  ],
1262
1265
  "signatures": [
1263
1266
  {
1264
- "id": 621,
1267
+ "id": 645,
1265
1268
  "name": "searchTextChanged",
1266
1269
  "kind": 4096,
1267
1270
  "kindString": "Call signature",
1268
1271
  "flags": {},
1269
1272
  "parameters": [
1270
1273
  {
1271
- "id": 622,
1274
+ "id": 646,
1272
1275
  "name": "searchText",
1273
1276
  "kind": 32768,
1274
1277
  "kindString": "Parameter",
@@ -1287,7 +1290,7 @@
1287
1290
  ]
1288
1291
  },
1289
1292
  {
1290
- "id": 623,
1293
+ "id": 647,
1291
1294
  "name": "toggleSearchInput",
1292
1295
  "kind": 2048,
1293
1296
  "kindString": "Method",
@@ -1303,14 +1306,14 @@
1303
1306
  ],
1304
1307
  "signatures": [
1305
1308
  {
1306
- "id": 624,
1309
+ "id": 648,
1307
1310
  "name": "toggleSearchInput",
1308
1311
  "kind": 4096,
1309
1312
  "kindString": "Call signature",
1310
1313
  "flags": {},
1311
1314
  "parameters": [
1312
1315
  {
1313
- "id": 625,
1316
+ "id": 649,
1314
1317
  "name": "showInput",
1315
1318
  "kind": 32768,
1316
1319
  "kindString": "Parameter",
@@ -1334,45 +1337,45 @@
1334
1337
  "title": "Constructors",
1335
1338
  "kind": 512,
1336
1339
  "children": [
1337
- 583
1340
+ 607
1338
1341
  ]
1339
1342
  },
1340
1343
  {
1341
1344
  "title": "Properties",
1342
1345
  "kind": 1024,
1343
1346
  "children": [
1344
- 600,
1345
- 604,
1346
- 594,
1347
- 595,
1348
- 603,
1349
- 593,
1350
- 599,
1351
- 597,
1352
- 596,
1353
- 602,
1354
- 598,
1355
- 589,
1356
- 601,
1357
- 590,
1358
- 591,
1359
- 592
1347
+ 624,
1348
+ 628,
1349
+ 618,
1350
+ 619,
1351
+ 627,
1352
+ 617,
1353
+ 623,
1354
+ 621,
1355
+ 620,
1356
+ 626,
1357
+ 622,
1358
+ 613,
1359
+ 625,
1360
+ 614,
1361
+ 615,
1362
+ 616
1360
1363
  ]
1361
1364
  },
1362
1365
  {
1363
1366
  "title": "Methods",
1364
1367
  "kind": 2048,
1365
1368
  "children": [
1366
- 617,
1367
- 611,
1368
- 613,
1369
- 629,
1370
- 626,
1371
- 608,
1369
+ 641,
1370
+ 635,
1371
+ 637,
1372
+ 653,
1373
+ 650,
1372
1374
  632,
1373
- 606,
1374
- 620,
1375
- 623
1375
+ 656,
1376
+ 630,
1377
+ 644,
1378
+ 647
1376
1379
  ]
1377
1380
  }
1378
1381
  ],
@@ -1399,7 +1402,7 @@
1399
1402
  ]
1400
1403
  },
1401
1404
  {
1402
- "id": 579,
1405
+ "id": 603,
1403
1406
  "name": "SkySearchModule",
1404
1407
  "kind": 128,
1405
1408
  "kindString": "Class",
@@ -1418,21 +1421,21 @@
1418
1421
  ],
1419
1422
  "children": [
1420
1423
  {
1421
- "id": 580,
1424
+ "id": 604,
1422
1425
  "name": "constructor",
1423
1426
  "kind": 512,
1424
1427
  "kindString": "Constructor",
1425
1428
  "flags": {},
1426
1429
  "signatures": [
1427
1430
  {
1428
- "id": 581,
1431
+ "id": 605,
1429
1432
  "name": "new SkySearchModule",
1430
1433
  "kind": 16384,
1431
1434
  "kindString": "Constructor signature",
1432
1435
  "flags": {},
1433
1436
  "type": {
1434
1437
  "type": "reference",
1435
- "id": 579,
1438
+ "id": 603,
1436
1439
  "name": "SkySearchModule"
1437
1440
  }
1438
1441
  }
@@ -1444,7 +1447,7 @@
1444
1447
  "title": "Constructors",
1445
1448
  "kind": 512,
1446
1449
  "children": [
1447
- 580
1450
+ 604
1448
1451
  ]
1449
1452
  }
1450
1453
  ],
@@ -2669,7 +2672,7 @@
2669
2672
  "sources": [
2670
2673
  {
2671
2674
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2672
- "line": 420,
2675
+ "line": 438,
2673
2676
  "character": 2
2674
2677
  }
2675
2678
  ],
@@ -2798,7 +2801,7 @@
2798
2801
  "sources": [
2799
2802
  {
2800
2803
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2801
- "line": 79,
2804
+ "line": 80,
2802
2805
  "character": 9
2803
2806
  }
2804
2807
  ],
@@ -2818,7 +2821,28 @@
2818
2821
  "sources": [
2819
2822
  {
2820
2823
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2821
- "line": 294,
2824
+ "line": 302,
2825
+ "character": 9
2826
+ }
2827
+ ],
2828
+ "type": {
2829
+ "type": "intrinsic",
2830
+ "name": "boolean"
2831
+ },
2832
+ "defaultValue": "false"
2833
+ },
2834
+ {
2835
+ "id": 157,
2836
+ "name": "isSearchingAsync",
2837
+ "kind": 1024,
2838
+ "kindString": "Property",
2839
+ "flags": {
2840
+ "isPublic": true
2841
+ },
2842
+ "sources": [
2843
+ {
2844
+ "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2845
+ "line": 314,
2822
2846
  "character": 9
2823
2847
  }
2824
2848
  ],
@@ -2841,7 +2865,7 @@
2841
2865
  "tags": [
2842
2866
  {
2843
2867
  "tag": "default",
2844
- "text": "No matches found\n"
2868
+ "text": "\"No matches found\"\n"
2845
2869
  }
2846
2870
  ]
2847
2871
  },
@@ -2858,7 +2882,7 @@
2858
2882
  "sources": [
2859
2883
  {
2860
2884
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2861
- "line": 254,
2885
+ "line": 255,
2862
2886
  "character": 9
2863
2887
  }
2864
2888
  ],
@@ -2878,7 +2902,7 @@
2878
2902
  "sources": [
2879
2903
  {
2880
2904
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2881
- "line": 296,
2905
+ "line": 304,
2882
2906
  "character": 9
2883
2907
  }
2884
2908
  ],
@@ -2898,7 +2922,7 @@
2898
2922
  "sources": [
2899
2923
  {
2900
2924
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2901
- "line": 298,
2925
+ "line": 306,
2902
2926
  "character": 9
2903
2927
  }
2904
2928
  ],
@@ -2907,6 +2931,44 @@
2907
2931
  "name": "string"
2908
2932
  }
2909
2933
  },
2934
+ {
2935
+ "id": 146,
2936
+ "name": "searchAsync",
2937
+ "kind": 1024,
2938
+ "kindString": "Property",
2939
+ "flags": {
2940
+ "isPublic": true
2941
+ },
2942
+ "decorators": [
2943
+ {
2944
+ "name": "Output",
2945
+ "type": {
2946
+ "type": "reference",
2947
+ "name": "Output"
2948
+ },
2949
+ "arguments": {}
2950
+ }
2951
+ ],
2952
+ "sources": [
2953
+ {
2954
+ "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2955
+ "line": 288,
2956
+ "character": 9
2957
+ }
2958
+ ],
2959
+ "type": {
2960
+ "type": "reference",
2961
+ "typeArguments": [
2962
+ {
2963
+ "type": "reference",
2964
+ "id": 536,
2965
+ "name": "SkyAutocompleteSearchAsyncArgs"
2966
+ }
2967
+ ],
2968
+ "name": "EventEmitter"
2969
+ },
2970
+ "defaultValue": "..."
2971
+ },
2910
2972
  {
2911
2973
  "id": 134,
2912
2974
  "name": "searchFilters",
@@ -2931,7 +2993,7 @@
2931
2993
  "sources": [
2932
2994
  {
2933
2995
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2934
- "line": 223,
2996
+ "line": 224,
2935
2997
  "character": 9
2936
2998
  }
2937
2999
  ],
@@ -2939,11 +3001,31 @@
2939
3001
  "type": "array",
2940
3002
  "elementType": {
2941
3003
  "type": "reference",
2942
- "id": 529,
3004
+ "id": 553,
2943
3005
  "name": "SkyAutocompleteSearchFunctionFilter"
2944
3006
  }
2945
3007
  }
2946
3008
  },
3009
+ {
3010
+ "id": 158,
3011
+ "name": "searchResultsCount",
3012
+ "kind": 1024,
3013
+ "kindString": "Property",
3014
+ "flags": {
3015
+ "isPublic": true
3016
+ },
3017
+ "sources": [
3018
+ {
3019
+ "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3020
+ "line": 316,
3021
+ "character": 9
3022
+ }
3023
+ ],
3024
+ "type": {
3025
+ "type": "intrinsic",
3026
+ "name": "number"
3027
+ }
3028
+ },
2947
3029
  {
2948
3030
  "id": 154,
2949
3031
  "name": "searchText",
@@ -2955,7 +3037,7 @@
2955
3037
  "sources": [
2956
3038
  {
2957
3039
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2958
- "line": 300,
3040
+ "line": 308,
2959
3041
  "character": 9
2960
3042
  }
2961
3043
  ],
@@ -2985,7 +3067,7 @@
2985
3067
  "sources": [
2986
3068
  {
2987
3069
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
2988
- "line": 87,
3070
+ "line": 88,
2989
3071
  "character": 13
2990
3072
  }
2991
3073
  ],
@@ -3062,7 +3144,7 @@
3062
3144
  "sources": [
3063
3145
  {
3064
3146
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3065
- "line": 101,
3147
+ "line": 102,
3066
3148
  "character": 13
3067
3149
  }
3068
3150
  ],
@@ -3139,7 +3221,7 @@
3139
3221
  "sources": [
3140
3222
  {
3141
3223
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3142
- "line": 115,
3224
+ "line": 116,
3143
3225
  "character": 13
3144
3226
  }
3145
3227
  ],
@@ -3171,7 +3253,7 @@
3171
3253
  "tags": [
3172
3254
  {
3173
3255
  "tag": "default",
3174
- "text": "name\n"
3256
+ "text": "\"name\"\n"
3175
3257
  }
3176
3258
  ]
3177
3259
  },
@@ -3196,7 +3278,7 @@
3196
3278
  ]
3197
3279
  },
3198
3280
  {
3199
- "id": 147,
3281
+ "id": 149,
3200
3282
  "name": "highlightText",
3201
3283
  "kind": 262144,
3202
3284
  "kindString": "Accessor",
@@ -3206,13 +3288,13 @@
3206
3288
  "sources": [
3207
3289
  {
3208
3290
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3209
- "line": 286,
3291
+ "line": 298,
3210
3292
  "character": 13
3211
3293
  }
3212
3294
  ],
3213
3295
  "getSignature": [
3214
3296
  {
3215
- "id": 148,
3297
+ "id": 150,
3216
3298
  "name": "highlightText",
3217
3299
  "kind": 524288,
3218
3300
  "kindString": "Get signature",
@@ -3225,35 +3307,6 @@
3225
3307
  }
3226
3308
  }
3227
3309
  }
3228
- ],
3229
- "setSignature": [
3230
- {
3231
- "id": 149,
3232
- "name": "highlightText",
3233
- "kind": 1048576,
3234
- "kindString": "Set signature",
3235
- "flags": {},
3236
- "parameters": [
3237
- {
3238
- "id": 150,
3239
- "name": "value",
3240
- "kind": 32768,
3241
- "kindString": "Parameter",
3242
- "flags": {},
3243
- "type": {
3244
- "type": "array",
3245
- "elementType": {
3246
- "type": "intrinsic",
3247
- "name": "string"
3248
- }
3249
- }
3250
- }
3251
- ],
3252
- "type": {
3253
- "type": "intrinsic",
3254
- "name": "void"
3255
- }
3256
- }
3257
3310
  ]
3258
3311
  },
3259
3312
  {
@@ -3277,7 +3330,7 @@
3277
3330
  "sources": [
3278
3331
  {
3279
3332
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3280
- "line": 155,
3333
+ "line": 156,
3281
3334
  "character": 13
3282
3335
  }
3283
3336
  ],
@@ -3312,7 +3365,7 @@
3312
3365
  "tags": [
3313
3366
  {
3314
3367
  "tag": "default",
3315
- "text": "['name']\n"
3368
+ "text": "[\"name\"]\n"
3316
3369
  }
3317
3370
  ]
3318
3371
  },
@@ -3360,7 +3413,7 @@
3360
3413
  "sources": [
3361
3414
  {
3362
3415
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3363
- "line": 170,
3416
+ "line": 171,
3364
3417
  "character": 13
3365
3418
  }
3366
3419
  ],
@@ -3376,7 +3429,7 @@
3376
3429
  },
3377
3430
  "type": {
3378
3431
  "type": "reference",
3379
- "id": 524,
3432
+ "id": 548,
3380
3433
  "name": "SkyAutocompleteSearchFunction"
3381
3434
  }
3382
3435
  }
@@ -3400,7 +3453,7 @@
3400
3453
  "flags": {},
3401
3454
  "type": {
3402
3455
  "type": "reference",
3403
- "id": 524,
3456
+ "id": 548,
3404
3457
  "name": "SkyAutocompleteSearchFunction"
3405
3458
  }
3406
3459
  }
@@ -3433,7 +3486,7 @@
3433
3486
  "sources": [
3434
3487
  {
3435
3488
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3436
- "line": 190,
3489
+ "line": 191,
3437
3490
  "character": 13
3438
3491
  }
3439
3492
  ],
@@ -3496,7 +3549,7 @@
3496
3549
  ]
3497
3550
  },
3498
3551
  {
3499
- "id": 145,
3552
+ "id": 147,
3500
3553
  "name": "searchResults",
3501
3554
  "kind": 262144,
3502
3555
  "kindString": "Accessor",
@@ -3506,13 +3559,13 @@
3506
3559
  "sources": [
3507
3560
  {
3508
3561
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3509
- "line": 282,
3562
+ "line": 294,
3510
3563
  "character": 13
3511
3564
  }
3512
3565
  ],
3513
3566
  "getSignature": [
3514
3567
  {
3515
- "id": 146,
3568
+ "id": 148,
3516
3569
  "name": "searchResults",
3517
3570
  "kind": 524288,
3518
3571
  "kindString": "Get signature",
@@ -3548,7 +3601,7 @@
3548
3601
  "sources": [
3549
3602
  {
3550
3603
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3551
- "line": 230,
3604
+ "line": 231,
3552
3605
  "character": 13
3553
3606
  }
3554
3607
  ],
@@ -3619,7 +3672,7 @@
3619
3672
  "sources": [
3620
3673
  {
3621
3674
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3622
- "line": 205,
3675
+ "line": 206,
3623
3676
  "character": 13
3624
3677
  }
3625
3678
  ],
@@ -3676,7 +3729,7 @@
3676
3729
  ]
3677
3730
  },
3678
3731
  {
3679
- "id": 143,
3732
+ "id": 144,
3680
3733
  "name": "selectionChange",
3681
3734
  "kind": 262144,
3682
3735
  "kindString": "Accessor",
@@ -3696,13 +3749,13 @@
3696
3749
  "sources": [
3697
3750
  {
3698
3751
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3699
- "line": 274,
3752
+ "line": 283,
3700
3753
  "character": 13
3701
3754
  }
3702
3755
  ],
3703
3756
  "getSignature": [
3704
3757
  {
3705
- "id": 144,
3758
+ "id": 145,
3706
3759
  "name": "selectionChange",
3707
3760
  "kind": 524288,
3708
3761
  "kindString": "Get signature",
@@ -3715,7 +3768,7 @@
3715
3768
  "typeArguments": [
3716
3769
  {
3717
3770
  "type": "reference",
3718
- "id": 535,
3771
+ "id": 559,
3719
3772
  "name": "SkyAutocompleteSelectionChange"
3720
3773
  }
3721
3774
  ],
@@ -3735,7 +3788,7 @@
3735
3788
  "sources": [
3736
3789
  {
3737
3790
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3738
- "line": 302,
3791
+ "line": 310,
3739
3792
  "character": 13
3740
3793
  }
3741
3794
  ],
@@ -3754,7 +3807,7 @@
3754
3807
  ]
3755
3808
  },
3756
3809
  {
3757
- "id": 194,
3810
+ "id": 197,
3758
3811
  "name": "addButtonClicked",
3759
3812
  "kind": 2048,
3760
3813
  "kindString": "Method",
@@ -3764,13 +3817,13 @@
3764
3817
  "sources": [
3765
3818
  {
3766
3819
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3767
- "line": 458,
3820
+ "line": 477,
3768
3821
  "character": 9
3769
3822
  }
3770
3823
  ],
3771
3824
  "signatures": [
3772
3825
  {
3773
- "id": 195,
3826
+ "id": 198,
3774
3827
  "name": "addButtonClicked",
3775
3828
  "kind": 4096,
3776
3829
  "kindString": "Call signature",
@@ -3783,7 +3836,7 @@
3783
3836
  ]
3784
3837
  },
3785
3838
  {
3786
- "id": 196,
3839
+ "id": 199,
3787
3840
  "name": "handleKeydown",
3788
3841
  "kind": 2048,
3789
3842
  "kindString": "Method",
@@ -3793,20 +3846,20 @@
3793
3846
  "sources": [
3794
3847
  {
3795
3848
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3796
- "line": 464,
3849
+ "line": 483,
3797
3850
  "character": 9
3798
3851
  }
3799
3852
  ],
3800
3853
  "signatures": [
3801
3854
  {
3802
- "id": 197,
3855
+ "id": 200,
3803
3856
  "name": "handleKeydown",
3804
3857
  "kind": 4096,
3805
3858
  "kindString": "Call signature",
3806
3859
  "flags": {},
3807
3860
  "parameters": [
3808
3861
  {
3809
- "id": 198,
3862
+ "id": 201,
3810
3863
  "name": "event",
3811
3864
  "kind": 32768,
3812
3865
  "kindString": "Parameter",
@@ -3825,7 +3878,7 @@
3825
3878
  ]
3826
3879
  },
3827
3880
  {
3828
- "id": 208,
3881
+ "id": 211,
3829
3882
  "name": "isElementFocused",
3830
3883
  "kind": 2048,
3831
3884
  "kindString": "Method",
@@ -3835,20 +3888,20 @@
3835
3888
  "sources": [
3836
3889
  {
3837
3890
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3838
- "line": 573,
3891
+ "line": 592,
3839
3892
  "character": 9
3840
3893
  }
3841
3894
  ],
3842
3895
  "signatures": [
3843
3896
  {
3844
- "id": 209,
3897
+ "id": 212,
3845
3898
  "name": "isElementFocused",
3846
3899
  "kind": 4096,
3847
3900
  "kindString": "Call signature",
3848
3901
  "flags": {},
3849
3902
  "parameters": [
3850
3903
  {
3851
- "id": 210,
3904
+ "id": 213,
3852
3905
  "name": "ref",
3853
3906
  "kind": 32768,
3854
3907
  "kindString": "Parameter",
@@ -3867,7 +3920,7 @@
3867
3920
  ]
3868
3921
  },
3869
3922
  {
3870
- "id": 199,
3923
+ "id": 202,
3871
3924
  "name": "moreButtonClicked",
3872
3925
  "kind": 2048,
3873
3926
  "kindString": "Method",
@@ -3877,13 +3930,13 @@
3877
3930
  "sources": [
3878
3931
  {
3879
3932
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3880
- "line": 545,
3933
+ "line": 564,
3881
3934
  "character": 9
3882
3935
  }
3883
3936
  ],
3884
3937
  "signatures": [
3885
3938
  {
3886
- "id": 200,
3939
+ "id": 203,
3887
3940
  "name": "moreButtonClicked",
3888
3941
  "kind": 4096,
3889
3942
  "kindString": "Call signature",
@@ -3896,7 +3949,7 @@
3896
3949
  ]
3897
3950
  },
3898
3951
  {
3899
- "id": 188,
3952
+ "id": 191,
3900
3953
  "name": "ngAfterContentInit",
3901
3954
  "kind": 2048,
3902
3955
  "kindString": "Method",
@@ -3906,13 +3959,13 @@
3906
3959
  "sources": [
3907
3960
  {
3908
3961
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3909
- "line": 433,
3962
+ "line": 451,
3910
3963
  "character": 9
3911
3964
  }
3912
3965
  ],
3913
3966
  "signatures": [
3914
3967
  {
3915
- "id": 189,
3968
+ "id": 192,
3916
3969
  "name": "ngAfterContentInit",
3917
3970
  "kind": 4096,
3918
3971
  "kindString": "Call signature",
@@ -3933,7 +3986,7 @@
3933
3986
  }
3934
3987
  },
3935
3988
  {
3936
- "id": 190,
3989
+ "id": 193,
3937
3990
  "name": "ngAfterViewInit",
3938
3991
  "kind": 2048,
3939
3992
  "kindString": "Method",
@@ -3943,13 +3996,13 @@
3943
3996
  "sources": [
3944
3997
  {
3945
3998
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3946
- "line": 445,
3999
+ "line": 463,
3947
4000
  "character": 9
3948
4001
  }
3949
4002
  ],
3950
4003
  "signatures": [
3951
4004
  {
3952
- "id": 191,
4005
+ "id": 194,
3953
4006
  "name": "ngAfterViewInit",
3954
4007
  "kind": 4096,
3955
4008
  "kindString": "Call signature",
@@ -3970,7 +4023,7 @@
3970
4023
  }
3971
4024
  },
3972
4025
  {
3973
- "id": 192,
4026
+ "id": 195,
3974
4027
  "name": "ngOnDestroy",
3975
4028
  "kind": 2048,
3976
4029
  "kindString": "Method",
@@ -3980,13 +4033,13 @@
3980
4033
  "sources": [
3981
4034
  {
3982
4035
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
3983
- "line": 449,
4036
+ "line": 467,
3984
4037
  "character": 9
3985
4038
  }
3986
4039
  ],
3987
4040
  "signatures": [
3988
4041
  {
3989
- "id": 193,
4042
+ "id": 196,
3990
4043
  "name": "ngOnDestroy",
3991
4044
  "kind": 4096,
3992
4045
  "kindString": "Call signature",
@@ -4007,7 +4060,7 @@
4007
4060
  }
4008
4061
  },
4009
4062
  {
4010
- "id": 201,
4063
+ "id": 204,
4011
4064
  "name": "onResultMouseDown",
4012
4065
  "kind": 2048,
4013
4066
  "kindString": "Method",
@@ -4017,20 +4070,20 @@
4017
4070
  "sources": [
4018
4071
  {
4019
4072
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
4020
- "line": 551,
4073
+ "line": 570,
4021
4074
  "character": 9
4022
4075
  }
4023
4076
  ],
4024
4077
  "signatures": [
4025
4078
  {
4026
- "id": 202,
4079
+ "id": 205,
4027
4080
  "name": "onResultMouseDown",
4028
4081
  "kind": 4096,
4029
4082
  "kindString": "Call signature",
4030
4083
  "flags": {},
4031
4084
  "parameters": [
4032
4085
  {
4033
- "id": 203,
4086
+ "id": 206,
4034
4087
  "name": "id",
4035
4088
  "kind": 32768,
4036
4089
  "kindString": "Parameter",
@@ -4041,7 +4094,7 @@
4041
4094
  }
4042
4095
  },
4043
4096
  {
4044
- "id": 204,
4097
+ "id": 207,
4045
4098
  "name": "event",
4046
4099
  "kind": 32768,
4047
4100
  "kindString": "Parameter",
@@ -4060,7 +4113,7 @@
4060
4113
  ]
4061
4114
  },
4062
4115
  {
4063
- "id": 205,
4116
+ "id": 208,
4064
4117
  "name": "onResultMouseMove",
4065
4118
  "kind": 2048,
4066
4119
  "kindString": "Method",
@@ -4070,20 +4123,20 @@
4070
4123
  "sources": [
4071
4124
  {
4072
4125
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
4073
- "line": 564,
4126
+ "line": 583,
4074
4127
  "character": 9
4075
4128
  }
4076
4129
  ],
4077
4130
  "signatures": [
4078
4131
  {
4079
- "id": 206,
4132
+ "id": 209,
4080
4133
  "name": "onResultMouseMove",
4081
4134
  "kind": 4096,
4082
4135
  "kindString": "Call signature",
4083
4136
  "flags": {},
4084
4137
  "parameters": [
4085
4138
  {
4086
- "id": 207,
4139
+ "id": 210,
4087
4140
  "name": "id",
4088
4141
  "kind": 32768,
4089
4142
  "kindString": "Parameter",
@@ -4116,10 +4169,13 @@
4116
4169
  "children": [
4117
4170
  99,
4118
4171
  151,
4172
+ 157,
4119
4173
  140,
4120
4174
  152,
4121
4175
  153,
4176
+ 146,
4122
4177
  134,
4178
+ 158,
4123
4179
  154
4124
4180
  ]
4125
4181
  },
@@ -4130,14 +4186,14 @@
4130
4186
  100,
4131
4187
  104,
4132
4188
  108,
4133
- 147,
4189
+ 149,
4134
4190
  118,
4135
4191
  122,
4136
4192
  126,
4137
- 145,
4193
+ 147,
4138
4194
  135,
4139
4195
  130,
4140
- 143,
4196
+ 144,
4141
4197
  155
4142
4198
  ]
4143
4199
  },
@@ -4145,22 +4201,22 @@
4145
4201
  "title": "Methods",
4146
4202
  "kind": 2048,
4147
4203
  "children": [
4148
- 194,
4149
- 196,
4150
- 208,
4204
+ 197,
4151
4205
  199,
4152
- 188,
4153
- 190,
4154
- 192,
4155
- 201,
4156
- 205
4206
+ 211,
4207
+ 202,
4208
+ 191,
4209
+ 193,
4210
+ 195,
4211
+ 204,
4212
+ 208
4157
4213
  ]
4158
4214
  }
4159
4215
  ],
4160
4216
  "sources": [
4161
4217
  {
4162
4218
  "fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
4163
- "line": 68,
4219
+ "line": 69,
4164
4220
  "character": 13
4165
4221
  }
4166
4222
  ],
@@ -4180,7 +4236,7 @@
4180
4236
  ]
4181
4237
  },
4182
4238
  {
4183
- "id": 250,
4239
+ "id": 255,
4184
4240
  "name": "SkyCountryFieldComponent",
4185
4241
  "kind": 128,
4186
4242
  "kindString": "Class",
@@ -4199,7 +4255,7 @@
4199
4255
  ],
4200
4256
  "children": [
4201
4257
  {
4202
- "id": 251,
4258
+ "id": 256,
4203
4259
  "name": "constructor",
4204
4260
  "kind": 512,
4205
4261
  "kindString": "Constructor",
@@ -4207,20 +4263,20 @@
4207
4263
  "sources": [
4208
4264
  {
4209
4265
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4210
- "line": 267,
4266
+ "line": 268,
4211
4267
  "character": 2
4212
4268
  }
4213
4269
  ],
4214
4270
  "signatures": [
4215
4271
  {
4216
- "id": 252,
4272
+ "id": 257,
4217
4273
  "name": "SkyCountryFieldComponent",
4218
4274
  "kind": 16384,
4219
4275
  "kindString": "Constructor signature",
4220
4276
  "flags": {},
4221
4277
  "parameters": [
4222
4278
  {
4223
- "id": 253,
4279
+ "id": 258,
4224
4280
  "name": "changeDetector",
4225
4281
  "kind": 32768,
4226
4282
  "kindString": "Parameter",
@@ -4231,7 +4287,7 @@
4231
4287
  }
4232
4288
  },
4233
4289
  {
4234
- "id": 254,
4290
+ "id": 259,
4235
4291
  "name": "elRef",
4236
4292
  "kind": 32768,
4237
4293
  "kindString": "Parameter",
@@ -4248,7 +4304,7 @@
4248
4304
  }
4249
4305
  },
4250
4306
  {
4251
- "id": 255,
4307
+ "id": 260,
4252
4308
  "name": "windowRef",
4253
4309
  "kind": 32768,
4254
4310
  "kindString": "Parameter",
@@ -4259,7 +4315,7 @@
4259
4315
  }
4260
4316
  },
4261
4317
  {
4262
- "id": 256,
4318
+ "id": 261,
4263
4319
  "name": "injector",
4264
4320
  "kind": 32768,
4265
4321
  "kindString": "Parameter",
@@ -4270,7 +4326,7 @@
4270
4326
  }
4271
4327
  },
4272
4328
  {
4273
- "id": 257,
4329
+ "id": 262,
4274
4330
  "name": "inputBoxHostSvc",
4275
4331
  "kind": 32768,
4276
4332
  "kindString": "Parameter",
@@ -4293,7 +4349,7 @@
4293
4349
  }
4294
4350
  },
4295
4351
  {
4296
- "id": 258,
4352
+ "id": 263,
4297
4353
  "name": "themeSvc",
4298
4354
  "kind": 32768,
4299
4355
  "kindString": "Parameter",
@@ -4318,14 +4374,14 @@
4318
4374
  ],
4319
4375
  "type": {
4320
4376
  "type": "reference",
4321
- "id": 250,
4377
+ "id": 255,
4322
4378
  "name": "SkyCountryFieldComponent"
4323
4379
  }
4324
4380
  }
4325
4381
  ]
4326
4382
  },
4327
4383
  {
4328
- "id": 259,
4384
+ "id": 264,
4329
4385
  "name": "autocompleteAttribute",
4330
4386
  "kind": 1024,
4331
4387
  "kindString": "Property",
@@ -4337,7 +4393,7 @@
4337
4393
  "tags": [
4338
4394
  {
4339
4395
  "tag": "default",
4340
- "text": "'off'\n"
4396
+ "text": "\"off\"\n"
4341
4397
  }
4342
4398
  ]
4343
4399
  },
@@ -4364,7 +4420,7 @@
4364
4420
  }
4365
4421
  },
4366
4422
  {
4367
- "id": 278,
4423
+ "id": 283,
4368
4424
  "name": "countries",
4369
4425
  "kind": 1024,
4370
4426
  "kindString": "Property",
@@ -4374,7 +4430,7 @@
4374
4430
  "sources": [
4375
4431
  {
4376
4432
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4377
- "line": 166,
4433
+ "line": 167,
4378
4434
  "character": 9
4379
4435
  }
4380
4436
  ],
@@ -4382,13 +4438,13 @@
4382
4438
  "type": "array",
4383
4439
  "elementType": {
4384
4440
  "type": "reference",
4385
- "id": 543,
4441
+ "id": 567,
4386
4442
  "name": "SkyCountryFieldCountry"
4387
4443
  }
4388
4444
  }
4389
4445
  },
4390
4446
  {
4391
- "id": 282,
4447
+ "id": 287,
4392
4448
  "name": "countrySearchAutocompleteDirective",
4393
4449
  "kind": 1024,
4394
4450
  "kindString": "Property",
@@ -4410,7 +4466,7 @@
4410
4466
  "sources": [
4411
4467
  {
4412
4468
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4413
- "line": 175,
4469
+ "line": 176,
4414
4470
  "character": 9
4415
4471
  }
4416
4472
  ],
@@ -4421,7 +4477,7 @@
4421
4477
  }
4422
4478
  },
4423
4479
  {
4424
- "id": 279,
4480
+ "id": 284,
4425
4481
  "name": "countrySearchFormControl",
4426
4482
  "kind": 1024,
4427
4483
  "kindString": "Property",
@@ -4431,7 +4487,7 @@
4431
4487
  "sources": [
4432
4488
  {
4433
4489
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4434
- "line": 168,
4490
+ "line": 169,
4435
4491
  "character": 9
4436
4492
  }
4437
4493
  ],
@@ -4441,7 +4497,7 @@
4441
4497
  }
4442
4498
  },
4443
4499
  {
4444
- "id": 287,
4500
+ "id": 292,
4445
4501
  "name": "currentTheme",
4446
4502
  "kind": 1024,
4447
4503
  "kindString": "Property",
@@ -4451,7 +4507,7 @@
4451
4507
  "sources": [
4452
4508
  {
4453
4509
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4454
- "line": 229,
4510
+ "line": 230,
4455
4511
  "character": 9
4456
4512
  }
4457
4513
  ],
@@ -4462,7 +4518,7 @@
4462
4518
  "defaultValue": "'default'"
4463
4519
  },
4464
4520
  {
4465
- "id": 268,
4521
+ "id": 273,
4466
4522
  "name": "hideSelectedCountryFlag",
4467
4523
  "kind": 1024,
4468
4524
  "kindString": "Property",
@@ -4491,7 +4547,7 @@
4491
4547
  "sources": [
4492
4548
  {
4493
4549
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4494
- "line": 124,
4550
+ "line": 125,
4495
4551
  "character": 9
4496
4552
  }
4497
4553
  ],
@@ -4501,7 +4557,7 @@
4501
4557
  }
4502
4558
  },
4503
4559
  {
4504
- "id": 302,
4560
+ "id": 307,
4505
4561
  "name": "inputBoxHostSvc",
4506
4562
  "kind": 1024,
4507
4563
  "kindString": "Property",
@@ -4515,7 +4571,7 @@
4515
4571
  }
4516
4572
  },
4517
4573
  {
4518
- "id": 288,
4574
+ "id": 293,
4519
4575
  "name": "inputId",
4520
4576
  "kind": 1024,
4521
4577
  "kindString": "Property",
@@ -4525,7 +4581,7 @@
4525
4581
  "sources": [
4526
4582
  {
4527
4583
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4528
- "line": 231,
4584
+ "line": 232,
4529
4585
  "character": 9
4530
4586
  }
4531
4587
  ],
@@ -4535,7 +4591,7 @@
4535
4591
  }
4536
4592
  },
4537
4593
  {
4538
- "id": 280,
4594
+ "id": 285,
4539
4595
  "name": "isInputFocused",
4540
4596
  "kind": 1024,
4541
4597
  "kindString": "Property",
@@ -4545,7 +4601,7 @@
4545
4601
  "sources": [
4546
4602
  {
4547
4603
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4548
- "line": 170,
4604
+ "line": 171,
4549
4605
  "character": 9
4550
4606
  }
4551
4607
  ],
@@ -4556,7 +4612,7 @@
4556
4612
  "defaultValue": "false"
4557
4613
  },
4558
4614
  {
4559
- "id": 314,
4615
+ "id": 319,
4560
4616
  "name": "onChange",
4561
4617
  "kind": 1024,
4562
4618
  "kindString": "Property",
@@ -4566,7 +4622,7 @@
4566
4622
  "sources": [
4567
4623
  {
4568
4624
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4569
- "line": 372,
4625
+ "line": 373,
4570
4626
  "character": 9
4571
4627
  }
4572
4628
  ],
@@ -4577,7 +4633,7 @@
4577
4633
  "defaultValue": "..."
4578
4634
  },
4579
4635
  {
4580
- "id": 315,
4636
+ "id": 320,
4581
4637
  "name": "onTouched",
4582
4638
  "kind": 1024,
4583
4639
  "kindString": "Property",
@@ -4587,7 +4643,7 @@
4587
4643
  "sources": [
4588
4644
  {
4589
4645
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4590
- "line": 375,
4646
+ "line": 376,
4591
4647
  "character": 9
4592
4648
  }
4593
4649
  ],
@@ -4598,7 +4654,7 @@
4598
4654
  "defaultValue": "..."
4599
4655
  },
4600
4656
  {
4601
- "id": 281,
4657
+ "id": 286,
4602
4658
  "name": "searchTextMinimumCharacters",
4603
4659
  "kind": 1024,
4604
4660
  "kindString": "Property",
@@ -4608,7 +4664,7 @@
4608
4664
  "sources": [
4609
4665
  {
4610
4666
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4611
- "line": 172,
4667
+ "line": 173,
4612
4668
  "character": 9
4613
4669
  }
4614
4670
  ],
@@ -4619,7 +4675,7 @@
4619
4675
  "defaultValue": "2"
4620
4676
  },
4621
4677
  {
4622
- "id": 277,
4678
+ "id": 282,
4623
4679
  "name": "selectedCountryChange",
4624
4680
  "kind": 1024,
4625
4681
  "kindString": "Property",
@@ -4642,7 +4698,7 @@
4642
4698
  "sources": [
4643
4699
  {
4644
4700
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4645
- "line": 164,
4701
+ "line": 165,
4646
4702
  "character": 9
4647
4703
  }
4648
4704
  ],
@@ -4651,7 +4707,7 @@
4651
4707
  "typeArguments": [
4652
4708
  {
4653
4709
  "type": "reference",
4654
- "id": 543,
4710
+ "id": 567,
4655
4711
  "name": "SkyCountryFieldCountry"
4656
4712
  }
4657
4713
  ],
@@ -4660,7 +4716,7 @@
4660
4716
  "defaultValue": "..."
4661
4717
  },
4662
4718
  {
4663
- "id": 260,
4719
+ "id": 265,
4664
4720
  "name": "defaultCountry",
4665
4721
  "kind": 262144,
4666
4722
  "kindString": "Accessor",
@@ -4686,7 +4742,7 @@
4686
4742
  ],
4687
4743
  "getSignature": [
4688
4744
  {
4689
- "id": 261,
4745
+ "id": 266,
4690
4746
  "name": "defaultCountry",
4691
4747
  "kind": 524288,
4692
4748
  "kindString": "Get signature",
@@ -4702,7 +4758,7 @@
4702
4758
  ],
4703
4759
  "setSignature": [
4704
4760
  {
4705
- "id": 262,
4761
+ "id": 267,
4706
4762
  "name": "defaultCountry",
4707
4763
  "kind": 1048576,
4708
4764
  "kindString": "Set signature",
@@ -4712,13 +4768,13 @@
4712
4768
  "tags": [
4713
4769
  {
4714
4770
  "tag": "default",
4715
- "text": "us\n"
4771
+ "text": "\"us\"\n"
4716
4772
  }
4717
4773
  ]
4718
4774
  },
4719
4775
  "parameters": [
4720
4776
  {
4721
- "id": 263,
4777
+ "id": 268,
4722
4778
  "name": "value",
4723
4779
  "kind": 32768,
4724
4780
  "kindString": "Parameter",
@@ -4737,7 +4793,7 @@
4737
4793
  ]
4738
4794
  },
4739
4795
  {
4740
- "id": 264,
4796
+ "id": 269,
4741
4797
  "name": "disabled",
4742
4798
  "kind": 262144,
4743
4799
  "kindString": "Accessor",
@@ -4757,13 +4813,13 @@
4757
4813
  "sources": [
4758
4814
  {
4759
4815
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4760
- "line": 103,
4816
+ "line": 104,
4761
4817
  "character": 13
4762
4818
  }
4763
4819
  ],
4764
4820
  "getSignature": [
4765
4821
  {
4766
- "id": 265,
4822
+ "id": 270,
4767
4823
  "name": "disabled",
4768
4824
  "kind": 524288,
4769
4825
  "kindString": "Get signature",
@@ -4779,17 +4835,23 @@
4779
4835
  ],
4780
4836
  "setSignature": [
4781
4837
  {
4782
- "id": 266,
4838
+ "id": 271,
4783
4839
  "name": "disabled",
4784
4840
  "kind": 1048576,
4785
4841
  "kindString": "Set signature",
4786
4842
  "flags": {},
4787
4843
  "comment": {
4788
- "shortText": "Indicates whether to disable the country field."
4844
+ "shortText": "Indicates whether to disable the country field.",
4845
+ "tags": [
4846
+ {
4847
+ "tag": "default",
4848
+ "text": "false\n"
4849
+ }
4850
+ ]
4789
4851
  },
4790
4852
  "parameters": [
4791
4853
  {
4792
- "id": 267,
4854
+ "id": 272,
4793
4855
  "name": "isDisabled",
4794
4856
  "kind": 32768,
4795
4857
  "kindString": "Parameter",
@@ -4808,7 +4870,7 @@
4808
4870
  ]
4809
4871
  },
4810
4872
  {
4811
- "id": 269,
4873
+ "id": 274,
4812
4874
  "name": "includePhoneInfo",
4813
4875
  "kind": 262144,
4814
4876
  "kindString": "Accessor",
@@ -4828,13 +4890,13 @@
4828
4890
  "sources": [
4829
4891
  {
4830
4892
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4831
- "line": 131,
4893
+ "line": 132,
4832
4894
  "character": 13
4833
4895
  }
4834
4896
  ],
4835
4897
  "getSignature": [
4836
4898
  {
4837
- "id": 270,
4899
+ "id": 275,
4838
4900
  "name": "includePhoneInfo",
4839
4901
  "kind": 524288,
4840
4902
  "kindString": "Get signature",
@@ -4850,7 +4912,7 @@
4850
4912
  ],
4851
4913
  "setSignature": [
4852
4914
  {
4853
- "id": 271,
4915
+ "id": 276,
4854
4916
  "name": "includePhoneInfo",
4855
4917
  "kind": 1048576,
4856
4918
  "kindString": "Set signature",
@@ -4866,7 +4928,7 @@
4866
4928
  },
4867
4929
  "parameters": [
4868
4930
  {
4869
- "id": 272,
4931
+ "id": 277,
4870
4932
  "name": "includePhoneInfo",
4871
4933
  "kind": 32768,
4872
4934
  "kindString": "Parameter",
@@ -4885,7 +4947,7 @@
4885
4947
  ]
4886
4948
  },
4887
4949
  {
4888
- "id": 283,
4950
+ "id": 288,
4889
4951
  "name": "selectedCountry",
4890
4952
  "kind": 262144,
4891
4953
  "kindString": "Accessor",
@@ -4895,41 +4957,41 @@
4895
4957
  "sources": [
4896
4958
  {
4897
4959
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4898
- "line": 177,
4960
+ "line": 178,
4899
4961
  "character": 13
4900
4962
  }
4901
4963
  ],
4902
4964
  "getSignature": [
4903
4965
  {
4904
- "id": 284,
4966
+ "id": 289,
4905
4967
  "name": "selectedCountry",
4906
4968
  "kind": 524288,
4907
4969
  "kindString": "Get signature",
4908
4970
  "flags": {},
4909
4971
  "type": {
4910
4972
  "type": "reference",
4911
- "id": 543,
4973
+ "id": 567,
4912
4974
  "name": "SkyCountryFieldCountry"
4913
4975
  }
4914
4976
  }
4915
4977
  ],
4916
4978
  "setSignature": [
4917
4979
  {
4918
- "id": 285,
4980
+ "id": 290,
4919
4981
  "name": "selectedCountry",
4920
4982
  "kind": 1048576,
4921
4983
  "kindString": "Set signature",
4922
4984
  "flags": {},
4923
4985
  "parameters": [
4924
4986
  {
4925
- "id": 286,
4987
+ "id": 291,
4926
4988
  "name": "newCountry",
4927
4989
  "kind": 32768,
4928
4990
  "kindString": "Parameter",
4929
4991
  "flags": {},
4930
4992
  "type": {
4931
4993
  "type": "reference",
4932
- "id": 543,
4994
+ "id": 567,
4933
4995
  "name": "SkyCountryFieldCountry"
4934
4996
  }
4935
4997
  }
@@ -4942,7 +5004,7 @@
4942
5004
  ]
4943
5005
  },
4944
5006
  {
4945
- "id": 273,
5007
+ "id": 278,
4946
5008
  "name": "supportedCountryISOs",
4947
5009
  "kind": 262144,
4948
5010
  "kindString": "Accessor",
@@ -4962,13 +5024,13 @@
4962
5024
  "sources": [
4963
5025
  {
4964
5026
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
4965
- "line": 146,
5027
+ "line": 147,
4966
5028
  "character": 13
4967
5029
  }
4968
5030
  ],
4969
5031
  "getSignature": [
4970
5032
  {
4971
- "id": 274,
5033
+ "id": 279,
4972
5034
  "name": "supportedCountryISOs",
4973
5035
  "kind": 524288,
4974
5036
  "kindString": "Get signature",
@@ -4987,7 +5049,7 @@
4987
5049
  ],
4988
5050
  "setSignature": [
4989
5051
  {
4990
- "id": 275,
5052
+ "id": 280,
4991
5053
  "name": "supportedCountryISOs",
4992
5054
  "kind": 1048576,
4993
5055
  "kindString": "Set signature",
@@ -4997,7 +5059,7 @@
4997
5059
  },
4998
5060
  "parameters": [
4999
5061
  {
5000
- "id": 276,
5062
+ "id": 281,
5001
5063
  "name": "value",
5002
5064
  "kind": 32768,
5003
5065
  "kindString": "Parameter",
@@ -5019,7 +5081,7 @@
5019
5081
  ]
5020
5082
  },
5021
5083
  {
5022
- "id": 305,
5084
+ "id": 310,
5023
5085
  "name": "ngAfterViewInit",
5024
5086
  "kind": 2048,
5025
5087
  "kindString": "Method",
@@ -5029,13 +5091,13 @@
5029
5091
  "sources": [
5030
5092
  {
5031
5093
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
5032
- "line": 322,
5094
+ "line": 323,
5033
5095
  "character": 9
5034
5096
  }
5035
5097
  ],
5036
5098
  "signatures": [
5037
5099
  {
5038
- "id": 306,
5100
+ "id": 311,
5039
5101
  "name": "ngAfterViewInit",
5040
5102
  "kind": 4096,
5041
5103
  "kindString": "Call signature",
@@ -5056,7 +5118,7 @@
5056
5118
  }
5057
5119
  },
5058
5120
  {
5059
- "id": 316,
5121
+ "id": 321,
5060
5122
  "name": "registerOnChange",
5061
5123
  "kind": 2048,
5062
5124
  "kindString": "Method",
@@ -5066,20 +5128,20 @@
5066
5128
  "sources": [
5067
5129
  {
5068
5130
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
5069
- "line": 377,
5131
+ "line": 378,
5070
5132
  "character": 9
5071
5133
  }
5072
5134
  ],
5073
5135
  "signatures": [
5074
5136
  {
5075
- "id": 317,
5137
+ "id": 322,
5076
5138
  "name": "registerOnChange",
5077
5139
  "kind": 4096,
5078
5140
  "kindString": "Call signature",
5079
5141
  "flags": {},
5080
5142
  "parameters": [
5081
5143
  {
5082
- "id": 318,
5144
+ "id": 323,
5083
5145
  "name": "fn",
5084
5146
  "kind": 32768,
5085
5147
  "kindString": "Parameter",
@@ -5087,21 +5149,21 @@
5087
5149
  "type": {
5088
5150
  "type": "reflection",
5089
5151
  "declaration": {
5090
- "id": 319,
5152
+ "id": 324,
5091
5153
  "name": "__type",
5092
5154
  "kind": 65536,
5093
5155
  "kindString": "Type literal",
5094
5156
  "flags": {},
5095
5157
  "signatures": [
5096
5158
  {
5097
- "id": 320,
5159
+ "id": 325,
5098
5160
  "name": "__type",
5099
5161
  "kind": 4096,
5100
5162
  "kindString": "Call signature",
5101
5163
  "flags": {},
5102
5164
  "parameters": [
5103
5165
  {
5104
- "id": 321,
5166
+ "id": 326,
5105
5167
  "name": "value",
5106
5168
  "kind": 32768,
5107
5169
  "kindString": "Parameter",
@@ -5138,7 +5200,7 @@
5138
5200
  }
5139
5201
  },
5140
5202
  {
5141
- "id": 322,
5203
+ "id": 327,
5142
5204
  "name": "registerOnTouched",
5143
5205
  "kind": 2048,
5144
5206
  "kindString": "Method",
@@ -5148,20 +5210,20 @@
5148
5210
  "sources": [
5149
5211
  {
5150
5212
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
5151
- "line": 381,
5213
+ "line": 382,
5152
5214
  "character": 9
5153
5215
  }
5154
5216
  ],
5155
5217
  "signatures": [
5156
5218
  {
5157
- "id": 323,
5219
+ "id": 328,
5158
5220
  "name": "registerOnTouched",
5159
5221
  "kind": 4096,
5160
5222
  "kindString": "Call signature",
5161
5223
  "flags": {},
5162
5224
  "parameters": [
5163
5225
  {
5164
- "id": 324,
5226
+ "id": 329,
5165
5227
  "name": "fn",
5166
5228
  "kind": 32768,
5167
5229
  "kindString": "Parameter",
@@ -5169,14 +5231,14 @@
5169
5231
  "type": {
5170
5232
  "type": "reflection",
5171
5233
  "declaration": {
5172
- "id": 325,
5234
+ "id": 330,
5173
5235
  "name": "__type",
5174
5236
  "kind": 65536,
5175
5237
  "kindString": "Type literal",
5176
5238
  "flags": {},
5177
5239
  "signatures": [
5178
5240
  {
5179
- "id": 326,
5241
+ "id": 331,
5180
5242
  "name": "__type",
5181
5243
  "kind": 4096,
5182
5244
  "kindString": "Call signature",
@@ -5207,7 +5269,7 @@
5207
5269
  }
5208
5270
  },
5209
5271
  {
5210
- "id": 327,
5272
+ "id": 332,
5211
5273
  "name": "setDisabledState",
5212
5274
  "kind": 2048,
5213
5275
  "kindString": "Method",
@@ -5217,20 +5279,20 @@
5217
5279
  "sources": [
5218
5280
  {
5219
5281
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
5220
- "line": 386,
5282
+ "line": 387,
5221
5283
  "character": 9
5222
5284
  }
5223
5285
  ],
5224
5286
  "signatures": [
5225
5287
  {
5226
- "id": 328,
5288
+ "id": 333,
5227
5289
  "name": "setDisabledState",
5228
5290
  "kind": 4096,
5229
5291
  "kindString": "Call signature",
5230
5292
  "flags": {},
5231
5293
  "parameters": [
5232
5294
  {
5233
- "id": 329,
5295
+ "id": 334,
5234
5296
  "name": "disabled",
5235
5297
  "kind": 32768,
5236
5298
  "kindString": "Parameter",
@@ -5257,7 +5319,7 @@
5257
5319
  }
5258
5320
  },
5259
5321
  {
5260
- "id": 330,
5322
+ "id": 335,
5261
5323
  "name": "validate",
5262
5324
  "kind": 2048,
5263
5325
  "kindString": "Method",
@@ -5267,20 +5329,20 @@
5267
5329
  "sources": [
5268
5330
  {
5269
5331
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
5270
- "line": 390,
5332
+ "line": 391,
5271
5333
  "character": 9
5272
5334
  }
5273
5335
  ],
5274
5336
  "signatures": [
5275
5337
  {
5276
- "id": 331,
5338
+ "id": 336,
5277
5339
  "name": "validate",
5278
5340
  "kind": 4096,
5279
5341
  "kindString": "Call signature",
5280
5342
  "flags": {},
5281
5343
  "parameters": [
5282
5344
  {
5283
- "id": 332,
5345
+ "id": 337,
5284
5346
  "name": "control",
5285
5347
  "kind": 32768,
5286
5348
  "kindString": "Parameter",
@@ -5307,7 +5369,7 @@
5307
5369
  }
5308
5370
  },
5309
5371
  {
5310
- "id": 333,
5372
+ "id": 338,
5311
5373
  "name": "writeValue",
5312
5374
  "kind": 2048,
5313
5375
  "kindString": "Method",
@@ -5317,27 +5379,27 @@
5317
5379
  "sources": [
5318
5380
  {
5319
5381
  "fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
5320
- "line": 404,
5382
+ "line": 405,
5321
5383
  "character": 9
5322
5384
  }
5323
5385
  ],
5324
5386
  "signatures": [
5325
5387
  {
5326
- "id": 334,
5388
+ "id": 339,
5327
5389
  "name": "writeValue",
5328
5390
  "kind": 4096,
5329
5391
  "kindString": "Call signature",
5330
5392
  "flags": {},
5331
5393
  "parameters": [
5332
5394
  {
5333
- "id": 335,
5395
+ "id": 340,
5334
5396
  "name": "value",
5335
5397
  "kind": 32768,
5336
5398
  "kindString": "Parameter",
5337
5399
  "flags": {},
5338
5400
  "type": {
5339
5401
  "type": "reference",
5340
- "id": 543,
5402
+ "id": 567,
5341
5403
  "name": "SkyCountryFieldCountry"
5342
5404
  }
5343
5405
  }
@@ -5363,49 +5425,49 @@
5363
5425
  "title": "Constructors",
5364
5426
  "kind": 512,
5365
5427
  "children": [
5366
- 251
5428
+ 256
5367
5429
  ]
5368
5430
  },
5369
5431
  {
5370
5432
  "title": "Properties",
5371
5433
  "kind": 1024,
5372
5434
  "children": [
5373
- 259,
5374
- 278,
5375
- 282,
5376
- 279,
5435
+ 264,
5436
+ 283,
5377
5437
  287,
5378
- 268,
5379
- 302,
5380
- 288,
5381
- 280,
5382
- 314,
5383
- 315,
5384
- 281,
5385
- 277
5438
+ 284,
5439
+ 292,
5440
+ 273,
5441
+ 307,
5442
+ 293,
5443
+ 285,
5444
+ 319,
5445
+ 320,
5446
+ 286,
5447
+ 282
5386
5448
  ]
5387
5449
  },
5388
5450
  {
5389
5451
  "title": "Accessors",
5390
5452
  "kind": 262144,
5391
5453
  "children": [
5392
- 260,
5393
- 264,
5454
+ 265,
5394
5455
  269,
5395
- 283,
5396
- 273
5456
+ 274,
5457
+ 288,
5458
+ 278
5397
5459
  ]
5398
5460
  },
5399
5461
  {
5400
5462
  "title": "Methods",
5401
5463
  "kind": 2048,
5402
5464
  "children": [
5403
- 305,
5404
- 316,
5405
- 322,
5465
+ 310,
5466
+ 321,
5406
5467
  327,
5407
- 330,
5408
- 333
5468
+ 332,
5469
+ 335,
5470
+ 338
5409
5471
  ]
5410
5472
  }
5411
5473
  ],
@@ -5440,7 +5502,7 @@
5440
5502
  ]
5441
5503
  },
5442
5504
  {
5443
- "id": 355,
5505
+ "id": 360,
5444
5506
  "name": "SkyLookupComponent",
5445
5507
  "kind": 128,
5446
5508
  "kindString": "Class",
@@ -5459,7 +5521,7 @@
5459
5521
  ],
5460
5522
  "children": [
5461
5523
  {
5462
- "id": 356,
5524
+ "id": 361,
5463
5525
  "name": "constructor",
5464
5526
  "kind": 512,
5465
5527
  "kindString": "Constructor",
@@ -5467,20 +5529,20 @@
5467
5529
  "sources": [
5468
5530
  {
5469
5531
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
5470
- "line": 288,
5532
+ "line": 273,
5471
5533
  "character": 2
5472
5534
  }
5473
5535
  ],
5474
5536
  "signatures": [
5475
5537
  {
5476
- "id": 357,
5538
+ "id": 362,
5477
5539
  "name": "SkyLookupComponent",
5478
5540
  "kind": 16384,
5479
5541
  "kindString": "Constructor signature",
5480
5542
  "flags": {},
5481
5543
  "parameters": [
5482
5544
  {
5483
- "id": 358,
5545
+ "id": 363,
5484
5546
  "name": "changeDetector",
5485
5547
  "kind": 32768,
5486
5548
  "kindString": "Parameter",
@@ -5491,7 +5553,7 @@
5491
5553
  }
5492
5554
  },
5493
5555
  {
5494
- "id": 359,
5556
+ "id": 364,
5495
5557
  "name": "elementRef",
5496
5558
  "kind": 32768,
5497
5559
  "kindString": "Parameter",
@@ -5508,7 +5570,7 @@
5508
5570
  }
5509
5571
  },
5510
5572
  {
5511
- "id": 360,
5573
+ "id": 365,
5512
5574
  "name": "windowRef",
5513
5575
  "kind": 32768,
5514
5576
  "kindString": "Parameter",
@@ -5519,7 +5581,7 @@
5519
5581
  }
5520
5582
  },
5521
5583
  {
5522
- "id": 361,
5584
+ "id": 366,
5523
5585
  "name": "ngControl",
5524
5586
  "kind": 32768,
5525
5587
  "kindString": "Parameter",
@@ -5548,7 +5610,7 @@
5548
5610
  }
5549
5611
  },
5550
5612
  {
5551
- "id": 362,
5613
+ "id": 367,
5552
5614
  "name": "adapter",
5553
5615
  "kind": 32768,
5554
5616
  "kindString": "Parameter",
@@ -5559,7 +5621,7 @@
5559
5621
  }
5560
5622
  },
5561
5623
  {
5562
- "id": 363,
5624
+ "id": 368,
5563
5625
  "name": "modalService",
5564
5626
  "kind": 32768,
5565
5627
  "kindString": "Parameter",
@@ -5570,7 +5632,7 @@
5570
5632
  }
5571
5633
  },
5572
5634
  {
5573
- "id": 364,
5635
+ "id": 369,
5574
5636
  "name": "resourcesService",
5575
5637
  "kind": 32768,
5576
5638
  "kindString": "Parameter",
@@ -5581,7 +5643,7 @@
5581
5643
  }
5582
5644
  },
5583
5645
  {
5584
- "id": 365,
5646
+ "id": 370,
5585
5647
  "name": "inputBoxHostSvc",
5586
5648
  "kind": 32768,
5587
5649
  "kindString": "Parameter",
@@ -5604,7 +5666,7 @@
5604
5666
  }
5605
5667
  },
5606
5668
  {
5607
- "id": 366,
5669
+ "id": 371,
5608
5670
  "name": "themeSvc",
5609
5671
  "kind": 32768,
5610
5672
  "kindString": "Parameter",
@@ -5629,7 +5691,7 @@
5629
5691
  ],
5630
5692
  "type": {
5631
5693
  "type": "reference",
5632
- "id": 355,
5694
+ "id": 360,
5633
5695
  "name": "SkyLookupComponent"
5634
5696
  },
5635
5697
  "overwrites": {
@@ -5644,7 +5706,7 @@
5644
5706
  }
5645
5707
  },
5646
5708
  {
5647
- "id": 385,
5709
+ "id": 390,
5648
5710
  "name": "addClick",
5649
5711
  "kind": 1024,
5650
5712
  "kindString": "Property",
@@ -5667,7 +5729,7 @@
5667
5729
  "sources": [
5668
5730
  {
5669
5731
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
5670
- "line": 196,
5732
+ "line": 181,
5671
5733
  "character": 9
5672
5734
  }
5673
5735
  ],
@@ -5676,7 +5738,7 @@
5676
5738
  "typeArguments": [
5677
5739
  {
5678
5740
  "type": "reference",
5679
- "id": 555,
5741
+ "id": 579,
5680
5742
  "name": "SkyLookupAddClickEventArgs"
5681
5743
  }
5682
5744
  ],
@@ -5685,7 +5747,7 @@
5685
5747
  "defaultValue": "..."
5686
5748
  },
5687
5749
  {
5688
- "id": 367,
5750
+ "id": 372,
5689
5751
  "name": "ariaLabel",
5690
5752
  "kind": 1024,
5691
5753
  "kindString": "Property",
@@ -5708,7 +5770,7 @@
5708
5770
  "sources": [
5709
5771
  {
5710
5772
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
5711
- "line": 85,
5773
+ "line": 70,
5712
5774
  "character": 9
5713
5775
  }
5714
5776
  ],
@@ -5718,7 +5780,7 @@
5718
5780
  }
5719
5781
  },
5720
5782
  {
5721
- "id": 368,
5783
+ "id": 373,
5722
5784
  "name": "ariaLabelledBy",
5723
5785
  "kind": 1024,
5724
5786
  "kindString": "Property",
@@ -5741,7 +5803,7 @@
5741
5803
  "sources": [
5742
5804
  {
5743
5805
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
5744
- "line": 94,
5806
+ "line": 79,
5745
5807
  "character": 9
5746
5808
  }
5747
5809
  ],
@@ -5751,7 +5813,7 @@
5751
5813
  }
5752
5814
  },
5753
5815
  {
5754
- "id": 369,
5816
+ "id": 374,
5755
5817
  "name": "autocompleteAttribute",
5756
5818
  "kind": 1024,
5757
5819
  "kindString": "Property",
@@ -5780,7 +5842,7 @@
5780
5842
  "sources": [
5781
5843
  {
5782
5844
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
5783
- "line": 101,
5845
+ "line": 86,
5784
5846
  "character": 9
5785
5847
  }
5786
5848
  ],
@@ -5790,7 +5852,7 @@
5790
5852
  }
5791
5853
  },
5792
5854
  {
5793
- "id": 394,
5855
+ "id": 399,
5794
5856
  "name": "autocompleteController",
5795
5857
  "kind": 1024,
5796
5858
  "kindString": "Property",
@@ -5800,7 +5862,7 @@
5800
5862
  "sources": [
5801
5863
  {
5802
5864
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
5803
- "line": 237,
5865
+ "line": 222,
5804
5866
  "character": 9
5805
5867
  }
5806
5868
  ],
@@ -5817,7 +5879,7 @@
5817
5879
  "defaultValue": "..."
5818
5880
  },
5819
5881
  {
5820
- "id": 501,
5882
+ "id": 512,
5821
5883
  "name": "debounceTime",
5822
5884
  "kind": 1024,
5823
5885
  "kindString": "Property",
@@ -5846,7 +5908,7 @@
5846
5908
  "sources": [
5847
5909
  {
5848
5910
  "fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
5849
- "line": 20,
5911
+ "line": 27,
5850
5912
  "character": 9
5851
5913
  }
5852
5914
  ],
@@ -5860,7 +5922,7 @@
5860
5922
  }
5861
5923
  },
5862
5924
  {
5863
- "id": 374,
5925
+ "id": 379,
5864
5926
  "name": "disabled",
5865
5927
  "kind": 1024,
5866
5928
  "kindString": "Property",
@@ -5883,7 +5945,7 @@
5883
5945
  "sources": [
5884
5946
  {
5885
5947
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
5886
- "line": 126,
5948
+ "line": 111,
5887
5949
  "character": 9
5888
5950
  }
5889
5951
  ],
@@ -5894,7 +5956,7 @@
5894
5956
  "defaultValue": "false"
5895
5957
  },
5896
5958
  {
5897
- "id": 375,
5959
+ "id": 380,
5898
5960
  "name": "enableShowMore",
5899
5961
  "kind": 1024,
5900
5962
  "kindString": "Property",
@@ -5917,7 +5979,7 @@
5917
5979
  "sources": [
5918
5980
  {
5919
5981
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
5920
- "line": 132,
5982
+ "line": 117,
5921
5983
  "character": 9
5922
5984
  }
5923
5985
  ],
@@ -5928,7 +5990,7 @@
5928
5990
  "defaultValue": "false"
5929
5991
  },
5930
5992
  {
5931
- "id": 377,
5993
+ "id": 382,
5932
5994
  "name": "idProperty",
5933
5995
  "kind": 1024,
5934
5996
  "kindString": "Property",
@@ -5951,7 +6013,7 @@
5951
6013
  "sources": [
5952
6014
  {
5953
6015
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
5954
- "line": 145,
6016
+ "line": 130,
5955
6017
  "character": 9
5956
6018
  }
5957
6019
  ],
@@ -5961,7 +6023,7 @@
5961
6023
  }
5962
6024
  },
5963
6025
  {
5964
- "id": 414,
6026
+ "id": 419,
5965
6027
  "name": "inputBoxHostSvc",
5966
6028
  "kind": 1024,
5967
6029
  "kindString": "Property",
@@ -5975,7 +6037,7 @@
5975
6037
  }
5976
6038
  },
5977
6039
  {
5978
- "id": 395,
6040
+ "id": 400,
5979
6041
  "name": "isInputFocused",
5980
6042
  "kind": 1024,
5981
6043
  "kindString": "Property",
@@ -5985,7 +6047,7 @@
5985
6047
  "sources": [
5986
6048
  {
5987
6049
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
5988
- "line": 238,
6050
+ "line": 223,
5989
6051
  "character": 9
5990
6052
  }
5991
6053
  ],
@@ -5996,7 +6058,7 @@
5996
6058
  "defaultValue": "false"
5997
6059
  },
5998
6060
  {
5999
- "id": 376,
6061
+ "id": 381,
6000
6062
  "name": "placeholderText",
6001
6063
  "kind": 1024,
6002
6064
  "kindString": "Property",
@@ -6019,7 +6081,7 @@
6019
6081
  "sources": [
6020
6082
  {
6021
6083
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6022
- "line": 138,
6084
+ "line": 123,
6023
6085
  "character": 9
6024
6086
  }
6025
6087
  ],
@@ -6029,7 +6091,49 @@
6029
6091
  }
6030
6092
  },
6031
6093
  {
6032
- "id": 516,
6094
+ "id": 529,
6095
+ "name": "searchAsync",
6096
+ "kind": 1024,
6097
+ "kindString": "Property",
6098
+ "flags": {
6099
+ "isPublic": true
6100
+ },
6101
+ "decorators": [
6102
+ {
6103
+ "name": "Output",
6104
+ "type": {
6105
+ "type": "reference",
6106
+ "name": "Output"
6107
+ },
6108
+ "arguments": {}
6109
+ }
6110
+ ],
6111
+ "sources": [
6112
+ {
6113
+ "fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
6114
+ "line": 112,
6115
+ "character": 9
6116
+ }
6117
+ ],
6118
+ "type": {
6119
+ "type": "reference",
6120
+ "typeArguments": [
6121
+ {
6122
+ "type": "reference",
6123
+ "id": 536,
6124
+ "name": "SkyAutocompleteSearchAsyncArgs"
6125
+ }
6126
+ ],
6127
+ "name": "EventEmitter"
6128
+ },
6129
+ "defaultValue": "...",
6130
+ "inheritedFrom": {
6131
+ "type": "reference",
6132
+ "name": "SkyLookupAutocompleteAdapter.searchAsync"
6133
+ }
6134
+ },
6135
+ {
6136
+ "id": 527,
6033
6137
  "name": "searchFilters",
6034
6138
  "kind": 1024,
6035
6139
  "kindString": "Property",
@@ -6052,7 +6156,7 @@
6052
6156
  "sources": [
6053
6157
  {
6054
6158
  "fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
6055
- "line": 95,
6159
+ "line": 102,
6056
6160
  "character": 9
6057
6161
  }
6058
6162
  ],
@@ -6060,7 +6164,7 @@
6060
6164
  "type": "array",
6061
6165
  "elementType": {
6062
6166
  "type": "reference",
6063
- "id": 529,
6167
+ "id": 553,
6064
6168
  "name": "SkyAutocompleteSearchFunctionFilter"
6065
6169
  }
6066
6170
  },
@@ -6070,7 +6174,7 @@
6070
6174
  }
6071
6175
  },
6072
6176
  {
6073
- "id": 514,
6177
+ "id": 525,
6074
6178
  "name": "searchResultTemplate",
6075
6179
  "kind": 1024,
6076
6180
  "kindString": "Property",
@@ -6093,7 +6197,7 @@
6093
6197
  "sources": [
6094
6198
  {
6095
6199
  "fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
6096
- "line": 76,
6200
+ "line": 83,
6097
6201
  "character": 9
6098
6202
  }
6099
6203
  ],
@@ -6113,7 +6217,7 @@
6113
6217
  }
6114
6218
  },
6115
6219
  {
6116
- "id": 517,
6220
+ "id": 528,
6117
6221
  "name": "searchResultsLimit",
6118
6222
  "kind": 1024,
6119
6223
  "kindString": "Property",
@@ -6136,7 +6240,7 @@
6136
6240
  "sources": [
6137
6241
  {
6138
6242
  "fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
6139
- "line": 102,
6243
+ "line": 109,
6140
6244
  "character": 9
6141
6245
  }
6142
6246
  ],
@@ -6150,7 +6254,7 @@
6150
6254
  }
6151
6255
  },
6152
6256
  {
6153
- "id": 515,
6257
+ "id": 526,
6154
6258
  "name": "searchTextMinimumCharacters",
6155
6259
  "kind": 1024,
6156
6260
  "kindString": "Property",
@@ -6179,7 +6283,7 @@
6179
6283
  "sources": [
6180
6284
  {
6181
6285
  "fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
6182
- "line": 85,
6286
+ "line": 92,
6183
6287
  "character": 9
6184
6288
  }
6185
6289
  ],
@@ -6193,7 +6297,7 @@
6193
6297
  }
6194
6298
  },
6195
6299
  {
6196
- "id": 378,
6300
+ "id": 383,
6197
6301
  "name": "showAddButton",
6198
6302
  "kind": 1024,
6199
6303
  "kindString": "Property",
@@ -6216,7 +6320,7 @@
6216
6320
  "sources": [
6217
6321
  {
6218
6322
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6219
- "line": 151,
6323
+ "line": 136,
6220
6324
  "character": 9
6221
6325
  }
6222
6326
  ],
@@ -6227,7 +6331,7 @@
6227
6331
  "defaultValue": "false"
6228
6332
  },
6229
6333
  {
6230
- "id": 379,
6334
+ "id": 384,
6231
6335
  "name": "showMoreConfig",
6232
6336
  "kind": 1024,
6233
6337
  "kindString": "Property",
@@ -6250,18 +6354,18 @@
6250
6354
  "sources": [
6251
6355
  {
6252
6356
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6253
- "line": 157,
6357
+ "line": 142,
6254
6358
  "character": 9
6255
6359
  }
6256
6360
  ],
6257
6361
  "type": {
6258
6362
  "type": "reference",
6259
- "id": 563,
6363
+ "id": 587,
6260
6364
  "name": "SkyLookupShowMoreConfig"
6261
6365
  }
6262
6366
  },
6263
6367
  {
6264
- "id": 415,
6368
+ "id": 420,
6265
6369
  "name": "themeSvc",
6266
6370
  "kind": 1024,
6267
6371
  "kindString": "Property",
@@ -6275,7 +6379,7 @@
6275
6379
  }
6276
6380
  },
6277
6381
  {
6278
- "id": 396,
6382
+ "id": 401,
6279
6383
  "name": "tokensController",
6280
6384
  "kind": 1024,
6281
6385
  "kindString": "Property",
@@ -6285,7 +6389,7 @@
6285
6389
  "sources": [
6286
6390
  {
6287
6391
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6288
- "line": 239,
6392
+ "line": 224,
6289
6393
  "character": 9
6290
6394
  }
6291
6395
  ],
@@ -6302,7 +6406,7 @@
6302
6406
  "defaultValue": "..."
6303
6407
  },
6304
6408
  {
6305
- "id": 370,
6409
+ "id": 375,
6306
6410
  "name": "data",
6307
6411
  "kind": 262144,
6308
6412
  "kindString": "Accessor",
@@ -6322,13 +6426,13 @@
6322
6426
  "sources": [
6323
6427
  {
6324
6428
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6325
- "line": 110,
6429
+ "line": 95,
6326
6430
  "character": 13
6327
6431
  }
6328
6432
  ],
6329
6433
  "getSignature": [
6330
6434
  {
6331
- "id": 371,
6435
+ "id": 376,
6332
6436
  "name": "data",
6333
6437
  "kind": 524288,
6334
6438
  "kindString": "Get signature",
@@ -6347,7 +6451,7 @@
6347
6451
  ],
6348
6452
  "setSignature": [
6349
6453
  {
6350
- "id": 372,
6454
+ "id": 377,
6351
6455
  "name": "data",
6352
6456
  "kind": 1048576,
6353
6457
  "kindString": "Set signature",
@@ -6363,7 +6467,7 @@
6363
6467
  },
6364
6468
  "parameters": [
6365
6469
  {
6366
- "id": 373,
6470
+ "id": 378,
6367
6471
  "name": "value",
6368
6472
  "kind": 32768,
6369
6473
  "kindString": "Parameter",
@@ -6385,7 +6489,7 @@
6385
6489
  ]
6386
6490
  },
6387
6491
  {
6388
- "id": 502,
6492
+ "id": 513,
6389
6493
  "name": "descriptorProperty",
6390
6494
  "kind": 262144,
6391
6495
  "kindString": "Accessor",
@@ -6405,13 +6509,13 @@
6405
6509
  "sources": [
6406
6510
  {
6407
6511
  "fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
6408
- "line": 28,
6512
+ "line": 35,
6409
6513
  "character": 13
6410
6514
  }
6411
6515
  ],
6412
6516
  "getSignature": [
6413
6517
  {
6414
- "id": 503,
6518
+ "id": 514,
6415
6519
  "name": "descriptorProperty",
6416
6520
  "kind": 524288,
6417
6521
  "kindString": "Get signature",
@@ -6427,7 +6531,7 @@
6427
6531
  ],
6428
6532
  "setSignature": [
6429
6533
  {
6430
- "id": 504,
6534
+ "id": 515,
6431
6535
  "name": "descriptorProperty",
6432
6536
  "kind": 1048576,
6433
6537
  "kindString": "Set signature",
@@ -6437,13 +6541,13 @@
6437
6541
  "tags": [
6438
6542
  {
6439
6543
  "tag": "default",
6440
- "text": "name\n"
6544
+ "text": "\"name\"\n"
6441
6545
  }
6442
6546
  ]
6443
6547
  },
6444
6548
  "parameters": [
6445
6549
  {
6446
- "id": 505,
6550
+ "id": 516,
6447
6551
  "name": "value",
6448
6552
  "kind": 32768,
6449
6553
  "kindString": "Parameter",
@@ -6462,7 +6566,7 @@
6462
6566
  ]
6463
6567
  },
6464
6568
  {
6465
- "id": 506,
6569
+ "id": 517,
6466
6570
  "name": "propertiesToSearch",
6467
6571
  "kind": 262144,
6468
6572
  "kindString": "Accessor",
@@ -6482,13 +6586,13 @@
6482
6586
  "sources": [
6483
6587
  {
6484
6588
  "fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
6485
- "line": 41,
6589
+ "line": 48,
6486
6590
  "character": 13
6487
6591
  }
6488
6592
  ],
6489
6593
  "getSignature": [
6490
6594
  {
6491
- "id": 507,
6595
+ "id": 518,
6492
6596
  "name": "propertiesToSearch",
6493
6597
  "kind": 524288,
6494
6598
  "kindString": "Get signature",
@@ -6507,7 +6611,7 @@
6507
6611
  ],
6508
6612
  "setSignature": [
6509
6613
  {
6510
- "id": 508,
6614
+ "id": 519,
6511
6615
  "name": "propertiesToSearch",
6512
6616
  "kind": 1048576,
6513
6617
  "kindString": "Set signature",
@@ -6517,13 +6621,13 @@
6517
6621
  "tags": [
6518
6622
  {
6519
6623
  "tag": "default",
6520
- "text": "['name']\n"
6624
+ "text": "[\"name\"]\n"
6521
6625
  }
6522
6626
  ]
6523
6627
  },
6524
6628
  "parameters": [
6525
6629
  {
6526
- "id": 509,
6630
+ "id": 520,
6527
6631
  "name": "value",
6528
6632
  "kind": 32768,
6529
6633
  "kindString": "Parameter",
@@ -6545,7 +6649,7 @@
6545
6649
  ]
6546
6650
  },
6547
6651
  {
6548
- "id": 510,
6652
+ "id": 521,
6549
6653
  "name": "search",
6550
6654
  "kind": 262144,
6551
6655
  "kindString": "Accessor",
@@ -6565,13 +6669,13 @@
6565
6669
  "sources": [
6566
6670
  {
6567
6671
  "fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
6568
- "line": 56,
6672
+ "line": 63,
6569
6673
  "character": 13
6570
6674
  }
6571
6675
  ],
6572
6676
  "getSignature": [
6573
6677
  {
6574
- "id": 511,
6678
+ "id": 522,
6575
6679
  "name": "search",
6576
6680
  "kind": 524288,
6577
6681
  "kindString": "Get signature",
@@ -6581,14 +6685,14 @@
6581
6685
  },
6582
6686
  "type": {
6583
6687
  "type": "reference",
6584
- "id": 524,
6688
+ "id": 548,
6585
6689
  "name": "SkyAutocompleteSearchFunction"
6586
6690
  }
6587
6691
  }
6588
6692
  ],
6589
6693
  "setSignature": [
6590
6694
  {
6591
- "id": 512,
6695
+ "id": 523,
6592
6696
  "name": "search",
6593
6697
  "kind": 1048576,
6594
6698
  "kindString": "Set signature",
@@ -6598,14 +6702,14 @@
6598
6702
  },
6599
6703
  "parameters": [
6600
6704
  {
6601
- "id": 513,
6705
+ "id": 524,
6602
6706
  "name": "value",
6603
6707
  "kind": 32768,
6604
6708
  "kindString": "Parameter",
6605
6709
  "flags": {},
6606
6710
  "type": {
6607
6711
  "type": "reference",
6608
- "id": 524,
6712
+ "id": 548,
6609
6713
  "name": "SkyAutocompleteSearchFunction"
6610
6714
  }
6611
6715
  }
@@ -6618,7 +6722,7 @@
6618
6722
  ]
6619
6723
  },
6620
6724
  {
6621
- "id": 380,
6725
+ "id": 385,
6622
6726
  "name": "selectMode",
6623
6727
  "kind": 262144,
6624
6728
  "kindString": "Accessor",
@@ -6638,13 +6742,13 @@
6638
6742
  "sources": [
6639
6743
  {
6640
6744
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6641
- "line": 164,
6745
+ "line": 149,
6642
6746
  "character": 13
6643
6747
  }
6644
6748
  ],
6645
6749
  "getSignature": [
6646
6750
  {
6647
- "id": 381,
6751
+ "id": 386,
6648
6752
  "name": "selectMode",
6649
6753
  "kind": 524288,
6650
6754
  "kindString": "Get signature",
@@ -6654,14 +6758,14 @@
6654
6758
  },
6655
6759
  "type": {
6656
6760
  "type": "reference",
6657
- "id": 562,
6761
+ "id": 586,
6658
6762
  "name": "SkyLookupSelectModeType"
6659
6763
  }
6660
6764
  }
6661
6765
  ],
6662
6766
  "setSignature": [
6663
6767
  {
6664
- "id": 382,
6768
+ "id": 387,
6665
6769
  "name": "selectMode",
6666
6770
  "kind": 1048576,
6667
6771
  "kindString": "Set signature",
@@ -6677,14 +6781,14 @@
6677
6781
  },
6678
6782
  "parameters": [
6679
6783
  {
6680
- "id": 383,
6784
+ "id": 388,
6681
6785
  "name": "value",
6682
6786
  "kind": 32768,
6683
6787
  "kindString": "Parameter",
6684
6788
  "flags": {},
6685
6789
  "type": {
6686
6790
  "type": "reference",
6687
- "id": 562,
6791
+ "id": 586,
6688
6792
  "name": "SkyLookupSelectModeType"
6689
6793
  }
6690
6794
  }
@@ -6697,7 +6801,7 @@
6697
6801
  ]
6698
6802
  },
6699
6803
  {
6700
- "id": 386,
6804
+ "id": 391,
6701
6805
  "name": "tokens",
6702
6806
  "kind": 262144,
6703
6807
  "kindString": "Accessor",
@@ -6707,13 +6811,13 @@
6707
6811
  "sources": [
6708
6812
  {
6709
6813
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6710
- "line": 198,
6814
+ "line": 183,
6711
6815
  "character": 13
6712
6816
  }
6713
6817
  ],
6714
6818
  "getSignature": [
6715
6819
  {
6716
- "id": 387,
6820
+ "id": 392,
6717
6821
  "name": "tokens",
6718
6822
  "kind": 524288,
6719
6823
  "kindString": "Get signature",
@@ -6729,14 +6833,14 @@
6729
6833
  ],
6730
6834
  "setSignature": [
6731
6835
  {
6732
- "id": 388,
6836
+ "id": 393,
6733
6837
  "name": "tokens",
6734
6838
  "kind": 1048576,
6735
6839
  "kindString": "Set signature",
6736
6840
  "flags": {},
6737
6841
  "parameters": [
6738
6842
  {
6739
- "id": 389,
6843
+ "id": 394,
6740
6844
  "name": "value",
6741
6845
  "kind": 32768,
6742
6846
  "kindString": "Parameter",
@@ -6758,7 +6862,7 @@
6758
6862
  ]
6759
6863
  },
6760
6864
  {
6761
- "id": 390,
6865
+ "id": 395,
6762
6866
  "name": "value",
6763
6867
  "kind": 262144,
6764
6868
  "kindString": "Accessor",
@@ -6768,13 +6872,13 @@
6768
6872
  "sources": [
6769
6873
  {
6770
6874
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6771
- "line": 222,
6875
+ "line": 207,
6772
6876
  "character": 13
6773
6877
  }
6774
6878
  ],
6775
6879
  "getSignature": [
6776
6880
  {
6777
- "id": 391,
6881
+ "id": 396,
6778
6882
  "name": "value",
6779
6883
  "kind": 524288,
6780
6884
  "kindString": "Get signature",
@@ -6790,14 +6894,14 @@
6790
6894
  ],
6791
6895
  "setSignature": [
6792
6896
  {
6793
- "id": 392,
6897
+ "id": 397,
6794
6898
  "name": "value",
6795
6899
  "kind": 1048576,
6796
6900
  "kindString": "Set signature",
6797
6901
  "flags": {},
6798
6902
  "parameters": [
6799
6903
  {
6800
- "id": 393,
6904
+ "id": 398,
6801
6905
  "name": "newValue",
6802
6906
  "kind": 32768,
6803
6907
  "kindString": "Parameter",
@@ -6819,7 +6923,7 @@
6819
6923
  ]
6820
6924
  },
6821
6925
  {
6822
- "id": 422,
6926
+ "id": 427,
6823
6927
  "name": "addButtonClicked",
6824
6928
  "kind": 2048,
6825
6929
  "kindString": "Method",
@@ -6829,13 +6933,13 @@
6829
6933
  "sources": [
6830
6934
  {
6831
6935
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6832
- "line": 341,
6936
+ "line": 326,
6833
6937
  "character": 9
6834
6938
  }
6835
6939
  ],
6836
6940
  "signatures": [
6837
6941
  {
6838
- "id": 423,
6942
+ "id": 428,
6839
6943
  "name": "addButtonClicked",
6840
6944
  "kind": 4096,
6841
6945
  "kindString": "Call signature",
@@ -6848,7 +6952,7 @@
6848
6952
  ]
6849
6953
  },
6850
6954
  {
6851
- "id": 459,
6955
+ "id": 464,
6852
6956
  "name": "clearSearchText",
6853
6957
  "kind": 2048,
6854
6958
  "kindString": "Method",
@@ -6858,13 +6962,13 @@
6858
6962
  "sources": [
6859
6963
  {
6860
6964
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6861
- "line": 448,
6965
+ "line": 433,
6862
6966
  "character": 9
6863
6967
  }
6864
6968
  ],
6865
6969
  "signatures": [
6866
6970
  {
6867
- "id": 460,
6971
+ "id": 465,
6868
6972
  "name": "clearSearchText",
6869
6973
  "kind": 4096,
6870
6974
  "kindString": "Call signature",
@@ -6877,7 +6981,7 @@
6877
6981
  ]
6878
6982
  },
6879
6983
  {
6880
- "id": 461,
6984
+ "id": 466,
6881
6985
  "name": "inputKeydown",
6882
6986
  "kind": 2048,
6883
6987
  "kindString": "Method",
@@ -6887,20 +6991,20 @@
6887
6991
  "sources": [
6888
6992
  {
6889
6993
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6890
- "line": 457,
6994
+ "line": 442,
6891
6995
  "character": 9
6892
6996
  }
6893
6997
  ],
6894
6998
  "signatures": [
6895
6999
  {
6896
- "id": 462,
7000
+ "id": 467,
6897
7001
  "name": "inputKeydown",
6898
7002
  "kind": 4096,
6899
7003
  "kindString": "Call signature",
6900
7004
  "flags": {},
6901
7005
  "parameters": [
6902
7006
  {
6903
- "id": 463,
7007
+ "id": 468,
6904
7008
  "name": "event",
6905
7009
  "kind": 32768,
6906
7010
  "kindString": "Parameter",
@@ -6911,7 +7015,7 @@
6911
7015
  }
6912
7016
  },
6913
7017
  {
6914
- "id": 464,
7018
+ "id": 469,
6915
7019
  "name": "value",
6916
7020
  "kind": 32768,
6917
7021
  "kindString": "Parameter",
@@ -6930,7 +7034,7 @@
6930
7034
  ]
6931
7035
  },
6932
7036
  {
6933
- "id": 465,
7037
+ "id": 470,
6934
7038
  "name": "inputKeyup",
6935
7039
  "kind": 2048,
6936
7040
  "kindString": "Method",
@@ -6940,20 +7044,20 @@
6940
7044
  "sources": [
6941
7045
  {
6942
7046
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6943
- "line": 479,
7047
+ "line": 464,
6944
7048
  "character": 9
6945
7049
  }
6946
7050
  ],
6947
7051
  "signatures": [
6948
7052
  {
6949
- "id": 466,
7053
+ "id": 471,
6950
7054
  "name": "inputKeyup",
6951
7055
  "kind": 4096,
6952
7056
  "kindString": "Call signature",
6953
7057
  "flags": {},
6954
7058
  "parameters": [
6955
7059
  {
6956
- "id": 467,
7060
+ "id": 472,
6957
7061
  "name": "event",
6958
7062
  "kind": 32768,
6959
7063
  "kindString": "Parameter",
@@ -6972,7 +7076,7 @@
6972
7076
  ]
6973
7077
  },
6974
7078
  {
6975
- "id": 418,
7079
+ "id": 423,
6976
7080
  "name": "ngAfterViewInit",
6977
7081
  "kind": 2048,
6978
7082
  "kindString": "Method",
@@ -6982,13 +7086,13 @@
6982
7086
  "sources": [
6983
7087
  {
6984
7088
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6985
- "line": 328,
7089
+ "line": 313,
6986
7090
  "character": 9
6987
7091
  }
6988
7092
  ],
6989
7093
  "signatures": [
6990
7094
  {
6991
- "id": 419,
7095
+ "id": 424,
6992
7096
  "name": "ngAfterViewInit",
6993
7097
  "kind": 4096,
6994
7098
  "kindString": "Call signature",
@@ -7009,7 +7113,7 @@
7009
7113
  }
7010
7114
  },
7011
7115
  {
7012
- "id": 420,
7116
+ "id": 425,
7013
7117
  "name": "ngOnDestroy",
7014
7118
  "kind": 2048,
7015
7119
  "kindString": "Method",
@@ -7019,13 +7123,13 @@
7019
7123
  "sources": [
7020
7124
  {
7021
7125
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7022
- "line": 334,
7126
+ "line": 319,
7023
7127
  "character": 9
7024
7128
  }
7025
7129
  ],
7026
7130
  "signatures": [
7027
7131
  {
7028
- "id": 421,
7132
+ "id": 426,
7029
7133
  "name": "ngOnDestroy",
7030
7134
  "kind": 4096,
7031
7135
  "kindString": "Call signature",
@@ -7046,7 +7150,7 @@
7046
7150
  }
7047
7151
  },
7048
7152
  {
7049
- "id": 416,
7153
+ "id": 421,
7050
7154
  "name": "ngOnInit",
7051
7155
  "kind": 2048,
7052
7156
  "kindString": "Method",
@@ -7056,13 +7160,13 @@
7056
7160
  "sources": [
7057
7161
  {
7058
7162
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7059
- "line": 303,
7163
+ "line": 288,
7060
7164
  "character": 9
7061
7165
  }
7062
7166
  ],
7063
7167
  "signatures": [
7064
7168
  {
7065
- "id": 417,
7169
+ "id": 422,
7066
7170
  "name": "ngOnInit",
7067
7171
  "kind": 4096,
7068
7172
  "kindString": "Call signature",
@@ -7083,7 +7187,7 @@
7083
7187
  }
7084
7188
  },
7085
7189
  {
7086
- "id": 427,
7190
+ "id": 432,
7087
7191
  "name": "onAutocompleteBlur",
7088
7192
  "kind": 2048,
7089
7193
  "kindString": "Method",
@@ -7093,13 +7197,13 @@
7093
7197
  "sources": [
7094
7198
  {
7095
7199
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7096
- "line": 359,
7200
+ "line": 344,
7097
7201
  "character": 9
7098
7202
  }
7099
7203
  ],
7100
7204
  "signatures": [
7101
7205
  {
7102
- "id": 428,
7206
+ "id": 433,
7103
7207
  "name": "onAutocompleteBlur",
7104
7208
  "kind": 4096,
7105
7209
  "kindString": "Call signature",
@@ -7112,7 +7216,7 @@
7112
7216
  ]
7113
7217
  },
7114
7218
  {
7115
- "id": 424,
7219
+ "id": 429,
7116
7220
  "name": "onAutocompleteSelectionChange",
7117
7221
  "kind": 2048,
7118
7222
  "kindString": "Method",
@@ -7122,27 +7226,27 @@
7122
7226
  "sources": [
7123
7227
  {
7124
7228
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7125
- "line": 348,
7229
+ "line": 333,
7126
7230
  "character": 9
7127
7231
  }
7128
7232
  ],
7129
7233
  "signatures": [
7130
7234
  {
7131
- "id": 425,
7235
+ "id": 430,
7132
7236
  "name": "onAutocompleteSelectionChange",
7133
7237
  "kind": 4096,
7134
7238
  "kindString": "Call signature",
7135
7239
  "flags": {},
7136
7240
  "parameters": [
7137
7241
  {
7138
- "id": 426,
7242
+ "id": 431,
7139
7243
  "name": "change",
7140
7244
  "kind": 32768,
7141
7245
  "kindString": "Parameter",
7142
7246
  "flags": {},
7143
7247
  "type": {
7144
7248
  "type": "reference",
7145
- "id": 535,
7249
+ "id": 559,
7146
7250
  "name": "SkyAutocompleteSelectionChange"
7147
7251
  }
7148
7252
  }
@@ -7155,7 +7259,7 @@
7155
7259
  ]
7156
7260
  },
7157
7261
  {
7158
- "id": 440,
7262
+ "id": 445,
7159
7263
  "name": "onChange",
7160
7264
  "kind": 2048,
7161
7265
  "kindString": "Method",
@@ -7165,20 +7269,20 @@
7165
7269
  "sources": [
7166
7270
  {
7167
7271
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7168
- "line": 424,
7272
+ "line": 409,
7169
7273
  "character": 9
7170
7274
  }
7171
7275
  ],
7172
7276
  "signatures": [
7173
7277
  {
7174
- "id": 441,
7278
+ "id": 446,
7175
7279
  "name": "onChange",
7176
7280
  "kind": 4096,
7177
7281
  "kindString": "Call signature",
7178
7282
  "flags": {},
7179
7283
  "parameters": [
7180
7284
  {
7181
- "id": 442,
7285
+ "id": 447,
7182
7286
  "name": "value",
7183
7287
  "kind": 32768,
7184
7288
  "kindString": "Parameter",
@@ -7200,7 +7304,50 @@
7200
7304
  ]
7201
7305
  },
7202
7306
  {
7203
- "id": 468,
7307
+ "id": 484,
7308
+ "name": "onSearchAsync",
7309
+ "kind": 2048,
7310
+ "kindString": "Method",
7311
+ "flags": {
7312
+ "isPublic": true
7313
+ },
7314
+ "sources": [
7315
+ {
7316
+ "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7317
+ "line": 620,
7318
+ "character": 9
7319
+ }
7320
+ ],
7321
+ "signatures": [
7322
+ {
7323
+ "id": 485,
7324
+ "name": "onSearchAsync",
7325
+ "kind": 4096,
7326
+ "kindString": "Call signature",
7327
+ "flags": {},
7328
+ "parameters": [
7329
+ {
7330
+ "id": 486,
7331
+ "name": "args",
7332
+ "kind": 32768,
7333
+ "kindString": "Parameter",
7334
+ "flags": {},
7335
+ "type": {
7336
+ "type": "reference",
7337
+ "id": 536,
7338
+ "name": "SkyAutocompleteSearchAsyncArgs"
7339
+ }
7340
+ }
7341
+ ],
7342
+ "type": {
7343
+ "type": "intrinsic",
7344
+ "name": "void"
7345
+ }
7346
+ }
7347
+ ]
7348
+ },
7349
+ {
7350
+ "id": 473,
7204
7351
  "name": "onSearchButtonClick",
7205
7352
  "kind": 2048,
7206
7353
  "kindString": "Method",
@@ -7210,13 +7357,13 @@
7210
7357
  "sources": [
7211
7358
  {
7212
7359
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7213
- "line": 505,
7360
+ "line": 490,
7214
7361
  "character": 9
7215
7362
  }
7216
7363
  ],
7217
7364
  "signatures": [
7218
7365
  {
7219
- "id": 469,
7366
+ "id": 474,
7220
7367
  "name": "onSearchButtonClick",
7221
7368
  "kind": 4096,
7222
7369
  "kindString": "Call signature",
@@ -7229,7 +7376,7 @@
7229
7376
  ]
7230
7377
  },
7231
7378
  {
7232
- "id": 470,
7379
+ "id": 475,
7233
7380
  "name": "onShowMoreClick",
7234
7381
  "kind": 2048,
7235
7382
  "kindString": "Method",
@@ -7239,20 +7386,20 @@
7239
7386
  "sources": [
7240
7387
  {
7241
7388
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7242
- "line": 524,
7389
+ "line": 509,
7243
7390
  "character": 9
7244
7391
  }
7245
7392
  ],
7246
7393
  "signatures": [
7247
7394
  {
7248
- "id": 471,
7395
+ "id": 476,
7249
7396
  "name": "onShowMoreClick",
7250
7397
  "kind": 4096,
7251
7398
  "kindString": "Call signature",
7252
7399
  "flags": {},
7253
7400
  "parameters": [
7254
7401
  {
7255
- "id": 472,
7402
+ "id": 477,
7256
7403
  "name": "event",
7257
7404
  "kind": 32768,
7258
7405
  "kindString": "Parameter",
@@ -7271,7 +7418,7 @@
7271
7418
  ]
7272
7419
  },
7273
7420
  {
7274
- "id": 429,
7421
+ "id": 434,
7275
7422
  "name": "onTokensChange",
7276
7423
  "kind": 2048,
7277
7424
  "kindString": "Method",
@@ -7281,20 +7428,20 @@
7281
7428
  "sources": [
7282
7429
  {
7283
7430
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7284
- "line": 363,
7431
+ "line": 348,
7285
7432
  "character": 9
7286
7433
  }
7287
7434
  ],
7288
7435
  "signatures": [
7289
7436
  {
7290
- "id": 430,
7437
+ "id": 435,
7291
7438
  "name": "onTokensChange",
7292
7439
  "kind": 4096,
7293
7440
  "kindString": "Call signature",
7294
7441
  "flags": {},
7295
7442
  "parameters": [
7296
7443
  {
7297
- "id": 431,
7444
+ "id": 436,
7298
7445
  "name": "change",
7299
7446
  "kind": 32768,
7300
7447
  "kindString": "Parameter",
@@ -7316,7 +7463,7 @@
7316
7463
  ]
7317
7464
  },
7318
7465
  {
7319
- "id": 432,
7466
+ "id": 437,
7320
7467
  "name": "onTokensFocusIndexOverRange",
7321
7468
  "kind": 2048,
7322
7469
  "kindString": "Method",
@@ -7326,13 +7473,13 @@
7326
7473
  "sources": [
7327
7474
  {
7328
7475
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7329
- "line": 388,
7476
+ "line": 373,
7330
7477
  "character": 9
7331
7478
  }
7332
7479
  ],
7333
7480
  "signatures": [
7334
7481
  {
7335
- "id": 433,
7482
+ "id": 438,
7336
7483
  "name": "onTokensFocusIndexOverRange",
7337
7484
  "kind": 4096,
7338
7485
  "kindString": "Call signature",
@@ -7345,7 +7492,7 @@
7345
7492
  ]
7346
7493
  },
7347
7494
  {
7348
- "id": 434,
7495
+ "id": 439,
7349
7496
  "name": "onTokensKeyUp",
7350
7497
  "kind": 2048,
7351
7498
  "kindString": "Method",
@@ -7355,20 +7502,20 @@
7355
7502
  "sources": [
7356
7503
  {
7357
7504
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7358
- "line": 394,
7505
+ "line": 379,
7359
7506
  "character": 9
7360
7507
  }
7361
7508
  ],
7362
7509
  "signatures": [
7363
7510
  {
7364
- "id": 435,
7511
+ "id": 440,
7365
7512
  "name": "onTokensKeyUp",
7366
7513
  "kind": 4096,
7367
7514
  "kindString": "Call signature",
7368
7515
  "flags": {},
7369
7516
  "parameters": [
7370
7517
  {
7371
- "id": 436,
7518
+ "id": 441,
7372
7519
  "name": "event",
7373
7520
  "kind": 32768,
7374
7521
  "kindString": "Parameter",
@@ -7387,7 +7534,7 @@
7387
7534
  ]
7388
7535
  },
7389
7536
  {
7390
- "id": 443,
7537
+ "id": 448,
7391
7538
  "name": "onTouched",
7392
7539
  "kind": 2048,
7393
7540
  "kindString": "Method",
@@ -7397,13 +7544,13 @@
7397
7544
  "sources": [
7398
7545
  {
7399
7546
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7400
- "line": 426,
7547
+ "line": 411,
7401
7548
  "character": 9
7402
7549
  }
7403
7550
  ],
7404
7551
  "signatures": [
7405
7552
  {
7406
- "id": 444,
7553
+ "id": 449,
7407
7554
  "name": "onTouched",
7408
7555
  "kind": 4096,
7409
7556
  "kindString": "Call signature",
@@ -7416,7 +7563,7 @@
7416
7563
  ]
7417
7564
  },
7418
7565
  {
7419
- "id": 473,
7566
+ "id": 481,
7420
7567
  "name": "openPicker",
7421
7568
  "kind": 2048,
7422
7569
  "kindString": "Method",
@@ -7426,20 +7573,20 @@
7426
7573
  "sources": [
7427
7574
  {
7428
7575
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7429
- "line": 532,
7576
+ "line": 574,
7430
7577
  "character": 9
7431
7578
  }
7432
7579
  ],
7433
7580
  "signatures": [
7434
7581
  {
7435
- "id": 474,
7582
+ "id": 482,
7436
7583
  "name": "openPicker",
7437
7584
  "kind": 4096,
7438
7585
  "kindString": "Call signature",
7439
7586
  "flags": {},
7440
7587
  "parameters": [
7441
7588
  {
7442
- "id": 475,
7589
+ "id": 483,
7443
7590
  "name": "initialSearch",
7444
7591
  "kind": 32768,
7445
7592
  "kindString": "Parameter",
@@ -7458,7 +7605,7 @@
7458
7605
  ]
7459
7606
  },
7460
7607
  {
7461
- "id": 445,
7608
+ "id": 450,
7462
7609
  "name": "registerOnChange",
7463
7610
  "kind": 2048,
7464
7611
  "kindString": "Method",
@@ -7468,20 +7615,20 @@
7468
7615
  "sources": [
7469
7616
  {
7470
7617
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7471
- "line": 428,
7618
+ "line": 413,
7472
7619
  "character": 9
7473
7620
  }
7474
7621
  ],
7475
7622
  "signatures": [
7476
7623
  {
7477
- "id": 446,
7624
+ "id": 451,
7478
7625
  "name": "registerOnChange",
7479
7626
  "kind": 4096,
7480
7627
  "kindString": "Call signature",
7481
7628
  "flags": {},
7482
7629
  "parameters": [
7483
7630
  {
7484
- "id": 447,
7631
+ "id": 452,
7485
7632
  "name": "fn",
7486
7633
  "kind": 32768,
7487
7634
  "kindString": "Parameter",
@@ -7489,21 +7636,21 @@
7489
7636
  "type": {
7490
7637
  "type": "reflection",
7491
7638
  "declaration": {
7492
- "id": 448,
7639
+ "id": 453,
7493
7640
  "name": "__type",
7494
7641
  "kind": 65536,
7495
7642
  "kindString": "Type literal",
7496
7643
  "flags": {},
7497
7644
  "signatures": [
7498
7645
  {
7499
- "id": 449,
7646
+ "id": 454,
7500
7647
  "name": "__type",
7501
7648
  "kind": 4096,
7502
7649
  "kindString": "Call signature",
7503
7650
  "flags": {},
7504
7651
  "parameters": [
7505
7652
  {
7506
- "id": 450,
7653
+ "id": 455,
7507
7654
  "name": "value",
7508
7655
  "kind": 32768,
7509
7656
  "kindString": "Parameter",
@@ -7540,7 +7687,7 @@
7540
7687
  }
7541
7688
  },
7542
7689
  {
7543
- "id": 451,
7690
+ "id": 456,
7544
7691
  "name": "registerOnTouched",
7545
7692
  "kind": 2048,
7546
7693
  "kindString": "Method",
@@ -7550,20 +7697,20 @@
7550
7697
  "sources": [
7551
7698
  {
7552
7699
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7553
- "line": 432,
7700
+ "line": 417,
7554
7701
  "character": 9
7555
7702
  }
7556
7703
  ],
7557
7704
  "signatures": [
7558
7705
  {
7559
- "id": 452,
7706
+ "id": 457,
7560
7707
  "name": "registerOnTouched",
7561
7708
  "kind": 4096,
7562
7709
  "kindString": "Call signature",
7563
7710
  "flags": {},
7564
7711
  "parameters": [
7565
7712
  {
7566
- "id": 453,
7713
+ "id": 458,
7567
7714
  "name": "fn",
7568
7715
  "kind": 32768,
7569
7716
  "kindString": "Parameter",
@@ -7571,14 +7718,14 @@
7571
7718
  "type": {
7572
7719
  "type": "reflection",
7573
7720
  "declaration": {
7574
- "id": 454,
7721
+ "id": 459,
7575
7722
  "name": "__type",
7576
7723
  "kind": 65536,
7577
7724
  "kindString": "Type literal",
7578
7725
  "flags": {},
7579
7726
  "signatures": [
7580
7727
  {
7581
- "id": 455,
7728
+ "id": 460,
7582
7729
  "name": "__type",
7583
7730
  "kind": 4096,
7584
7731
  "kindString": "Call signature",
@@ -7609,7 +7756,7 @@
7609
7756
  }
7610
7757
  },
7611
7758
  {
7612
- "id": 456,
7759
+ "id": 461,
7613
7760
  "name": "setDisabledState",
7614
7761
  "kind": 2048,
7615
7762
  "kindString": "Method",
@@ -7619,20 +7766,20 @@
7619
7766
  "sources": [
7620
7767
  {
7621
7768
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7622
- "line": 437,
7769
+ "line": 422,
7623
7770
  "character": 9
7624
7771
  }
7625
7772
  ],
7626
7773
  "signatures": [
7627
7774
  {
7628
- "id": 457,
7775
+ "id": 462,
7629
7776
  "name": "setDisabledState",
7630
7777
  "kind": 4096,
7631
7778
  "kindString": "Call signature",
7632
7779
  "flags": {},
7633
7780
  "parameters": [
7634
7781
  {
7635
- "id": 458,
7782
+ "id": 463,
7636
7783
  "name": "disabled",
7637
7784
  "kind": 32768,
7638
7785
  "kindString": "Parameter",
@@ -7659,7 +7806,7 @@
7659
7806
  }
7660
7807
  },
7661
7808
  {
7662
- "id": 437,
7809
+ "id": 442,
7663
7810
  "name": "writeValue",
7664
7811
  "kind": 2048,
7665
7812
  "kindString": "Method",
@@ -7669,20 +7816,20 @@
7669
7816
  "sources": [
7670
7817
  {
7671
7818
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7672
- "line": 417,
7819
+ "line": 402,
7673
7820
  "character": 9
7674
7821
  }
7675
7822
  ],
7676
7823
  "signatures": [
7677
7824
  {
7678
- "id": 438,
7825
+ "id": 443,
7679
7826
  "name": "writeValue",
7680
7827
  "kind": 4096,
7681
7828
  "kindString": "Call signature",
7682
7829
  "flags": {},
7683
7830
  "parameters": [
7684
7831
  {
7685
- "id": 439,
7832
+ "id": 444,
7686
7833
  "name": "value",
7687
7834
  "kind": 32768,
7688
7835
  "kindString": "Parameter",
@@ -7717,80 +7864,82 @@
7717
7864
  "title": "Constructors",
7718
7865
  "kind": 512,
7719
7866
  "children": [
7720
- 356
7867
+ 361
7721
7868
  ]
7722
7869
  },
7723
7870
  {
7724
7871
  "title": "Properties",
7725
7872
  "kind": 1024,
7726
7873
  "children": [
7727
- 385,
7728
- 367,
7729
- 368,
7730
- 369,
7731
- 394,
7732
- 501,
7874
+ 390,
7875
+ 372,
7876
+ 373,
7733
7877
  374,
7734
- 375,
7735
- 377,
7736
- 414,
7737
- 395,
7738
- 376,
7739
- 516,
7740
- 514,
7741
- 517,
7742
- 515,
7743
- 378,
7878
+ 399,
7879
+ 512,
7744
7880
  379,
7745
- 415,
7746
- 396
7881
+ 380,
7882
+ 382,
7883
+ 419,
7884
+ 400,
7885
+ 381,
7886
+ 529,
7887
+ 527,
7888
+ 525,
7889
+ 528,
7890
+ 526,
7891
+ 383,
7892
+ 384,
7893
+ 420,
7894
+ 401
7747
7895
  ]
7748
7896
  },
7749
7897
  {
7750
7898
  "title": "Accessors",
7751
7899
  "kind": 262144,
7752
7900
  "children": [
7753
- 370,
7754
- 502,
7755
- 506,
7756
- 510,
7757
- 380,
7758
- 386,
7759
- 390
7901
+ 375,
7902
+ 513,
7903
+ 517,
7904
+ 521,
7905
+ 385,
7906
+ 391,
7907
+ 395
7760
7908
  ]
7761
7909
  },
7762
7910
  {
7763
7911
  "title": "Methods",
7764
7912
  "kind": 2048,
7765
7913
  "children": [
7766
- 422,
7767
- 459,
7768
- 461,
7769
- 465,
7770
- 418,
7771
- 420,
7772
- 416,
7773
7914
  427,
7774
- 424,
7775
- 440,
7776
- 468,
7915
+ 464,
7916
+ 466,
7777
7917
  470,
7778
- 429,
7918
+ 423,
7919
+ 425,
7920
+ 421,
7779
7921
  432,
7780
- 434,
7781
- 443,
7782
- 473,
7922
+ 429,
7783
7923
  445,
7784
- 451,
7924
+ 484,
7925
+ 473,
7926
+ 475,
7927
+ 434,
7928
+ 437,
7929
+ 439,
7930
+ 448,
7931
+ 481,
7932
+ 450,
7785
7933
  456,
7786
- 437
7934
+ 461,
7935
+ 442
7787
7936
  ]
7788
7937
  }
7789
7938
  ],
7790
7939
  "sources": [
7791
7940
  {
7792
7941
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
7793
- "line": 75,
7942
+ "line": 60,
7794
7943
  "character": 13
7795
7944
  }
7796
7945
  ],
@@ -7820,14 +7969,285 @@
7820
7969
  ]
7821
7970
  },
7822
7971
  {
7823
- "id": 535,
7972
+ "id": 536,
7973
+ "name": "SkyAutocompleteSearchAsyncArgs",
7974
+ "kind": 256,
7975
+ "kindString": "Interface",
7976
+ "flags": {},
7977
+ "comment": {
7978
+ "shortText": "Arguments passed when an asynchronous search is executed from the\nautocomplete or lookup component."
7979
+ },
7980
+ "children": [
7981
+ {
7982
+ "id": 540,
7983
+ "name": "continuationData",
7984
+ "kind": 1024,
7985
+ "kindString": "Property",
7986
+ "flags": {
7987
+ "isOptional": true
7988
+ },
7989
+ "comment": {
7990
+ "shortText": "A continuation token which can be set and then will be passed back with any future searches.\nThis is helpful for applications which utilize a token instead of an offset when fetching data."
7991
+ },
7992
+ "sources": [
7993
+ {
7994
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
7995
+ "line": 32,
7996
+ "character": 2
7997
+ }
7998
+ ],
7999
+ "type": {
8000
+ "type": "intrinsic",
8001
+ "name": "unknown"
8002
+ }
8003
+ },
8004
+ {
8005
+ "id": 538,
8006
+ "name": "displayType",
8007
+ "kind": 1024,
8008
+ "kindString": "Property",
8009
+ "flags": {},
8010
+ "comment": {
8011
+ "shortText": "How the search results will be displayed. Use this value to determine\nhow many results to return."
8012
+ },
8013
+ "sources": [
8014
+ {
8015
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
8016
+ "line": 19,
8017
+ "character": 2
8018
+ }
8019
+ ],
8020
+ "type": {
8021
+ "type": "reference",
8022
+ "id": 547,
8023
+ "name": "AutocompleteSearchAsyncResultDisplayType"
8024
+ }
8025
+ },
8026
+ {
8027
+ "id": 539,
8028
+ "name": "offset",
8029
+ "kind": 1024,
8030
+ "kindString": "Property",
8031
+ "flags": {},
8032
+ "comment": {
8033
+ "shortText": "The offset index of the first result to return. When search is executed\nas a result of an infinite scroll event, for example, offset will be set\nto the number of items already displayed."
8034
+ },
8035
+ "sources": [
8036
+ {
8037
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
8038
+ "line": 26,
8039
+ "character": 2
8040
+ }
8041
+ ],
8042
+ "type": {
8043
+ "type": "intrinsic",
8044
+ "name": "number"
8045
+ }
8046
+ },
8047
+ {
8048
+ "id": 541,
8049
+ "name": "result",
8050
+ "kind": 1024,
8051
+ "kindString": "Property",
8052
+ "flags": {
8053
+ "isOptional": true
8054
+ },
8055
+ "comment": {
8056
+ "shortText": "An Observable representing the search results. Consumers should set this\nwhen the event fires so the autocomplete or lookup component can subscribe\nto it and then display the results."
8057
+ },
8058
+ "sources": [
8059
+ {
8060
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
8061
+ "line": 39,
8062
+ "character": 2
8063
+ }
8064
+ ],
8065
+ "type": {
8066
+ "type": "reference",
8067
+ "typeArguments": [
8068
+ {
8069
+ "type": "reference",
8070
+ "id": 542,
8071
+ "name": "SkyAutocompleteSearchAsyncResult"
8072
+ }
8073
+ ],
8074
+ "name": "Observable"
8075
+ }
8076
+ },
8077
+ {
8078
+ "id": 537,
8079
+ "name": "searchText",
8080
+ "kind": 1024,
8081
+ "kindString": "Property",
8082
+ "flags": {},
8083
+ "comment": {
8084
+ "shortText": "The search text entered by the user."
8085
+ },
8086
+ "sources": [
8087
+ {
8088
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
8089
+ "line": 13,
8090
+ "character": 2
8091
+ }
8092
+ ],
8093
+ "type": {
8094
+ "type": "intrinsic",
8095
+ "name": "string"
8096
+ }
8097
+ }
8098
+ ],
8099
+ "groups": [
8100
+ {
8101
+ "title": "Properties",
8102
+ "kind": 1024,
8103
+ "children": [
8104
+ 540,
8105
+ 538,
8106
+ 539,
8107
+ 541,
8108
+ 537
8109
+ ]
8110
+ }
8111
+ ],
8112
+ "sources": [
8113
+ {
8114
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
8115
+ "line": 9,
8116
+ "character": 17
8117
+ }
8118
+ ]
8119
+ },
8120
+ {
8121
+ "id": 542,
8122
+ "name": "SkyAutocompleteSearchAsyncResult",
8123
+ "kind": 256,
8124
+ "kindString": "Interface",
8125
+ "flags": {},
8126
+ "comment": {
8127
+ "shortText": "The result of searching for items to display in an autocomplete or lookup field."
8128
+ },
8129
+ "children": [
8130
+ {
8131
+ "id": 543,
8132
+ "name": "continuationData",
8133
+ "kind": 1024,
8134
+ "kindString": "Property",
8135
+ "flags": {
8136
+ "isOptional": true
8137
+ },
8138
+ "comment": {
8139
+ "shortText": "Data provided on \"load more\" search result requests. Use this property for\ninformation such as a continuation token for paged database queries."
8140
+ },
8141
+ "sources": [
8142
+ {
8143
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result.ts",
8144
+ "line": 9,
8145
+ "character": 2
8146
+ }
8147
+ ],
8148
+ "type": {
8149
+ "type": "intrinsic",
8150
+ "name": "unknown"
8151
+ }
8152
+ },
8153
+ {
8154
+ "id": 544,
8155
+ "name": "hasMore",
8156
+ "kind": 1024,
8157
+ "kindString": "Property",
8158
+ "flags": {
8159
+ "isOptional": true
8160
+ },
8161
+ "comment": {
8162
+ "shortText": "Indicates whether there are more results that match the search criteria."
8163
+ },
8164
+ "sources": [
8165
+ {
8166
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result.ts",
8167
+ "line": 13,
8168
+ "character": 2
8169
+ }
8170
+ ],
8171
+ "type": {
8172
+ "type": "intrinsic",
8173
+ "name": "boolean"
8174
+ }
8175
+ },
8176
+ {
8177
+ "id": 545,
8178
+ "name": "items",
8179
+ "kind": 1024,
8180
+ "kindString": "Property",
8181
+ "flags": {},
8182
+ "comment": {
8183
+ "shortText": "A list of items matching the search criteria. When there are more items that match\nthe search criteria, set the `hasMore` property to `true` more records can be lazy-loaded\nas the user scrolls through the search results."
8184
+ },
8185
+ "sources": [
8186
+ {
8187
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result.ts",
8188
+ "line": 19,
8189
+ "character": 2
8190
+ }
8191
+ ],
8192
+ "type": {
8193
+ "type": "array",
8194
+ "elementType": {
8195
+ "type": "intrinsic",
8196
+ "name": "unknown"
8197
+ }
8198
+ }
8199
+ },
8200
+ {
8201
+ "id": 546,
8202
+ "name": "totalCount",
8203
+ "kind": 1024,
8204
+ "kindString": "Property",
8205
+ "flags": {},
8206
+ "comment": {
8207
+ "shortText": "The total number of records that match the search criteria, including items not returned in\nthe current list of items."
8208
+ },
8209
+ "sources": [
8210
+ {
8211
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result.ts",
8212
+ "line": 24,
8213
+ "character": 2
8214
+ }
8215
+ ],
8216
+ "type": {
8217
+ "type": "intrinsic",
8218
+ "name": "number"
8219
+ }
8220
+ }
8221
+ ],
8222
+ "groups": [
8223
+ {
8224
+ "title": "Properties",
8225
+ "kind": 1024,
8226
+ "children": [
8227
+ 543,
8228
+ 544,
8229
+ 545,
8230
+ 546
8231
+ ]
8232
+ }
8233
+ ],
8234
+ "sources": [
8235
+ {
8236
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result.ts",
8237
+ "line": 4,
8238
+ "character": 17
8239
+ }
8240
+ ]
8241
+ },
8242
+ {
8243
+ "id": 559,
7824
8244
  "name": "SkyAutocompleteSelectionChange",
7825
8245
  "kind": 256,
7826
8246
  "kindString": "Interface",
7827
8247
  "flags": {},
7828
8248
  "children": [
7829
8249
  {
7830
- "id": 536,
8250
+ "id": 560,
7831
8251
  "name": "selectedItem",
7832
8252
  "kind": 1024,
7833
8253
  "kindString": "Property",
@@ -7855,7 +8275,7 @@
7855
8275
  "title": "Properties",
7856
8276
  "kind": 1024,
7857
8277
  "children": [
7858
- 536
8278
+ 560
7859
8279
  ]
7860
8280
  }
7861
8281
  ],
@@ -7868,7 +8288,7 @@
7868
8288
  ]
7869
8289
  },
7870
8290
  {
7871
- "id": 543,
8291
+ "id": 567,
7872
8292
  "name": "SkyCountryFieldCountry",
7873
8293
  "kind": 256,
7874
8294
  "kindString": "Interface",
@@ -7878,7 +8298,7 @@
7878
8298
  },
7879
8299
  "children": [
7880
8300
  {
7881
- "id": 546,
8301
+ "id": 570,
7882
8302
  "name": "dialCode",
7883
8303
  "kind": 1024,
7884
8304
  "kindString": "Property",
@@ -7901,7 +8321,7 @@
7901
8321
  }
7902
8322
  },
7903
8323
  {
7904
- "id": 544,
8324
+ "id": 568,
7905
8325
  "name": "iso2",
7906
8326
  "kind": 1024,
7907
8327
  "kindString": "Property",
@@ -7928,7 +8348,7 @@
7928
8348
  }
7929
8349
  },
7930
8350
  {
7931
- "id": 545,
8351
+ "id": 569,
7932
8352
  "name": "name",
7933
8353
  "kind": 1024,
7934
8354
  "kindString": "Property",
@@ -7956,9 +8376,9 @@
7956
8376
  "title": "Properties",
7957
8377
  "kind": 1024,
7958
8378
  "children": [
7959
- 546,
7960
- 544,
7961
- 545
8379
+ 570,
8380
+ 568,
8381
+ 569
7962
8382
  ]
7963
8383
  }
7964
8384
  ],
@@ -7971,7 +8391,7 @@
7971
8391
  ]
7972
8392
  },
7973
8393
  {
7974
- "id": 552,
8394
+ "id": 576,
7975
8395
  "name": "SkyLookupAddCallbackArgs",
7976
8396
  "kind": 256,
7977
8397
  "kindString": "Interface",
@@ -7981,7 +8401,7 @@
7981
8401
  },
7982
8402
  "children": [
7983
8403
  {
7984
- "id": 554,
8404
+ "id": 578,
7985
8405
  "name": "data",
7986
8406
  "kind": 1024,
7987
8407
  "kindString": "Property",
@@ -8007,7 +8427,7 @@
8007
8427
  }
8008
8428
  },
8009
8429
  {
8010
- "id": 553,
8430
+ "id": 577,
8011
8431
  "name": "item",
8012
8432
  "kind": 1024,
8013
8433
  "kindString": "Property",
@@ -8033,8 +8453,8 @@
8033
8453
  "title": "Properties",
8034
8454
  "kind": 1024,
8035
8455
  "children": [
8036
- 554,
8037
- 553
8456
+ 578,
8457
+ 577
8038
8458
  ]
8039
8459
  }
8040
8460
  ],
@@ -8047,7 +8467,7 @@
8047
8467
  ]
8048
8468
  },
8049
8469
  {
8050
- "id": 555,
8470
+ "id": 579,
8051
8471
  "name": "SkyLookupAddClickEventArgs",
8052
8472
  "kind": 256,
8053
8473
  "kindString": "Interface",
@@ -8057,7 +8477,7 @@
8057
8477
  },
8058
8478
  "children": [
8059
8479
  {
8060
- "id": 556,
8480
+ "id": 580,
8061
8481
  "name": "itemAdded",
8062
8482
  "kind": 2048,
8063
8483
  "kindString": "Method",
@@ -8071,7 +8491,7 @@
8071
8491
  ],
8072
8492
  "signatures": [
8073
8493
  {
8074
- "id": 557,
8494
+ "id": 581,
8075
8495
  "name": "itemAdded",
8076
8496
  "kind": 4096,
8077
8497
  "kindString": "Call signature",
@@ -8081,7 +8501,7 @@
8081
8501
  },
8082
8502
  "parameters": [
8083
8503
  {
8084
- "id": 558,
8504
+ "id": 582,
8085
8505
  "name": "args",
8086
8506
  "kind": 32768,
8087
8507
  "kindString": "Parameter",
@@ -8091,7 +8511,7 @@
8091
8511
  },
8092
8512
  "type": {
8093
8513
  "type": "reference",
8094
- "id": 552,
8514
+ "id": 576,
8095
8515
  "name": "SkyLookupAddCallbackArgs"
8096
8516
  }
8097
8517
  }
@@ -8109,7 +8529,7 @@
8109
8529
  "title": "Methods",
8110
8530
  "kind": 2048,
8111
8531
  "children": [
8112
- 556
8532
+ 580
8113
8533
  ]
8114
8534
  }
8115
8535
  ],
@@ -8122,7 +8542,7 @@
8122
8542
  ]
8123
8543
  },
8124
8544
  {
8125
- "id": 563,
8545
+ "id": 587,
8126
8546
  "name": "SkyLookupShowMoreConfig",
8127
8547
  "kind": 256,
8128
8548
  "kindString": "Interface",
@@ -8132,7 +8552,7 @@
8132
8552
  },
8133
8553
  "children": [
8134
8554
  {
8135
- "id": 564,
8555
+ "id": 588,
8136
8556
  "name": "customPicker",
8137
8557
  "kind": 1024,
8138
8558
  "kindString": "Property",
@@ -8151,12 +8571,12 @@
8151
8571
  ],
8152
8572
  "type": {
8153
8573
  "type": "reference",
8154
- "id": 566,
8574
+ "id": 590,
8155
8575
  "name": "SkyLookupShowMoreCustomPicker"
8156
8576
  }
8157
8577
  },
8158
8578
  {
8159
- "id": 565,
8579
+ "id": 589,
8160
8580
  "name": "nativePickerConfig",
8161
8581
  "kind": 1024,
8162
8582
  "kindString": "Property",
@@ -8175,7 +8595,7 @@
8175
8595
  ],
8176
8596
  "type": {
8177
8597
  "type": "reference",
8178
- "id": 576,
8598
+ "id": 600,
8179
8599
  "name": "SkyLookupShowMoreNativePickerConfig"
8180
8600
  }
8181
8601
  }
@@ -8185,8 +8605,8 @@
8185
8605
  "title": "Properties",
8186
8606
  "kind": 1024,
8187
8607
  "children": [
8188
- 564,
8189
- 565
8608
+ 588,
8609
+ 589
8190
8610
  ]
8191
8611
  }
8192
8612
  ],
@@ -8199,7 +8619,7 @@
8199
8619
  ]
8200
8620
  },
8201
8621
  {
8202
- "id": 566,
8622
+ "id": 590,
8203
8623
  "name": "SkyLookupShowMoreCustomPicker",
8204
8624
  "kind": 256,
8205
8625
  "kindString": "Interface",
@@ -8209,7 +8629,7 @@
8209
8629
  },
8210
8630
  "children": [
8211
8631
  {
8212
- "id": 567,
8632
+ "id": 591,
8213
8633
  "name": "open",
8214
8634
  "kind": 2048,
8215
8635
  "kindString": "Method",
@@ -8223,21 +8643,21 @@
8223
8643
  ],
8224
8644
  "signatures": [
8225
8645
  {
8226
- "id": 568,
8646
+ "id": 592,
8227
8647
  "name": "open",
8228
8648
  "kind": 4096,
8229
8649
  "kindString": "Call signature",
8230
8650
  "flags": {},
8231
8651
  "parameters": [
8232
8652
  {
8233
- "id": 569,
8653
+ "id": 593,
8234
8654
  "name": "pickerContext",
8235
8655
  "kind": 32768,
8236
8656
  "kindString": "Parameter",
8237
8657
  "flags": {},
8238
8658
  "type": {
8239
8659
  "type": "reference",
8240
- "id": 570,
8660
+ "id": 594,
8241
8661
  "name": "SkyLookupShowMoreCustomPickerContext"
8242
8662
  }
8243
8663
  }
@@ -8255,7 +8675,7 @@
8255
8675
  "title": "Methods",
8256
8676
  "kind": 2048,
8257
8677
  "children": [
8258
- 567
8678
+ 591
8259
8679
  ]
8260
8680
  }
8261
8681
  ],
@@ -8268,7 +8688,7 @@
8268
8688
  ]
8269
8689
  },
8270
8690
  {
8271
- "id": 576,
8691
+ "id": 600,
8272
8692
  "name": "SkyLookupShowMoreNativePickerConfig",
8273
8693
  "kind": 256,
8274
8694
  "kindString": "Interface",
@@ -8278,7 +8698,7 @@
8278
8698
  },
8279
8699
  "children": [
8280
8700
  {
8281
- "id": 577,
8701
+ "id": 601,
8282
8702
  "name": "itemTemplate",
8283
8703
  "kind": 1024,
8284
8704
  "kindString": "Property",
@@ -8307,7 +8727,7 @@
8307
8727
  }
8308
8728
  },
8309
8729
  {
8310
- "id": 578,
8730
+ "id": 602,
8311
8731
  "name": "title",
8312
8732
  "kind": 1024,
8313
8733
  "kindString": "Property",
@@ -8319,7 +8739,7 @@
8319
8739
  "tags": [
8320
8740
  {
8321
8741
  "tag": "default",
8322
- "text": "'Select an option/Select options'\n"
8742
+ "text": "\"Select an option/Select options\"\n"
8323
8743
  }
8324
8744
  ]
8325
8745
  },
@@ -8341,8 +8761,8 @@
8341
8761
  "title": "Properties",
8342
8762
  "kind": 1024,
8343
8763
  "children": [
8344
- 577,
8345
- 578
8764
+ 601,
8765
+ 602
8346
8766
  ]
8347
8767
  }
8348
8768
  ],
@@ -8355,7 +8775,34 @@
8355
8775
  ]
8356
8776
  },
8357
8777
  {
8358
- "id": 524,
8778
+ "id": 547,
8779
+ "name": "AutocompleteSearchAsyncResultDisplayType",
8780
+ "kind": 4194304,
8781
+ "kindString": "Type alias",
8782
+ "flags": {},
8783
+ "sources": [
8784
+ {
8785
+ "fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result-display-type.ts",
8786
+ "line": 1,
8787
+ "character": 12
8788
+ }
8789
+ ],
8790
+ "type": {
8791
+ "type": "union",
8792
+ "types": [
8793
+ {
8794
+ "type": "literal",
8795
+ "value": "popover"
8796
+ },
8797
+ {
8798
+ "type": "literal",
8799
+ "value": "modal"
8800
+ }
8801
+ ]
8802
+ }
8803
+ },
8804
+ {
8805
+ "id": 548,
8359
8806
  "name": "SkyAutocompleteSearchFunction",
8360
8807
  "kind": 4194304,
8361
8808
  "kindString": "Type alias",
@@ -8370,7 +8817,7 @@
8370
8817
  "type": {
8371
8818
  "type": "reflection",
8372
8819
  "declaration": {
8373
- "id": 525,
8820
+ "id": 549,
8374
8821
  "name": "__type",
8375
8822
  "kind": 65536,
8376
8823
  "kindString": "Type literal",
@@ -8384,14 +8831,14 @@
8384
8831
  ],
8385
8832
  "signatures": [
8386
8833
  {
8387
- "id": 526,
8834
+ "id": 550,
8388
8835
  "name": "__type",
8389
8836
  "kind": 4096,
8390
8837
  "kindString": "Call signature",
8391
8838
  "flags": {},
8392
8839
  "parameters": [
8393
8840
  {
8394
- "id": 527,
8841
+ "id": 551,
8395
8842
  "name": "searchText",
8396
8843
  "kind": 32768,
8397
8844
  "kindString": "Parameter",
@@ -8402,7 +8849,7 @@
8402
8849
  }
8403
8850
  },
8404
8851
  {
8405
- "id": 528,
8852
+ "id": 552,
8406
8853
  "name": "data",
8407
8854
  "kind": 32768,
8408
8855
  "kindString": "Parameter",
@@ -8418,7 +8865,7 @@
8418
8865
  ],
8419
8866
  "type": {
8420
8867
  "type": "reference",
8421
- "id": 534,
8868
+ "id": 558,
8422
8869
  "name": "SkyAutocompleteSearchFunctionResponse"
8423
8870
  }
8424
8871
  }
@@ -8427,7 +8874,7 @@
8427
8874
  }
8428
8875
  },
8429
8876
  {
8430
- "id": 529,
8877
+ "id": 553,
8431
8878
  "name": "SkyAutocompleteSearchFunctionFilter",
8432
8879
  "kind": 4194304,
8433
8880
  "kindString": "Type alias",
@@ -8442,7 +8889,7 @@
8442
8889
  "type": {
8443
8890
  "type": "reflection",
8444
8891
  "declaration": {
8445
- "id": 530,
8892
+ "id": 554,
8446
8893
  "name": "__type",
8447
8894
  "kind": 65536,
8448
8895
  "kindString": "Type literal",
@@ -8456,14 +8903,14 @@
8456
8903
  ],
8457
8904
  "signatures": [
8458
8905
  {
8459
- "id": 531,
8906
+ "id": 555,
8460
8907
  "name": "__type",
8461
8908
  "kind": 4096,
8462
8909
  "kindString": "Call signature",
8463
8910
  "flags": {},
8464
8911
  "parameters": [
8465
8912
  {
8466
- "id": 532,
8913
+ "id": 556,
8467
8914
  "name": "searchText",
8468
8915
  "kind": 32768,
8469
8916
  "kindString": "Parameter",
@@ -8474,7 +8921,7 @@
8474
8921
  }
8475
8922
  },
8476
8923
  {
8477
- "id": 533,
8924
+ "id": 557,
8478
8925
  "name": "item",
8479
8926
  "kind": 32768,
8480
8927
  "kindString": "Parameter",
@@ -8495,7 +8942,7 @@
8495
8942
  }
8496
8943
  },
8497
8944
  {
8498
- "id": 534,
8945
+ "id": 558,
8499
8946
  "name": "SkyAutocompleteSearchFunctionResponse",
8500
8947
  "kind": 4194304,
8501
8948
  "kindString": "Type alias",
@@ -8534,7 +8981,7 @@
8534
8981
  }
8535
8982
  },
8536
8983
  {
8537
- "id": 562,
8984
+ "id": 586,
8538
8985
  "name": "SkyLookupSelectModeType",
8539
8986
  "kind": 4194304,
8540
8987
  "kindString": "Type alias",
@@ -8566,39 +9013,42 @@
8566
9013
  "title": "Classes",
8567
9014
  "kind": 128,
8568
9015
  "children": [
8569
- 537,
8570
- 540,
8571
- 549,
8572
- 570,
8573
- 582,
8574
- 579,
9016
+ 561,
9017
+ 564,
9018
+ 573,
9019
+ 594,
9020
+ 606,
9021
+ 603,
8575
9022
  1,
8576
9023
  90,
8577
- 250,
8578
- 355
9024
+ 255,
9025
+ 360
8579
9026
  ]
8580
9027
  },
8581
9028
  {
8582
9029
  "title": "Interfaces",
8583
9030
  "kind": 256,
8584
9031
  "children": [
8585
- 535,
8586
- 543,
8587
- 552,
8588
- 555,
8589
- 563,
8590
- 566,
8591
- 576
9032
+ 536,
9033
+ 542,
9034
+ 559,
9035
+ 567,
9036
+ 576,
9037
+ 579,
9038
+ 587,
9039
+ 590,
9040
+ 600
8592
9041
  ]
8593
9042
  },
8594
9043
  {
8595
9044
  "title": "Type aliases",
8596
9045
  "kind": 4194304,
8597
9046
  "children": [
8598
- 524,
8599
- 529,
8600
- 534,
8601
- 562
9047
+ 547,
9048
+ 548,
9049
+ 553,
9050
+ 558,
9051
+ 586
8602
9052
  ]
8603
9053
  }
8604
9054
  ],
@@ -8686,6 +9136,26 @@
8686
9136
  "filePath": "/projects/lookup/documentation/code-examples/country-field/basic/country-field-demo.module.ts",
8687
9137
  "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { ReactiveFormsModule } from '@angular/forms';\n\nimport { SkyInputBoxModule } from '@skyux/forms';\n\nimport { SkyCountryFieldModule } from '@skyux/lookup';\n\nimport { CountryFieldDemoComponent } from './country-field-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyCountryFieldModule,\n SkyInputBoxModule,\n ],\n declarations: [CountryFieldDemoComponent],\n exports: [CountryFieldDemoComponent],\n})\nexport class CountryFieldDemoModule {}\n"
8688
9138
  },
9139
+ {
9140
+ "fileName": "lookup-async-demo.component.html",
9141
+ "filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.component.html",
9142
+ "rawContents": "<form\n class=\"lookup-demo-form\"\n novalidate\n [formGroup]=\"myForm\"\n (ngSubmit)=\"onSubmit()\"\n>\n <div class=\"sky-form-group\">\n <sky-input-box>\n <label class=\"sky-control-label\" skyId #nameLabel=\"skyId\">\n Favorite name\n </label>\n <sky-lookup\n formControlName=\"name\"\n selectMode=\"single\"\n [ariaLabelledBy]=\"nameLabel.id\"\n [data]=\"people\"\n [searchFilters]=\"getSearchFilters()\"\n (searchAsync)=\"searchAsync($event)\"\n >\n </sky-lookup>\n </sky-input-box>\n </div>\n <div class=\"lookup-demo-alert\">\n <strong>Form model:</strong>\n <pre>{{ myForm.value | json }}</pre>\n </div>\n <button class=\"sky-btn sky-btn-default\" type=\"submit\">Submit</button>\n</form>\n"
9143
+ },
9144
+ {
9145
+ "fileName": "lookup-async-demo.component.scss",
9146
+ "filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.component.scss",
9147
+ "rawContents": ".lookup-demo-alert {\n padding: 10px;\n margin-bottom: 10px;\n border: 1px solid #cdcfd2;\n border-radius: 3px;\n}\n\n.lookup-demo-alert pre {\n margin: 0;\n}\n"
9148
+ },
9149
+ {
9150
+ "fileName": "lookup-async-demo.component.ts",
9151
+ "filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.component.ts",
9152
+ "rawContents": "import { Component, OnInit } from '@angular/core';\n\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport { SkyAutocompleteSearchAsyncArgs } from 'lookup';\n\nimport {\n SkyAutocompleteSearchAsyncResult,\n SkyAutocompleteSearchFunctionFilter,\n} from '@skyux/lookup';\nimport { Subject } from 'rxjs';\n\n@Component({\n selector: 'app-async-lookup-demo',\n templateUrl: './lookup-async-demo.component.html',\n styleUrls: ['./lookup-async-demo.component.scss'],\n})\nexport class LookupAsyncDemoComponent implements OnInit {\n public myForm: FormGroup;\n\n public people: any[] = [\n { name: 'Abed' },\n { name: 'Alex' },\n { name: 'Ben' },\n { name: 'Britta' },\n { name: 'Buzz' },\n { name: 'Craig' },\n { name: 'Elroy' },\n { name: 'Garrett' },\n { name: 'Ian' },\n { name: 'Jeff' },\n { name: 'Leonard' },\n { name: 'Neil' },\n { name: 'Pierce' },\n { name: 'Preston' },\n { name: 'Rachel' },\n { name: 'Shirley' },\n { name: 'Todd' },\n { name: 'Troy' },\n { name: 'Vaughn' },\n { name: 'Vicki' },\n ];\n\n public name: any[] = [this.people[15]];\n\n constructor(private formBuilder: FormBuilder) {}\n\n public ngOnInit(): void {\n this.createForm();\n\n // If you need to execute some logic after the lookup values change,\n // subscribe to Angular's built-in value changes observable.\n this.myForm.valueChanges.subscribe((changes) => {\n console.log('Lookup value changes:', changes);\n });\n }\n\n // Only show people in the search results that have not been chosen already.\n public getSearchFilters(): SkyAutocompleteSearchFunctionFilter[] {\n const name: any[] = this.myForm.controls.name.value;\n return [\n (searchText: string, item: any): boolean => {\n const found = name.find((option) => option.name === item.name);\n return !found;\n },\n ];\n }\n\n public onSubmit(): void {\n alert('Form submitted with: ' + JSON.stringify(this.myForm.value));\n }\n\n public searchAsync($event: SkyAutocompleteSearchAsyncArgs) {\n const result = new Subject<SkyAutocompleteSearchAsyncResult>();\n $event.result = result;\n setTimeout(() => {\n const searchText = $event.searchText.toLowerCase();\n const items = this.people.filter((person) => {\n return person.name.toLowerCase().includes(searchText)\n });\n result.next({\n hasMore: false,\n items,\n totalCount: items.length,\n });\n }, 800);\n }\n\n private createForm(): void {\n this.myForm = this.formBuilder.group({\n name: new FormControl(this.name),\n });\n }\n}\n"
9153
+ },
9154
+ {
9155
+ "fileName": "lookup-async-demo.module.ts",
9156
+ "filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.module.ts",
9157
+ "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { ReactiveFormsModule } from '@angular/forms';\n\nimport { SkyIdModule } from '@skyux/core';\n\nimport { SkyInputBoxModule } from '@skyux/forms';\n\nimport { SkyLookupModule } from '@skyux/lookup';\n\nimport { LookupAsyncDemoComponent } from './lookup-async-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyIdModule,\n SkyInputBoxModule,\n SkyLookupModule,\n ],\n declarations: [LookupAsyncDemoComponent],\n exports: [LookupAsyncDemoComponent],\n})\nexport class LookupAsyncDemoModule {}\n"
9158
+ },
8689
9159
  {
8690
9160
  "fileName": "lookup-custom-picker-demo-modal.component.html",
8691
9161
  "filePath": "/projects/lookup/documentation/code-examples/lookup/custom-picker/lookup-custom-picker-demo-modal.component.html",