@skyux/lookup 7.2.0 → 7.4.0

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 (61) hide show
  1. package/documentation.json +1696 -587
  2. package/esm2020/index.mjs +10 -1
  3. package/esm2020/lib/modules/lookup/lookup.component.mjs +122 -70
  4. package/esm2020/lib/modules/lookup/lookup.module.mjs +7 -13
  5. package/esm2020/lib/modules/selection-modal/selection-modal-item-selected.pipe.mjs +19 -0
  6. package/esm2020/lib/modules/selection-modal/selection-modal.component.mjs +199 -0
  7. package/esm2020/lib/modules/selection-modal/selection-modal.module.mjs +62 -0
  8. package/esm2020/lib/modules/selection-modal/selection-modal.service.mjs +86 -0
  9. package/esm2020/lib/modules/selection-modal/types/selection-modal-add-click-callback-args.mjs +2 -0
  10. package/esm2020/lib/modules/selection-modal/types/selection-modal-add-click-event-args.mjs +2 -0
  11. package/esm2020/lib/modules/selection-modal/types/selection-modal-close-args.mjs +2 -0
  12. package/esm2020/lib/modules/selection-modal/types/selection-modal-context.mjs +17 -0
  13. package/esm2020/lib/modules/selection-modal/types/selection-modal-instance.mjs +48 -0
  14. package/esm2020/lib/modules/selection-modal/types/selection-modal-open-args.mjs +2 -0
  15. package/esm2020/lib/modules/selection-modal/types/selection-modal-result.mjs +2 -0
  16. package/esm2020/lib/modules/selection-modal/types/selection-modal-search-args.mjs +2 -0
  17. package/esm2020/lib/modules/selection-modal/types/selection-modal-search-result.mjs +2 -0
  18. package/esm2020/testing/lookup/lookup-show-more-picker-harness.mjs +6 -98
  19. package/esm2020/testing/lookup/lookup-show-more-picker-search-result-harness-filters.mjs +1 -1
  20. package/esm2020/testing/lookup/lookup-show-more-picker-search-result-harness.mjs +3 -3
  21. package/esm2020/testing/public-api.mjs +4 -1
  22. package/esm2020/testing/selection-modal/selection-modal-harness.mjs +129 -0
  23. package/esm2020/testing/selection-modal/selection-modal-search-result-harness-filters.mjs +2 -0
  24. package/esm2020/testing/selection-modal/selection-modal-search-result-harness.mjs +8 -0
  25. package/fesm2015/skyux-lookup-testing.mjs +87 -31
  26. package/fesm2015/skyux-lookup-testing.mjs.map +1 -1
  27. package/fesm2015/skyux-lookup.mjs +362 -130
  28. package/fesm2015/skyux-lookup.mjs.map +1 -1
  29. package/fesm2020/skyux-lookup-testing.mjs +73 -31
  30. package/fesm2020/skyux-lookup-testing.mjs.map +1 -1
  31. package/fesm2020/skyux-lookup.mjs +361 -130
  32. package/fesm2020/skyux-lookup.mjs.map +1 -1
  33. package/index.d.ts +9 -0
  34. package/lib/modules/lookup/lookup.component.d.ts +4 -3
  35. package/lib/modules/lookup/lookup.module.d.ts +16 -17
  36. package/lib/modules/selection-modal/selection-modal-item-selected.pipe.d.ts +10 -0
  37. package/lib/modules/{lookup/lookup-show-more-async-modal.component.d.ts → selection-modal/selection-modal.component.d.ts} +8 -8
  38. package/lib/modules/selection-modal/selection-modal.module.d.ts +18 -0
  39. package/lib/modules/selection-modal/selection-modal.service.d.ts +18 -0
  40. package/lib/modules/selection-modal/types/selection-modal-add-click-callback-args.d.ts +9 -0
  41. package/lib/modules/selection-modal/types/selection-modal-add-click-event-args.d.ts +11 -0
  42. package/lib/modules/selection-modal/types/selection-modal-close-args.d.ts +14 -0
  43. package/lib/modules/selection-modal/types/selection-modal-context.d.ts +18 -0
  44. package/lib/modules/selection-modal/types/selection-modal-instance.d.ts +33 -0
  45. package/lib/modules/selection-modal/types/selection-modal-open-args.d.ts +58 -0
  46. package/lib/modules/selection-modal/types/selection-modal-result.d.ts +14 -0
  47. package/lib/modules/selection-modal/types/selection-modal-search-args.d.ts +21 -0
  48. package/lib/modules/selection-modal/types/selection-modal-search-result.d.ts +25 -0
  49. package/package.json +10 -10
  50. package/testing/lookup/lookup-show-more-picker-harness.d.ts +3 -41
  51. package/testing/lookup/lookup-show-more-picker-search-result-harness-filters.d.ts +2 -2
  52. package/testing/lookup/lookup-show-more-picker-search-result-harness.d.ts +2 -2
  53. package/testing/public-api.d.ts +3 -0
  54. package/testing/selection-modal/selection-modal-harness.d.ts +62 -0
  55. package/testing/selection-modal/selection-modal-search-result-harness-filters.d.ts +7 -0
  56. package/testing/selection-modal/selection-modal-search-result-harness.d.ts +7 -0
  57. package/esm2020/lib/modules/lookup/lookup-item-selected.pipe.mjs +0 -16
  58. package/esm2020/lib/modules/lookup/lookup-show-more-async-modal.component.mjs +0 -192
  59. package/esm2020/lib/modules/lookup/types/lookup-show-more-native-picker-async-context.mjs +0 -17
  60. package/lib/modules/lookup/lookup-item-selected.pipe.d.ts +0 -7
  61. package/lib/modules/lookup/types/lookup-show-more-native-picker-async-context.d.ts +0 -18
@@ -6,6 +6,8 @@
6
6
  "SkyLookupShowMoreCustomPickerContext": "class-skylookupshowmorecustompickercontext",
7
7
  "SkySearchComponent": "class-skysearchcomponent",
8
8
  "SkySearchModule": "class-skysearchmodule",
9
+ "SkySelectionModalModule": "class-skyselectionmodalmodule",
10
+ "SkySelectionModalService": "class-skyselectionmodalservice",
9
11
  "SkyAutocompleteInputDirective": "class-skyautocompleteinputdirective",
10
12
  "SkyAutocompleteComponent": "class-skyautocompletecomponent",
11
13
  "SkyCountryFieldComponent": "class-skycountryfieldcomponent",
@@ -19,6 +21,13 @@
19
21
  "SkyLookupShowMoreConfig": "interface-skylookupshowmoreconfig",
20
22
  "SkyLookupShowMoreCustomPicker": "interface-skylookupshowmorecustompicker",
21
23
  "SkyLookupShowMoreNativePickerConfig": "interface-skylookupshowmorenativepickerconfig",
24
+ "SkySelectionModalAddCallbackArgs": "interface-skyselectionmodaladdcallbackargs",
25
+ "SkySelectionModalAddClickEventArgs": "interface-skyselectionmodaladdclickeventargs",
26
+ "SkySelectionModalCloseArgs": "interface-skyselectionmodalcloseargs",
27
+ "SkySelectionModalOpenArgs": "interface-skyselectionmodalopenargs",
28
+ "SkySelectionModalResult": "interface-skyselectionmodalresult",
29
+ "SkySelectionModalSearchArgs": "interface-skyselectionmodalsearchargs",
30
+ "SkySelectionModalSearchResult": "interface-skyselectionmodalsearchresult",
22
31
  "AutocompleteSearchAsyncResultDisplayType": "type-alias-autocompletesearchasyncresultdisplaytype",
23
32
  "SkyAutocompleteSearchArgs": "type-alias-skyautocompletesearchargs",
24
33
  "SkyAutocompleteSearchContext": "type-alias-skyautocompletesearchcontext",
@@ -36,7 +45,7 @@
36
45
  "originalName": "",
37
46
  "children": [
38
47
  {
39
- "id": 623,
48
+ "id": 638,
40
49
  "name": "SkyAutocompleteModule",
41
50
  "kind": 128,
42
51
  "kindString": "Class",
@@ -61,7 +70,7 @@
61
70
  "title": "Constructors",
62
71
  "kind": 512,
63
72
  "children": [
64
- 624
73
+ 639
65
74
  ]
66
75
  }
67
76
  ],
@@ -74,7 +83,7 @@
74
83
  ]
75
84
  },
76
85
  {
77
- "id": 626,
86
+ "id": 641,
78
87
  "name": "SkyCountryFieldModule",
79
88
  "kind": 128,
80
89
  "kindString": "Class",
@@ -99,7 +108,7 @@
99
108
  "title": "Constructors",
100
109
  "kind": 512,
101
110
  "children": [
102
- 627
111
+ 642
103
112
  ]
104
113
  }
105
114
  ],
@@ -112,7 +121,7 @@
112
121
  ]
113
122
  },
114
123
  {
115
- "id": 635,
124
+ "id": 650,
116
125
  "name": "SkyLookupModule",
117
126
  "kind": 128,
118
127
  "kindString": "Class",
@@ -127,7 +136,7 @@
127
136
  "name": "NgModule"
128
137
  },
129
138
  "arguments": {
130
- "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 exports: [SkyLookupComponent],\n}"
139
+ "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 SkySelectionModalModule,\n SkyThemeModule,\n SkyTokensModule,\n SkyToolbarModule,\n SkyViewkeeperModule,\n SkyWaitModule,\n ],\n exports: [SkyLookupComponent],\n}"
131
140
  }
132
141
  }
133
142
  ],
@@ -137,20 +146,20 @@
137
146
  "title": "Constructors",
138
147
  "kind": 512,
139
148
  "children": [
140
- 636
149
+ 651
141
150
  ]
142
151
  }
143
152
  ],
144
153
  "sources": [
145
154
  {
146
155
  "fileName": "projects/lookup/src/modules/lookup/lookup.module.ts",
147
- "line": 53,
156
+ "line": 48,
148
157
  "character": 13
149
158
  }
150
159
  ]
151
160
  },
152
161
  {
153
- "id": 656,
162
+ "id": 671,
154
163
  "name": "SkyLookupShowMoreCustomPickerContext",
155
164
  "kind": 128,
156
165
  "kindString": "Class",
@@ -160,7 +169,7 @@
160
169
  },
161
170
  "children": [
162
171
  {
163
- "id": 660,
172
+ "id": 675,
164
173
  "name": "initialSearch",
165
174
  "kind": 1024,
166
175
  "kindString": "Property",
@@ -183,7 +192,7 @@
183
192
  }
184
193
  },
185
194
  {
186
- "id": 661,
195
+ "id": 676,
187
196
  "name": "initialValue",
188
197
  "kind": 1024,
189
198
  "kindString": "Property",
@@ -206,7 +215,7 @@
206
215
  }
207
216
  },
208
217
  {
209
- "id": 659,
218
+ "id": 674,
210
219
  "name": "items",
211
220
  "kind": 1024,
212
221
  "kindString": "Property",
@@ -237,16 +246,16 @@
237
246
  "title": "Constructors",
238
247
  "kind": 512,
239
248
  "children": [
240
- 657
249
+ 672
241
250
  ]
242
251
  },
243
252
  {
244
253
  "title": "Properties",
245
254
  "kind": 1024,
246
255
  "children": [
247
- 660,
248
- 661,
249
- 659
256
+ 675,
257
+ 676,
258
+ 674
250
259
  ]
251
260
  }
252
261
  ],
@@ -259,7 +268,7 @@
259
268
  ]
260
269
  },
261
270
  {
262
- "id": 672,
271
+ "id": 734,
263
272
  "name": "SkySearchComponent",
264
273
  "kind": 128,
265
274
  "kindString": "Class",
@@ -280,7 +289,7 @@
280
289
  ],
281
290
  "children": [
282
291
  {
283
- "id": 673,
292
+ "id": 735,
284
293
  "name": "constructor",
285
294
  "kind": 512,
286
295
  "kindString": "Constructor",
@@ -294,14 +303,14 @@
294
303
  ],
295
304
  "signatures": [
296
305
  {
297
- "id": 674,
306
+ "id": 736,
298
307
  "name": "new SkySearchComponent",
299
308
  "kind": 16384,
300
309
  "kindString": "Constructor signature",
301
310
  "flags": {},
302
311
  "parameters": [
303
312
  {
304
- "id": 675,
313
+ "id": 737,
305
314
  "name": "mediaQueryService",
306
315
  "kind": 32768,
307
316
  "kindString": "Parameter",
@@ -312,7 +321,7 @@
312
321
  }
313
322
  },
314
323
  {
315
- "id": 676,
324
+ "id": 738,
316
325
  "name": "elRef",
317
326
  "kind": 32768,
318
327
  "kindString": "Parameter",
@@ -331,7 +340,7 @@
331
340
  }
332
341
  },
333
342
  {
334
- "id": 677,
343
+ "id": 739,
335
344
  "name": "searchAdapter",
336
345
  "kind": 32768,
337
346
  "kindString": "Parameter",
@@ -342,7 +351,7 @@
342
351
  }
343
352
  },
344
353
  {
345
- "id": 678,
354
+ "id": 740,
346
355
  "name": "changeRef",
347
356
  "kind": 32768,
348
357
  "kindString": "Parameter",
@@ -357,14 +366,14 @@
357
366
  ],
358
367
  "type": {
359
368
  "type": "reference",
360
- "id": 672,
369
+ "id": 734,
361
370
  "name": "SkySearchComponent"
362
371
  }
363
372
  }
364
373
  ]
365
374
  },
366
375
  {
367
- "id": 696,
376
+ "id": 758,
368
377
  "name": "breakpointSubscription",
369
378
  "kind": 1024,
370
379
  "kindString": "Property",
@@ -386,7 +395,7 @@
386
395
  }
387
396
  },
388
397
  {
389
- "id": 697,
398
+ "id": 759,
390
399
  "name": "clearButtonShown",
391
400
  "kind": 1024,
392
401
  "kindString": "Property",
@@ -407,7 +416,7 @@
407
416
  "defaultValue": "false"
408
417
  },
409
418
  {
410
- "id": 698,
419
+ "id": 760,
411
420
  "name": "dismissButtonShown",
412
421
  "kind": 1024,
413
422
  "kindString": "Property",
@@ -428,7 +437,7 @@
428
437
  "defaultValue": "false"
429
438
  },
430
439
  {
431
- "id": 699,
440
+ "id": 761,
432
441
  "name": "inputAnimate",
433
442
  "kind": 1024,
434
443
  "kindString": "Property",
@@ -449,7 +458,7 @@
449
458
  "defaultValue": "INPUT_SHOWN_STATE"
450
459
  },
451
460
  {
452
- "id": 700,
461
+ "id": 762,
453
462
  "name": "isCollapsible",
454
463
  "kind": 1024,
455
464
  "kindString": "Property",
@@ -470,7 +479,7 @@
470
479
  "defaultValue": "true"
471
480
  },
472
481
  {
473
- "id": 701,
482
+ "id": 763,
474
483
  "name": "isFullWidth",
475
484
  "kind": 1024,
476
485
  "kindString": "Property",
@@ -491,7 +500,7 @@
491
500
  "defaultValue": "false"
492
501
  },
493
502
  {
494
- "id": 702,
503
+ "id": 764,
495
504
  "name": "mobileSearchShown",
496
505
  "kind": 1024,
497
506
  "kindString": "Property",
@@ -512,7 +521,7 @@
512
521
  "defaultValue": "false"
513
522
  },
514
523
  {
515
- "id": 695,
524
+ "id": 757,
516
525
  "name": "placeholderText",
517
526
  "kind": 1024,
518
527
  "kindString": "Property",
@@ -553,7 +562,7 @@
553
562
  }
554
563
  },
555
564
  {
556
- "id": 679,
565
+ "id": 741,
557
566
  "name": "searchApply",
558
567
  "kind": 1024,
559
568
  "kindString": "Property",
@@ -597,7 +606,7 @@
597
606
  "defaultValue": "..."
598
607
  },
599
608
  {
600
- "id": 703,
609
+ "id": 765,
601
610
  "name": "searchButtonShown",
602
611
  "kind": 1024,
603
612
  "kindString": "Property",
@@ -618,7 +627,7 @@
618
627
  "defaultValue": "false"
619
628
  },
620
629
  {
621
- "id": 680,
630
+ "id": 742,
622
631
  "name": "searchChange",
623
632
  "kind": 1024,
624
633
  "kindString": "Property",
@@ -662,7 +671,7 @@
662
671
  "defaultValue": "..."
663
672
  },
664
673
  {
665
- "id": 681,
674
+ "id": 743,
666
675
  "name": "searchClear",
667
676
  "kind": 1024,
668
677
  "kindString": "Property",
@@ -706,7 +715,7 @@
706
715
  "defaultValue": "..."
707
716
  },
708
717
  {
709
- "id": 682,
718
+ "id": 744,
710
719
  "name": "searchText",
711
720
  "kind": 1024,
712
721
  "kindString": "Property",
@@ -741,7 +750,7 @@
741
750
  }
742
751
  },
743
752
  {
744
- "id": 687,
753
+ "id": 749,
745
754
  "name": "debounceTime",
746
755
  "kind": 262144,
747
756
  "kindString": "Accessor",
@@ -769,7 +778,7 @@
769
778
  ],
770
779
  "getSignature": [
771
780
  {
772
- "id": 688,
781
+ "id": 750,
773
782
  "name": "debounceTime",
774
783
  "kind": 524288,
775
784
  "kindString": "Get signature",
@@ -791,7 +800,7 @@
791
800
  ],
792
801
  "setSignature": [
793
802
  {
794
- "id": 689,
803
+ "id": 751,
795
804
  "name": "debounceTime",
796
805
  "kind": 1048576,
797
806
  "kindString": "Set signature",
@@ -807,7 +816,7 @@
807
816
  },
808
817
  "parameters": [
809
818
  {
810
- "id": 690,
819
+ "id": 752,
811
820
  "name": "value",
812
821
  "kind": 32768,
813
822
  "kindString": "Parameter",
@@ -826,7 +835,7 @@
826
835
  ]
827
836
  },
828
837
  {
829
- "id": 691,
838
+ "id": 753,
830
839
  "name": "disabled",
831
840
  "kind": 262144,
832
841
  "kindString": "Accessor",
@@ -854,7 +863,7 @@
854
863
  ],
855
864
  "getSignature": [
856
865
  {
857
- "id": 692,
866
+ "id": 754,
858
867
  "name": "disabled",
859
868
  "kind": 524288,
860
869
  "kindString": "Get signature",
@@ -876,7 +885,7 @@
876
885
  ],
877
886
  "setSignature": [
878
887
  {
879
- "id": 693,
888
+ "id": 755,
880
889
  "name": "disabled",
881
890
  "kind": 1048576,
882
891
  "kindString": "Set signature",
@@ -892,7 +901,7 @@
892
901
  },
893
902
  "parameters": [
894
903
  {
895
- "id": 694,
904
+ "id": 756,
896
905
  "name": "value",
897
906
  "kind": 32768,
898
907
  "kindString": "Parameter",
@@ -911,7 +920,7 @@
911
920
  ]
912
921
  },
913
922
  {
914
- "id": 683,
923
+ "id": 745,
915
924
  "name": "expandMode",
916
925
  "kind": 262144,
917
926
  "kindString": "Accessor",
@@ -939,7 +948,7 @@
939
948
  ],
940
949
  "getSignature": [
941
950
  {
942
- "id": 684,
951
+ "id": 746,
943
952
  "name": "expandMode",
944
953
  "kind": 524288,
945
954
  "kindString": "Get signature",
@@ -961,7 +970,7 @@
961
970
  ],
962
971
  "setSignature": [
963
972
  {
964
- "id": 685,
973
+ "id": 747,
965
974
  "name": "expandMode",
966
975
  "kind": 1048576,
967
976
  "kindString": "Set signature",
@@ -977,7 +986,7 @@
977
986
  },
978
987
  "parameters": [
979
988
  {
980
- "id": 686,
989
+ "id": 748,
981
990
  "name": "value",
982
991
  "kind": 32768,
983
992
  "kindString": "Parameter",
@@ -996,7 +1005,7 @@
996
1005
  ]
997
1006
  },
998
1007
  {
999
- "id": 724,
1008
+ "id": 786,
1000
1009
  "name": "applySearchText",
1001
1010
  "kind": 2048,
1002
1011
  "kindString": "Method",
@@ -1012,14 +1021,14 @@
1012
1021
  ],
1013
1022
  "signatures": [
1014
1023
  {
1015
- "id": 725,
1024
+ "id": 787,
1016
1025
  "name": "applySearchText",
1017
1026
  "kind": 4096,
1018
1027
  "kindString": "Call signature",
1019
1028
  "flags": {},
1020
1029
  "parameters": [
1021
1030
  {
1022
- "id": 726,
1031
+ "id": 788,
1023
1032
  "name": "searchText",
1024
1033
  "kind": 32768,
1025
1034
  "kindString": "Parameter",
@@ -1038,7 +1047,7 @@
1038
1047
  ]
1039
1048
  },
1040
1049
  {
1041
- "id": 718,
1050
+ "id": 780,
1042
1051
  "name": "clearSearchText",
1043
1052
  "kind": 2048,
1044
1053
  "kindString": "Method",
@@ -1054,7 +1063,7 @@
1054
1063
  ],
1055
1064
  "signatures": [
1056
1065
  {
1057
- "id": 719,
1066
+ "id": 781,
1058
1067
  "name": "clearSearchText",
1059
1068
  "kind": 4096,
1060
1069
  "kindString": "Call signature",
@@ -1067,7 +1076,7 @@
1067
1076
  ]
1068
1077
  },
1069
1078
  {
1070
- "id": 720,
1079
+ "id": 782,
1071
1080
  "name": "enterPress",
1072
1081
  "kind": 2048,
1073
1082
  "kindString": "Method",
@@ -1083,14 +1092,14 @@
1083
1092
  ],
1084
1093
  "signatures": [
1085
1094
  {
1086
- "id": 721,
1095
+ "id": 783,
1087
1096
  "name": "enterPress",
1088
1097
  "kind": 4096,
1089
1098
  "kindString": "Call signature",
1090
1099
  "flags": {},
1091
1100
  "parameters": [
1092
1101
  {
1093
- "id": 722,
1102
+ "id": 784,
1094
1103
  "name": "event",
1095
1104
  "kind": 32768,
1096
1105
  "kindString": "Parameter",
@@ -1103,7 +1112,7 @@
1103
1112
  }
1104
1113
  },
1105
1114
  {
1106
- "id": 723,
1115
+ "id": 785,
1107
1116
  "name": "searchText",
1108
1117
  "kind": 32768,
1109
1118
  "kindString": "Parameter",
@@ -1122,7 +1131,7 @@
1122
1131
  ]
1123
1132
  },
1124
1133
  {
1125
- "id": 736,
1134
+ "id": 798,
1126
1135
  "name": "inputAnimationEnd",
1127
1136
  "kind": 2048,
1128
1137
  "kindString": "Method",
@@ -1138,14 +1147,14 @@
1138
1147
  ],
1139
1148
  "signatures": [
1140
1149
  {
1141
- "id": 737,
1150
+ "id": 799,
1142
1151
  "name": "inputAnimationEnd",
1143
1152
  "kind": 4096,
1144
1153
  "kindString": "Call signature",
1145
1154
  "flags": {},
1146
1155
  "parameters": [
1147
1156
  {
1148
- "id": 738,
1157
+ "id": 800,
1149
1158
  "name": "event",
1150
1159
  "kind": 32768,
1151
1160
  "kindString": "Parameter",
@@ -1166,7 +1175,7 @@
1166
1175
  ]
1167
1176
  },
1168
1177
  {
1169
- "id": 733,
1178
+ "id": 795,
1170
1179
  "name": "inputAnimationStart",
1171
1180
  "kind": 2048,
1172
1181
  "kindString": "Method",
@@ -1182,14 +1191,14 @@
1182
1191
  ],
1183
1192
  "signatures": [
1184
1193
  {
1185
- "id": 734,
1194
+ "id": 796,
1186
1195
  "name": "inputAnimationStart",
1187
1196
  "kind": 4096,
1188
1197
  "kindString": "Call signature",
1189
1198
  "flags": {},
1190
1199
  "parameters": [
1191
1200
  {
1192
- "id": 735,
1201
+ "id": 797,
1193
1202
  "name": "event",
1194
1203
  "kind": 32768,
1195
1204
  "kindString": "Parameter",
@@ -1210,7 +1219,7 @@
1210
1219
  ]
1211
1220
  },
1212
1221
  {
1213
- "id": 715,
1222
+ "id": 777,
1214
1223
  "name": "ngOnChanges",
1215
1224
  "kind": 2048,
1216
1225
  "kindString": "Method",
@@ -1226,14 +1235,14 @@
1226
1235
  ],
1227
1236
  "signatures": [
1228
1237
  {
1229
- "id": 716,
1238
+ "id": 778,
1230
1239
  "name": "ngOnChanges",
1231
1240
  "kind": 4096,
1232
1241
  "kindString": "Call signature",
1233
1242
  "flags": {},
1234
1243
  "parameters": [
1235
1244
  {
1236
- "id": 717,
1245
+ "id": 779,
1237
1246
  "name": "changes",
1238
1247
  "kind": 32768,
1239
1248
  "kindString": "Parameter",
@@ -1262,7 +1271,7 @@
1262
1271
  }
1263
1272
  },
1264
1273
  {
1265
- "id": 739,
1274
+ "id": 801,
1266
1275
  "name": "ngOnDestroy",
1267
1276
  "kind": 2048,
1268
1277
  "kindString": "Method",
@@ -1278,7 +1287,7 @@
1278
1287
  ],
1279
1288
  "signatures": [
1280
1289
  {
1281
- "id": 740,
1290
+ "id": 802,
1282
1291
  "name": "ngOnDestroy",
1283
1292
  "kind": 4096,
1284
1293
  "kindString": "Call signature",
@@ -1299,7 +1308,7 @@
1299
1308
  }
1300
1309
  },
1301
1310
  {
1302
- "id": 713,
1311
+ "id": 775,
1303
1312
  "name": "ngOnInit",
1304
1313
  "kind": 2048,
1305
1314
  "kindString": "Method",
@@ -1315,7 +1324,7 @@
1315
1324
  ],
1316
1325
  "signatures": [
1317
1326
  {
1318
- "id": 714,
1327
+ "id": 776,
1319
1328
  "name": "ngOnInit",
1320
1329
  "kind": 4096,
1321
1330
  "kindString": "Call signature",
@@ -1336,7 +1345,7 @@
1336
1345
  }
1337
1346
  },
1338
1347
  {
1339
- "id": 727,
1348
+ "id": 789,
1340
1349
  "name": "searchTextChanged",
1341
1350
  "kind": 2048,
1342
1351
  "kindString": "Method",
@@ -1352,14 +1361,14 @@
1352
1361
  ],
1353
1362
  "signatures": [
1354
1363
  {
1355
- "id": 728,
1364
+ "id": 790,
1356
1365
  "name": "searchTextChanged",
1357
1366
  "kind": 4096,
1358
1367
  "kindString": "Call signature",
1359
1368
  "flags": {},
1360
1369
  "parameters": [
1361
1370
  {
1362
- "id": 729,
1371
+ "id": 791,
1363
1372
  "name": "searchText",
1364
1373
  "kind": 32768,
1365
1374
  "kindString": "Parameter",
@@ -1378,7 +1387,7 @@
1378
1387
  ]
1379
1388
  },
1380
1389
  {
1381
- "id": 730,
1390
+ "id": 792,
1382
1391
  "name": "toggleSearchInput",
1383
1392
  "kind": 2048,
1384
1393
  "kindString": "Method",
@@ -1394,14 +1403,14 @@
1394
1403
  ],
1395
1404
  "signatures": [
1396
1405
  {
1397
- "id": 731,
1406
+ "id": 793,
1398
1407
  "name": "toggleSearchInput",
1399
1408
  "kind": 4096,
1400
1409
  "kindString": "Call signature",
1401
1410
  "flags": {},
1402
1411
  "parameters": [
1403
1412
  {
1404
- "id": 732,
1413
+ "id": 794,
1405
1414
  "name": "showInput",
1406
1415
  "kind": 32768,
1407
1416
  "kindString": "Parameter",
@@ -1425,51 +1434,51 @@
1425
1434
  "title": "Constructors",
1426
1435
  "kind": 512,
1427
1436
  "children": [
1428
- 673
1437
+ 735
1429
1438
  ]
1430
1439
  },
1431
1440
  {
1432
1441
  "title": "Properties",
1433
1442
  "kind": 1024,
1434
1443
  "children": [
1435
- 696,
1436
- 697,
1437
- 698,
1438
- 699,
1439
- 700,
1440
- 701,
1441
- 702,
1442
- 695,
1443
- 679,
1444
- 703,
1445
- 680,
1446
- 681,
1447
- 682
1444
+ 758,
1445
+ 759,
1446
+ 760,
1447
+ 761,
1448
+ 762,
1449
+ 763,
1450
+ 764,
1451
+ 757,
1452
+ 741,
1453
+ 765,
1454
+ 742,
1455
+ 743,
1456
+ 744
1448
1457
  ]
1449
1458
  },
1450
1459
  {
1451
1460
  "title": "Accessors",
1452
1461
  "kind": 262144,
1453
1462
  "children": [
1454
- 687,
1455
- 691,
1456
- 683
1463
+ 749,
1464
+ 753,
1465
+ 745
1457
1466
  ]
1458
1467
  },
1459
1468
  {
1460
1469
  "title": "Methods",
1461
1470
  "kind": 2048,
1462
1471
  "children": [
1463
- 724,
1464
- 718,
1465
- 720,
1466
- 736,
1467
- 733,
1468
- 715,
1469
- 739,
1470
- 713,
1471
- 727,
1472
- 730
1472
+ 786,
1473
+ 780,
1474
+ 782,
1475
+ 798,
1476
+ 795,
1477
+ 777,
1478
+ 801,
1479
+ 775,
1480
+ 789,
1481
+ 792
1473
1482
  ]
1474
1483
  }
1475
1484
  ],
@@ -1502,7 +1511,7 @@
1502
1511
  ]
1503
1512
  },
1504
1513
  {
1505
- "id": 669,
1514
+ "id": 684,
1506
1515
  "name": "SkySearchModule",
1507
1516
  "kind": 128,
1508
1517
  "kindString": "Class",
@@ -1527,7 +1536,7 @@
1527
1536
  "title": "Constructors",
1528
1537
  "kind": 512,
1529
1538
  "children": [
1530
- 670
1539
+ 685
1531
1540
  ]
1532
1541
  }
1533
1542
  ],
@@ -1539,6 +1548,183 @@
1539
1548
  }
1540
1549
  ]
1541
1550
  },
1551
+ {
1552
+ "id": 687,
1553
+ "name": "SkySelectionModalModule",
1554
+ "kind": 128,
1555
+ "kindString": "Class",
1556
+ "flags": {},
1557
+ "decorators": [
1558
+ {
1559
+ "name": "NgModule",
1560
+ "type": {
1561
+ "type": "reference",
1562
+ "qualifiedName": "NgModuleDecorator",
1563
+ "package": "@angular/core",
1564
+ "name": "NgModule"
1565
+ },
1566
+ "arguments": {
1567
+ "obj": "{\n declarations: [SkySelectionModalComponent, SkySelectionModalItemSelectedPipe],\n imports: [\n CommonModule,\n SkyCheckboxModule,\n SkyI18nModule,\n SkyIconModule,\n SkyInfiniteScrollModule,\n SkyModalModule,\n SkyRepeaterModule,\n SkySearchModule,\n SkyThemeModule,\n SkyToolbarModule,\n SkyViewkeeperModule,\n SkyWaitModule,\n ],\n}"
1568
+ }
1569
+ }
1570
+ ],
1571
+ "children": [],
1572
+ "groups": [
1573
+ {
1574
+ "title": "Constructors",
1575
+ "kind": 512,
1576
+ "children": [
1577
+ 688
1578
+ ]
1579
+ }
1580
+ ],
1581
+ "sources": [
1582
+ {
1583
+ "fileName": "projects/lookup/src/modules/selection-modal/selection-modal.module.ts",
1584
+ "line": 34,
1585
+ "character": 13
1586
+ }
1587
+ ]
1588
+ },
1589
+ {
1590
+ "id": 690,
1591
+ "name": "SkySelectionModalService",
1592
+ "kind": 128,
1593
+ "kindString": "Class",
1594
+ "flags": {},
1595
+ "comment": {
1596
+ "shortText": "Displays a modal for selecting one or more values."
1597
+ },
1598
+ "decorators": [
1599
+ {
1600
+ "name": "Injectable",
1601
+ "type": {
1602
+ "type": "reference",
1603
+ "qualifiedName": "InjectableDecorator",
1604
+ "package": "@angular/core",
1605
+ "name": "Injectable"
1606
+ },
1607
+ "arguments": {
1608
+ "options": "{\n providedIn: 'any',\n}"
1609
+ }
1610
+ }
1611
+ ],
1612
+ "children": [
1613
+ {
1614
+ "id": 691,
1615
+ "name": "constructor",
1616
+ "kind": 512,
1617
+ "kindString": "Constructor",
1618
+ "flags": {},
1619
+ "sources": [
1620
+ {
1621
+ "fileName": "projects/lookup/src/modules/selection-modal/selection-modal.service.ts",
1622
+ "line": 24,
1623
+ "character": 2
1624
+ }
1625
+ ],
1626
+ "signatures": [
1627
+ {
1628
+ "id": 692,
1629
+ "name": "new SkySelectionModalService",
1630
+ "kind": 16384,
1631
+ "kindString": "Constructor signature",
1632
+ "flags": {},
1633
+ "parameters": [
1634
+ {
1635
+ "id": 693,
1636
+ "name": "modalSvc",
1637
+ "kind": 32768,
1638
+ "kindString": "Parameter",
1639
+ "flags": {},
1640
+ "type": {
1641
+ "type": "reference",
1642
+ "name": "SkyModalService"
1643
+ }
1644
+ }
1645
+ ],
1646
+ "type": {
1647
+ "type": "reference",
1648
+ "id": 690,
1649
+ "name": "SkySelectionModalService"
1650
+ }
1651
+ }
1652
+ ]
1653
+ },
1654
+ {
1655
+ "id": 695,
1656
+ "name": "open",
1657
+ "kind": 2048,
1658
+ "kindString": "Method",
1659
+ "flags": {
1660
+ "isPublic": true
1661
+ },
1662
+ "sources": [
1663
+ {
1664
+ "fileName": "projects/lookup/src/modules/selection-modal/selection-modal.service.ts",
1665
+ "line": 32,
1666
+ "character": 9
1667
+ }
1668
+ ],
1669
+ "signatures": [
1670
+ {
1671
+ "id": 696,
1672
+ "name": "open",
1673
+ "kind": 4096,
1674
+ "kindString": "Call signature",
1675
+ "flags": {},
1676
+ "comment": {
1677
+ "shortText": "Opens the selection modal."
1678
+ },
1679
+ "parameters": [
1680
+ {
1681
+ "id": 697,
1682
+ "name": "args",
1683
+ "kind": 32768,
1684
+ "kindString": "Parameter",
1685
+ "flags": {},
1686
+ "comment": {
1687
+ "shortText": "Parameters for the selection modal.\n"
1688
+ },
1689
+ "type": {
1690
+ "type": "reference",
1691
+ "id": 707,
1692
+ "name": "SkySelectionModalOpenArgs"
1693
+ }
1694
+ }
1695
+ ],
1696
+ "type": {
1697
+ "type": "reference",
1698
+ "name": "SkySelectionModalInstance"
1699
+ }
1700
+ }
1701
+ ]
1702
+ }
1703
+ ],
1704
+ "groups": [
1705
+ {
1706
+ "title": "Constructors",
1707
+ "kind": 512,
1708
+ "children": [
1709
+ 691
1710
+ ]
1711
+ },
1712
+ {
1713
+ "title": "Methods",
1714
+ "kind": 2048,
1715
+ "children": [
1716
+ 695
1717
+ ]
1718
+ }
1719
+ ],
1720
+ "sources": [
1721
+ {
1722
+ "fileName": "projects/lookup/src/modules/selection-modal/selection-modal.service.ts",
1723
+ "line": 21,
1724
+ "character": 13
1725
+ }
1726
+ ]
1727
+ },
1542
1728
  {
1543
1729
  "id": 3,
1544
1730
  "name": "SkyAutocompleteInputDirective",
@@ -3194,7 +3380,7 @@
3194
3380
  "typeArguments": [
3195
3381
  {
3196
3382
  "type": "reference",
3197
- "id": 596,
3383
+ "id": 611,
3198
3384
  "name": "SkyAutocompleteSearchAsyncArgs"
3199
3385
  }
3200
3386
  ],
@@ -3221,7 +3407,7 @@
3221
3407
  ],
3222
3408
  "type": {
3223
3409
  "type": "reference",
3224
- "id": 608,
3410
+ "id": 623,
3225
3411
  "name": "SkyAutocompleteSearchFunction"
3226
3412
  }
3227
3413
  },
@@ -3344,7 +3530,7 @@
3344
3530
  "typeArguments": [
3345
3531
  {
3346
3532
  "type": "reference",
3347
- "id": 621,
3533
+ "id": 636,
3348
3534
  "name": "SkyAutocompleteSelectionChange"
3349
3535
  }
3350
3536
  ],
@@ -3965,7 +4151,7 @@
3965
4151
  },
3966
4152
  "type": {
3967
4153
  "type": "reference",
3968
- "id": 608,
4154
+ "id": 623,
3969
4155
  "name": "SkyAutocompleteSearchFunction"
3970
4156
  }
3971
4157
  }
@@ -3995,7 +4181,7 @@
3995
4181
  "flags": {},
3996
4182
  "type": {
3997
4183
  "type": "reference",
3998
- "id": 608,
4184
+ "id": 623,
3999
4185
  "name": "SkyAutocompleteSearchFunction"
4000
4186
  }
4001
4187
  }
@@ -4054,7 +4240,7 @@
4054
4240
  "type": "array",
4055
4241
  "elementType": {
4056
4242
  "type": "reference",
4057
- "id": 614,
4243
+ "id": 629,
4058
4244
  "name": "SkyAutocompleteSearchFunctionFilter"
4059
4245
  }
4060
4246
  }
@@ -4087,7 +4273,7 @@
4087
4273
  "type": "array",
4088
4274
  "elementType": {
4089
4275
  "type": "reference",
4090
- "id": 614,
4276
+ "id": 629,
4091
4277
  "name": "SkyAutocompleteSearchFunctionFilter"
4092
4278
  }
4093
4279
  }
@@ -4960,7 +5146,7 @@
4960
5146
  "type": "array",
4961
5147
  "elementType": {
4962
5148
  "type": "reference",
4963
- "id": 629,
5149
+ "id": 644,
4964
5150
  "name": "SkyCountryFieldCountry"
4965
5151
  }
4966
5152
  },
@@ -5227,7 +5413,7 @@
5227
5413
  "typeArguments": [
5228
5414
  {
5229
5415
  "type": "reference",
5230
- "id": 629,
5416
+ "id": 644,
5231
5417
  "name": "SkyCountryFieldCountry"
5232
5418
  }
5233
5419
  ],
@@ -5601,7 +5787,7 @@
5601
5787
  "flags": {},
5602
5788
  "type": {
5603
5789
  "type": "reference",
5604
- "id": 629,
5790
+ "id": 644,
5605
5791
  "name": "SkyCountryFieldCountry"
5606
5792
  }
5607
5793
  }
@@ -5622,7 +5808,7 @@
5622
5808
  "flags": {},
5623
5809
  "type": {
5624
5810
  "type": "reference",
5625
- "id": 629,
5811
+ "id": 644,
5626
5812
  "name": "SkyCountryFieldCountry"
5627
5813
  }
5628
5814
  }
@@ -5781,7 +5967,7 @@
5781
5967
  "flags": {},
5782
5968
  "type": {
5783
5969
  "type": "reference",
5784
- "id": 629,
5970
+ "id": 644,
5785
5971
  "name": "SkyCountryFieldCountry"
5786
5972
  }
5787
5973
  }
@@ -5875,7 +6061,7 @@
5875
6061
  "flags": {},
5876
6062
  "type": {
5877
6063
  "type": "reference",
5878
- "id": 629,
6064
+ "id": 644,
5879
6065
  "name": "SkyCountryFieldCountry"
5880
6066
  }
5881
6067
  }
@@ -6119,7 +6305,7 @@
6119
6305
  "flags": {},
6120
6306
  "type": {
6121
6307
  "type": "reference",
6122
- "id": 629,
6308
+ "id": 644,
6123
6309
  "name": "SkyCountryFieldCountry"
6124
6310
  }
6125
6311
  }
@@ -6263,7 +6449,7 @@
6263
6449
  "sources": [
6264
6450
  {
6265
6451
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
6266
- "line": 323,
6452
+ "line": 310,
6267
6453
  "character": 2
6268
6454
  }
6269
6455
  ],
@@ -6353,6 +6539,29 @@
6353
6539
  },
6354
6540
  {
6355
6541
  "id": 399,
6542
+ "name": "selectionModalSvc",
6543
+ "kind": 32768,
6544
+ "kindString": "Parameter",
6545
+ "flags": {},
6546
+ "type": {
6547
+ "type": "reference",
6548
+ "id": 690,
6549
+ "name": "SkySelectionModalService"
6550
+ }
6551
+ },
6552
+ {
6553
+ "id": 400,
6554
+ "name": "logSvc",
6555
+ "kind": 32768,
6556
+ "kindString": "Parameter",
6557
+ "flags": {},
6558
+ "type": {
6559
+ "type": "reference",
6560
+ "name": "SkyLogService"
6561
+ }
6562
+ },
6563
+ {
6564
+ "id": 401,
6356
6565
  "name": "ngControl",
6357
6566
  "kind": 32768,
6358
6567
  "kindString": "Parameter",
@@ -6389,7 +6598,7 @@
6389
6598
  }
6390
6599
  },
6391
6600
  {
6392
- "id": 400,
6601
+ "id": 402,
6393
6602
  "name": "inputBoxHostSvc",
6394
6603
  "kind": 32768,
6395
6604
  "kindString": "Parameter",
@@ -6414,7 +6623,7 @@
6414
6623
  }
6415
6624
  },
6416
6625
  {
6417
- "id": 401,
6626
+ "id": 403,
6418
6627
  "name": "themeSvc",
6419
6628
  "kind": 32768,
6420
6629
  "kindString": "Parameter",
@@ -6456,7 +6665,7 @@
6456
6665
  }
6457
6666
  },
6458
6667
  {
6459
- "id": 429,
6668
+ "id": 431,
6460
6669
  "name": "addClick",
6461
6670
  "kind": 1024,
6462
6671
  "kindString": "Property",
@@ -6490,7 +6699,7 @@
6490
6699
  "typeArguments": [
6491
6700
  {
6492
6701
  "type": "reference",
6493
- "id": 641,
6702
+ "id": 656,
6494
6703
  "name": "SkyLookupAddClickEventArgs"
6495
6704
  }
6496
6705
  ],
@@ -6501,7 +6710,7 @@
6501
6710
  "defaultValue": "..."
6502
6711
  },
6503
6712
  {
6504
- "id": 402,
6713
+ "id": 404,
6505
6714
  "name": "ariaLabel",
6506
6715
  "kind": 1024,
6507
6716
  "kindString": "Property",
@@ -6536,7 +6745,7 @@
6536
6745
  }
6537
6746
  },
6538
6747
  {
6539
- "id": 403,
6748
+ "id": 405,
6540
6749
  "name": "ariaLabelledBy",
6541
6750
  "kind": 1024,
6542
6751
  "kindString": "Property",
@@ -6571,7 +6780,7 @@
6571
6780
  }
6572
6781
  },
6573
6782
  {
6574
- "id": 404,
6783
+ "id": 406,
6575
6784
  "name": "autocompleteAttribute",
6576
6785
  "kind": 1024,
6577
6786
  "kindString": "Property",
@@ -6606,7 +6815,7 @@
6606
6815
  }
6607
6816
  },
6608
6817
  {
6609
- "id": 438,
6818
+ "id": 440,
6610
6819
  "name": "autocompleteController",
6611
6820
  "kind": 1024,
6612
6821
  "kindString": "Property",
@@ -6635,7 +6844,7 @@
6635
6844
  "defaultValue": "..."
6636
6845
  },
6637
6846
  {
6638
- "id": 562,
6847
+ "id": 577,
6639
6848
  "name": "debounceTime",
6640
6849
  "kind": 1024,
6641
6850
  "kindString": "Property",
@@ -6680,7 +6889,7 @@
6680
6889
  }
6681
6890
  },
6682
6891
  {
6683
- "id": 418,
6892
+ "id": 420,
6684
6893
  "name": "idProperty",
6685
6894
  "kind": 1024,
6686
6895
  "kindString": "Property",
@@ -6715,7 +6924,7 @@
6715
6924
  }
6716
6925
  },
6717
6926
  {
6718
- "id": 447,
6927
+ "id": 449,
6719
6928
  "name": "inputTemplateRef",
6720
6929
  "kind": 1024,
6721
6930
  "kindString": "Property",
@@ -6758,7 +6967,7 @@
6758
6967
  }
6759
6968
  },
6760
6969
  {
6761
- "id": 439,
6970
+ "id": 441,
6762
6971
  "name": "isInputFocused",
6763
6972
  "kind": 1024,
6764
6973
  "kindString": "Property",
@@ -6779,7 +6988,7 @@
6779
6988
  "defaultValue": "false"
6780
6989
  },
6781
6990
  {
6782
- "id": 448,
6991
+ "id": 450,
6783
6992
  "name": "lookupWrapperRef",
6784
6993
  "kind": 1024,
6785
6994
  "kindString": "Property",
@@ -6822,7 +7031,7 @@
6822
7031
  }
6823
7032
  },
6824
7033
  {
6825
- "id": 417,
7034
+ "id": 419,
6826
7035
  "name": "placeholderText",
6827
7036
  "kind": 1024,
6828
7037
  "kindString": "Property",
@@ -6857,7 +7066,7 @@
6857
7066
  }
6858
7067
  },
6859
7068
  {
6860
- "id": 582,
7069
+ "id": 597,
6861
7070
  "name": "searchAsync",
6862
7071
  "kind": 1024,
6863
7072
  "kindString": "Property",
@@ -6891,7 +7100,7 @@
6891
7100
  "typeArguments": [
6892
7101
  {
6893
7102
  "type": "reference",
6894
- "id": 596,
7103
+ "id": 611,
6895
7104
  "name": "SkyAutocompleteSearchAsyncArgs"
6896
7105
  }
6897
7106
  ],
@@ -6906,7 +7115,7 @@
6906
7115
  }
6907
7116
  },
6908
7117
  {
6909
- "id": 449,
7118
+ "id": 451,
6910
7119
  "name": "searchIconTemplateRef",
6911
7120
  "kind": 1024,
6912
7121
  "kindString": "Property",
@@ -6949,7 +7158,7 @@
6949
7158
  }
6950
7159
  },
6951
7160
  {
6952
- "id": 583,
7161
+ "id": 598,
6953
7162
  "name": "searchOrDefault",
6954
7163
  "kind": 1024,
6955
7164
  "kindString": "Property",
@@ -6965,7 +7174,7 @@
6965
7174
  ],
6966
7175
  "type": {
6967
7176
  "type": "reference",
6968
- "id": 608,
7177
+ "id": 623,
6969
7178
  "name": "SkyAutocompleteSearchFunction"
6970
7179
  },
6971
7180
  "defaultValue": "...",
@@ -6975,7 +7184,7 @@
6975
7184
  }
6976
7185
  },
6977
7186
  {
6978
- "id": 575,
7187
+ "id": 590,
6979
7188
  "name": "searchResultTemplate",
6980
7189
  "kind": 1024,
6981
7190
  "kindString": "Property",
@@ -7022,7 +7231,7 @@
7022
7231
  }
7023
7232
  },
7024
7233
  {
7025
- "id": 581,
7234
+ "id": 596,
7026
7235
  "name": "searchResultsLimit",
7027
7236
  "kind": 1024,
7028
7237
  "kindString": "Property",
@@ -7061,7 +7270,7 @@
7061
7270
  }
7062
7271
  },
7063
7272
  {
7064
- "id": 576,
7273
+ "id": 591,
7065
7274
  "name": "searchTextMinimumCharacters",
7066
7275
  "kind": 1024,
7067
7276
  "kindString": "Property",
@@ -7106,7 +7315,7 @@
7106
7315
  }
7107
7316
  },
7108
7317
  {
7109
- "id": 446,
7318
+ "id": 448,
7110
7319
  "name": "showMoreButtonTemplateRef",
7111
7320
  "kind": 1024,
7112
7321
  "kindString": "Property",
@@ -7149,7 +7358,7 @@
7149
7358
  }
7150
7359
  },
7151
7360
  {
7152
- "id": 423,
7361
+ "id": 425,
7153
7362
  "name": "showMoreConfig",
7154
7363
  "kind": 1024,
7155
7364
  "kindString": "Property",
@@ -7180,12 +7389,12 @@
7180
7389
  ],
7181
7390
  "type": {
7182
7391
  "type": "reference",
7183
- "id": 649,
7392
+ "id": 664,
7184
7393
  "name": "SkyLookupShowMoreConfig"
7185
7394
  }
7186
7395
  },
7187
7396
  {
7188
- "id": 440,
7397
+ "id": 442,
7189
7398
  "name": "showMorePickerId",
7190
7399
  "kind": 1024,
7191
7400
  "kindString": "Property",
@@ -7205,7 +7414,7 @@
7205
7414
  }
7206
7415
  },
7207
7416
  {
7208
- "id": 441,
7417
+ "id": 443,
7209
7418
  "name": "tokensController",
7210
7419
  "kind": 1024,
7211
7420
  "kindString": "Property",
@@ -7234,7 +7443,7 @@
7234
7443
  "defaultValue": "..."
7235
7444
  },
7236
7445
  {
7237
- "id": 442,
7446
+ "id": 444,
7238
7447
  "name": "autocompleteInputDirective",
7239
7448
  "kind": 262144,
7240
7449
  "kindString": "Accessor",
@@ -7265,7 +7474,7 @@
7265
7474
  ],
7266
7475
  "getSignature": [
7267
7476
  {
7268
- "id": 443,
7477
+ "id": 445,
7269
7478
  "name": "autocompleteInputDirective",
7270
7479
  "kind": 524288,
7271
7480
  "kindString": "Get signature",
@@ -7279,14 +7488,14 @@
7279
7488
  ],
7280
7489
  "setSignature": [
7281
7490
  {
7282
- "id": 444,
7491
+ "id": 446,
7283
7492
  "name": "autocompleteInputDirective",
7284
7493
  "kind": 1048576,
7285
7494
  "kindString": "Set signature",
7286
7495
  "flags": {},
7287
7496
  "parameters": [
7288
7497
  {
7289
- "id": 445,
7498
+ "id": 447,
7290
7499
  "name": "value",
7291
7500
  "kind": 32768,
7292
7501
  "kindString": "Parameter",
@@ -7306,7 +7515,7 @@
7306
7515
  ]
7307
7516
  },
7308
7517
  {
7309
- "id": 405,
7518
+ "id": 407,
7310
7519
  "name": "data",
7311
7520
  "kind": 262144,
7312
7521
  "kindString": "Accessor",
@@ -7334,7 +7543,7 @@
7334
7543
  ],
7335
7544
  "getSignature": [
7336
7545
  {
7337
- "id": 406,
7546
+ "id": 408,
7338
7547
  "name": "data",
7339
7548
  "kind": 524288,
7340
7549
  "kindString": "Get signature",
@@ -7359,7 +7568,7 @@
7359
7568
  ],
7360
7569
  "setSignature": [
7361
7570
  {
7362
- "id": 407,
7571
+ "id": 409,
7363
7572
  "name": "data",
7364
7573
  "kind": 1048576,
7365
7574
  "kindString": "Set signature",
@@ -7375,7 +7584,7 @@
7375
7584
  },
7376
7585
  "parameters": [
7377
7586
  {
7378
- "id": 408,
7587
+ "id": 410,
7379
7588
  "name": "value",
7380
7589
  "kind": 32768,
7381
7590
  "kindString": "Parameter",
@@ -7397,7 +7606,7 @@
7397
7606
  ]
7398
7607
  },
7399
7608
  {
7400
- "id": 563,
7609
+ "id": 578,
7401
7610
  "name": "descriptorProperty",
7402
7611
  "kind": 262144,
7403
7612
  "kindString": "Accessor",
@@ -7425,7 +7634,7 @@
7425
7634
  ],
7426
7635
  "getSignature": [
7427
7636
  {
7428
- "id": 564,
7637
+ "id": 579,
7429
7638
  "name": "descriptorProperty",
7430
7639
  "kind": 524288,
7431
7640
  "kindString": "Get signature",
@@ -7451,7 +7660,7 @@
7451
7660
  ],
7452
7661
  "setSignature": [
7453
7662
  {
7454
- "id": 565,
7663
+ "id": 580,
7455
7664
  "name": "descriptorProperty",
7456
7665
  "kind": 1048576,
7457
7666
  "kindString": "Set signature",
@@ -7467,7 +7676,7 @@
7467
7676
  },
7468
7677
  "parameters": [
7469
7678
  {
7470
- "id": 566,
7679
+ "id": 581,
7471
7680
  "name": "value",
7472
7681
  "kind": 32768,
7473
7682
  "kindString": "Parameter",
@@ -7494,7 +7703,7 @@
7494
7703
  }
7495
7704
  },
7496
7705
  {
7497
- "id": 409,
7706
+ "id": 411,
7498
7707
  "name": "disabled",
7499
7708
  "kind": 262144,
7500
7709
  "kindString": "Accessor",
@@ -7522,7 +7731,7 @@
7522
7731
  ],
7523
7732
  "getSignature": [
7524
7733
  {
7525
- "id": 410,
7734
+ "id": 412,
7526
7735
  "name": "disabled",
7527
7736
  "kind": 524288,
7528
7737
  "kindString": "Get signature",
@@ -7544,7 +7753,7 @@
7544
7753
  ],
7545
7754
  "setSignature": [
7546
7755
  {
7547
- "id": 411,
7756
+ "id": 413,
7548
7757
  "name": "disabled",
7549
7758
  "kind": 1048576,
7550
7759
  "kindString": "Set signature",
@@ -7560,7 +7769,7 @@
7560
7769
  },
7561
7770
  "parameters": [
7562
7771
  {
7563
- "id": 412,
7772
+ "id": 414,
7564
7773
  "name": "value",
7565
7774
  "kind": 32768,
7566
7775
  "kindString": "Parameter",
@@ -7579,7 +7788,7 @@
7579
7788
  ]
7580
7789
  },
7581
7790
  {
7582
- "id": 413,
7791
+ "id": 415,
7583
7792
  "name": "enableShowMore",
7584
7793
  "kind": 262144,
7585
7794
  "kindString": "Accessor",
@@ -7607,7 +7816,7 @@
7607
7816
  ],
7608
7817
  "getSignature": [
7609
7818
  {
7610
- "id": 414,
7819
+ "id": 416,
7611
7820
  "name": "enableShowMore",
7612
7821
  "kind": 524288,
7613
7822
  "kindString": "Get signature",
@@ -7629,7 +7838,7 @@
7629
7838
  ],
7630
7839
  "setSignature": [
7631
7840
  {
7632
- "id": 415,
7841
+ "id": 417,
7633
7842
  "name": "enableShowMore",
7634
7843
  "kind": 1048576,
7635
7844
  "kindString": "Set signature",
@@ -7645,7 +7854,7 @@
7645
7854
  },
7646
7855
  "parameters": [
7647
7856
  {
7648
- "id": 416,
7857
+ "id": 418,
7649
7858
  "name": "value",
7650
7859
  "kind": 32768,
7651
7860
  "kindString": "Parameter",
@@ -7664,7 +7873,7 @@
7664
7873
  ]
7665
7874
  },
7666
7875
  {
7667
- "id": 567,
7876
+ "id": 582,
7668
7877
  "name": "propertiesToSearch",
7669
7878
  "kind": 262144,
7670
7879
  "kindString": "Accessor",
@@ -7692,7 +7901,7 @@
7692
7901
  ],
7693
7902
  "getSignature": [
7694
7903
  {
7695
- "id": 568,
7904
+ "id": 583,
7696
7905
  "name": "propertiesToSearch",
7697
7906
  "kind": 524288,
7698
7907
  "kindString": "Get signature",
@@ -7721,7 +7930,7 @@
7721
7930
  ],
7722
7931
  "setSignature": [
7723
7932
  {
7724
- "id": 569,
7933
+ "id": 584,
7725
7934
  "name": "propertiesToSearch",
7726
7935
  "kind": 1048576,
7727
7936
  "kindString": "Set signature",
@@ -7737,7 +7946,7 @@
7737
7946
  },
7738
7947
  "parameters": [
7739
7948
  {
7740
- "id": 570,
7949
+ "id": 585,
7741
7950
  "name": "value",
7742
7951
  "kind": 32768,
7743
7952
  "kindString": "Parameter",
@@ -7767,7 +7976,7 @@
7767
7976
  }
7768
7977
  },
7769
7978
  {
7770
- "id": 571,
7979
+ "id": 586,
7771
7980
  "name": "search",
7772
7981
  "kind": 262144,
7773
7982
  "kindString": "Accessor",
@@ -7795,7 +8004,7 @@
7795
8004
  ],
7796
8005
  "getSignature": [
7797
8006
  {
7798
- "id": 572,
8007
+ "id": 587,
7799
8008
  "name": "search",
7800
8009
  "kind": 524288,
7801
8010
  "kindString": "Get signature",
@@ -7805,7 +8014,7 @@
7805
8014
  },
7806
8015
  "type": {
7807
8016
  "type": "reference",
7808
- "id": 608,
8017
+ "id": 623,
7809
8018
  "name": "SkyAutocompleteSearchFunction"
7810
8019
  },
7811
8020
  "inheritedFrom": {
@@ -7816,7 +8025,7 @@
7816
8025
  ],
7817
8026
  "setSignature": [
7818
8027
  {
7819
- "id": 573,
8028
+ "id": 588,
7820
8029
  "name": "search",
7821
8030
  "kind": 1048576,
7822
8031
  "kindString": "Set signature",
@@ -7826,14 +8035,14 @@
7826
8035
  },
7827
8036
  "parameters": [
7828
8037
  {
7829
- "id": 574,
8038
+ "id": 589,
7830
8039
  "name": "value",
7831
8040
  "kind": 32768,
7832
8041
  "kindString": "Parameter",
7833
8042
  "flags": {},
7834
8043
  "type": {
7835
8044
  "type": "reference",
7836
- "id": 608,
8045
+ "id": 623,
7837
8046
  "name": "SkyAutocompleteSearchFunction"
7838
8047
  }
7839
8048
  }
@@ -7854,7 +8063,7 @@
7854
8063
  }
7855
8064
  },
7856
8065
  {
7857
- "id": 577,
8066
+ "id": 592,
7858
8067
  "name": "searchFilters",
7859
8068
  "kind": 262144,
7860
8069
  "kindString": "Accessor",
@@ -7882,7 +8091,7 @@
7882
8091
  ],
7883
8092
  "getSignature": [
7884
8093
  {
7885
- "id": 578,
8094
+ "id": 593,
7886
8095
  "name": "searchFilters",
7887
8096
  "kind": 524288,
7888
8097
  "kindString": "Get signature",
@@ -7894,7 +8103,7 @@
7894
8103
  "type": "array",
7895
8104
  "elementType": {
7896
8105
  "type": "reference",
7897
- "id": 614,
8106
+ "id": 629,
7898
8107
  "name": "SkyAutocompleteSearchFunctionFilter"
7899
8108
  }
7900
8109
  },
@@ -7906,7 +8115,7 @@
7906
8115
  ],
7907
8116
  "setSignature": [
7908
8117
  {
7909
- "id": 579,
8118
+ "id": 594,
7910
8119
  "name": "searchFilters",
7911
8120
  "kind": 1048576,
7912
8121
  "kindString": "Set signature",
@@ -7916,7 +8125,7 @@
7916
8125
  },
7917
8126
  "parameters": [
7918
8127
  {
7919
- "id": 580,
8128
+ "id": 595,
7920
8129
  "name": "value",
7921
8130
  "kind": 32768,
7922
8131
  "kindString": "Parameter",
@@ -7925,7 +8134,7 @@
7925
8134
  "type": "array",
7926
8135
  "elementType": {
7927
8136
  "type": "reference",
7928
- "id": 614,
8137
+ "id": 629,
7929
8138
  "name": "SkyAutocompleteSearchFunctionFilter"
7930
8139
  }
7931
8140
  }
@@ -7947,7 +8156,7 @@
7947
8156
  }
7948
8157
  },
7949
8158
  {
7950
- "id": 424,
8159
+ "id": 426,
7951
8160
  "name": "selectMode",
7952
8161
  "kind": 262144,
7953
8162
  "kindString": "Accessor",
@@ -7975,7 +8184,7 @@
7975
8184
  ],
7976
8185
  "getSignature": [
7977
8186
  {
7978
- "id": 425,
8187
+ "id": 427,
7979
8188
  "name": "selectMode",
7980
8189
  "kind": 524288,
7981
8190
  "kindString": "Get signature",
@@ -7991,14 +8200,14 @@
7991
8200
  },
7992
8201
  "type": {
7993
8202
  "type": "reference",
7994
- "id": 648,
8203
+ "id": 663,
7995
8204
  "name": "SkyLookupSelectModeType"
7996
8205
  }
7997
8206
  }
7998
8207
  ],
7999
8208
  "setSignature": [
8000
8209
  {
8001
- "id": 426,
8210
+ "id": 428,
8002
8211
  "name": "selectMode",
8003
8212
  "kind": 1048576,
8004
8213
  "kindString": "Set signature",
@@ -8014,14 +8223,14 @@
8014
8223
  },
8015
8224
  "parameters": [
8016
8225
  {
8017
- "id": 427,
8226
+ "id": 429,
8018
8227
  "name": "value",
8019
8228
  "kind": 32768,
8020
8229
  "kindString": "Parameter",
8021
8230
  "flags": {},
8022
8231
  "type": {
8023
8232
  "type": "reference",
8024
- "id": 648,
8233
+ "id": 663,
8025
8234
  "name": "SkyLookupSelectModeType"
8026
8235
  }
8027
8236
  }
@@ -8034,7 +8243,7 @@
8034
8243
  ]
8035
8244
  },
8036
8245
  {
8037
- "id": 419,
8246
+ "id": 421,
8038
8247
  "name": "showAddButton",
8039
8248
  "kind": 262144,
8040
8249
  "kindString": "Accessor",
@@ -8062,7 +8271,7 @@
8062
8271
  ],
8063
8272
  "getSignature": [
8064
8273
  {
8065
- "id": 420,
8274
+ "id": 422,
8066
8275
  "name": "showAddButton",
8067
8276
  "kind": 524288,
8068
8277
  "kindString": "Get signature",
@@ -8084,7 +8293,7 @@
8084
8293
  ],
8085
8294
  "setSignature": [
8086
8295
  {
8087
- "id": 421,
8296
+ "id": 423,
8088
8297
  "name": "showAddButton",
8089
8298
  "kind": 1048576,
8090
8299
  "kindString": "Set signature",
@@ -8100,7 +8309,7 @@
8100
8309
  },
8101
8310
  "parameters": [
8102
8311
  {
8103
- "id": 422,
8312
+ "id": 424,
8104
8313
  "name": "value",
8105
8314
  "kind": 32768,
8106
8315
  "kindString": "Parameter",
@@ -8119,7 +8328,7 @@
8119
8328
  ]
8120
8329
  },
8121
8330
  {
8122
- "id": 430,
8331
+ "id": 432,
8123
8332
  "name": "tokens",
8124
8333
  "kind": 262144,
8125
8334
  "kindString": "Accessor",
@@ -8135,7 +8344,7 @@
8135
8344
  ],
8136
8345
  "getSignature": [
8137
8346
  {
8138
- "id": 431,
8347
+ "id": 433,
8139
8348
  "name": "tokens",
8140
8349
  "kind": 524288,
8141
8350
  "kindString": "Get signature",
@@ -8157,14 +8366,14 @@
8157
8366
  ],
8158
8367
  "setSignature": [
8159
8368
  {
8160
- "id": 432,
8369
+ "id": 434,
8161
8370
  "name": "tokens",
8162
8371
  "kind": 1048576,
8163
8372
  "kindString": "Set signature",
8164
8373
  "flags": {},
8165
8374
  "parameters": [
8166
8375
  {
8167
- "id": 433,
8376
+ "id": 435,
8168
8377
  "name": "value",
8169
8378
  "kind": 32768,
8170
8379
  "kindString": "Parameter",
@@ -8192,7 +8401,7 @@
8192
8401
  ]
8193
8402
  },
8194
8403
  {
8195
- "id": 434,
8404
+ "id": 436,
8196
8405
  "name": "value",
8197
8406
  "kind": 262144,
8198
8407
  "kindString": "Accessor",
@@ -8208,7 +8417,7 @@
8208
8417
  ],
8209
8418
  "getSignature": [
8210
8419
  {
8211
- "id": 435,
8420
+ "id": 437,
8212
8421
  "name": "value",
8213
8422
  "kind": 524288,
8214
8423
  "kindString": "Get signature",
@@ -8224,14 +8433,14 @@
8224
8433
  ],
8225
8434
  "setSignature": [
8226
8435
  {
8227
- "id": 436,
8436
+ "id": 438,
8228
8437
  "name": "value",
8229
8438
  "kind": 1048576,
8230
8439
  "kindString": "Set signature",
8231
8440
  "flags": {},
8232
8441
  "parameters": [
8233
8442
  {
8234
- "id": 437,
8443
+ "id": 439,
8235
8444
  "name": "newValue",
8236
8445
  "kind": 32768,
8237
8446
  "kindString": "Parameter",
@@ -8253,7 +8462,7 @@
8253
8462
  ]
8254
8463
  },
8255
8464
  {
8256
- "id": 476,
8465
+ "id": 481,
8257
8466
  "name": "addButtonClicked",
8258
8467
  "kind": 2048,
8259
8468
  "kindString": "Method",
@@ -8263,13 +8472,13 @@
8263
8472
  "sources": [
8264
8473
  {
8265
8474
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8266
- "line": 386,
8475
+ "line": 377,
8267
8476
  "character": 9
8268
8477
  }
8269
8478
  ],
8270
8479
  "signatures": [
8271
8480
  {
8272
- "id": 477,
8481
+ "id": 482,
8273
8482
  "name": "addButtonClicked",
8274
8483
  "kind": 4096,
8275
8484
  "kindString": "Call signature",
@@ -8282,7 +8491,7 @@
8282
8491
  ]
8283
8492
  },
8284
8493
  {
8285
- "id": 515,
8494
+ "id": 520,
8286
8495
  "name": "clearSearchText",
8287
8496
  "kind": 2048,
8288
8497
  "kindString": "Method",
@@ -8292,13 +8501,13 @@
8292
8501
  "sources": [
8293
8502
  {
8294
8503
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8295
- "line": 495,
8504
+ "line": 486,
8296
8505
  "character": 9
8297
8506
  }
8298
8507
  ],
8299
8508
  "signatures": [
8300
8509
  {
8301
- "id": 516,
8510
+ "id": 521,
8302
8511
  "name": "clearSearchText",
8303
8512
  "kind": 4096,
8304
8513
  "kindString": "Call signature",
@@ -8311,7 +8520,7 @@
8311
8520
  ]
8312
8521
  },
8313
8522
  {
8314
- "id": 517,
8523
+ "id": 522,
8315
8524
  "name": "inputKeydown",
8316
8525
  "kind": 2048,
8317
8526
  "kindString": "Method",
@@ -8321,20 +8530,20 @@
8321
8530
  "sources": [
8322
8531
  {
8323
8532
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8324
- "line": 506,
8533
+ "line": 497,
8325
8534
  "character": 9
8326
8535
  }
8327
8536
  ],
8328
8537
  "signatures": [
8329
8538
  {
8330
- "id": 518,
8539
+ "id": 523,
8331
8540
  "name": "inputKeydown",
8332
8541
  "kind": 4096,
8333
8542
  "kindString": "Call signature",
8334
8543
  "flags": {},
8335
8544
  "parameters": [
8336
8545
  {
8337
- "id": 519,
8546
+ "id": 524,
8338
8547
  "name": "event",
8339
8548
  "kind": 32768,
8340
8549
  "kindString": "Parameter",
@@ -8355,7 +8564,7 @@
8355
8564
  ]
8356
8565
  },
8357
8566
  {
8358
- "id": 520,
8567
+ "id": 525,
8359
8568
  "name": "inputKeyup",
8360
8569
  "kind": 2048,
8361
8570
  "kindString": "Method",
@@ -8365,20 +8574,20 @@
8365
8574
  "sources": [
8366
8575
  {
8367
8576
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8368
- "line": 530,
8577
+ "line": 521,
8369
8578
  "character": 9
8370
8579
  }
8371
8580
  ],
8372
8581
  "signatures": [
8373
8582
  {
8374
- "id": 521,
8583
+ "id": 526,
8375
8584
  "name": "inputKeyup",
8376
8585
  "kind": 4096,
8377
8586
  "kindString": "Call signature",
8378
8587
  "flags": {},
8379
8588
  "parameters": [
8380
8589
  {
8381
- "id": 522,
8590
+ "id": 527,
8382
8591
  "name": "event",
8383
8592
  "kind": 32768,
8384
8593
  "kindString": "Parameter",
@@ -8399,7 +8608,7 @@
8399
8608
  ]
8400
8609
  },
8401
8610
  {
8402
- "id": 472,
8611
+ "id": 477,
8403
8612
  "name": "ngAfterViewInit",
8404
8613
  "kind": 2048,
8405
8614
  "kindString": "Method",
@@ -8409,13 +8618,13 @@
8409
8618
  "sources": [
8410
8619
  {
8411
8620
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8412
- "line": 373,
8621
+ "line": 364,
8413
8622
  "character": 9
8414
8623
  }
8415
8624
  ],
8416
8625
  "signatures": [
8417
8626
  {
8418
- "id": 473,
8627
+ "id": 478,
8419
8628
  "name": "ngAfterViewInit",
8420
8629
  "kind": 4096,
8421
8630
  "kindString": "Call signature",
@@ -8436,7 +8645,7 @@
8436
8645
  }
8437
8646
  },
8438
8647
  {
8439
- "id": 474,
8648
+ "id": 479,
8440
8649
  "name": "ngOnDestroy",
8441
8650
  "kind": 2048,
8442
8651
  "kindString": "Method",
@@ -8446,13 +8655,13 @@
8446
8655
  "sources": [
8447
8656
  {
8448
8657
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8449
- "line": 379,
8658
+ "line": 370,
8450
8659
  "character": 9
8451
8660
  }
8452
8661
  ],
8453
8662
  "signatures": [
8454
8663
  {
8455
- "id": 475,
8664
+ "id": 480,
8456
8665
  "name": "ngOnDestroy",
8457
8666
  "kind": 4096,
8458
8667
  "kindString": "Call signature",
@@ -8473,7 +8682,7 @@
8473
8682
  }
8474
8683
  },
8475
8684
  {
8476
- "id": 470,
8685
+ "id": 475,
8477
8686
  "name": "ngOnInit",
8478
8687
  "kind": 2048,
8479
8688
  "kindString": "Method",
@@ -8483,13 +8692,13 @@
8483
8692
  "sources": [
8484
8693
  {
8485
8694
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8486
- "line": 348,
8695
+ "line": 339,
8487
8696
  "character": 9
8488
8697
  }
8489
8698
  ],
8490
8699
  "signatures": [
8491
8700
  {
8492
- "id": 471,
8701
+ "id": 476,
8493
8702
  "name": "ngOnInit",
8494
8703
  "kind": 4096,
8495
8704
  "kindString": "Call signature",
@@ -8510,7 +8719,7 @@
8510
8719
  }
8511
8720
  },
8512
8721
  {
8513
- "id": 481,
8722
+ "id": 486,
8514
8723
  "name": "onAutocompleteBlur",
8515
8724
  "kind": 2048,
8516
8725
  "kindString": "Method",
@@ -8520,13 +8729,13 @@
8520
8729
  "sources": [
8521
8730
  {
8522
8731
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8523
- "line": 404,
8732
+ "line": 395,
8524
8733
  "character": 9
8525
8734
  }
8526
8735
  ],
8527
8736
  "signatures": [
8528
8737
  {
8529
- "id": 482,
8738
+ "id": 487,
8530
8739
  "name": "onAutocompleteBlur",
8531
8740
  "kind": 4096,
8532
8741
  "kindString": "Call signature",
@@ -8539,7 +8748,7 @@
8539
8748
  ]
8540
8749
  },
8541
8750
  {
8542
- "id": 478,
8751
+ "id": 483,
8543
8752
  "name": "onAutocompleteSelectionChange",
8544
8753
  "kind": 2048,
8545
8754
  "kindString": "Method",
@@ -8549,27 +8758,27 @@
8549
8758
  "sources": [
8550
8759
  {
8551
8760
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8552
- "line": 393,
8761
+ "line": 384,
8553
8762
  "character": 9
8554
8763
  }
8555
8764
  ],
8556
8765
  "signatures": [
8557
8766
  {
8558
- "id": 479,
8767
+ "id": 484,
8559
8768
  "name": "onAutocompleteSelectionChange",
8560
8769
  "kind": 4096,
8561
8770
  "kindString": "Call signature",
8562
8771
  "flags": {},
8563
8772
  "parameters": [
8564
8773
  {
8565
- "id": 480,
8774
+ "id": 485,
8566
8775
  "name": "change",
8567
8776
  "kind": 32768,
8568
8777
  "kindString": "Parameter",
8569
8778
  "flags": {},
8570
8779
  "type": {
8571
8780
  "type": "reference",
8572
- "id": 621,
8781
+ "id": 636,
8573
8782
  "name": "SkyAutocompleteSelectionChange"
8574
8783
  }
8575
8784
  }
@@ -8582,7 +8791,7 @@
8582
8791
  ]
8583
8792
  },
8584
8793
  {
8585
- "id": 496,
8794
+ "id": 501,
8586
8795
  "name": "onChange",
8587
8796
  "kind": 2048,
8588
8797
  "kindString": "Method",
@@ -8592,20 +8801,20 @@
8592
8801
  "sources": [
8593
8802
  {
8594
8803
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8595
- "line": 471,
8804
+ "line": 462,
8596
8805
  "character": 9
8597
8806
  }
8598
8807
  ],
8599
8808
  "signatures": [
8600
8809
  {
8601
- "id": 497,
8810
+ "id": 502,
8602
8811
  "name": "onChange",
8603
8812
  "kind": 4096,
8604
8813
  "kindString": "Call signature",
8605
8814
  "flags": {},
8606
8815
  "parameters": [
8607
8816
  {
8608
- "id": 498,
8817
+ "id": 503,
8609
8818
  "name": "value",
8610
8819
  "kind": 32768,
8611
8820
  "kindString": "Parameter",
@@ -8627,7 +8836,7 @@
8627
8836
  ]
8628
8837
  },
8629
8838
  {
8630
- "id": 534,
8839
+ "id": 545,
8631
8840
  "name": "onSearchAsync",
8632
8841
  "kind": 2048,
8633
8842
  "kindString": "Method",
@@ -8637,27 +8846,27 @@
8637
8846
  "sources": [
8638
8847
  {
8639
8848
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8640
- "line": 707,
8849
+ "line": 726,
8641
8850
  "character": 9
8642
8851
  }
8643
8852
  ],
8644
8853
  "signatures": [
8645
8854
  {
8646
- "id": 535,
8855
+ "id": 546,
8647
8856
  "name": "onSearchAsync",
8648
8857
  "kind": 4096,
8649
8858
  "kindString": "Call signature",
8650
8859
  "flags": {},
8651
8860
  "parameters": [
8652
8861
  {
8653
- "id": 536,
8862
+ "id": 547,
8654
8863
  "name": "args",
8655
8864
  "kind": 32768,
8656
8865
  "kindString": "Parameter",
8657
8866
  "flags": {},
8658
8867
  "type": {
8659
8868
  "type": "reference",
8660
- "id": 596,
8869
+ "id": 611,
8661
8870
  "name": "SkyAutocompleteSearchAsyncArgs"
8662
8871
  }
8663
8872
  }
@@ -8670,7 +8879,7 @@
8670
8879
  ]
8671
8880
  },
8672
8881
  {
8673
- "id": 523,
8882
+ "id": 528,
8674
8883
  "name": "onSearchButtonClick",
8675
8884
  "kind": 2048,
8676
8885
  "kindString": "Method",
@@ -8680,13 +8889,13 @@
8680
8889
  "sources": [
8681
8890
  {
8682
8891
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8683
- "line": 556,
8892
+ "line": 547,
8684
8893
  "character": 9
8685
8894
  }
8686
8895
  ],
8687
8896
  "signatures": [
8688
8897
  {
8689
- "id": 524,
8898
+ "id": 529,
8690
8899
  "name": "onSearchButtonClick",
8691
8900
  "kind": 4096,
8692
8901
  "kindString": "Call signature",
@@ -8699,7 +8908,7 @@
8699
8908
  ]
8700
8909
  },
8701
8910
  {
8702
- "id": 525,
8911
+ "id": 530,
8703
8912
  "name": "onShowMoreClick",
8704
8913
  "kind": 2048,
8705
8914
  "kindString": "Method",
@@ -8709,20 +8918,20 @@
8709
8918
  "sources": [
8710
8919
  {
8711
8920
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8712
- "line": 580,
8921
+ "line": 571,
8713
8922
  "character": 9
8714
8923
  }
8715
8924
  ],
8716
8925
  "signatures": [
8717
8926
  {
8718
- "id": 526,
8927
+ "id": 531,
8719
8928
  "name": "onShowMoreClick",
8720
8929
  "kind": 4096,
8721
8930
  "kindString": "Call signature",
8722
8931
  "flags": {},
8723
8932
  "parameters": [
8724
8933
  {
8725
- "id": 527,
8934
+ "id": 532,
8726
8935
  "name": "event",
8727
8936
  "kind": 32768,
8728
8937
  "kindString": "Parameter",
@@ -8741,7 +8950,7 @@
8741
8950
  ]
8742
8951
  },
8743
8952
  {
8744
- "id": 483,
8953
+ "id": 488,
8745
8954
  "name": "onTokensChange",
8746
8955
  "kind": 2048,
8747
8956
  "kindString": "Method",
@@ -8751,20 +8960,20 @@
8751
8960
  "sources": [
8752
8961
  {
8753
8962
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8754
- "line": 408,
8963
+ "line": 399,
8755
8964
  "character": 9
8756
8965
  }
8757
8966
  ],
8758
8967
  "signatures": [
8759
8968
  {
8760
- "id": 484,
8969
+ "id": 489,
8761
8970
  "name": "onTokensChange",
8762
8971
  "kind": 4096,
8763
8972
  "kindString": "Call signature",
8764
8973
  "flags": {},
8765
8974
  "parameters": [
8766
8975
  {
8767
- "id": 485,
8976
+ "id": 490,
8768
8977
  "name": "change",
8769
8978
  "kind": 32768,
8770
8979
  "kindString": "Parameter",
@@ -8792,7 +9001,7 @@
8792
9001
  ]
8793
9002
  },
8794
9003
  {
8795
- "id": 486,
9004
+ "id": 491,
8796
9005
  "name": "onTokensFocusIndexOverRange",
8797
9006
  "kind": 2048,
8798
9007
  "kindString": "Method",
@@ -8802,13 +9011,13 @@
8802
9011
  "sources": [
8803
9012
  {
8804
9013
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8805
- "line": 429,
9014
+ "line": 420,
8806
9015
  "character": 9
8807
9016
  }
8808
9017
  ],
8809
9018
  "signatures": [
8810
9019
  {
8811
- "id": 487,
9020
+ "id": 492,
8812
9021
  "name": "onTokensFocusIndexOverRange",
8813
9022
  "kind": 4096,
8814
9023
  "kindString": "Call signature",
@@ -8821,7 +9030,7 @@
8821
9030
  ]
8822
9031
  },
8823
9032
  {
8824
- "id": 488,
9033
+ "id": 493,
8825
9034
  "name": "onTokensKeyUp",
8826
9035
  "kind": 2048,
8827
9036
  "kindString": "Method",
@@ -8831,20 +9040,20 @@
8831
9040
  "sources": [
8832
9041
  {
8833
9042
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8834
- "line": 435,
9043
+ "line": 426,
8835
9044
  "character": 9
8836
9045
  }
8837
9046
  ],
8838
9047
  "signatures": [
8839
9048
  {
8840
- "id": 489,
9049
+ "id": 494,
8841
9050
  "name": "onTokensKeyUp",
8842
9051
  "kind": 4096,
8843
9052
  "kindString": "Call signature",
8844
9053
  "flags": {},
8845
9054
  "parameters": [
8846
9055
  {
8847
- "id": 490,
9056
+ "id": 495,
8848
9057
  "name": "event",
8849
9058
  "kind": 32768,
8850
9059
  "kindString": "Parameter",
@@ -8865,7 +9074,7 @@
8865
9074
  ]
8866
9075
  },
8867
9076
  {
8868
- "id": 491,
9077
+ "id": 496,
8869
9078
  "name": "onTokensRendered",
8870
9079
  "kind": 2048,
8871
9080
  "kindString": "Method",
@@ -8875,13 +9084,13 @@
8875
9084
  "sources": [
8876
9085
  {
8877
9086
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8878
- "line": 457,
9087
+ "line": 448,
8879
9088
  "character": 9
8880
9089
  }
8881
9090
  ],
8882
9091
  "signatures": [
8883
9092
  {
8884
- "id": 492,
9093
+ "id": 497,
8885
9094
  "name": "onTokensRendered",
8886
9095
  "kind": 4096,
8887
9096
  "kindString": "Call signature",
@@ -8894,7 +9103,7 @@
8894
9103
  ]
8895
9104
  },
8896
9105
  {
8897
- "id": 499,
9106
+ "id": 504,
8898
9107
  "name": "onTouched",
8899
9108
  "kind": 2048,
8900
9109
  "kindString": "Method",
@@ -8904,13 +9113,13 @@
8904
9113
  "sources": [
8905
9114
  {
8906
9115
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8907
- "line": 473,
9116
+ "line": 464,
8908
9117
  "character": 9
8909
9118
  }
8910
9119
  ],
8911
9120
  "signatures": [
8912
9121
  {
8913
- "id": 500,
9122
+ "id": 505,
8914
9123
  "name": "onTouched",
8915
9124
  "kind": 4096,
8916
9125
  "kindString": "Call signature",
@@ -8923,7 +9132,7 @@
8923
9132
  ]
8924
9133
  },
8925
9134
  {
8926
- "id": 531,
9135
+ "id": 533,
8927
9136
  "name": "openPicker",
8928
9137
  "kind": 2048,
8929
9138
  "kindString": "Method",
@@ -8933,20 +9142,20 @@
8933
9142
  "sources": [
8934
9143
  {
8935
9144
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8936
- "line": 653,
9145
+ "line": 579,
8937
9146
  "character": 9
8938
9147
  }
8939
9148
  ],
8940
9149
  "signatures": [
8941
9150
  {
8942
- "id": 532,
9151
+ "id": 534,
8943
9152
  "name": "openPicker",
8944
9153
  "kind": 4096,
8945
9154
  "kindString": "Call signature",
8946
9155
  "flags": {},
8947
9156
  "parameters": [
8948
9157
  {
8949
- "id": 533,
9158
+ "id": 535,
8950
9159
  "name": "initialSearch",
8951
9160
  "kind": 32768,
8952
9161
  "kindString": "Parameter",
@@ -8965,7 +9174,7 @@
8965
9174
  ]
8966
9175
  },
8967
9176
  {
8968
- "id": 501,
9177
+ "id": 506,
8969
9178
  "name": "registerOnChange",
8970
9179
  "kind": 2048,
8971
9180
  "kindString": "Method",
@@ -8975,20 +9184,20 @@
8975
9184
  "sources": [
8976
9185
  {
8977
9186
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
8978
- "line": 475,
9187
+ "line": 466,
8979
9188
  "character": 9
8980
9189
  }
8981
9190
  ],
8982
9191
  "signatures": [
8983
9192
  {
8984
- "id": 502,
9193
+ "id": 507,
8985
9194
  "name": "registerOnChange",
8986
9195
  "kind": 4096,
8987
9196
  "kindString": "Call signature",
8988
9197
  "flags": {},
8989
9198
  "parameters": [
8990
9199
  {
8991
- "id": 503,
9200
+ "id": 508,
8992
9201
  "name": "fn",
8993
9202
  "kind": 32768,
8994
9203
  "kindString": "Parameter",
@@ -8996,21 +9205,21 @@
8996
9205
  "type": {
8997
9206
  "type": "reflection",
8998
9207
  "declaration": {
8999
- "id": 504,
9208
+ "id": 509,
9000
9209
  "name": "__type",
9001
9210
  "kind": 65536,
9002
9211
  "kindString": "Type literal",
9003
9212
  "flags": {},
9004
9213
  "signatures": [
9005
9214
  {
9006
- "id": 505,
9215
+ "id": 510,
9007
9216
  "name": "__type",
9008
9217
  "kind": 4096,
9009
9218
  "kindString": "Call signature",
9010
9219
  "flags": {},
9011
9220
  "parameters": [
9012
9221
  {
9013
- "id": 506,
9222
+ "id": 511,
9014
9223
  "name": "value",
9015
9224
  "kind": 32768,
9016
9225
  "kindString": "Parameter",
@@ -9047,7 +9256,7 @@
9047
9256
  }
9048
9257
  },
9049
9258
  {
9050
- "id": 507,
9259
+ "id": 512,
9051
9260
  "name": "registerOnTouched",
9052
9261
  "kind": 2048,
9053
9262
  "kindString": "Method",
@@ -9057,20 +9266,20 @@
9057
9266
  "sources": [
9058
9267
  {
9059
9268
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
9060
- "line": 479,
9269
+ "line": 470,
9061
9270
  "character": 9
9062
9271
  }
9063
9272
  ],
9064
9273
  "signatures": [
9065
9274
  {
9066
- "id": 508,
9275
+ "id": 513,
9067
9276
  "name": "registerOnTouched",
9068
9277
  "kind": 4096,
9069
9278
  "kindString": "Call signature",
9070
9279
  "flags": {},
9071
9280
  "parameters": [
9072
9281
  {
9073
- "id": 509,
9282
+ "id": 514,
9074
9283
  "name": "fn",
9075
9284
  "kind": 32768,
9076
9285
  "kindString": "Parameter",
@@ -9078,14 +9287,14 @@
9078
9287
  "type": {
9079
9288
  "type": "reflection",
9080
9289
  "declaration": {
9081
- "id": 510,
9290
+ "id": 515,
9082
9291
  "name": "__type",
9083
9292
  "kind": 65536,
9084
9293
  "kindString": "Type literal",
9085
9294
  "flags": {},
9086
9295
  "signatures": [
9087
9296
  {
9088
- "id": 511,
9297
+ "id": 516,
9089
9298
  "name": "__type",
9090
9299
  "kind": 4096,
9091
9300
  "kindString": "Call signature",
@@ -9116,7 +9325,7 @@
9116
9325
  }
9117
9326
  },
9118
9327
  {
9119
- "id": 512,
9328
+ "id": 517,
9120
9329
  "name": "setDisabledState",
9121
9330
  "kind": 2048,
9122
9331
  "kindString": "Method",
@@ -9126,20 +9335,20 @@
9126
9335
  "sources": [
9127
9336
  {
9128
9337
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
9129
- "line": 484,
9338
+ "line": 475,
9130
9339
  "character": 9
9131
9340
  }
9132
9341
  ],
9133
9342
  "signatures": [
9134
9343
  {
9135
- "id": 513,
9344
+ "id": 518,
9136
9345
  "name": "setDisabledState",
9137
9346
  "kind": 4096,
9138
9347
  "kindString": "Call signature",
9139
9348
  "flags": {},
9140
9349
  "parameters": [
9141
9350
  {
9142
- "id": 514,
9351
+ "id": 519,
9143
9352
  "name": "disabled",
9144
9353
  "kind": 32768,
9145
9354
  "kindString": "Parameter",
@@ -9166,7 +9375,7 @@
9166
9375
  }
9167
9376
  },
9168
9377
  {
9169
- "id": 493,
9378
+ "id": 498,
9170
9379
  "name": "writeValue",
9171
9380
  "kind": 2048,
9172
9381
  "kindString": "Method",
@@ -9176,20 +9385,20 @@
9176
9385
  "sources": [
9177
9386
  {
9178
9387
  "fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
9179
- "line": 463,
9388
+ "line": 454,
9180
9389
  "character": 9
9181
9390
  }
9182
9391
  ],
9183
9392
  "signatures": [
9184
9393
  {
9185
- "id": 494,
9394
+ "id": 499,
9186
9395
  "name": "writeValue",
9187
9396
  "kind": 4096,
9188
9397
  "kindString": "Call signature",
9189
9398
  "flags": {},
9190
9399
  "parameters": [
9191
9400
  {
9192
- "id": 495,
9401
+ "id": 500,
9193
9402
  "name": "value",
9194
9403
  "kind": 32768,
9195
9404
  "kindString": "Parameter",
@@ -9231,76 +9440,76 @@
9231
9440
  "title": "Properties",
9232
9441
  "kind": 1024,
9233
9442
  "children": [
9234
- 429,
9235
- 402,
9236
- 403,
9443
+ 431,
9237
9444
  404,
9238
- 438,
9239
- 562,
9240
- 418,
9241
- 468,
9242
- 447,
9243
- 439,
9244
- 448,
9245
- 417,
9246
- 582,
9247
- 449,
9248
- 583,
9249
- 575,
9250
- 581,
9251
- 576,
9252
- 446,
9253
- 423,
9445
+ 405,
9446
+ 406,
9254
9447
  440,
9255
- 469,
9256
- 441
9448
+ 577,
9449
+ 420,
9450
+ 473,
9451
+ 449,
9452
+ 441,
9453
+ 450,
9454
+ 419,
9455
+ 597,
9456
+ 451,
9457
+ 598,
9458
+ 590,
9459
+ 596,
9460
+ 591,
9461
+ 448,
9462
+ 425,
9463
+ 442,
9464
+ 474,
9465
+ 443
9257
9466
  ]
9258
9467
  },
9259
9468
  {
9260
9469
  "title": "Accessors",
9261
9470
  "kind": 262144,
9262
9471
  "children": [
9263
- 442,
9264
- 405,
9265
- 563,
9266
- 409,
9267
- 413,
9268
- 567,
9269
- 571,
9270
- 577,
9271
- 424,
9272
- 419,
9273
- 430,
9274
- 434
9472
+ 444,
9473
+ 407,
9474
+ 578,
9475
+ 411,
9476
+ 415,
9477
+ 582,
9478
+ 586,
9479
+ 592,
9480
+ 426,
9481
+ 421,
9482
+ 432,
9483
+ 436
9275
9484
  ]
9276
9485
  },
9277
9486
  {
9278
9487
  "title": "Methods",
9279
9488
  "kind": 2048,
9280
9489
  "children": [
9281
- 476,
9282
- 515,
9283
- 517,
9284
- 520,
9285
- 472,
9286
- 474,
9287
- 470,
9288
9490
  481,
9289
- 478,
9290
- 496,
9291
- 534,
9292
- 523,
9491
+ 520,
9492
+ 522,
9293
9493
  525,
9294
- 483,
9494
+ 477,
9495
+ 479,
9496
+ 475,
9295
9497
  486,
9498
+ 483,
9499
+ 501,
9500
+ 545,
9501
+ 528,
9502
+ 530,
9296
9503
  488,
9297
9504
  491,
9298
- 499,
9299
- 531,
9300
- 501,
9301
- 507,
9505
+ 493,
9506
+ 496,
9507
+ 504,
9508
+ 533,
9509
+ 506,
9302
9510
  512,
9303
- 493
9511
+ 517,
9512
+ 498
9304
9513
  ]
9305
9514
  }
9306
9515
  ],
@@ -9345,7 +9554,7 @@
9345
9554
  ]
9346
9555
  },
9347
9556
  {
9348
- "id": 596,
9557
+ "id": 611,
9349
9558
  "name": "SkyAutocompleteSearchAsyncArgs",
9350
9559
  "kind": 256,
9351
9560
  "kindString": "Interface",
@@ -9355,7 +9564,7 @@
9355
9564
  },
9356
9565
  "children": [
9357
9566
  {
9358
- "id": 600,
9567
+ "id": 615,
9359
9568
  "name": "continuationData",
9360
9569
  "kind": 1024,
9361
9570
  "kindString": "Property",
@@ -9378,7 +9587,7 @@
9378
9587
  }
9379
9588
  },
9380
9589
  {
9381
- "id": 598,
9590
+ "id": 613,
9382
9591
  "name": "displayType",
9383
9592
  "kind": 1024,
9384
9593
  "kindString": "Property",
@@ -9395,12 +9604,12 @@
9395
9604
  ],
9396
9605
  "type": {
9397
9606
  "type": "reference",
9398
- "id": 607,
9607
+ "id": 622,
9399
9608
  "name": "AutocompleteSearchAsyncResultDisplayType"
9400
9609
  }
9401
9610
  },
9402
9611
  {
9403
- "id": 599,
9612
+ "id": 614,
9404
9613
  "name": "offset",
9405
9614
  "kind": 1024,
9406
9615
  "kindString": "Property",
@@ -9421,7 +9630,7 @@
9421
9630
  }
9422
9631
  },
9423
9632
  {
9424
- "id": 601,
9633
+ "id": 616,
9425
9634
  "name": "result",
9426
9635
  "kind": 1024,
9427
9636
  "kindString": "Property",
@@ -9443,7 +9652,7 @@
9443
9652
  "typeArguments": [
9444
9653
  {
9445
9654
  "type": "reference",
9446
- "id": 602,
9655
+ "id": 617,
9447
9656
  "name": "SkyAutocompleteSearchAsyncResult"
9448
9657
  }
9449
9658
  ],
@@ -9453,7 +9662,7 @@
9453
9662
  }
9454
9663
  },
9455
9664
  {
9456
- "id": 597,
9665
+ "id": 612,
9457
9666
  "name": "searchText",
9458
9667
  "kind": 1024,
9459
9668
  "kindString": "Property",
@@ -9479,11 +9688,11 @@
9479
9688
  "title": "Properties",
9480
9689
  "kind": 1024,
9481
9690
  "children": [
9482
- 600,
9483
- 598,
9484
- 599,
9485
- 601,
9486
- 597
9691
+ 615,
9692
+ 613,
9693
+ 614,
9694
+ 616,
9695
+ 612
9487
9696
  ]
9488
9697
  }
9489
9698
  ],
@@ -9496,7 +9705,7 @@
9496
9705
  ]
9497
9706
  },
9498
9707
  {
9499
- "id": 602,
9708
+ "id": 617,
9500
9709
  "name": "SkyAutocompleteSearchAsyncResult",
9501
9710
  "kind": 256,
9502
9711
  "kindString": "Interface",
@@ -9506,7 +9715,7 @@
9506
9715
  },
9507
9716
  "children": [
9508
9717
  {
9509
- "id": 603,
9718
+ "id": 618,
9510
9719
  "name": "continuationData",
9511
9720
  "kind": 1024,
9512
9721
  "kindString": "Property",
@@ -9529,7 +9738,7 @@
9529
9738
  }
9530
9739
  },
9531
9740
  {
9532
- "id": 604,
9741
+ "id": 619,
9533
9742
  "name": "hasMore",
9534
9743
  "kind": 1024,
9535
9744
  "kindString": "Property",
@@ -9552,7 +9761,7 @@
9552
9761
  }
9553
9762
  },
9554
9763
  {
9555
- "id": 605,
9764
+ "id": 620,
9556
9765
  "name": "items",
9557
9766
  "kind": 1024,
9558
9767
  "kindString": "Property",
@@ -9576,7 +9785,7 @@
9576
9785
  }
9577
9786
  },
9578
9787
  {
9579
- "id": 606,
9788
+ "id": 621,
9580
9789
  "name": "totalCount",
9581
9790
  "kind": 1024,
9582
9791
  "kindString": "Property",
@@ -9602,10 +9811,10 @@
9602
9811
  "title": "Properties",
9603
9812
  "kind": 1024,
9604
9813
  "children": [
9605
- 603,
9606
- 604,
9607
- 605,
9608
- 606
9814
+ 618,
9815
+ 619,
9816
+ 620,
9817
+ 621
9609
9818
  ]
9610
9819
  }
9611
9820
  ],
@@ -9618,14 +9827,14 @@
9618
9827
  ]
9619
9828
  },
9620
9829
  {
9621
- "id": 621,
9830
+ "id": 636,
9622
9831
  "name": "SkyAutocompleteSelectionChange",
9623
9832
  "kind": 256,
9624
9833
  "kindString": "Interface",
9625
9834
  "flags": {},
9626
9835
  "children": [
9627
9836
  {
9628
- "id": 622,
9837
+ "id": 637,
9629
9838
  "name": "selectedItem",
9630
9839
  "kind": 1024,
9631
9840
  "kindString": "Property",
@@ -9653,7 +9862,7 @@
9653
9862
  "title": "Properties",
9654
9863
  "kind": 1024,
9655
9864
  "children": [
9656
- 622
9865
+ 637
9657
9866
  ]
9658
9867
  }
9659
9868
  ],
@@ -9666,7 +9875,7 @@
9666
9875
  ]
9667
9876
  },
9668
9877
  {
9669
- "id": 629,
9878
+ "id": 644,
9670
9879
  "name": "SkyCountryFieldCountry",
9671
9880
  "kind": 256,
9672
9881
  "kindString": "Interface",
@@ -9676,7 +9885,7 @@
9676
9885
  },
9677
9886
  "children": [
9678
9887
  {
9679
- "id": 632,
9888
+ "id": 647,
9680
9889
  "name": "dialCode",
9681
9890
  "kind": 1024,
9682
9891
  "kindString": "Property",
@@ -9699,7 +9908,7 @@
9699
9908
  }
9700
9909
  },
9701
9910
  {
9702
- "id": 630,
9911
+ "id": 645,
9703
9912
  "name": "iso2",
9704
9913
  "kind": 1024,
9705
9914
  "kindString": "Property",
@@ -9726,7 +9935,7 @@
9726
9935
  }
9727
9936
  },
9728
9937
  {
9729
- "id": 631,
9938
+ "id": 646,
9730
9939
  "name": "name",
9731
9940
  "kind": 1024,
9732
9941
  "kindString": "Property",
@@ -9754,9 +9963,9 @@
9754
9963
  "title": "Properties",
9755
9964
  "kind": 1024,
9756
9965
  "children": [
9757
- 632,
9758
- 630,
9759
- 631
9966
+ 647,
9967
+ 645,
9968
+ 646
9760
9969
  ]
9761
9970
  }
9762
9971
  ],
@@ -9769,7 +9978,7 @@
9769
9978
  ]
9770
9979
  },
9771
9980
  {
9772
- "id": 638,
9981
+ "id": 653,
9773
9982
  "name": "SkyLookupAddCallbackArgs",
9774
9983
  "kind": 256,
9775
9984
  "kindString": "Interface",
@@ -9779,7 +9988,7 @@
9779
9988
  },
9780
9989
  "children": [
9781
9990
  {
9782
- "id": 640,
9991
+ "id": 655,
9783
9992
  "name": "data",
9784
9993
  "kind": 1024,
9785
9994
  "kindString": "Property",
@@ -9805,7 +10014,7 @@
9805
10014
  }
9806
10015
  },
9807
10016
  {
9808
- "id": 639,
10017
+ "id": 654,
9809
10018
  "name": "item",
9810
10019
  "kind": 1024,
9811
10020
  "kindString": "Property",
@@ -9831,8 +10040,8 @@
9831
10040
  "title": "Properties",
9832
10041
  "kind": 1024,
9833
10042
  "children": [
9834
- 640,
9835
- 639
10043
+ 655,
10044
+ 654
9836
10045
  ]
9837
10046
  }
9838
10047
  ],
@@ -9845,7 +10054,7 @@
9845
10054
  ]
9846
10055
  },
9847
10056
  {
9848
- "id": 641,
10057
+ "id": 656,
9849
10058
  "name": "SkyLookupAddClickEventArgs",
9850
10059
  "kind": 256,
9851
10060
  "kindString": "Interface",
@@ -9855,7 +10064,7 @@
9855
10064
  },
9856
10065
  "children": [
9857
10066
  {
9858
- "id": 642,
10067
+ "id": 657,
9859
10068
  "name": "itemAdded",
9860
10069
  "kind": 2048,
9861
10070
  "kindString": "Method",
@@ -9869,112 +10078,918 @@
9869
10078
  ],
9870
10079
  "signatures": [
9871
10080
  {
9872
- "id": 643,
10081
+ "id": 658,
9873
10082
  "name": "itemAdded",
9874
10083
  "kind": 4096,
9875
10084
  "kindString": "Call signature",
9876
10085
  "flags": {},
9877
10086
  "comment": {
9878
- "shortText": "A callback function for the consumer to use to notify the lookup that a new item has been added."
10087
+ "shortText": "A callback function for the consumer to use to notify the lookup that a new item has been added."
10088
+ },
10089
+ "parameters": [
10090
+ {
10091
+ "id": 659,
10092
+ "name": "args",
10093
+ "kind": 32768,
10094
+ "kindString": "Parameter",
10095
+ "flags": {},
10096
+ "comment": {
10097
+ "shortText": "Specifies information about the item that was added.\n"
10098
+ },
10099
+ "type": {
10100
+ "type": "reference",
10101
+ "id": 653,
10102
+ "name": "SkyLookupAddCallbackArgs"
10103
+ }
10104
+ }
10105
+ ],
10106
+ "type": {
10107
+ "type": "intrinsic",
10108
+ "name": "void"
10109
+ }
10110
+ }
10111
+ ]
10112
+ }
10113
+ ],
10114
+ "groups": [
10115
+ {
10116
+ "title": "Methods",
10117
+ "kind": 2048,
10118
+ "children": [
10119
+ 657
10120
+ ]
10121
+ }
10122
+ ],
10123
+ "sources": [
10124
+ {
10125
+ "fileName": "projects/lookup/src/modules/lookup/types/lookup-add-click-event-args.ts",
10126
+ "line": 6,
10127
+ "character": 17
10128
+ }
10129
+ ]
10130
+ },
10131
+ {
10132
+ "id": 664,
10133
+ "name": "SkyLookupShowMoreConfig",
10134
+ "kind": 256,
10135
+ "kindString": "Interface",
10136
+ "flags": {},
10137
+ "comment": {
10138
+ "shortText": "Specifies configuration options for the picker to display when users select the button\nto view all options. You can use a native, out-of-the-box modal picker, or you can create\na custom picker. If you provide configuration options for both, the lookup component uses\nthe custom configuration."
10139
+ },
10140
+ "children": [
10141
+ {
10142
+ "id": 665,
10143
+ "name": "customPicker",
10144
+ "kind": 1024,
10145
+ "kindString": "Property",
10146
+ "flags": {
10147
+ "isOptional": true
10148
+ },
10149
+ "comment": {
10150
+ "shortText": "Specifies a configuration object to display a custom picker."
10151
+ },
10152
+ "sources": [
10153
+ {
10154
+ "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-config.ts",
10155
+ "line": 14,
10156
+ "character": 2
10157
+ }
10158
+ ],
10159
+ "type": {
10160
+ "type": "reference",
10161
+ "id": 667,
10162
+ "name": "SkyLookupShowMoreCustomPicker"
10163
+ }
10164
+ },
10165
+ {
10166
+ "id": 666,
10167
+ "name": "nativePickerConfig",
10168
+ "kind": 1024,
10169
+ "kindString": "Property",
10170
+ "flags": {
10171
+ "isOptional": true
10172
+ },
10173
+ "comment": {
10174
+ "shortText": "Specifies configuration options for the native picker."
10175
+ },
10176
+ "sources": [
10177
+ {
10178
+ "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-config.ts",
10179
+ "line": 19,
10180
+ "character": 2
10181
+ }
10182
+ ],
10183
+ "type": {
10184
+ "type": "reference",
10185
+ "id": 677,
10186
+ "name": "SkyLookupShowMoreNativePickerConfig"
10187
+ }
10188
+ }
10189
+ ],
10190
+ "groups": [
10191
+ {
10192
+ "title": "Properties",
10193
+ "kind": 1024,
10194
+ "children": [
10195
+ 665,
10196
+ 666
10197
+ ]
10198
+ }
10199
+ ],
10200
+ "sources": [
10201
+ {
10202
+ "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-config.ts",
10203
+ "line": 10,
10204
+ "character": 17
10205
+ }
10206
+ ]
10207
+ },
10208
+ {
10209
+ "id": 667,
10210
+ "name": "SkyLookupShowMoreCustomPicker",
10211
+ "kind": 256,
10212
+ "kindString": "Interface",
10213
+ "flags": {},
10214
+ "comment": {
10215
+ "shortText": "Defines a custom picker to display when users select the button to view all options."
10216
+ },
10217
+ "children": [
10218
+ {
10219
+ "id": 668,
10220
+ "name": "open",
10221
+ "kind": 2048,
10222
+ "kindString": "Method",
10223
+ "flags": {},
10224
+ "sources": [
10225
+ {
10226
+ "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-custom-picker.ts",
10227
+ "line": 7,
10228
+ "character": 2
10229
+ }
10230
+ ],
10231
+ "signatures": [
10232
+ {
10233
+ "id": 669,
10234
+ "name": "open",
10235
+ "kind": 4096,
10236
+ "kindString": "Call signature",
10237
+ "flags": {},
10238
+ "parameters": [
10239
+ {
10240
+ "id": 670,
10241
+ "name": "pickerContext",
10242
+ "kind": 32768,
10243
+ "kindString": "Parameter",
10244
+ "flags": {},
10245
+ "type": {
10246
+ "type": "reference",
10247
+ "id": 671,
10248
+ "name": "SkyLookupShowMoreCustomPickerContext"
10249
+ }
10250
+ }
10251
+ ],
10252
+ "type": {
10253
+ "type": "intrinsic",
10254
+ "name": "void"
10255
+ }
10256
+ }
10257
+ ]
10258
+ }
10259
+ ],
10260
+ "groups": [
10261
+ {
10262
+ "title": "Methods",
10263
+ "kind": 2048,
10264
+ "children": [
10265
+ 668
10266
+ ]
10267
+ }
10268
+ ],
10269
+ "sources": [
10270
+ {
10271
+ "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-custom-picker.ts",
10272
+ "line": 6,
10273
+ "character": 17
10274
+ }
10275
+ ]
10276
+ },
10277
+ {
10278
+ "id": 677,
10279
+ "name": "SkyLookupShowMoreNativePickerConfig",
10280
+ "kind": 256,
10281
+ "kindString": "Interface",
10282
+ "flags": {},
10283
+ "comment": {
10284
+ "shortText": "Specifies configuration options to display the native picker when users select\nthe button to view all options."
10285
+ },
10286
+ "children": [
10287
+ {
10288
+ "id": 678,
10289
+ "name": "itemTemplate",
10290
+ "kind": 1024,
10291
+ "kindString": "Property",
10292
+ "flags": {
10293
+ "isOptional": true
10294
+ },
10295
+ "comment": {
10296
+ "shortText": "Specifies a template to format each option in the picker. The lookup component\ninjects values into the template as `item` variables that reference all the object\nproperties of the options. If you do not specify a template, the picker uses\nthe same template as the dropdown list."
10297
+ },
10298
+ "sources": [
10299
+ {
10300
+ "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-native-picker-config.ts",
10301
+ "line": 14,
10302
+ "character": 2
10303
+ }
10304
+ ],
10305
+ "type": {
10306
+ "type": "reference",
10307
+ "typeArguments": [
10308
+ {
10309
+ "type": "intrinsic",
10310
+ "name": "unknown"
10311
+ }
10312
+ ],
10313
+ "qualifiedName": "TemplateRef",
10314
+ "package": "@angular/core",
10315
+ "name": "TemplateRef"
10316
+ }
10317
+ },
10318
+ {
10319
+ "id": 679,
10320
+ "name": "title",
10321
+ "kind": 1024,
10322
+ "kindString": "Property",
10323
+ "flags": {
10324
+ "isOptional": true
10325
+ },
10326
+ "comment": {
10327
+ "shortText": "Specifies a title for the picker.",
10328
+ "tags": [
10329
+ {
10330
+ "tag": "default",
10331
+ "text": "\"Select an option/Select options\"\n"
10332
+ }
10333
+ ]
10334
+ },
10335
+ "sources": [
10336
+ {
10337
+ "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-native-picker-config.ts",
10338
+ "line": 20,
10339
+ "character": 2
10340
+ }
10341
+ ],
10342
+ "type": {
10343
+ "type": "intrinsic",
10344
+ "name": "string"
10345
+ }
10346
+ }
10347
+ ],
10348
+ "groups": [
10349
+ {
10350
+ "title": "Properties",
10351
+ "kind": 1024,
10352
+ "children": [
10353
+ 678,
10354
+ 679
10355
+ ]
10356
+ }
10357
+ ],
10358
+ "sources": [
10359
+ {
10360
+ "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-native-picker-config.ts",
10361
+ "line": 7,
10362
+ "character": 17
10363
+ }
10364
+ ]
10365
+ },
10366
+ {
10367
+ "id": 698,
10368
+ "name": "SkySelectionModalAddCallbackArgs",
10369
+ "kind": 256,
10370
+ "kindString": "Interface",
10371
+ "flags": {},
10372
+ "comment": {
10373
+ "shortText": "Specifies the information for the callback used when adding a new item to a selection modal instance."
10374
+ },
10375
+ "children": [
10376
+ {
10377
+ "id": 699,
10378
+ "name": "item",
10379
+ "kind": 1024,
10380
+ "kindString": "Property",
10381
+ "flags": {},
10382
+ "comment": {
10383
+ "shortText": "The new item which has been added to the data. This item will be automatically selected."
10384
+ },
10385
+ "sources": [
10386
+ {
10387
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-add-click-callback-args.ts",
10388
+ "line": 8,
10389
+ "character": 2
10390
+ }
10391
+ ],
10392
+ "type": {
10393
+ "type": "intrinsic",
10394
+ "name": "any"
10395
+ }
10396
+ }
10397
+ ],
10398
+ "groups": [
10399
+ {
10400
+ "title": "Properties",
10401
+ "kind": 1024,
10402
+ "children": [
10403
+ 699
10404
+ ]
10405
+ }
10406
+ ],
10407
+ "sources": [
10408
+ {
10409
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-add-click-callback-args.ts",
10410
+ "line": 4,
10411
+ "character": 17
10412
+ }
10413
+ ]
10414
+ },
10415
+ {
10416
+ "id": 700,
10417
+ "name": "SkySelectionModalAddClickEventArgs",
10418
+ "kind": 256,
10419
+ "kindString": "Interface",
10420
+ "flags": {},
10421
+ "comment": {
10422
+ "shortText": "Specifies a callback function for the consumer to use to notify the selection modal that a new item has been added."
10423
+ },
10424
+ "children": [
10425
+ {
10426
+ "id": 701,
10427
+ "name": "itemAdded",
10428
+ "kind": 2048,
10429
+ "kindString": "Method",
10430
+ "flags": {},
10431
+ "sources": [
10432
+ {
10433
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-add-click-event-args.ts",
10434
+ "line": 11,
10435
+ "character": 2
10436
+ }
10437
+ ],
10438
+ "signatures": [
10439
+ {
10440
+ "id": 702,
10441
+ "name": "itemAdded",
10442
+ "kind": 4096,
10443
+ "kindString": "Call signature",
10444
+ "flags": {},
10445
+ "comment": {
10446
+ "shortText": "A callback function for the consumer to use to notify the selection modal that a new item has been added."
10447
+ },
10448
+ "parameters": [
10449
+ {
10450
+ "id": 703,
10451
+ "name": "args",
10452
+ "kind": 32768,
10453
+ "kindString": "Parameter",
10454
+ "flags": {},
10455
+ "comment": {
10456
+ "shortText": "Specifies information about the item that was added.\n"
10457
+ },
10458
+ "type": {
10459
+ "type": "reference",
10460
+ "id": 698,
10461
+ "name": "SkySelectionModalAddCallbackArgs"
10462
+ }
10463
+ }
10464
+ ],
10465
+ "type": {
10466
+ "type": "intrinsic",
10467
+ "name": "void"
10468
+ }
10469
+ }
10470
+ ]
10471
+ }
10472
+ ],
10473
+ "groups": [
10474
+ {
10475
+ "title": "Methods",
10476
+ "kind": 2048,
10477
+ "children": [
10478
+ 701
10479
+ ]
10480
+ }
10481
+ ],
10482
+ "sources": [
10483
+ {
10484
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-add-click-event-args.ts",
10485
+ "line": 6,
10486
+ "character": 17
10487
+ }
10488
+ ]
10489
+ },
10490
+ {
10491
+ "id": 704,
10492
+ "name": "SkySelectionModalCloseArgs",
10493
+ "kind": 256,
10494
+ "kindString": "Interface",
10495
+ "flags": {},
10496
+ "comment": {
10497
+ "shortText": "The result from the selection modal."
10498
+ },
10499
+ "children": [
10500
+ {
10501
+ "id": 705,
10502
+ "name": "reason",
10503
+ "kind": 1024,
10504
+ "kindString": "Property",
10505
+ "flags": {},
10506
+ "comment": {
10507
+ "shortText": "Indicates why the selection modal was closed."
10508
+ },
10509
+ "sources": [
10510
+ {
10511
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-close-args.ts",
10512
+ "line": 8,
10513
+ "character": 2
10514
+ }
10515
+ ],
10516
+ "type": {
10517
+ "type": "union",
10518
+ "types": [
10519
+ {
10520
+ "type": "literal",
10521
+ "value": "close"
10522
+ },
10523
+ {
10524
+ "type": "literal",
10525
+ "value": "cancel"
10526
+ },
10527
+ {
10528
+ "type": "literal",
10529
+ "value": "save"
10530
+ }
10531
+ ]
10532
+ }
10533
+ },
10534
+ {
10535
+ "id": 706,
10536
+ "name": "selectedItems",
10537
+ "kind": 1024,
10538
+ "kindString": "Property",
10539
+ "flags": {
10540
+ "isOptional": true
10541
+ },
10542
+ "comment": {
10543
+ "shortText": "A collection of items the user selected. This property is only\nset when the `result` property is set to `save`."
10544
+ },
10545
+ "sources": [
10546
+ {
10547
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-close-args.ts",
10548
+ "line": 14,
10549
+ "character": 2
10550
+ }
10551
+ ],
10552
+ "type": {
10553
+ "type": "array",
10554
+ "elementType": {
10555
+ "type": "intrinsic",
10556
+ "name": "unknown"
10557
+ }
10558
+ }
10559
+ }
10560
+ ],
10561
+ "groups": [
10562
+ {
10563
+ "title": "Properties",
10564
+ "kind": 1024,
10565
+ "children": [
10566
+ 705,
10567
+ 706
10568
+ ]
10569
+ }
10570
+ ],
10571
+ "sources": [
10572
+ {
10573
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-close-args.ts",
10574
+ "line": 4,
10575
+ "character": 17
10576
+ }
10577
+ ]
10578
+ },
10579
+ {
10580
+ "id": 707,
10581
+ "name": "SkySelectionModalOpenArgs",
10582
+ "kind": 256,
10583
+ "kindString": "Interface",
10584
+ "flags": {},
10585
+ "comment": {
10586
+ "shortText": "Parameters for the selection modal."
10587
+ },
10588
+ "children": [
10589
+ {
10590
+ "id": 711,
10591
+ "name": "descriptorProperty",
10592
+ "kind": 1024,
10593
+ "kindString": "Property",
10594
+ "flags": {},
10595
+ "comment": {
10596
+ "shortText": "Specifies an object property to display in the text input after users\nselect an item in the dropdown list."
10597
+ },
10598
+ "sources": [
10599
+ {
10600
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10601
+ "line": 38,
10602
+ "character": 2
10603
+ }
10604
+ ],
10605
+ "type": {
10606
+ "type": "intrinsic",
10607
+ "name": "string"
10608
+ }
10609
+ },
10610
+ {
10611
+ "id": 712,
10612
+ "name": "idProperty",
10613
+ "kind": 1024,
10614
+ "kindString": "Property",
10615
+ "flags": {},
10616
+ "comment": {
10617
+ "shortText": "An object property that represents the object's unique identifier."
10618
+ },
10619
+ "sources": [
10620
+ {
10621
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10622
+ "line": 43,
10623
+ "character": 2
10624
+ }
10625
+ ],
10626
+ "type": {
10627
+ "type": "intrinsic",
10628
+ "name": "string"
10629
+ }
10630
+ },
10631
+ {
10632
+ "id": 713,
10633
+ "name": "initialSearch",
10634
+ "kind": 1024,
10635
+ "kindString": "Property",
10636
+ "flags": {
10637
+ "isOptional": true
10638
+ },
10639
+ "comment": {
10640
+ "shortText": "The initial search text."
10641
+ },
10642
+ "sources": [
10643
+ {
10644
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10645
+ "line": 48,
10646
+ "character": 2
10647
+ }
10648
+ ],
10649
+ "type": {
10650
+ "type": "intrinsic",
10651
+ "name": "string"
10652
+ }
10653
+ },
10654
+ {
10655
+ "id": 708,
10656
+ "name": "itemTemplate",
10657
+ "kind": 1024,
10658
+ "kindString": "Property",
10659
+ "flags": {
10660
+ "isOptional": true
10661
+ },
10662
+ "comment": {
10663
+ "shortText": "The template to format each option in the search results. The selection modal\ninjects values into the template as `item` variables that reference all the object\nproperties of the options. If you do not specify a template, the item's descriptor\nproperty value is displayed."
10664
+ },
10665
+ "sources": [
10666
+ {
10667
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10668
+ "line": 21,
10669
+ "character": 2
10670
+ }
10671
+ ],
10672
+ "type": {
10673
+ "type": "reference",
10674
+ "typeArguments": [
10675
+ {
10676
+ "type": "intrinsic",
10677
+ "name": "unknown"
10678
+ }
10679
+ ],
10680
+ "qualifiedName": "TemplateRef",
10681
+ "package": "@angular/core",
10682
+ "name": "TemplateRef"
10683
+ }
10684
+ },
10685
+ {
10686
+ "id": 717,
10687
+ "name": "selectMode",
10688
+ "kind": 1024,
10689
+ "kindString": "Property",
10690
+ "flags": {},
10691
+ "comment": {
10692
+ "shortText": "Specifies whether users can select one option or multiple options.",
10693
+ "tags": [
10694
+ {
10695
+ "tag": "default",
10696
+ "text": "\"multiple\"\n"
10697
+ }
10698
+ ]
10699
+ },
10700
+ "sources": [
10701
+ {
10702
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10703
+ "line": 61,
10704
+ "character": 2
10705
+ }
10706
+ ],
10707
+ "type": {
10708
+ "type": "reference",
10709
+ "id": 663,
10710
+ "name": "SkyLookupSelectModeType"
10711
+ }
10712
+ },
10713
+ {
10714
+ "id": 718,
10715
+ "name": "showAddButton",
10716
+ "kind": 1024,
10717
+ "kindString": "Property",
10718
+ "flags": {
10719
+ "isOptional": true
10720
+ },
10721
+ "comment": {
10722
+ "shortText": "Whether to display a button that lets users add options to the list.",
10723
+ "tags": [
10724
+ {
10725
+ "tag": "default",
10726
+ "text": "false\n"
10727
+ }
10728
+ ]
10729
+ },
10730
+ "sources": [
10731
+ {
10732
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10733
+ "line": 67,
10734
+ "character": 2
10735
+ }
10736
+ ],
10737
+ "type": {
10738
+ "type": "intrinsic",
10739
+ "name": "boolean"
10740
+ }
10741
+ },
10742
+ {
10743
+ "id": 709,
10744
+ "name": "title",
10745
+ "kind": 1024,
10746
+ "kindString": "Property",
10747
+ "flags": {
10748
+ "isOptional": true
10749
+ },
10750
+ "comment": {
10751
+ "shortText": "The title for the selection modal.",
10752
+ "tags": [
10753
+ {
10754
+ "tag": "default",
10755
+ "text": "\"Select an option/Select options\"\n"
10756
+ }
10757
+ ]
10758
+ },
10759
+ "sources": [
10760
+ {
10761
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10762
+ "line": 27,
10763
+ "character": 2
10764
+ }
10765
+ ],
10766
+ "type": {
10767
+ "type": "intrinsic",
10768
+ "name": "string"
10769
+ }
10770
+ },
10771
+ {
10772
+ "id": 710,
10773
+ "name": "value",
10774
+ "kind": 1024,
10775
+ "kindString": "Property",
10776
+ "flags": {
10777
+ "isOptional": true
10778
+ },
10779
+ "comment": {
10780
+ "shortText": "The initial value for the selection modal."
10781
+ },
10782
+ "sources": [
10783
+ {
10784
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10785
+ "line": 32,
10786
+ "character": 2
10787
+ }
10788
+ ],
10789
+ "type": {
10790
+ "type": "array",
10791
+ "elementType": {
10792
+ "type": "intrinsic",
10793
+ "name": "unknown"
10794
+ }
10795
+ }
10796
+ },
10797
+ {
10798
+ "id": 719,
10799
+ "name": "addClick",
10800
+ "kind": 2048,
10801
+ "kindString": "Method",
10802
+ "flags": {
10803
+ "isOptional": true
10804
+ },
10805
+ "sources": [
10806
+ {
10807
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10808
+ "line": 72,
10809
+ "character": 2
10810
+ }
10811
+ ],
10812
+ "signatures": [
10813
+ {
10814
+ "id": 720,
10815
+ "name": "addClick",
10816
+ "kind": 4096,
10817
+ "kindString": "Call signature",
10818
+ "flags": {},
10819
+ "comment": {
10820
+ "shortText": "Called when users select the button to add options to the list."
10821
+ },
10822
+ "parameters": [
10823
+ {
10824
+ "id": 721,
10825
+ "name": "args",
10826
+ "kind": 32768,
10827
+ "kindString": "Parameter",
10828
+ "flags": {},
10829
+ "type": {
10830
+ "type": "reference",
10831
+ "id": 700,
10832
+ "name": "SkySelectionModalAddClickEventArgs"
10833
+ }
10834
+ }
10835
+ ],
10836
+ "type": {
10837
+ "type": "intrinsic",
10838
+ "name": "void"
10839
+ }
10840
+ }
10841
+ ]
10842
+ },
10843
+ {
10844
+ "id": 714,
10845
+ "name": "searchAsync",
10846
+ "kind": 2048,
10847
+ "kindString": "Method",
10848
+ "flags": {},
10849
+ "sources": [
10850
+ {
10851
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10852
+ "line": 53,
10853
+ "character": 2
10854
+ }
10855
+ ],
10856
+ "signatures": [
10857
+ {
10858
+ "id": 715,
10859
+ "name": "searchAsync",
10860
+ "kind": 4096,
10861
+ "kindString": "Call signature",
10862
+ "flags": {},
10863
+ "comment": {
10864
+ "shortText": "Called when users enter new search information and returns results via an observable."
9879
10865
  },
9880
10866
  "parameters": [
9881
10867
  {
9882
- "id": 644,
10868
+ "id": 716,
9883
10869
  "name": "args",
9884
10870
  "kind": 32768,
9885
10871
  "kindString": "Parameter",
9886
10872
  "flags": {},
9887
- "comment": {
9888
- "shortText": "Specifies information about the item that was added.\n"
9889
- },
9890
10873
  "type": {
9891
10874
  "type": "reference",
9892
- "id": 638,
9893
- "name": "SkyLookupAddCallbackArgs"
10875
+ "id": 725,
10876
+ "name": "SkySelectionModalSearchArgs"
9894
10877
  }
9895
10878
  }
9896
10879
  ],
9897
10880
  "type": {
9898
- "type": "intrinsic",
9899
- "name": "void"
10881
+ "type": "reference",
10882
+ "typeArguments": [
10883
+ {
10884
+ "type": "reference",
10885
+ "id": 729,
10886
+ "name": "SkySelectionModalSearchResult"
10887
+ }
10888
+ ],
10889
+ "qualifiedName": "Observable",
10890
+ "package": "rxjs",
10891
+ "name": "Observable"
9900
10892
  }
9901
10893
  }
9902
10894
  ]
9903
10895
  }
9904
10896
  ],
9905
10897
  "groups": [
10898
+ {
10899
+ "title": "Properties",
10900
+ "kind": 1024,
10901
+ "children": [
10902
+ 711,
10903
+ 712,
10904
+ 713,
10905
+ 708,
10906
+ 717,
10907
+ 718,
10908
+ 709,
10909
+ 710
10910
+ ]
10911
+ },
9906
10912
  {
9907
10913
  "title": "Methods",
9908
10914
  "kind": 2048,
9909
10915
  "children": [
9910
- 642
10916
+ 719,
10917
+ 714
9911
10918
  ]
9912
10919
  }
9913
10920
  ],
9914
10921
  "sources": [
9915
10922
  {
9916
- "fileName": "projects/lookup/src/modules/lookup/types/lookup-add-click-event-args.ts",
9917
- "line": 6,
10923
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-open-args.ts",
10924
+ "line": 14,
9918
10925
  "character": 17
9919
10926
  }
9920
10927
  ]
9921
10928
  },
9922
10929
  {
9923
- "id": 649,
9924
- "name": "SkyLookupShowMoreConfig",
10930
+ "id": 722,
10931
+ "name": "SkySelectionModalResult",
9925
10932
  "kind": 256,
9926
10933
  "kindString": "Interface",
9927
10934
  "flags": {},
9928
10935
  "comment": {
9929
- "shortText": "Specifies configuration options for the picker to display when users select the button\nto view all options. You can use a native, out-of-the-box modal picker, or you can create\na custom picker. If you provide configuration options for both, the lookup component uses\nthe custom configuration."
10936
+ "shortText": "The result from the selection modal."
9930
10937
  },
9931
10938
  "children": [
9932
10939
  {
9933
- "id": 650,
9934
- "name": "customPicker",
10940
+ "id": 723,
10941
+ "name": "result",
9935
10942
  "kind": 1024,
9936
10943
  "kindString": "Property",
9937
- "flags": {
9938
- "isOptional": true
9939
- },
10944
+ "flags": {},
9940
10945
  "comment": {
9941
- "shortText": "Specifies a configuration object to display a custom picker."
10946
+ "shortText": "Indicates whether the user saved or canceled the modal."
9942
10947
  },
9943
10948
  "sources": [
9944
10949
  {
9945
- "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-config.ts",
9946
- "line": 14,
10950
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-result.ts",
10951
+ "line": 8,
9947
10952
  "character": 2
9948
10953
  }
9949
10954
  ],
9950
10955
  "type": {
9951
- "type": "reference",
9952
- "id": 652,
9953
- "name": "SkyLookupShowMoreCustomPicker"
10956
+ "type": "union",
10957
+ "types": [
10958
+ {
10959
+ "type": "literal",
10960
+ "value": "cancel"
10961
+ },
10962
+ {
10963
+ "type": "literal",
10964
+ "value": "save"
10965
+ }
10966
+ ]
9954
10967
  }
9955
10968
  },
9956
10969
  {
9957
- "id": 651,
9958
- "name": "nativePickerConfig",
10970
+ "id": 724,
10971
+ "name": "selectedItems",
9959
10972
  "kind": 1024,
9960
10973
  "kindString": "Property",
9961
10974
  "flags": {
9962
10975
  "isOptional": true
9963
10976
  },
9964
10977
  "comment": {
9965
- "shortText": "Specifies configuration options for the native picker."
10978
+ "shortText": "A collection of items the user selected. This property is only\nset when the `result` property is set to `save`."
9966
10979
  },
9967
10980
  "sources": [
9968
10981
  {
9969
- "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-config.ts",
9970
- "line": 19,
10982
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-result.ts",
10983
+ "line": 14,
9971
10984
  "character": 2
9972
10985
  }
9973
10986
  ],
9974
10987
  "type": {
9975
- "type": "reference",
9976
- "id": 662,
9977
- "name": "SkyLookupShowMoreNativePickerConfig"
10988
+ "type": "array",
10989
+ "elementType": {
10990
+ "type": "intrinsic",
10991
+ "name": "unknown"
10992
+ }
9978
10993
  }
9979
10994
  }
9980
10995
  ],
@@ -9983,156 +10998,213 @@
9983
10998
  "title": "Properties",
9984
10999
  "kind": 1024,
9985
11000
  "children": [
9986
- 650,
9987
- 651
11001
+ 723,
11002
+ 724
9988
11003
  ]
9989
11004
  }
9990
11005
  ],
9991
11006
  "sources": [
9992
11007
  {
9993
- "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-config.ts",
9994
- "line": 10,
11008
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-result.ts",
11009
+ "line": 4,
9995
11010
  "character": 17
9996
11011
  }
9997
11012
  ]
9998
11013
  },
9999
11014
  {
10000
- "id": 652,
10001
- "name": "SkyLookupShowMoreCustomPicker",
11015
+ "id": 725,
11016
+ "name": "SkySelectionModalSearchArgs",
10002
11017
  "kind": 256,
10003
11018
  "kindString": "Interface",
10004
11019
  "flags": {},
10005
11020
  "comment": {
10006
- "shortText": "Defines a custom picker to display when users select the button to view all options."
11021
+ "shortText": "Arguments passed when an asynchronous search is executed from the\nselection modal service."
10007
11022
  },
10008
11023
  "children": [
10009
11024
  {
10010
- "id": 653,
10011
- "name": "open",
10012
- "kind": 2048,
10013
- "kindString": "Method",
11025
+ "id": 728,
11026
+ "name": "continuationData",
11027
+ "kind": 1024,
11028
+ "kindString": "Property",
11029
+ "flags": {
11030
+ "isOptional": true
11031
+ },
11032
+ "comment": {
11033
+ "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."
11034
+ },
11035
+ "sources": [
11036
+ {
11037
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-search-args.ts",
11038
+ "line": 22,
11039
+ "character": 2
11040
+ }
11041
+ ],
11042
+ "type": {
11043
+ "type": "intrinsic",
11044
+ "name": "unknown"
11045
+ }
11046
+ },
11047
+ {
11048
+ "id": 727,
11049
+ "name": "offset",
11050
+ "kind": 1024,
11051
+ "kindString": "Property",
10014
11052
  "flags": {},
11053
+ "comment": {
11054
+ "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."
11055
+ },
10015
11056
  "sources": [
10016
11057
  {
10017
- "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-custom-picker.ts",
10018
- "line": 7,
11058
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-search-args.ts",
11059
+ "line": 16,
10019
11060
  "character": 2
10020
11061
  }
10021
11062
  ],
10022
- "signatures": [
11063
+ "type": {
11064
+ "type": "intrinsic",
11065
+ "name": "number"
11066
+ }
11067
+ },
11068
+ {
11069
+ "id": 726,
11070
+ "name": "searchText",
11071
+ "kind": 1024,
11072
+ "kindString": "Property",
11073
+ "flags": {},
11074
+ "comment": {
11075
+ "shortText": "The search text entered by the user."
11076
+ },
11077
+ "sources": [
10023
11078
  {
10024
- "id": 654,
10025
- "name": "open",
10026
- "kind": 4096,
10027
- "kindString": "Call signature",
10028
- "flags": {},
10029
- "parameters": [
10030
- {
10031
- "id": 655,
10032
- "name": "pickerContext",
10033
- "kind": 32768,
10034
- "kindString": "Parameter",
10035
- "flags": {},
10036
- "type": {
10037
- "type": "reference",
10038
- "id": 656,
10039
- "name": "SkyLookupShowMoreCustomPickerContext"
10040
- }
10041
- }
10042
- ],
10043
- "type": {
10044
- "type": "intrinsic",
10045
- "name": "void"
10046
- }
11079
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-search-args.ts",
11080
+ "line": 9,
11081
+ "character": 2
10047
11082
  }
10048
- ]
11083
+ ],
11084
+ "type": {
11085
+ "type": "intrinsic",
11086
+ "name": "string"
11087
+ }
10049
11088
  }
10050
11089
  ],
10051
11090
  "groups": [
10052
11091
  {
10053
- "title": "Methods",
10054
- "kind": 2048,
11092
+ "title": "Properties",
11093
+ "kind": 1024,
10055
11094
  "children": [
10056
- 653
11095
+ 728,
11096
+ 727,
11097
+ 726
10057
11098
  ]
10058
11099
  }
10059
11100
  ],
10060
11101
  "sources": [
10061
11102
  {
10062
- "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-custom-picker.ts",
10063
- "line": 6,
11103
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-search-args.ts",
11104
+ "line": 5,
10064
11105
  "character": 17
10065
11106
  }
10066
11107
  ]
10067
11108
  },
10068
11109
  {
10069
- "id": 662,
10070
- "name": "SkyLookupShowMoreNativePickerConfig",
11110
+ "id": 729,
11111
+ "name": "SkySelectionModalSearchResult",
10071
11112
  "kind": 256,
10072
11113
  "kindString": "Interface",
10073
11114
  "flags": {},
10074
11115
  "comment": {
10075
- "shortText": "Specifies configuration options to display the native picker when users select\nthe button to view all options."
11116
+ "shortText": "The result of searching for items to display in a selection modal."
10076
11117
  },
10077
11118
  "children": [
10078
11119
  {
10079
- "id": 663,
10080
- "name": "itemTemplate",
11120
+ "id": 730,
11121
+ "name": "continuationData",
10081
11122
  "kind": 1024,
10082
11123
  "kindString": "Property",
10083
11124
  "flags": {
10084
11125
  "isOptional": true
10085
11126
  },
10086
11127
  "comment": {
10087
- "shortText": "Specifies a template to format each option in the picker. The lookup component\ninjects values into the template as `item` variables that reference all the object\nproperties of the options. If you do not specify a template, the picker uses\nthe same template as the dropdown list."
11128
+ "shortText": "Data provided on \"load more\" search result requests. Use this property for\ninformation such as a continuation token for paged database queries."
10088
11129
  },
10089
11130
  "sources": [
10090
11131
  {
10091
- "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-native-picker-config.ts",
10092
- "line": 14,
11132
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-search-result.ts",
11133
+ "line": 9,
10093
11134
  "character": 2
10094
11135
  }
10095
11136
  ],
10096
11137
  "type": {
10097
- "type": "reference",
10098
- "typeArguments": [
10099
- {
10100
- "type": "intrinsic",
10101
- "name": "unknown"
10102
- }
10103
- ],
10104
- "qualifiedName": "TemplateRef",
10105
- "package": "@angular/core",
10106
- "name": "TemplateRef"
11138
+ "type": "intrinsic",
11139
+ "name": "unknown"
10107
11140
  }
10108
11141
  },
10109
11142
  {
10110
- "id": 664,
10111
- "name": "title",
11143
+ "id": 731,
11144
+ "name": "hasMore",
10112
11145
  "kind": 1024,
10113
11146
  "kindString": "Property",
10114
11147
  "flags": {
10115
11148
  "isOptional": true
10116
11149
  },
10117
11150
  "comment": {
10118
- "shortText": "Specifies a title for the picker.",
10119
- "tags": [
10120
- {
10121
- "tag": "default",
10122
- "text": "\"Select an option/Select options\"\n"
10123
- }
10124
- ]
11151
+ "shortText": "Indicates whether there are more results that match the search criteria."
10125
11152
  },
10126
11153
  "sources": [
10127
11154
  {
10128
- "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-native-picker-config.ts",
10129
- "line": 20,
11155
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-search-result.ts",
11156
+ "line": 13,
10130
11157
  "character": 2
10131
11158
  }
10132
11159
  ],
10133
11160
  "type": {
10134
11161
  "type": "intrinsic",
10135
- "name": "string"
11162
+ "name": "boolean"
11163
+ }
11164
+ },
11165
+ {
11166
+ "id": 732,
11167
+ "name": "items",
11168
+ "kind": 1024,
11169
+ "kindString": "Property",
11170
+ "flags": {},
11171
+ "comment": {
11172
+ "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."
11173
+ },
11174
+ "sources": [
11175
+ {
11176
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-search-result.ts",
11177
+ "line": 19,
11178
+ "character": 2
11179
+ }
11180
+ ],
11181
+ "type": {
11182
+ "type": "array",
11183
+ "elementType": {
11184
+ "type": "intrinsic",
11185
+ "name": "unknown"
11186
+ }
11187
+ }
11188
+ },
11189
+ {
11190
+ "id": 733,
11191
+ "name": "totalCount",
11192
+ "kind": 1024,
11193
+ "kindString": "Property",
11194
+ "flags": {},
11195
+ "comment": {
11196
+ "shortText": "The total number of records that match the search criteria, including items not returned in\nthe current list of items."
11197
+ },
11198
+ "sources": [
11199
+ {
11200
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-search-result.ts",
11201
+ "line": 24,
11202
+ "character": 2
11203
+ }
11204
+ ],
11205
+ "type": {
11206
+ "type": "intrinsic",
11207
+ "name": "number"
10136
11208
  }
10137
11209
  }
10138
11210
  ],
@@ -10141,21 +11213,23 @@
10141
11213
  "title": "Properties",
10142
11214
  "kind": 1024,
10143
11215
  "children": [
10144
- 663,
10145
- 664
11216
+ 730,
11217
+ 731,
11218
+ 732,
11219
+ 733
10146
11220
  ]
10147
11221
  }
10148
11222
  ],
10149
11223
  "sources": [
10150
11224
  {
10151
- "fileName": "projects/lookup/src/modules/lookup/types/lookup-show-more-native-picker-config.ts",
10152
- "line": 7,
11225
+ "fileName": "projects/lookup/src/modules/selection-modal/types/selection-modal-search-result.ts",
11226
+ "line": 4,
10153
11227
  "character": 17
10154
11228
  }
10155
11229
  ]
10156
11230
  },
10157
11231
  {
10158
- "id": 607,
11232
+ "id": 622,
10159
11233
  "name": "AutocompleteSearchAsyncResultDisplayType",
10160
11234
  "kind": 4194304,
10161
11235
  "kindString": "Type alias",
@@ -10182,7 +11256,7 @@
10182
11256
  }
10183
11257
  },
10184
11258
  {
10185
- "id": 665,
11259
+ "id": 680,
10186
11260
  "name": "SkyAutocompleteSearchArgs",
10187
11261
  "kind": 4194304,
10188
11262
  "kindString": "Type alias",
@@ -10197,14 +11271,14 @@
10197
11271
  "type": {
10198
11272
  "type": "reflection",
10199
11273
  "declaration": {
10200
- "id": 666,
11274
+ "id": 681,
10201
11275
  "name": "__type",
10202
11276
  "kind": 65536,
10203
11277
  "kindString": "Type literal",
10204
11278
  "flags": {},
10205
11279
  "children": [
10206
11280
  {
10207
- "id": 667,
11281
+ "id": 682,
10208
11282
  "name": "context",
10209
11283
  "kind": 1024,
10210
11284
  "kindString": "Property",
@@ -10220,7 +11294,7 @@
10220
11294
  ],
10221
11295
  "type": {
10222
11296
  "type": "reference",
10223
- "id": 668,
11297
+ "id": 683,
10224
11298
  "name": "SkyAutocompleteSearchContext"
10225
11299
  }
10226
11300
  }
@@ -10230,7 +11304,7 @@
10230
11304
  "title": "Properties",
10231
11305
  "kind": 1024,
10232
11306
  "children": [
10233
- 667
11307
+ 682
10234
11308
  ]
10235
11309
  }
10236
11310
  ],
@@ -10245,7 +11319,7 @@
10245
11319
  }
10246
11320
  },
10247
11321
  {
10248
- "id": 668,
11322
+ "id": 683,
10249
11323
  "name": "SkyAutocompleteSearchContext",
10250
11324
  "kind": 4194304,
10251
11325
  "kindString": "Type alias",
@@ -10272,7 +11346,7 @@
10272
11346
  }
10273
11347
  },
10274
11348
  {
10275
- "id": 608,
11349
+ "id": 623,
10276
11350
  "name": "SkyAutocompleteSearchFunction",
10277
11351
  "kind": 4194304,
10278
11352
  "kindString": "Type alias",
@@ -10287,7 +11361,7 @@
10287
11361
  "type": {
10288
11362
  "type": "reflection",
10289
11363
  "declaration": {
10290
- "id": 609,
11364
+ "id": 624,
10291
11365
  "name": "__type",
10292
11366
  "kind": 65536,
10293
11367
  "kindString": "Type literal",
@@ -10301,14 +11375,14 @@
10301
11375
  ],
10302
11376
  "signatures": [
10303
11377
  {
10304
- "id": 610,
11378
+ "id": 625,
10305
11379
  "name": "__type",
10306
11380
  "kind": 4096,
10307
11381
  "kindString": "Call signature",
10308
11382
  "flags": {},
10309
11383
  "parameters": [
10310
11384
  {
10311
- "id": 611,
11385
+ "id": 626,
10312
11386
  "name": "searchText",
10313
11387
  "kind": 32768,
10314
11388
  "kindString": "Parameter",
@@ -10319,7 +11393,7 @@
10319
11393
  }
10320
11394
  },
10321
11395
  {
10322
- "id": 612,
11396
+ "id": 627,
10323
11397
  "name": "data",
10324
11398
  "kind": 32768,
10325
11399
  "kindString": "Parameter",
@@ -10333,7 +11407,7 @@
10333
11407
  }
10334
11408
  },
10335
11409
  {
10336
- "id": 613,
11410
+ "id": 628,
10337
11411
  "name": "args",
10338
11412
  "kind": 32768,
10339
11413
  "kindString": "Parameter",
@@ -10342,14 +11416,14 @@
10342
11416
  },
10343
11417
  "type": {
10344
11418
  "type": "reference",
10345
- "id": 665,
11419
+ "id": 680,
10346
11420
  "name": "SkyAutocompleteSearchArgs"
10347
11421
  }
10348
11422
  }
10349
11423
  ],
10350
11424
  "type": {
10351
11425
  "type": "reference",
10352
- "id": 620,
11426
+ "id": 635,
10353
11427
  "name": "SkyAutocompleteSearchFunctionResponse"
10354
11428
  }
10355
11429
  }
@@ -10358,7 +11432,7 @@
10358
11432
  }
10359
11433
  },
10360
11434
  {
10361
- "id": 614,
11435
+ "id": 629,
10362
11436
  "name": "SkyAutocompleteSearchFunctionFilter",
10363
11437
  "kind": 4194304,
10364
11438
  "kindString": "Type alias",
@@ -10373,7 +11447,7 @@
10373
11447
  "type": {
10374
11448
  "type": "reflection",
10375
11449
  "declaration": {
10376
- "id": 615,
11450
+ "id": 630,
10377
11451
  "name": "__type",
10378
11452
  "kind": 65536,
10379
11453
  "kindString": "Type literal",
@@ -10387,14 +11461,14 @@
10387
11461
  ],
10388
11462
  "signatures": [
10389
11463
  {
10390
- "id": 616,
11464
+ "id": 631,
10391
11465
  "name": "__type",
10392
11466
  "kind": 4096,
10393
11467
  "kindString": "Call signature",
10394
11468
  "flags": {},
10395
11469
  "parameters": [
10396
11470
  {
10397
- "id": 617,
11471
+ "id": 632,
10398
11472
  "name": "searchText",
10399
11473
  "kind": 32768,
10400
11474
  "kindString": "Parameter",
@@ -10405,7 +11479,7 @@
10405
11479
  }
10406
11480
  },
10407
11481
  {
10408
- "id": 618,
11482
+ "id": 633,
10409
11483
  "name": "item",
10410
11484
  "kind": 32768,
10411
11485
  "kindString": "Parameter",
@@ -10416,7 +11490,7 @@
10416
11490
  }
10417
11491
  },
10418
11492
  {
10419
- "id": 619,
11493
+ "id": 634,
10420
11494
  "name": "args",
10421
11495
  "kind": 32768,
10422
11496
  "kindString": "Parameter",
@@ -10425,7 +11499,7 @@
10425
11499
  },
10426
11500
  "type": {
10427
11501
  "type": "reference",
10428
- "id": 665,
11502
+ "id": 680,
10429
11503
  "name": "SkyAutocompleteSearchArgs"
10430
11504
  }
10431
11505
  }
@@ -10440,7 +11514,7 @@
10440
11514
  }
10441
11515
  },
10442
11516
  {
10443
- "id": 620,
11517
+ "id": 635,
10444
11518
  "name": "SkyAutocompleteSearchFunctionResponse",
10445
11519
  "kind": 4194304,
10446
11520
  "kindString": "Type alias",
@@ -10481,7 +11555,7 @@
10481
11555
  }
10482
11556
  },
10483
11557
  {
10484
- "id": 648,
11558
+ "id": 663,
10485
11559
  "name": "SkyLookupSelectModeType",
10486
11560
  "kind": 4194304,
10487
11561
  "kindString": "Type alias",
@@ -10508,7 +11582,7 @@
10508
11582
  }
10509
11583
  },
10510
11584
  {
10511
- "id": 920,
11585
+ "id": 982,
10512
11586
  "name": "SkyLookupHarness",
10513
11587
  "kind": 128,
10514
11588
  "kindString": "Class",
@@ -10518,7 +11592,7 @@
10518
11592
  },
10519
11593
  "children": [
10520
11594
  {
10521
- "id": 953,
11595
+ "id": 1015,
10522
11596
  "name": "blur",
10523
11597
  "kind": 2048,
10524
11598
  "kindString": "Method",
@@ -10534,7 +11608,7 @@
10534
11608
  ],
10535
11609
  "signatures": [
10536
11610
  {
10537
- "id": 954,
11611
+ "id": 1016,
10538
11612
  "name": "blur",
10539
11613
  "kind": 4096,
10540
11614
  "kindString": "Call signature",
@@ -10566,7 +11640,7 @@
10566
11640
  }
10567
11641
  },
10568
11642
  {
10569
- "id": 955,
11643
+ "id": 1017,
10570
11644
  "name": "clear",
10571
11645
  "kind": 2048,
10572
11646
  "kindString": "Method",
@@ -10582,7 +11656,7 @@
10582
11656
  ],
10583
11657
  "signatures": [
10584
11658
  {
10585
- "id": 956,
11659
+ "id": 1018,
10586
11660
  "name": "clear",
10587
11661
  "kind": 4096,
10588
11662
  "kindString": "Call signature",
@@ -10614,7 +11688,7 @@
10614
11688
  }
10615
11689
  },
10616
11690
  {
10617
- "id": 937,
11691
+ "id": 999,
10618
11692
  "name": "clickAddButton",
10619
11693
  "kind": 2048,
10620
11694
  "kindString": "Method",
@@ -10630,7 +11704,7 @@
10630
11704
  ],
10631
11705
  "signatures": [
10632
11706
  {
10633
- "id": 938,
11707
+ "id": 1000,
10634
11708
  "name": "clickAddButton",
10635
11709
  "kind": 4096,
10636
11710
  "kindString": "Call signature",
@@ -10662,7 +11736,7 @@
10662
11736
  }
10663
11737
  },
10664
11738
  {
10665
- "id": 939,
11739
+ "id": 1001,
10666
11740
  "name": "clickShowMoreButton",
10667
11741
  "kind": 2048,
10668
11742
  "kindString": "Method",
@@ -10678,7 +11752,7 @@
10678
11752
  ],
10679
11753
  "signatures": [
10680
11754
  {
10681
- "id": 940,
11755
+ "id": 1002,
10682
11756
  "name": "clickShowMoreButton",
10683
11757
  "kind": 4096,
10684
11758
  "kindString": "Call signature",
@@ -10710,7 +11784,7 @@
10710
11784
  }
10711
11785
  },
10712
11786
  {
10713
- "id": 941,
11787
+ "id": 1003,
10714
11788
  "name": "dismissSelections",
10715
11789
  "kind": 2048,
10716
11790
  "kindString": "Method",
@@ -10726,7 +11800,7 @@
10726
11800
  ],
10727
11801
  "signatures": [
10728
11802
  {
10729
- "id": 942,
11803
+ "id": 1004,
10730
11804
  "name": "dismissSelections",
10731
11805
  "kind": 4096,
10732
11806
  "kindString": "Call signature",
@@ -10750,7 +11824,7 @@
10750
11824
  ]
10751
11825
  },
10752
11826
  {
10753
- "id": 957,
11827
+ "id": 1019,
10754
11828
  "name": "enterText",
10755
11829
  "kind": 2048,
10756
11830
  "kindString": "Method",
@@ -10766,7 +11840,7 @@
10766
11840
  ],
10767
11841
  "signatures": [
10768
11842
  {
10769
- "id": 958,
11843
+ "id": 1020,
10770
11844
  "name": "enterText",
10771
11845
  "kind": 4096,
10772
11846
  "kindString": "Call signature",
@@ -10776,7 +11850,7 @@
10776
11850
  },
10777
11851
  "parameters": [
10778
11852
  {
10779
- "id": 959,
11853
+ "id": 1021,
10780
11854
  "name": "value",
10781
11855
  "kind": 32768,
10782
11856
  "kindString": "Parameter",
@@ -10811,7 +11885,7 @@
10811
11885
  }
10812
11886
  },
10813
11887
  {
10814
- "id": 960,
11888
+ "id": 1022,
10815
11889
  "name": "focus",
10816
11890
  "kind": 2048,
10817
11891
  "kindString": "Method",
@@ -10827,7 +11901,7 @@
10827
11901
  ],
10828
11902
  "signatures": [
10829
11903
  {
10830
- "id": 961,
11904
+ "id": 1023,
10831
11905
  "name": "focus",
10832
11906
  "kind": 4096,
10833
11907
  "kindString": "Call signature",
@@ -10859,7 +11933,7 @@
10859
11933
  }
10860
11934
  },
10861
11935
  {
10862
- "id": 962,
11936
+ "id": 1024,
10863
11937
  "name": "getSearchResults",
10864
11938
  "kind": 2048,
10865
11939
  "kindString": "Method",
@@ -10875,7 +11949,7 @@
10875
11949
  ],
10876
11950
  "signatures": [
10877
11951
  {
10878
- "id": 963,
11952
+ "id": 1025,
10879
11953
  "name": "getSearchResults",
10880
11954
  "kind": 4096,
10881
11955
  "kindString": "Call signature",
@@ -10885,7 +11959,7 @@
10885
11959
  },
10886
11960
  "parameters": [
10887
11961
  {
10888
- "id": 964,
11962
+ "id": 1026,
10889
11963
  "name": "filters",
10890
11964
  "kind": 32768,
10891
11965
  "kindString": "Parameter",
@@ -10925,7 +11999,7 @@
10925
11999
  }
10926
12000
  },
10927
12001
  {
10928
- "id": 965,
12002
+ "id": 1027,
10929
12003
  "name": "getSearchResultsText",
10930
12004
  "kind": 2048,
10931
12005
  "kindString": "Method",
@@ -10941,7 +12015,7 @@
10941
12015
  ],
10942
12016
  "signatures": [
10943
12017
  {
10944
- "id": 966,
12018
+ "id": 1028,
10945
12019
  "name": "getSearchResultsText",
10946
12020
  "kind": 4096,
10947
12021
  "kindString": "Call signature",
@@ -10951,7 +12025,7 @@
10951
12025
  },
10952
12026
  "parameters": [
10953
12027
  {
10954
- "id": 967,
12028
+ "id": 1029,
10955
12029
  "name": "filters",
10956
12030
  "kind": 32768,
10957
12031
  "kindString": "Parameter",
@@ -10991,7 +12065,7 @@
10991
12065
  }
10992
12066
  },
10993
12067
  {
10994
- "id": 945,
12068
+ "id": 1007,
10995
12069
  "name": "getSelections",
10996
12070
  "kind": 2048,
10997
12071
  "kindString": "Method",
@@ -11007,7 +12081,7 @@
11007
12081
  ],
11008
12082
  "signatures": [
11009
12083
  {
11010
- "id": 946,
12084
+ "id": 1008,
11011
12085
  "name": "getSelections",
11012
12086
  "kind": 4096,
11013
12087
  "kindString": "Call signature",
@@ -11034,7 +12108,7 @@
11034
12108
  ]
11035
12109
  },
11036
12110
  {
11037
- "id": 947,
12111
+ "id": 1009,
11038
12112
  "name": "getSelectionsText",
11039
12113
  "kind": 2048,
11040
12114
  "kindString": "Method",
@@ -11050,7 +12124,7 @@
11050
12124
  ],
11051
12125
  "signatures": [
11052
12126
  {
11053
- "id": 948,
12127
+ "id": 1010,
11054
12128
  "name": "getSelectionsText",
11055
12129
  "kind": 4096,
11056
12130
  "kindString": "Call signature",
@@ -11077,7 +12151,7 @@
11077
12151
  ]
11078
12152
  },
11079
12153
  {
11080
- "id": 943,
12154
+ "id": 1005,
11081
12155
  "name": "getShowMorePicker",
11082
12156
  "kind": 2048,
11083
12157
  "kindString": "Method",
@@ -11093,7 +12167,7 @@
11093
12167
  ],
11094
12168
  "signatures": [
11095
12169
  {
11096
- "id": 944,
12170
+ "id": 1006,
11097
12171
  "name": "getShowMorePicker",
11098
12172
  "kind": 4096,
11099
12173
  "kindString": "Call signature",
@@ -11117,7 +12191,7 @@
11117
12191
  ]
11118
12192
  },
11119
12193
  {
11120
- "id": 968,
12194
+ "id": 1030,
11121
12195
  "name": "getValue",
11122
12196
  "kind": 2048,
11123
12197
  "kindString": "Method",
@@ -11133,7 +12207,7 @@
11133
12207
  ],
11134
12208
  "signatures": [
11135
12209
  {
11136
- "id": 969,
12210
+ "id": 1031,
11137
12211
  "name": "getValue",
11138
12212
  "kind": 4096,
11139
12213
  "kindString": "Call signature",
@@ -11165,7 +12239,7 @@
11165
12239
  }
11166
12240
  },
11167
12241
  {
11168
- "id": 984,
12242
+ "id": 1046,
11169
12243
  "name": "host",
11170
12244
  "kind": 2048,
11171
12245
  "kindString": "Method",
@@ -11179,7 +12253,7 @@
11179
12253
  ],
11180
12254
  "signatures": [
11181
12255
  {
11182
- "id": 985,
12256
+ "id": 1047,
11183
12257
  "name": "host",
11184
12258
  "kind": 4096,
11185
12259
  "kindString": "Call signature",
@@ -11213,7 +12287,7 @@
11213
12287
  }
11214
12288
  },
11215
12289
  {
11216
- "id": 970,
12290
+ "id": 1032,
11217
12291
  "name": "isDisabled",
11218
12292
  "kind": 2048,
11219
12293
  "kindString": "Method",
@@ -11229,7 +12303,7 @@
11229
12303
  ],
11230
12304
  "signatures": [
11231
12305
  {
11232
- "id": 971,
12306
+ "id": 1033,
11233
12307
  "name": "isDisabled",
11234
12308
  "kind": 4096,
11235
12309
  "kindString": "Call signature",
@@ -11261,7 +12335,7 @@
11261
12335
  }
11262
12336
  },
11263
12337
  {
11264
- "id": 972,
12338
+ "id": 1034,
11265
12339
  "name": "isFocused",
11266
12340
  "kind": 2048,
11267
12341
  "kindString": "Method",
@@ -11277,7 +12351,7 @@
11277
12351
  ],
11278
12352
  "signatures": [
11279
12353
  {
11280
- "id": 973,
12354
+ "id": 1035,
11281
12355
  "name": "isFocused",
11282
12356
  "kind": 4096,
11283
12357
  "kindString": "Call signature",
@@ -11309,7 +12383,7 @@
11309
12383
  }
11310
12384
  },
11311
12385
  {
11312
- "id": 949,
12386
+ "id": 1011,
11313
12387
  "name": "isMultiselect",
11314
12388
  "kind": 2048,
11315
12389
  "kindString": "Method",
@@ -11325,7 +12399,7 @@
11325
12399
  ],
11326
12400
  "signatures": [
11327
12401
  {
11328
- "id": 950,
12402
+ "id": 1012,
11329
12403
  "name": "isMultiselect",
11330
12404
  "kind": 4096,
11331
12405
  "kindString": "Call signature",
@@ -11349,7 +12423,7 @@
11349
12423
  ]
11350
12424
  },
11351
12425
  {
11352
- "id": 974,
12426
+ "id": 1036,
11353
12427
  "name": "isOpen",
11354
12428
  "kind": 2048,
11355
12429
  "kindString": "Method",
@@ -11365,7 +12439,7 @@
11365
12439
  ],
11366
12440
  "signatures": [
11367
12441
  {
11368
- "id": 975,
12442
+ "id": 1037,
11369
12443
  "name": "isOpen",
11370
12444
  "kind": 4096,
11371
12445
  "kindString": "Call signature",
@@ -11397,7 +12471,7 @@
11397
12471
  }
11398
12472
  },
11399
12473
  {
11400
- "id": 976,
12474
+ "id": 1038,
11401
12475
  "name": "selectSearchResult",
11402
12476
  "kind": 2048,
11403
12477
  "kindString": "Method",
@@ -11413,7 +12487,7 @@
11413
12487
  ],
11414
12488
  "signatures": [
11415
12489
  {
11416
- "id": 977,
12490
+ "id": 1039,
11417
12491
  "name": "selectSearchResult",
11418
12492
  "kind": 4096,
11419
12493
  "kindString": "Call signature",
@@ -11423,7 +12497,7 @@
11423
12497
  },
11424
12498
  "parameters": [
11425
12499
  {
11426
- "id": 978,
12500
+ "id": 1040,
11427
12501
  "name": "filters",
11428
12502
  "kind": 32768,
11429
12503
  "kindString": "Parameter",
@@ -11458,7 +12532,7 @@
11458
12532
  }
11459
12533
  },
11460
12534
  {
11461
- "id": 922,
12535
+ "id": 984,
11462
12536
  "name": "with",
11463
12537
  "kind": 2048,
11464
12538
  "kindString": "Method",
@@ -11475,7 +12549,7 @@
11475
12549
  ],
11476
12550
  "signatures": [
11477
12551
  {
11478
- "id": 923,
12552
+ "id": 985,
11479
12553
  "name": "with",
11480
12554
  "kind": 4096,
11481
12555
  "kindString": "Call signature",
@@ -11485,7 +12559,7 @@
11485
12559
  },
11486
12560
  "parameters": [
11487
12561
  {
11488
- "id": 924,
12562
+ "id": 986,
11489
12563
  "name": "filters",
11490
12564
  "kind": 32768,
11491
12565
  "kindString": "Parameter",
@@ -11501,7 +12575,7 @@
11501
12575
  "typeArguments": [
11502
12576
  {
11503
12577
  "type": "reference",
11504
- "id": 920,
12578
+ "id": 982,
11505
12579
  "name": "SkyLookupHarness"
11506
12580
  }
11507
12581
  ],
@@ -11526,33 +12600,33 @@
11526
12600
  "title": "Constructors",
11527
12601
  "kind": 512,
11528
12602
  "children": [
11529
- 930
12603
+ 992
11530
12604
  ]
11531
12605
  },
11532
12606
  {
11533
12607
  "title": "Methods",
11534
12608
  "kind": 2048,
11535
12609
  "children": [
11536
- 953,
11537
- 955,
11538
- 937,
11539
- 939,
11540
- 941,
11541
- 957,
11542
- 960,
11543
- 962,
11544
- 965,
11545
- 945,
11546
- 947,
11547
- 943,
11548
- 968,
11549
- 984,
11550
- 970,
11551
- 972,
11552
- 949,
11553
- 974,
11554
- 976,
11555
- 922
12610
+ 1015,
12611
+ 1017,
12612
+ 999,
12613
+ 1001,
12614
+ 1003,
12615
+ 1019,
12616
+ 1022,
12617
+ 1024,
12618
+ 1027,
12619
+ 1007,
12620
+ 1009,
12621
+ 1005,
12622
+ 1030,
12623
+ 1046,
12624
+ 1032,
12625
+ 1034,
12626
+ 1011,
12627
+ 1036,
12628
+ 1038,
12629
+ 984
11556
12630
  ]
11557
12631
  }
11558
12632
  ],
@@ -11676,7 +12750,7 @@
11676
12750
  {
11677
12751
  "fileName": "lookup-async-demo.component.html",
11678
12752
  "filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.component.html",
11679
- "rawContents": "<form\n class=\"lookup-demo-form\"\n novalidate\n [formGroup]=\"favoritesForm\"\n (ngSubmit)=\"onSubmit()\"\n>\n <div class=\"sky-form-group\">\n <sky-input-box data-sky-id=\"favorite-names-field\">\n <label class=\"sky-control-label\" skyId #favoriteNamesLabel=\"skyId\">\n Favorite name(s)\n </label>\n <sky-lookup\n formControlName=\"favoriteNames\"\n idProperty=\"name\"\n [ariaLabelledBy]=\"favoriteNamesLabel.id\"\n [enableShowMore]=\"true\"\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>{{ favoritesForm.value | json }}</pre>\n </div>\n <button class=\"sky-btn sky-btn-default\" type=\"submit\">Submit</button>\n</form>\n"
12753
+ "rawContents": "<form\n class=\"lookup-demo-form\"\n novalidate\n [formGroup]=\"favoritesForm\"\n (ngSubmit)=\"onSubmit()\"\n>\n <div class=\"sky-form-group\">\n <sky-input-box data-sky-id=\"favorite-names-field\">\n <label class=\"sky-control-label\" skyId #favoriteNamesLabel=\"skyId\">\n Favorite name(s)\n </label>\n <sky-lookup\n formControlName=\"favoriteNames\"\n idProperty=\"name\"\n [ariaLabelledBy]=\"favoriteNamesLabel.id\"\n [enableShowMore]=\"true\"\n (searchAsync)=\"searchAsync($event)\"\n [showAddButton]=\"true\"\n (addClick)=\"addClick($event)\"\n >\n </sky-lookup>\n </sky-input-box>\n </div>\n <div class=\"lookup-demo-alert\">\n <strong>Form model:</strong>\n <pre>{{ favoritesForm.value | json }}</pre>\n </div>\n <button class=\"sky-btn sky-btn-default\" type=\"submit\">Submit</button>\n</form>\n"
11680
12754
  },
11681
12755
  {
11682
12756
  "fileName": "lookup-async-demo.component.scss",
@@ -11691,7 +12765,7 @@
11691
12765
  {
11692
12766
  "fileName": "lookup-async-demo.component.ts",
11693
12767
  "filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.component.ts",
11694
- "rawContents": "import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport { SkyAutocompleteSearchAsyncArgs } from '@skyux/lookup';\n\nimport { map } from 'rxjs/operators';\n\nimport { LookupAsyncDemoService } from './lookup-async-demo.service';\nimport { LookupDemoPerson } from './lookup-demo-person';\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 favoritesForm: FormGroup<{\n favoriteNames: FormControl<LookupDemoPerson[] | null>;\n }>;\n\n #searchSvc: LookupAsyncDemoService;\n\n constructor(formBuilder: FormBuilder, searchSvc: LookupAsyncDemoService) {\n this.#searchSvc = searchSvc;\n\n const names = new FormControl<LookupDemoPerson[]>([{ name: 'Shirley' }]);\n\n this.favoritesForm = formBuilder.group({\n favoriteNames: names,\n });\n }\n\n public ngOnInit(): void {\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.favoritesForm.valueChanges.subscribe((changes) => {\n console.log('Lookup value changes:', changes);\n });\n }\n\n public onSubmit(): void {\n alert('Form submitted with: ' + JSON.stringify(this.favoritesForm.value));\n }\n\n public searchAsync(args: SkyAutocompleteSearchAsyncArgs): void {\n // In a real-world application the search service might return an Observable\n // created by calling HttpClient.get(). Assigning that Observable to the result\n // allows the lookup component to cancel the web request if it does not complete\n // before the user searches again.\n args.result = this.#searchSvc.search(args.searchText).pipe(\n map((result) => ({\n hasMore: result.hasMore,\n items: result.people,\n totalCount: result.totalCount,\n }))\n );\n }\n}\n"
12768
+ "rawContents": "import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport { SkyWaitService } from '@skyux/indicators';\nimport {\n SkyAutocompleteSearchAsyncArgs,\n SkyLookupAddClickEventArgs,\n} from '@skyux/lookup';\n\nimport { map } from 'rxjs/operators';\n\nimport { LookupAsyncDemoService } from './lookup-async-demo.service';\nimport { LookupDemoPerson } from './lookup-demo-person';\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 favoritesForm: FormGroup<{\n favoriteNames: FormControl<LookupDemoPerson[] | null>;\n }>;\n\n #svc: LookupAsyncDemoService;\n #waitSvc: SkyWaitService;\n\n constructor(\n formBuilder: FormBuilder,\n svc: LookupAsyncDemoService,\n waitSvc: SkyWaitService\n ) {\n this.#svc = svc;\n this.#waitSvc = waitSvc;\n\n const names = new FormControl<LookupDemoPerson[]>([{ name: 'Shirley' }]);\n\n this.favoritesForm = formBuilder.group({\n favoriteNames: names,\n });\n }\n\n public ngOnInit(): void {\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.favoritesForm.valueChanges.subscribe((changes) => {\n console.log('Lookup value changes:', changes);\n });\n }\n\n public onSubmit(): void {\n alert('Form submitted with: ' + JSON.stringify(this.favoritesForm.value));\n }\n\n public searchAsync(args: SkyAutocompleteSearchAsyncArgs): void {\n // In a real-world application the search service might return an Observable\n // created by calling HttpClient.get(). Assigning that Observable to the result\n // allows the lookup component to cancel the web request if it does not complete\n // before the user searches again.\n args.result = this.#svc.search(args.searchText).pipe(\n map((result) => ({\n hasMore: result.hasMore,\n items: result.people,\n totalCount: result.totalCount,\n }))\n );\n }\n\n public addClick(args: SkyLookupAddClickEventArgs): void {\n const person: LookupDemoPerson = {\n name: 'Newman',\n };\n\n this.#waitSvc.blockingWrap(this.#svc.addPerson(person)).subscribe(() => {\n args.itemAdded({\n item: person,\n });\n });\n }\n}\n"
11695
12769
  },
11696
12770
  {
11697
12771
  "fileName": "lookup-async-demo.module.ts",
@@ -11701,7 +12775,7 @@
11701
12775
  {
11702
12776
  "fileName": "lookup-async-demo.service.ts",
11703
12777
  "filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.service.ts",
11704
- "rawContents": "import { Injectable } from '@angular/core';\n\nimport { Observable, of } from 'rxjs';\nimport { delay } from 'rxjs/operators';\n\nimport { LookupAsyncDemoSearchResults } from './lookup-async-demo-search-results';\nimport { LookupDemoPerson } from './lookup-demo-person';\n\nconst people: LookupDemoPerson[] = [\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@Injectable({\n providedIn: 'root',\n})\nexport class LookupAsyncDemoService {\n public search(searchText: string): Observable<LookupAsyncDemoSearchResults> {\n // Simulate a network call with latency. A real-world application might\n // use Angular's HttpClient to create an Observable from a call to a\n // web service.\n searchText = searchText.toUpperCase();\n\n const matchingPeople = people.filter((person) =>\n person.name.toUpperCase().includes(searchText)\n );\n\n return of({\n hasMore: false,\n people: matchingPeople,\n totalCount: matchingPeople.length,\n }).pipe(delay(800));\n }\n}\n"
12778
+ "rawContents": "import { Injectable } from '@angular/core';\n\nimport { Observable, of } from 'rxjs';\nimport { delay } from 'rxjs/operators';\n\nimport { LookupAsyncDemoSearchResults } from './lookup-async-demo-search-results';\nimport { LookupDemoPerson } from './lookup-demo-person';\n\nconst people: LookupDemoPerson[] = [\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@Injectable({\n providedIn: 'root',\n})\nexport class LookupAsyncDemoService {\n public search(searchText: string): Observable<LookupAsyncDemoSearchResults> {\n // Simulate a network call with latency. A real-world application might\n // use Angular's HttpClient to create an Observable from a call to a\n // web service.\n searchText = searchText.toUpperCase();\n\n const matchingPeople = people.filter((person) =>\n person.name.toUpperCase().includes(searchText)\n );\n\n return of({\n hasMore: false,\n people: matchingPeople,\n totalCount: matchingPeople.length,\n }).pipe(delay(800));\n }\n\n public addPerson(person: LookupDemoPerson): Observable<number> {\n // Simulate adding a person with a netowrk call.\n if (!people.some((item) => item.name === person.name)) {\n people.unshift(person);\n }\n\n return of(1).pipe(delay(800));\n }\n}\n"
11705
12779
  },
11706
12780
  {
11707
12781
  "fileName": "lookup-demo-person.ts",
@@ -11867,6 +12941,41 @@
11867
12941
  "fileName": "search-demo.module.ts",
11868
12942
  "filePath": "/projects/lookup/documentation/code-examples/search/basic/search-demo.module.ts",
11869
12943
  "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyToolbarModule } from '@skyux/layout';\nimport { SkyRepeaterModule } from '@skyux/lists';\nimport { SkySearchModule } from '@skyux/lookup';\n\nimport { SearchDemoComponent } from './search-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyRepeaterModule, SkySearchModule, SkyToolbarModule],\n declarations: [SearchDemoComponent],\n exports: [SearchDemoComponent],\n})\nexport class SearchDemoModule {}\n"
12944
+ },
12945
+ {
12946
+ "fileName": "selection-modal-demo-person.ts",
12947
+ "filePath": "/projects/lookup/documentation/code-examples/selection-modal/basic/selection-modal-demo-person.ts",
12948
+ "rawContents": "export interface SelectionModalDemoPerson {\n id: string;\n name: string;\n}\n"
12949
+ },
12950
+ {
12951
+ "fileName": "selection-modal-demo-search-results.ts",
12952
+ "filePath": "/projects/lookup/documentation/code-examples/selection-modal/basic/selection-modal-demo-search-results.ts",
12953
+ "rawContents": "import { SelectionModalDemoPerson } from './selection-modal-demo-person';\n\nexport interface SelectionModalAsyncDemoSearchResults {\n hasMore: boolean;\n people: SelectionModalDemoPerson[];\n totalCount: number;\n}\n"
12954
+ },
12955
+ {
12956
+ "fileName": "selection-modal-demo.component.html",
12957
+ "filePath": "/projects/lookup/documentation/code-examples/selection-modal/basic/selection-modal-demo.component.html",
12958
+ "rawContents": "<div class=\"sky-margin-stacked-xl\">\n <button\n type=\"button\"\n class=\"sky-btn sky-btn-default selection-modal-demo-show-btn\"\n (click)=\"showSelectionModal()\"\n >\n Select a value\n </button>\n</div>\n\n<div *ngIf=\"selectedPeople?.length\">\n Selected people:\n <ul class=\"selection-modal-demo-selected\">\n <li *ngFor=\"let selectedPerson of selectedPeople\">\n {{ selectedPerson.name }}\n </li>\n </ul>\n</div>\n"
12959
+ },
12960
+ {
12961
+ "fileName": "selection-modal-demo.component.spec.ts",
12962
+ "filePath": "/projects/lookup/documentation/code-examples/selection-modal/basic/selection-modal-demo.component.spec.ts",
12963
+ "rawContents": "import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed';\nimport { ComponentFixture, TestBed } from '@angular/core/testing';\nimport { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { SkySelectionModalHarness } from '@skyux/lookup/testing';\n\nimport { of } from 'rxjs';\n\nimport { SelectionModalDemoComponent } from './selection-modal-demo.component';\nimport { SelectionModalDemoModule } from './selection-modal-demo.module';\nimport { SelectionModalDemoService } from './selection-modal-demo.service';\n\ndescribe('Selection modal demo', () => {\n let mockSvc: jasmine.SpyObj<SelectionModalDemoService>;\n\n async function setupTest(): Promise<{\n harness: SkySelectionModalHarness;\n fixture: ComponentFixture<SelectionModalDemoComponent>;\n }> {\n const fixture = TestBed.createComponent(SelectionModalDemoComponent);\n const openBtn = fixture.nativeElement.querySelector(\n '.selection-modal-demo-show-btn'\n );\n\n openBtn.click();\n fixture.detectChanges();\n\n const rootLoader = TestbedHarnessEnvironment.documentRootLoader(fixture);\n\n const harness = await rootLoader.getHarness(SkySelectionModalHarness);\n return { harness, fixture };\n }\n\n beforeEach(() => {\n // Create a mock search service. In a real-world application, the search\n // service would make a web request which should be avoided in unit tests.\n mockSvc = jasmine.createSpyObj('SelectionModalDemoService', ['search']);\n\n mockSvc.search.and.callFake((searchText) => {\n return of({\n hasMore: false,\n people:\n searchText === 'ra'\n ? [\n {\n id: '1',\n name: 'Rachel',\n },\n ]\n : [],\n totalCount: 1,\n });\n });\n\n TestBed.configureTestingModule({\n imports: [NoopAnimationsModule, SelectionModalDemoModule],\n });\n });\n\n it('should update the selected items list when an item is selected', async () => {\n const { harness, fixture } = await setupTest();\n\n await harness.enterSearchText('ra');\n await harness.selectSearchResult({\n contentText: 'Rachel',\n });\n await harness.saveAndClose();\n\n const selectedItemEls = fixture.nativeElement.querySelectorAll(\n '.selection-modal-demo-selected li'\n );\n\n expect(selectedItemEls).toHaveSize(1);\n expect(selectedItemEls[0].innerText.trim()).toBe('Rachel');\n });\n\n it('should not update the selected items list when the user cancels the selection modal', async () => {\n const { harness, fixture } = await setupTest();\n\n await harness.enterSearchText('ra');\n await harness.selectSearchResult({\n contentText: 'Rachel',\n });\n await harness.cancel();\n\n const selectedItemEls = fixture.nativeElement.querySelectorAll(\n '.selection-modal-demo-selected li'\n );\n\n expect(selectedItemEls).toHaveSize(0);\n });\n});\n"
12964
+ },
12965
+ {
12966
+ "fileName": "selection-modal-demo.component.ts",
12967
+ "filePath": "/projects/lookup/documentation/code-examples/selection-modal/basic/selection-modal-demo.component.ts",
12968
+ "rawContents": "import { Component } from '@angular/core';\nimport {\n SkySelectionModalSearchResult,\n SkySelectionModalService,\n} from '@skyux/lookup';\n\nimport { map } from 'rxjs/operators';\n\nimport { SelectionModalDemoPerson } from './selection-modal-demo-person';\nimport { SelectionModalDemoService } from './selection-modal-demo.service';\n\n@Component({\n selector: 'app-selection-modal-demo',\n templateUrl: './selection-modal-demo.component.html',\n})\nexport class SelectionModalDemoComponent {\n public selectedPeople: SelectionModalDemoPerson[] | undefined;\n\n #searchSvc: SelectionModalDemoService;\n #selectionModalSvc: SkySelectionModalService;\n\n constructor(\n searchSvc: SelectionModalDemoService,\n selectionModalSvc: SkySelectionModalService\n ) {\n this.#searchSvc = searchSvc;\n this.#selectionModalSvc = selectionModalSvc;\n }\n\n public showSelectionModal(): void {\n const instance = this.#selectionModalSvc.open({\n descriptorProperty: 'name',\n idProperty: 'id',\n searchAsync: (args) =>\n this.#searchSvc.search(args.searchText).pipe(\n map(\n (results): SkySelectionModalSearchResult => ({\n hasMore: results.hasMore,\n items: results.people,\n totalCount: results.totalCount,\n })\n )\n ),\n selectMode: 'single',\n });\n\n instance.closed.subscribe((args) => {\n if (args.reason === 'save') {\n this.selectedPeople = args.selectedItems as SelectionModalDemoPerson[];\n }\n });\n }\n}\n"
12969
+ },
12970
+ {
12971
+ "fileName": "selection-modal-demo.module.ts",
12972
+ "filePath": "/projects/lookup/documentation/code-examples/selection-modal/basic/selection-modal-demo.module.ts",
12973
+ "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkySelectionModalModule } from '@skyux/lookup';\n\nimport { SelectionModalDemoComponent } from './selection-modal-demo.component';\n\n@NgModule({\n declarations: [SelectionModalDemoComponent],\n exports: [SelectionModalDemoComponent],\n imports: [CommonModule, SkySelectionModalModule],\n})\nexport class SelectionModalDemoModule {}\n"
12974
+ },
12975
+ {
12976
+ "fileName": "selection-modal-demo.service.ts",
12977
+ "filePath": "/projects/lookup/documentation/code-examples/selection-modal/basic/selection-modal-demo.service.ts",
12978
+ "rawContents": "import { Injectable } from '@angular/core';\n\nimport { Observable, of } from 'rxjs';\nimport { delay } from 'rxjs/operators';\n\nimport { SelectionModalDemoPerson } from './selection-modal-demo-person';\nimport { SelectionModalAsyncDemoSearchResults } from './selection-modal-demo-search-results';\n\nconst people: SelectionModalDemoPerson[] = [\n { id: '1', name: 'Abed' },\n { id: '2', name: 'Alex' },\n { id: '3', name: 'Ben' },\n { id: '4', name: 'Britta' },\n { id: '5', name: 'Buzz' },\n { id: '6', name: 'Craig' },\n { id: '7', name: 'Elroy' },\n { id: '8', name: 'Garrett' },\n { id: '9', name: 'Ian' },\n { id: '10', name: 'Jeff' },\n { id: '11', name: 'Leonard' },\n { id: '12', name: 'Neil' },\n { id: '13', name: 'Pierce' },\n { id: '14', name: 'Preston' },\n { id: '15', name: 'Rachel' },\n { id: '16', name: 'Shirley' },\n { id: '17', name: 'Todd' },\n { id: '18', name: 'Troy' },\n { id: '19', name: 'Vaughn' },\n { id: '20', name: 'Vicki' },\n];\n\n@Injectable({\n providedIn: 'root',\n})\nexport class SelectionModalDemoService {\n public search(\n searchText: string\n ): Observable<SelectionModalAsyncDemoSearchResults> {\n // Simulate a network call with latency. A real-world application might\n // use Angular's HttpClient to create an Observable from a call to a\n // web service.\n searchText = searchText.toUpperCase();\n\n const matchingPeople = people.filter((person) =>\n person.name.toUpperCase().includes(searchText)\n );\n\n return of({\n hasMore: false,\n people: matchingPeople,\n totalCount: matchingPeople.length,\n }).pipe(delay(800));\n }\n}\n"
11870
12979
  }
11871
12980
  ]
11872
12981
  }