@skyux/lookup 6.12.0 → 6.15.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.
- package/documentation.json +830 -619
- package/esm2020/index.mjs +3 -1
- package/esm2020/lib/modules/autocomplete/autocomplete-default-search-function.mjs +5 -5
- package/esm2020/lib/modules/autocomplete/autocomplete-input.directive.mjs +9 -1
- package/esm2020/lib/modules/autocomplete/autocomplete.component.mjs +13 -5
- package/esm2020/lib/modules/autocomplete/types/autocomplete-search-args.mjs +2 -0
- package/esm2020/lib/modules/autocomplete/types/autocomplete-search-context.mjs +2 -0
- package/esm2020/lib/modules/autocomplete/types/autocomplete-search-function-filter.mjs +1 -1
- package/esm2020/lib/modules/autocomplete/types/autocomplete-search-function.mjs +1 -1
- package/esm2020/lib/modules/lookup/lookup-show-more-async-modal.component.mjs +8 -7
- package/esm2020/lib/modules/lookup/lookup-show-more-modal.component.mjs +21 -15
- package/esm2020/lib/modules/lookup/lookup.component.mjs +7 -3
- package/esm2020/testing/autocomplete/autocomplete-harness-filters.mjs +2 -0
- package/esm2020/testing/autocomplete/autocomplete-harness.mjs +157 -0
- package/esm2020/testing/autocomplete/autocomplete-input-harness.mjs +60 -0
- package/esm2020/testing/autocomplete/autocomplete-search-result-harness-filters.mjs +2 -0
- package/esm2020/testing/autocomplete/autocomplete-search-result-harness.mjs +40 -0
- package/esm2020/testing/lookup/lookup-harness-filters.mjs +2 -0
- package/esm2020/testing/lookup/lookup-harness.mjs +81 -0
- package/esm2020/testing/lookup/lookup-selection-harness-filters.mjs +2 -0
- package/esm2020/testing/lookup/lookup-selection-harness.mjs +7 -0
- package/esm2020/testing/lookup/lookup-selections-list-harness.mjs +25 -0
- package/esm2020/testing/lookup/lookup-show-more-picker-harness-filters.mjs +2 -0
- package/esm2020/testing/lookup/lookup-show-more-picker-harness.mjs +118 -0
- package/esm2020/testing/lookup/lookup-show-more-picker-search-result-harness-filters.mjs +2 -0
- package/esm2020/testing/lookup/lookup-show-more-picker-search-result-harness.mjs +7 -0
- package/esm2020/testing/public-api.mjs +16 -1
- package/esm2020/testing/search/search-fixture.mjs +2 -1
- package/esm2020/testing/search/search-harness-filters.mjs +2 -0
- package/esm2020/testing/search/search-harness.mjs +82 -0
- package/esm2020/testing/search/search-testing.module.mjs +5 -4
- package/fesm2015/skyux-lookup-testing.mjs +691 -5
- package/fesm2015/skyux-lookup-testing.mjs.map +1 -1
- package/fesm2015/skyux-lookup.mjs +62 -35
- package/fesm2015/skyux-lookup.mjs.map +1 -1
- package/fesm2020/skyux-lookup-testing.mjs +569 -4
- package/fesm2020/skyux-lookup-testing.mjs.map +1 -1
- package/fesm2020/skyux-lookup.mjs +61 -35
- package/fesm2020/skyux-lookup.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/lib/modules/autocomplete/autocomplete-input.directive.d.ts +1 -0
- package/lib/modules/autocomplete/types/autocomplete-search-args.d.ts +4 -0
- package/lib/modules/autocomplete/types/autocomplete-search-context.d.ts +1 -0
- package/lib/modules/autocomplete/types/autocomplete-search-function-filter.d.ts +2 -1
- package/lib/modules/autocomplete/types/autocomplete-search-function.d.ts +2 -1
- package/lib/modules/lookup/lookup-show-more-async-modal.component.d.ts +6 -2
- package/lib/modules/lookup/lookup-show-more-modal.component.d.ts +6 -1
- package/lib/modules/lookup/lookup.component.d.ts +1 -0
- package/package.json +11 -10
- package/testing/autocomplete/autocomplete-harness-filters.d.ts +6 -0
- package/testing/autocomplete/autocomplete-harness.d.ts +79 -0
- package/testing/autocomplete/autocomplete-input-harness.d.ts +39 -0
- package/testing/autocomplete/autocomplete-search-result-harness-filters.d.ts +10 -0
- package/testing/autocomplete/autocomplete-search-result-harness.d.ts +30 -0
- package/testing/lookup/lookup-harness-filters.d.ts +6 -0
- package/testing/lookup/lookup-harness.d.ts +50 -0
- package/testing/lookup/lookup-selection-harness-filters.d.ts +6 -0
- package/testing/lookup/lookup-selection-harness.d.ts +6 -0
- package/testing/lookup/lookup-selections-list-harness.d.ts +19 -0
- package/testing/lookup/lookup-show-more-picker-harness-filters.d.ts +6 -0
- package/testing/lookup/lookup-show-more-picker-harness.d.ts +60 -0
- package/testing/lookup/lookup-show-more-picker-search-result-harness-filters.d.ts +6 -0
- package/testing/lookup/lookup-show-more-picker-search-result-harness.d.ts +6 -0
- package/testing/public-api.d.ts +15 -0
- package/testing/search/search-fixture.d.ts +1 -0
- package/testing/search/search-harness-filters.d.ts +6 -0
- package/testing/search/search-harness.d.ts +47 -0
- package/testing/search/search-testing.module.d.ts +3 -2
package/documentation.json
CHANGED
|
@@ -20,6 +20,8 @@
|
|
|
20
20
|
"SkyLookupShowMoreCustomPicker": "interface-skylookupshowmorecustompicker",
|
|
21
21
|
"SkyLookupShowMoreNativePickerConfig": "interface-skylookupshowmorenativepickerconfig",
|
|
22
22
|
"AutocompleteSearchAsyncResultDisplayType": "type-alias-autocompletesearchasyncresultdisplaytype",
|
|
23
|
+
"SkyAutocompleteSearchArgs": "type-alias-skyautocompletesearchargs",
|
|
24
|
+
"SkyAutocompleteSearchContext": "type-alias-skyautocompletesearchcontext",
|
|
23
25
|
"SkyAutocompleteSearchFunction": "type-alias-skyautocompletesearchfunction",
|
|
24
26
|
"SkyAutocompleteSearchFunctionFilter": "type-alias-skyautocompletesearchfunctionfilter",
|
|
25
27
|
"SkyAutocompleteSearchFunctionResponse": "type-alias-skyautocompletesearchfunctionresponse",
|
|
@@ -34,7 +36,7 @@
|
|
|
34
36
|
"originalName": "",
|
|
35
37
|
"children": [
|
|
36
38
|
{
|
|
37
|
-
"id":
|
|
39
|
+
"id": 589,
|
|
38
40
|
"name": "SkyAutocompleteModule",
|
|
39
41
|
"kind": 128,
|
|
40
42
|
"kindString": "Class",
|
|
@@ -59,7 +61,7 @@
|
|
|
59
61
|
"title": "Constructors",
|
|
60
62
|
"kind": 512,
|
|
61
63
|
"children": [
|
|
62
|
-
|
|
64
|
+
590
|
|
63
65
|
]
|
|
64
66
|
}
|
|
65
67
|
],
|
|
@@ -72,7 +74,7 @@
|
|
|
72
74
|
]
|
|
73
75
|
},
|
|
74
76
|
{
|
|
75
|
-
"id":
|
|
77
|
+
"id": 592,
|
|
76
78
|
"name": "SkyCountryFieldModule",
|
|
77
79
|
"kind": 128,
|
|
78
80
|
"kindString": "Class",
|
|
@@ -97,7 +99,7 @@
|
|
|
97
99
|
"title": "Constructors",
|
|
98
100
|
"kind": 512,
|
|
99
101
|
"children": [
|
|
100
|
-
|
|
102
|
+
593
|
|
101
103
|
]
|
|
102
104
|
}
|
|
103
105
|
],
|
|
@@ -110,7 +112,7 @@
|
|
|
110
112
|
]
|
|
111
113
|
},
|
|
112
114
|
{
|
|
113
|
-
"id":
|
|
115
|
+
"id": 601,
|
|
114
116
|
"name": "SkyLookupModule",
|
|
115
117
|
"kind": 128,
|
|
116
118
|
"kindString": "Class",
|
|
@@ -135,7 +137,7 @@
|
|
|
135
137
|
"title": "Constructors",
|
|
136
138
|
"kind": 512,
|
|
137
139
|
"children": [
|
|
138
|
-
|
|
140
|
+
602
|
|
139
141
|
]
|
|
140
142
|
}
|
|
141
143
|
],
|
|
@@ -148,7 +150,7 @@
|
|
|
148
150
|
]
|
|
149
151
|
},
|
|
150
152
|
{
|
|
151
|
-
"id":
|
|
153
|
+
"id": 622,
|
|
152
154
|
"name": "SkyLookupShowMoreCustomPickerContext",
|
|
153
155
|
"kind": 128,
|
|
154
156
|
"kindString": "Class",
|
|
@@ -158,7 +160,7 @@
|
|
|
158
160
|
},
|
|
159
161
|
"children": [
|
|
160
162
|
{
|
|
161
|
-
"id":
|
|
163
|
+
"id": 626,
|
|
162
164
|
"name": "initialSearch",
|
|
163
165
|
"kind": 1024,
|
|
164
166
|
"kindString": "Property",
|
|
@@ -181,7 +183,7 @@
|
|
|
181
183
|
}
|
|
182
184
|
},
|
|
183
185
|
{
|
|
184
|
-
"id":
|
|
186
|
+
"id": 627,
|
|
185
187
|
"name": "initialValue",
|
|
186
188
|
"kind": 1024,
|
|
187
189
|
"kindString": "Property",
|
|
@@ -204,7 +206,7 @@
|
|
|
204
206
|
}
|
|
205
207
|
},
|
|
206
208
|
{
|
|
207
|
-
"id":
|
|
209
|
+
"id": 625,
|
|
208
210
|
"name": "items",
|
|
209
211
|
"kind": 1024,
|
|
210
212
|
"kindString": "Property",
|
|
@@ -235,16 +237,16 @@
|
|
|
235
237
|
"title": "Constructors",
|
|
236
238
|
"kind": 512,
|
|
237
239
|
"children": [
|
|
238
|
-
|
|
240
|
+
623
|
|
239
241
|
]
|
|
240
242
|
},
|
|
241
243
|
{
|
|
242
244
|
"title": "Properties",
|
|
243
245
|
"kind": 1024,
|
|
244
246
|
"children": [
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
247
|
+
626,
|
|
248
|
+
627,
|
|
249
|
+
625
|
|
248
250
|
]
|
|
249
251
|
}
|
|
250
252
|
],
|
|
@@ -257,7 +259,7 @@
|
|
|
257
259
|
]
|
|
258
260
|
},
|
|
259
261
|
{
|
|
260
|
-
"id":
|
|
262
|
+
"id": 638,
|
|
261
263
|
"name": "SkySearchComponent",
|
|
262
264
|
"kind": 128,
|
|
263
265
|
"kindString": "Class",
|
|
@@ -278,7 +280,7 @@
|
|
|
278
280
|
],
|
|
279
281
|
"children": [
|
|
280
282
|
{
|
|
281
|
-
"id":
|
|
283
|
+
"id": 639,
|
|
282
284
|
"name": "constructor",
|
|
283
285
|
"kind": 512,
|
|
284
286
|
"kindString": "Constructor",
|
|
@@ -292,14 +294,14 @@
|
|
|
292
294
|
],
|
|
293
295
|
"signatures": [
|
|
294
296
|
{
|
|
295
|
-
"id":
|
|
297
|
+
"id": 640,
|
|
296
298
|
"name": "new SkySearchComponent",
|
|
297
299
|
"kind": 16384,
|
|
298
300
|
"kindString": "Constructor signature",
|
|
299
301
|
"flags": {},
|
|
300
302
|
"parameters": [
|
|
301
303
|
{
|
|
302
|
-
"id":
|
|
304
|
+
"id": 641,
|
|
303
305
|
"name": "mediaQueryService",
|
|
304
306
|
"kind": 32768,
|
|
305
307
|
"kindString": "Parameter",
|
|
@@ -310,7 +312,7 @@
|
|
|
310
312
|
}
|
|
311
313
|
},
|
|
312
314
|
{
|
|
313
|
-
"id":
|
|
315
|
+
"id": 642,
|
|
314
316
|
"name": "elRef",
|
|
315
317
|
"kind": 32768,
|
|
316
318
|
"kindString": "Parameter",
|
|
@@ -329,7 +331,7 @@
|
|
|
329
331
|
}
|
|
330
332
|
},
|
|
331
333
|
{
|
|
332
|
-
"id":
|
|
334
|
+
"id": 643,
|
|
333
335
|
"name": "searchAdapter",
|
|
334
336
|
"kind": 32768,
|
|
335
337
|
"kindString": "Parameter",
|
|
@@ -340,7 +342,7 @@
|
|
|
340
342
|
}
|
|
341
343
|
},
|
|
342
344
|
{
|
|
343
|
-
"id":
|
|
345
|
+
"id": 644,
|
|
344
346
|
"name": "changeRef",
|
|
345
347
|
"kind": 32768,
|
|
346
348
|
"kindString": "Parameter",
|
|
@@ -355,14 +357,14 @@
|
|
|
355
357
|
],
|
|
356
358
|
"type": {
|
|
357
359
|
"type": "reference",
|
|
358
|
-
"id":
|
|
360
|
+
"id": 638,
|
|
359
361
|
"name": "SkySearchComponent"
|
|
360
362
|
}
|
|
361
363
|
}
|
|
362
364
|
]
|
|
363
365
|
},
|
|
364
366
|
{
|
|
365
|
-
"id":
|
|
367
|
+
"id": 653,
|
|
366
368
|
"name": "breakpointSubscription",
|
|
367
369
|
"kind": 1024,
|
|
368
370
|
"kindString": "Property",
|
|
@@ -384,7 +386,7 @@
|
|
|
384
386
|
}
|
|
385
387
|
},
|
|
386
388
|
{
|
|
387
|
-
"id":
|
|
389
|
+
"id": 654,
|
|
388
390
|
"name": "clearButtonShown",
|
|
389
391
|
"kind": 1024,
|
|
390
392
|
"kindString": "Property",
|
|
@@ -405,7 +407,7 @@
|
|
|
405
407
|
"defaultValue": "false"
|
|
406
408
|
},
|
|
407
409
|
{
|
|
408
|
-
"id":
|
|
410
|
+
"id": 650,
|
|
409
411
|
"name": "debounceTime",
|
|
410
412
|
"kind": 1024,
|
|
411
413
|
"kindString": "Property",
|
|
@@ -441,7 +443,7 @@
|
|
|
441
443
|
"defaultValue": "0"
|
|
442
444
|
},
|
|
443
445
|
{
|
|
444
|
-
"id":
|
|
446
|
+
"id": 651,
|
|
445
447
|
"name": "disabled",
|
|
446
448
|
"kind": 1024,
|
|
447
449
|
"kindString": "Property",
|
|
@@ -477,7 +479,7 @@
|
|
|
477
479
|
"defaultValue": "false"
|
|
478
480
|
},
|
|
479
481
|
{
|
|
480
|
-
"id":
|
|
482
|
+
"id": 655,
|
|
481
483
|
"name": "dismissButtonShown",
|
|
482
484
|
"kind": 1024,
|
|
483
485
|
"kindString": "Property",
|
|
@@ -498,7 +500,7 @@
|
|
|
498
500
|
"defaultValue": "false"
|
|
499
501
|
},
|
|
500
502
|
{
|
|
501
|
-
"id":
|
|
503
|
+
"id": 649,
|
|
502
504
|
"name": "expandMode",
|
|
503
505
|
"kind": 1024,
|
|
504
506
|
"kindString": "Property",
|
|
@@ -540,7 +542,7 @@
|
|
|
540
542
|
"defaultValue": "EXPAND_MODE_RESPONSIVE"
|
|
541
543
|
},
|
|
542
544
|
{
|
|
543
|
-
"id":
|
|
545
|
+
"id": 656,
|
|
544
546
|
"name": "inputAnimate",
|
|
545
547
|
"kind": 1024,
|
|
546
548
|
"kindString": "Property",
|
|
@@ -561,7 +563,7 @@
|
|
|
561
563
|
"defaultValue": "INPUT_SHOWN_STATE"
|
|
562
564
|
},
|
|
563
565
|
{
|
|
564
|
-
"id":
|
|
566
|
+
"id": 657,
|
|
565
567
|
"name": "isCollapsible",
|
|
566
568
|
"kind": 1024,
|
|
567
569
|
"kindString": "Property",
|
|
@@ -582,7 +584,7 @@
|
|
|
582
584
|
"defaultValue": "true"
|
|
583
585
|
},
|
|
584
586
|
{
|
|
585
|
-
"id":
|
|
587
|
+
"id": 658,
|
|
586
588
|
"name": "isFullWidth",
|
|
587
589
|
"kind": 1024,
|
|
588
590
|
"kindString": "Property",
|
|
@@ -603,7 +605,7 @@
|
|
|
603
605
|
"defaultValue": "false"
|
|
604
606
|
},
|
|
605
607
|
{
|
|
606
|
-
"id":
|
|
608
|
+
"id": 659,
|
|
607
609
|
"name": "mobileSearchShown",
|
|
608
610
|
"kind": 1024,
|
|
609
611
|
"kindString": "Property",
|
|
@@ -624,7 +626,7 @@
|
|
|
624
626
|
"defaultValue": "false"
|
|
625
627
|
},
|
|
626
628
|
{
|
|
627
|
-
"id":
|
|
629
|
+
"id": 652,
|
|
628
630
|
"name": "placeholderText",
|
|
629
631
|
"kind": 1024,
|
|
630
632
|
"kindString": "Property",
|
|
@@ -665,7 +667,7 @@
|
|
|
665
667
|
}
|
|
666
668
|
},
|
|
667
669
|
{
|
|
668
|
-
"id":
|
|
670
|
+
"id": 645,
|
|
669
671
|
"name": "searchApply",
|
|
670
672
|
"kind": 1024,
|
|
671
673
|
"kindString": "Property",
|
|
@@ -709,7 +711,7 @@
|
|
|
709
711
|
"defaultValue": "..."
|
|
710
712
|
},
|
|
711
713
|
{
|
|
712
|
-
"id":
|
|
714
|
+
"id": 660,
|
|
713
715
|
"name": "searchButtonShown",
|
|
714
716
|
"kind": 1024,
|
|
715
717
|
"kindString": "Property",
|
|
@@ -730,7 +732,7 @@
|
|
|
730
732
|
"defaultValue": "false"
|
|
731
733
|
},
|
|
732
734
|
{
|
|
733
|
-
"id":
|
|
735
|
+
"id": 646,
|
|
734
736
|
"name": "searchChange",
|
|
735
737
|
"kind": 1024,
|
|
736
738
|
"kindString": "Property",
|
|
@@ -774,7 +776,7 @@
|
|
|
774
776
|
"defaultValue": "..."
|
|
775
777
|
},
|
|
776
778
|
{
|
|
777
|
-
"id":
|
|
779
|
+
"id": 647,
|
|
778
780
|
"name": "searchClear",
|
|
779
781
|
"kind": 1024,
|
|
780
782
|
"kindString": "Property",
|
|
@@ -818,7 +820,7 @@
|
|
|
818
820
|
"defaultValue": "..."
|
|
819
821
|
},
|
|
820
822
|
{
|
|
821
|
-
"id":
|
|
823
|
+
"id": 648,
|
|
822
824
|
"name": "searchText",
|
|
823
825
|
"kind": 1024,
|
|
824
826
|
"kindString": "Property",
|
|
@@ -853,7 +855,7 @@
|
|
|
853
855
|
}
|
|
854
856
|
},
|
|
855
857
|
{
|
|
856
|
-
"id":
|
|
858
|
+
"id": 677,
|
|
857
859
|
"name": "applySearchText",
|
|
858
860
|
"kind": 2048,
|
|
859
861
|
"kindString": "Method",
|
|
@@ -869,14 +871,14 @@
|
|
|
869
871
|
],
|
|
870
872
|
"signatures": [
|
|
871
873
|
{
|
|
872
|
-
"id":
|
|
874
|
+
"id": 678,
|
|
873
875
|
"name": "applySearchText",
|
|
874
876
|
"kind": 4096,
|
|
875
877
|
"kindString": "Call signature",
|
|
876
878
|
"flags": {},
|
|
877
879
|
"parameters": [
|
|
878
880
|
{
|
|
879
|
-
"id":
|
|
881
|
+
"id": 679,
|
|
880
882
|
"name": "searchText",
|
|
881
883
|
"kind": 32768,
|
|
882
884
|
"kindString": "Parameter",
|
|
@@ -895,7 +897,7 @@
|
|
|
895
897
|
]
|
|
896
898
|
},
|
|
897
899
|
{
|
|
898
|
-
"id":
|
|
900
|
+
"id": 671,
|
|
899
901
|
"name": "clearSearchText",
|
|
900
902
|
"kind": 2048,
|
|
901
903
|
"kindString": "Method",
|
|
@@ -911,7 +913,7 @@
|
|
|
911
913
|
],
|
|
912
914
|
"signatures": [
|
|
913
915
|
{
|
|
914
|
-
"id":
|
|
916
|
+
"id": 672,
|
|
915
917
|
"name": "clearSearchText",
|
|
916
918
|
"kind": 4096,
|
|
917
919
|
"kindString": "Call signature",
|
|
@@ -924,7 +926,7 @@
|
|
|
924
926
|
]
|
|
925
927
|
},
|
|
926
928
|
{
|
|
927
|
-
"id":
|
|
929
|
+
"id": 673,
|
|
928
930
|
"name": "enterPress",
|
|
929
931
|
"kind": 2048,
|
|
930
932
|
"kindString": "Method",
|
|
@@ -940,14 +942,14 @@
|
|
|
940
942
|
],
|
|
941
943
|
"signatures": [
|
|
942
944
|
{
|
|
943
|
-
"id":
|
|
945
|
+
"id": 674,
|
|
944
946
|
"name": "enterPress",
|
|
945
947
|
"kind": 4096,
|
|
946
948
|
"kindString": "Call signature",
|
|
947
949
|
"flags": {},
|
|
948
950
|
"parameters": [
|
|
949
951
|
{
|
|
950
|
-
"id":
|
|
952
|
+
"id": 675,
|
|
951
953
|
"name": "event",
|
|
952
954
|
"kind": 32768,
|
|
953
955
|
"kindString": "Parameter",
|
|
@@ -960,7 +962,7 @@
|
|
|
960
962
|
}
|
|
961
963
|
},
|
|
962
964
|
{
|
|
963
|
-
"id":
|
|
965
|
+
"id": 676,
|
|
964
966
|
"name": "searchText",
|
|
965
967
|
"kind": 32768,
|
|
966
968
|
"kindString": "Parameter",
|
|
@@ -979,7 +981,7 @@
|
|
|
979
981
|
]
|
|
980
982
|
},
|
|
981
983
|
{
|
|
982
|
-
"id":
|
|
984
|
+
"id": 689,
|
|
983
985
|
"name": "inputAnimationEnd",
|
|
984
986
|
"kind": 2048,
|
|
985
987
|
"kindString": "Method",
|
|
@@ -995,14 +997,14 @@
|
|
|
995
997
|
],
|
|
996
998
|
"signatures": [
|
|
997
999
|
{
|
|
998
|
-
"id":
|
|
1000
|
+
"id": 690,
|
|
999
1001
|
"name": "inputAnimationEnd",
|
|
1000
1002
|
"kind": 4096,
|
|
1001
1003
|
"kindString": "Call signature",
|
|
1002
1004
|
"flags": {},
|
|
1003
1005
|
"parameters": [
|
|
1004
1006
|
{
|
|
1005
|
-
"id":
|
|
1007
|
+
"id": 691,
|
|
1006
1008
|
"name": "event",
|
|
1007
1009
|
"kind": 32768,
|
|
1008
1010
|
"kindString": "Parameter",
|
|
@@ -1023,7 +1025,7 @@
|
|
|
1023
1025
|
]
|
|
1024
1026
|
},
|
|
1025
1027
|
{
|
|
1026
|
-
"id":
|
|
1028
|
+
"id": 686,
|
|
1027
1029
|
"name": "inputAnimationStart",
|
|
1028
1030
|
"kind": 2048,
|
|
1029
1031
|
"kindString": "Method",
|
|
@@ -1039,14 +1041,14 @@
|
|
|
1039
1041
|
],
|
|
1040
1042
|
"signatures": [
|
|
1041
1043
|
{
|
|
1042
|
-
"id":
|
|
1044
|
+
"id": 687,
|
|
1043
1045
|
"name": "inputAnimationStart",
|
|
1044
1046
|
"kind": 4096,
|
|
1045
1047
|
"kindString": "Call signature",
|
|
1046
1048
|
"flags": {},
|
|
1047
1049
|
"parameters": [
|
|
1048
1050
|
{
|
|
1049
|
-
"id":
|
|
1051
|
+
"id": 688,
|
|
1050
1052
|
"name": "event",
|
|
1051
1053
|
"kind": 32768,
|
|
1052
1054
|
"kindString": "Parameter",
|
|
@@ -1067,7 +1069,7 @@
|
|
|
1067
1069
|
]
|
|
1068
1070
|
},
|
|
1069
1071
|
{
|
|
1070
|
-
"id":
|
|
1072
|
+
"id": 668,
|
|
1071
1073
|
"name": "ngOnChanges",
|
|
1072
1074
|
"kind": 2048,
|
|
1073
1075
|
"kindString": "Method",
|
|
@@ -1083,14 +1085,14 @@
|
|
|
1083
1085
|
],
|
|
1084
1086
|
"signatures": [
|
|
1085
1087
|
{
|
|
1086
|
-
"id":
|
|
1088
|
+
"id": 669,
|
|
1087
1089
|
"name": "ngOnChanges",
|
|
1088
1090
|
"kind": 4096,
|
|
1089
1091
|
"kindString": "Call signature",
|
|
1090
1092
|
"flags": {},
|
|
1091
1093
|
"parameters": [
|
|
1092
1094
|
{
|
|
1093
|
-
"id":
|
|
1095
|
+
"id": 670,
|
|
1094
1096
|
"name": "changes",
|
|
1095
1097
|
"kind": 32768,
|
|
1096
1098
|
"kindString": "Parameter",
|
|
@@ -1119,7 +1121,7 @@
|
|
|
1119
1121
|
}
|
|
1120
1122
|
},
|
|
1121
1123
|
{
|
|
1122
|
-
"id":
|
|
1124
|
+
"id": 692,
|
|
1123
1125
|
"name": "ngOnDestroy",
|
|
1124
1126
|
"kind": 2048,
|
|
1125
1127
|
"kindString": "Method",
|
|
@@ -1135,7 +1137,7 @@
|
|
|
1135
1137
|
],
|
|
1136
1138
|
"signatures": [
|
|
1137
1139
|
{
|
|
1138
|
-
"id":
|
|
1140
|
+
"id": 693,
|
|
1139
1141
|
"name": "ngOnDestroy",
|
|
1140
1142
|
"kind": 4096,
|
|
1141
1143
|
"kindString": "Call signature",
|
|
@@ -1156,7 +1158,7 @@
|
|
|
1156
1158
|
}
|
|
1157
1159
|
},
|
|
1158
1160
|
{
|
|
1159
|
-
"id":
|
|
1161
|
+
"id": 666,
|
|
1160
1162
|
"name": "ngOnInit",
|
|
1161
1163
|
"kind": 2048,
|
|
1162
1164
|
"kindString": "Method",
|
|
@@ -1172,7 +1174,7 @@
|
|
|
1172
1174
|
],
|
|
1173
1175
|
"signatures": [
|
|
1174
1176
|
{
|
|
1175
|
-
"id":
|
|
1177
|
+
"id": 667,
|
|
1176
1178
|
"name": "ngOnInit",
|
|
1177
1179
|
"kind": 4096,
|
|
1178
1180
|
"kindString": "Call signature",
|
|
@@ -1193,7 +1195,7 @@
|
|
|
1193
1195
|
}
|
|
1194
1196
|
},
|
|
1195
1197
|
{
|
|
1196
|
-
"id":
|
|
1198
|
+
"id": 680,
|
|
1197
1199
|
"name": "searchTextChanged",
|
|
1198
1200
|
"kind": 2048,
|
|
1199
1201
|
"kindString": "Method",
|
|
@@ -1209,14 +1211,14 @@
|
|
|
1209
1211
|
],
|
|
1210
1212
|
"signatures": [
|
|
1211
1213
|
{
|
|
1212
|
-
"id":
|
|
1214
|
+
"id": 681,
|
|
1213
1215
|
"name": "searchTextChanged",
|
|
1214
1216
|
"kind": 4096,
|
|
1215
1217
|
"kindString": "Call signature",
|
|
1216
1218
|
"flags": {},
|
|
1217
1219
|
"parameters": [
|
|
1218
1220
|
{
|
|
1219
|
-
"id":
|
|
1221
|
+
"id": 682,
|
|
1220
1222
|
"name": "searchText",
|
|
1221
1223
|
"kind": 32768,
|
|
1222
1224
|
"kindString": "Parameter",
|
|
@@ -1235,7 +1237,7 @@
|
|
|
1235
1237
|
]
|
|
1236
1238
|
},
|
|
1237
1239
|
{
|
|
1238
|
-
"id":
|
|
1240
|
+
"id": 683,
|
|
1239
1241
|
"name": "toggleSearchInput",
|
|
1240
1242
|
"kind": 2048,
|
|
1241
1243
|
"kindString": "Method",
|
|
@@ -1251,14 +1253,14 @@
|
|
|
1251
1253
|
],
|
|
1252
1254
|
"signatures": [
|
|
1253
1255
|
{
|
|
1254
|
-
"id":
|
|
1256
|
+
"id": 684,
|
|
1255
1257
|
"name": "toggleSearchInput",
|
|
1256
1258
|
"kind": 4096,
|
|
1257
1259
|
"kindString": "Call signature",
|
|
1258
1260
|
"flags": {},
|
|
1259
1261
|
"parameters": [
|
|
1260
1262
|
{
|
|
1261
|
-
"id":
|
|
1263
|
+
"id": 685,
|
|
1262
1264
|
"name": "showInput",
|
|
1263
1265
|
"kind": 32768,
|
|
1264
1266
|
"kindString": "Parameter",
|
|
@@ -1282,45 +1284,45 @@
|
|
|
1282
1284
|
"title": "Constructors",
|
|
1283
1285
|
"kind": 512,
|
|
1284
1286
|
"children": [
|
|
1285
|
-
|
|
1287
|
+
639
|
|
1286
1288
|
]
|
|
1287
1289
|
},
|
|
1288
1290
|
{
|
|
1289
1291
|
"title": "Properties",
|
|
1290
1292
|
"kind": 1024,
|
|
1291
1293
|
"children": [
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1294
|
+
653,
|
|
1295
|
+
654,
|
|
1296
|
+
650,
|
|
1297
|
+
651,
|
|
1298
|
+
655,
|
|
1299
|
+
649,
|
|
1300
|
+
656,
|
|
1301
|
+
657,
|
|
1302
|
+
658,
|
|
1303
|
+
659,
|
|
1304
|
+
652,
|
|
1299
1305
|
645,
|
|
1306
|
+
660,
|
|
1300
1307
|
646,
|
|
1301
1308
|
647,
|
|
1302
|
-
|
|
1303
|
-
633,
|
|
1304
|
-
648,
|
|
1305
|
-
634,
|
|
1306
|
-
635,
|
|
1307
|
-
636
|
|
1309
|
+
648
|
|
1308
1310
|
]
|
|
1309
1311
|
},
|
|
1310
1312
|
{
|
|
1311
1313
|
"title": "Methods",
|
|
1312
1314
|
"kind": 2048,
|
|
1313
1315
|
"children": [
|
|
1314
|
-
665,
|
|
1315
|
-
659,
|
|
1316
|
-
661,
|
|
1317
1316
|
677,
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1317
|
+
671,
|
|
1318
|
+
673,
|
|
1319
|
+
689,
|
|
1320
|
+
686,
|
|
1322
1321
|
668,
|
|
1323
|
-
|
|
1322
|
+
692,
|
|
1323
|
+
666,
|
|
1324
|
+
680,
|
|
1325
|
+
683
|
|
1324
1326
|
]
|
|
1325
1327
|
}
|
|
1326
1328
|
],
|
|
@@ -1353,7 +1355,7 @@
|
|
|
1353
1355
|
]
|
|
1354
1356
|
},
|
|
1355
1357
|
{
|
|
1356
|
-
"id":
|
|
1358
|
+
"id": 635,
|
|
1357
1359
|
"name": "SkySearchModule",
|
|
1358
1360
|
"kind": 128,
|
|
1359
1361
|
"kindString": "Class",
|
|
@@ -1378,7 +1380,7 @@
|
|
|
1378
1380
|
"title": "Constructors",
|
|
1379
1381
|
"kind": 512,
|
|
1380
1382
|
"children": [
|
|
1381
|
-
|
|
1383
|
+
636
|
|
1382
1384
|
]
|
|
1383
1385
|
}
|
|
1384
1386
|
],
|
|
@@ -1994,7 +1996,7 @@
|
|
|
1994
1996
|
}
|
|
1995
1997
|
},
|
|
1996
1998
|
{
|
|
1997
|
-
"id":
|
|
1999
|
+
"id": 84,
|
|
1998
2000
|
"name": "onChange",
|
|
1999
2001
|
"kind": 2048,
|
|
2000
2002
|
"kindString": "Method",
|
|
@@ -2004,20 +2006,20 @@
|
|
|
2004
2006
|
"sources": [
|
|
2005
2007
|
{
|
|
2006
2008
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete-input.directive.ts",
|
|
2007
|
-
"line":
|
|
2009
|
+
"line": 302,
|
|
2008
2010
|
"character": 9
|
|
2009
2011
|
}
|
|
2010
2012
|
],
|
|
2011
2013
|
"signatures": [
|
|
2012
2014
|
{
|
|
2013
|
-
"id":
|
|
2015
|
+
"id": 85,
|
|
2014
2016
|
"name": "onChange",
|
|
2015
2017
|
"kind": 4096,
|
|
2016
2018
|
"kindString": "Call signature",
|
|
2017
2019
|
"flags": {},
|
|
2018
2020
|
"parameters": [
|
|
2019
2021
|
{
|
|
2020
|
-
"id":
|
|
2022
|
+
"id": 86,
|
|
2021
2023
|
"name": "value",
|
|
2022
2024
|
"kind": 32768,
|
|
2023
2025
|
"kindString": "Parameter",
|
|
@@ -2036,7 +2038,7 @@
|
|
|
2036
2038
|
]
|
|
2037
2039
|
},
|
|
2038
2040
|
{
|
|
2039
|
-
"id":
|
|
2041
|
+
"id": 87,
|
|
2040
2042
|
"name": "onTouched",
|
|
2041
2043
|
"kind": 2048,
|
|
2042
2044
|
"kindString": "Method",
|
|
@@ -2046,13 +2048,13 @@
|
|
|
2046
2048
|
"sources": [
|
|
2047
2049
|
{
|
|
2048
2050
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete-input.directive.ts",
|
|
2049
|
-
"line":
|
|
2051
|
+
"line": 304,
|
|
2050
2052
|
"character": 9
|
|
2051
2053
|
}
|
|
2052
2054
|
],
|
|
2053
2055
|
"signatures": [
|
|
2054
2056
|
{
|
|
2055
|
-
"id":
|
|
2057
|
+
"id": 88,
|
|
2056
2058
|
"name": "onTouched",
|
|
2057
2059
|
"kind": 4096,
|
|
2058
2060
|
"kindString": "Call signature",
|
|
@@ -2065,7 +2067,7 @@
|
|
|
2065
2067
|
]
|
|
2066
2068
|
},
|
|
2067
2069
|
{
|
|
2068
|
-
"id":
|
|
2070
|
+
"id": 89,
|
|
2069
2071
|
"name": "onValidatorChange",
|
|
2070
2072
|
"kind": 2048,
|
|
2071
2073
|
"kindString": "Method",
|
|
@@ -2075,13 +2077,13 @@
|
|
|
2075
2077
|
"sources": [
|
|
2076
2078
|
{
|
|
2077
2079
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete-input.directive.ts",
|
|
2078
|
-
"line":
|
|
2080
|
+
"line": 307,
|
|
2079
2081
|
"character": 9
|
|
2080
2082
|
}
|
|
2081
2083
|
],
|
|
2082
2084
|
"signatures": [
|
|
2083
2085
|
{
|
|
2084
|
-
"id":
|
|
2086
|
+
"id": 90,
|
|
2085
2087
|
"name": "onValidatorChange",
|
|
2086
2088
|
"kind": 4096,
|
|
2087
2089
|
"kindString": "Call signature",
|
|
@@ -2384,6 +2386,48 @@
|
|
|
2384
2386
|
}
|
|
2385
2387
|
]
|
|
2386
2388
|
},
|
|
2389
|
+
{
|
|
2390
|
+
"id": 81,
|
|
2391
|
+
"name": "setAriaOwns",
|
|
2392
|
+
"kind": 2048,
|
|
2393
|
+
"kindString": "Method",
|
|
2394
|
+
"flags": {
|
|
2395
|
+
"isPublic": true
|
|
2396
|
+
},
|
|
2397
|
+
"sources": [
|
|
2398
|
+
{
|
|
2399
|
+
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete-input.directive.ts",
|
|
2400
|
+
"line": 285,
|
|
2401
|
+
"character": 9
|
|
2402
|
+
}
|
|
2403
|
+
],
|
|
2404
|
+
"signatures": [
|
|
2405
|
+
{
|
|
2406
|
+
"id": 82,
|
|
2407
|
+
"name": "setAriaOwns",
|
|
2408
|
+
"kind": 4096,
|
|
2409
|
+
"kindString": "Call signature",
|
|
2410
|
+
"flags": {},
|
|
2411
|
+
"parameters": [
|
|
2412
|
+
{
|
|
2413
|
+
"id": 83,
|
|
2414
|
+
"name": "overlayId",
|
|
2415
|
+
"kind": 32768,
|
|
2416
|
+
"kindString": "Parameter",
|
|
2417
|
+
"flags": {},
|
|
2418
|
+
"type": {
|
|
2419
|
+
"type": "intrinsic",
|
|
2420
|
+
"name": "string"
|
|
2421
|
+
}
|
|
2422
|
+
}
|
|
2423
|
+
],
|
|
2424
|
+
"type": {
|
|
2425
|
+
"type": "intrinsic",
|
|
2426
|
+
"name": "void"
|
|
2427
|
+
}
|
|
2428
|
+
}
|
|
2429
|
+
]
|
|
2430
|
+
},
|
|
2387
2431
|
{
|
|
2388
2432
|
"id": 72,
|
|
2389
2433
|
"name": "setDisabledState",
|
|
@@ -2567,14 +2611,15 @@
|
|
|
2567
2611
|
"children": [
|
|
2568
2612
|
49,
|
|
2569
2613
|
47,
|
|
2570
|
-
81,
|
|
2571
2614
|
84,
|
|
2572
|
-
|
|
2615
|
+
87,
|
|
2616
|
+
89,
|
|
2573
2617
|
54,
|
|
2574
2618
|
60,
|
|
2575
2619
|
65,
|
|
2576
2620
|
70,
|
|
2577
2621
|
78,
|
|
2622
|
+
81,
|
|
2578
2623
|
72,
|
|
2579
2624
|
75,
|
|
2580
2625
|
51
|
|
@@ -2616,7 +2661,7 @@
|
|
|
2616
2661
|
]
|
|
2617
2662
|
},
|
|
2618
2663
|
{
|
|
2619
|
-
"id":
|
|
2664
|
+
"id": 96,
|
|
2620
2665
|
"name": "SkyAutocompleteComponent",
|
|
2621
2666
|
"kind": 128,
|
|
2622
2667
|
"kindString": "Class",
|
|
@@ -2637,7 +2682,7 @@
|
|
|
2637
2682
|
],
|
|
2638
2683
|
"children": [
|
|
2639
2684
|
{
|
|
2640
|
-
"id":
|
|
2685
|
+
"id": 97,
|
|
2641
2686
|
"name": "constructor",
|
|
2642
2687
|
"kind": 512,
|
|
2643
2688
|
"kindString": "Constructor",
|
|
@@ -2651,14 +2696,14 @@
|
|
|
2651
2696
|
],
|
|
2652
2697
|
"signatures": [
|
|
2653
2698
|
{
|
|
2654
|
-
"id":
|
|
2699
|
+
"id": 98,
|
|
2655
2700
|
"name": "SkyAutocompleteComponent",
|
|
2656
2701
|
"kind": 16384,
|
|
2657
2702
|
"kindString": "Constructor signature",
|
|
2658
2703
|
"flags": {},
|
|
2659
2704
|
"parameters": [
|
|
2660
2705
|
{
|
|
2661
|
-
"id":
|
|
2706
|
+
"id": 99,
|
|
2662
2707
|
"name": "changeDetector",
|
|
2663
2708
|
"kind": 32768,
|
|
2664
2709
|
"kindString": "Parameter",
|
|
@@ -2671,7 +2716,7 @@
|
|
|
2671
2716
|
}
|
|
2672
2717
|
},
|
|
2673
2718
|
{
|
|
2674
|
-
"id":
|
|
2719
|
+
"id": 100,
|
|
2675
2720
|
"name": "elementRef",
|
|
2676
2721
|
"kind": 32768,
|
|
2677
2722
|
"kindString": "Parameter",
|
|
@@ -2690,7 +2735,7 @@
|
|
|
2690
2735
|
}
|
|
2691
2736
|
},
|
|
2692
2737
|
{
|
|
2693
|
-
"id":
|
|
2738
|
+
"id": 101,
|
|
2694
2739
|
"name": "affixService",
|
|
2695
2740
|
"kind": 32768,
|
|
2696
2741
|
"kindString": "Parameter",
|
|
@@ -2701,7 +2746,7 @@
|
|
|
2701
2746
|
}
|
|
2702
2747
|
},
|
|
2703
2748
|
{
|
|
2704
|
-
"id":
|
|
2749
|
+
"id": 102,
|
|
2705
2750
|
"name": "adapterService",
|
|
2706
2751
|
"kind": 32768,
|
|
2707
2752
|
"kindString": "Parameter",
|
|
@@ -2712,7 +2757,7 @@
|
|
|
2712
2757
|
}
|
|
2713
2758
|
},
|
|
2714
2759
|
{
|
|
2715
|
-
"id":
|
|
2760
|
+
"id": 103,
|
|
2716
2761
|
"name": "overlayService",
|
|
2717
2762
|
"kind": 32768,
|
|
2718
2763
|
"kindString": "Parameter",
|
|
@@ -2723,7 +2768,7 @@
|
|
|
2723
2768
|
}
|
|
2724
2769
|
},
|
|
2725
2770
|
{
|
|
2726
|
-
"id":
|
|
2771
|
+
"id": 104,
|
|
2727
2772
|
"name": "inputBoxHostSvc",
|
|
2728
2773
|
"kind": 32768,
|
|
2729
2774
|
"kindString": "Parameter",
|
|
@@ -2750,14 +2795,14 @@
|
|
|
2750
2795
|
],
|
|
2751
2796
|
"type": {
|
|
2752
2797
|
"type": "reference",
|
|
2753
|
-
"id":
|
|
2798
|
+
"id": 96,
|
|
2754
2799
|
"name": "SkyAutocompleteComponent"
|
|
2755
2800
|
}
|
|
2756
2801
|
}
|
|
2757
2802
|
]
|
|
2758
2803
|
},
|
|
2759
2804
|
{
|
|
2760
|
-
"id":
|
|
2805
|
+
"id": 105,
|
|
2761
2806
|
"name": "ariaLabelledBy",
|
|
2762
2807
|
"kind": 1024,
|
|
2763
2808
|
"kindString": "Property",
|
|
@@ -2792,7 +2837,7 @@
|
|
|
2792
2837
|
}
|
|
2793
2838
|
},
|
|
2794
2839
|
{
|
|
2795
|
-
"id":
|
|
2840
|
+
"id": 157,
|
|
2796
2841
|
"name": "isOpen",
|
|
2797
2842
|
"kind": 1024,
|
|
2798
2843
|
"kindString": "Property",
|
|
@@ -2813,7 +2858,7 @@
|
|
|
2813
2858
|
"defaultValue": "false"
|
|
2814
2859
|
},
|
|
2815
2860
|
{
|
|
2816
|
-
"id":
|
|
2861
|
+
"id": 163,
|
|
2817
2862
|
"name": "isSearchingAsync",
|
|
2818
2863
|
"kind": 1024,
|
|
2819
2864
|
"kindString": "Property",
|
|
@@ -2834,7 +2879,7 @@
|
|
|
2834
2879
|
"defaultValue": "false"
|
|
2835
2880
|
},
|
|
2836
2881
|
{
|
|
2837
|
-
"id":
|
|
2882
|
+
"id": 143,
|
|
2838
2883
|
"name": "noResultsFoundText",
|
|
2839
2884
|
"kind": 1024,
|
|
2840
2885
|
"kindString": "Property",
|
|
@@ -2875,7 +2920,7 @@
|
|
|
2875
2920
|
}
|
|
2876
2921
|
},
|
|
2877
2922
|
{
|
|
2878
|
-
"id":
|
|
2923
|
+
"id": 158,
|
|
2879
2924
|
"name": "resultsListId",
|
|
2880
2925
|
"kind": 1024,
|
|
2881
2926
|
"kindString": "Property",
|
|
@@ -2895,7 +2940,7 @@
|
|
|
2895
2940
|
}
|
|
2896
2941
|
},
|
|
2897
2942
|
{
|
|
2898
|
-
"id":
|
|
2943
|
+
"id": 159,
|
|
2899
2944
|
"name": "resultsWrapperId",
|
|
2900
2945
|
"kind": 1024,
|
|
2901
2946
|
"kindString": "Property",
|
|
@@ -2915,7 +2960,7 @@
|
|
|
2915
2960
|
}
|
|
2916
2961
|
},
|
|
2917
2962
|
{
|
|
2918
|
-
"id":
|
|
2963
|
+
"id": 148,
|
|
2919
2964
|
"name": "searchAsync",
|
|
2920
2965
|
"kind": 1024,
|
|
2921
2966
|
"kindString": "Property",
|
|
@@ -2949,7 +2994,7 @@
|
|
|
2949
2994
|
"typeArguments": [
|
|
2950
2995
|
{
|
|
2951
2996
|
"type": "reference",
|
|
2952
|
-
"id":
|
|
2997
|
+
"id": 562,
|
|
2953
2998
|
"name": "SkyAutocompleteSearchAsyncArgs"
|
|
2954
2999
|
}
|
|
2955
3000
|
],
|
|
@@ -2960,7 +3005,7 @@
|
|
|
2960
3005
|
"defaultValue": "..."
|
|
2961
3006
|
},
|
|
2962
3007
|
{
|
|
2963
|
-
"id":
|
|
3008
|
+
"id": 137,
|
|
2964
3009
|
"name": "searchFilters",
|
|
2965
3010
|
"kind": 1024,
|
|
2966
3011
|
"kindString": "Property",
|
|
@@ -2993,13 +3038,13 @@
|
|
|
2993
3038
|
"type": "array",
|
|
2994
3039
|
"elementType": {
|
|
2995
3040
|
"type": "reference",
|
|
2996
|
-
"id":
|
|
3041
|
+
"id": 580,
|
|
2997
3042
|
"name": "SkyAutocompleteSearchFunctionFilter"
|
|
2998
3043
|
}
|
|
2999
3044
|
}
|
|
3000
3045
|
},
|
|
3001
3046
|
{
|
|
3002
|
-
"id":
|
|
3047
|
+
"id": 132,
|
|
3003
3048
|
"name": "searchResultTemplate",
|
|
3004
3049
|
"kind": 1024,
|
|
3005
3050
|
"kindString": "Property",
|
|
@@ -3042,7 +3087,7 @@
|
|
|
3042
3087
|
}
|
|
3043
3088
|
},
|
|
3044
3089
|
{
|
|
3045
|
-
"id":
|
|
3090
|
+
"id": 164,
|
|
3046
3091
|
"name": "searchResultsCount",
|
|
3047
3092
|
"kind": 1024,
|
|
3048
3093
|
"kindString": "Property",
|
|
@@ -3062,7 +3107,7 @@
|
|
|
3062
3107
|
}
|
|
3063
3108
|
},
|
|
3064
3109
|
{
|
|
3065
|
-
"id":
|
|
3110
|
+
"id": 160,
|
|
3066
3111
|
"name": "searchText",
|
|
3067
3112
|
"kind": 1024,
|
|
3068
3113
|
"kindString": "Property",
|
|
@@ -3083,7 +3128,7 @@
|
|
|
3083
3128
|
"defaultValue": "''"
|
|
3084
3129
|
},
|
|
3085
3130
|
{
|
|
3086
|
-
"id":
|
|
3131
|
+
"id": 147,
|
|
3087
3132
|
"name": "selectionChange",
|
|
3088
3133
|
"kind": 1024,
|
|
3089
3134
|
"kindString": "Property",
|
|
@@ -3117,7 +3162,7 @@
|
|
|
3117
3162
|
"typeArguments": [
|
|
3118
3163
|
{
|
|
3119
3164
|
"type": "reference",
|
|
3120
|
-
"id":
|
|
3165
|
+
"id": 587,
|
|
3121
3166
|
"name": "SkyAutocompleteSelectionChange"
|
|
3122
3167
|
}
|
|
3123
3168
|
],
|
|
@@ -3128,7 +3173,7 @@
|
|
|
3128
3173
|
"defaultValue": "..."
|
|
3129
3174
|
},
|
|
3130
3175
|
{
|
|
3131
|
-
"id":
|
|
3176
|
+
"id": 106,
|
|
3132
3177
|
"name": "data",
|
|
3133
3178
|
"kind": 262144,
|
|
3134
3179
|
"kindString": "Accessor",
|
|
@@ -3156,7 +3201,7 @@
|
|
|
3156
3201
|
],
|
|
3157
3202
|
"getSignature": [
|
|
3158
3203
|
{
|
|
3159
|
-
"id":
|
|
3204
|
+
"id": 107,
|
|
3160
3205
|
"name": "data",
|
|
3161
3206
|
"kind": 524288,
|
|
3162
3207
|
"kindString": "Get signature",
|
|
@@ -3175,7 +3220,7 @@
|
|
|
3175
3220
|
],
|
|
3176
3221
|
"setSignature": [
|
|
3177
3222
|
{
|
|
3178
|
-
"id":
|
|
3223
|
+
"id": 108,
|
|
3179
3224
|
"name": "data",
|
|
3180
3225
|
"kind": 1048576,
|
|
3181
3226
|
"kindString": "Set signature",
|
|
@@ -3185,7 +3230,7 @@
|
|
|
3185
3230
|
},
|
|
3186
3231
|
"parameters": [
|
|
3187
3232
|
{
|
|
3188
|
-
"id":
|
|
3233
|
+
"id": 109,
|
|
3189
3234
|
"name": "value",
|
|
3190
3235
|
"kind": 32768,
|
|
3191
3236
|
"kindString": "Parameter",
|
|
@@ -3207,7 +3252,7 @@
|
|
|
3207
3252
|
]
|
|
3208
3253
|
},
|
|
3209
3254
|
{
|
|
3210
|
-
"id":
|
|
3255
|
+
"id": 110,
|
|
3211
3256
|
"name": "debounceTime",
|
|
3212
3257
|
"kind": 262144,
|
|
3213
3258
|
"kindString": "Accessor",
|
|
@@ -3235,7 +3280,7 @@
|
|
|
3235
3280
|
],
|
|
3236
3281
|
"getSignature": [
|
|
3237
3282
|
{
|
|
3238
|
-
"id":
|
|
3283
|
+
"id": 111,
|
|
3239
3284
|
"name": "debounceTime",
|
|
3240
3285
|
"kind": 524288,
|
|
3241
3286
|
"kindString": "Get signature",
|
|
@@ -3257,7 +3302,7 @@
|
|
|
3257
3302
|
],
|
|
3258
3303
|
"setSignature": [
|
|
3259
3304
|
{
|
|
3260
|
-
"id":
|
|
3305
|
+
"id": 112,
|
|
3261
3306
|
"name": "debounceTime",
|
|
3262
3307
|
"kind": 1048576,
|
|
3263
3308
|
"kindString": "Set signature",
|
|
@@ -3273,7 +3318,7 @@
|
|
|
3273
3318
|
},
|
|
3274
3319
|
"parameters": [
|
|
3275
3320
|
{
|
|
3276
|
-
"id":
|
|
3321
|
+
"id": 113,
|
|
3277
3322
|
"name": "value",
|
|
3278
3323
|
"kind": 32768,
|
|
3279
3324
|
"kindString": "Parameter",
|
|
@@ -3292,7 +3337,7 @@
|
|
|
3292
3337
|
]
|
|
3293
3338
|
},
|
|
3294
3339
|
{
|
|
3295
|
-
"id":
|
|
3340
|
+
"id": 114,
|
|
3296
3341
|
"name": "descriptorProperty",
|
|
3297
3342
|
"kind": 262144,
|
|
3298
3343
|
"kindString": "Accessor",
|
|
@@ -3320,7 +3365,7 @@
|
|
|
3320
3365
|
],
|
|
3321
3366
|
"getSignature": [
|
|
3322
3367
|
{
|
|
3323
|
-
"id":
|
|
3368
|
+
"id": 115,
|
|
3324
3369
|
"name": "descriptorProperty",
|
|
3325
3370
|
"kind": 524288,
|
|
3326
3371
|
"kindString": "Get signature",
|
|
@@ -3342,7 +3387,7 @@
|
|
|
3342
3387
|
],
|
|
3343
3388
|
"setSignature": [
|
|
3344
3389
|
{
|
|
3345
|
-
"id":
|
|
3390
|
+
"id": 116,
|
|
3346
3391
|
"name": "descriptorProperty",
|
|
3347
3392
|
"kind": 1048576,
|
|
3348
3393
|
"kindString": "Set signature",
|
|
@@ -3358,7 +3403,7 @@
|
|
|
3358
3403
|
},
|
|
3359
3404
|
"parameters": [
|
|
3360
3405
|
{
|
|
3361
|
-
"id":
|
|
3406
|
+
"id": 117,
|
|
3362
3407
|
"name": "value",
|
|
3363
3408
|
"kind": 32768,
|
|
3364
3409
|
"kindString": "Parameter",
|
|
@@ -3377,7 +3422,7 @@
|
|
|
3377
3422
|
]
|
|
3378
3423
|
},
|
|
3379
3424
|
{
|
|
3380
|
-
"id":
|
|
3425
|
+
"id": 153,
|
|
3381
3426
|
"name": "highlightText",
|
|
3382
3427
|
"kind": 262144,
|
|
3383
3428
|
"kindString": "Accessor",
|
|
@@ -3393,7 +3438,7 @@
|
|
|
3393
3438
|
],
|
|
3394
3439
|
"getSignature": [
|
|
3395
3440
|
{
|
|
3396
|
-
"id":
|
|
3441
|
+
"id": 154,
|
|
3397
3442
|
"name": "highlightText",
|
|
3398
3443
|
"kind": 524288,
|
|
3399
3444
|
"kindString": "Get signature",
|
|
@@ -3409,14 +3454,14 @@
|
|
|
3409
3454
|
],
|
|
3410
3455
|
"setSignature": [
|
|
3411
3456
|
{
|
|
3412
|
-
"id":
|
|
3457
|
+
"id": 155,
|
|
3413
3458
|
"name": "highlightText",
|
|
3414
3459
|
"kind": 1048576,
|
|
3415
3460
|
"kindString": "Set signature",
|
|
3416
3461
|
"flags": {},
|
|
3417
3462
|
"parameters": [
|
|
3418
3463
|
{
|
|
3419
|
-
"id":
|
|
3464
|
+
"id": 156,
|
|
3420
3465
|
"name": "value",
|
|
3421
3466
|
"kind": 32768,
|
|
3422
3467
|
"kindString": "Parameter",
|
|
@@ -3438,7 +3483,7 @@
|
|
|
3438
3483
|
]
|
|
3439
3484
|
},
|
|
3440
3485
|
{
|
|
3441
|
-
"id":
|
|
3486
|
+
"id": 124,
|
|
3442
3487
|
"name": "propertiesToSearch",
|
|
3443
3488
|
"kind": 262144,
|
|
3444
3489
|
"kindString": "Accessor",
|
|
@@ -3466,7 +3511,7 @@
|
|
|
3466
3511
|
],
|
|
3467
3512
|
"getSignature": [
|
|
3468
3513
|
{
|
|
3469
|
-
"id":
|
|
3514
|
+
"id": 125,
|
|
3470
3515
|
"name": "propertiesToSearch",
|
|
3471
3516
|
"kind": 524288,
|
|
3472
3517
|
"kindString": "Get signature",
|
|
@@ -3491,7 +3536,7 @@
|
|
|
3491
3536
|
],
|
|
3492
3537
|
"setSignature": [
|
|
3493
3538
|
{
|
|
3494
|
-
"id":
|
|
3539
|
+
"id": 126,
|
|
3495
3540
|
"name": "propertiesToSearch",
|
|
3496
3541
|
"kind": 1048576,
|
|
3497
3542
|
"kindString": "Set signature",
|
|
@@ -3507,7 +3552,7 @@
|
|
|
3507
3552
|
},
|
|
3508
3553
|
"parameters": [
|
|
3509
3554
|
{
|
|
3510
|
-
"id":
|
|
3555
|
+
"id": 127,
|
|
3511
3556
|
"name": "value",
|
|
3512
3557
|
"kind": 32768,
|
|
3513
3558
|
"kindString": "Parameter",
|
|
@@ -3529,7 +3574,7 @@
|
|
|
3529
3574
|
]
|
|
3530
3575
|
},
|
|
3531
3576
|
{
|
|
3532
|
-
"id":
|
|
3577
|
+
"id": 128,
|
|
3533
3578
|
"name": "search",
|
|
3534
3579
|
"kind": 262144,
|
|
3535
3580
|
"kindString": "Accessor",
|
|
@@ -3557,7 +3602,7 @@
|
|
|
3557
3602
|
],
|
|
3558
3603
|
"getSignature": [
|
|
3559
3604
|
{
|
|
3560
|
-
"id":
|
|
3605
|
+
"id": 129,
|
|
3561
3606
|
"name": "search",
|
|
3562
3607
|
"kind": 524288,
|
|
3563
3608
|
"kindString": "Get signature",
|
|
@@ -3567,14 +3612,14 @@
|
|
|
3567
3612
|
},
|
|
3568
3613
|
"type": {
|
|
3569
3614
|
"type": "reference",
|
|
3570
|
-
"id":
|
|
3615
|
+
"id": 574,
|
|
3571
3616
|
"name": "SkyAutocompleteSearchFunction"
|
|
3572
3617
|
}
|
|
3573
3618
|
}
|
|
3574
3619
|
],
|
|
3575
3620
|
"setSignature": [
|
|
3576
3621
|
{
|
|
3577
|
-
"id":
|
|
3622
|
+
"id": 130,
|
|
3578
3623
|
"name": "search",
|
|
3579
3624
|
"kind": 1048576,
|
|
3580
3625
|
"kindString": "Set signature",
|
|
@@ -3584,14 +3629,14 @@
|
|
|
3584
3629
|
},
|
|
3585
3630
|
"parameters": [
|
|
3586
3631
|
{
|
|
3587
|
-
"id":
|
|
3632
|
+
"id": 131,
|
|
3588
3633
|
"name": "value",
|
|
3589
3634
|
"kind": 32768,
|
|
3590
3635
|
"kindString": "Parameter",
|
|
3591
3636
|
"flags": {},
|
|
3592
3637
|
"type": {
|
|
3593
3638
|
"type": "reference",
|
|
3594
|
-
"id":
|
|
3639
|
+
"id": 574,
|
|
3595
3640
|
"name": "SkyAutocompleteSearchFunction"
|
|
3596
3641
|
}
|
|
3597
3642
|
}
|
|
@@ -3604,7 +3649,7 @@
|
|
|
3604
3649
|
]
|
|
3605
3650
|
},
|
|
3606
3651
|
{
|
|
3607
|
-
"id":
|
|
3652
|
+
"id": 149,
|
|
3608
3653
|
"name": "searchResults",
|
|
3609
3654
|
"kind": 262144,
|
|
3610
3655
|
"kindString": "Accessor",
|
|
@@ -3620,7 +3665,7 @@
|
|
|
3620
3665
|
],
|
|
3621
3666
|
"getSignature": [
|
|
3622
3667
|
{
|
|
3623
|
-
"id":
|
|
3668
|
+
"id": 150,
|
|
3624
3669
|
"name": "searchResults",
|
|
3625
3670
|
"kind": 524288,
|
|
3626
3671
|
"kindString": "Get signature",
|
|
@@ -3636,14 +3681,14 @@
|
|
|
3636
3681
|
],
|
|
3637
3682
|
"setSignature": [
|
|
3638
3683
|
{
|
|
3639
|
-
"id":
|
|
3684
|
+
"id": 151,
|
|
3640
3685
|
"name": "searchResults",
|
|
3641
3686
|
"kind": 1048576,
|
|
3642
3687
|
"kindString": "Set signature",
|
|
3643
3688
|
"flags": {},
|
|
3644
3689
|
"parameters": [
|
|
3645
3690
|
{
|
|
3646
|
-
"id":
|
|
3691
|
+
"id": 152,
|
|
3647
3692
|
"name": "value",
|
|
3648
3693
|
"kind": 32768,
|
|
3649
3694
|
"kindString": "Parameter",
|
|
@@ -3665,7 +3710,7 @@
|
|
|
3665
3710
|
]
|
|
3666
3711
|
},
|
|
3667
3712
|
{
|
|
3668
|
-
"id":
|
|
3713
|
+
"id": 138,
|
|
3669
3714
|
"name": "searchResultsLimit",
|
|
3670
3715
|
"kind": 262144,
|
|
3671
3716
|
"kindString": "Accessor",
|
|
@@ -3693,7 +3738,7 @@
|
|
|
3693
3738
|
],
|
|
3694
3739
|
"getSignature": [
|
|
3695
3740
|
{
|
|
3696
|
-
"id":
|
|
3741
|
+
"id": 139,
|
|
3697
3742
|
"name": "searchResultsLimit",
|
|
3698
3743
|
"kind": 524288,
|
|
3699
3744
|
"kindString": "Get signature",
|
|
@@ -3709,7 +3754,7 @@
|
|
|
3709
3754
|
],
|
|
3710
3755
|
"setSignature": [
|
|
3711
3756
|
{
|
|
3712
|
-
"id":
|
|
3757
|
+
"id": 140,
|
|
3713
3758
|
"name": "searchResultsLimit",
|
|
3714
3759
|
"kind": 1048576,
|
|
3715
3760
|
"kindString": "Set signature",
|
|
@@ -3719,7 +3764,7 @@
|
|
|
3719
3764
|
},
|
|
3720
3765
|
"parameters": [
|
|
3721
3766
|
{
|
|
3722
|
-
"id":
|
|
3767
|
+
"id": 141,
|
|
3723
3768
|
"name": "value",
|
|
3724
3769
|
"kind": 32768,
|
|
3725
3770
|
"kindString": "Parameter",
|
|
@@ -3738,7 +3783,7 @@
|
|
|
3738
3783
|
]
|
|
3739
3784
|
},
|
|
3740
3785
|
{
|
|
3741
|
-
"id":
|
|
3786
|
+
"id": 133,
|
|
3742
3787
|
"name": "searchTextMinimumCharacters",
|
|
3743
3788
|
"kind": 262144,
|
|
3744
3789
|
"kindString": "Accessor",
|
|
@@ -3766,7 +3811,7 @@
|
|
|
3766
3811
|
],
|
|
3767
3812
|
"getSignature": [
|
|
3768
3813
|
{
|
|
3769
|
-
"id":
|
|
3814
|
+
"id": 134,
|
|
3770
3815
|
"name": "searchTextMinimumCharacters",
|
|
3771
3816
|
"kind": 524288,
|
|
3772
3817
|
"kindString": "Get signature",
|
|
@@ -3788,7 +3833,7 @@
|
|
|
3788
3833
|
],
|
|
3789
3834
|
"setSignature": [
|
|
3790
3835
|
{
|
|
3791
|
-
"id":
|
|
3836
|
+
"id": 135,
|
|
3792
3837
|
"name": "searchTextMinimumCharacters",
|
|
3793
3838
|
"kind": 1048576,
|
|
3794
3839
|
"kindString": "Set signature",
|
|
@@ -3804,7 +3849,7 @@
|
|
|
3804
3849
|
},
|
|
3805
3850
|
"parameters": [
|
|
3806
3851
|
{
|
|
3807
|
-
"id":
|
|
3852
|
+
"id": 136,
|
|
3808
3853
|
"name": "value",
|
|
3809
3854
|
"kind": 32768,
|
|
3810
3855
|
"kindString": "Parameter",
|
|
@@ -3823,7 +3868,7 @@
|
|
|
3823
3868
|
]
|
|
3824
3869
|
},
|
|
3825
3870
|
{
|
|
3826
|
-
"id":
|
|
3871
|
+
"id": 161,
|
|
3827
3872
|
"name": "showActionsArea",
|
|
3828
3873
|
"kind": 262144,
|
|
3829
3874
|
"kindString": "Accessor",
|
|
@@ -3839,7 +3884,7 @@
|
|
|
3839
3884
|
],
|
|
3840
3885
|
"getSignature": [
|
|
3841
3886
|
{
|
|
3842
|
-
"id":
|
|
3887
|
+
"id": 162,
|
|
3843
3888
|
"name": "showActionsArea",
|
|
3844
3889
|
"kind": 524288,
|
|
3845
3890
|
"kindString": "Get signature",
|
|
@@ -3852,7 +3897,7 @@
|
|
|
3852
3897
|
]
|
|
3853
3898
|
},
|
|
3854
3899
|
{
|
|
3855
|
-
"id":
|
|
3900
|
+
"id": 204,
|
|
3856
3901
|
"name": "addButtonClicked",
|
|
3857
3902
|
"kind": 2048,
|
|
3858
3903
|
"kindString": "Method",
|
|
@@ -3868,7 +3913,7 @@
|
|
|
3868
3913
|
],
|
|
3869
3914
|
"signatures": [
|
|
3870
3915
|
{
|
|
3871
|
-
"id":
|
|
3916
|
+
"id": 205,
|
|
3872
3917
|
"name": "addButtonClicked",
|
|
3873
3918
|
"kind": 4096,
|
|
3874
3919
|
"kindString": "Call signature",
|
|
@@ -3881,7 +3926,7 @@
|
|
|
3881
3926
|
]
|
|
3882
3927
|
},
|
|
3883
3928
|
{
|
|
3884
|
-
"id":
|
|
3929
|
+
"id": 206,
|
|
3885
3930
|
"name": "handleKeydown",
|
|
3886
3931
|
"kind": 2048,
|
|
3887
3932
|
"kindString": "Method",
|
|
@@ -3897,14 +3942,14 @@
|
|
|
3897
3942
|
],
|
|
3898
3943
|
"signatures": [
|
|
3899
3944
|
{
|
|
3900
|
-
"id":
|
|
3945
|
+
"id": 207,
|
|
3901
3946
|
"name": "handleKeydown",
|
|
3902
3947
|
"kind": 4096,
|
|
3903
3948
|
"kindString": "Call signature",
|
|
3904
3949
|
"flags": {},
|
|
3905
3950
|
"parameters": [
|
|
3906
3951
|
{
|
|
3907
|
-
"id":
|
|
3952
|
+
"id": 208,
|
|
3908
3953
|
"name": "event",
|
|
3909
3954
|
"kind": 32768,
|
|
3910
3955
|
"kindString": "Parameter",
|
|
@@ -3925,7 +3970,7 @@
|
|
|
3925
3970
|
]
|
|
3926
3971
|
},
|
|
3927
3972
|
{
|
|
3928
|
-
"id":
|
|
3973
|
+
"id": 218,
|
|
3929
3974
|
"name": "isElementFocused",
|
|
3930
3975
|
"kind": 2048,
|
|
3931
3976
|
"kindString": "Method",
|
|
@@ -3941,14 +3986,14 @@
|
|
|
3941
3986
|
],
|
|
3942
3987
|
"signatures": [
|
|
3943
3988
|
{
|
|
3944
|
-
"id":
|
|
3989
|
+
"id": 219,
|
|
3945
3990
|
"name": "isElementFocused",
|
|
3946
3991
|
"kind": 4096,
|
|
3947
3992
|
"kindString": "Call signature",
|
|
3948
3993
|
"flags": {},
|
|
3949
3994
|
"parameters": [
|
|
3950
3995
|
{
|
|
3951
|
-
"id":
|
|
3996
|
+
"id": 220,
|
|
3952
3997
|
"name": "ref",
|
|
3953
3998
|
"kind": 32768,
|
|
3954
3999
|
"kindString": "Parameter",
|
|
@@ -3969,7 +4014,7 @@
|
|
|
3969
4014
|
]
|
|
3970
4015
|
},
|
|
3971
4016
|
{
|
|
3972
|
-
"id":
|
|
4017
|
+
"id": 209,
|
|
3973
4018
|
"name": "moreButtonClicked",
|
|
3974
4019
|
"kind": 2048,
|
|
3975
4020
|
"kindString": "Method",
|
|
@@ -3985,7 +4030,7 @@
|
|
|
3985
4030
|
],
|
|
3986
4031
|
"signatures": [
|
|
3987
4032
|
{
|
|
3988
|
-
"id":
|
|
4033
|
+
"id": 210,
|
|
3989
4034
|
"name": "moreButtonClicked",
|
|
3990
4035
|
"kind": 4096,
|
|
3991
4036
|
"kindString": "Call signature",
|
|
@@ -3998,7 +4043,7 @@
|
|
|
3998
4043
|
]
|
|
3999
4044
|
},
|
|
4000
4045
|
{
|
|
4001
|
-
"id":
|
|
4046
|
+
"id": 200,
|
|
4002
4047
|
"name": "ngAfterViewInit",
|
|
4003
4048
|
"kind": 2048,
|
|
4004
4049
|
"kindString": "Method",
|
|
@@ -4014,7 +4059,7 @@
|
|
|
4014
4059
|
],
|
|
4015
4060
|
"signatures": [
|
|
4016
4061
|
{
|
|
4017
|
-
"id":
|
|
4062
|
+
"id": 201,
|
|
4018
4063
|
"name": "ngAfterViewInit",
|
|
4019
4064
|
"kind": 4096,
|
|
4020
4065
|
"kindString": "Call signature",
|
|
@@ -4035,7 +4080,7 @@
|
|
|
4035
4080
|
}
|
|
4036
4081
|
},
|
|
4037
4082
|
{
|
|
4038
|
-
"id":
|
|
4083
|
+
"id": 202,
|
|
4039
4084
|
"name": "ngOnDestroy",
|
|
4040
4085
|
"kind": 2048,
|
|
4041
4086
|
"kindString": "Method",
|
|
@@ -4051,7 +4096,7 @@
|
|
|
4051
4096
|
],
|
|
4052
4097
|
"signatures": [
|
|
4053
4098
|
{
|
|
4054
|
-
"id":
|
|
4099
|
+
"id": 203,
|
|
4055
4100
|
"name": "ngOnDestroy",
|
|
4056
4101
|
"kind": 4096,
|
|
4057
4102
|
"kindString": "Call signature",
|
|
@@ -4072,7 +4117,7 @@
|
|
|
4072
4117
|
}
|
|
4073
4118
|
},
|
|
4074
4119
|
{
|
|
4075
|
-
"id":
|
|
4120
|
+
"id": 211,
|
|
4076
4121
|
"name": "onResultMouseDown",
|
|
4077
4122
|
"kind": 2048,
|
|
4078
4123
|
"kindString": "Method",
|
|
@@ -4088,14 +4133,14 @@
|
|
|
4088
4133
|
],
|
|
4089
4134
|
"signatures": [
|
|
4090
4135
|
{
|
|
4091
|
-
"id":
|
|
4136
|
+
"id": 212,
|
|
4092
4137
|
"name": "onResultMouseDown",
|
|
4093
4138
|
"kind": 4096,
|
|
4094
4139
|
"kindString": "Call signature",
|
|
4095
4140
|
"flags": {},
|
|
4096
4141
|
"parameters": [
|
|
4097
4142
|
{
|
|
4098
|
-
"id":
|
|
4143
|
+
"id": 213,
|
|
4099
4144
|
"name": "id",
|
|
4100
4145
|
"kind": 32768,
|
|
4101
4146
|
"kindString": "Parameter",
|
|
@@ -4106,7 +4151,7 @@
|
|
|
4106
4151
|
}
|
|
4107
4152
|
},
|
|
4108
4153
|
{
|
|
4109
|
-
"id":
|
|
4154
|
+
"id": 214,
|
|
4110
4155
|
"name": "event",
|
|
4111
4156
|
"kind": 32768,
|
|
4112
4157
|
"kindString": "Parameter",
|
|
@@ -4127,7 +4172,7 @@
|
|
|
4127
4172
|
]
|
|
4128
4173
|
},
|
|
4129
4174
|
{
|
|
4130
|
-
"id":
|
|
4175
|
+
"id": 215,
|
|
4131
4176
|
"name": "onResultMouseMove",
|
|
4132
4177
|
"kind": 2048,
|
|
4133
4178
|
"kindString": "Method",
|
|
@@ -4143,14 +4188,14 @@
|
|
|
4143
4188
|
],
|
|
4144
4189
|
"signatures": [
|
|
4145
4190
|
{
|
|
4146
|
-
"id":
|
|
4191
|
+
"id": 216,
|
|
4147
4192
|
"name": "onResultMouseMove",
|
|
4148
4193
|
"kind": 4096,
|
|
4149
4194
|
"kindString": "Call signature",
|
|
4150
4195
|
"flags": {},
|
|
4151
4196
|
"parameters": [
|
|
4152
4197
|
{
|
|
4153
|
-
"id":
|
|
4198
|
+
"id": 217,
|
|
4154
4199
|
"name": "id",
|
|
4155
4200
|
"kind": 32768,
|
|
4156
4201
|
"kindString": "Parameter",
|
|
@@ -4174,55 +4219,55 @@
|
|
|
4174
4219
|
"title": "Constructors",
|
|
4175
4220
|
"kind": 512,
|
|
4176
4221
|
"children": [
|
|
4177
|
-
|
|
4222
|
+
97
|
|
4178
4223
|
]
|
|
4179
4224
|
},
|
|
4180
4225
|
{
|
|
4181
4226
|
"title": "Properties",
|
|
4182
4227
|
"kind": 1024,
|
|
4183
4228
|
"children": [
|
|
4184
|
-
|
|
4185
|
-
154,
|
|
4186
|
-
160,
|
|
4187
|
-
140,
|
|
4188
|
-
155,
|
|
4189
|
-
156,
|
|
4190
|
-
145,
|
|
4191
|
-
134,
|
|
4192
|
-
129,
|
|
4193
|
-
161,
|
|
4229
|
+
105,
|
|
4194
4230
|
157,
|
|
4195
|
-
|
|
4231
|
+
163,
|
|
4232
|
+
143,
|
|
4233
|
+
158,
|
|
4234
|
+
159,
|
|
4235
|
+
148,
|
|
4236
|
+
137,
|
|
4237
|
+
132,
|
|
4238
|
+
164,
|
|
4239
|
+
160,
|
|
4240
|
+
147
|
|
4196
4241
|
]
|
|
4197
4242
|
},
|
|
4198
4243
|
{
|
|
4199
4244
|
"title": "Accessors",
|
|
4200
4245
|
"kind": 262144,
|
|
4201
4246
|
"children": [
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
|
|
4247
|
+
106,
|
|
4248
|
+
110,
|
|
4249
|
+
114,
|
|
4250
|
+
153,
|
|
4251
|
+
124,
|
|
4252
|
+
128,
|
|
4253
|
+
149,
|
|
4254
|
+
138,
|
|
4255
|
+
133,
|
|
4256
|
+
161
|
|
4212
4257
|
]
|
|
4213
4258
|
},
|
|
4214
4259
|
{
|
|
4215
4260
|
"title": "Methods",
|
|
4216
4261
|
"kind": 2048,
|
|
4217
4262
|
"children": [
|
|
4218
|
-
|
|
4219
|
-
203,
|
|
4220
|
-
215,
|
|
4263
|
+
204,
|
|
4221
4264
|
206,
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4265
|
+
218,
|
|
4266
|
+
209,
|
|
4267
|
+
200,
|
|
4268
|
+
202,
|
|
4269
|
+
211,
|
|
4270
|
+
215
|
|
4226
4271
|
]
|
|
4227
4272
|
}
|
|
4228
4273
|
],
|
|
@@ -4249,7 +4294,7 @@
|
|
|
4249
4294
|
]
|
|
4250
4295
|
},
|
|
4251
4296
|
{
|
|
4252
|
-
"id":
|
|
4297
|
+
"id": 264,
|
|
4253
4298
|
"name": "SkyCountryFieldComponent",
|
|
4254
4299
|
"kind": 128,
|
|
4255
4300
|
"kindString": "Class",
|
|
@@ -4270,7 +4315,7 @@
|
|
|
4270
4315
|
],
|
|
4271
4316
|
"children": [
|
|
4272
4317
|
{
|
|
4273
|
-
"id":
|
|
4318
|
+
"id": 265,
|
|
4274
4319
|
"name": "constructor",
|
|
4275
4320
|
"kind": 512,
|
|
4276
4321
|
"kindString": "Constructor",
|
|
@@ -4284,14 +4329,14 @@
|
|
|
4284
4329
|
],
|
|
4285
4330
|
"signatures": [
|
|
4286
4331
|
{
|
|
4287
|
-
"id":
|
|
4332
|
+
"id": 266,
|
|
4288
4333
|
"name": "SkyCountryFieldComponent",
|
|
4289
4334
|
"kind": 16384,
|
|
4290
4335
|
"kindString": "Constructor signature",
|
|
4291
4336
|
"flags": {},
|
|
4292
4337
|
"parameters": [
|
|
4293
4338
|
{
|
|
4294
|
-
"id":
|
|
4339
|
+
"id": 267,
|
|
4295
4340
|
"name": "changeDetector",
|
|
4296
4341
|
"kind": 32768,
|
|
4297
4342
|
"kindString": "Parameter",
|
|
@@ -4304,7 +4349,7 @@
|
|
|
4304
4349
|
}
|
|
4305
4350
|
},
|
|
4306
4351
|
{
|
|
4307
|
-
"id":
|
|
4352
|
+
"id": 268,
|
|
4308
4353
|
"name": "elRef",
|
|
4309
4354
|
"kind": 32768,
|
|
4310
4355
|
"kindString": "Parameter",
|
|
@@ -4323,7 +4368,7 @@
|
|
|
4323
4368
|
}
|
|
4324
4369
|
},
|
|
4325
4370
|
{
|
|
4326
|
-
"id":
|
|
4371
|
+
"id": 269,
|
|
4327
4372
|
"name": "windowRef",
|
|
4328
4373
|
"kind": 32768,
|
|
4329
4374
|
"kindString": "Parameter",
|
|
@@ -4334,7 +4379,7 @@
|
|
|
4334
4379
|
}
|
|
4335
4380
|
},
|
|
4336
4381
|
{
|
|
4337
|
-
"id":
|
|
4382
|
+
"id": 270,
|
|
4338
4383
|
"name": "injector",
|
|
4339
4384
|
"kind": 32768,
|
|
4340
4385
|
"kindString": "Parameter",
|
|
@@ -4347,7 +4392,7 @@
|
|
|
4347
4392
|
}
|
|
4348
4393
|
},
|
|
4349
4394
|
{
|
|
4350
|
-
"id":
|
|
4395
|
+
"id": 271,
|
|
4351
4396
|
"name": "inputBoxHostSvc",
|
|
4352
4397
|
"kind": 32768,
|
|
4353
4398
|
"kindString": "Parameter",
|
|
@@ -4372,7 +4417,7 @@
|
|
|
4372
4417
|
}
|
|
4373
4418
|
},
|
|
4374
4419
|
{
|
|
4375
|
-
"id":
|
|
4420
|
+
"id": 272,
|
|
4376
4421
|
"name": "themeSvc",
|
|
4377
4422
|
"kind": 32768,
|
|
4378
4423
|
"kindString": "Parameter",
|
|
@@ -4399,14 +4444,14 @@
|
|
|
4399
4444
|
],
|
|
4400
4445
|
"type": {
|
|
4401
4446
|
"type": "reference",
|
|
4402
|
-
"id":
|
|
4447
|
+
"id": 264,
|
|
4403
4448
|
"name": "SkyCountryFieldComponent"
|
|
4404
4449
|
}
|
|
4405
4450
|
}
|
|
4406
4451
|
]
|
|
4407
4452
|
},
|
|
4408
4453
|
{
|
|
4409
|
-
"id":
|
|
4454
|
+
"id": 273,
|
|
4410
4455
|
"name": "autocompleteAttribute",
|
|
4411
4456
|
"kind": 1024,
|
|
4412
4457
|
"kindString": "Property",
|
|
@@ -4447,7 +4492,7 @@
|
|
|
4447
4492
|
}
|
|
4448
4493
|
},
|
|
4449
4494
|
{
|
|
4450
|
-
"id":
|
|
4495
|
+
"id": 292,
|
|
4451
4496
|
"name": "countries",
|
|
4452
4497
|
"kind": 1024,
|
|
4453
4498
|
"kindString": "Property",
|
|
@@ -4465,14 +4510,14 @@
|
|
|
4465
4510
|
"type": "array",
|
|
4466
4511
|
"elementType": {
|
|
4467
4512
|
"type": "reference",
|
|
4468
|
-
"id":
|
|
4513
|
+
"id": 595,
|
|
4469
4514
|
"name": "SkyCountryFieldCountry"
|
|
4470
4515
|
}
|
|
4471
4516
|
},
|
|
4472
4517
|
"defaultValue": "[]"
|
|
4473
4518
|
},
|
|
4474
4519
|
{
|
|
4475
|
-
"id":
|
|
4520
|
+
"id": 296,
|
|
4476
4521
|
"name": "countrySearchAutocompleteDirective",
|
|
4477
4522
|
"kind": 1024,
|
|
4478
4523
|
"kindString": "Property",
|
|
@@ -4507,7 +4552,7 @@
|
|
|
4507
4552
|
}
|
|
4508
4553
|
},
|
|
4509
4554
|
{
|
|
4510
|
-
"id":
|
|
4555
|
+
"id": 293,
|
|
4511
4556
|
"name": "countrySearchFormControl",
|
|
4512
4557
|
"kind": 1024,
|
|
4513
4558
|
"kindString": "Property",
|
|
@@ -4529,7 +4574,7 @@
|
|
|
4529
4574
|
}
|
|
4530
4575
|
},
|
|
4531
4576
|
{
|
|
4532
|
-
"id":
|
|
4577
|
+
"id": 301,
|
|
4533
4578
|
"name": "currentTheme",
|
|
4534
4579
|
"kind": 1024,
|
|
4535
4580
|
"kindString": "Property",
|
|
@@ -4550,7 +4595,7 @@
|
|
|
4550
4595
|
"defaultValue": "'default'"
|
|
4551
4596
|
},
|
|
4552
4597
|
{
|
|
4553
|
-
"id":
|
|
4598
|
+
"id": 282,
|
|
4554
4599
|
"name": "hideSelectedCountryFlag",
|
|
4555
4600
|
"kind": 1024,
|
|
4556
4601
|
"kindString": "Property",
|
|
@@ -4586,7 +4631,7 @@
|
|
|
4586
4631
|
"defaultValue": "false"
|
|
4587
4632
|
},
|
|
4588
4633
|
{
|
|
4589
|
-
"id":
|
|
4634
|
+
"id": 302,
|
|
4590
4635
|
"name": "inputId",
|
|
4591
4636
|
"kind": 1024,
|
|
4592
4637
|
"kindString": "Property",
|
|
@@ -4606,7 +4651,7 @@
|
|
|
4606
4651
|
}
|
|
4607
4652
|
},
|
|
4608
4653
|
{
|
|
4609
|
-
"id":
|
|
4654
|
+
"id": 294,
|
|
4610
4655
|
"name": "isInputFocused",
|
|
4611
4656
|
"kind": 1024,
|
|
4612
4657
|
"kindString": "Property",
|
|
@@ -4627,7 +4672,7 @@
|
|
|
4627
4672
|
"defaultValue": "false"
|
|
4628
4673
|
},
|
|
4629
4674
|
{
|
|
4630
|
-
"id":
|
|
4675
|
+
"id": 295,
|
|
4631
4676
|
"name": "searchTextMinimumCharacters",
|
|
4632
4677
|
"kind": 1024,
|
|
4633
4678
|
"kindString": "Property",
|
|
@@ -4648,7 +4693,7 @@
|
|
|
4648
4693
|
"defaultValue": "2"
|
|
4649
4694
|
},
|
|
4650
4695
|
{
|
|
4651
|
-
"id":
|
|
4696
|
+
"id": 291,
|
|
4652
4697
|
"name": "selectedCountryChange",
|
|
4653
4698
|
"kind": 1024,
|
|
4654
4699
|
"kindString": "Property",
|
|
@@ -4682,7 +4727,7 @@
|
|
|
4682
4727
|
"typeArguments": [
|
|
4683
4728
|
{
|
|
4684
4729
|
"type": "reference",
|
|
4685
|
-
"id":
|
|
4730
|
+
"id": 595,
|
|
4686
4731
|
"name": "SkyCountryFieldCountry"
|
|
4687
4732
|
}
|
|
4688
4733
|
],
|
|
@@ -4693,7 +4738,7 @@
|
|
|
4693
4738
|
"defaultValue": "..."
|
|
4694
4739
|
},
|
|
4695
4740
|
{
|
|
4696
|
-
"id":
|
|
4741
|
+
"id": 274,
|
|
4697
4742
|
"name": "defaultCountry",
|
|
4698
4743
|
"kind": 262144,
|
|
4699
4744
|
"kindString": "Accessor",
|
|
@@ -4721,7 +4766,7 @@
|
|
|
4721
4766
|
],
|
|
4722
4767
|
"getSignature": [
|
|
4723
4768
|
{
|
|
4724
|
-
"id":
|
|
4769
|
+
"id": 275,
|
|
4725
4770
|
"name": "defaultCountry",
|
|
4726
4771
|
"kind": 524288,
|
|
4727
4772
|
"kindString": "Get signature",
|
|
@@ -4743,7 +4788,7 @@
|
|
|
4743
4788
|
],
|
|
4744
4789
|
"setSignature": [
|
|
4745
4790
|
{
|
|
4746
|
-
"id":
|
|
4791
|
+
"id": 276,
|
|
4747
4792
|
"name": "defaultCountry",
|
|
4748
4793
|
"kind": 1048576,
|
|
4749
4794
|
"kindString": "Set signature",
|
|
@@ -4759,7 +4804,7 @@
|
|
|
4759
4804
|
},
|
|
4760
4805
|
"parameters": [
|
|
4761
4806
|
{
|
|
4762
|
-
"id":
|
|
4807
|
+
"id": 277,
|
|
4763
4808
|
"name": "value",
|
|
4764
4809
|
"kind": 32768,
|
|
4765
4810
|
"kindString": "Parameter",
|
|
@@ -4778,7 +4823,7 @@
|
|
|
4778
4823
|
]
|
|
4779
4824
|
},
|
|
4780
4825
|
{
|
|
4781
|
-
"id":
|
|
4826
|
+
"id": 278,
|
|
4782
4827
|
"name": "disabled",
|
|
4783
4828
|
"kind": 262144,
|
|
4784
4829
|
"kindString": "Accessor",
|
|
@@ -4806,7 +4851,7 @@
|
|
|
4806
4851
|
],
|
|
4807
4852
|
"getSignature": [
|
|
4808
4853
|
{
|
|
4809
|
-
"id":
|
|
4854
|
+
"id": 279,
|
|
4810
4855
|
"name": "disabled",
|
|
4811
4856
|
"kind": 524288,
|
|
4812
4857
|
"kindString": "Get signature",
|
|
@@ -4828,7 +4873,7 @@
|
|
|
4828
4873
|
],
|
|
4829
4874
|
"setSignature": [
|
|
4830
4875
|
{
|
|
4831
|
-
"id":
|
|
4876
|
+
"id": 280,
|
|
4832
4877
|
"name": "disabled",
|
|
4833
4878
|
"kind": 1048576,
|
|
4834
4879
|
"kindString": "Set signature",
|
|
@@ -4844,7 +4889,7 @@
|
|
|
4844
4889
|
},
|
|
4845
4890
|
"parameters": [
|
|
4846
4891
|
{
|
|
4847
|
-
"id":
|
|
4892
|
+
"id": 281,
|
|
4848
4893
|
"name": "isDisabled",
|
|
4849
4894
|
"kind": 32768,
|
|
4850
4895
|
"kindString": "Parameter",
|
|
@@ -4863,7 +4908,7 @@
|
|
|
4863
4908
|
]
|
|
4864
4909
|
},
|
|
4865
4910
|
{
|
|
4866
|
-
"id":
|
|
4911
|
+
"id": 283,
|
|
4867
4912
|
"name": "includePhoneInfo",
|
|
4868
4913
|
"kind": 262144,
|
|
4869
4914
|
"kindString": "Accessor",
|
|
@@ -4891,7 +4936,7 @@
|
|
|
4891
4936
|
],
|
|
4892
4937
|
"getSignature": [
|
|
4893
4938
|
{
|
|
4894
|
-
"id":
|
|
4939
|
+
"id": 284,
|
|
4895
4940
|
"name": "includePhoneInfo",
|
|
4896
4941
|
"kind": 524288,
|
|
4897
4942
|
"kindString": "Get signature",
|
|
@@ -4913,7 +4958,7 @@
|
|
|
4913
4958
|
],
|
|
4914
4959
|
"setSignature": [
|
|
4915
4960
|
{
|
|
4916
|
-
"id":
|
|
4961
|
+
"id": 285,
|
|
4917
4962
|
"name": "includePhoneInfo",
|
|
4918
4963
|
"kind": 1048576,
|
|
4919
4964
|
"kindString": "Set signature",
|
|
@@ -4929,7 +4974,7 @@
|
|
|
4929
4974
|
},
|
|
4930
4975
|
"parameters": [
|
|
4931
4976
|
{
|
|
4932
|
-
"id":
|
|
4977
|
+
"id": 286,
|
|
4933
4978
|
"name": "value",
|
|
4934
4979
|
"kind": 32768,
|
|
4935
4980
|
"kindString": "Parameter",
|
|
@@ -4948,7 +4993,7 @@
|
|
|
4948
4993
|
]
|
|
4949
4994
|
},
|
|
4950
4995
|
{
|
|
4951
|
-
"id":
|
|
4996
|
+
"id": 297,
|
|
4952
4997
|
"name": "selectedCountry",
|
|
4953
4998
|
"kind": 262144,
|
|
4954
4999
|
"kindString": "Accessor",
|
|
@@ -4964,35 +5009,35 @@
|
|
|
4964
5009
|
],
|
|
4965
5010
|
"getSignature": [
|
|
4966
5011
|
{
|
|
4967
|
-
"id":
|
|
5012
|
+
"id": 298,
|
|
4968
5013
|
"name": "selectedCountry",
|
|
4969
5014
|
"kind": 524288,
|
|
4970
5015
|
"kindString": "Get signature",
|
|
4971
5016
|
"flags": {},
|
|
4972
5017
|
"type": {
|
|
4973
5018
|
"type": "reference",
|
|
4974
|
-
"id":
|
|
5019
|
+
"id": 595,
|
|
4975
5020
|
"name": "SkyCountryFieldCountry"
|
|
4976
5021
|
}
|
|
4977
5022
|
}
|
|
4978
5023
|
],
|
|
4979
5024
|
"setSignature": [
|
|
4980
5025
|
{
|
|
4981
|
-
"id":
|
|
5026
|
+
"id": 299,
|
|
4982
5027
|
"name": "selectedCountry",
|
|
4983
5028
|
"kind": 1048576,
|
|
4984
5029
|
"kindString": "Set signature",
|
|
4985
5030
|
"flags": {},
|
|
4986
5031
|
"parameters": [
|
|
4987
5032
|
{
|
|
4988
|
-
"id":
|
|
5033
|
+
"id": 300,
|
|
4989
5034
|
"name": "newCountry",
|
|
4990
5035
|
"kind": 32768,
|
|
4991
5036
|
"kindString": "Parameter",
|
|
4992
5037
|
"flags": {},
|
|
4993
5038
|
"type": {
|
|
4994
5039
|
"type": "reference",
|
|
4995
|
-
"id":
|
|
5040
|
+
"id": 595,
|
|
4996
5041
|
"name": "SkyCountryFieldCountry"
|
|
4997
5042
|
}
|
|
4998
5043
|
}
|
|
@@ -5005,7 +5050,7 @@
|
|
|
5005
5050
|
]
|
|
5006
5051
|
},
|
|
5007
5052
|
{
|
|
5008
|
-
"id":
|
|
5053
|
+
"id": 287,
|
|
5009
5054
|
"name": "supportedCountryISOs",
|
|
5010
5055
|
"kind": 262144,
|
|
5011
5056
|
"kindString": "Accessor",
|
|
@@ -5033,7 +5078,7 @@
|
|
|
5033
5078
|
],
|
|
5034
5079
|
"getSignature": [
|
|
5035
5080
|
{
|
|
5036
|
-
"id":
|
|
5081
|
+
"id": 288,
|
|
5037
5082
|
"name": "supportedCountryISOs",
|
|
5038
5083
|
"kind": 524288,
|
|
5039
5084
|
"kindString": "Get signature",
|
|
@@ -5052,7 +5097,7 @@
|
|
|
5052
5097
|
],
|
|
5053
5098
|
"setSignature": [
|
|
5054
5099
|
{
|
|
5055
|
-
"id":
|
|
5100
|
+
"id": 289,
|
|
5056
5101
|
"name": "supportedCountryISOs",
|
|
5057
5102
|
"kind": 1048576,
|
|
5058
5103
|
"kindString": "Set signature",
|
|
@@ -5062,7 +5107,7 @@
|
|
|
5062
5107
|
},
|
|
5063
5108
|
"parameters": [
|
|
5064
5109
|
{
|
|
5065
|
-
"id":
|
|
5110
|
+
"id": 290,
|
|
5066
5111
|
"name": "value",
|
|
5067
5112
|
"kind": 32768,
|
|
5068
5113
|
"kindString": "Parameter",
|
|
@@ -5084,7 +5129,7 @@
|
|
|
5084
5129
|
]
|
|
5085
5130
|
},
|
|
5086
5131
|
{
|
|
5087
|
-
"id":
|
|
5132
|
+
"id": 324,
|
|
5088
5133
|
"name": "ngAfterViewInit",
|
|
5089
5134
|
"kind": 2048,
|
|
5090
5135
|
"kindString": "Method",
|
|
@@ -5100,7 +5145,7 @@
|
|
|
5100
5145
|
],
|
|
5101
5146
|
"signatures": [
|
|
5102
5147
|
{
|
|
5103
|
-
"id":
|
|
5148
|
+
"id": 325,
|
|
5104
5149
|
"name": "ngAfterViewInit",
|
|
5105
5150
|
"kind": 4096,
|
|
5106
5151
|
"kindString": "Call signature",
|
|
@@ -5121,7 +5166,7 @@
|
|
|
5121
5166
|
}
|
|
5122
5167
|
},
|
|
5123
5168
|
{
|
|
5124
|
-
"id":
|
|
5169
|
+
"id": 333,
|
|
5125
5170
|
"name": "onChange",
|
|
5126
5171
|
"kind": 2048,
|
|
5127
5172
|
"kindString": "Method",
|
|
@@ -5137,21 +5182,21 @@
|
|
|
5137
5182
|
],
|
|
5138
5183
|
"signatures": [
|
|
5139
5184
|
{
|
|
5140
|
-
"id":
|
|
5185
|
+
"id": 334,
|
|
5141
5186
|
"name": "onChange",
|
|
5142
5187
|
"kind": 4096,
|
|
5143
5188
|
"kindString": "Call signature",
|
|
5144
5189
|
"flags": {},
|
|
5145
5190
|
"parameters": [
|
|
5146
5191
|
{
|
|
5147
|
-
"id":
|
|
5192
|
+
"id": 335,
|
|
5148
5193
|
"name": "value",
|
|
5149
5194
|
"kind": 32768,
|
|
5150
5195
|
"kindString": "Parameter",
|
|
5151
5196
|
"flags": {},
|
|
5152
5197
|
"type": {
|
|
5153
5198
|
"type": "reference",
|
|
5154
|
-
"id":
|
|
5199
|
+
"id": 595,
|
|
5155
5200
|
"name": "SkyCountryFieldCountry"
|
|
5156
5201
|
}
|
|
5157
5202
|
}
|
|
@@ -5164,7 +5209,7 @@
|
|
|
5164
5209
|
]
|
|
5165
5210
|
},
|
|
5166
5211
|
{
|
|
5167
|
-
"id":
|
|
5212
|
+
"id": 336,
|
|
5168
5213
|
"name": "onTouched",
|
|
5169
5214
|
"kind": 2048,
|
|
5170
5215
|
"kindString": "Method",
|
|
@@ -5180,7 +5225,7 @@
|
|
|
5180
5225
|
],
|
|
5181
5226
|
"signatures": [
|
|
5182
5227
|
{
|
|
5183
|
-
"id":
|
|
5228
|
+
"id": 337,
|
|
5184
5229
|
"name": "onTouched",
|
|
5185
5230
|
"kind": 4096,
|
|
5186
5231
|
"kindString": "Call signature",
|
|
@@ -5193,7 +5238,7 @@
|
|
|
5193
5238
|
]
|
|
5194
5239
|
},
|
|
5195
5240
|
{
|
|
5196
|
-
"id":
|
|
5241
|
+
"id": 338,
|
|
5197
5242
|
"name": "registerOnChange",
|
|
5198
5243
|
"kind": 2048,
|
|
5199
5244
|
"kindString": "Method",
|
|
@@ -5209,14 +5254,14 @@
|
|
|
5209
5254
|
],
|
|
5210
5255
|
"signatures": [
|
|
5211
5256
|
{
|
|
5212
|
-
"id":
|
|
5257
|
+
"id": 339,
|
|
5213
5258
|
"name": "registerOnChange",
|
|
5214
5259
|
"kind": 4096,
|
|
5215
5260
|
"kindString": "Call signature",
|
|
5216
5261
|
"flags": {},
|
|
5217
5262
|
"parameters": [
|
|
5218
5263
|
{
|
|
5219
|
-
"id":
|
|
5264
|
+
"id": 340,
|
|
5220
5265
|
"name": "fn",
|
|
5221
5266
|
"kind": 32768,
|
|
5222
5267
|
"kindString": "Parameter",
|
|
@@ -5224,28 +5269,28 @@
|
|
|
5224
5269
|
"type": {
|
|
5225
5270
|
"type": "reflection",
|
|
5226
5271
|
"declaration": {
|
|
5227
|
-
"id":
|
|
5272
|
+
"id": 341,
|
|
5228
5273
|
"name": "__type",
|
|
5229
5274
|
"kind": 65536,
|
|
5230
5275
|
"kindString": "Type literal",
|
|
5231
5276
|
"flags": {},
|
|
5232
5277
|
"signatures": [
|
|
5233
5278
|
{
|
|
5234
|
-
"id":
|
|
5279
|
+
"id": 342,
|
|
5235
5280
|
"name": "__type",
|
|
5236
5281
|
"kind": 4096,
|
|
5237
5282
|
"kindString": "Call signature",
|
|
5238
5283
|
"flags": {},
|
|
5239
5284
|
"parameters": [
|
|
5240
5285
|
{
|
|
5241
|
-
"id":
|
|
5286
|
+
"id": 343,
|
|
5242
5287
|
"name": "value",
|
|
5243
5288
|
"kind": 32768,
|
|
5244
5289
|
"kindString": "Parameter",
|
|
5245
5290
|
"flags": {},
|
|
5246
5291
|
"type": {
|
|
5247
5292
|
"type": "reference",
|
|
5248
|
-
"id":
|
|
5293
|
+
"id": 595,
|
|
5249
5294
|
"name": "SkyCountryFieldCountry"
|
|
5250
5295
|
}
|
|
5251
5296
|
}
|
|
@@ -5276,7 +5321,7 @@
|
|
|
5276
5321
|
}
|
|
5277
5322
|
},
|
|
5278
5323
|
{
|
|
5279
|
-
"id":
|
|
5324
|
+
"id": 344,
|
|
5280
5325
|
"name": "registerOnTouched",
|
|
5281
5326
|
"kind": 2048,
|
|
5282
5327
|
"kindString": "Method",
|
|
@@ -5292,14 +5337,14 @@
|
|
|
5292
5337
|
],
|
|
5293
5338
|
"signatures": [
|
|
5294
5339
|
{
|
|
5295
|
-
"id":
|
|
5340
|
+
"id": 345,
|
|
5296
5341
|
"name": "registerOnTouched",
|
|
5297
5342
|
"kind": 4096,
|
|
5298
5343
|
"kindString": "Call signature",
|
|
5299
5344
|
"flags": {},
|
|
5300
5345
|
"parameters": [
|
|
5301
5346
|
{
|
|
5302
|
-
"id":
|
|
5347
|
+
"id": 346,
|
|
5303
5348
|
"name": "fn",
|
|
5304
5349
|
"kind": 32768,
|
|
5305
5350
|
"kindString": "Parameter",
|
|
@@ -5307,14 +5352,14 @@
|
|
|
5307
5352
|
"type": {
|
|
5308
5353
|
"type": "reflection",
|
|
5309
5354
|
"declaration": {
|
|
5310
|
-
"id":
|
|
5355
|
+
"id": 347,
|
|
5311
5356
|
"name": "__type",
|
|
5312
5357
|
"kind": 65536,
|
|
5313
5358
|
"kindString": "Type literal",
|
|
5314
5359
|
"flags": {},
|
|
5315
5360
|
"signatures": [
|
|
5316
5361
|
{
|
|
5317
|
-
"id":
|
|
5362
|
+
"id": 348,
|
|
5318
5363
|
"name": "__type",
|
|
5319
5364
|
"kind": 4096,
|
|
5320
5365
|
"kindString": "Call signature",
|
|
@@ -5345,7 +5390,7 @@
|
|
|
5345
5390
|
}
|
|
5346
5391
|
},
|
|
5347
5392
|
{
|
|
5348
|
-
"id":
|
|
5393
|
+
"id": 349,
|
|
5349
5394
|
"name": "setDisabledState",
|
|
5350
5395
|
"kind": 2048,
|
|
5351
5396
|
"kindString": "Method",
|
|
@@ -5361,14 +5406,14 @@
|
|
|
5361
5406
|
],
|
|
5362
5407
|
"signatures": [
|
|
5363
5408
|
{
|
|
5364
|
-
"id":
|
|
5409
|
+
"id": 350,
|
|
5365
5410
|
"name": "setDisabledState",
|
|
5366
5411
|
"kind": 4096,
|
|
5367
5412
|
"kindString": "Call signature",
|
|
5368
5413
|
"flags": {},
|
|
5369
5414
|
"parameters": [
|
|
5370
5415
|
{
|
|
5371
|
-
"id":
|
|
5416
|
+
"id": 351,
|
|
5372
5417
|
"name": "disabled",
|
|
5373
5418
|
"kind": 32768,
|
|
5374
5419
|
"kindString": "Parameter",
|
|
@@ -5395,7 +5440,7 @@
|
|
|
5395
5440
|
}
|
|
5396
5441
|
},
|
|
5397
5442
|
{
|
|
5398
|
-
"id":
|
|
5443
|
+
"id": 352,
|
|
5399
5444
|
"name": "validate",
|
|
5400
5445
|
"kind": 2048,
|
|
5401
5446
|
"kindString": "Method",
|
|
@@ -5411,14 +5456,14 @@
|
|
|
5411
5456
|
],
|
|
5412
5457
|
"signatures": [
|
|
5413
5458
|
{
|
|
5414
|
-
"id":
|
|
5459
|
+
"id": 353,
|
|
5415
5460
|
"name": "validate",
|
|
5416
5461
|
"kind": 4096,
|
|
5417
5462
|
"kindString": "Call signature",
|
|
5418
5463
|
"flags": {},
|
|
5419
5464
|
"parameters": [
|
|
5420
5465
|
{
|
|
5421
|
-
"id":
|
|
5466
|
+
"id": 354,
|
|
5422
5467
|
"name": "control",
|
|
5423
5468
|
"kind": 32768,
|
|
5424
5469
|
"kindString": "Parameter",
|
|
@@ -5449,7 +5494,7 @@
|
|
|
5449
5494
|
}
|
|
5450
5495
|
},
|
|
5451
5496
|
{
|
|
5452
|
-
"id":
|
|
5497
|
+
"id": 355,
|
|
5453
5498
|
"name": "writeValue",
|
|
5454
5499
|
"kind": 2048,
|
|
5455
5500
|
"kindString": "Method",
|
|
@@ -5465,21 +5510,21 @@
|
|
|
5465
5510
|
],
|
|
5466
5511
|
"signatures": [
|
|
5467
5512
|
{
|
|
5468
|
-
"id":
|
|
5513
|
+
"id": 356,
|
|
5469
5514
|
"name": "writeValue",
|
|
5470
5515
|
"kind": 4096,
|
|
5471
5516
|
"kindString": "Call signature",
|
|
5472
5517
|
"flags": {},
|
|
5473
5518
|
"parameters": [
|
|
5474
5519
|
{
|
|
5475
|
-
"id":
|
|
5520
|
+
"id": 357,
|
|
5476
5521
|
"name": "value",
|
|
5477
5522
|
"kind": 32768,
|
|
5478
5523
|
"kindString": "Parameter",
|
|
5479
5524
|
"flags": {},
|
|
5480
5525
|
"type": {
|
|
5481
5526
|
"type": "reference",
|
|
5482
|
-
"id":
|
|
5527
|
+
"id": 595,
|
|
5483
5528
|
"name": "SkyCountryFieldCountry"
|
|
5484
5529
|
}
|
|
5485
5530
|
}
|
|
@@ -5505,49 +5550,49 @@
|
|
|
5505
5550
|
"title": "Constructors",
|
|
5506
5551
|
"kind": 512,
|
|
5507
5552
|
"children": [
|
|
5508
|
-
|
|
5553
|
+
265
|
|
5509
5554
|
]
|
|
5510
5555
|
},
|
|
5511
5556
|
{
|
|
5512
5557
|
"title": "Properties",
|
|
5513
5558
|
"kind": 1024,
|
|
5514
5559
|
"children": [
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
291,
|
|
5518
|
-
288,
|
|
5560
|
+
273,
|
|
5561
|
+
292,
|
|
5519
5562
|
296,
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5563
|
+
293,
|
|
5564
|
+
301,
|
|
5565
|
+
282,
|
|
5566
|
+
321,
|
|
5567
|
+
302,
|
|
5568
|
+
294,
|
|
5569
|
+
295,
|
|
5570
|
+
291
|
|
5526
5571
|
]
|
|
5527
5572
|
},
|
|
5528
5573
|
{
|
|
5529
5574
|
"title": "Accessors",
|
|
5530
5575
|
"kind": 262144,
|
|
5531
5576
|
"children": [
|
|
5532
|
-
|
|
5533
|
-
273,
|
|
5577
|
+
274,
|
|
5534
5578
|
278,
|
|
5535
|
-
|
|
5536
|
-
|
|
5579
|
+
283,
|
|
5580
|
+
297,
|
|
5581
|
+
287
|
|
5537
5582
|
]
|
|
5538
5583
|
},
|
|
5539
5584
|
{
|
|
5540
5585
|
"title": "Methods",
|
|
5541
5586
|
"kind": 2048,
|
|
5542
5587
|
"children": [
|
|
5543
|
-
|
|
5544
|
-
328,
|
|
5545
|
-
331,
|
|
5588
|
+
324,
|
|
5546
5589
|
333,
|
|
5547
|
-
|
|
5590
|
+
336,
|
|
5591
|
+
338,
|
|
5548
5592
|
344,
|
|
5549
|
-
|
|
5550
|
-
|
|
5593
|
+
349,
|
|
5594
|
+
352,
|
|
5595
|
+
355
|
|
5551
5596
|
]
|
|
5552
5597
|
}
|
|
5553
5598
|
],
|
|
@@ -5592,7 +5637,7 @@
|
|
|
5592
5637
|
]
|
|
5593
5638
|
},
|
|
5594
5639
|
{
|
|
5595
|
-
"id":
|
|
5640
|
+
"id": 377,
|
|
5596
5641
|
"name": "SkyLookupComponent",
|
|
5597
5642
|
"kind": 128,
|
|
5598
5643
|
"kindString": "Class",
|
|
@@ -5613,7 +5658,7 @@
|
|
|
5613
5658
|
],
|
|
5614
5659
|
"children": [
|
|
5615
5660
|
{
|
|
5616
|
-
"id":
|
|
5661
|
+
"id": 378,
|
|
5617
5662
|
"name": "constructor",
|
|
5618
5663
|
"kind": 512,
|
|
5619
5664
|
"kindString": "Constructor",
|
|
@@ -5621,20 +5666,20 @@
|
|
|
5621
5666
|
"sources": [
|
|
5622
5667
|
{
|
|
5623
5668
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5624
|
-
"line":
|
|
5669
|
+
"line": 293,
|
|
5625
5670
|
"character": 2
|
|
5626
5671
|
}
|
|
5627
5672
|
],
|
|
5628
5673
|
"signatures": [
|
|
5629
5674
|
{
|
|
5630
|
-
"id":
|
|
5675
|
+
"id": 379,
|
|
5631
5676
|
"name": "SkyLookupComponent",
|
|
5632
5677
|
"kind": 16384,
|
|
5633
5678
|
"kindString": "Constructor signature",
|
|
5634
5679
|
"flags": {},
|
|
5635
5680
|
"parameters": [
|
|
5636
5681
|
{
|
|
5637
|
-
"id":
|
|
5682
|
+
"id": 380,
|
|
5638
5683
|
"name": "changeDetector",
|
|
5639
5684
|
"kind": 32768,
|
|
5640
5685
|
"kindString": "Parameter",
|
|
@@ -5647,7 +5692,7 @@
|
|
|
5647
5692
|
}
|
|
5648
5693
|
},
|
|
5649
5694
|
{
|
|
5650
|
-
"id":
|
|
5695
|
+
"id": 381,
|
|
5651
5696
|
"name": "elementRef",
|
|
5652
5697
|
"kind": 32768,
|
|
5653
5698
|
"kindString": "Parameter",
|
|
@@ -5666,7 +5711,7 @@
|
|
|
5666
5711
|
}
|
|
5667
5712
|
},
|
|
5668
5713
|
{
|
|
5669
|
-
"id":
|
|
5714
|
+
"id": 382,
|
|
5670
5715
|
"name": "windowRef",
|
|
5671
5716
|
"kind": 32768,
|
|
5672
5717
|
"kindString": "Parameter",
|
|
@@ -5677,7 +5722,7 @@
|
|
|
5677
5722
|
}
|
|
5678
5723
|
},
|
|
5679
5724
|
{
|
|
5680
|
-
"id":
|
|
5725
|
+
"id": 383,
|
|
5681
5726
|
"name": "adapter",
|
|
5682
5727
|
"kind": 32768,
|
|
5683
5728
|
"kindString": "Parameter",
|
|
@@ -5688,7 +5733,7 @@
|
|
|
5688
5733
|
}
|
|
5689
5734
|
},
|
|
5690
5735
|
{
|
|
5691
|
-
"id":
|
|
5736
|
+
"id": 384,
|
|
5692
5737
|
"name": "modalService",
|
|
5693
5738
|
"kind": 32768,
|
|
5694
5739
|
"kindString": "Parameter",
|
|
@@ -5699,7 +5744,7 @@
|
|
|
5699
5744
|
}
|
|
5700
5745
|
},
|
|
5701
5746
|
{
|
|
5702
|
-
"id":
|
|
5747
|
+
"id": 385,
|
|
5703
5748
|
"name": "resourcesService",
|
|
5704
5749
|
"kind": 32768,
|
|
5705
5750
|
"kindString": "Parameter",
|
|
@@ -5710,7 +5755,7 @@
|
|
|
5710
5755
|
}
|
|
5711
5756
|
},
|
|
5712
5757
|
{
|
|
5713
|
-
"id":
|
|
5758
|
+
"id": 386,
|
|
5714
5759
|
"name": "ngControl",
|
|
5715
5760
|
"kind": 32768,
|
|
5716
5761
|
"kindString": "Parameter",
|
|
@@ -5747,7 +5792,7 @@
|
|
|
5747
5792
|
}
|
|
5748
5793
|
},
|
|
5749
5794
|
{
|
|
5750
|
-
"id":
|
|
5795
|
+
"id": 387,
|
|
5751
5796
|
"name": "inputBoxHostSvc",
|
|
5752
5797
|
"kind": 32768,
|
|
5753
5798
|
"kindString": "Parameter",
|
|
@@ -5772,7 +5817,7 @@
|
|
|
5772
5817
|
}
|
|
5773
5818
|
},
|
|
5774
5819
|
{
|
|
5775
|
-
"id":
|
|
5820
|
+
"id": 388,
|
|
5776
5821
|
"name": "themeSvc",
|
|
5777
5822
|
"kind": 32768,
|
|
5778
5823
|
"kindString": "Parameter",
|
|
@@ -5799,7 +5844,7 @@
|
|
|
5799
5844
|
],
|
|
5800
5845
|
"type": {
|
|
5801
5846
|
"type": "reference",
|
|
5802
|
-
"id":
|
|
5847
|
+
"id": 377,
|
|
5803
5848
|
"name": "SkyLookupComponent"
|
|
5804
5849
|
},
|
|
5805
5850
|
"overwrites": {
|
|
@@ -5814,7 +5859,7 @@
|
|
|
5814
5859
|
}
|
|
5815
5860
|
},
|
|
5816
5861
|
{
|
|
5817
|
-
"id":
|
|
5862
|
+
"id": 407,
|
|
5818
5863
|
"name": "addClick",
|
|
5819
5864
|
"kind": 1024,
|
|
5820
5865
|
"kindString": "Property",
|
|
@@ -5848,7 +5893,7 @@
|
|
|
5848
5893
|
"typeArguments": [
|
|
5849
5894
|
{
|
|
5850
5895
|
"type": "reference",
|
|
5851
|
-
"id":
|
|
5896
|
+
"id": 607,
|
|
5852
5897
|
"name": "SkyLookupAddClickEventArgs"
|
|
5853
5898
|
}
|
|
5854
5899
|
],
|
|
@@ -5859,7 +5904,7 @@
|
|
|
5859
5904
|
"defaultValue": "..."
|
|
5860
5905
|
},
|
|
5861
5906
|
{
|
|
5862
|
-
"id":
|
|
5907
|
+
"id": 389,
|
|
5863
5908
|
"name": "ariaLabel",
|
|
5864
5909
|
"kind": 1024,
|
|
5865
5910
|
"kindString": "Property",
|
|
@@ -5894,7 +5939,7 @@
|
|
|
5894
5939
|
}
|
|
5895
5940
|
},
|
|
5896
5941
|
{
|
|
5897
|
-
"id":
|
|
5942
|
+
"id": 390,
|
|
5898
5943
|
"name": "ariaLabelledBy",
|
|
5899
5944
|
"kind": 1024,
|
|
5900
5945
|
"kindString": "Property",
|
|
@@ -5929,7 +5974,7 @@
|
|
|
5929
5974
|
}
|
|
5930
5975
|
},
|
|
5931
5976
|
{
|
|
5932
|
-
"id":
|
|
5977
|
+
"id": 391,
|
|
5933
5978
|
"name": "autocompleteAttribute",
|
|
5934
5979
|
"kind": 1024,
|
|
5935
5980
|
"kindString": "Property",
|
|
@@ -5970,7 +6015,7 @@
|
|
|
5970
6015
|
}
|
|
5971
6016
|
},
|
|
5972
6017
|
{
|
|
5973
|
-
"id":
|
|
6018
|
+
"id": 416,
|
|
5974
6019
|
"name": "autocompleteController",
|
|
5975
6020
|
"kind": 1024,
|
|
5976
6021
|
"kindString": "Property",
|
|
@@ -5999,7 +6044,7 @@
|
|
|
5999
6044
|
"defaultValue": "..."
|
|
6000
6045
|
},
|
|
6001
6046
|
{
|
|
6002
|
-
"id":
|
|
6047
|
+
"id": 535,
|
|
6003
6048
|
"name": "debounceTime",
|
|
6004
6049
|
"kind": 1024,
|
|
6005
6050
|
"kindString": "Property",
|
|
@@ -6044,7 +6089,7 @@
|
|
|
6044
6089
|
}
|
|
6045
6090
|
},
|
|
6046
6091
|
{
|
|
6047
|
-
"id":
|
|
6092
|
+
"id": 396,
|
|
6048
6093
|
"name": "disabled",
|
|
6049
6094
|
"kind": 1024,
|
|
6050
6095
|
"kindString": "Property",
|
|
@@ -6080,7 +6125,7 @@
|
|
|
6080
6125
|
"defaultValue": "false"
|
|
6081
6126
|
},
|
|
6082
6127
|
{
|
|
6083
|
-
"id":
|
|
6128
|
+
"id": 397,
|
|
6084
6129
|
"name": "enableShowMore",
|
|
6085
6130
|
"kind": 1024,
|
|
6086
6131
|
"kindString": "Property",
|
|
@@ -6116,7 +6161,7 @@
|
|
|
6116
6161
|
"defaultValue": "false"
|
|
6117
6162
|
},
|
|
6118
6163
|
{
|
|
6119
|
-
"id":
|
|
6164
|
+
"id": 399,
|
|
6120
6165
|
"name": "idProperty",
|
|
6121
6166
|
"kind": 1024,
|
|
6122
6167
|
"kindString": "Property",
|
|
@@ -6151,7 +6196,7 @@
|
|
|
6151
6196
|
}
|
|
6152
6197
|
},
|
|
6153
6198
|
{
|
|
6154
|
-
"id":
|
|
6199
|
+
"id": 417,
|
|
6155
6200
|
"name": "isInputFocused",
|
|
6156
6201
|
"kind": 1024,
|
|
6157
6202
|
"kindString": "Property",
|
|
@@ -6172,7 +6217,7 @@
|
|
|
6172
6217
|
"defaultValue": "false"
|
|
6173
6218
|
},
|
|
6174
6219
|
{
|
|
6175
|
-
"id":
|
|
6220
|
+
"id": 398,
|
|
6176
6221
|
"name": "placeholderText",
|
|
6177
6222
|
"kind": 1024,
|
|
6178
6223
|
"kindString": "Property",
|
|
@@ -6207,7 +6252,7 @@
|
|
|
6207
6252
|
}
|
|
6208
6253
|
},
|
|
6209
6254
|
{
|
|
6210
|
-
"id":
|
|
6255
|
+
"id": 552,
|
|
6211
6256
|
"name": "searchAsync",
|
|
6212
6257
|
"kind": 1024,
|
|
6213
6258
|
"kindString": "Property",
|
|
@@ -6241,7 +6286,7 @@
|
|
|
6241
6286
|
"typeArguments": [
|
|
6242
6287
|
{
|
|
6243
6288
|
"type": "reference",
|
|
6244
|
-
"id":
|
|
6289
|
+
"id": 562,
|
|
6245
6290
|
"name": "SkyAutocompleteSearchAsyncArgs"
|
|
6246
6291
|
}
|
|
6247
6292
|
],
|
|
@@ -6256,7 +6301,7 @@
|
|
|
6256
6301
|
}
|
|
6257
6302
|
},
|
|
6258
6303
|
{
|
|
6259
|
-
"id":
|
|
6304
|
+
"id": 550,
|
|
6260
6305
|
"name": "searchFilters",
|
|
6261
6306
|
"kind": 1024,
|
|
6262
6307
|
"kindString": "Property",
|
|
@@ -6289,7 +6334,7 @@
|
|
|
6289
6334
|
"type": "array",
|
|
6290
6335
|
"elementType": {
|
|
6291
6336
|
"type": "reference",
|
|
6292
|
-
"id":
|
|
6337
|
+
"id": 580,
|
|
6293
6338
|
"name": "SkyAutocompleteSearchFunctionFilter"
|
|
6294
6339
|
}
|
|
6295
6340
|
},
|
|
@@ -6299,7 +6344,7 @@
|
|
|
6299
6344
|
}
|
|
6300
6345
|
},
|
|
6301
6346
|
{
|
|
6302
|
-
"id":
|
|
6347
|
+
"id": 548,
|
|
6303
6348
|
"name": "searchResultTemplate",
|
|
6304
6349
|
"kind": 1024,
|
|
6305
6350
|
"kindString": "Property",
|
|
@@ -6346,7 +6391,7 @@
|
|
|
6346
6391
|
}
|
|
6347
6392
|
},
|
|
6348
6393
|
{
|
|
6349
|
-
"id":
|
|
6394
|
+
"id": 551,
|
|
6350
6395
|
"name": "searchResultsLimit",
|
|
6351
6396
|
"kind": 1024,
|
|
6352
6397
|
"kindString": "Property",
|
|
@@ -6385,7 +6430,7 @@
|
|
|
6385
6430
|
}
|
|
6386
6431
|
},
|
|
6387
6432
|
{
|
|
6388
|
-
"id":
|
|
6433
|
+
"id": 549,
|
|
6389
6434
|
"name": "searchTextMinimumCharacters",
|
|
6390
6435
|
"kind": 1024,
|
|
6391
6436
|
"kindString": "Property",
|
|
@@ -6430,7 +6475,7 @@
|
|
|
6430
6475
|
}
|
|
6431
6476
|
},
|
|
6432
6477
|
{
|
|
6433
|
-
"id":
|
|
6478
|
+
"id": 400,
|
|
6434
6479
|
"name": "showAddButton",
|
|
6435
6480
|
"kind": 1024,
|
|
6436
6481
|
"kindString": "Property",
|
|
@@ -6466,7 +6511,7 @@
|
|
|
6466
6511
|
"defaultValue": "false"
|
|
6467
6512
|
},
|
|
6468
6513
|
{
|
|
6469
|
-
"id":
|
|
6514
|
+
"id": 401,
|
|
6470
6515
|
"name": "showMoreConfig",
|
|
6471
6516
|
"kind": 1024,
|
|
6472
6517
|
"kindString": "Property",
|
|
@@ -6497,13 +6542,13 @@
|
|
|
6497
6542
|
],
|
|
6498
6543
|
"type": {
|
|
6499
6544
|
"type": "reference",
|
|
6500
|
-
"id":
|
|
6545
|
+
"id": 615,
|
|
6501
6546
|
"name": "SkyLookupShowMoreConfig"
|
|
6502
6547
|
}
|
|
6503
6548
|
},
|
|
6504
6549
|
{
|
|
6505
|
-
"id":
|
|
6506
|
-
"name": "
|
|
6550
|
+
"id": 418,
|
|
6551
|
+
"name": "showMorePickerId",
|
|
6507
6552
|
"kind": 1024,
|
|
6508
6553
|
"kindString": "Property",
|
|
6509
6554
|
"flags": {
|
|
@@ -6516,6 +6561,26 @@
|
|
|
6516
6561
|
"character": 9
|
|
6517
6562
|
}
|
|
6518
6563
|
],
|
|
6564
|
+
"type": {
|
|
6565
|
+
"type": "intrinsic",
|
|
6566
|
+
"name": "string"
|
|
6567
|
+
}
|
|
6568
|
+
},
|
|
6569
|
+
{
|
|
6570
|
+
"id": 419,
|
|
6571
|
+
"name": "tokensController",
|
|
6572
|
+
"kind": 1024,
|
|
6573
|
+
"kindString": "Property",
|
|
6574
|
+
"flags": {
|
|
6575
|
+
"isPublic": true
|
|
6576
|
+
},
|
|
6577
|
+
"sources": [
|
|
6578
|
+
{
|
|
6579
|
+
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6580
|
+
"line": 225,
|
|
6581
|
+
"character": 9
|
|
6582
|
+
}
|
|
6583
|
+
],
|
|
6519
6584
|
"type": {
|
|
6520
6585
|
"type": "reference",
|
|
6521
6586
|
"typeArguments": [
|
|
@@ -6531,7 +6596,7 @@
|
|
|
6531
6596
|
"defaultValue": "..."
|
|
6532
6597
|
},
|
|
6533
6598
|
{
|
|
6534
|
-
"id":
|
|
6599
|
+
"id": 392,
|
|
6535
6600
|
"name": "data",
|
|
6536
6601
|
"kind": 262144,
|
|
6537
6602
|
"kindString": "Accessor",
|
|
@@ -6559,7 +6624,7 @@
|
|
|
6559
6624
|
],
|
|
6560
6625
|
"getSignature": [
|
|
6561
6626
|
{
|
|
6562
|
-
"id":
|
|
6627
|
+
"id": 393,
|
|
6563
6628
|
"name": "data",
|
|
6564
6629
|
"kind": 524288,
|
|
6565
6630
|
"kindString": "Get signature",
|
|
@@ -6584,7 +6649,7 @@
|
|
|
6584
6649
|
],
|
|
6585
6650
|
"setSignature": [
|
|
6586
6651
|
{
|
|
6587
|
-
"id":
|
|
6652
|
+
"id": 394,
|
|
6588
6653
|
"name": "data",
|
|
6589
6654
|
"kind": 1048576,
|
|
6590
6655
|
"kindString": "Set signature",
|
|
@@ -6600,7 +6665,7 @@
|
|
|
6600
6665
|
},
|
|
6601
6666
|
"parameters": [
|
|
6602
6667
|
{
|
|
6603
|
-
"id":
|
|
6668
|
+
"id": 395,
|
|
6604
6669
|
"name": "value",
|
|
6605
6670
|
"kind": 32768,
|
|
6606
6671
|
"kindString": "Parameter",
|
|
@@ -6622,7 +6687,7 @@
|
|
|
6622
6687
|
]
|
|
6623
6688
|
},
|
|
6624
6689
|
{
|
|
6625
|
-
"id":
|
|
6690
|
+
"id": 536,
|
|
6626
6691
|
"name": "descriptorProperty",
|
|
6627
6692
|
"kind": 262144,
|
|
6628
6693
|
"kindString": "Accessor",
|
|
@@ -6650,7 +6715,7 @@
|
|
|
6650
6715
|
],
|
|
6651
6716
|
"getSignature": [
|
|
6652
6717
|
{
|
|
6653
|
-
"id":
|
|
6718
|
+
"id": 537,
|
|
6654
6719
|
"name": "descriptorProperty",
|
|
6655
6720
|
"kind": 524288,
|
|
6656
6721
|
"kindString": "Get signature",
|
|
@@ -6676,7 +6741,7 @@
|
|
|
6676
6741
|
],
|
|
6677
6742
|
"setSignature": [
|
|
6678
6743
|
{
|
|
6679
|
-
"id":
|
|
6744
|
+
"id": 538,
|
|
6680
6745
|
"name": "descriptorProperty",
|
|
6681
6746
|
"kind": 1048576,
|
|
6682
6747
|
"kindString": "Set signature",
|
|
@@ -6692,7 +6757,7 @@
|
|
|
6692
6757
|
},
|
|
6693
6758
|
"parameters": [
|
|
6694
6759
|
{
|
|
6695
|
-
"id":
|
|
6760
|
+
"id": 539,
|
|
6696
6761
|
"name": "value",
|
|
6697
6762
|
"kind": 32768,
|
|
6698
6763
|
"kindString": "Parameter",
|
|
@@ -6719,7 +6784,7 @@
|
|
|
6719
6784
|
}
|
|
6720
6785
|
},
|
|
6721
6786
|
{
|
|
6722
|
-
"id":
|
|
6787
|
+
"id": 540,
|
|
6723
6788
|
"name": "propertiesToSearch",
|
|
6724
6789
|
"kind": 262144,
|
|
6725
6790
|
"kindString": "Accessor",
|
|
@@ -6747,7 +6812,7 @@
|
|
|
6747
6812
|
],
|
|
6748
6813
|
"getSignature": [
|
|
6749
6814
|
{
|
|
6750
|
-
"id":
|
|
6815
|
+
"id": 541,
|
|
6751
6816
|
"name": "propertiesToSearch",
|
|
6752
6817
|
"kind": 524288,
|
|
6753
6818
|
"kindString": "Get signature",
|
|
@@ -6776,7 +6841,7 @@
|
|
|
6776
6841
|
],
|
|
6777
6842
|
"setSignature": [
|
|
6778
6843
|
{
|
|
6779
|
-
"id":
|
|
6844
|
+
"id": 542,
|
|
6780
6845
|
"name": "propertiesToSearch",
|
|
6781
6846
|
"kind": 1048576,
|
|
6782
6847
|
"kindString": "Set signature",
|
|
@@ -6792,7 +6857,7 @@
|
|
|
6792
6857
|
},
|
|
6793
6858
|
"parameters": [
|
|
6794
6859
|
{
|
|
6795
|
-
"id":
|
|
6860
|
+
"id": 543,
|
|
6796
6861
|
"name": "value",
|
|
6797
6862
|
"kind": 32768,
|
|
6798
6863
|
"kindString": "Parameter",
|
|
@@ -6822,7 +6887,7 @@
|
|
|
6822
6887
|
}
|
|
6823
6888
|
},
|
|
6824
6889
|
{
|
|
6825
|
-
"id":
|
|
6890
|
+
"id": 544,
|
|
6826
6891
|
"name": "search",
|
|
6827
6892
|
"kind": 262144,
|
|
6828
6893
|
"kindString": "Accessor",
|
|
@@ -6850,7 +6915,7 @@
|
|
|
6850
6915
|
],
|
|
6851
6916
|
"getSignature": [
|
|
6852
6917
|
{
|
|
6853
|
-
"id":
|
|
6918
|
+
"id": 545,
|
|
6854
6919
|
"name": "search",
|
|
6855
6920
|
"kind": 524288,
|
|
6856
6921
|
"kindString": "Get signature",
|
|
@@ -6860,7 +6925,7 @@
|
|
|
6860
6925
|
},
|
|
6861
6926
|
"type": {
|
|
6862
6927
|
"type": "reference",
|
|
6863
|
-
"id":
|
|
6928
|
+
"id": 574,
|
|
6864
6929
|
"name": "SkyAutocompleteSearchFunction"
|
|
6865
6930
|
},
|
|
6866
6931
|
"inheritedFrom": {
|
|
@@ -6871,7 +6936,7 @@
|
|
|
6871
6936
|
],
|
|
6872
6937
|
"setSignature": [
|
|
6873
6938
|
{
|
|
6874
|
-
"id":
|
|
6939
|
+
"id": 546,
|
|
6875
6940
|
"name": "search",
|
|
6876
6941
|
"kind": 1048576,
|
|
6877
6942
|
"kindString": "Set signature",
|
|
@@ -6881,14 +6946,14 @@
|
|
|
6881
6946
|
},
|
|
6882
6947
|
"parameters": [
|
|
6883
6948
|
{
|
|
6884
|
-
"id":
|
|
6949
|
+
"id": 547,
|
|
6885
6950
|
"name": "value",
|
|
6886
6951
|
"kind": 32768,
|
|
6887
6952
|
"kindString": "Parameter",
|
|
6888
6953
|
"flags": {},
|
|
6889
6954
|
"type": {
|
|
6890
6955
|
"type": "reference",
|
|
6891
|
-
"id":
|
|
6956
|
+
"id": 574,
|
|
6892
6957
|
"name": "SkyAutocompleteSearchFunction"
|
|
6893
6958
|
}
|
|
6894
6959
|
}
|
|
@@ -6909,7 +6974,7 @@
|
|
|
6909
6974
|
}
|
|
6910
6975
|
},
|
|
6911
6976
|
{
|
|
6912
|
-
"id":
|
|
6977
|
+
"id": 402,
|
|
6913
6978
|
"name": "selectMode",
|
|
6914
6979
|
"kind": 262144,
|
|
6915
6980
|
"kindString": "Accessor",
|
|
@@ -6937,7 +7002,7 @@
|
|
|
6937
7002
|
],
|
|
6938
7003
|
"getSignature": [
|
|
6939
7004
|
{
|
|
6940
|
-
"id":
|
|
7005
|
+
"id": 403,
|
|
6941
7006
|
"name": "selectMode",
|
|
6942
7007
|
"kind": 524288,
|
|
6943
7008
|
"kindString": "Get signature",
|
|
@@ -6953,14 +7018,14 @@
|
|
|
6953
7018
|
},
|
|
6954
7019
|
"type": {
|
|
6955
7020
|
"type": "reference",
|
|
6956
|
-
"id":
|
|
7021
|
+
"id": 614,
|
|
6957
7022
|
"name": "SkyLookupSelectModeType"
|
|
6958
7023
|
}
|
|
6959
7024
|
}
|
|
6960
7025
|
],
|
|
6961
7026
|
"setSignature": [
|
|
6962
7027
|
{
|
|
6963
|
-
"id":
|
|
7028
|
+
"id": 404,
|
|
6964
7029
|
"name": "selectMode",
|
|
6965
7030
|
"kind": 1048576,
|
|
6966
7031
|
"kindString": "Set signature",
|
|
@@ -6976,14 +7041,14 @@
|
|
|
6976
7041
|
},
|
|
6977
7042
|
"parameters": [
|
|
6978
7043
|
{
|
|
6979
|
-
"id":
|
|
7044
|
+
"id": 405,
|
|
6980
7045
|
"name": "value",
|
|
6981
7046
|
"kind": 32768,
|
|
6982
7047
|
"kindString": "Parameter",
|
|
6983
7048
|
"flags": {},
|
|
6984
7049
|
"type": {
|
|
6985
7050
|
"type": "reference",
|
|
6986
|
-
"id":
|
|
7051
|
+
"id": 614,
|
|
6987
7052
|
"name": "SkyLookupSelectModeType"
|
|
6988
7053
|
}
|
|
6989
7054
|
}
|
|
@@ -6996,7 +7061,7 @@
|
|
|
6996
7061
|
]
|
|
6997
7062
|
},
|
|
6998
7063
|
{
|
|
6999
|
-
"id":
|
|
7064
|
+
"id": 408,
|
|
7000
7065
|
"name": "tokens",
|
|
7001
7066
|
"kind": 262144,
|
|
7002
7067
|
"kindString": "Accessor",
|
|
@@ -7012,7 +7077,7 @@
|
|
|
7012
7077
|
],
|
|
7013
7078
|
"getSignature": [
|
|
7014
7079
|
{
|
|
7015
|
-
"id":
|
|
7080
|
+
"id": 409,
|
|
7016
7081
|
"name": "tokens",
|
|
7017
7082
|
"kind": 524288,
|
|
7018
7083
|
"kindString": "Get signature",
|
|
@@ -7028,14 +7093,14 @@
|
|
|
7028
7093
|
],
|
|
7029
7094
|
"setSignature": [
|
|
7030
7095
|
{
|
|
7031
|
-
"id":
|
|
7096
|
+
"id": 410,
|
|
7032
7097
|
"name": "tokens",
|
|
7033
7098
|
"kind": 1048576,
|
|
7034
7099
|
"kindString": "Set signature",
|
|
7035
7100
|
"flags": {},
|
|
7036
7101
|
"parameters": [
|
|
7037
7102
|
{
|
|
7038
|
-
"id":
|
|
7103
|
+
"id": 411,
|
|
7039
7104
|
"name": "value",
|
|
7040
7105
|
"kind": 32768,
|
|
7041
7106
|
"kindString": "Parameter",
|
|
@@ -7057,7 +7122,7 @@
|
|
|
7057
7122
|
]
|
|
7058
7123
|
},
|
|
7059
7124
|
{
|
|
7060
|
-
"id":
|
|
7125
|
+
"id": 412,
|
|
7061
7126
|
"name": "value",
|
|
7062
7127
|
"kind": 262144,
|
|
7063
7128
|
"kindString": "Accessor",
|
|
@@ -7073,7 +7138,7 @@
|
|
|
7073
7138
|
],
|
|
7074
7139
|
"getSignature": [
|
|
7075
7140
|
{
|
|
7076
|
-
"id":
|
|
7141
|
+
"id": 413,
|
|
7077
7142
|
"name": "value",
|
|
7078
7143
|
"kind": 524288,
|
|
7079
7144
|
"kindString": "Get signature",
|
|
@@ -7089,14 +7154,14 @@
|
|
|
7089
7154
|
],
|
|
7090
7155
|
"setSignature": [
|
|
7091
7156
|
{
|
|
7092
|
-
"id":
|
|
7157
|
+
"id": 414,
|
|
7093
7158
|
"name": "value",
|
|
7094
7159
|
"kind": 1048576,
|
|
7095
7160
|
"kindString": "Set signature",
|
|
7096
7161
|
"flags": {},
|
|
7097
7162
|
"parameters": [
|
|
7098
7163
|
{
|
|
7099
|
-
"id":
|
|
7164
|
+
"id": 415,
|
|
7100
7165
|
"name": "newValue",
|
|
7101
7166
|
"kind": 32768,
|
|
7102
7167
|
"kindString": "Parameter",
|
|
@@ -7118,7 +7183,7 @@
|
|
|
7118
7183
|
]
|
|
7119
7184
|
},
|
|
7120
7185
|
{
|
|
7121
|
-
"id":
|
|
7186
|
+
"id": 451,
|
|
7122
7187
|
"name": "addButtonClicked",
|
|
7123
7188
|
"kind": 2048,
|
|
7124
7189
|
"kindString": "Method",
|
|
@@ -7128,13 +7193,13 @@
|
|
|
7128
7193
|
"sources": [
|
|
7129
7194
|
{
|
|
7130
7195
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7131
|
-
"line":
|
|
7196
|
+
"line": 356,
|
|
7132
7197
|
"character": 9
|
|
7133
7198
|
}
|
|
7134
7199
|
],
|
|
7135
7200
|
"signatures": [
|
|
7136
7201
|
{
|
|
7137
|
-
"id":
|
|
7202
|
+
"id": 452,
|
|
7138
7203
|
"name": "addButtonClicked",
|
|
7139
7204
|
"kind": 4096,
|
|
7140
7205
|
"kindString": "Call signature",
|
|
@@ -7147,7 +7212,7 @@
|
|
|
7147
7212
|
]
|
|
7148
7213
|
},
|
|
7149
7214
|
{
|
|
7150
|
-
"id":
|
|
7215
|
+
"id": 488,
|
|
7151
7216
|
"name": "clearSearchText",
|
|
7152
7217
|
"kind": 2048,
|
|
7153
7218
|
"kindString": "Method",
|
|
@@ -7157,13 +7222,13 @@
|
|
|
7157
7222
|
"sources": [
|
|
7158
7223
|
{
|
|
7159
7224
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7160
|
-
"line":
|
|
7225
|
+
"line": 462,
|
|
7161
7226
|
"character": 9
|
|
7162
7227
|
}
|
|
7163
7228
|
],
|
|
7164
7229
|
"signatures": [
|
|
7165
7230
|
{
|
|
7166
|
-
"id":
|
|
7231
|
+
"id": 489,
|
|
7167
7232
|
"name": "clearSearchText",
|
|
7168
7233
|
"kind": 4096,
|
|
7169
7234
|
"kindString": "Call signature",
|
|
@@ -7176,7 +7241,7 @@
|
|
|
7176
7241
|
]
|
|
7177
7242
|
},
|
|
7178
7243
|
{
|
|
7179
|
-
"id":
|
|
7244
|
+
"id": 490,
|
|
7180
7245
|
"name": "inputKeydown",
|
|
7181
7246
|
"kind": 2048,
|
|
7182
7247
|
"kindString": "Method",
|
|
@@ -7186,20 +7251,20 @@
|
|
|
7186
7251
|
"sources": [
|
|
7187
7252
|
{
|
|
7188
7253
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7189
|
-
"line":
|
|
7254
|
+
"line": 471,
|
|
7190
7255
|
"character": 9
|
|
7191
7256
|
}
|
|
7192
7257
|
],
|
|
7193
7258
|
"signatures": [
|
|
7194
7259
|
{
|
|
7195
|
-
"id":
|
|
7260
|
+
"id": 491,
|
|
7196
7261
|
"name": "inputKeydown",
|
|
7197
7262
|
"kind": 4096,
|
|
7198
7263
|
"kindString": "Call signature",
|
|
7199
7264
|
"flags": {},
|
|
7200
7265
|
"parameters": [
|
|
7201
7266
|
{
|
|
7202
|
-
"id":
|
|
7267
|
+
"id": 492,
|
|
7203
7268
|
"name": "event",
|
|
7204
7269
|
"kind": 32768,
|
|
7205
7270
|
"kindString": "Parameter",
|
|
@@ -7220,7 +7285,7 @@
|
|
|
7220
7285
|
]
|
|
7221
7286
|
},
|
|
7222
7287
|
{
|
|
7223
|
-
"id":
|
|
7288
|
+
"id": 493,
|
|
7224
7289
|
"name": "inputKeyup",
|
|
7225
7290
|
"kind": 2048,
|
|
7226
7291
|
"kindString": "Method",
|
|
@@ -7230,20 +7295,20 @@
|
|
|
7230
7295
|
"sources": [
|
|
7231
7296
|
{
|
|
7232
7297
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7233
|
-
"line":
|
|
7298
|
+
"line": 495,
|
|
7234
7299
|
"character": 9
|
|
7235
7300
|
}
|
|
7236
7301
|
],
|
|
7237
7302
|
"signatures": [
|
|
7238
7303
|
{
|
|
7239
|
-
"id":
|
|
7304
|
+
"id": 494,
|
|
7240
7305
|
"name": "inputKeyup",
|
|
7241
7306
|
"kind": 4096,
|
|
7242
7307
|
"kindString": "Call signature",
|
|
7243
7308
|
"flags": {},
|
|
7244
7309
|
"parameters": [
|
|
7245
7310
|
{
|
|
7246
|
-
"id":
|
|
7311
|
+
"id": 495,
|
|
7247
7312
|
"name": "event",
|
|
7248
7313
|
"kind": 32768,
|
|
7249
7314
|
"kindString": "Parameter",
|
|
@@ -7264,7 +7329,7 @@
|
|
|
7264
7329
|
]
|
|
7265
7330
|
},
|
|
7266
7331
|
{
|
|
7267
|
-
"id":
|
|
7332
|
+
"id": 447,
|
|
7268
7333
|
"name": "ngAfterViewInit",
|
|
7269
7334
|
"kind": 2048,
|
|
7270
7335
|
"kindString": "Method",
|
|
@@ -7274,13 +7339,13 @@
|
|
|
7274
7339
|
"sources": [
|
|
7275
7340
|
{
|
|
7276
7341
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7277
|
-
"line":
|
|
7342
|
+
"line": 343,
|
|
7278
7343
|
"character": 9
|
|
7279
7344
|
}
|
|
7280
7345
|
],
|
|
7281
7346
|
"signatures": [
|
|
7282
7347
|
{
|
|
7283
|
-
"id":
|
|
7348
|
+
"id": 448,
|
|
7284
7349
|
"name": "ngAfterViewInit",
|
|
7285
7350
|
"kind": 4096,
|
|
7286
7351
|
"kindString": "Call signature",
|
|
@@ -7301,7 +7366,7 @@
|
|
|
7301
7366
|
}
|
|
7302
7367
|
},
|
|
7303
7368
|
{
|
|
7304
|
-
"id":
|
|
7369
|
+
"id": 449,
|
|
7305
7370
|
"name": "ngOnDestroy",
|
|
7306
7371
|
"kind": 2048,
|
|
7307
7372
|
"kindString": "Method",
|
|
@@ -7311,13 +7376,13 @@
|
|
|
7311
7376
|
"sources": [
|
|
7312
7377
|
{
|
|
7313
7378
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7314
|
-
"line":
|
|
7379
|
+
"line": 349,
|
|
7315
7380
|
"character": 9
|
|
7316
7381
|
}
|
|
7317
7382
|
],
|
|
7318
7383
|
"signatures": [
|
|
7319
7384
|
{
|
|
7320
|
-
"id":
|
|
7385
|
+
"id": 450,
|
|
7321
7386
|
"name": "ngOnDestroy",
|
|
7322
7387
|
"kind": 4096,
|
|
7323
7388
|
"kindString": "Call signature",
|
|
@@ -7338,7 +7403,7 @@
|
|
|
7338
7403
|
}
|
|
7339
7404
|
},
|
|
7340
7405
|
{
|
|
7341
|
-
"id":
|
|
7406
|
+
"id": 445,
|
|
7342
7407
|
"name": "ngOnInit",
|
|
7343
7408
|
"kind": 2048,
|
|
7344
7409
|
"kindString": "Method",
|
|
@@ -7348,13 +7413,13 @@
|
|
|
7348
7413
|
"sources": [
|
|
7349
7414
|
{
|
|
7350
7415
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7351
|
-
"line":
|
|
7416
|
+
"line": 318,
|
|
7352
7417
|
"character": 9
|
|
7353
7418
|
}
|
|
7354
7419
|
],
|
|
7355
7420
|
"signatures": [
|
|
7356
7421
|
{
|
|
7357
|
-
"id":
|
|
7422
|
+
"id": 446,
|
|
7358
7423
|
"name": "ngOnInit",
|
|
7359
7424
|
"kind": 4096,
|
|
7360
7425
|
"kindString": "Call signature",
|
|
@@ -7375,7 +7440,7 @@
|
|
|
7375
7440
|
}
|
|
7376
7441
|
},
|
|
7377
7442
|
{
|
|
7378
|
-
"id":
|
|
7443
|
+
"id": 456,
|
|
7379
7444
|
"name": "onAutocompleteBlur",
|
|
7380
7445
|
"kind": 2048,
|
|
7381
7446
|
"kindString": "Method",
|
|
@@ -7385,13 +7450,13 @@
|
|
|
7385
7450
|
"sources": [
|
|
7386
7451
|
{
|
|
7387
7452
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7388
|
-
"line":
|
|
7453
|
+
"line": 374,
|
|
7389
7454
|
"character": 9
|
|
7390
7455
|
}
|
|
7391
7456
|
],
|
|
7392
7457
|
"signatures": [
|
|
7393
7458
|
{
|
|
7394
|
-
"id":
|
|
7459
|
+
"id": 457,
|
|
7395
7460
|
"name": "onAutocompleteBlur",
|
|
7396
7461
|
"kind": 4096,
|
|
7397
7462
|
"kindString": "Call signature",
|
|
@@ -7404,7 +7469,7 @@
|
|
|
7404
7469
|
]
|
|
7405
7470
|
},
|
|
7406
7471
|
{
|
|
7407
|
-
"id":
|
|
7472
|
+
"id": 453,
|
|
7408
7473
|
"name": "onAutocompleteSelectionChange",
|
|
7409
7474
|
"kind": 2048,
|
|
7410
7475
|
"kindString": "Method",
|
|
@@ -7414,27 +7479,27 @@
|
|
|
7414
7479
|
"sources": [
|
|
7415
7480
|
{
|
|
7416
7481
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7417
|
-
"line":
|
|
7482
|
+
"line": 363,
|
|
7418
7483
|
"character": 9
|
|
7419
7484
|
}
|
|
7420
7485
|
],
|
|
7421
7486
|
"signatures": [
|
|
7422
7487
|
{
|
|
7423
|
-
"id":
|
|
7488
|
+
"id": 454,
|
|
7424
7489
|
"name": "onAutocompleteSelectionChange",
|
|
7425
7490
|
"kind": 4096,
|
|
7426
7491
|
"kindString": "Call signature",
|
|
7427
7492
|
"flags": {},
|
|
7428
7493
|
"parameters": [
|
|
7429
7494
|
{
|
|
7430
|
-
"id":
|
|
7495
|
+
"id": 455,
|
|
7431
7496
|
"name": "change",
|
|
7432
7497
|
"kind": 32768,
|
|
7433
7498
|
"kindString": "Parameter",
|
|
7434
7499
|
"flags": {},
|
|
7435
7500
|
"type": {
|
|
7436
7501
|
"type": "reference",
|
|
7437
|
-
"id":
|
|
7502
|
+
"id": 587,
|
|
7438
7503
|
"name": "SkyAutocompleteSelectionChange"
|
|
7439
7504
|
}
|
|
7440
7505
|
}
|
|
@@ -7447,7 +7512,7 @@
|
|
|
7447
7512
|
]
|
|
7448
7513
|
},
|
|
7449
7514
|
{
|
|
7450
|
-
"id":
|
|
7515
|
+
"id": 469,
|
|
7451
7516
|
"name": "onChange",
|
|
7452
7517
|
"kind": 2048,
|
|
7453
7518
|
"kindString": "Method",
|
|
@@ -7457,20 +7522,20 @@
|
|
|
7457
7522
|
"sources": [
|
|
7458
7523
|
{
|
|
7459
7524
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7460
|
-
"line":
|
|
7525
|
+
"line": 438,
|
|
7461
7526
|
"character": 9
|
|
7462
7527
|
}
|
|
7463
7528
|
],
|
|
7464
7529
|
"signatures": [
|
|
7465
7530
|
{
|
|
7466
|
-
"id":
|
|
7531
|
+
"id": 470,
|
|
7467
7532
|
"name": "onChange",
|
|
7468
7533
|
"kind": 4096,
|
|
7469
7534
|
"kindString": "Call signature",
|
|
7470
7535
|
"flags": {},
|
|
7471
7536
|
"parameters": [
|
|
7472
7537
|
{
|
|
7473
|
-
"id":
|
|
7538
|
+
"id": 471,
|
|
7474
7539
|
"name": "value",
|
|
7475
7540
|
"kind": 32768,
|
|
7476
7541
|
"kindString": "Parameter",
|
|
@@ -7492,7 +7557,7 @@
|
|
|
7492
7557
|
]
|
|
7493
7558
|
},
|
|
7494
7559
|
{
|
|
7495
|
-
"id":
|
|
7560
|
+
"id": 507,
|
|
7496
7561
|
"name": "onSearchAsync",
|
|
7497
7562
|
"kind": 2048,
|
|
7498
7563
|
"kindString": "Method",
|
|
@@ -7502,27 +7567,27 @@
|
|
|
7502
7567
|
"sources": [
|
|
7503
7568
|
{
|
|
7504
7569
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7505
|
-
"line":
|
|
7570
|
+
"line": 661,
|
|
7506
7571
|
"character": 9
|
|
7507
7572
|
}
|
|
7508
7573
|
],
|
|
7509
7574
|
"signatures": [
|
|
7510
7575
|
{
|
|
7511
|
-
"id":
|
|
7576
|
+
"id": 508,
|
|
7512
7577
|
"name": "onSearchAsync",
|
|
7513
7578
|
"kind": 4096,
|
|
7514
7579
|
"kindString": "Call signature",
|
|
7515
7580
|
"flags": {},
|
|
7516
7581
|
"parameters": [
|
|
7517
7582
|
{
|
|
7518
|
-
"id":
|
|
7583
|
+
"id": 509,
|
|
7519
7584
|
"name": "args",
|
|
7520
7585
|
"kind": 32768,
|
|
7521
7586
|
"kindString": "Parameter",
|
|
7522
7587
|
"flags": {},
|
|
7523
7588
|
"type": {
|
|
7524
7589
|
"type": "reference",
|
|
7525
|
-
"id":
|
|
7590
|
+
"id": 562,
|
|
7526
7591
|
"name": "SkyAutocompleteSearchAsyncArgs"
|
|
7527
7592
|
}
|
|
7528
7593
|
}
|
|
@@ -7535,7 +7600,7 @@
|
|
|
7535
7600
|
]
|
|
7536
7601
|
},
|
|
7537
7602
|
{
|
|
7538
|
-
"id":
|
|
7603
|
+
"id": 496,
|
|
7539
7604
|
"name": "onSearchButtonClick",
|
|
7540
7605
|
"kind": 2048,
|
|
7541
7606
|
"kindString": "Method",
|
|
@@ -7545,13 +7610,13 @@
|
|
|
7545
7610
|
"sources": [
|
|
7546
7611
|
{
|
|
7547
7612
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7548
|
-
"line":
|
|
7613
|
+
"line": 521,
|
|
7549
7614
|
"character": 9
|
|
7550
7615
|
}
|
|
7551
7616
|
],
|
|
7552
7617
|
"signatures": [
|
|
7553
7618
|
{
|
|
7554
|
-
"id":
|
|
7619
|
+
"id": 497,
|
|
7555
7620
|
"name": "onSearchButtonClick",
|
|
7556
7621
|
"kind": 4096,
|
|
7557
7622
|
"kindString": "Call signature",
|
|
@@ -7564,7 +7629,7 @@
|
|
|
7564
7629
|
]
|
|
7565
7630
|
},
|
|
7566
7631
|
{
|
|
7567
|
-
"id":
|
|
7632
|
+
"id": 498,
|
|
7568
7633
|
"name": "onShowMoreClick",
|
|
7569
7634
|
"kind": 2048,
|
|
7570
7635
|
"kindString": "Method",
|
|
@@ -7574,20 +7639,20 @@
|
|
|
7574
7639
|
"sources": [
|
|
7575
7640
|
{
|
|
7576
7641
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7577
|
-
"line":
|
|
7642
|
+
"line": 541,
|
|
7578
7643
|
"character": 9
|
|
7579
7644
|
}
|
|
7580
7645
|
],
|
|
7581
7646
|
"signatures": [
|
|
7582
7647
|
{
|
|
7583
|
-
"id":
|
|
7648
|
+
"id": 499,
|
|
7584
7649
|
"name": "onShowMoreClick",
|
|
7585
7650
|
"kind": 4096,
|
|
7586
7651
|
"kindString": "Call signature",
|
|
7587
7652
|
"flags": {},
|
|
7588
7653
|
"parameters": [
|
|
7589
7654
|
{
|
|
7590
|
-
"id":
|
|
7655
|
+
"id": 500,
|
|
7591
7656
|
"name": "event",
|
|
7592
7657
|
"kind": 32768,
|
|
7593
7658
|
"kindString": "Parameter",
|
|
@@ -7606,7 +7671,7 @@
|
|
|
7606
7671
|
]
|
|
7607
7672
|
},
|
|
7608
7673
|
{
|
|
7609
|
-
"id":
|
|
7674
|
+
"id": 458,
|
|
7610
7675
|
"name": "onTokensChange",
|
|
7611
7676
|
"kind": 2048,
|
|
7612
7677
|
"kindString": "Method",
|
|
@@ -7616,20 +7681,20 @@
|
|
|
7616
7681
|
"sources": [
|
|
7617
7682
|
{
|
|
7618
7683
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7619
|
-
"line":
|
|
7684
|
+
"line": 378,
|
|
7620
7685
|
"character": 9
|
|
7621
7686
|
}
|
|
7622
7687
|
],
|
|
7623
7688
|
"signatures": [
|
|
7624
7689
|
{
|
|
7625
|
-
"id":
|
|
7690
|
+
"id": 459,
|
|
7626
7691
|
"name": "onTokensChange",
|
|
7627
7692
|
"kind": 4096,
|
|
7628
7693
|
"kindString": "Call signature",
|
|
7629
7694
|
"flags": {},
|
|
7630
7695
|
"parameters": [
|
|
7631
7696
|
{
|
|
7632
|
-
"id":
|
|
7697
|
+
"id": 460,
|
|
7633
7698
|
"name": "change",
|
|
7634
7699
|
"kind": 32768,
|
|
7635
7700
|
"kindString": "Parameter",
|
|
@@ -7651,7 +7716,7 @@
|
|
|
7651
7716
|
]
|
|
7652
7717
|
},
|
|
7653
7718
|
{
|
|
7654
|
-
"id":
|
|
7719
|
+
"id": 461,
|
|
7655
7720
|
"name": "onTokensFocusIndexOverRange",
|
|
7656
7721
|
"kind": 2048,
|
|
7657
7722
|
"kindString": "Method",
|
|
@@ -7661,13 +7726,13 @@
|
|
|
7661
7726
|
"sources": [
|
|
7662
7727
|
{
|
|
7663
7728
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7664
|
-
"line":
|
|
7729
|
+
"line": 403,
|
|
7665
7730
|
"character": 9
|
|
7666
7731
|
}
|
|
7667
7732
|
],
|
|
7668
7733
|
"signatures": [
|
|
7669
7734
|
{
|
|
7670
|
-
"id":
|
|
7735
|
+
"id": 462,
|
|
7671
7736
|
"name": "onTokensFocusIndexOverRange",
|
|
7672
7737
|
"kind": 4096,
|
|
7673
7738
|
"kindString": "Call signature",
|
|
@@ -7680,7 +7745,7 @@
|
|
|
7680
7745
|
]
|
|
7681
7746
|
},
|
|
7682
7747
|
{
|
|
7683
|
-
"id":
|
|
7748
|
+
"id": 463,
|
|
7684
7749
|
"name": "onTokensKeyUp",
|
|
7685
7750
|
"kind": 2048,
|
|
7686
7751
|
"kindString": "Method",
|
|
@@ -7690,20 +7755,20 @@
|
|
|
7690
7755
|
"sources": [
|
|
7691
7756
|
{
|
|
7692
7757
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7693
|
-
"line":
|
|
7758
|
+
"line": 409,
|
|
7694
7759
|
"character": 9
|
|
7695
7760
|
}
|
|
7696
7761
|
],
|
|
7697
7762
|
"signatures": [
|
|
7698
7763
|
{
|
|
7699
|
-
"id":
|
|
7764
|
+
"id": 464,
|
|
7700
7765
|
"name": "onTokensKeyUp",
|
|
7701
7766
|
"kind": 4096,
|
|
7702
7767
|
"kindString": "Call signature",
|
|
7703
7768
|
"flags": {},
|
|
7704
7769
|
"parameters": [
|
|
7705
7770
|
{
|
|
7706
|
-
"id":
|
|
7771
|
+
"id": 465,
|
|
7707
7772
|
"name": "event",
|
|
7708
7773
|
"kind": 32768,
|
|
7709
7774
|
"kindString": "Parameter",
|
|
@@ -7724,7 +7789,7 @@
|
|
|
7724
7789
|
]
|
|
7725
7790
|
},
|
|
7726
7791
|
{
|
|
7727
|
-
"id":
|
|
7792
|
+
"id": 472,
|
|
7728
7793
|
"name": "onTouched",
|
|
7729
7794
|
"kind": 2048,
|
|
7730
7795
|
"kindString": "Method",
|
|
@@ -7734,13 +7799,13 @@
|
|
|
7734
7799
|
"sources": [
|
|
7735
7800
|
{
|
|
7736
7801
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7737
|
-
"line":
|
|
7802
|
+
"line": 440,
|
|
7738
7803
|
"character": 9
|
|
7739
7804
|
}
|
|
7740
7805
|
],
|
|
7741
7806
|
"signatures": [
|
|
7742
7807
|
{
|
|
7743
|
-
"id":
|
|
7808
|
+
"id": 473,
|
|
7744
7809
|
"name": "onTouched",
|
|
7745
7810
|
"kind": 4096,
|
|
7746
7811
|
"kindString": "Call signature",
|
|
@@ -7753,7 +7818,7 @@
|
|
|
7753
7818
|
]
|
|
7754
7819
|
},
|
|
7755
7820
|
{
|
|
7756
|
-
"id":
|
|
7821
|
+
"id": 504,
|
|
7757
7822
|
"name": "openPicker",
|
|
7758
7823
|
"kind": 2048,
|
|
7759
7824
|
"kindString": "Method",
|
|
@@ -7763,20 +7828,20 @@
|
|
|
7763
7828
|
"sources": [
|
|
7764
7829
|
{
|
|
7765
7830
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7766
|
-
"line":
|
|
7831
|
+
"line": 607,
|
|
7767
7832
|
"character": 9
|
|
7768
7833
|
}
|
|
7769
7834
|
],
|
|
7770
7835
|
"signatures": [
|
|
7771
7836
|
{
|
|
7772
|
-
"id":
|
|
7837
|
+
"id": 505,
|
|
7773
7838
|
"name": "openPicker",
|
|
7774
7839
|
"kind": 4096,
|
|
7775
7840
|
"kindString": "Call signature",
|
|
7776
7841
|
"flags": {},
|
|
7777
7842
|
"parameters": [
|
|
7778
7843
|
{
|
|
7779
|
-
"id":
|
|
7844
|
+
"id": 506,
|
|
7780
7845
|
"name": "initialSearch",
|
|
7781
7846
|
"kind": 32768,
|
|
7782
7847
|
"kindString": "Parameter",
|
|
@@ -7795,7 +7860,7 @@
|
|
|
7795
7860
|
]
|
|
7796
7861
|
},
|
|
7797
7862
|
{
|
|
7798
|
-
"id":
|
|
7863
|
+
"id": 474,
|
|
7799
7864
|
"name": "registerOnChange",
|
|
7800
7865
|
"kind": 2048,
|
|
7801
7866
|
"kindString": "Method",
|
|
@@ -7805,20 +7870,20 @@
|
|
|
7805
7870
|
"sources": [
|
|
7806
7871
|
{
|
|
7807
7872
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7808
|
-
"line":
|
|
7873
|
+
"line": 442,
|
|
7809
7874
|
"character": 9
|
|
7810
7875
|
}
|
|
7811
7876
|
],
|
|
7812
7877
|
"signatures": [
|
|
7813
7878
|
{
|
|
7814
|
-
"id":
|
|
7879
|
+
"id": 475,
|
|
7815
7880
|
"name": "registerOnChange",
|
|
7816
7881
|
"kind": 4096,
|
|
7817
7882
|
"kindString": "Call signature",
|
|
7818
7883
|
"flags": {},
|
|
7819
7884
|
"parameters": [
|
|
7820
7885
|
{
|
|
7821
|
-
"id":
|
|
7886
|
+
"id": 476,
|
|
7822
7887
|
"name": "fn",
|
|
7823
7888
|
"kind": 32768,
|
|
7824
7889
|
"kindString": "Parameter",
|
|
@@ -7826,21 +7891,21 @@
|
|
|
7826
7891
|
"type": {
|
|
7827
7892
|
"type": "reflection",
|
|
7828
7893
|
"declaration": {
|
|
7829
|
-
"id":
|
|
7894
|
+
"id": 477,
|
|
7830
7895
|
"name": "__type",
|
|
7831
7896
|
"kind": 65536,
|
|
7832
7897
|
"kindString": "Type literal",
|
|
7833
7898
|
"flags": {},
|
|
7834
7899
|
"signatures": [
|
|
7835
7900
|
{
|
|
7836
|
-
"id":
|
|
7901
|
+
"id": 478,
|
|
7837
7902
|
"name": "__type",
|
|
7838
7903
|
"kind": 4096,
|
|
7839
7904
|
"kindString": "Call signature",
|
|
7840
7905
|
"flags": {},
|
|
7841
7906
|
"parameters": [
|
|
7842
7907
|
{
|
|
7843
|
-
"id":
|
|
7908
|
+
"id": 479,
|
|
7844
7909
|
"name": "value",
|
|
7845
7910
|
"kind": 32768,
|
|
7846
7911
|
"kindString": "Parameter",
|
|
@@ -7877,7 +7942,7 @@
|
|
|
7877
7942
|
}
|
|
7878
7943
|
},
|
|
7879
7944
|
{
|
|
7880
|
-
"id":
|
|
7945
|
+
"id": 480,
|
|
7881
7946
|
"name": "registerOnTouched",
|
|
7882
7947
|
"kind": 2048,
|
|
7883
7948
|
"kindString": "Method",
|
|
@@ -7887,20 +7952,20 @@
|
|
|
7887
7952
|
"sources": [
|
|
7888
7953
|
{
|
|
7889
7954
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7890
|
-
"line":
|
|
7955
|
+
"line": 446,
|
|
7891
7956
|
"character": 9
|
|
7892
7957
|
}
|
|
7893
7958
|
],
|
|
7894
7959
|
"signatures": [
|
|
7895
7960
|
{
|
|
7896
|
-
"id":
|
|
7961
|
+
"id": 481,
|
|
7897
7962
|
"name": "registerOnTouched",
|
|
7898
7963
|
"kind": 4096,
|
|
7899
7964
|
"kindString": "Call signature",
|
|
7900
7965
|
"flags": {},
|
|
7901
7966
|
"parameters": [
|
|
7902
7967
|
{
|
|
7903
|
-
"id":
|
|
7968
|
+
"id": 482,
|
|
7904
7969
|
"name": "fn",
|
|
7905
7970
|
"kind": 32768,
|
|
7906
7971
|
"kindString": "Parameter",
|
|
@@ -7908,14 +7973,14 @@
|
|
|
7908
7973
|
"type": {
|
|
7909
7974
|
"type": "reflection",
|
|
7910
7975
|
"declaration": {
|
|
7911
|
-
"id":
|
|
7976
|
+
"id": 483,
|
|
7912
7977
|
"name": "__type",
|
|
7913
7978
|
"kind": 65536,
|
|
7914
7979
|
"kindString": "Type literal",
|
|
7915
7980
|
"flags": {},
|
|
7916
7981
|
"signatures": [
|
|
7917
7982
|
{
|
|
7918
|
-
"id":
|
|
7983
|
+
"id": 484,
|
|
7919
7984
|
"name": "__type",
|
|
7920
7985
|
"kind": 4096,
|
|
7921
7986
|
"kindString": "Call signature",
|
|
@@ -7946,7 +8011,7 @@
|
|
|
7946
8011
|
}
|
|
7947
8012
|
},
|
|
7948
8013
|
{
|
|
7949
|
-
"id":
|
|
8014
|
+
"id": 485,
|
|
7950
8015
|
"name": "setDisabledState",
|
|
7951
8016
|
"kind": 2048,
|
|
7952
8017
|
"kindString": "Method",
|
|
@@ -7956,20 +8021,20 @@
|
|
|
7956
8021
|
"sources": [
|
|
7957
8022
|
{
|
|
7958
8023
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7959
|
-
"line":
|
|
8024
|
+
"line": 451,
|
|
7960
8025
|
"character": 9
|
|
7961
8026
|
}
|
|
7962
8027
|
],
|
|
7963
8028
|
"signatures": [
|
|
7964
8029
|
{
|
|
7965
|
-
"id":
|
|
8030
|
+
"id": 486,
|
|
7966
8031
|
"name": "setDisabledState",
|
|
7967
8032
|
"kind": 4096,
|
|
7968
8033
|
"kindString": "Call signature",
|
|
7969
8034
|
"flags": {},
|
|
7970
8035
|
"parameters": [
|
|
7971
8036
|
{
|
|
7972
|
-
"id":
|
|
8037
|
+
"id": 487,
|
|
7973
8038
|
"name": "disabled",
|
|
7974
8039
|
"kind": 32768,
|
|
7975
8040
|
"kindString": "Parameter",
|
|
@@ -7996,7 +8061,7 @@
|
|
|
7996
8061
|
}
|
|
7997
8062
|
},
|
|
7998
8063
|
{
|
|
7999
|
-
"id":
|
|
8064
|
+
"id": 466,
|
|
8000
8065
|
"name": "writeValue",
|
|
8001
8066
|
"kind": 2048,
|
|
8002
8067
|
"kindString": "Method",
|
|
@@ -8006,20 +8071,20 @@
|
|
|
8006
8071
|
"sources": [
|
|
8007
8072
|
{
|
|
8008
8073
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
8009
|
-
"line":
|
|
8074
|
+
"line": 431,
|
|
8010
8075
|
"character": 9
|
|
8011
8076
|
}
|
|
8012
8077
|
],
|
|
8013
8078
|
"signatures": [
|
|
8014
8079
|
{
|
|
8015
|
-
"id":
|
|
8080
|
+
"id": 467,
|
|
8016
8081
|
"name": "writeValue",
|
|
8017
8082
|
"kind": 4096,
|
|
8018
8083
|
"kindString": "Call signature",
|
|
8019
8084
|
"flags": {},
|
|
8020
8085
|
"parameters": [
|
|
8021
8086
|
{
|
|
8022
|
-
"id":
|
|
8087
|
+
"id": 468,
|
|
8023
8088
|
"name": "value",
|
|
8024
8089
|
"kind": 32768,
|
|
8025
8090
|
"kindString": "Parameter",
|
|
@@ -8054,75 +8119,76 @@
|
|
|
8054
8119
|
"title": "Constructors",
|
|
8055
8120
|
"kind": 512,
|
|
8056
8121
|
"children": [
|
|
8057
|
-
|
|
8122
|
+
378
|
|
8058
8123
|
]
|
|
8059
8124
|
},
|
|
8060
8125
|
{
|
|
8061
8126
|
"title": "Properties",
|
|
8062
8127
|
"kind": 1024,
|
|
8063
8128
|
"children": [
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
|
|
8067
|
-
386,
|
|
8068
|
-
411,
|
|
8069
|
-
529,
|
|
8129
|
+
407,
|
|
8130
|
+
389,
|
|
8131
|
+
390,
|
|
8070
8132
|
391,
|
|
8071
|
-
|
|
8072
|
-
|
|
8073
|
-
437,
|
|
8074
|
-
412,
|
|
8075
|
-
393,
|
|
8076
|
-
546,
|
|
8077
|
-
544,
|
|
8078
|
-
542,
|
|
8079
|
-
545,
|
|
8080
|
-
543,
|
|
8081
|
-
395,
|
|
8133
|
+
416,
|
|
8134
|
+
535,
|
|
8082
8135
|
396,
|
|
8083
|
-
|
|
8084
|
-
|
|
8136
|
+
397,
|
|
8137
|
+
399,
|
|
8138
|
+
443,
|
|
8139
|
+
417,
|
|
8140
|
+
398,
|
|
8141
|
+
552,
|
|
8142
|
+
550,
|
|
8143
|
+
548,
|
|
8144
|
+
551,
|
|
8145
|
+
549,
|
|
8146
|
+
400,
|
|
8147
|
+
401,
|
|
8148
|
+
418,
|
|
8149
|
+
444,
|
|
8150
|
+
419
|
|
8085
8151
|
]
|
|
8086
8152
|
},
|
|
8087
8153
|
{
|
|
8088
8154
|
"title": "Accessors",
|
|
8089
8155
|
"kind": 262144,
|
|
8090
8156
|
"children": [
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
8094
|
-
|
|
8095
|
-
|
|
8096
|
-
|
|
8097
|
-
|
|
8157
|
+
392,
|
|
8158
|
+
536,
|
|
8159
|
+
540,
|
|
8160
|
+
544,
|
|
8161
|
+
402,
|
|
8162
|
+
408,
|
|
8163
|
+
412
|
|
8098
8164
|
]
|
|
8099
8165
|
},
|
|
8100
8166
|
{
|
|
8101
8167
|
"title": "Methods",
|
|
8102
8168
|
"kind": 2048,
|
|
8103
8169
|
"children": [
|
|
8104
|
-
|
|
8105
|
-
|
|
8106
|
-
484,
|
|
8107
|
-
487,
|
|
8108
|
-
441,
|
|
8109
|
-
443,
|
|
8110
|
-
439,
|
|
8111
|
-
450,
|
|
8112
|
-
447,
|
|
8113
|
-
463,
|
|
8114
|
-
501,
|
|
8170
|
+
451,
|
|
8171
|
+
488,
|
|
8115
8172
|
490,
|
|
8116
|
-
|
|
8117
|
-
|
|
8118
|
-
|
|
8119
|
-
|
|
8120
|
-
|
|
8173
|
+
493,
|
|
8174
|
+
447,
|
|
8175
|
+
449,
|
|
8176
|
+
445,
|
|
8177
|
+
456,
|
|
8178
|
+
453,
|
|
8179
|
+
469,
|
|
8180
|
+
507,
|
|
8181
|
+
496,
|
|
8121
8182
|
498,
|
|
8122
|
-
|
|
8183
|
+
458,
|
|
8184
|
+
461,
|
|
8185
|
+
463,
|
|
8186
|
+
472,
|
|
8187
|
+
504,
|
|
8123
8188
|
474,
|
|
8124
|
-
|
|
8125
|
-
|
|
8189
|
+
480,
|
|
8190
|
+
485,
|
|
8191
|
+
466
|
|
8126
8192
|
]
|
|
8127
8193
|
}
|
|
8128
8194
|
],
|
|
@@ -8167,7 +8233,7 @@
|
|
|
8167
8233
|
]
|
|
8168
8234
|
},
|
|
8169
8235
|
{
|
|
8170
|
-
"id":
|
|
8236
|
+
"id": 562,
|
|
8171
8237
|
"name": "SkyAutocompleteSearchAsyncArgs",
|
|
8172
8238
|
"kind": 256,
|
|
8173
8239
|
"kindString": "Interface",
|
|
@@ -8177,7 +8243,7 @@
|
|
|
8177
8243
|
},
|
|
8178
8244
|
"children": [
|
|
8179
8245
|
{
|
|
8180
|
-
"id":
|
|
8246
|
+
"id": 566,
|
|
8181
8247
|
"name": "continuationData",
|
|
8182
8248
|
"kind": 1024,
|
|
8183
8249
|
"kindString": "Property",
|
|
@@ -8200,7 +8266,7 @@
|
|
|
8200
8266
|
}
|
|
8201
8267
|
},
|
|
8202
8268
|
{
|
|
8203
|
-
"id":
|
|
8269
|
+
"id": 564,
|
|
8204
8270
|
"name": "displayType",
|
|
8205
8271
|
"kind": 1024,
|
|
8206
8272
|
"kindString": "Property",
|
|
@@ -8217,12 +8283,12 @@
|
|
|
8217
8283
|
],
|
|
8218
8284
|
"type": {
|
|
8219
8285
|
"type": "reference",
|
|
8220
|
-
"id":
|
|
8286
|
+
"id": 573,
|
|
8221
8287
|
"name": "AutocompleteSearchAsyncResultDisplayType"
|
|
8222
8288
|
}
|
|
8223
8289
|
},
|
|
8224
8290
|
{
|
|
8225
|
-
"id":
|
|
8291
|
+
"id": 565,
|
|
8226
8292
|
"name": "offset",
|
|
8227
8293
|
"kind": 1024,
|
|
8228
8294
|
"kindString": "Property",
|
|
@@ -8243,7 +8309,7 @@
|
|
|
8243
8309
|
}
|
|
8244
8310
|
},
|
|
8245
8311
|
{
|
|
8246
|
-
"id":
|
|
8312
|
+
"id": 567,
|
|
8247
8313
|
"name": "result",
|
|
8248
8314
|
"kind": 1024,
|
|
8249
8315
|
"kindString": "Property",
|
|
@@ -8265,7 +8331,7 @@
|
|
|
8265
8331
|
"typeArguments": [
|
|
8266
8332
|
{
|
|
8267
8333
|
"type": "reference",
|
|
8268
|
-
"id":
|
|
8334
|
+
"id": 568,
|
|
8269
8335
|
"name": "SkyAutocompleteSearchAsyncResult"
|
|
8270
8336
|
}
|
|
8271
8337
|
],
|
|
@@ -8275,7 +8341,7 @@
|
|
|
8275
8341
|
}
|
|
8276
8342
|
},
|
|
8277
8343
|
{
|
|
8278
|
-
"id":
|
|
8344
|
+
"id": 563,
|
|
8279
8345
|
"name": "searchText",
|
|
8280
8346
|
"kind": 1024,
|
|
8281
8347
|
"kindString": "Property",
|
|
@@ -8301,11 +8367,11 @@
|
|
|
8301
8367
|
"title": "Properties",
|
|
8302
8368
|
"kind": 1024,
|
|
8303
8369
|
"children": [
|
|
8304
|
-
|
|
8305
|
-
|
|
8306
|
-
|
|
8307
|
-
|
|
8308
|
-
|
|
8370
|
+
566,
|
|
8371
|
+
564,
|
|
8372
|
+
565,
|
|
8373
|
+
567,
|
|
8374
|
+
563
|
|
8309
8375
|
]
|
|
8310
8376
|
}
|
|
8311
8377
|
],
|
|
@@ -8318,7 +8384,7 @@
|
|
|
8318
8384
|
]
|
|
8319
8385
|
},
|
|
8320
8386
|
{
|
|
8321
|
-
"id":
|
|
8387
|
+
"id": 568,
|
|
8322
8388
|
"name": "SkyAutocompleteSearchAsyncResult",
|
|
8323
8389
|
"kind": 256,
|
|
8324
8390
|
"kindString": "Interface",
|
|
@@ -8328,7 +8394,7 @@
|
|
|
8328
8394
|
},
|
|
8329
8395
|
"children": [
|
|
8330
8396
|
{
|
|
8331
|
-
"id":
|
|
8397
|
+
"id": 569,
|
|
8332
8398
|
"name": "continuationData",
|
|
8333
8399
|
"kind": 1024,
|
|
8334
8400
|
"kindString": "Property",
|
|
@@ -8351,7 +8417,7 @@
|
|
|
8351
8417
|
}
|
|
8352
8418
|
},
|
|
8353
8419
|
{
|
|
8354
|
-
"id":
|
|
8420
|
+
"id": 570,
|
|
8355
8421
|
"name": "hasMore",
|
|
8356
8422
|
"kind": 1024,
|
|
8357
8423
|
"kindString": "Property",
|
|
@@ -8374,7 +8440,7 @@
|
|
|
8374
8440
|
}
|
|
8375
8441
|
},
|
|
8376
8442
|
{
|
|
8377
|
-
"id":
|
|
8443
|
+
"id": 571,
|
|
8378
8444
|
"name": "items",
|
|
8379
8445
|
"kind": 1024,
|
|
8380
8446
|
"kindString": "Property",
|
|
@@ -8398,7 +8464,7 @@
|
|
|
8398
8464
|
}
|
|
8399
8465
|
},
|
|
8400
8466
|
{
|
|
8401
|
-
"id":
|
|
8467
|
+
"id": 572,
|
|
8402
8468
|
"name": "totalCount",
|
|
8403
8469
|
"kind": 1024,
|
|
8404
8470
|
"kindString": "Property",
|
|
@@ -8424,10 +8490,10 @@
|
|
|
8424
8490
|
"title": "Properties",
|
|
8425
8491
|
"kind": 1024,
|
|
8426
8492
|
"children": [
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8493
|
+
569,
|
|
8494
|
+
570,
|
|
8495
|
+
571,
|
|
8496
|
+
572
|
|
8431
8497
|
]
|
|
8432
8498
|
}
|
|
8433
8499
|
],
|
|
@@ -8440,14 +8506,14 @@
|
|
|
8440
8506
|
]
|
|
8441
8507
|
},
|
|
8442
8508
|
{
|
|
8443
|
-
"id":
|
|
8509
|
+
"id": 587,
|
|
8444
8510
|
"name": "SkyAutocompleteSelectionChange",
|
|
8445
8511
|
"kind": 256,
|
|
8446
8512
|
"kindString": "Interface",
|
|
8447
8513
|
"flags": {},
|
|
8448
8514
|
"children": [
|
|
8449
8515
|
{
|
|
8450
|
-
"id":
|
|
8516
|
+
"id": 588,
|
|
8451
8517
|
"name": "selectedItem",
|
|
8452
8518
|
"kind": 1024,
|
|
8453
8519
|
"kindString": "Property",
|
|
@@ -8475,7 +8541,7 @@
|
|
|
8475
8541
|
"title": "Properties",
|
|
8476
8542
|
"kind": 1024,
|
|
8477
8543
|
"children": [
|
|
8478
|
-
|
|
8544
|
+
588
|
|
8479
8545
|
]
|
|
8480
8546
|
}
|
|
8481
8547
|
],
|
|
@@ -8488,7 +8554,7 @@
|
|
|
8488
8554
|
]
|
|
8489
8555
|
},
|
|
8490
8556
|
{
|
|
8491
|
-
"id":
|
|
8557
|
+
"id": 595,
|
|
8492
8558
|
"name": "SkyCountryFieldCountry",
|
|
8493
8559
|
"kind": 256,
|
|
8494
8560
|
"kindString": "Interface",
|
|
@@ -8498,7 +8564,7 @@
|
|
|
8498
8564
|
},
|
|
8499
8565
|
"children": [
|
|
8500
8566
|
{
|
|
8501
|
-
"id":
|
|
8567
|
+
"id": 598,
|
|
8502
8568
|
"name": "dialCode",
|
|
8503
8569
|
"kind": 1024,
|
|
8504
8570
|
"kindString": "Property",
|
|
@@ -8521,7 +8587,7 @@
|
|
|
8521
8587
|
}
|
|
8522
8588
|
},
|
|
8523
8589
|
{
|
|
8524
|
-
"id":
|
|
8590
|
+
"id": 596,
|
|
8525
8591
|
"name": "iso2",
|
|
8526
8592
|
"kind": 1024,
|
|
8527
8593
|
"kindString": "Property",
|
|
@@ -8548,7 +8614,7 @@
|
|
|
8548
8614
|
}
|
|
8549
8615
|
},
|
|
8550
8616
|
{
|
|
8551
|
-
"id":
|
|
8617
|
+
"id": 597,
|
|
8552
8618
|
"name": "name",
|
|
8553
8619
|
"kind": 1024,
|
|
8554
8620
|
"kindString": "Property",
|
|
@@ -8576,9 +8642,9 @@
|
|
|
8576
8642
|
"title": "Properties",
|
|
8577
8643
|
"kind": 1024,
|
|
8578
8644
|
"children": [
|
|
8579
|
-
|
|
8580
|
-
|
|
8581
|
-
|
|
8645
|
+
598,
|
|
8646
|
+
596,
|
|
8647
|
+
597
|
|
8582
8648
|
]
|
|
8583
8649
|
}
|
|
8584
8650
|
],
|
|
@@ -8591,7 +8657,7 @@
|
|
|
8591
8657
|
]
|
|
8592
8658
|
},
|
|
8593
8659
|
{
|
|
8594
|
-
"id":
|
|
8660
|
+
"id": 604,
|
|
8595
8661
|
"name": "SkyLookupAddCallbackArgs",
|
|
8596
8662
|
"kind": 256,
|
|
8597
8663
|
"kindString": "Interface",
|
|
@@ -8601,7 +8667,7 @@
|
|
|
8601
8667
|
},
|
|
8602
8668
|
"children": [
|
|
8603
8669
|
{
|
|
8604
|
-
"id":
|
|
8670
|
+
"id": 606,
|
|
8605
8671
|
"name": "data",
|
|
8606
8672
|
"kind": 1024,
|
|
8607
8673
|
"kindString": "Property",
|
|
@@ -8627,7 +8693,7 @@
|
|
|
8627
8693
|
}
|
|
8628
8694
|
},
|
|
8629
8695
|
{
|
|
8630
|
-
"id":
|
|
8696
|
+
"id": 605,
|
|
8631
8697
|
"name": "item",
|
|
8632
8698
|
"kind": 1024,
|
|
8633
8699
|
"kindString": "Property",
|
|
@@ -8653,8 +8719,8 @@
|
|
|
8653
8719
|
"title": "Properties",
|
|
8654
8720
|
"kind": 1024,
|
|
8655
8721
|
"children": [
|
|
8656
|
-
|
|
8657
|
-
|
|
8722
|
+
606,
|
|
8723
|
+
605
|
|
8658
8724
|
]
|
|
8659
8725
|
}
|
|
8660
8726
|
],
|
|
@@ -8667,7 +8733,7 @@
|
|
|
8667
8733
|
]
|
|
8668
8734
|
},
|
|
8669
8735
|
{
|
|
8670
|
-
"id":
|
|
8736
|
+
"id": 607,
|
|
8671
8737
|
"name": "SkyLookupAddClickEventArgs",
|
|
8672
8738
|
"kind": 256,
|
|
8673
8739
|
"kindString": "Interface",
|
|
@@ -8677,7 +8743,7 @@
|
|
|
8677
8743
|
},
|
|
8678
8744
|
"children": [
|
|
8679
8745
|
{
|
|
8680
|
-
"id":
|
|
8746
|
+
"id": 608,
|
|
8681
8747
|
"name": "itemAdded",
|
|
8682
8748
|
"kind": 2048,
|
|
8683
8749
|
"kindString": "Method",
|
|
@@ -8691,7 +8757,7 @@
|
|
|
8691
8757
|
],
|
|
8692
8758
|
"signatures": [
|
|
8693
8759
|
{
|
|
8694
|
-
"id":
|
|
8760
|
+
"id": 609,
|
|
8695
8761
|
"name": "itemAdded",
|
|
8696
8762
|
"kind": 4096,
|
|
8697
8763
|
"kindString": "Call signature",
|
|
@@ -8701,7 +8767,7 @@
|
|
|
8701
8767
|
},
|
|
8702
8768
|
"parameters": [
|
|
8703
8769
|
{
|
|
8704
|
-
"id":
|
|
8770
|
+
"id": 610,
|
|
8705
8771
|
"name": "args",
|
|
8706
8772
|
"kind": 32768,
|
|
8707
8773
|
"kindString": "Parameter",
|
|
@@ -8711,7 +8777,7 @@
|
|
|
8711
8777
|
},
|
|
8712
8778
|
"type": {
|
|
8713
8779
|
"type": "reference",
|
|
8714
|
-
"id":
|
|
8780
|
+
"id": 604,
|
|
8715
8781
|
"name": "SkyLookupAddCallbackArgs"
|
|
8716
8782
|
}
|
|
8717
8783
|
}
|
|
@@ -8729,7 +8795,7 @@
|
|
|
8729
8795
|
"title": "Methods",
|
|
8730
8796
|
"kind": 2048,
|
|
8731
8797
|
"children": [
|
|
8732
|
-
|
|
8798
|
+
608
|
|
8733
8799
|
]
|
|
8734
8800
|
}
|
|
8735
8801
|
],
|
|
@@ -8742,7 +8808,7 @@
|
|
|
8742
8808
|
]
|
|
8743
8809
|
},
|
|
8744
8810
|
{
|
|
8745
|
-
"id":
|
|
8811
|
+
"id": 615,
|
|
8746
8812
|
"name": "SkyLookupShowMoreConfig",
|
|
8747
8813
|
"kind": 256,
|
|
8748
8814
|
"kindString": "Interface",
|
|
@@ -8752,7 +8818,7 @@
|
|
|
8752
8818
|
},
|
|
8753
8819
|
"children": [
|
|
8754
8820
|
{
|
|
8755
|
-
"id":
|
|
8821
|
+
"id": 616,
|
|
8756
8822
|
"name": "customPicker",
|
|
8757
8823
|
"kind": 1024,
|
|
8758
8824
|
"kindString": "Property",
|
|
@@ -8771,12 +8837,12 @@
|
|
|
8771
8837
|
],
|
|
8772
8838
|
"type": {
|
|
8773
8839
|
"type": "reference",
|
|
8774
|
-
"id":
|
|
8840
|
+
"id": 618,
|
|
8775
8841
|
"name": "SkyLookupShowMoreCustomPicker"
|
|
8776
8842
|
}
|
|
8777
8843
|
},
|
|
8778
8844
|
{
|
|
8779
|
-
"id":
|
|
8845
|
+
"id": 617,
|
|
8780
8846
|
"name": "nativePickerConfig",
|
|
8781
8847
|
"kind": 1024,
|
|
8782
8848
|
"kindString": "Property",
|
|
@@ -8795,7 +8861,7 @@
|
|
|
8795
8861
|
],
|
|
8796
8862
|
"type": {
|
|
8797
8863
|
"type": "reference",
|
|
8798
|
-
"id":
|
|
8864
|
+
"id": 628,
|
|
8799
8865
|
"name": "SkyLookupShowMoreNativePickerConfig"
|
|
8800
8866
|
}
|
|
8801
8867
|
}
|
|
@@ -8805,8 +8871,8 @@
|
|
|
8805
8871
|
"title": "Properties",
|
|
8806
8872
|
"kind": 1024,
|
|
8807
8873
|
"children": [
|
|
8808
|
-
|
|
8809
|
-
|
|
8874
|
+
616,
|
|
8875
|
+
617
|
|
8810
8876
|
]
|
|
8811
8877
|
}
|
|
8812
8878
|
],
|
|
@@ -8819,7 +8885,7 @@
|
|
|
8819
8885
|
]
|
|
8820
8886
|
},
|
|
8821
8887
|
{
|
|
8822
|
-
"id":
|
|
8888
|
+
"id": 618,
|
|
8823
8889
|
"name": "SkyLookupShowMoreCustomPicker",
|
|
8824
8890
|
"kind": 256,
|
|
8825
8891
|
"kindString": "Interface",
|
|
@@ -8829,7 +8895,7 @@
|
|
|
8829
8895
|
},
|
|
8830
8896
|
"children": [
|
|
8831
8897
|
{
|
|
8832
|
-
"id":
|
|
8898
|
+
"id": 619,
|
|
8833
8899
|
"name": "open",
|
|
8834
8900
|
"kind": 2048,
|
|
8835
8901
|
"kindString": "Method",
|
|
@@ -8843,21 +8909,21 @@
|
|
|
8843
8909
|
],
|
|
8844
8910
|
"signatures": [
|
|
8845
8911
|
{
|
|
8846
|
-
"id":
|
|
8912
|
+
"id": 620,
|
|
8847
8913
|
"name": "open",
|
|
8848
8914
|
"kind": 4096,
|
|
8849
8915
|
"kindString": "Call signature",
|
|
8850
8916
|
"flags": {},
|
|
8851
8917
|
"parameters": [
|
|
8852
8918
|
{
|
|
8853
|
-
"id":
|
|
8919
|
+
"id": 621,
|
|
8854
8920
|
"name": "pickerContext",
|
|
8855
8921
|
"kind": 32768,
|
|
8856
8922
|
"kindString": "Parameter",
|
|
8857
8923
|
"flags": {},
|
|
8858
8924
|
"type": {
|
|
8859
8925
|
"type": "reference",
|
|
8860
|
-
"id":
|
|
8926
|
+
"id": 622,
|
|
8861
8927
|
"name": "SkyLookupShowMoreCustomPickerContext"
|
|
8862
8928
|
}
|
|
8863
8929
|
}
|
|
@@ -8875,7 +8941,7 @@
|
|
|
8875
8941
|
"title": "Methods",
|
|
8876
8942
|
"kind": 2048,
|
|
8877
8943
|
"children": [
|
|
8878
|
-
|
|
8944
|
+
619
|
|
8879
8945
|
]
|
|
8880
8946
|
}
|
|
8881
8947
|
],
|
|
@@ -8888,7 +8954,7 @@
|
|
|
8888
8954
|
]
|
|
8889
8955
|
},
|
|
8890
8956
|
{
|
|
8891
|
-
"id":
|
|
8957
|
+
"id": 628,
|
|
8892
8958
|
"name": "SkyLookupShowMoreNativePickerConfig",
|
|
8893
8959
|
"kind": 256,
|
|
8894
8960
|
"kindString": "Interface",
|
|
@@ -8898,7 +8964,7 @@
|
|
|
8898
8964
|
},
|
|
8899
8965
|
"children": [
|
|
8900
8966
|
{
|
|
8901
|
-
"id":
|
|
8967
|
+
"id": 629,
|
|
8902
8968
|
"name": "itemTemplate",
|
|
8903
8969
|
"kind": 1024,
|
|
8904
8970
|
"kindString": "Property",
|
|
@@ -8929,7 +8995,7 @@
|
|
|
8929
8995
|
}
|
|
8930
8996
|
},
|
|
8931
8997
|
{
|
|
8932
|
-
"id":
|
|
8998
|
+
"id": 630,
|
|
8933
8999
|
"name": "title",
|
|
8934
9000
|
"kind": 1024,
|
|
8935
9001
|
"kindString": "Property",
|
|
@@ -8963,8 +9029,8 @@
|
|
|
8963
9029
|
"title": "Properties",
|
|
8964
9030
|
"kind": 1024,
|
|
8965
9031
|
"children": [
|
|
8966
|
-
|
|
8967
|
-
|
|
9032
|
+
629,
|
|
9033
|
+
630
|
|
8968
9034
|
]
|
|
8969
9035
|
}
|
|
8970
9036
|
],
|
|
@@ -8977,7 +9043,7 @@
|
|
|
8977
9043
|
]
|
|
8978
9044
|
},
|
|
8979
9045
|
{
|
|
8980
|
-
"id":
|
|
9046
|
+
"id": 573,
|
|
8981
9047
|
"name": "AutocompleteSearchAsyncResultDisplayType",
|
|
8982
9048
|
"kind": 4194304,
|
|
8983
9049
|
"kindString": "Type alias",
|
|
@@ -9004,7 +9070,97 @@
|
|
|
9004
9070
|
}
|
|
9005
9071
|
},
|
|
9006
9072
|
{
|
|
9007
|
-
"id":
|
|
9073
|
+
"id": 631,
|
|
9074
|
+
"name": "SkyAutocompleteSearchArgs",
|
|
9075
|
+
"kind": 4194304,
|
|
9076
|
+
"kindString": "Type alias",
|
|
9077
|
+
"flags": {},
|
|
9078
|
+
"sources": [
|
|
9079
|
+
{
|
|
9080
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-args.ts",
|
|
9081
|
+
"line": 3,
|
|
9082
|
+
"character": 12
|
|
9083
|
+
}
|
|
9084
|
+
],
|
|
9085
|
+
"type": {
|
|
9086
|
+
"type": "reflection",
|
|
9087
|
+
"declaration": {
|
|
9088
|
+
"id": 632,
|
|
9089
|
+
"name": "__type",
|
|
9090
|
+
"kind": 65536,
|
|
9091
|
+
"kindString": "Type literal",
|
|
9092
|
+
"flags": {},
|
|
9093
|
+
"children": [
|
|
9094
|
+
{
|
|
9095
|
+
"id": 633,
|
|
9096
|
+
"name": "context",
|
|
9097
|
+
"kind": 1024,
|
|
9098
|
+
"kindString": "Property",
|
|
9099
|
+
"flags": {
|
|
9100
|
+
"isOptional": true
|
|
9101
|
+
},
|
|
9102
|
+
"sources": [
|
|
9103
|
+
{
|
|
9104
|
+
"fileName": "lib/modules/autocomplete/types/autocomplete-search-args.ts",
|
|
9105
|
+
"line": 4,
|
|
9106
|
+
"character": 2
|
|
9107
|
+
}
|
|
9108
|
+
],
|
|
9109
|
+
"type": {
|
|
9110
|
+
"type": "reference",
|
|
9111
|
+
"id": 634,
|
|
9112
|
+
"name": "SkyAutocompleteSearchContext"
|
|
9113
|
+
}
|
|
9114
|
+
}
|
|
9115
|
+
],
|
|
9116
|
+
"groups": [
|
|
9117
|
+
{
|
|
9118
|
+
"title": "Properties",
|
|
9119
|
+
"kind": 1024,
|
|
9120
|
+
"children": [
|
|
9121
|
+
633
|
|
9122
|
+
]
|
|
9123
|
+
}
|
|
9124
|
+
],
|
|
9125
|
+
"sources": [
|
|
9126
|
+
{
|
|
9127
|
+
"fileName": "lib/modules/autocomplete/types/autocomplete-search-args.ts",
|
|
9128
|
+
"line": 3,
|
|
9129
|
+
"character": 40
|
|
9130
|
+
}
|
|
9131
|
+
]
|
|
9132
|
+
}
|
|
9133
|
+
}
|
|
9134
|
+
},
|
|
9135
|
+
{
|
|
9136
|
+
"id": 634,
|
|
9137
|
+
"name": "SkyAutocompleteSearchContext",
|
|
9138
|
+
"kind": 4194304,
|
|
9139
|
+
"kindString": "Type alias",
|
|
9140
|
+
"flags": {},
|
|
9141
|
+
"sources": [
|
|
9142
|
+
{
|
|
9143
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-context.ts",
|
|
9144
|
+
"line": 1,
|
|
9145
|
+
"character": 12
|
|
9146
|
+
}
|
|
9147
|
+
],
|
|
9148
|
+
"type": {
|
|
9149
|
+
"type": "union",
|
|
9150
|
+
"types": [
|
|
9151
|
+
{
|
|
9152
|
+
"type": "literal",
|
|
9153
|
+
"value": "popover"
|
|
9154
|
+
},
|
|
9155
|
+
{
|
|
9156
|
+
"type": "literal",
|
|
9157
|
+
"value": "modal"
|
|
9158
|
+
}
|
|
9159
|
+
]
|
|
9160
|
+
}
|
|
9161
|
+
},
|
|
9162
|
+
{
|
|
9163
|
+
"id": 574,
|
|
9008
9164
|
"name": "SkyAutocompleteSearchFunction",
|
|
9009
9165
|
"kind": 4194304,
|
|
9010
9166
|
"kindString": "Type alias",
|
|
@@ -9012,14 +9168,14 @@
|
|
|
9012
9168
|
"sources": [
|
|
9013
9169
|
{
|
|
9014
9170
|
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-function.ts",
|
|
9015
|
-
"line":
|
|
9171
|
+
"line": 4,
|
|
9016
9172
|
"character": 12
|
|
9017
9173
|
}
|
|
9018
9174
|
],
|
|
9019
9175
|
"type": {
|
|
9020
9176
|
"type": "reflection",
|
|
9021
9177
|
"declaration": {
|
|
9022
|
-
"id":
|
|
9178
|
+
"id": 575,
|
|
9023
9179
|
"name": "__type",
|
|
9024
9180
|
"kind": 65536,
|
|
9025
9181
|
"kindString": "Type literal",
|
|
@@ -9027,20 +9183,20 @@
|
|
|
9027
9183
|
"sources": [
|
|
9028
9184
|
{
|
|
9029
9185
|
"fileName": "lib/modules/autocomplete/types/autocomplete-search-function.ts",
|
|
9030
|
-
"line":
|
|
9186
|
+
"line": 4,
|
|
9031
9187
|
"character": 44
|
|
9032
9188
|
}
|
|
9033
9189
|
],
|
|
9034
9190
|
"signatures": [
|
|
9035
9191
|
{
|
|
9036
|
-
"id":
|
|
9192
|
+
"id": 576,
|
|
9037
9193
|
"name": "__type",
|
|
9038
9194
|
"kind": 4096,
|
|
9039
9195
|
"kindString": "Call signature",
|
|
9040
9196
|
"flags": {},
|
|
9041
9197
|
"parameters": [
|
|
9042
9198
|
{
|
|
9043
|
-
"id":
|
|
9199
|
+
"id": 577,
|
|
9044
9200
|
"name": "searchText",
|
|
9045
9201
|
"kind": 32768,
|
|
9046
9202
|
"kindString": "Parameter",
|
|
@@ -9051,7 +9207,7 @@
|
|
|
9051
9207
|
}
|
|
9052
9208
|
},
|
|
9053
9209
|
{
|
|
9054
|
-
"id":
|
|
9210
|
+
"id": 578,
|
|
9055
9211
|
"name": "data",
|
|
9056
9212
|
"kind": 32768,
|
|
9057
9213
|
"kindString": "Parameter",
|
|
@@ -9063,11 +9219,25 @@
|
|
|
9063
9219
|
"name": "any"
|
|
9064
9220
|
}
|
|
9065
9221
|
}
|
|
9222
|
+
},
|
|
9223
|
+
{
|
|
9224
|
+
"id": 579,
|
|
9225
|
+
"name": "args",
|
|
9226
|
+
"kind": 32768,
|
|
9227
|
+
"kindString": "Parameter",
|
|
9228
|
+
"flags": {
|
|
9229
|
+
"isOptional": true
|
|
9230
|
+
},
|
|
9231
|
+
"type": {
|
|
9232
|
+
"type": "reference",
|
|
9233
|
+
"id": 631,
|
|
9234
|
+
"name": "SkyAutocompleteSearchArgs"
|
|
9235
|
+
}
|
|
9066
9236
|
}
|
|
9067
9237
|
],
|
|
9068
9238
|
"type": {
|
|
9069
9239
|
"type": "reference",
|
|
9070
|
-
"id":
|
|
9240
|
+
"id": 586,
|
|
9071
9241
|
"name": "SkyAutocompleteSearchFunctionResponse"
|
|
9072
9242
|
}
|
|
9073
9243
|
}
|
|
@@ -9076,7 +9246,7 @@
|
|
|
9076
9246
|
}
|
|
9077
9247
|
},
|
|
9078
9248
|
{
|
|
9079
|
-
"id":
|
|
9249
|
+
"id": 580,
|
|
9080
9250
|
"name": "SkyAutocompleteSearchFunctionFilter",
|
|
9081
9251
|
"kind": 4194304,
|
|
9082
9252
|
"kindString": "Type alias",
|
|
@@ -9084,14 +9254,14 @@
|
|
|
9084
9254
|
"sources": [
|
|
9085
9255
|
{
|
|
9086
9256
|
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-function-filter.ts",
|
|
9087
|
-
"line":
|
|
9257
|
+
"line": 3,
|
|
9088
9258
|
"character": 12
|
|
9089
9259
|
}
|
|
9090
9260
|
],
|
|
9091
9261
|
"type": {
|
|
9092
9262
|
"type": "reflection",
|
|
9093
9263
|
"declaration": {
|
|
9094
|
-
"id":
|
|
9264
|
+
"id": 581,
|
|
9095
9265
|
"name": "__type",
|
|
9096
9266
|
"kind": 65536,
|
|
9097
9267
|
"kindString": "Type literal",
|
|
@@ -9099,20 +9269,20 @@
|
|
|
9099
9269
|
"sources": [
|
|
9100
9270
|
{
|
|
9101
9271
|
"fileName": "lib/modules/autocomplete/types/autocomplete-search-function-filter.ts",
|
|
9102
|
-
"line":
|
|
9272
|
+
"line": 3,
|
|
9103
9273
|
"character": 50
|
|
9104
9274
|
}
|
|
9105
9275
|
],
|
|
9106
9276
|
"signatures": [
|
|
9107
9277
|
{
|
|
9108
|
-
"id":
|
|
9278
|
+
"id": 582,
|
|
9109
9279
|
"name": "__type",
|
|
9110
9280
|
"kind": 4096,
|
|
9111
9281
|
"kindString": "Call signature",
|
|
9112
9282
|
"flags": {},
|
|
9113
9283
|
"parameters": [
|
|
9114
9284
|
{
|
|
9115
|
-
"id":
|
|
9285
|
+
"id": 583,
|
|
9116
9286
|
"name": "searchText",
|
|
9117
9287
|
"kind": 32768,
|
|
9118
9288
|
"kindString": "Parameter",
|
|
@@ -9123,7 +9293,7 @@
|
|
|
9123
9293
|
}
|
|
9124
9294
|
},
|
|
9125
9295
|
{
|
|
9126
|
-
"id":
|
|
9296
|
+
"id": 584,
|
|
9127
9297
|
"name": "item",
|
|
9128
9298
|
"kind": 32768,
|
|
9129
9299
|
"kindString": "Parameter",
|
|
@@ -9132,6 +9302,20 @@
|
|
|
9132
9302
|
"type": "intrinsic",
|
|
9133
9303
|
"name": "any"
|
|
9134
9304
|
}
|
|
9305
|
+
},
|
|
9306
|
+
{
|
|
9307
|
+
"id": 585,
|
|
9308
|
+
"name": "args",
|
|
9309
|
+
"kind": 32768,
|
|
9310
|
+
"kindString": "Parameter",
|
|
9311
|
+
"flags": {
|
|
9312
|
+
"isOptional": true
|
|
9313
|
+
},
|
|
9314
|
+
"type": {
|
|
9315
|
+
"type": "reference",
|
|
9316
|
+
"id": 631,
|
|
9317
|
+
"name": "SkyAutocompleteSearchArgs"
|
|
9318
|
+
}
|
|
9135
9319
|
}
|
|
9136
9320
|
],
|
|
9137
9321
|
"type": {
|
|
@@ -9144,7 +9328,7 @@
|
|
|
9144
9328
|
}
|
|
9145
9329
|
},
|
|
9146
9330
|
{
|
|
9147
|
-
"id":
|
|
9331
|
+
"id": 586,
|
|
9148
9332
|
"name": "SkyAutocompleteSearchFunctionResponse",
|
|
9149
9333
|
"kind": 4194304,
|
|
9150
9334
|
"kindString": "Type alias",
|
|
@@ -9185,7 +9369,7 @@
|
|
|
9185
9369
|
}
|
|
9186
9370
|
},
|
|
9187
9371
|
{
|
|
9188
|
-
"id":
|
|
9372
|
+
"id": 614,
|
|
9189
9373
|
"name": "SkyLookupSelectModeType",
|
|
9190
9374
|
"kind": 4194304,
|
|
9191
9375
|
"kindString": "Type alias",
|
|
@@ -9217,42 +9401,44 @@
|
|
|
9217
9401
|
"title": "Classes",
|
|
9218
9402
|
"kind": 128,
|
|
9219
9403
|
"children": [
|
|
9220
|
-
|
|
9221
|
-
|
|
9222
|
-
|
|
9223
|
-
|
|
9224
|
-
|
|
9225
|
-
|
|
9404
|
+
589,
|
|
9405
|
+
592,
|
|
9406
|
+
601,
|
|
9407
|
+
622,
|
|
9408
|
+
638,
|
|
9409
|
+
635,
|
|
9226
9410
|
1,
|
|
9227
|
-
|
|
9228
|
-
|
|
9229
|
-
|
|
9411
|
+
96,
|
|
9412
|
+
264,
|
|
9413
|
+
377
|
|
9230
9414
|
]
|
|
9231
9415
|
},
|
|
9232
9416
|
{
|
|
9233
9417
|
"title": "Interfaces",
|
|
9234
9418
|
"kind": 256,
|
|
9235
9419
|
"children": [
|
|
9236
|
-
556,
|
|
9237
9420
|
562,
|
|
9238
|
-
|
|
9421
|
+
568,
|
|
9239
9422
|
587,
|
|
9240
|
-
|
|
9241
|
-
|
|
9423
|
+
595,
|
|
9424
|
+
604,
|
|
9242
9425
|
607,
|
|
9243
|
-
|
|
9244
|
-
|
|
9426
|
+
615,
|
|
9427
|
+
618,
|
|
9428
|
+
628
|
|
9245
9429
|
]
|
|
9246
9430
|
},
|
|
9247
9431
|
{
|
|
9248
9432
|
"title": "Type aliases",
|
|
9249
9433
|
"kind": 4194304,
|
|
9250
9434
|
"children": [
|
|
9251
|
-
567,
|
|
9252
|
-
568,
|
|
9253
9435
|
573,
|
|
9254
|
-
|
|
9255
|
-
|
|
9436
|
+
631,
|
|
9437
|
+
634,
|
|
9438
|
+
574,
|
|
9439
|
+
580,
|
|
9440
|
+
586,
|
|
9441
|
+
614
|
|
9256
9442
|
]
|
|
9257
9443
|
}
|
|
9258
9444
|
],
|
|
@@ -9283,7 +9469,7 @@
|
|
|
9283
9469
|
{
|
|
9284
9470
|
"fileName": "autocomplete-demo.component.html",
|
|
9285
9471
|
"filePath": "/projects/lookup/documentation/code-examples/autocomplete/basic/autocomplete-demo.component.html",
|
|
9286
|
-
"rawContents": "<form novalidate [formGroup]=\"myForm\">\n <div class=\"sky-form-group\">\n <label class=\"sky-control-label\" [for]=\"favoriteColorInput.id\">\n Favorite color\n </label>\n <sky-autocomplete [data]=\"colors\">\n <input\n formControlName=\"favoriteColor\"\n
|
|
9472
|
+
"rawContents": "<form novalidate [formGroup]=\"myForm\">\n <div class=\"sky-form-group\">\n <label class=\"sky-control-label\" [for]=\"favoriteColorInput.id\">\n Favorite color\n </label>\n <sky-autocomplete [data]=\"colors\">\n <input\n formControlName=\"favoriteColor\"\n type=\"text\"\n skyAutocomplete\n skyId\n #favoriteColorInput\n />\n </sky-autocomplete>\n </div>\n <p class=\"sky-font-emphasized\">Form model:</p>\n <pre>{{ myForm.value | json }}</pre>\n</form>\n"
|
|
9287
9473
|
},
|
|
9288
9474
|
{
|
|
9289
9475
|
"fileName": "autocomplete-demo.component.ts",
|
|
@@ -9343,7 +9529,7 @@
|
|
|
9343
9529
|
{
|
|
9344
9530
|
"fileName": "lookup-async-demo.component.html",
|
|
9345
9531
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.component.html",
|
|
9346
|
-
"rawContents": "<form\n class=\"lookup-demo-form\"\n novalidate\n [formGroup]=\"myForm\"\n (ngSubmit)=\"onSubmit()\"\n>\n <div class=\"sky-form-group\">\n <sky-input-box>\n <label class=\"sky-control-label\" skyId #nameLabel=\"skyId\">\n Favorite name\n </label>\n <sky-lookup\n formControlName=\"name\"\n idProperty=\"name\"\n
|
|
9532
|
+
"rawContents": "<form\n class=\"lookup-demo-form\"\n novalidate\n [formGroup]=\"myForm\"\n (ngSubmit)=\"onSubmit()\"\n>\n <div class=\"sky-form-group\">\n <sky-input-box>\n <label class=\"sky-control-label\" skyId #nameLabel=\"skyId\">\n Favorite name\n </label>\n <sky-lookup\n formControlName=\"name\"\n idProperty=\"name\"\n [ariaLabelledBy]=\"nameLabel.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>{{ myForm.value | json }}</pre>\n </div>\n <button class=\"sky-btn sky-btn-default\" type=\"submit\">Submit</button>\n</form>\n"
|
|
9347
9533
|
},
|
|
9348
9534
|
{
|
|
9349
9535
|
"fileName": "lookup-async-demo.component.scss",
|
|
@@ -9353,13 +9539,18 @@
|
|
|
9353
9539
|
{
|
|
9354
9540
|
"fileName": "lookup-async-demo.component.ts",
|
|
9355
9541
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.component.ts",
|
|
9356
|
-
"rawContents": "import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport {\n SkyAutocompleteSearchAsyncArgs,\n SkyAutocompleteSearchAsyncResult,\n
|
|
9542
|
+
"rawContents": "import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport {\n SkyAutocompleteSearchAsyncArgs,\n SkyAutocompleteSearchAsyncResult,\n} from '@skyux/lookup';\n\nimport { Subject } from 'rxjs';\n\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 myForm: FormGroup;\n\n public 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 public name: LookupDemoPerson[] = [this.people[15]];\n\n constructor(private formBuilder: FormBuilder) {}\n\n public ngOnInit(): void {\n this.createForm();\n\n // If you need to execute some logic after the lookup values change,\n // subscribe to Angular's built-in value changes observable.\n this.myForm.valueChanges.subscribe((changes) => {\n console.log('Lookup value changes:', changes);\n });\n }\n\n public onSubmit(): void {\n alert('Form submitted with: ' + JSON.stringify(this.myForm.value));\n }\n\n public searchAsync($event: SkyAutocompleteSearchAsyncArgs) {\n const result = new Subject<SkyAutocompleteSearchAsyncResult>();\n $event.result = result;\n setTimeout(() => {\n const searchText = $event.searchText.toLowerCase();\n const items = this.people.filter((person) => {\n return person.name.toLowerCase().includes(searchText);\n });\n result.next({\n hasMore: false,\n items,\n totalCount: items.length,\n });\n }, 800);\n }\n\n private createForm(): void {\n this.myForm = this.formBuilder.group({\n name: new FormControl(this.name),\n });\n }\n}\n"
|
|
9357
9543
|
},
|
|
9358
9544
|
{
|
|
9359
9545
|
"fileName": "lookup-async-demo.module.ts",
|
|
9360
9546
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.module.ts",
|
|
9361
9547
|
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { SkyIdModule } from '@skyux/core';\nimport { SkyInputBoxModule } from '@skyux/forms';\nimport { SkyLookupModule } from '@skyux/lookup';\n\nimport { LookupAsyncDemoComponent } from './lookup-async-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyIdModule,\n SkyInputBoxModule,\n SkyLookupModule,\n ],\n declarations: [LookupAsyncDemoComponent],\n exports: [LookupAsyncDemoComponent],\n})\nexport class LookupAsyncDemoModule {}\n"
|
|
9362
9548
|
},
|
|
9549
|
+
{
|
|
9550
|
+
"fileName": "lookup-demo-person.ts",
|
|
9551
|
+
"filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-demo-person.ts",
|
|
9552
|
+
"rawContents": "export interface LookupDemoPerson {\n name: string;\n}\n"
|
|
9553
|
+
},
|
|
9363
9554
|
{
|
|
9364
9555
|
"fileName": "lookup-custom-picker-demo-modal.component.html",
|
|
9365
9556
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/custom-picker/lookup-custom-picker-demo-modal.component.html",
|
|
@@ -9383,13 +9574,23 @@
|
|
|
9383
9574
|
{
|
|
9384
9575
|
"fileName": "lookup-custom-picker-demo.component.ts",
|
|
9385
9576
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/custom-picker/lookup-custom-picker-demo.component.ts",
|
|
9386
|
-
"rawContents": "import { ChangeDetectorRef, Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport {\n SkyAutocompleteSearchFunctionFilter,\n SkyLookupShowMoreConfig,\n SkyLookupShowMoreCustomPickerContext,\n} from '@skyux/lookup';\nimport { SkyModalCloseArgs, SkyModalService } from '@skyux/modals';\n\nimport { LookupCustomPickerDemoModalComponent } from './lookup-custom-picker-demo-modal.component';\n\n@Component({\n selector: 'app-lookup-demo',\n templateUrl: './lookup-custom-picker-demo.component.html',\n styleUrls: ['./lookup-custom-picker-demo.component.scss'],\n})\nexport class LookupCustomPickerDemoComponent implements OnInit {\n public showMoreConfig: SkyLookupShowMoreConfig;\n\n public myForm: FormGroup;\n\n public people:
|
|
9577
|
+
"rawContents": "import { ChangeDetectorRef, Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport {\n SkyAutocompleteSearchFunctionFilter,\n SkyLookupShowMoreConfig,\n SkyLookupShowMoreCustomPickerContext,\n} from '@skyux/lookup';\nimport { SkyModalCloseArgs, SkyModalService } from '@skyux/modals';\n\nimport { LookupCustomPickerDemoModalComponent } from './lookup-custom-picker-demo-modal.component';\nimport { LookupDemoPerson } from './lookup-demo-person';\n\n@Component({\n selector: 'app-lookup-demo',\n templateUrl: './lookup-custom-picker-demo.component.html',\n styleUrls: ['./lookup-custom-picker-demo.component.scss'],\n})\nexport class LookupCustomPickerDemoComponent implements OnInit {\n public showMoreConfig: SkyLookupShowMoreConfig;\n\n public myForm: FormGroup;\n\n public 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 public names: LookupDemoPerson[] = [this.people[15]];\n\n constructor(\n private changeDetector: ChangeDetectorRef,\n private formBuilder: FormBuilder,\n private modalService: SkyModalService\n ) {\n this.showMoreConfig = {\n customPicker: {\n open: (context: SkyLookupShowMoreCustomPickerContext) => {\n const instance = this.modalService.open(\n LookupCustomPickerDemoModalComponent,\n {\n providers: [\n {\n provide: SkyLookupShowMoreCustomPickerContext,\n useValue: context,\n },\n ],\n size: 'large',\n }\n );\n\n instance.closed.subscribe((closeArgs: SkyModalCloseArgs) => {\n if (closeArgs.reason === 'save') {\n if (closeArgs.data) {\n this.myForm.setValue({\n names: [this.people[this.people.length - 1]],\n });\n this.changeDetector.markForCheck();\n }\n }\n });\n },\n },\n };\n }\n\n public ngOnInit(): void {\n this.createForm();\n\n // If you need to execute some logic after the lookup values change,\n // subscribe to Angular's built-in value changes observable.\n this.myForm.valueChanges.subscribe((changes) => {\n console.log('Lookup value changes:', changes);\n });\n }\n\n // Only show people in the search results that have not been chosen already.\n public getSearchFilters(): SkyAutocompleteSearchFunctionFilter[] {\n const names: LookupDemoPerson[] = this.myForm.controls.names.value;\n return [\n (searchText: string, item: LookupDemoPerson): boolean => {\n const found = names.find((option) => option.name === item.name);\n return !found;\n },\n ];\n }\n\n public onAddButtonClicked(): void {\n alert('Add button clicked!');\n }\n\n public onSubmit(): void {\n alert('Form submitted with: ' + JSON.stringify(this.myForm.value));\n }\n\n private createForm(): void {\n this.myForm = this.formBuilder.group({\n names: new FormControl(this.names),\n });\n }\n}\n"
|
|
9387
9578
|
},
|
|
9388
9579
|
{
|
|
9389
9580
|
"fileName": "lookup-custom-picker-demo.module.ts",
|
|
9390
9581
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/custom-picker/lookup-custom-picker-demo.module.ts",
|
|
9391
9582
|
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { SkyIdModule } from '@skyux/core';\nimport { SkyCheckboxModule, SkyInputBoxModule } from '@skyux/forms';\nimport { SkyLookupModule } from '@skyux/lookup';\nimport { SkyModalModule } from '@skyux/modals';\n\nimport { LookupCustomPickerDemoModalComponent } from './lookup-custom-picker-demo-modal.component';\nimport { LookupCustomPickerDemoComponent } from './lookup-custom-picker-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyCheckboxModule,\n SkyIdModule,\n SkyInputBoxModule,\n SkyLookupModule,\n SkyModalModule,\n ],\n declarations: [\n LookupCustomPickerDemoComponent,\n LookupCustomPickerDemoModalComponent,\n ],\n exports: [LookupCustomPickerDemoComponent],\n})\nexport class LookupCustomPickerDemoModule {}\n"
|
|
9392
9583
|
},
|
|
9584
|
+
{
|
|
9585
|
+
"fileName": "lookup-demo-person.ts",
|
|
9586
|
+
"filePath": "/projects/lookup/documentation/code-examples/lookup/custom-picker/lookup-demo-person.ts",
|
|
9587
|
+
"rawContents": "export interface LookupDemoPerson {\n name: string;\n}\n"
|
|
9588
|
+
},
|
|
9589
|
+
{
|
|
9590
|
+
"fileName": "lookup-demo-person.ts",
|
|
9591
|
+
"filePath": "/projects/lookup/documentation/code-examples/lookup/multi-select/lookup-demo-person.ts",
|
|
9592
|
+
"rawContents": "export interface LookupDemoPerson {\n name: string;\n}\n"
|
|
9593
|
+
},
|
|
9393
9594
|
{
|
|
9394
9595
|
"fileName": "lookup-multiple-demo.component.html",
|
|
9395
9596
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/multi-select/lookup-multiple-demo.component.html",
|
|
@@ -9403,13 +9604,18 @@
|
|
|
9403
9604
|
{
|
|
9404
9605
|
"fileName": "lookup-multiple-demo.component.ts",
|
|
9405
9606
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/multi-select/lookup-multiple-demo.component.ts",
|
|
9406
|
-
"rawContents": "import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport {
|
|
9607
|
+
"rawContents": "import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport {\n SkyAutocompleteSearchArgs,\n SkyAutocompleteSearchFunctionFilter,\n} from '@skyux/lookup';\n\nimport { LookupDemoPerson } from './lookup-demo-person';\n\n@Component({\n selector: 'app-lookup-demo',\n templateUrl: './lookup-multiple-demo.component.html',\n styleUrls: ['./lookup-multiple-demo.component.scss'],\n})\nexport class LookupMultipleSelectDemoComponent implements OnInit {\n public myForm: FormGroup;\n\n public 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 public names: LookupDemoPerson[] = [this.people[15]];\n\n constructor(private formBuilder: FormBuilder) {}\n\n public ngOnInit(): void {\n this.createForm();\n\n // If you need to execute some logic after the lookup values change,\n // subscribe to Angular's built-in value changes observable.\n this.myForm.valueChanges.subscribe((changes) => {\n console.log('Lookup value changes:', changes);\n });\n }\n\n /**\n * When in the modal view, show all people in the search results, regardless if they have been chosen already.\n * When in the popover view (or in any other view), show people in the search results that have not been chosen already.\n */\n public getSearchFilters(): SkyAutocompleteSearchFunctionFilter[] {\n const names: LookupDemoPerson[] = this.myForm.controls.names.value;\n return [\n (\n searchText: string,\n item: any,\n args?: SkyAutocompleteSearchArgs\n ): boolean => {\n if (args?.context === 'modal') {\n return true;\n }\n\n const found = names.find((option) => option.name === item.name);\n return !found;\n },\n ];\n }\n\n public onAddButtonClicked(): void {\n alert('Add button clicked!');\n }\n\n public onSubmit(): void {\n alert('Form submitted with: ' + JSON.stringify(this.myForm.value));\n }\n\n private createForm(): void {\n this.myForm = this.formBuilder.group({\n names: new FormControl(this.names),\n });\n }\n}\n"
|
|
9407
9608
|
},
|
|
9408
9609
|
{
|
|
9409
9610
|
"fileName": "lookup-multiple-demo.module.ts",
|
|
9410
9611
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/multi-select/lookup-multiple-demo.module.ts",
|
|
9411
9612
|
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { SkyIdModule } from '@skyux/core';\nimport { SkyInputBoxModule } from '@skyux/forms';\nimport { SkyLookupModule } from '@skyux/lookup';\n\nimport { LookupMultipleSelectDemoComponent } from './lookup-multiple-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyIdModule,\n SkyInputBoxModule,\n SkyLookupModule,\n ],\n declarations: [LookupMultipleSelectDemoComponent],\n exports: [LookupMultipleSelectDemoComponent],\n})\nexport class LookupMultipleSelectDemoModule {}\n"
|
|
9412
9613
|
},
|
|
9614
|
+
{
|
|
9615
|
+
"fileName": "lookup-demo-person.ts",
|
|
9616
|
+
"filePath": "/projects/lookup/documentation/code-examples/lookup/result-templates/lookup-demo-person.ts",
|
|
9617
|
+
"rawContents": "export interface LookupDemoPerson {\n name: string;\n formal?: string;\n}\n"
|
|
9618
|
+
},
|
|
9413
9619
|
{
|
|
9414
9620
|
"fileName": "lookup-result-templates-demo.component.html",
|
|
9415
9621
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/result-templates/lookup-result-templates-demo.component.html",
|
|
@@ -9423,13 +9629,18 @@
|
|
|
9423
9629
|
{
|
|
9424
9630
|
"fileName": "lookup-result-templates-demo.component.ts",
|
|
9425
9631
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/result-templates/lookup-result-templates-demo.component.ts",
|
|
9426
|
-
"rawContents": "import { Component, OnInit, TemplateRef, ViewChild } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport {\n SkyAutocompleteSearchFunctionFilter,\n SkyLookupShowMoreConfig,\n} from '@skyux/lookup';\n\n@Component({\n selector: 'app-lookup-demo',\n templateUrl: './lookup-result-templates-demo.component.html',\n styleUrls: ['./lookup-result-templates-demo.component.scss'],\n})\nexport class LookupResultTemplatesDemoComponent implements OnInit {\n public myForm: FormGroup;\n\n public people:
|
|
9632
|
+
"rawContents": "import { Component, OnInit, TemplateRef, ViewChild } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport {\n SkyAutocompleteSearchFunctionFilter,\n SkyLookupShowMoreConfig,\n} from '@skyux/lookup';\n\nimport { LookupDemoPerson } from './lookup-demo-person';\n\n@Component({\n selector: 'app-lookup-demo',\n templateUrl: './lookup-result-templates-demo.component.html',\n styleUrls: ['./lookup-result-templates-demo.component.scss'],\n})\nexport class LookupResultTemplatesDemoComponent implements OnInit {\n public myForm: FormGroup;\n\n public people: LookupDemoPerson[] = [\n {\n name: 'Abed',\n formal: 'Mr. Nadir',\n },\n {\n name: 'Alex',\n formal: 'Mr. Osbourne',\n },\n {\n name: 'Ben',\n formal: 'Mr. Chang',\n },\n {\n name: 'Britta',\n formal: 'Ms. Perry',\n },\n {\n name: 'Buzz',\n formal: 'Mr. Hickey',\n },\n {\n name: 'Craig',\n formal: 'Mr. Pelton',\n },\n {\n name: 'Elroy',\n formal: 'Mr. Patashnik',\n },\n {\n name: 'Garrett',\n formal: 'Mr. Lambert',\n },\n {\n name: 'Ian',\n formal: 'Mr. Duncan',\n },\n {\n name: 'Jeff',\n formal: 'Mr. Winger',\n },\n {\n name: 'Leonard',\n formal: 'Mr. Rodriguez',\n },\n {\n name: 'Neil',\n formal: 'Mr. Neil',\n },\n {\n name: 'Pierce',\n formal: 'Mr. Hawthorne',\n },\n {\n name: 'Preston',\n formal: 'Mr. Koogler',\n },\n {\n name: 'Rachel',\n formal: 'Ms. Rachel',\n },\n {\n name: 'Shirley',\n formal: 'Ms. Bennett',\n },\n {\n name: 'Todd',\n formal: 'Mr. Jacobson',\n },\n {\n name: 'Troy',\n formal: 'Mr. Barnes',\n },\n {\n name: 'Vaughn',\n formal: 'Mr. Miller',\n },\n {\n name: 'Vicki',\n formal: 'Ms. Jenkins',\n },\n ];\n\n public names: LookupDemoPerson[] = [this.people[15]];\n\n public showMoreConfig: SkyLookupShowMoreConfig = {\n nativePickerConfig: {},\n };\n\n @ViewChild('modalItemTemplate')\n public set modalItemTempalte(template: TemplateRef<unknown>) {\n this.showMoreConfig.nativePickerConfig.itemTemplate = template;\n }\n\n constructor(private formBuilder: FormBuilder) {}\n\n public ngOnInit(): void {\n this.createForm();\n\n // If you need to execute some logic after the lookup values change,\n // subscribe to Angular's built-in value changes observable.\n this.myForm.valueChanges.subscribe((changes) => {\n console.log('Lookup value changes:', changes);\n });\n }\n\n // Only show people in the search results that have not been chosen already.\n public getSearchFilters(): SkyAutocompleteSearchFunctionFilter[] {\n const names: any[] = this.myForm.controls.names.value;\n return [\n (searchText: string, item: any): boolean => {\n const found = names.find((option) => option.name === item.name);\n return !found;\n },\n ];\n }\n\n public onAddButtonClicked(): void {\n alert('Add button clicked!');\n }\n\n public onSubmit(): void {\n alert('Form submitted with: ' + JSON.stringify(this.myForm.value));\n }\n\n private createForm(): void {\n this.myForm = this.formBuilder.group({\n names: new FormControl(this.names),\n });\n }\n}\n"
|
|
9427
9633
|
},
|
|
9428
9634
|
{
|
|
9429
9635
|
"fileName": "lookup-result-templates-demo.module.ts",
|
|
9430
9636
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/result-templates/lookup-result-templates-demo.module.ts",
|
|
9431
9637
|
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { SkyIdModule } from '@skyux/core';\nimport { SkyInputBoxModule } from '@skyux/forms';\nimport { SkyLookupModule } from '@skyux/lookup';\n\nimport { LookupResultTemplatesDemoComponent } from './lookup-result-templates-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyIdModule,\n SkyInputBoxModule,\n SkyLookupModule,\n ],\n declarations: [LookupResultTemplatesDemoComponent],\n exports: [LookupResultTemplatesDemoComponent],\n})\nexport class LookupResultTemplatesDemoModule {}\n"
|
|
9432
9638
|
},
|
|
9639
|
+
{
|
|
9640
|
+
"fileName": "lookup-demo-person.ts",
|
|
9641
|
+
"filePath": "/projects/lookup/documentation/code-examples/lookup/single-select/lookup-demo-person.ts",
|
|
9642
|
+
"rawContents": "export interface LookupDemoPerson {\n name: string;\n}\n"
|
|
9643
|
+
},
|
|
9433
9644
|
{
|
|
9434
9645
|
"fileName": "lookup-single-demo.component.html",
|
|
9435
9646
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/single-select/lookup-single-demo.component.html",
|
|
@@ -9443,7 +9654,7 @@
|
|
|
9443
9654
|
{
|
|
9444
9655
|
"fileName": "lookup-single-demo.component.ts",
|
|
9445
9656
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/single-select/lookup-single-demo.component.ts",
|
|
9446
|
-
"rawContents": "import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport { SkyAutocompleteSearchFunctionFilter } from '@skyux/lookup';\n\n@Component({\n selector: 'app-single-select-lookup-demo',\n templateUrl: './lookup-single-demo.component.html',\n styleUrls: ['./lookup-single-demo.component.scss'],\n})\nexport class LookupSingleSelectDemoComponent implements OnInit {\n public myForm: FormGroup;\n\n public people:
|
|
9657
|
+
"rawContents": "import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport { SkyAutocompleteSearchFunctionFilter } from '@skyux/lookup';\n\nimport { LookupDemoPerson } from './lookup-demo-person';\n\n@Component({\n selector: 'app-single-select-lookup-demo',\n templateUrl: './lookup-single-demo.component.html',\n styleUrls: ['./lookup-single-demo.component.scss'],\n})\nexport class LookupSingleSelectDemoComponent implements OnInit {\n public myForm: FormGroup;\n\n public 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 public name: LookupDemoPerson[] = [this.people[15]];\n\n constructor(private formBuilder: FormBuilder) {}\n\n public ngOnInit(): void {\n this.createForm();\n\n // If you need to execute some logic after the lookup values change,\n // subscribe to Angular's built-in value changes observable.\n this.myForm.valueChanges.subscribe((changes) => {\n console.log('Lookup value changes:', changes);\n });\n }\n\n // Only show people in the search results that have not been chosen already.\n public getSearchFilters(): SkyAutocompleteSearchFunctionFilter[] {\n const name: LookupDemoPerson[] = this.myForm.controls.name.value;\n return [\n (searchText: string, item: LookupDemoPerson): boolean => {\n const found = name.find((option) => option.name === item.name);\n return !found;\n },\n ];\n }\n\n public onAddButtonClicked(): void {\n alert('Add button clicked!');\n }\n\n public onSubmit(): void {\n alert('Form submitted with: ' + JSON.stringify(this.myForm.value));\n }\n\n private createForm(): void {\n this.myForm = this.formBuilder.group({\n name: new FormControl(this.name),\n });\n }\n}\n"
|
|
9447
9658
|
},
|
|
9448
9659
|
{
|
|
9449
9660
|
"fileName": "lookup-single-demo.module.ts",
|