@skyux/lookup 5.1.1 → 5.2.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/bundles/skyux-lookup.umd.js +421 -62
- package/documentation.json +1042 -598
- package/esm2015/modules/autocomplete/autocomplete-search-async-disabled.pipe.js +19 -0
- package/esm2015/modules/autocomplete/autocomplete.component.js +68 -18
- package/esm2015/modules/autocomplete/autocomplete.module.js +19 -6
- package/esm2015/modules/autocomplete/types/autocomplete-search-async-args.js +2 -0
- package/esm2015/modules/autocomplete/types/autocomplete-search-async-function.js +2 -0
- package/esm2015/modules/autocomplete/types/autocomplete-search-async-result-display-type.js +2 -0
- package/esm2015/modules/autocomplete/types/autocomplete-search-async-result.js +2 -0
- package/esm2015/modules/country-field/country-field.component.js +1 -1
- package/esm2015/modules/lookup/lookup-autocomplete-adapter.js +8 -3
- package/esm2015/modules/lookup/lookup-item-selected.pipe.js +16 -0
- package/esm2015/modules/lookup/lookup-show-more-async-modal.component.js +184 -0
- package/esm2015/modules/lookup/lookup-show-more-modal.component.js +5 -1
- package/esm2015/modules/lookup/lookup.component.js +65 -34
- package/esm2015/modules/lookup/lookup.module.js +22 -6
- package/esm2015/modules/lookup/types/lookup-show-more-native-picker-async-context.js +7 -0
- package/esm2015/modules/shared/sky-lookup-resources.module.js +4 -1
- package/esm2015/public-api.js +4 -1
- package/fesm2015/skyux-lookup.js +384 -62
- package/fesm2015/skyux-lookup.js.map +1 -1
- package/modules/autocomplete/autocomplete-search-async-disabled.pipe.d.ts +11 -0
- package/modules/autocomplete/autocomplete.component.d.ts +14 -3
- package/modules/autocomplete/autocomplete.module.d.ts +8 -7
- package/modules/autocomplete/types/autocomplete-search-async-args.d.ts +35 -0
- package/modules/autocomplete/types/autocomplete-search-async-function.d.ts +4 -0
- package/modules/autocomplete/types/autocomplete-search-async-result-display-type.d.ts +1 -0
- package/modules/autocomplete/types/autocomplete-search-async-result.d.ts +25 -0
- package/modules/lookup/lookup-autocomplete-adapter.d.ts +4 -2
- package/modules/lookup/lookup-item-selected.pipe.d.ts +7 -0
- package/modules/lookup/lookup-show-more-async-modal.component.d.ts +49 -0
- package/modules/lookup/lookup.component.d.ts +3 -0
- package/modules/lookup/lookup.module.d.ts +17 -15
- package/modules/lookup/types/lookup-show-more-native-picker-async-context.d.ts +17 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
package/documentation.json
CHANGED
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
"SkyAutocompleteComponent": "class-skyautocompletecomponent",
|
|
11
11
|
"SkyCountryFieldComponent": "class-skycountryfieldcomponent",
|
|
12
12
|
"SkyLookupComponent": "class-skylookupcomponent",
|
|
13
|
+
"SkyAutocompleteSearchAsyncArgs": "interface-skyautocompletesearchasyncargs",
|
|
14
|
+
"SkyAutocompleteSearchAsyncResult": "interface-skyautocompletesearchasyncresult",
|
|
13
15
|
"SkyAutocompleteSelectionChange": "interface-skyautocompleteselectionchange",
|
|
14
16
|
"SkyCountryFieldCountry": "interface-skycountryfieldcountry",
|
|
15
17
|
"SkyLookupAddCallbackArgs": "interface-skylookupaddcallbackargs",
|
|
@@ -17,6 +19,7 @@
|
|
|
17
19
|
"SkyLookupShowMoreConfig": "interface-skylookupshowmoreconfig",
|
|
18
20
|
"SkyLookupShowMoreCustomPicker": "interface-skylookupshowmorecustompicker",
|
|
19
21
|
"SkyLookupShowMoreNativePickerConfig": "interface-skylookupshowmorenativepickerconfig",
|
|
22
|
+
"AutocompleteSearchAsyncResultDisplayType": "type-alias-autocompletesearchasyncresultdisplaytype",
|
|
20
23
|
"SkyAutocompleteSearchFunction": "type-alias-skyautocompletesearchfunction",
|
|
21
24
|
"SkyAutocompleteSearchFunctionFilter": "type-alias-skyautocompletesearchfunctionfilter",
|
|
22
25
|
"SkyAutocompleteSearchFunctionResponse": "type-alias-skyautocompletesearchfunctionresponse",
|
|
@@ -31,7 +34,7 @@
|
|
|
31
34
|
"originalName": "",
|
|
32
35
|
"children": [
|
|
33
36
|
{
|
|
34
|
-
"id":
|
|
37
|
+
"id": 561,
|
|
35
38
|
"name": "SkyAutocompleteModule",
|
|
36
39
|
"kind": 128,
|
|
37
40
|
"kindString": "Class",
|
|
@@ -44,27 +47,27 @@
|
|
|
44
47
|
"name": "NgModule"
|
|
45
48
|
},
|
|
46
49
|
"arguments": {
|
|
47
|
-
"obj": "{\n declarations: [SkyAutocompleteComponent
|
|
50
|
+
"obj": "{\n declarations: [\n SkyAutocompleteComponent,\n SkyAutocompleteInputDirective,\n SkyAutcompleteSearchAsyncDisabledPipe,\n ],\n imports: [\n CommonModule,\n FormsModule,\n SkyAffixModule,\n SkyTextHighlightModule,\n SkyIconModule,\n SkyIdModule,\n SkyLookupResourcesModule,\n SkyNumericModule,\n SkyOverlayModule,\n SkyThemeModule,\n SkyWaitModule,\n ],\n exports: [SkyAutocompleteComponent, SkyAutocompleteInputDirective],\n}"
|
|
48
51
|
}
|
|
49
52
|
}
|
|
50
53
|
],
|
|
51
54
|
"children": [
|
|
52
55
|
{
|
|
53
|
-
"id":
|
|
56
|
+
"id": 562,
|
|
54
57
|
"name": "constructor",
|
|
55
58
|
"kind": 512,
|
|
56
59
|
"kindString": "Constructor",
|
|
57
60
|
"flags": {},
|
|
58
61
|
"signatures": [
|
|
59
62
|
{
|
|
60
|
-
"id":
|
|
63
|
+
"id": 563,
|
|
61
64
|
"name": "new SkyAutocompleteModule",
|
|
62
65
|
"kind": 16384,
|
|
63
66
|
"kindString": "Constructor signature",
|
|
64
67
|
"flags": {},
|
|
65
68
|
"type": {
|
|
66
69
|
"type": "reference",
|
|
67
|
-
"id":
|
|
70
|
+
"id": 561,
|
|
68
71
|
"name": "SkyAutocompleteModule"
|
|
69
72
|
}
|
|
70
73
|
}
|
|
@@ -76,20 +79,20 @@
|
|
|
76
79
|
"title": "Constructors",
|
|
77
80
|
"kind": 512,
|
|
78
81
|
"children": [
|
|
79
|
-
|
|
82
|
+
562
|
|
80
83
|
]
|
|
81
84
|
}
|
|
82
85
|
],
|
|
83
86
|
"sources": [
|
|
84
87
|
{
|
|
85
88
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.module.ts",
|
|
86
|
-
"line":
|
|
89
|
+
"line": 50,
|
|
87
90
|
"character": 13
|
|
88
91
|
}
|
|
89
92
|
]
|
|
90
93
|
},
|
|
91
94
|
{
|
|
92
|
-
"id":
|
|
95
|
+
"id": 564,
|
|
93
96
|
"name": "SkyCountryFieldModule",
|
|
94
97
|
"kind": 128,
|
|
95
98
|
"kindString": "Class",
|
|
@@ -108,21 +111,21 @@
|
|
|
108
111
|
],
|
|
109
112
|
"children": [
|
|
110
113
|
{
|
|
111
|
-
"id":
|
|
114
|
+
"id": 565,
|
|
112
115
|
"name": "constructor",
|
|
113
116
|
"kind": 512,
|
|
114
117
|
"kindString": "Constructor",
|
|
115
118
|
"flags": {},
|
|
116
119
|
"signatures": [
|
|
117
120
|
{
|
|
118
|
-
"id":
|
|
121
|
+
"id": 566,
|
|
119
122
|
"name": "new SkyCountryFieldModule",
|
|
120
123
|
"kind": 16384,
|
|
121
124
|
"kindString": "Constructor signature",
|
|
122
125
|
"flags": {},
|
|
123
126
|
"type": {
|
|
124
127
|
"type": "reference",
|
|
125
|
-
"id":
|
|
128
|
+
"id": 564,
|
|
126
129
|
"name": "SkyCountryFieldModule"
|
|
127
130
|
}
|
|
128
131
|
}
|
|
@@ -134,7 +137,7 @@
|
|
|
134
137
|
"title": "Constructors",
|
|
135
138
|
"kind": 512,
|
|
136
139
|
"children": [
|
|
137
|
-
|
|
140
|
+
565
|
|
138
141
|
]
|
|
139
142
|
}
|
|
140
143
|
],
|
|
@@ -147,7 +150,7 @@
|
|
|
147
150
|
]
|
|
148
151
|
},
|
|
149
152
|
{
|
|
150
|
-
"id":
|
|
153
|
+
"id": 573,
|
|
151
154
|
"name": "SkyLookupModule",
|
|
152
155
|
"kind": 128,
|
|
153
156
|
"kindString": "Class",
|
|
@@ -160,27 +163,27 @@
|
|
|
160
163
|
"name": "NgModule"
|
|
161
164
|
},
|
|
162
165
|
"arguments": {
|
|
163
|
-
"obj": "{\n declarations: [SkyLookupComponent
|
|
166
|
+
"obj": "{\n declarations: [\n SkyLookupComponent,\n SkyLookupItemSelectedPipe,\n SkyLookupShowMoreAsyncModalComponent,\n SkyLookupShowMoreModalComponent,\n ],\n imports: [\n CommonModule,\n FormsModule,\n SkyAutocompleteModule,\n SkyCheckboxModule,\n SkyIconModule,\n SkyInfiniteScrollModule,\n SkyI18nModule,\n SkyLookupResourcesModule,\n SkyModalModule,\n SkyRepeaterModule,\n SkySearchModule,\n SkyThemeModule,\n SkyTokensModule,\n SkyToolbarModule,\n SkyViewkeeperModule,\n SkyWaitModule,\n ],\n entryComponents: [\n SkyLookupShowMoreAsyncModalComponent,\n SkyLookupShowMoreModalComponent,\n ],\n exports: [SkyLookupComponent],\n}"
|
|
164
167
|
}
|
|
165
168
|
}
|
|
166
169
|
],
|
|
167
170
|
"children": [
|
|
168
171
|
{
|
|
169
|
-
"id":
|
|
172
|
+
"id": 574,
|
|
170
173
|
"name": "constructor",
|
|
171
174
|
"kind": 512,
|
|
172
175
|
"kindString": "Constructor",
|
|
173
176
|
"flags": {},
|
|
174
177
|
"signatures": [
|
|
175
178
|
{
|
|
176
|
-
"id":
|
|
179
|
+
"id": 575,
|
|
177
180
|
"name": "new SkyLookupModule",
|
|
178
181
|
"kind": 16384,
|
|
179
182
|
"kindString": "Constructor signature",
|
|
180
183
|
"flags": {},
|
|
181
184
|
"type": {
|
|
182
185
|
"type": "reference",
|
|
183
|
-
"id":
|
|
186
|
+
"id": 573,
|
|
184
187
|
"name": "SkyLookupModule"
|
|
185
188
|
}
|
|
186
189
|
}
|
|
@@ -192,20 +195,20 @@
|
|
|
192
195
|
"title": "Constructors",
|
|
193
196
|
"kind": 512,
|
|
194
197
|
"children": [
|
|
195
|
-
|
|
198
|
+
574
|
|
196
199
|
]
|
|
197
200
|
}
|
|
198
201
|
],
|
|
199
202
|
"sources": [
|
|
200
203
|
{
|
|
201
204
|
"fileName": "projects/lookup/src/modules/lookup/lookup.module.ts",
|
|
202
|
-
"line":
|
|
205
|
+
"line": 56,
|
|
203
206
|
"character": 13
|
|
204
207
|
}
|
|
205
208
|
]
|
|
206
209
|
},
|
|
207
210
|
{
|
|
208
|
-
"id":
|
|
211
|
+
"id": 594,
|
|
209
212
|
"name": "SkyLookupShowMoreCustomPickerContext",
|
|
210
213
|
"kind": 128,
|
|
211
214
|
"kindString": "Class",
|
|
@@ -215,28 +218,28 @@
|
|
|
215
218
|
},
|
|
216
219
|
"children": [
|
|
217
220
|
{
|
|
218
|
-
"id":
|
|
221
|
+
"id": 595,
|
|
219
222
|
"name": "constructor",
|
|
220
223
|
"kind": 512,
|
|
221
224
|
"kindString": "Constructor",
|
|
222
225
|
"flags": {},
|
|
223
226
|
"signatures": [
|
|
224
227
|
{
|
|
225
|
-
"id":
|
|
228
|
+
"id": 596,
|
|
226
229
|
"name": "new SkyLookupShowMoreCustomPickerContext",
|
|
227
230
|
"kind": 16384,
|
|
228
231
|
"kindString": "Constructor signature",
|
|
229
232
|
"flags": {},
|
|
230
233
|
"type": {
|
|
231
234
|
"type": "reference",
|
|
232
|
-
"id":
|
|
235
|
+
"id": 594,
|
|
233
236
|
"name": "SkyLookupShowMoreCustomPickerContext"
|
|
234
237
|
}
|
|
235
238
|
}
|
|
236
239
|
]
|
|
237
240
|
},
|
|
238
241
|
{
|
|
239
|
-
"id":
|
|
242
|
+
"id": 598,
|
|
240
243
|
"name": "initialSearch",
|
|
241
244
|
"kind": 1024,
|
|
242
245
|
"kindString": "Property",
|
|
@@ -259,7 +262,7 @@
|
|
|
259
262
|
}
|
|
260
263
|
},
|
|
261
264
|
{
|
|
262
|
-
"id":
|
|
265
|
+
"id": 599,
|
|
263
266
|
"name": "initialValue",
|
|
264
267
|
"kind": 1024,
|
|
265
268
|
"kindString": "Property",
|
|
@@ -282,7 +285,7 @@
|
|
|
282
285
|
}
|
|
283
286
|
},
|
|
284
287
|
{
|
|
285
|
-
"id":
|
|
288
|
+
"id": 597,
|
|
286
289
|
"name": "items",
|
|
287
290
|
"kind": 1024,
|
|
288
291
|
"kindString": "Property",
|
|
@@ -313,16 +316,16 @@
|
|
|
313
316
|
"title": "Constructors",
|
|
314
317
|
"kind": 512,
|
|
315
318
|
"children": [
|
|
316
|
-
|
|
319
|
+
595
|
|
317
320
|
]
|
|
318
321
|
},
|
|
319
322
|
{
|
|
320
323
|
"title": "Properties",
|
|
321
324
|
"kind": 1024,
|
|
322
325
|
"children": [
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
+
598,
|
|
327
|
+
599,
|
|
328
|
+
597
|
|
326
329
|
]
|
|
327
330
|
}
|
|
328
331
|
],
|
|
@@ -335,7 +338,7 @@
|
|
|
335
338
|
]
|
|
336
339
|
},
|
|
337
340
|
{
|
|
338
|
-
"id":
|
|
341
|
+
"id": 606,
|
|
339
342
|
"name": "SkySearchComponent",
|
|
340
343
|
"kind": 128,
|
|
341
344
|
"kindString": "Class",
|
|
@@ -354,7 +357,7 @@
|
|
|
354
357
|
],
|
|
355
358
|
"children": [
|
|
356
359
|
{
|
|
357
|
-
"id":
|
|
360
|
+
"id": 607,
|
|
358
361
|
"name": "constructor",
|
|
359
362
|
"kind": 512,
|
|
360
363
|
"kindString": "Constructor",
|
|
@@ -368,14 +371,14 @@
|
|
|
368
371
|
],
|
|
369
372
|
"signatures": [
|
|
370
373
|
{
|
|
371
|
-
"id":
|
|
374
|
+
"id": 608,
|
|
372
375
|
"name": "new SkySearchComponent",
|
|
373
376
|
"kind": 16384,
|
|
374
377
|
"kindString": "Constructor signature",
|
|
375
378
|
"flags": {},
|
|
376
379
|
"parameters": [
|
|
377
380
|
{
|
|
378
|
-
"id":
|
|
381
|
+
"id": 609,
|
|
379
382
|
"name": "mediaQueryService",
|
|
380
383
|
"kind": 32768,
|
|
381
384
|
"kindString": "Parameter",
|
|
@@ -386,7 +389,7 @@
|
|
|
386
389
|
}
|
|
387
390
|
},
|
|
388
391
|
{
|
|
389
|
-
"id":
|
|
392
|
+
"id": 610,
|
|
390
393
|
"name": "elRef",
|
|
391
394
|
"kind": 32768,
|
|
392
395
|
"kindString": "Parameter",
|
|
@@ -403,7 +406,7 @@
|
|
|
403
406
|
}
|
|
404
407
|
},
|
|
405
408
|
{
|
|
406
|
-
"id":
|
|
409
|
+
"id": 611,
|
|
407
410
|
"name": "searchAdapter",
|
|
408
411
|
"kind": 32768,
|
|
409
412
|
"kindString": "Parameter",
|
|
@@ -414,7 +417,7 @@
|
|
|
414
417
|
}
|
|
415
418
|
},
|
|
416
419
|
{
|
|
417
|
-
"id":
|
|
420
|
+
"id": 612,
|
|
418
421
|
"name": "changeRef",
|
|
419
422
|
"kind": 32768,
|
|
420
423
|
"kindString": "Parameter",
|
|
@@ -427,14 +430,14 @@
|
|
|
427
430
|
],
|
|
428
431
|
"type": {
|
|
429
432
|
"type": "reference",
|
|
430
|
-
"id":
|
|
433
|
+
"id": 606,
|
|
431
434
|
"name": "SkySearchComponent"
|
|
432
435
|
}
|
|
433
436
|
}
|
|
434
437
|
]
|
|
435
438
|
},
|
|
436
439
|
{
|
|
437
|
-
"id":
|
|
440
|
+
"id": 624,
|
|
438
441
|
"name": "breakpointSubscription",
|
|
439
442
|
"kind": 1024,
|
|
440
443
|
"kindString": "Property",
|
|
@@ -454,7 +457,7 @@
|
|
|
454
457
|
}
|
|
455
458
|
},
|
|
456
459
|
{
|
|
457
|
-
"id":
|
|
460
|
+
"id": 628,
|
|
458
461
|
"name": "clearButtonShown",
|
|
459
462
|
"kind": 1024,
|
|
460
463
|
"kindString": "Property",
|
|
@@ -475,7 +478,7 @@
|
|
|
475
478
|
"defaultValue": "false"
|
|
476
479
|
},
|
|
477
480
|
{
|
|
478
|
-
"id":
|
|
481
|
+
"id": 618,
|
|
479
482
|
"name": "debounceTime",
|
|
480
483
|
"kind": 1024,
|
|
481
484
|
"kindString": "Property",
|
|
@@ -515,7 +518,7 @@
|
|
|
515
518
|
"defaultValue": "0"
|
|
516
519
|
},
|
|
517
520
|
{
|
|
518
|
-
"id":
|
|
521
|
+
"id": 619,
|
|
519
522
|
"name": "disabled",
|
|
520
523
|
"kind": 1024,
|
|
521
524
|
"kindString": "Property",
|
|
@@ -555,7 +558,7 @@
|
|
|
555
558
|
"defaultValue": "false"
|
|
556
559
|
},
|
|
557
560
|
{
|
|
558
|
-
"id":
|
|
561
|
+
"id": 627,
|
|
559
562
|
"name": "dismissButtonShown",
|
|
560
563
|
"kind": 1024,
|
|
561
564
|
"kindString": "Property",
|
|
@@ -576,7 +579,7 @@
|
|
|
576
579
|
"defaultValue": "false"
|
|
577
580
|
},
|
|
578
581
|
{
|
|
579
|
-
"id":
|
|
582
|
+
"id": 617,
|
|
580
583
|
"name": "expandMode",
|
|
581
584
|
"kind": 1024,
|
|
582
585
|
"kindString": "Property",
|
|
@@ -616,7 +619,7 @@
|
|
|
616
619
|
"defaultValue": "..."
|
|
617
620
|
},
|
|
618
621
|
{
|
|
619
|
-
"id":
|
|
622
|
+
"id": 623,
|
|
620
623
|
"name": "inputAnimate",
|
|
621
624
|
"kind": 1024,
|
|
622
625
|
"kindString": "Property",
|
|
@@ -637,7 +640,7 @@
|
|
|
637
640
|
"defaultValue": "..."
|
|
638
641
|
},
|
|
639
642
|
{
|
|
640
|
-
"id":
|
|
643
|
+
"id": 621,
|
|
641
644
|
"name": "isCollapsible",
|
|
642
645
|
"kind": 1024,
|
|
643
646
|
"kindString": "Property",
|
|
@@ -658,7 +661,7 @@
|
|
|
658
661
|
"defaultValue": "true"
|
|
659
662
|
},
|
|
660
663
|
{
|
|
661
|
-
"id":
|
|
664
|
+
"id": 620,
|
|
662
665
|
"name": "isFullWidth",
|
|
663
666
|
"kind": 1024,
|
|
664
667
|
"kindString": "Property",
|
|
@@ -679,7 +682,7 @@
|
|
|
679
682
|
"defaultValue": "false"
|
|
680
683
|
},
|
|
681
684
|
{
|
|
682
|
-
"id":
|
|
685
|
+
"id": 626,
|
|
683
686
|
"name": "mobileSearchShown",
|
|
684
687
|
"kind": 1024,
|
|
685
688
|
"kindString": "Property",
|
|
@@ -700,7 +703,7 @@
|
|
|
700
703
|
"defaultValue": "false"
|
|
701
704
|
},
|
|
702
705
|
{
|
|
703
|
-
"id":
|
|
706
|
+
"id": 622,
|
|
704
707
|
"name": "placeholderText",
|
|
705
708
|
"kind": 1024,
|
|
706
709
|
"kindString": "Property",
|
|
@@ -739,7 +742,7 @@
|
|
|
739
742
|
}
|
|
740
743
|
},
|
|
741
744
|
{
|
|
742
|
-
"id":
|
|
745
|
+
"id": 613,
|
|
743
746
|
"name": "searchApply",
|
|
744
747
|
"kind": 1024,
|
|
745
748
|
"kindString": "Property",
|
|
@@ -779,7 +782,7 @@
|
|
|
779
782
|
"defaultValue": "..."
|
|
780
783
|
},
|
|
781
784
|
{
|
|
782
|
-
"id":
|
|
785
|
+
"id": 625,
|
|
783
786
|
"name": "searchButtonShown",
|
|
784
787
|
"kind": 1024,
|
|
785
788
|
"kindString": "Property",
|
|
@@ -800,7 +803,7 @@
|
|
|
800
803
|
"defaultValue": "false"
|
|
801
804
|
},
|
|
802
805
|
{
|
|
803
|
-
"id":
|
|
806
|
+
"id": 614,
|
|
804
807
|
"name": "searchChange",
|
|
805
808
|
"kind": 1024,
|
|
806
809
|
"kindString": "Property",
|
|
@@ -840,7 +843,7 @@
|
|
|
840
843
|
"defaultValue": "..."
|
|
841
844
|
},
|
|
842
845
|
{
|
|
843
|
-
"id":
|
|
846
|
+
"id": 615,
|
|
844
847
|
"name": "searchClear",
|
|
845
848
|
"kind": 1024,
|
|
846
849
|
"kindString": "Property",
|
|
@@ -880,7 +883,7 @@
|
|
|
880
883
|
"defaultValue": "..."
|
|
881
884
|
},
|
|
882
885
|
{
|
|
883
|
-
"id":
|
|
886
|
+
"id": 616,
|
|
884
887
|
"name": "searchText",
|
|
885
888
|
"kind": 1024,
|
|
886
889
|
"kindString": "Property",
|
|
@@ -913,7 +916,7 @@
|
|
|
913
916
|
}
|
|
914
917
|
},
|
|
915
918
|
{
|
|
916
|
-
"id":
|
|
919
|
+
"id": 641,
|
|
917
920
|
"name": "applySearchText",
|
|
918
921
|
"kind": 2048,
|
|
919
922
|
"kindString": "Method",
|
|
@@ -929,14 +932,14 @@
|
|
|
929
932
|
],
|
|
930
933
|
"signatures": [
|
|
931
934
|
{
|
|
932
|
-
"id":
|
|
935
|
+
"id": 642,
|
|
933
936
|
"name": "applySearchText",
|
|
934
937
|
"kind": 4096,
|
|
935
938
|
"kindString": "Call signature",
|
|
936
939
|
"flags": {},
|
|
937
940
|
"parameters": [
|
|
938
941
|
{
|
|
939
|
-
"id":
|
|
942
|
+
"id": 643,
|
|
940
943
|
"name": "searchText",
|
|
941
944
|
"kind": 32768,
|
|
942
945
|
"kindString": "Parameter",
|
|
@@ -955,7 +958,7 @@
|
|
|
955
958
|
]
|
|
956
959
|
},
|
|
957
960
|
{
|
|
958
|
-
"id":
|
|
961
|
+
"id": 635,
|
|
959
962
|
"name": "clearSearchText",
|
|
960
963
|
"kind": 2048,
|
|
961
964
|
"kindString": "Method",
|
|
@@ -971,7 +974,7 @@
|
|
|
971
974
|
],
|
|
972
975
|
"signatures": [
|
|
973
976
|
{
|
|
974
|
-
"id":
|
|
977
|
+
"id": 636,
|
|
975
978
|
"name": "clearSearchText",
|
|
976
979
|
"kind": 4096,
|
|
977
980
|
"kindString": "Call signature",
|
|
@@ -984,7 +987,7 @@
|
|
|
984
987
|
]
|
|
985
988
|
},
|
|
986
989
|
{
|
|
987
|
-
"id":
|
|
990
|
+
"id": 637,
|
|
988
991
|
"name": "enterPress",
|
|
989
992
|
"kind": 2048,
|
|
990
993
|
"kindString": "Method",
|
|
@@ -1000,14 +1003,14 @@
|
|
|
1000
1003
|
],
|
|
1001
1004
|
"signatures": [
|
|
1002
1005
|
{
|
|
1003
|
-
"id":
|
|
1006
|
+
"id": 638,
|
|
1004
1007
|
"name": "enterPress",
|
|
1005
1008
|
"kind": 4096,
|
|
1006
1009
|
"kindString": "Call signature",
|
|
1007
1010
|
"flags": {},
|
|
1008
1011
|
"parameters": [
|
|
1009
1012
|
{
|
|
1010
|
-
"id":
|
|
1013
|
+
"id": 639,
|
|
1011
1014
|
"name": "event",
|
|
1012
1015
|
"kind": 32768,
|
|
1013
1016
|
"kindString": "Parameter",
|
|
@@ -1018,7 +1021,7 @@
|
|
|
1018
1021
|
}
|
|
1019
1022
|
},
|
|
1020
1023
|
{
|
|
1021
|
-
"id":
|
|
1024
|
+
"id": 640,
|
|
1022
1025
|
"name": "searchText",
|
|
1023
1026
|
"kind": 32768,
|
|
1024
1027
|
"kindString": "Parameter",
|
|
@@ -1037,7 +1040,7 @@
|
|
|
1037
1040
|
]
|
|
1038
1041
|
},
|
|
1039
1042
|
{
|
|
1040
|
-
"id":
|
|
1043
|
+
"id": 653,
|
|
1041
1044
|
"name": "inputAnimationEnd",
|
|
1042
1045
|
"kind": 2048,
|
|
1043
1046
|
"kindString": "Method",
|
|
@@ -1053,14 +1056,14 @@
|
|
|
1053
1056
|
],
|
|
1054
1057
|
"signatures": [
|
|
1055
1058
|
{
|
|
1056
|
-
"id":
|
|
1059
|
+
"id": 654,
|
|
1057
1060
|
"name": "inputAnimationEnd",
|
|
1058
1061
|
"kind": 4096,
|
|
1059
1062
|
"kindString": "Call signature",
|
|
1060
1063
|
"flags": {},
|
|
1061
1064
|
"parameters": [
|
|
1062
1065
|
{
|
|
1063
|
-
"id":
|
|
1066
|
+
"id": 655,
|
|
1064
1067
|
"name": "event",
|
|
1065
1068
|
"kind": 32768,
|
|
1066
1069
|
"kindString": "Parameter",
|
|
@@ -1079,7 +1082,7 @@
|
|
|
1079
1082
|
]
|
|
1080
1083
|
},
|
|
1081
1084
|
{
|
|
1082
|
-
"id":
|
|
1085
|
+
"id": 650,
|
|
1083
1086
|
"name": "inputAnimationStart",
|
|
1084
1087
|
"kind": 2048,
|
|
1085
1088
|
"kindString": "Method",
|
|
@@ -1095,14 +1098,14 @@
|
|
|
1095
1098
|
],
|
|
1096
1099
|
"signatures": [
|
|
1097
1100
|
{
|
|
1098
|
-
"id":
|
|
1101
|
+
"id": 651,
|
|
1099
1102
|
"name": "inputAnimationStart",
|
|
1100
1103
|
"kind": 4096,
|
|
1101
1104
|
"kindString": "Call signature",
|
|
1102
1105
|
"flags": {},
|
|
1103
1106
|
"parameters": [
|
|
1104
1107
|
{
|
|
1105
|
-
"id":
|
|
1108
|
+
"id": 652,
|
|
1106
1109
|
"name": "event",
|
|
1107
1110
|
"kind": 32768,
|
|
1108
1111
|
"kindString": "Parameter",
|
|
@@ -1121,7 +1124,7 @@
|
|
|
1121
1124
|
]
|
|
1122
1125
|
},
|
|
1123
1126
|
{
|
|
1124
|
-
"id":
|
|
1127
|
+
"id": 632,
|
|
1125
1128
|
"name": "ngOnChanges",
|
|
1126
1129
|
"kind": 2048,
|
|
1127
1130
|
"kindString": "Method",
|
|
@@ -1137,14 +1140,14 @@
|
|
|
1137
1140
|
],
|
|
1138
1141
|
"signatures": [
|
|
1139
1142
|
{
|
|
1140
|
-
"id":
|
|
1143
|
+
"id": 633,
|
|
1141
1144
|
"name": "ngOnChanges",
|
|
1142
1145
|
"kind": 4096,
|
|
1143
1146
|
"kindString": "Call signature",
|
|
1144
1147
|
"flags": {},
|
|
1145
1148
|
"parameters": [
|
|
1146
1149
|
{
|
|
1147
|
-
"id":
|
|
1150
|
+
"id": 634,
|
|
1148
1151
|
"name": "changes",
|
|
1149
1152
|
"kind": 32768,
|
|
1150
1153
|
"kindString": "Parameter",
|
|
@@ -1171,7 +1174,7 @@
|
|
|
1171
1174
|
}
|
|
1172
1175
|
},
|
|
1173
1176
|
{
|
|
1174
|
-
"id":
|
|
1177
|
+
"id": 656,
|
|
1175
1178
|
"name": "ngOnDestroy",
|
|
1176
1179
|
"kind": 2048,
|
|
1177
1180
|
"kindString": "Method",
|
|
@@ -1187,7 +1190,7 @@
|
|
|
1187
1190
|
],
|
|
1188
1191
|
"signatures": [
|
|
1189
1192
|
{
|
|
1190
|
-
"id":
|
|
1193
|
+
"id": 657,
|
|
1191
1194
|
"name": "ngOnDestroy",
|
|
1192
1195
|
"kind": 4096,
|
|
1193
1196
|
"kindString": "Call signature",
|
|
@@ -1208,7 +1211,7 @@
|
|
|
1208
1211
|
}
|
|
1209
1212
|
},
|
|
1210
1213
|
{
|
|
1211
|
-
"id":
|
|
1214
|
+
"id": 630,
|
|
1212
1215
|
"name": "ngOnInit",
|
|
1213
1216
|
"kind": 2048,
|
|
1214
1217
|
"kindString": "Method",
|
|
@@ -1224,7 +1227,7 @@
|
|
|
1224
1227
|
],
|
|
1225
1228
|
"signatures": [
|
|
1226
1229
|
{
|
|
1227
|
-
"id":
|
|
1230
|
+
"id": 631,
|
|
1228
1231
|
"name": "ngOnInit",
|
|
1229
1232
|
"kind": 4096,
|
|
1230
1233
|
"kindString": "Call signature",
|
|
@@ -1245,7 +1248,7 @@
|
|
|
1245
1248
|
}
|
|
1246
1249
|
},
|
|
1247
1250
|
{
|
|
1248
|
-
"id":
|
|
1251
|
+
"id": 644,
|
|
1249
1252
|
"name": "searchTextChanged",
|
|
1250
1253
|
"kind": 2048,
|
|
1251
1254
|
"kindString": "Method",
|
|
@@ -1261,14 +1264,14 @@
|
|
|
1261
1264
|
],
|
|
1262
1265
|
"signatures": [
|
|
1263
1266
|
{
|
|
1264
|
-
"id":
|
|
1267
|
+
"id": 645,
|
|
1265
1268
|
"name": "searchTextChanged",
|
|
1266
1269
|
"kind": 4096,
|
|
1267
1270
|
"kindString": "Call signature",
|
|
1268
1271
|
"flags": {},
|
|
1269
1272
|
"parameters": [
|
|
1270
1273
|
{
|
|
1271
|
-
"id":
|
|
1274
|
+
"id": 646,
|
|
1272
1275
|
"name": "searchText",
|
|
1273
1276
|
"kind": 32768,
|
|
1274
1277
|
"kindString": "Parameter",
|
|
@@ -1287,7 +1290,7 @@
|
|
|
1287
1290
|
]
|
|
1288
1291
|
},
|
|
1289
1292
|
{
|
|
1290
|
-
"id":
|
|
1293
|
+
"id": 647,
|
|
1291
1294
|
"name": "toggleSearchInput",
|
|
1292
1295
|
"kind": 2048,
|
|
1293
1296
|
"kindString": "Method",
|
|
@@ -1303,14 +1306,14 @@
|
|
|
1303
1306
|
],
|
|
1304
1307
|
"signatures": [
|
|
1305
1308
|
{
|
|
1306
|
-
"id":
|
|
1309
|
+
"id": 648,
|
|
1307
1310
|
"name": "toggleSearchInput",
|
|
1308
1311
|
"kind": 4096,
|
|
1309
1312
|
"kindString": "Call signature",
|
|
1310
1313
|
"flags": {},
|
|
1311
1314
|
"parameters": [
|
|
1312
1315
|
{
|
|
1313
|
-
"id":
|
|
1316
|
+
"id": 649,
|
|
1314
1317
|
"name": "showInput",
|
|
1315
1318
|
"kind": 32768,
|
|
1316
1319
|
"kindString": "Parameter",
|
|
@@ -1334,45 +1337,45 @@
|
|
|
1334
1337
|
"title": "Constructors",
|
|
1335
1338
|
"kind": 512,
|
|
1336
1339
|
"children": [
|
|
1337
|
-
|
|
1340
|
+
607
|
|
1338
1341
|
]
|
|
1339
1342
|
},
|
|
1340
1343
|
{
|
|
1341
1344
|
"title": "Properties",
|
|
1342
1345
|
"kind": 1024,
|
|
1343
1346
|
"children": [
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1347
|
+
624,
|
|
1348
|
+
628,
|
|
1349
|
+
618,
|
|
1350
|
+
619,
|
|
1351
|
+
627,
|
|
1352
|
+
617,
|
|
1353
|
+
623,
|
|
1354
|
+
621,
|
|
1355
|
+
620,
|
|
1356
|
+
626,
|
|
1357
|
+
622,
|
|
1358
|
+
613,
|
|
1359
|
+
625,
|
|
1360
|
+
614,
|
|
1361
|
+
615,
|
|
1362
|
+
616
|
|
1360
1363
|
]
|
|
1361
1364
|
},
|
|
1362
1365
|
{
|
|
1363
1366
|
"title": "Methods",
|
|
1364
1367
|
"kind": 2048,
|
|
1365
1368
|
"children": [
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
608,
|
|
1369
|
+
641,
|
|
1370
|
+
635,
|
|
1371
|
+
637,
|
|
1372
|
+
653,
|
|
1373
|
+
650,
|
|
1372
1374
|
632,
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1375
|
+
656,
|
|
1376
|
+
630,
|
|
1377
|
+
644,
|
|
1378
|
+
647
|
|
1376
1379
|
]
|
|
1377
1380
|
}
|
|
1378
1381
|
],
|
|
@@ -1399,7 +1402,7 @@
|
|
|
1399
1402
|
]
|
|
1400
1403
|
},
|
|
1401
1404
|
{
|
|
1402
|
-
"id":
|
|
1405
|
+
"id": 603,
|
|
1403
1406
|
"name": "SkySearchModule",
|
|
1404
1407
|
"kind": 128,
|
|
1405
1408
|
"kindString": "Class",
|
|
@@ -1418,21 +1421,21 @@
|
|
|
1418
1421
|
],
|
|
1419
1422
|
"children": [
|
|
1420
1423
|
{
|
|
1421
|
-
"id":
|
|
1424
|
+
"id": 604,
|
|
1422
1425
|
"name": "constructor",
|
|
1423
1426
|
"kind": 512,
|
|
1424
1427
|
"kindString": "Constructor",
|
|
1425
1428
|
"flags": {},
|
|
1426
1429
|
"signatures": [
|
|
1427
1430
|
{
|
|
1428
|
-
"id":
|
|
1431
|
+
"id": 605,
|
|
1429
1432
|
"name": "new SkySearchModule",
|
|
1430
1433
|
"kind": 16384,
|
|
1431
1434
|
"kindString": "Constructor signature",
|
|
1432
1435
|
"flags": {},
|
|
1433
1436
|
"type": {
|
|
1434
1437
|
"type": "reference",
|
|
1435
|
-
"id":
|
|
1438
|
+
"id": 603,
|
|
1436
1439
|
"name": "SkySearchModule"
|
|
1437
1440
|
}
|
|
1438
1441
|
}
|
|
@@ -1444,7 +1447,7 @@
|
|
|
1444
1447
|
"title": "Constructors",
|
|
1445
1448
|
"kind": 512,
|
|
1446
1449
|
"children": [
|
|
1447
|
-
|
|
1450
|
+
604
|
|
1448
1451
|
]
|
|
1449
1452
|
}
|
|
1450
1453
|
],
|
|
@@ -2669,7 +2672,7 @@
|
|
|
2669
2672
|
"sources": [
|
|
2670
2673
|
{
|
|
2671
2674
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2672
|
-
"line":
|
|
2675
|
+
"line": 438,
|
|
2673
2676
|
"character": 2
|
|
2674
2677
|
}
|
|
2675
2678
|
],
|
|
@@ -2798,7 +2801,7 @@
|
|
|
2798
2801
|
"sources": [
|
|
2799
2802
|
{
|
|
2800
2803
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2801
|
-
"line":
|
|
2804
|
+
"line": 80,
|
|
2802
2805
|
"character": 9
|
|
2803
2806
|
}
|
|
2804
2807
|
],
|
|
@@ -2818,7 +2821,28 @@
|
|
|
2818
2821
|
"sources": [
|
|
2819
2822
|
{
|
|
2820
2823
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2821
|
-
"line":
|
|
2824
|
+
"line": 302,
|
|
2825
|
+
"character": 9
|
|
2826
|
+
}
|
|
2827
|
+
],
|
|
2828
|
+
"type": {
|
|
2829
|
+
"type": "intrinsic",
|
|
2830
|
+
"name": "boolean"
|
|
2831
|
+
},
|
|
2832
|
+
"defaultValue": "false"
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"id": 157,
|
|
2836
|
+
"name": "isSearchingAsync",
|
|
2837
|
+
"kind": 1024,
|
|
2838
|
+
"kindString": "Property",
|
|
2839
|
+
"flags": {
|
|
2840
|
+
"isPublic": true
|
|
2841
|
+
},
|
|
2842
|
+
"sources": [
|
|
2843
|
+
{
|
|
2844
|
+
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2845
|
+
"line": 314,
|
|
2822
2846
|
"character": 9
|
|
2823
2847
|
}
|
|
2824
2848
|
],
|
|
@@ -2858,7 +2882,7 @@
|
|
|
2858
2882
|
"sources": [
|
|
2859
2883
|
{
|
|
2860
2884
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2861
|
-
"line":
|
|
2885
|
+
"line": 255,
|
|
2862
2886
|
"character": 9
|
|
2863
2887
|
}
|
|
2864
2888
|
],
|
|
@@ -2878,7 +2902,7 @@
|
|
|
2878
2902
|
"sources": [
|
|
2879
2903
|
{
|
|
2880
2904
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2881
|
-
"line":
|
|
2905
|
+
"line": 304,
|
|
2882
2906
|
"character": 9
|
|
2883
2907
|
}
|
|
2884
2908
|
],
|
|
@@ -2898,7 +2922,7 @@
|
|
|
2898
2922
|
"sources": [
|
|
2899
2923
|
{
|
|
2900
2924
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2901
|
-
"line":
|
|
2925
|
+
"line": 306,
|
|
2902
2926
|
"character": 9
|
|
2903
2927
|
}
|
|
2904
2928
|
],
|
|
@@ -2907,6 +2931,44 @@
|
|
|
2907
2931
|
"name": "string"
|
|
2908
2932
|
}
|
|
2909
2933
|
},
|
|
2934
|
+
{
|
|
2935
|
+
"id": 146,
|
|
2936
|
+
"name": "searchAsync",
|
|
2937
|
+
"kind": 1024,
|
|
2938
|
+
"kindString": "Property",
|
|
2939
|
+
"flags": {
|
|
2940
|
+
"isPublic": true
|
|
2941
|
+
},
|
|
2942
|
+
"decorators": [
|
|
2943
|
+
{
|
|
2944
|
+
"name": "Output",
|
|
2945
|
+
"type": {
|
|
2946
|
+
"type": "reference",
|
|
2947
|
+
"name": "Output"
|
|
2948
|
+
},
|
|
2949
|
+
"arguments": {}
|
|
2950
|
+
}
|
|
2951
|
+
],
|
|
2952
|
+
"sources": [
|
|
2953
|
+
{
|
|
2954
|
+
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2955
|
+
"line": 288,
|
|
2956
|
+
"character": 9
|
|
2957
|
+
}
|
|
2958
|
+
],
|
|
2959
|
+
"type": {
|
|
2960
|
+
"type": "reference",
|
|
2961
|
+
"typeArguments": [
|
|
2962
|
+
{
|
|
2963
|
+
"type": "reference",
|
|
2964
|
+
"id": 536,
|
|
2965
|
+
"name": "SkyAutocompleteSearchAsyncArgs"
|
|
2966
|
+
}
|
|
2967
|
+
],
|
|
2968
|
+
"name": "EventEmitter"
|
|
2969
|
+
},
|
|
2970
|
+
"defaultValue": "..."
|
|
2971
|
+
},
|
|
2910
2972
|
{
|
|
2911
2973
|
"id": 134,
|
|
2912
2974
|
"name": "searchFilters",
|
|
@@ -2931,7 +2993,7 @@
|
|
|
2931
2993
|
"sources": [
|
|
2932
2994
|
{
|
|
2933
2995
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2934
|
-
"line":
|
|
2996
|
+
"line": 224,
|
|
2935
2997
|
"character": 9
|
|
2936
2998
|
}
|
|
2937
2999
|
],
|
|
@@ -2939,11 +3001,31 @@
|
|
|
2939
3001
|
"type": "array",
|
|
2940
3002
|
"elementType": {
|
|
2941
3003
|
"type": "reference",
|
|
2942
|
-
"id":
|
|
3004
|
+
"id": 553,
|
|
2943
3005
|
"name": "SkyAutocompleteSearchFunctionFilter"
|
|
2944
3006
|
}
|
|
2945
3007
|
}
|
|
2946
3008
|
},
|
|
3009
|
+
{
|
|
3010
|
+
"id": 158,
|
|
3011
|
+
"name": "searchResultsCount",
|
|
3012
|
+
"kind": 1024,
|
|
3013
|
+
"kindString": "Property",
|
|
3014
|
+
"flags": {
|
|
3015
|
+
"isPublic": true
|
|
3016
|
+
},
|
|
3017
|
+
"sources": [
|
|
3018
|
+
{
|
|
3019
|
+
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3020
|
+
"line": 316,
|
|
3021
|
+
"character": 9
|
|
3022
|
+
}
|
|
3023
|
+
],
|
|
3024
|
+
"type": {
|
|
3025
|
+
"type": "intrinsic",
|
|
3026
|
+
"name": "number"
|
|
3027
|
+
}
|
|
3028
|
+
},
|
|
2947
3029
|
{
|
|
2948
3030
|
"id": 154,
|
|
2949
3031
|
"name": "searchText",
|
|
@@ -2955,7 +3037,7 @@
|
|
|
2955
3037
|
"sources": [
|
|
2956
3038
|
{
|
|
2957
3039
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2958
|
-
"line":
|
|
3040
|
+
"line": 308,
|
|
2959
3041
|
"character": 9
|
|
2960
3042
|
}
|
|
2961
3043
|
],
|
|
@@ -2985,7 +3067,7 @@
|
|
|
2985
3067
|
"sources": [
|
|
2986
3068
|
{
|
|
2987
3069
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
2988
|
-
"line":
|
|
3070
|
+
"line": 88,
|
|
2989
3071
|
"character": 13
|
|
2990
3072
|
}
|
|
2991
3073
|
],
|
|
@@ -3062,7 +3144,7 @@
|
|
|
3062
3144
|
"sources": [
|
|
3063
3145
|
{
|
|
3064
3146
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3065
|
-
"line":
|
|
3147
|
+
"line": 102,
|
|
3066
3148
|
"character": 13
|
|
3067
3149
|
}
|
|
3068
3150
|
],
|
|
@@ -3139,7 +3221,7 @@
|
|
|
3139
3221
|
"sources": [
|
|
3140
3222
|
{
|
|
3141
3223
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3142
|
-
"line":
|
|
3224
|
+
"line": 116,
|
|
3143
3225
|
"character": 13
|
|
3144
3226
|
}
|
|
3145
3227
|
],
|
|
@@ -3196,7 +3278,7 @@
|
|
|
3196
3278
|
]
|
|
3197
3279
|
},
|
|
3198
3280
|
{
|
|
3199
|
-
"id":
|
|
3281
|
+
"id": 149,
|
|
3200
3282
|
"name": "highlightText",
|
|
3201
3283
|
"kind": 262144,
|
|
3202
3284
|
"kindString": "Accessor",
|
|
@@ -3206,13 +3288,13 @@
|
|
|
3206
3288
|
"sources": [
|
|
3207
3289
|
{
|
|
3208
3290
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3209
|
-
"line":
|
|
3291
|
+
"line": 298,
|
|
3210
3292
|
"character": 13
|
|
3211
3293
|
}
|
|
3212
3294
|
],
|
|
3213
3295
|
"getSignature": [
|
|
3214
3296
|
{
|
|
3215
|
-
"id":
|
|
3297
|
+
"id": 150,
|
|
3216
3298
|
"name": "highlightText",
|
|
3217
3299
|
"kind": 524288,
|
|
3218
3300
|
"kindString": "Get signature",
|
|
@@ -3225,35 +3307,6 @@
|
|
|
3225
3307
|
}
|
|
3226
3308
|
}
|
|
3227
3309
|
}
|
|
3228
|
-
],
|
|
3229
|
-
"setSignature": [
|
|
3230
|
-
{
|
|
3231
|
-
"id": 149,
|
|
3232
|
-
"name": "highlightText",
|
|
3233
|
-
"kind": 1048576,
|
|
3234
|
-
"kindString": "Set signature",
|
|
3235
|
-
"flags": {},
|
|
3236
|
-
"parameters": [
|
|
3237
|
-
{
|
|
3238
|
-
"id": 150,
|
|
3239
|
-
"name": "value",
|
|
3240
|
-
"kind": 32768,
|
|
3241
|
-
"kindString": "Parameter",
|
|
3242
|
-
"flags": {},
|
|
3243
|
-
"type": {
|
|
3244
|
-
"type": "array",
|
|
3245
|
-
"elementType": {
|
|
3246
|
-
"type": "intrinsic",
|
|
3247
|
-
"name": "string"
|
|
3248
|
-
}
|
|
3249
|
-
}
|
|
3250
|
-
}
|
|
3251
|
-
],
|
|
3252
|
-
"type": {
|
|
3253
|
-
"type": "intrinsic",
|
|
3254
|
-
"name": "void"
|
|
3255
|
-
}
|
|
3256
|
-
}
|
|
3257
3310
|
]
|
|
3258
3311
|
},
|
|
3259
3312
|
{
|
|
@@ -3277,7 +3330,7 @@
|
|
|
3277
3330
|
"sources": [
|
|
3278
3331
|
{
|
|
3279
3332
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3280
|
-
"line":
|
|
3333
|
+
"line": 156,
|
|
3281
3334
|
"character": 13
|
|
3282
3335
|
}
|
|
3283
3336
|
],
|
|
@@ -3360,7 +3413,7 @@
|
|
|
3360
3413
|
"sources": [
|
|
3361
3414
|
{
|
|
3362
3415
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3363
|
-
"line":
|
|
3416
|
+
"line": 171,
|
|
3364
3417
|
"character": 13
|
|
3365
3418
|
}
|
|
3366
3419
|
],
|
|
@@ -3376,7 +3429,7 @@
|
|
|
3376
3429
|
},
|
|
3377
3430
|
"type": {
|
|
3378
3431
|
"type": "reference",
|
|
3379
|
-
"id":
|
|
3432
|
+
"id": 548,
|
|
3380
3433
|
"name": "SkyAutocompleteSearchFunction"
|
|
3381
3434
|
}
|
|
3382
3435
|
}
|
|
@@ -3400,7 +3453,7 @@
|
|
|
3400
3453
|
"flags": {},
|
|
3401
3454
|
"type": {
|
|
3402
3455
|
"type": "reference",
|
|
3403
|
-
"id":
|
|
3456
|
+
"id": 548,
|
|
3404
3457
|
"name": "SkyAutocompleteSearchFunction"
|
|
3405
3458
|
}
|
|
3406
3459
|
}
|
|
@@ -3433,7 +3486,7 @@
|
|
|
3433
3486
|
"sources": [
|
|
3434
3487
|
{
|
|
3435
3488
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3436
|
-
"line":
|
|
3489
|
+
"line": 191,
|
|
3437
3490
|
"character": 13
|
|
3438
3491
|
}
|
|
3439
3492
|
],
|
|
@@ -3496,7 +3549,7 @@
|
|
|
3496
3549
|
]
|
|
3497
3550
|
},
|
|
3498
3551
|
{
|
|
3499
|
-
"id":
|
|
3552
|
+
"id": 147,
|
|
3500
3553
|
"name": "searchResults",
|
|
3501
3554
|
"kind": 262144,
|
|
3502
3555
|
"kindString": "Accessor",
|
|
@@ -3506,13 +3559,13 @@
|
|
|
3506
3559
|
"sources": [
|
|
3507
3560
|
{
|
|
3508
3561
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3509
|
-
"line":
|
|
3562
|
+
"line": 294,
|
|
3510
3563
|
"character": 13
|
|
3511
3564
|
}
|
|
3512
3565
|
],
|
|
3513
3566
|
"getSignature": [
|
|
3514
3567
|
{
|
|
3515
|
-
"id":
|
|
3568
|
+
"id": 148,
|
|
3516
3569
|
"name": "searchResults",
|
|
3517
3570
|
"kind": 524288,
|
|
3518
3571
|
"kindString": "Get signature",
|
|
@@ -3548,7 +3601,7 @@
|
|
|
3548
3601
|
"sources": [
|
|
3549
3602
|
{
|
|
3550
3603
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3551
|
-
"line":
|
|
3604
|
+
"line": 231,
|
|
3552
3605
|
"character": 13
|
|
3553
3606
|
}
|
|
3554
3607
|
],
|
|
@@ -3619,7 +3672,7 @@
|
|
|
3619
3672
|
"sources": [
|
|
3620
3673
|
{
|
|
3621
3674
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3622
|
-
"line":
|
|
3675
|
+
"line": 206,
|
|
3623
3676
|
"character": 13
|
|
3624
3677
|
}
|
|
3625
3678
|
],
|
|
@@ -3676,7 +3729,7 @@
|
|
|
3676
3729
|
]
|
|
3677
3730
|
},
|
|
3678
3731
|
{
|
|
3679
|
-
"id":
|
|
3732
|
+
"id": 144,
|
|
3680
3733
|
"name": "selectionChange",
|
|
3681
3734
|
"kind": 262144,
|
|
3682
3735
|
"kindString": "Accessor",
|
|
@@ -3696,13 +3749,13 @@
|
|
|
3696
3749
|
"sources": [
|
|
3697
3750
|
{
|
|
3698
3751
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3699
|
-
"line":
|
|
3752
|
+
"line": 283,
|
|
3700
3753
|
"character": 13
|
|
3701
3754
|
}
|
|
3702
3755
|
],
|
|
3703
3756
|
"getSignature": [
|
|
3704
3757
|
{
|
|
3705
|
-
"id":
|
|
3758
|
+
"id": 145,
|
|
3706
3759
|
"name": "selectionChange",
|
|
3707
3760
|
"kind": 524288,
|
|
3708
3761
|
"kindString": "Get signature",
|
|
@@ -3715,7 +3768,7 @@
|
|
|
3715
3768
|
"typeArguments": [
|
|
3716
3769
|
{
|
|
3717
3770
|
"type": "reference",
|
|
3718
|
-
"id":
|
|
3771
|
+
"id": 559,
|
|
3719
3772
|
"name": "SkyAutocompleteSelectionChange"
|
|
3720
3773
|
}
|
|
3721
3774
|
],
|
|
@@ -3735,7 +3788,7 @@
|
|
|
3735
3788
|
"sources": [
|
|
3736
3789
|
{
|
|
3737
3790
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3738
|
-
"line":
|
|
3791
|
+
"line": 310,
|
|
3739
3792
|
"character": 13
|
|
3740
3793
|
}
|
|
3741
3794
|
],
|
|
@@ -3754,7 +3807,7 @@
|
|
|
3754
3807
|
]
|
|
3755
3808
|
},
|
|
3756
3809
|
{
|
|
3757
|
-
"id":
|
|
3810
|
+
"id": 197,
|
|
3758
3811
|
"name": "addButtonClicked",
|
|
3759
3812
|
"kind": 2048,
|
|
3760
3813
|
"kindString": "Method",
|
|
@@ -3764,13 +3817,13 @@
|
|
|
3764
3817
|
"sources": [
|
|
3765
3818
|
{
|
|
3766
3819
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3767
|
-
"line":
|
|
3820
|
+
"line": 477,
|
|
3768
3821
|
"character": 9
|
|
3769
3822
|
}
|
|
3770
3823
|
],
|
|
3771
3824
|
"signatures": [
|
|
3772
3825
|
{
|
|
3773
|
-
"id":
|
|
3826
|
+
"id": 198,
|
|
3774
3827
|
"name": "addButtonClicked",
|
|
3775
3828
|
"kind": 4096,
|
|
3776
3829
|
"kindString": "Call signature",
|
|
@@ -3783,7 +3836,7 @@
|
|
|
3783
3836
|
]
|
|
3784
3837
|
},
|
|
3785
3838
|
{
|
|
3786
|
-
"id":
|
|
3839
|
+
"id": 199,
|
|
3787
3840
|
"name": "handleKeydown",
|
|
3788
3841
|
"kind": 2048,
|
|
3789
3842
|
"kindString": "Method",
|
|
@@ -3793,20 +3846,20 @@
|
|
|
3793
3846
|
"sources": [
|
|
3794
3847
|
{
|
|
3795
3848
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3796
|
-
"line":
|
|
3849
|
+
"line": 483,
|
|
3797
3850
|
"character": 9
|
|
3798
3851
|
}
|
|
3799
3852
|
],
|
|
3800
3853
|
"signatures": [
|
|
3801
3854
|
{
|
|
3802
|
-
"id":
|
|
3855
|
+
"id": 200,
|
|
3803
3856
|
"name": "handleKeydown",
|
|
3804
3857
|
"kind": 4096,
|
|
3805
3858
|
"kindString": "Call signature",
|
|
3806
3859
|
"flags": {},
|
|
3807
3860
|
"parameters": [
|
|
3808
3861
|
{
|
|
3809
|
-
"id":
|
|
3862
|
+
"id": 201,
|
|
3810
3863
|
"name": "event",
|
|
3811
3864
|
"kind": 32768,
|
|
3812
3865
|
"kindString": "Parameter",
|
|
@@ -3825,7 +3878,7 @@
|
|
|
3825
3878
|
]
|
|
3826
3879
|
},
|
|
3827
3880
|
{
|
|
3828
|
-
"id":
|
|
3881
|
+
"id": 211,
|
|
3829
3882
|
"name": "isElementFocused",
|
|
3830
3883
|
"kind": 2048,
|
|
3831
3884
|
"kindString": "Method",
|
|
@@ -3835,20 +3888,20 @@
|
|
|
3835
3888
|
"sources": [
|
|
3836
3889
|
{
|
|
3837
3890
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3838
|
-
"line":
|
|
3891
|
+
"line": 592,
|
|
3839
3892
|
"character": 9
|
|
3840
3893
|
}
|
|
3841
3894
|
],
|
|
3842
3895
|
"signatures": [
|
|
3843
3896
|
{
|
|
3844
|
-
"id":
|
|
3897
|
+
"id": 212,
|
|
3845
3898
|
"name": "isElementFocused",
|
|
3846
3899
|
"kind": 4096,
|
|
3847
3900
|
"kindString": "Call signature",
|
|
3848
3901
|
"flags": {},
|
|
3849
3902
|
"parameters": [
|
|
3850
3903
|
{
|
|
3851
|
-
"id":
|
|
3904
|
+
"id": 213,
|
|
3852
3905
|
"name": "ref",
|
|
3853
3906
|
"kind": 32768,
|
|
3854
3907
|
"kindString": "Parameter",
|
|
@@ -3867,7 +3920,7 @@
|
|
|
3867
3920
|
]
|
|
3868
3921
|
},
|
|
3869
3922
|
{
|
|
3870
|
-
"id":
|
|
3923
|
+
"id": 202,
|
|
3871
3924
|
"name": "moreButtonClicked",
|
|
3872
3925
|
"kind": 2048,
|
|
3873
3926
|
"kindString": "Method",
|
|
@@ -3877,13 +3930,13 @@
|
|
|
3877
3930
|
"sources": [
|
|
3878
3931
|
{
|
|
3879
3932
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3880
|
-
"line":
|
|
3933
|
+
"line": 564,
|
|
3881
3934
|
"character": 9
|
|
3882
3935
|
}
|
|
3883
3936
|
],
|
|
3884
3937
|
"signatures": [
|
|
3885
3938
|
{
|
|
3886
|
-
"id":
|
|
3939
|
+
"id": 203,
|
|
3887
3940
|
"name": "moreButtonClicked",
|
|
3888
3941
|
"kind": 4096,
|
|
3889
3942
|
"kindString": "Call signature",
|
|
@@ -3896,7 +3949,7 @@
|
|
|
3896
3949
|
]
|
|
3897
3950
|
},
|
|
3898
3951
|
{
|
|
3899
|
-
"id":
|
|
3952
|
+
"id": 191,
|
|
3900
3953
|
"name": "ngAfterContentInit",
|
|
3901
3954
|
"kind": 2048,
|
|
3902
3955
|
"kindString": "Method",
|
|
@@ -3906,13 +3959,13 @@
|
|
|
3906
3959
|
"sources": [
|
|
3907
3960
|
{
|
|
3908
3961
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3909
|
-
"line":
|
|
3962
|
+
"line": 451,
|
|
3910
3963
|
"character": 9
|
|
3911
3964
|
}
|
|
3912
3965
|
],
|
|
3913
3966
|
"signatures": [
|
|
3914
3967
|
{
|
|
3915
|
-
"id":
|
|
3968
|
+
"id": 192,
|
|
3916
3969
|
"name": "ngAfterContentInit",
|
|
3917
3970
|
"kind": 4096,
|
|
3918
3971
|
"kindString": "Call signature",
|
|
@@ -3933,7 +3986,7 @@
|
|
|
3933
3986
|
}
|
|
3934
3987
|
},
|
|
3935
3988
|
{
|
|
3936
|
-
"id":
|
|
3989
|
+
"id": 193,
|
|
3937
3990
|
"name": "ngAfterViewInit",
|
|
3938
3991
|
"kind": 2048,
|
|
3939
3992
|
"kindString": "Method",
|
|
@@ -3943,13 +3996,13 @@
|
|
|
3943
3996
|
"sources": [
|
|
3944
3997
|
{
|
|
3945
3998
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3946
|
-
"line":
|
|
3999
|
+
"line": 463,
|
|
3947
4000
|
"character": 9
|
|
3948
4001
|
}
|
|
3949
4002
|
],
|
|
3950
4003
|
"signatures": [
|
|
3951
4004
|
{
|
|
3952
|
-
"id":
|
|
4005
|
+
"id": 194,
|
|
3953
4006
|
"name": "ngAfterViewInit",
|
|
3954
4007
|
"kind": 4096,
|
|
3955
4008
|
"kindString": "Call signature",
|
|
@@ -3970,7 +4023,7 @@
|
|
|
3970
4023
|
}
|
|
3971
4024
|
},
|
|
3972
4025
|
{
|
|
3973
|
-
"id":
|
|
4026
|
+
"id": 195,
|
|
3974
4027
|
"name": "ngOnDestroy",
|
|
3975
4028
|
"kind": 2048,
|
|
3976
4029
|
"kindString": "Method",
|
|
@@ -3980,13 +4033,13 @@
|
|
|
3980
4033
|
"sources": [
|
|
3981
4034
|
{
|
|
3982
4035
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
3983
|
-
"line":
|
|
4036
|
+
"line": 467,
|
|
3984
4037
|
"character": 9
|
|
3985
4038
|
}
|
|
3986
4039
|
],
|
|
3987
4040
|
"signatures": [
|
|
3988
4041
|
{
|
|
3989
|
-
"id":
|
|
4042
|
+
"id": 196,
|
|
3990
4043
|
"name": "ngOnDestroy",
|
|
3991
4044
|
"kind": 4096,
|
|
3992
4045
|
"kindString": "Call signature",
|
|
@@ -4007,7 +4060,7 @@
|
|
|
4007
4060
|
}
|
|
4008
4061
|
},
|
|
4009
4062
|
{
|
|
4010
|
-
"id":
|
|
4063
|
+
"id": 204,
|
|
4011
4064
|
"name": "onResultMouseDown",
|
|
4012
4065
|
"kind": 2048,
|
|
4013
4066
|
"kindString": "Method",
|
|
@@ -4017,20 +4070,20 @@
|
|
|
4017
4070
|
"sources": [
|
|
4018
4071
|
{
|
|
4019
4072
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
4020
|
-
"line":
|
|
4073
|
+
"line": 570,
|
|
4021
4074
|
"character": 9
|
|
4022
4075
|
}
|
|
4023
4076
|
],
|
|
4024
4077
|
"signatures": [
|
|
4025
4078
|
{
|
|
4026
|
-
"id":
|
|
4079
|
+
"id": 205,
|
|
4027
4080
|
"name": "onResultMouseDown",
|
|
4028
4081
|
"kind": 4096,
|
|
4029
4082
|
"kindString": "Call signature",
|
|
4030
4083
|
"flags": {},
|
|
4031
4084
|
"parameters": [
|
|
4032
4085
|
{
|
|
4033
|
-
"id":
|
|
4086
|
+
"id": 206,
|
|
4034
4087
|
"name": "id",
|
|
4035
4088
|
"kind": 32768,
|
|
4036
4089
|
"kindString": "Parameter",
|
|
@@ -4041,7 +4094,7 @@
|
|
|
4041
4094
|
}
|
|
4042
4095
|
},
|
|
4043
4096
|
{
|
|
4044
|
-
"id":
|
|
4097
|
+
"id": 207,
|
|
4045
4098
|
"name": "event",
|
|
4046
4099
|
"kind": 32768,
|
|
4047
4100
|
"kindString": "Parameter",
|
|
@@ -4060,7 +4113,7 @@
|
|
|
4060
4113
|
]
|
|
4061
4114
|
},
|
|
4062
4115
|
{
|
|
4063
|
-
"id":
|
|
4116
|
+
"id": 208,
|
|
4064
4117
|
"name": "onResultMouseMove",
|
|
4065
4118
|
"kind": 2048,
|
|
4066
4119
|
"kindString": "Method",
|
|
@@ -4070,20 +4123,20 @@
|
|
|
4070
4123
|
"sources": [
|
|
4071
4124
|
{
|
|
4072
4125
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
4073
|
-
"line":
|
|
4126
|
+
"line": 583,
|
|
4074
4127
|
"character": 9
|
|
4075
4128
|
}
|
|
4076
4129
|
],
|
|
4077
4130
|
"signatures": [
|
|
4078
4131
|
{
|
|
4079
|
-
"id":
|
|
4132
|
+
"id": 209,
|
|
4080
4133
|
"name": "onResultMouseMove",
|
|
4081
4134
|
"kind": 4096,
|
|
4082
4135
|
"kindString": "Call signature",
|
|
4083
4136
|
"flags": {},
|
|
4084
4137
|
"parameters": [
|
|
4085
4138
|
{
|
|
4086
|
-
"id":
|
|
4139
|
+
"id": 210,
|
|
4087
4140
|
"name": "id",
|
|
4088
4141
|
"kind": 32768,
|
|
4089
4142
|
"kindString": "Parameter",
|
|
@@ -4116,10 +4169,13 @@
|
|
|
4116
4169
|
"children": [
|
|
4117
4170
|
99,
|
|
4118
4171
|
151,
|
|
4172
|
+
157,
|
|
4119
4173
|
140,
|
|
4120
4174
|
152,
|
|
4121
4175
|
153,
|
|
4176
|
+
146,
|
|
4122
4177
|
134,
|
|
4178
|
+
158,
|
|
4123
4179
|
154
|
|
4124
4180
|
]
|
|
4125
4181
|
},
|
|
@@ -4130,14 +4186,14 @@
|
|
|
4130
4186
|
100,
|
|
4131
4187
|
104,
|
|
4132
4188
|
108,
|
|
4133
|
-
|
|
4189
|
+
149,
|
|
4134
4190
|
118,
|
|
4135
4191
|
122,
|
|
4136
4192
|
126,
|
|
4137
|
-
|
|
4193
|
+
147,
|
|
4138
4194
|
135,
|
|
4139
4195
|
130,
|
|
4140
|
-
|
|
4196
|
+
144,
|
|
4141
4197
|
155
|
|
4142
4198
|
]
|
|
4143
4199
|
},
|
|
@@ -4145,22 +4201,22 @@
|
|
|
4145
4201
|
"title": "Methods",
|
|
4146
4202
|
"kind": 2048,
|
|
4147
4203
|
"children": [
|
|
4148
|
-
|
|
4149
|
-
196,
|
|
4150
|
-
208,
|
|
4204
|
+
197,
|
|
4151
4205
|
199,
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4206
|
+
211,
|
|
4207
|
+
202,
|
|
4208
|
+
191,
|
|
4209
|
+
193,
|
|
4210
|
+
195,
|
|
4211
|
+
204,
|
|
4212
|
+
208
|
|
4157
4213
|
]
|
|
4158
4214
|
}
|
|
4159
4215
|
],
|
|
4160
4216
|
"sources": [
|
|
4161
4217
|
{
|
|
4162
4218
|
"fileName": "projects/lookup/src/modules/autocomplete/autocomplete.component.ts",
|
|
4163
|
-
"line":
|
|
4219
|
+
"line": 69,
|
|
4164
4220
|
"character": 13
|
|
4165
4221
|
}
|
|
4166
4222
|
],
|
|
@@ -4180,7 +4236,7 @@
|
|
|
4180
4236
|
]
|
|
4181
4237
|
},
|
|
4182
4238
|
{
|
|
4183
|
-
"id":
|
|
4239
|
+
"id": 255,
|
|
4184
4240
|
"name": "SkyCountryFieldComponent",
|
|
4185
4241
|
"kind": 128,
|
|
4186
4242
|
"kindString": "Class",
|
|
@@ -4199,7 +4255,7 @@
|
|
|
4199
4255
|
],
|
|
4200
4256
|
"children": [
|
|
4201
4257
|
{
|
|
4202
|
-
"id":
|
|
4258
|
+
"id": 256,
|
|
4203
4259
|
"name": "constructor",
|
|
4204
4260
|
"kind": 512,
|
|
4205
4261
|
"kindString": "Constructor",
|
|
@@ -4213,14 +4269,14 @@
|
|
|
4213
4269
|
],
|
|
4214
4270
|
"signatures": [
|
|
4215
4271
|
{
|
|
4216
|
-
"id":
|
|
4272
|
+
"id": 257,
|
|
4217
4273
|
"name": "SkyCountryFieldComponent",
|
|
4218
4274
|
"kind": 16384,
|
|
4219
4275
|
"kindString": "Constructor signature",
|
|
4220
4276
|
"flags": {},
|
|
4221
4277
|
"parameters": [
|
|
4222
4278
|
{
|
|
4223
|
-
"id":
|
|
4279
|
+
"id": 258,
|
|
4224
4280
|
"name": "changeDetector",
|
|
4225
4281
|
"kind": 32768,
|
|
4226
4282
|
"kindString": "Parameter",
|
|
@@ -4231,7 +4287,7 @@
|
|
|
4231
4287
|
}
|
|
4232
4288
|
},
|
|
4233
4289
|
{
|
|
4234
|
-
"id":
|
|
4290
|
+
"id": 259,
|
|
4235
4291
|
"name": "elRef",
|
|
4236
4292
|
"kind": 32768,
|
|
4237
4293
|
"kindString": "Parameter",
|
|
@@ -4248,7 +4304,7 @@
|
|
|
4248
4304
|
}
|
|
4249
4305
|
},
|
|
4250
4306
|
{
|
|
4251
|
-
"id":
|
|
4307
|
+
"id": 260,
|
|
4252
4308
|
"name": "windowRef",
|
|
4253
4309
|
"kind": 32768,
|
|
4254
4310
|
"kindString": "Parameter",
|
|
@@ -4259,7 +4315,7 @@
|
|
|
4259
4315
|
}
|
|
4260
4316
|
},
|
|
4261
4317
|
{
|
|
4262
|
-
"id":
|
|
4318
|
+
"id": 261,
|
|
4263
4319
|
"name": "injector",
|
|
4264
4320
|
"kind": 32768,
|
|
4265
4321
|
"kindString": "Parameter",
|
|
@@ -4270,7 +4326,7 @@
|
|
|
4270
4326
|
}
|
|
4271
4327
|
},
|
|
4272
4328
|
{
|
|
4273
|
-
"id":
|
|
4329
|
+
"id": 262,
|
|
4274
4330
|
"name": "inputBoxHostSvc",
|
|
4275
4331
|
"kind": 32768,
|
|
4276
4332
|
"kindString": "Parameter",
|
|
@@ -4293,7 +4349,7 @@
|
|
|
4293
4349
|
}
|
|
4294
4350
|
},
|
|
4295
4351
|
{
|
|
4296
|
-
"id":
|
|
4352
|
+
"id": 263,
|
|
4297
4353
|
"name": "themeSvc",
|
|
4298
4354
|
"kind": 32768,
|
|
4299
4355
|
"kindString": "Parameter",
|
|
@@ -4318,14 +4374,14 @@
|
|
|
4318
4374
|
],
|
|
4319
4375
|
"type": {
|
|
4320
4376
|
"type": "reference",
|
|
4321
|
-
"id":
|
|
4377
|
+
"id": 255,
|
|
4322
4378
|
"name": "SkyCountryFieldComponent"
|
|
4323
4379
|
}
|
|
4324
4380
|
}
|
|
4325
4381
|
]
|
|
4326
4382
|
},
|
|
4327
4383
|
{
|
|
4328
|
-
"id":
|
|
4384
|
+
"id": 264,
|
|
4329
4385
|
"name": "autocompleteAttribute",
|
|
4330
4386
|
"kind": 1024,
|
|
4331
4387
|
"kindString": "Property",
|
|
@@ -4364,7 +4420,7 @@
|
|
|
4364
4420
|
}
|
|
4365
4421
|
},
|
|
4366
4422
|
{
|
|
4367
|
-
"id":
|
|
4423
|
+
"id": 283,
|
|
4368
4424
|
"name": "countries",
|
|
4369
4425
|
"kind": 1024,
|
|
4370
4426
|
"kindString": "Property",
|
|
@@ -4382,13 +4438,13 @@
|
|
|
4382
4438
|
"type": "array",
|
|
4383
4439
|
"elementType": {
|
|
4384
4440
|
"type": "reference",
|
|
4385
|
-
"id":
|
|
4441
|
+
"id": 567,
|
|
4386
4442
|
"name": "SkyCountryFieldCountry"
|
|
4387
4443
|
}
|
|
4388
4444
|
}
|
|
4389
4445
|
},
|
|
4390
4446
|
{
|
|
4391
|
-
"id":
|
|
4447
|
+
"id": 287,
|
|
4392
4448
|
"name": "countrySearchAutocompleteDirective",
|
|
4393
4449
|
"kind": 1024,
|
|
4394
4450
|
"kindString": "Property",
|
|
@@ -4421,7 +4477,7 @@
|
|
|
4421
4477
|
}
|
|
4422
4478
|
},
|
|
4423
4479
|
{
|
|
4424
|
-
"id":
|
|
4480
|
+
"id": 284,
|
|
4425
4481
|
"name": "countrySearchFormControl",
|
|
4426
4482
|
"kind": 1024,
|
|
4427
4483
|
"kindString": "Property",
|
|
@@ -4441,7 +4497,7 @@
|
|
|
4441
4497
|
}
|
|
4442
4498
|
},
|
|
4443
4499
|
{
|
|
4444
|
-
"id":
|
|
4500
|
+
"id": 292,
|
|
4445
4501
|
"name": "currentTheme",
|
|
4446
4502
|
"kind": 1024,
|
|
4447
4503
|
"kindString": "Property",
|
|
@@ -4462,7 +4518,7 @@
|
|
|
4462
4518
|
"defaultValue": "'default'"
|
|
4463
4519
|
},
|
|
4464
4520
|
{
|
|
4465
|
-
"id":
|
|
4521
|
+
"id": 273,
|
|
4466
4522
|
"name": "hideSelectedCountryFlag",
|
|
4467
4523
|
"kind": 1024,
|
|
4468
4524
|
"kindString": "Property",
|
|
@@ -4501,7 +4557,7 @@
|
|
|
4501
4557
|
}
|
|
4502
4558
|
},
|
|
4503
4559
|
{
|
|
4504
|
-
"id":
|
|
4560
|
+
"id": 307,
|
|
4505
4561
|
"name": "inputBoxHostSvc",
|
|
4506
4562
|
"kind": 1024,
|
|
4507
4563
|
"kindString": "Property",
|
|
@@ -4515,7 +4571,7 @@
|
|
|
4515
4571
|
}
|
|
4516
4572
|
},
|
|
4517
4573
|
{
|
|
4518
|
-
"id":
|
|
4574
|
+
"id": 293,
|
|
4519
4575
|
"name": "inputId",
|
|
4520
4576
|
"kind": 1024,
|
|
4521
4577
|
"kindString": "Property",
|
|
@@ -4535,7 +4591,7 @@
|
|
|
4535
4591
|
}
|
|
4536
4592
|
},
|
|
4537
4593
|
{
|
|
4538
|
-
"id":
|
|
4594
|
+
"id": 285,
|
|
4539
4595
|
"name": "isInputFocused",
|
|
4540
4596
|
"kind": 1024,
|
|
4541
4597
|
"kindString": "Property",
|
|
@@ -4556,7 +4612,7 @@
|
|
|
4556
4612
|
"defaultValue": "false"
|
|
4557
4613
|
},
|
|
4558
4614
|
{
|
|
4559
|
-
"id":
|
|
4615
|
+
"id": 319,
|
|
4560
4616
|
"name": "onChange",
|
|
4561
4617
|
"kind": 1024,
|
|
4562
4618
|
"kindString": "Property",
|
|
@@ -4577,7 +4633,7 @@
|
|
|
4577
4633
|
"defaultValue": "..."
|
|
4578
4634
|
},
|
|
4579
4635
|
{
|
|
4580
|
-
"id":
|
|
4636
|
+
"id": 320,
|
|
4581
4637
|
"name": "onTouched",
|
|
4582
4638
|
"kind": 1024,
|
|
4583
4639
|
"kindString": "Property",
|
|
@@ -4598,7 +4654,7 @@
|
|
|
4598
4654
|
"defaultValue": "..."
|
|
4599
4655
|
},
|
|
4600
4656
|
{
|
|
4601
|
-
"id":
|
|
4657
|
+
"id": 286,
|
|
4602
4658
|
"name": "searchTextMinimumCharacters",
|
|
4603
4659
|
"kind": 1024,
|
|
4604
4660
|
"kindString": "Property",
|
|
@@ -4619,7 +4675,7 @@
|
|
|
4619
4675
|
"defaultValue": "2"
|
|
4620
4676
|
},
|
|
4621
4677
|
{
|
|
4622
|
-
"id":
|
|
4678
|
+
"id": 282,
|
|
4623
4679
|
"name": "selectedCountryChange",
|
|
4624
4680
|
"kind": 1024,
|
|
4625
4681
|
"kindString": "Property",
|
|
@@ -4651,7 +4707,7 @@
|
|
|
4651
4707
|
"typeArguments": [
|
|
4652
4708
|
{
|
|
4653
4709
|
"type": "reference",
|
|
4654
|
-
"id":
|
|
4710
|
+
"id": 567,
|
|
4655
4711
|
"name": "SkyCountryFieldCountry"
|
|
4656
4712
|
}
|
|
4657
4713
|
],
|
|
@@ -4660,7 +4716,7 @@
|
|
|
4660
4716
|
"defaultValue": "..."
|
|
4661
4717
|
},
|
|
4662
4718
|
{
|
|
4663
|
-
"id":
|
|
4719
|
+
"id": 265,
|
|
4664
4720
|
"name": "defaultCountry",
|
|
4665
4721
|
"kind": 262144,
|
|
4666
4722
|
"kindString": "Accessor",
|
|
@@ -4686,7 +4742,7 @@
|
|
|
4686
4742
|
],
|
|
4687
4743
|
"getSignature": [
|
|
4688
4744
|
{
|
|
4689
|
-
"id":
|
|
4745
|
+
"id": 266,
|
|
4690
4746
|
"name": "defaultCountry",
|
|
4691
4747
|
"kind": 524288,
|
|
4692
4748
|
"kindString": "Get signature",
|
|
@@ -4702,7 +4758,7 @@
|
|
|
4702
4758
|
],
|
|
4703
4759
|
"setSignature": [
|
|
4704
4760
|
{
|
|
4705
|
-
"id":
|
|
4761
|
+
"id": 267,
|
|
4706
4762
|
"name": "defaultCountry",
|
|
4707
4763
|
"kind": 1048576,
|
|
4708
4764
|
"kindString": "Set signature",
|
|
@@ -4718,7 +4774,7 @@
|
|
|
4718
4774
|
},
|
|
4719
4775
|
"parameters": [
|
|
4720
4776
|
{
|
|
4721
|
-
"id":
|
|
4777
|
+
"id": 268,
|
|
4722
4778
|
"name": "value",
|
|
4723
4779
|
"kind": 32768,
|
|
4724
4780
|
"kindString": "Parameter",
|
|
@@ -4737,7 +4793,7 @@
|
|
|
4737
4793
|
]
|
|
4738
4794
|
},
|
|
4739
4795
|
{
|
|
4740
|
-
"id":
|
|
4796
|
+
"id": 269,
|
|
4741
4797
|
"name": "disabled",
|
|
4742
4798
|
"kind": 262144,
|
|
4743
4799
|
"kindString": "Accessor",
|
|
@@ -4763,7 +4819,7 @@
|
|
|
4763
4819
|
],
|
|
4764
4820
|
"getSignature": [
|
|
4765
4821
|
{
|
|
4766
|
-
"id":
|
|
4822
|
+
"id": 270,
|
|
4767
4823
|
"name": "disabled",
|
|
4768
4824
|
"kind": 524288,
|
|
4769
4825
|
"kindString": "Get signature",
|
|
@@ -4779,7 +4835,7 @@
|
|
|
4779
4835
|
],
|
|
4780
4836
|
"setSignature": [
|
|
4781
4837
|
{
|
|
4782
|
-
"id":
|
|
4838
|
+
"id": 271,
|
|
4783
4839
|
"name": "disabled",
|
|
4784
4840
|
"kind": 1048576,
|
|
4785
4841
|
"kindString": "Set signature",
|
|
@@ -4789,7 +4845,7 @@
|
|
|
4789
4845
|
},
|
|
4790
4846
|
"parameters": [
|
|
4791
4847
|
{
|
|
4792
|
-
"id":
|
|
4848
|
+
"id": 272,
|
|
4793
4849
|
"name": "isDisabled",
|
|
4794
4850
|
"kind": 32768,
|
|
4795
4851
|
"kindString": "Parameter",
|
|
@@ -4808,7 +4864,7 @@
|
|
|
4808
4864
|
]
|
|
4809
4865
|
},
|
|
4810
4866
|
{
|
|
4811
|
-
"id":
|
|
4867
|
+
"id": 274,
|
|
4812
4868
|
"name": "includePhoneInfo",
|
|
4813
4869
|
"kind": 262144,
|
|
4814
4870
|
"kindString": "Accessor",
|
|
@@ -4834,7 +4890,7 @@
|
|
|
4834
4890
|
],
|
|
4835
4891
|
"getSignature": [
|
|
4836
4892
|
{
|
|
4837
|
-
"id":
|
|
4893
|
+
"id": 275,
|
|
4838
4894
|
"name": "includePhoneInfo",
|
|
4839
4895
|
"kind": 524288,
|
|
4840
4896
|
"kindString": "Get signature",
|
|
@@ -4850,7 +4906,7 @@
|
|
|
4850
4906
|
],
|
|
4851
4907
|
"setSignature": [
|
|
4852
4908
|
{
|
|
4853
|
-
"id":
|
|
4909
|
+
"id": 276,
|
|
4854
4910
|
"name": "includePhoneInfo",
|
|
4855
4911
|
"kind": 1048576,
|
|
4856
4912
|
"kindString": "Set signature",
|
|
@@ -4866,7 +4922,7 @@
|
|
|
4866
4922
|
},
|
|
4867
4923
|
"parameters": [
|
|
4868
4924
|
{
|
|
4869
|
-
"id":
|
|
4925
|
+
"id": 277,
|
|
4870
4926
|
"name": "includePhoneInfo",
|
|
4871
4927
|
"kind": 32768,
|
|
4872
4928
|
"kindString": "Parameter",
|
|
@@ -4885,7 +4941,7 @@
|
|
|
4885
4941
|
]
|
|
4886
4942
|
},
|
|
4887
4943
|
{
|
|
4888
|
-
"id":
|
|
4944
|
+
"id": 288,
|
|
4889
4945
|
"name": "selectedCountry",
|
|
4890
4946
|
"kind": 262144,
|
|
4891
4947
|
"kindString": "Accessor",
|
|
@@ -4901,35 +4957,35 @@
|
|
|
4901
4957
|
],
|
|
4902
4958
|
"getSignature": [
|
|
4903
4959
|
{
|
|
4904
|
-
"id":
|
|
4960
|
+
"id": 289,
|
|
4905
4961
|
"name": "selectedCountry",
|
|
4906
4962
|
"kind": 524288,
|
|
4907
4963
|
"kindString": "Get signature",
|
|
4908
4964
|
"flags": {},
|
|
4909
4965
|
"type": {
|
|
4910
4966
|
"type": "reference",
|
|
4911
|
-
"id":
|
|
4967
|
+
"id": 567,
|
|
4912
4968
|
"name": "SkyCountryFieldCountry"
|
|
4913
4969
|
}
|
|
4914
4970
|
}
|
|
4915
4971
|
],
|
|
4916
4972
|
"setSignature": [
|
|
4917
4973
|
{
|
|
4918
|
-
"id":
|
|
4974
|
+
"id": 290,
|
|
4919
4975
|
"name": "selectedCountry",
|
|
4920
4976
|
"kind": 1048576,
|
|
4921
4977
|
"kindString": "Set signature",
|
|
4922
4978
|
"flags": {},
|
|
4923
4979
|
"parameters": [
|
|
4924
4980
|
{
|
|
4925
|
-
"id":
|
|
4981
|
+
"id": 291,
|
|
4926
4982
|
"name": "newCountry",
|
|
4927
4983
|
"kind": 32768,
|
|
4928
4984
|
"kindString": "Parameter",
|
|
4929
4985
|
"flags": {},
|
|
4930
4986
|
"type": {
|
|
4931
4987
|
"type": "reference",
|
|
4932
|
-
"id":
|
|
4988
|
+
"id": 567,
|
|
4933
4989
|
"name": "SkyCountryFieldCountry"
|
|
4934
4990
|
}
|
|
4935
4991
|
}
|
|
@@ -4942,7 +4998,7 @@
|
|
|
4942
4998
|
]
|
|
4943
4999
|
},
|
|
4944
5000
|
{
|
|
4945
|
-
"id":
|
|
5001
|
+
"id": 278,
|
|
4946
5002
|
"name": "supportedCountryISOs",
|
|
4947
5003
|
"kind": 262144,
|
|
4948
5004
|
"kindString": "Accessor",
|
|
@@ -4968,7 +5024,7 @@
|
|
|
4968
5024
|
],
|
|
4969
5025
|
"getSignature": [
|
|
4970
5026
|
{
|
|
4971
|
-
"id":
|
|
5027
|
+
"id": 279,
|
|
4972
5028
|
"name": "supportedCountryISOs",
|
|
4973
5029
|
"kind": 524288,
|
|
4974
5030
|
"kindString": "Get signature",
|
|
@@ -4987,7 +5043,7 @@
|
|
|
4987
5043
|
],
|
|
4988
5044
|
"setSignature": [
|
|
4989
5045
|
{
|
|
4990
|
-
"id":
|
|
5046
|
+
"id": 280,
|
|
4991
5047
|
"name": "supportedCountryISOs",
|
|
4992
5048
|
"kind": 1048576,
|
|
4993
5049
|
"kindString": "Set signature",
|
|
@@ -4997,7 +5053,7 @@
|
|
|
4997
5053
|
},
|
|
4998
5054
|
"parameters": [
|
|
4999
5055
|
{
|
|
5000
|
-
"id":
|
|
5056
|
+
"id": 281,
|
|
5001
5057
|
"name": "value",
|
|
5002
5058
|
"kind": 32768,
|
|
5003
5059
|
"kindString": "Parameter",
|
|
@@ -5019,7 +5075,7 @@
|
|
|
5019
5075
|
]
|
|
5020
5076
|
},
|
|
5021
5077
|
{
|
|
5022
|
-
"id":
|
|
5078
|
+
"id": 310,
|
|
5023
5079
|
"name": "ngAfterViewInit",
|
|
5024
5080
|
"kind": 2048,
|
|
5025
5081
|
"kindString": "Method",
|
|
@@ -5035,7 +5091,7 @@
|
|
|
5035
5091
|
],
|
|
5036
5092
|
"signatures": [
|
|
5037
5093
|
{
|
|
5038
|
-
"id":
|
|
5094
|
+
"id": 311,
|
|
5039
5095
|
"name": "ngAfterViewInit",
|
|
5040
5096
|
"kind": 4096,
|
|
5041
5097
|
"kindString": "Call signature",
|
|
@@ -5056,7 +5112,7 @@
|
|
|
5056
5112
|
}
|
|
5057
5113
|
},
|
|
5058
5114
|
{
|
|
5059
|
-
"id":
|
|
5115
|
+
"id": 321,
|
|
5060
5116
|
"name": "registerOnChange",
|
|
5061
5117
|
"kind": 2048,
|
|
5062
5118
|
"kindString": "Method",
|
|
@@ -5072,14 +5128,14 @@
|
|
|
5072
5128
|
],
|
|
5073
5129
|
"signatures": [
|
|
5074
5130
|
{
|
|
5075
|
-
"id":
|
|
5131
|
+
"id": 322,
|
|
5076
5132
|
"name": "registerOnChange",
|
|
5077
5133
|
"kind": 4096,
|
|
5078
5134
|
"kindString": "Call signature",
|
|
5079
5135
|
"flags": {},
|
|
5080
5136
|
"parameters": [
|
|
5081
5137
|
{
|
|
5082
|
-
"id":
|
|
5138
|
+
"id": 323,
|
|
5083
5139
|
"name": "fn",
|
|
5084
5140
|
"kind": 32768,
|
|
5085
5141
|
"kindString": "Parameter",
|
|
@@ -5087,21 +5143,21 @@
|
|
|
5087
5143
|
"type": {
|
|
5088
5144
|
"type": "reflection",
|
|
5089
5145
|
"declaration": {
|
|
5090
|
-
"id":
|
|
5146
|
+
"id": 324,
|
|
5091
5147
|
"name": "__type",
|
|
5092
5148
|
"kind": 65536,
|
|
5093
5149
|
"kindString": "Type literal",
|
|
5094
5150
|
"flags": {},
|
|
5095
5151
|
"signatures": [
|
|
5096
5152
|
{
|
|
5097
|
-
"id":
|
|
5153
|
+
"id": 325,
|
|
5098
5154
|
"name": "__type",
|
|
5099
5155
|
"kind": 4096,
|
|
5100
5156
|
"kindString": "Call signature",
|
|
5101
5157
|
"flags": {},
|
|
5102
5158
|
"parameters": [
|
|
5103
5159
|
{
|
|
5104
|
-
"id":
|
|
5160
|
+
"id": 326,
|
|
5105
5161
|
"name": "value",
|
|
5106
5162
|
"kind": 32768,
|
|
5107
5163
|
"kindString": "Parameter",
|
|
@@ -5138,7 +5194,7 @@
|
|
|
5138
5194
|
}
|
|
5139
5195
|
},
|
|
5140
5196
|
{
|
|
5141
|
-
"id":
|
|
5197
|
+
"id": 327,
|
|
5142
5198
|
"name": "registerOnTouched",
|
|
5143
5199
|
"kind": 2048,
|
|
5144
5200
|
"kindString": "Method",
|
|
@@ -5154,14 +5210,14 @@
|
|
|
5154
5210
|
],
|
|
5155
5211
|
"signatures": [
|
|
5156
5212
|
{
|
|
5157
|
-
"id":
|
|
5213
|
+
"id": 328,
|
|
5158
5214
|
"name": "registerOnTouched",
|
|
5159
5215
|
"kind": 4096,
|
|
5160
5216
|
"kindString": "Call signature",
|
|
5161
5217
|
"flags": {},
|
|
5162
5218
|
"parameters": [
|
|
5163
5219
|
{
|
|
5164
|
-
"id":
|
|
5220
|
+
"id": 329,
|
|
5165
5221
|
"name": "fn",
|
|
5166
5222
|
"kind": 32768,
|
|
5167
5223
|
"kindString": "Parameter",
|
|
@@ -5169,14 +5225,14 @@
|
|
|
5169
5225
|
"type": {
|
|
5170
5226
|
"type": "reflection",
|
|
5171
5227
|
"declaration": {
|
|
5172
|
-
"id":
|
|
5228
|
+
"id": 330,
|
|
5173
5229
|
"name": "__type",
|
|
5174
5230
|
"kind": 65536,
|
|
5175
5231
|
"kindString": "Type literal",
|
|
5176
5232
|
"flags": {},
|
|
5177
5233
|
"signatures": [
|
|
5178
5234
|
{
|
|
5179
|
-
"id":
|
|
5235
|
+
"id": 331,
|
|
5180
5236
|
"name": "__type",
|
|
5181
5237
|
"kind": 4096,
|
|
5182
5238
|
"kindString": "Call signature",
|
|
@@ -5207,7 +5263,7 @@
|
|
|
5207
5263
|
}
|
|
5208
5264
|
},
|
|
5209
5265
|
{
|
|
5210
|
-
"id":
|
|
5266
|
+
"id": 332,
|
|
5211
5267
|
"name": "setDisabledState",
|
|
5212
5268
|
"kind": 2048,
|
|
5213
5269
|
"kindString": "Method",
|
|
@@ -5223,14 +5279,14 @@
|
|
|
5223
5279
|
],
|
|
5224
5280
|
"signatures": [
|
|
5225
5281
|
{
|
|
5226
|
-
"id":
|
|
5282
|
+
"id": 333,
|
|
5227
5283
|
"name": "setDisabledState",
|
|
5228
5284
|
"kind": 4096,
|
|
5229
5285
|
"kindString": "Call signature",
|
|
5230
5286
|
"flags": {},
|
|
5231
5287
|
"parameters": [
|
|
5232
5288
|
{
|
|
5233
|
-
"id":
|
|
5289
|
+
"id": 334,
|
|
5234
5290
|
"name": "disabled",
|
|
5235
5291
|
"kind": 32768,
|
|
5236
5292
|
"kindString": "Parameter",
|
|
@@ -5257,7 +5313,7 @@
|
|
|
5257
5313
|
}
|
|
5258
5314
|
},
|
|
5259
5315
|
{
|
|
5260
|
-
"id":
|
|
5316
|
+
"id": 335,
|
|
5261
5317
|
"name": "validate",
|
|
5262
5318
|
"kind": 2048,
|
|
5263
5319
|
"kindString": "Method",
|
|
@@ -5273,14 +5329,14 @@
|
|
|
5273
5329
|
],
|
|
5274
5330
|
"signatures": [
|
|
5275
5331
|
{
|
|
5276
|
-
"id":
|
|
5332
|
+
"id": 336,
|
|
5277
5333
|
"name": "validate",
|
|
5278
5334
|
"kind": 4096,
|
|
5279
5335
|
"kindString": "Call signature",
|
|
5280
5336
|
"flags": {},
|
|
5281
5337
|
"parameters": [
|
|
5282
5338
|
{
|
|
5283
|
-
"id":
|
|
5339
|
+
"id": 337,
|
|
5284
5340
|
"name": "control",
|
|
5285
5341
|
"kind": 32768,
|
|
5286
5342
|
"kindString": "Parameter",
|
|
@@ -5307,7 +5363,7 @@
|
|
|
5307
5363
|
}
|
|
5308
5364
|
},
|
|
5309
5365
|
{
|
|
5310
|
-
"id":
|
|
5366
|
+
"id": 338,
|
|
5311
5367
|
"name": "writeValue",
|
|
5312
5368
|
"kind": 2048,
|
|
5313
5369
|
"kindString": "Method",
|
|
@@ -5323,21 +5379,21 @@
|
|
|
5323
5379
|
],
|
|
5324
5380
|
"signatures": [
|
|
5325
5381
|
{
|
|
5326
|
-
"id":
|
|
5382
|
+
"id": 339,
|
|
5327
5383
|
"name": "writeValue",
|
|
5328
5384
|
"kind": 4096,
|
|
5329
5385
|
"kindString": "Call signature",
|
|
5330
5386
|
"flags": {},
|
|
5331
5387
|
"parameters": [
|
|
5332
5388
|
{
|
|
5333
|
-
"id":
|
|
5389
|
+
"id": 340,
|
|
5334
5390
|
"name": "value",
|
|
5335
5391
|
"kind": 32768,
|
|
5336
5392
|
"kindString": "Parameter",
|
|
5337
5393
|
"flags": {},
|
|
5338
5394
|
"type": {
|
|
5339
5395
|
"type": "reference",
|
|
5340
|
-
"id":
|
|
5396
|
+
"id": 567,
|
|
5341
5397
|
"name": "SkyCountryFieldCountry"
|
|
5342
5398
|
}
|
|
5343
5399
|
}
|
|
@@ -5363,49 +5419,49 @@
|
|
|
5363
5419
|
"title": "Constructors",
|
|
5364
5420
|
"kind": 512,
|
|
5365
5421
|
"children": [
|
|
5366
|
-
|
|
5422
|
+
256
|
|
5367
5423
|
]
|
|
5368
5424
|
},
|
|
5369
5425
|
{
|
|
5370
5426
|
"title": "Properties",
|
|
5371
5427
|
"kind": 1024,
|
|
5372
5428
|
"children": [
|
|
5373
|
-
|
|
5374
|
-
|
|
5375
|
-
282,
|
|
5376
|
-
279,
|
|
5429
|
+
264,
|
|
5430
|
+
283,
|
|
5377
5431
|
287,
|
|
5378
|
-
|
|
5379
|
-
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
|
|
5384
|
-
|
|
5385
|
-
|
|
5432
|
+
284,
|
|
5433
|
+
292,
|
|
5434
|
+
273,
|
|
5435
|
+
307,
|
|
5436
|
+
293,
|
|
5437
|
+
285,
|
|
5438
|
+
319,
|
|
5439
|
+
320,
|
|
5440
|
+
286,
|
|
5441
|
+
282
|
|
5386
5442
|
]
|
|
5387
5443
|
},
|
|
5388
5444
|
{
|
|
5389
5445
|
"title": "Accessors",
|
|
5390
5446
|
"kind": 262144,
|
|
5391
5447
|
"children": [
|
|
5392
|
-
|
|
5393
|
-
264,
|
|
5448
|
+
265,
|
|
5394
5449
|
269,
|
|
5395
|
-
|
|
5396
|
-
|
|
5450
|
+
274,
|
|
5451
|
+
288,
|
|
5452
|
+
278
|
|
5397
5453
|
]
|
|
5398
5454
|
},
|
|
5399
5455
|
{
|
|
5400
5456
|
"title": "Methods",
|
|
5401
5457
|
"kind": 2048,
|
|
5402
5458
|
"children": [
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
322,
|
|
5459
|
+
310,
|
|
5460
|
+
321,
|
|
5406
5461
|
327,
|
|
5407
|
-
|
|
5408
|
-
|
|
5462
|
+
332,
|
|
5463
|
+
335,
|
|
5464
|
+
338
|
|
5409
5465
|
]
|
|
5410
5466
|
}
|
|
5411
5467
|
],
|
|
@@ -5440,7 +5496,7 @@
|
|
|
5440
5496
|
]
|
|
5441
5497
|
},
|
|
5442
5498
|
{
|
|
5443
|
-
"id":
|
|
5499
|
+
"id": 360,
|
|
5444
5500
|
"name": "SkyLookupComponent",
|
|
5445
5501
|
"kind": 128,
|
|
5446
5502
|
"kindString": "Class",
|
|
@@ -5459,7 +5515,7 @@
|
|
|
5459
5515
|
],
|
|
5460
5516
|
"children": [
|
|
5461
5517
|
{
|
|
5462
|
-
"id":
|
|
5518
|
+
"id": 361,
|
|
5463
5519
|
"name": "constructor",
|
|
5464
5520
|
"kind": 512,
|
|
5465
5521
|
"kindString": "Constructor",
|
|
@@ -5467,20 +5523,20 @@
|
|
|
5467
5523
|
"sources": [
|
|
5468
5524
|
{
|
|
5469
5525
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5470
|
-
"line":
|
|
5526
|
+
"line": 273,
|
|
5471
5527
|
"character": 2
|
|
5472
5528
|
}
|
|
5473
5529
|
],
|
|
5474
5530
|
"signatures": [
|
|
5475
5531
|
{
|
|
5476
|
-
"id":
|
|
5532
|
+
"id": 362,
|
|
5477
5533
|
"name": "SkyLookupComponent",
|
|
5478
5534
|
"kind": 16384,
|
|
5479
5535
|
"kindString": "Constructor signature",
|
|
5480
5536
|
"flags": {},
|
|
5481
5537
|
"parameters": [
|
|
5482
5538
|
{
|
|
5483
|
-
"id":
|
|
5539
|
+
"id": 363,
|
|
5484
5540
|
"name": "changeDetector",
|
|
5485
5541
|
"kind": 32768,
|
|
5486
5542
|
"kindString": "Parameter",
|
|
@@ -5491,7 +5547,7 @@
|
|
|
5491
5547
|
}
|
|
5492
5548
|
},
|
|
5493
5549
|
{
|
|
5494
|
-
"id":
|
|
5550
|
+
"id": 364,
|
|
5495
5551
|
"name": "elementRef",
|
|
5496
5552
|
"kind": 32768,
|
|
5497
5553
|
"kindString": "Parameter",
|
|
@@ -5508,7 +5564,7 @@
|
|
|
5508
5564
|
}
|
|
5509
5565
|
},
|
|
5510
5566
|
{
|
|
5511
|
-
"id":
|
|
5567
|
+
"id": 365,
|
|
5512
5568
|
"name": "windowRef",
|
|
5513
5569
|
"kind": 32768,
|
|
5514
5570
|
"kindString": "Parameter",
|
|
@@ -5519,7 +5575,7 @@
|
|
|
5519
5575
|
}
|
|
5520
5576
|
},
|
|
5521
5577
|
{
|
|
5522
|
-
"id":
|
|
5578
|
+
"id": 366,
|
|
5523
5579
|
"name": "ngControl",
|
|
5524
5580
|
"kind": 32768,
|
|
5525
5581
|
"kindString": "Parameter",
|
|
@@ -5548,7 +5604,7 @@
|
|
|
5548
5604
|
}
|
|
5549
5605
|
},
|
|
5550
5606
|
{
|
|
5551
|
-
"id":
|
|
5607
|
+
"id": 367,
|
|
5552
5608
|
"name": "adapter",
|
|
5553
5609
|
"kind": 32768,
|
|
5554
5610
|
"kindString": "Parameter",
|
|
@@ -5559,7 +5615,7 @@
|
|
|
5559
5615
|
}
|
|
5560
5616
|
},
|
|
5561
5617
|
{
|
|
5562
|
-
"id":
|
|
5618
|
+
"id": 368,
|
|
5563
5619
|
"name": "modalService",
|
|
5564
5620
|
"kind": 32768,
|
|
5565
5621
|
"kindString": "Parameter",
|
|
@@ -5570,7 +5626,7 @@
|
|
|
5570
5626
|
}
|
|
5571
5627
|
},
|
|
5572
5628
|
{
|
|
5573
|
-
"id":
|
|
5629
|
+
"id": 369,
|
|
5574
5630
|
"name": "resourcesService",
|
|
5575
5631
|
"kind": 32768,
|
|
5576
5632
|
"kindString": "Parameter",
|
|
@@ -5581,7 +5637,7 @@
|
|
|
5581
5637
|
}
|
|
5582
5638
|
},
|
|
5583
5639
|
{
|
|
5584
|
-
"id":
|
|
5640
|
+
"id": 370,
|
|
5585
5641
|
"name": "inputBoxHostSvc",
|
|
5586
5642
|
"kind": 32768,
|
|
5587
5643
|
"kindString": "Parameter",
|
|
@@ -5604,7 +5660,7 @@
|
|
|
5604
5660
|
}
|
|
5605
5661
|
},
|
|
5606
5662
|
{
|
|
5607
|
-
"id":
|
|
5663
|
+
"id": 371,
|
|
5608
5664
|
"name": "themeSvc",
|
|
5609
5665
|
"kind": 32768,
|
|
5610
5666
|
"kindString": "Parameter",
|
|
@@ -5629,7 +5685,7 @@
|
|
|
5629
5685
|
],
|
|
5630
5686
|
"type": {
|
|
5631
5687
|
"type": "reference",
|
|
5632
|
-
"id":
|
|
5688
|
+
"id": 360,
|
|
5633
5689
|
"name": "SkyLookupComponent"
|
|
5634
5690
|
},
|
|
5635
5691
|
"overwrites": {
|
|
@@ -5644,7 +5700,7 @@
|
|
|
5644
5700
|
}
|
|
5645
5701
|
},
|
|
5646
5702
|
{
|
|
5647
|
-
"id":
|
|
5703
|
+
"id": 390,
|
|
5648
5704
|
"name": "addClick",
|
|
5649
5705
|
"kind": 1024,
|
|
5650
5706
|
"kindString": "Property",
|
|
@@ -5667,7 +5723,7 @@
|
|
|
5667
5723
|
"sources": [
|
|
5668
5724
|
{
|
|
5669
5725
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5670
|
-
"line":
|
|
5726
|
+
"line": 181,
|
|
5671
5727
|
"character": 9
|
|
5672
5728
|
}
|
|
5673
5729
|
],
|
|
@@ -5676,7 +5732,7 @@
|
|
|
5676
5732
|
"typeArguments": [
|
|
5677
5733
|
{
|
|
5678
5734
|
"type": "reference",
|
|
5679
|
-
"id":
|
|
5735
|
+
"id": 579,
|
|
5680
5736
|
"name": "SkyLookupAddClickEventArgs"
|
|
5681
5737
|
}
|
|
5682
5738
|
],
|
|
@@ -5685,7 +5741,7 @@
|
|
|
5685
5741
|
"defaultValue": "..."
|
|
5686
5742
|
},
|
|
5687
5743
|
{
|
|
5688
|
-
"id":
|
|
5744
|
+
"id": 372,
|
|
5689
5745
|
"name": "ariaLabel",
|
|
5690
5746
|
"kind": 1024,
|
|
5691
5747
|
"kindString": "Property",
|
|
@@ -5708,7 +5764,7 @@
|
|
|
5708
5764
|
"sources": [
|
|
5709
5765
|
{
|
|
5710
5766
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5711
|
-
"line":
|
|
5767
|
+
"line": 70,
|
|
5712
5768
|
"character": 9
|
|
5713
5769
|
}
|
|
5714
5770
|
],
|
|
@@ -5718,7 +5774,7 @@
|
|
|
5718
5774
|
}
|
|
5719
5775
|
},
|
|
5720
5776
|
{
|
|
5721
|
-
"id":
|
|
5777
|
+
"id": 373,
|
|
5722
5778
|
"name": "ariaLabelledBy",
|
|
5723
5779
|
"kind": 1024,
|
|
5724
5780
|
"kindString": "Property",
|
|
@@ -5741,7 +5797,7 @@
|
|
|
5741
5797
|
"sources": [
|
|
5742
5798
|
{
|
|
5743
5799
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5744
|
-
"line":
|
|
5800
|
+
"line": 79,
|
|
5745
5801
|
"character": 9
|
|
5746
5802
|
}
|
|
5747
5803
|
],
|
|
@@ -5751,7 +5807,7 @@
|
|
|
5751
5807
|
}
|
|
5752
5808
|
},
|
|
5753
5809
|
{
|
|
5754
|
-
"id":
|
|
5810
|
+
"id": 374,
|
|
5755
5811
|
"name": "autocompleteAttribute",
|
|
5756
5812
|
"kind": 1024,
|
|
5757
5813
|
"kindString": "Property",
|
|
@@ -5780,7 +5836,7 @@
|
|
|
5780
5836
|
"sources": [
|
|
5781
5837
|
{
|
|
5782
5838
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5783
|
-
"line":
|
|
5839
|
+
"line": 86,
|
|
5784
5840
|
"character": 9
|
|
5785
5841
|
}
|
|
5786
5842
|
],
|
|
@@ -5790,7 +5846,7 @@
|
|
|
5790
5846
|
}
|
|
5791
5847
|
},
|
|
5792
5848
|
{
|
|
5793
|
-
"id":
|
|
5849
|
+
"id": 399,
|
|
5794
5850
|
"name": "autocompleteController",
|
|
5795
5851
|
"kind": 1024,
|
|
5796
5852
|
"kindString": "Property",
|
|
@@ -5800,7 +5856,7 @@
|
|
|
5800
5856
|
"sources": [
|
|
5801
5857
|
{
|
|
5802
5858
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5803
|
-
"line":
|
|
5859
|
+
"line": 222,
|
|
5804
5860
|
"character": 9
|
|
5805
5861
|
}
|
|
5806
5862
|
],
|
|
@@ -5817,7 +5873,7 @@
|
|
|
5817
5873
|
"defaultValue": "..."
|
|
5818
5874
|
},
|
|
5819
5875
|
{
|
|
5820
|
-
"id":
|
|
5876
|
+
"id": 512,
|
|
5821
5877
|
"name": "debounceTime",
|
|
5822
5878
|
"kind": 1024,
|
|
5823
5879
|
"kindString": "Property",
|
|
@@ -5846,7 +5902,7 @@
|
|
|
5846
5902
|
"sources": [
|
|
5847
5903
|
{
|
|
5848
5904
|
"fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
|
|
5849
|
-
"line":
|
|
5905
|
+
"line": 27,
|
|
5850
5906
|
"character": 9
|
|
5851
5907
|
}
|
|
5852
5908
|
],
|
|
@@ -5860,7 +5916,7 @@
|
|
|
5860
5916
|
}
|
|
5861
5917
|
},
|
|
5862
5918
|
{
|
|
5863
|
-
"id":
|
|
5919
|
+
"id": 379,
|
|
5864
5920
|
"name": "disabled",
|
|
5865
5921
|
"kind": 1024,
|
|
5866
5922
|
"kindString": "Property",
|
|
@@ -5883,7 +5939,7 @@
|
|
|
5883
5939
|
"sources": [
|
|
5884
5940
|
{
|
|
5885
5941
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5886
|
-
"line":
|
|
5942
|
+
"line": 111,
|
|
5887
5943
|
"character": 9
|
|
5888
5944
|
}
|
|
5889
5945
|
],
|
|
@@ -5894,7 +5950,7 @@
|
|
|
5894
5950
|
"defaultValue": "false"
|
|
5895
5951
|
},
|
|
5896
5952
|
{
|
|
5897
|
-
"id":
|
|
5953
|
+
"id": 380,
|
|
5898
5954
|
"name": "enableShowMore",
|
|
5899
5955
|
"kind": 1024,
|
|
5900
5956
|
"kindString": "Property",
|
|
@@ -5917,7 +5973,7 @@
|
|
|
5917
5973
|
"sources": [
|
|
5918
5974
|
{
|
|
5919
5975
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5920
|
-
"line":
|
|
5976
|
+
"line": 117,
|
|
5921
5977
|
"character": 9
|
|
5922
5978
|
}
|
|
5923
5979
|
],
|
|
@@ -5928,7 +5984,7 @@
|
|
|
5928
5984
|
"defaultValue": "false"
|
|
5929
5985
|
},
|
|
5930
5986
|
{
|
|
5931
|
-
"id":
|
|
5987
|
+
"id": 382,
|
|
5932
5988
|
"name": "idProperty",
|
|
5933
5989
|
"kind": 1024,
|
|
5934
5990
|
"kindString": "Property",
|
|
@@ -5951,7 +6007,7 @@
|
|
|
5951
6007
|
"sources": [
|
|
5952
6008
|
{
|
|
5953
6009
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5954
|
-
"line":
|
|
6010
|
+
"line": 130,
|
|
5955
6011
|
"character": 9
|
|
5956
6012
|
}
|
|
5957
6013
|
],
|
|
@@ -5961,7 +6017,7 @@
|
|
|
5961
6017
|
}
|
|
5962
6018
|
},
|
|
5963
6019
|
{
|
|
5964
|
-
"id":
|
|
6020
|
+
"id": 419,
|
|
5965
6021
|
"name": "inputBoxHostSvc",
|
|
5966
6022
|
"kind": 1024,
|
|
5967
6023
|
"kindString": "Property",
|
|
@@ -5975,7 +6031,7 @@
|
|
|
5975
6031
|
}
|
|
5976
6032
|
},
|
|
5977
6033
|
{
|
|
5978
|
-
"id":
|
|
6034
|
+
"id": 400,
|
|
5979
6035
|
"name": "isInputFocused",
|
|
5980
6036
|
"kind": 1024,
|
|
5981
6037
|
"kindString": "Property",
|
|
@@ -5985,7 +6041,7 @@
|
|
|
5985
6041
|
"sources": [
|
|
5986
6042
|
{
|
|
5987
6043
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
5988
|
-
"line":
|
|
6044
|
+
"line": 223,
|
|
5989
6045
|
"character": 9
|
|
5990
6046
|
}
|
|
5991
6047
|
],
|
|
@@ -5996,7 +6052,7 @@
|
|
|
5996
6052
|
"defaultValue": "false"
|
|
5997
6053
|
},
|
|
5998
6054
|
{
|
|
5999
|
-
"id":
|
|
6055
|
+
"id": 381,
|
|
6000
6056
|
"name": "placeholderText",
|
|
6001
6057
|
"kind": 1024,
|
|
6002
6058
|
"kindString": "Property",
|
|
@@ -6019,7 +6075,7 @@
|
|
|
6019
6075
|
"sources": [
|
|
6020
6076
|
{
|
|
6021
6077
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6022
|
-
"line":
|
|
6078
|
+
"line": 123,
|
|
6023
6079
|
"character": 9
|
|
6024
6080
|
}
|
|
6025
6081
|
],
|
|
@@ -6029,7 +6085,49 @@
|
|
|
6029
6085
|
}
|
|
6030
6086
|
},
|
|
6031
6087
|
{
|
|
6032
|
-
"id":
|
|
6088
|
+
"id": 529,
|
|
6089
|
+
"name": "searchAsync",
|
|
6090
|
+
"kind": 1024,
|
|
6091
|
+
"kindString": "Property",
|
|
6092
|
+
"flags": {
|
|
6093
|
+
"isPublic": true
|
|
6094
|
+
},
|
|
6095
|
+
"decorators": [
|
|
6096
|
+
{
|
|
6097
|
+
"name": "Output",
|
|
6098
|
+
"type": {
|
|
6099
|
+
"type": "reference",
|
|
6100
|
+
"name": "Output"
|
|
6101
|
+
},
|
|
6102
|
+
"arguments": {}
|
|
6103
|
+
}
|
|
6104
|
+
],
|
|
6105
|
+
"sources": [
|
|
6106
|
+
{
|
|
6107
|
+
"fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
|
|
6108
|
+
"line": 112,
|
|
6109
|
+
"character": 9
|
|
6110
|
+
}
|
|
6111
|
+
],
|
|
6112
|
+
"type": {
|
|
6113
|
+
"type": "reference",
|
|
6114
|
+
"typeArguments": [
|
|
6115
|
+
{
|
|
6116
|
+
"type": "reference",
|
|
6117
|
+
"id": 536,
|
|
6118
|
+
"name": "SkyAutocompleteSearchAsyncArgs"
|
|
6119
|
+
}
|
|
6120
|
+
],
|
|
6121
|
+
"name": "EventEmitter"
|
|
6122
|
+
},
|
|
6123
|
+
"defaultValue": "...",
|
|
6124
|
+
"inheritedFrom": {
|
|
6125
|
+
"type": "reference",
|
|
6126
|
+
"name": "SkyLookupAutocompleteAdapter.searchAsync"
|
|
6127
|
+
}
|
|
6128
|
+
},
|
|
6129
|
+
{
|
|
6130
|
+
"id": 527,
|
|
6033
6131
|
"name": "searchFilters",
|
|
6034
6132
|
"kind": 1024,
|
|
6035
6133
|
"kindString": "Property",
|
|
@@ -6052,7 +6150,7 @@
|
|
|
6052
6150
|
"sources": [
|
|
6053
6151
|
{
|
|
6054
6152
|
"fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
|
|
6055
|
-
"line":
|
|
6153
|
+
"line": 102,
|
|
6056
6154
|
"character": 9
|
|
6057
6155
|
}
|
|
6058
6156
|
],
|
|
@@ -6060,7 +6158,7 @@
|
|
|
6060
6158
|
"type": "array",
|
|
6061
6159
|
"elementType": {
|
|
6062
6160
|
"type": "reference",
|
|
6063
|
-
"id":
|
|
6161
|
+
"id": 553,
|
|
6064
6162
|
"name": "SkyAutocompleteSearchFunctionFilter"
|
|
6065
6163
|
}
|
|
6066
6164
|
},
|
|
@@ -6070,7 +6168,7 @@
|
|
|
6070
6168
|
}
|
|
6071
6169
|
},
|
|
6072
6170
|
{
|
|
6073
|
-
"id":
|
|
6171
|
+
"id": 525,
|
|
6074
6172
|
"name": "searchResultTemplate",
|
|
6075
6173
|
"kind": 1024,
|
|
6076
6174
|
"kindString": "Property",
|
|
@@ -6093,7 +6191,7 @@
|
|
|
6093
6191
|
"sources": [
|
|
6094
6192
|
{
|
|
6095
6193
|
"fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
|
|
6096
|
-
"line":
|
|
6194
|
+
"line": 83,
|
|
6097
6195
|
"character": 9
|
|
6098
6196
|
}
|
|
6099
6197
|
],
|
|
@@ -6113,7 +6211,7 @@
|
|
|
6113
6211
|
}
|
|
6114
6212
|
},
|
|
6115
6213
|
{
|
|
6116
|
-
"id":
|
|
6214
|
+
"id": 528,
|
|
6117
6215
|
"name": "searchResultsLimit",
|
|
6118
6216
|
"kind": 1024,
|
|
6119
6217
|
"kindString": "Property",
|
|
@@ -6136,7 +6234,7 @@
|
|
|
6136
6234
|
"sources": [
|
|
6137
6235
|
{
|
|
6138
6236
|
"fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
|
|
6139
|
-
"line":
|
|
6237
|
+
"line": 109,
|
|
6140
6238
|
"character": 9
|
|
6141
6239
|
}
|
|
6142
6240
|
],
|
|
@@ -6150,7 +6248,7 @@
|
|
|
6150
6248
|
}
|
|
6151
6249
|
},
|
|
6152
6250
|
{
|
|
6153
|
-
"id":
|
|
6251
|
+
"id": 526,
|
|
6154
6252
|
"name": "searchTextMinimumCharacters",
|
|
6155
6253
|
"kind": 1024,
|
|
6156
6254
|
"kindString": "Property",
|
|
@@ -6179,7 +6277,7 @@
|
|
|
6179
6277
|
"sources": [
|
|
6180
6278
|
{
|
|
6181
6279
|
"fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
|
|
6182
|
-
"line":
|
|
6280
|
+
"line": 92,
|
|
6183
6281
|
"character": 9
|
|
6184
6282
|
}
|
|
6185
6283
|
],
|
|
@@ -6193,7 +6291,7 @@
|
|
|
6193
6291
|
}
|
|
6194
6292
|
},
|
|
6195
6293
|
{
|
|
6196
|
-
"id":
|
|
6294
|
+
"id": 383,
|
|
6197
6295
|
"name": "showAddButton",
|
|
6198
6296
|
"kind": 1024,
|
|
6199
6297
|
"kindString": "Property",
|
|
@@ -6216,7 +6314,7 @@
|
|
|
6216
6314
|
"sources": [
|
|
6217
6315
|
{
|
|
6218
6316
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6219
|
-
"line":
|
|
6317
|
+
"line": 136,
|
|
6220
6318
|
"character": 9
|
|
6221
6319
|
}
|
|
6222
6320
|
],
|
|
@@ -6227,7 +6325,7 @@
|
|
|
6227
6325
|
"defaultValue": "false"
|
|
6228
6326
|
},
|
|
6229
6327
|
{
|
|
6230
|
-
"id":
|
|
6328
|
+
"id": 384,
|
|
6231
6329
|
"name": "showMoreConfig",
|
|
6232
6330
|
"kind": 1024,
|
|
6233
6331
|
"kindString": "Property",
|
|
@@ -6250,18 +6348,18 @@
|
|
|
6250
6348
|
"sources": [
|
|
6251
6349
|
{
|
|
6252
6350
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6253
|
-
"line":
|
|
6351
|
+
"line": 142,
|
|
6254
6352
|
"character": 9
|
|
6255
6353
|
}
|
|
6256
6354
|
],
|
|
6257
6355
|
"type": {
|
|
6258
6356
|
"type": "reference",
|
|
6259
|
-
"id":
|
|
6357
|
+
"id": 587,
|
|
6260
6358
|
"name": "SkyLookupShowMoreConfig"
|
|
6261
6359
|
}
|
|
6262
6360
|
},
|
|
6263
6361
|
{
|
|
6264
|
-
"id":
|
|
6362
|
+
"id": 420,
|
|
6265
6363
|
"name": "themeSvc",
|
|
6266
6364
|
"kind": 1024,
|
|
6267
6365
|
"kindString": "Property",
|
|
@@ -6275,7 +6373,7 @@
|
|
|
6275
6373
|
}
|
|
6276
6374
|
},
|
|
6277
6375
|
{
|
|
6278
|
-
"id":
|
|
6376
|
+
"id": 401,
|
|
6279
6377
|
"name": "tokensController",
|
|
6280
6378
|
"kind": 1024,
|
|
6281
6379
|
"kindString": "Property",
|
|
@@ -6285,7 +6383,7 @@
|
|
|
6285
6383
|
"sources": [
|
|
6286
6384
|
{
|
|
6287
6385
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6288
|
-
"line":
|
|
6386
|
+
"line": 224,
|
|
6289
6387
|
"character": 9
|
|
6290
6388
|
}
|
|
6291
6389
|
],
|
|
@@ -6302,7 +6400,7 @@
|
|
|
6302
6400
|
"defaultValue": "..."
|
|
6303
6401
|
},
|
|
6304
6402
|
{
|
|
6305
|
-
"id":
|
|
6403
|
+
"id": 375,
|
|
6306
6404
|
"name": "data",
|
|
6307
6405
|
"kind": 262144,
|
|
6308
6406
|
"kindString": "Accessor",
|
|
@@ -6322,13 +6420,13 @@
|
|
|
6322
6420
|
"sources": [
|
|
6323
6421
|
{
|
|
6324
6422
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6325
|
-
"line":
|
|
6423
|
+
"line": 95,
|
|
6326
6424
|
"character": 13
|
|
6327
6425
|
}
|
|
6328
6426
|
],
|
|
6329
6427
|
"getSignature": [
|
|
6330
6428
|
{
|
|
6331
|
-
"id":
|
|
6429
|
+
"id": 376,
|
|
6332
6430
|
"name": "data",
|
|
6333
6431
|
"kind": 524288,
|
|
6334
6432
|
"kindString": "Get signature",
|
|
@@ -6347,7 +6445,7 @@
|
|
|
6347
6445
|
],
|
|
6348
6446
|
"setSignature": [
|
|
6349
6447
|
{
|
|
6350
|
-
"id":
|
|
6448
|
+
"id": 377,
|
|
6351
6449
|
"name": "data",
|
|
6352
6450
|
"kind": 1048576,
|
|
6353
6451
|
"kindString": "Set signature",
|
|
@@ -6363,7 +6461,7 @@
|
|
|
6363
6461
|
},
|
|
6364
6462
|
"parameters": [
|
|
6365
6463
|
{
|
|
6366
|
-
"id":
|
|
6464
|
+
"id": 378,
|
|
6367
6465
|
"name": "value",
|
|
6368
6466
|
"kind": 32768,
|
|
6369
6467
|
"kindString": "Parameter",
|
|
@@ -6385,7 +6483,7 @@
|
|
|
6385
6483
|
]
|
|
6386
6484
|
},
|
|
6387
6485
|
{
|
|
6388
|
-
"id":
|
|
6486
|
+
"id": 513,
|
|
6389
6487
|
"name": "descriptorProperty",
|
|
6390
6488
|
"kind": 262144,
|
|
6391
6489
|
"kindString": "Accessor",
|
|
@@ -6405,13 +6503,13 @@
|
|
|
6405
6503
|
"sources": [
|
|
6406
6504
|
{
|
|
6407
6505
|
"fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
|
|
6408
|
-
"line":
|
|
6506
|
+
"line": 35,
|
|
6409
6507
|
"character": 13
|
|
6410
6508
|
}
|
|
6411
6509
|
],
|
|
6412
6510
|
"getSignature": [
|
|
6413
6511
|
{
|
|
6414
|
-
"id":
|
|
6512
|
+
"id": 514,
|
|
6415
6513
|
"name": "descriptorProperty",
|
|
6416
6514
|
"kind": 524288,
|
|
6417
6515
|
"kindString": "Get signature",
|
|
@@ -6427,7 +6525,7 @@
|
|
|
6427
6525
|
],
|
|
6428
6526
|
"setSignature": [
|
|
6429
6527
|
{
|
|
6430
|
-
"id":
|
|
6528
|
+
"id": 515,
|
|
6431
6529
|
"name": "descriptorProperty",
|
|
6432
6530
|
"kind": 1048576,
|
|
6433
6531
|
"kindString": "Set signature",
|
|
@@ -6443,7 +6541,7 @@
|
|
|
6443
6541
|
},
|
|
6444
6542
|
"parameters": [
|
|
6445
6543
|
{
|
|
6446
|
-
"id":
|
|
6544
|
+
"id": 516,
|
|
6447
6545
|
"name": "value",
|
|
6448
6546
|
"kind": 32768,
|
|
6449
6547
|
"kindString": "Parameter",
|
|
@@ -6462,7 +6560,7 @@
|
|
|
6462
6560
|
]
|
|
6463
6561
|
},
|
|
6464
6562
|
{
|
|
6465
|
-
"id":
|
|
6563
|
+
"id": 517,
|
|
6466
6564
|
"name": "propertiesToSearch",
|
|
6467
6565
|
"kind": 262144,
|
|
6468
6566
|
"kindString": "Accessor",
|
|
@@ -6482,13 +6580,13 @@
|
|
|
6482
6580
|
"sources": [
|
|
6483
6581
|
{
|
|
6484
6582
|
"fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
|
|
6485
|
-
"line":
|
|
6583
|
+
"line": 48,
|
|
6486
6584
|
"character": 13
|
|
6487
6585
|
}
|
|
6488
6586
|
],
|
|
6489
6587
|
"getSignature": [
|
|
6490
6588
|
{
|
|
6491
|
-
"id":
|
|
6589
|
+
"id": 518,
|
|
6492
6590
|
"name": "propertiesToSearch",
|
|
6493
6591
|
"kind": 524288,
|
|
6494
6592
|
"kindString": "Get signature",
|
|
@@ -6507,7 +6605,7 @@
|
|
|
6507
6605
|
],
|
|
6508
6606
|
"setSignature": [
|
|
6509
6607
|
{
|
|
6510
|
-
"id":
|
|
6608
|
+
"id": 519,
|
|
6511
6609
|
"name": "propertiesToSearch",
|
|
6512
6610
|
"kind": 1048576,
|
|
6513
6611
|
"kindString": "Set signature",
|
|
@@ -6523,7 +6621,7 @@
|
|
|
6523
6621
|
},
|
|
6524
6622
|
"parameters": [
|
|
6525
6623
|
{
|
|
6526
|
-
"id":
|
|
6624
|
+
"id": 520,
|
|
6527
6625
|
"name": "value",
|
|
6528
6626
|
"kind": 32768,
|
|
6529
6627
|
"kindString": "Parameter",
|
|
@@ -6545,7 +6643,7 @@
|
|
|
6545
6643
|
]
|
|
6546
6644
|
},
|
|
6547
6645
|
{
|
|
6548
|
-
"id":
|
|
6646
|
+
"id": 521,
|
|
6549
6647
|
"name": "search",
|
|
6550
6648
|
"kind": 262144,
|
|
6551
6649
|
"kindString": "Accessor",
|
|
@@ -6565,13 +6663,13 @@
|
|
|
6565
6663
|
"sources": [
|
|
6566
6664
|
{
|
|
6567
6665
|
"fileName": "projects/lookup/src/modules/lookup/lookup-autocomplete-adapter.ts",
|
|
6568
|
-
"line":
|
|
6666
|
+
"line": 63,
|
|
6569
6667
|
"character": 13
|
|
6570
6668
|
}
|
|
6571
6669
|
],
|
|
6572
6670
|
"getSignature": [
|
|
6573
6671
|
{
|
|
6574
|
-
"id":
|
|
6672
|
+
"id": 522,
|
|
6575
6673
|
"name": "search",
|
|
6576
6674
|
"kind": 524288,
|
|
6577
6675
|
"kindString": "Get signature",
|
|
@@ -6581,14 +6679,14 @@
|
|
|
6581
6679
|
},
|
|
6582
6680
|
"type": {
|
|
6583
6681
|
"type": "reference",
|
|
6584
|
-
"id":
|
|
6682
|
+
"id": 548,
|
|
6585
6683
|
"name": "SkyAutocompleteSearchFunction"
|
|
6586
6684
|
}
|
|
6587
6685
|
}
|
|
6588
6686
|
],
|
|
6589
6687
|
"setSignature": [
|
|
6590
6688
|
{
|
|
6591
|
-
"id":
|
|
6689
|
+
"id": 523,
|
|
6592
6690
|
"name": "search",
|
|
6593
6691
|
"kind": 1048576,
|
|
6594
6692
|
"kindString": "Set signature",
|
|
@@ -6598,14 +6696,14 @@
|
|
|
6598
6696
|
},
|
|
6599
6697
|
"parameters": [
|
|
6600
6698
|
{
|
|
6601
|
-
"id":
|
|
6699
|
+
"id": 524,
|
|
6602
6700
|
"name": "value",
|
|
6603
6701
|
"kind": 32768,
|
|
6604
6702
|
"kindString": "Parameter",
|
|
6605
6703
|
"flags": {},
|
|
6606
6704
|
"type": {
|
|
6607
6705
|
"type": "reference",
|
|
6608
|
-
"id":
|
|
6706
|
+
"id": 548,
|
|
6609
6707
|
"name": "SkyAutocompleteSearchFunction"
|
|
6610
6708
|
}
|
|
6611
6709
|
}
|
|
@@ -6618,7 +6716,7 @@
|
|
|
6618
6716
|
]
|
|
6619
6717
|
},
|
|
6620
6718
|
{
|
|
6621
|
-
"id":
|
|
6719
|
+
"id": 385,
|
|
6622
6720
|
"name": "selectMode",
|
|
6623
6721
|
"kind": 262144,
|
|
6624
6722
|
"kindString": "Accessor",
|
|
@@ -6638,13 +6736,13 @@
|
|
|
6638
6736
|
"sources": [
|
|
6639
6737
|
{
|
|
6640
6738
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6641
|
-
"line":
|
|
6739
|
+
"line": 149,
|
|
6642
6740
|
"character": 13
|
|
6643
6741
|
}
|
|
6644
6742
|
],
|
|
6645
6743
|
"getSignature": [
|
|
6646
6744
|
{
|
|
6647
|
-
"id":
|
|
6745
|
+
"id": 386,
|
|
6648
6746
|
"name": "selectMode",
|
|
6649
6747
|
"kind": 524288,
|
|
6650
6748
|
"kindString": "Get signature",
|
|
@@ -6654,14 +6752,14 @@
|
|
|
6654
6752
|
},
|
|
6655
6753
|
"type": {
|
|
6656
6754
|
"type": "reference",
|
|
6657
|
-
"id":
|
|
6755
|
+
"id": 586,
|
|
6658
6756
|
"name": "SkyLookupSelectModeType"
|
|
6659
6757
|
}
|
|
6660
6758
|
}
|
|
6661
6759
|
],
|
|
6662
6760
|
"setSignature": [
|
|
6663
6761
|
{
|
|
6664
|
-
"id":
|
|
6762
|
+
"id": 387,
|
|
6665
6763
|
"name": "selectMode",
|
|
6666
6764
|
"kind": 1048576,
|
|
6667
6765
|
"kindString": "Set signature",
|
|
@@ -6677,14 +6775,14 @@
|
|
|
6677
6775
|
},
|
|
6678
6776
|
"parameters": [
|
|
6679
6777
|
{
|
|
6680
|
-
"id":
|
|
6778
|
+
"id": 388,
|
|
6681
6779
|
"name": "value",
|
|
6682
6780
|
"kind": 32768,
|
|
6683
6781
|
"kindString": "Parameter",
|
|
6684
6782
|
"flags": {},
|
|
6685
6783
|
"type": {
|
|
6686
6784
|
"type": "reference",
|
|
6687
|
-
"id":
|
|
6785
|
+
"id": 586,
|
|
6688
6786
|
"name": "SkyLookupSelectModeType"
|
|
6689
6787
|
}
|
|
6690
6788
|
}
|
|
@@ -6697,7 +6795,7 @@
|
|
|
6697
6795
|
]
|
|
6698
6796
|
},
|
|
6699
6797
|
{
|
|
6700
|
-
"id":
|
|
6798
|
+
"id": 391,
|
|
6701
6799
|
"name": "tokens",
|
|
6702
6800
|
"kind": 262144,
|
|
6703
6801
|
"kindString": "Accessor",
|
|
@@ -6707,13 +6805,13 @@
|
|
|
6707
6805
|
"sources": [
|
|
6708
6806
|
{
|
|
6709
6807
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6710
|
-
"line":
|
|
6808
|
+
"line": 183,
|
|
6711
6809
|
"character": 13
|
|
6712
6810
|
}
|
|
6713
6811
|
],
|
|
6714
6812
|
"getSignature": [
|
|
6715
6813
|
{
|
|
6716
|
-
"id":
|
|
6814
|
+
"id": 392,
|
|
6717
6815
|
"name": "tokens",
|
|
6718
6816
|
"kind": 524288,
|
|
6719
6817
|
"kindString": "Get signature",
|
|
@@ -6729,14 +6827,14 @@
|
|
|
6729
6827
|
],
|
|
6730
6828
|
"setSignature": [
|
|
6731
6829
|
{
|
|
6732
|
-
"id":
|
|
6830
|
+
"id": 393,
|
|
6733
6831
|
"name": "tokens",
|
|
6734
6832
|
"kind": 1048576,
|
|
6735
6833
|
"kindString": "Set signature",
|
|
6736
6834
|
"flags": {},
|
|
6737
6835
|
"parameters": [
|
|
6738
6836
|
{
|
|
6739
|
-
"id":
|
|
6837
|
+
"id": 394,
|
|
6740
6838
|
"name": "value",
|
|
6741
6839
|
"kind": 32768,
|
|
6742
6840
|
"kindString": "Parameter",
|
|
@@ -6758,7 +6856,7 @@
|
|
|
6758
6856
|
]
|
|
6759
6857
|
},
|
|
6760
6858
|
{
|
|
6761
|
-
"id":
|
|
6859
|
+
"id": 395,
|
|
6762
6860
|
"name": "value",
|
|
6763
6861
|
"kind": 262144,
|
|
6764
6862
|
"kindString": "Accessor",
|
|
@@ -6768,13 +6866,13 @@
|
|
|
6768
6866
|
"sources": [
|
|
6769
6867
|
{
|
|
6770
6868
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6771
|
-
"line":
|
|
6869
|
+
"line": 207,
|
|
6772
6870
|
"character": 13
|
|
6773
6871
|
}
|
|
6774
6872
|
],
|
|
6775
6873
|
"getSignature": [
|
|
6776
6874
|
{
|
|
6777
|
-
"id":
|
|
6875
|
+
"id": 396,
|
|
6778
6876
|
"name": "value",
|
|
6779
6877
|
"kind": 524288,
|
|
6780
6878
|
"kindString": "Get signature",
|
|
@@ -6790,14 +6888,14 @@
|
|
|
6790
6888
|
],
|
|
6791
6889
|
"setSignature": [
|
|
6792
6890
|
{
|
|
6793
|
-
"id":
|
|
6891
|
+
"id": 397,
|
|
6794
6892
|
"name": "value",
|
|
6795
6893
|
"kind": 1048576,
|
|
6796
6894
|
"kindString": "Set signature",
|
|
6797
6895
|
"flags": {},
|
|
6798
6896
|
"parameters": [
|
|
6799
6897
|
{
|
|
6800
|
-
"id":
|
|
6898
|
+
"id": 398,
|
|
6801
6899
|
"name": "newValue",
|
|
6802
6900
|
"kind": 32768,
|
|
6803
6901
|
"kindString": "Parameter",
|
|
@@ -6819,7 +6917,7 @@
|
|
|
6819
6917
|
]
|
|
6820
6918
|
},
|
|
6821
6919
|
{
|
|
6822
|
-
"id":
|
|
6920
|
+
"id": 427,
|
|
6823
6921
|
"name": "addButtonClicked",
|
|
6824
6922
|
"kind": 2048,
|
|
6825
6923
|
"kindString": "Method",
|
|
@@ -6829,13 +6927,13 @@
|
|
|
6829
6927
|
"sources": [
|
|
6830
6928
|
{
|
|
6831
6929
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6832
|
-
"line":
|
|
6930
|
+
"line": 326,
|
|
6833
6931
|
"character": 9
|
|
6834
6932
|
}
|
|
6835
6933
|
],
|
|
6836
6934
|
"signatures": [
|
|
6837
6935
|
{
|
|
6838
|
-
"id":
|
|
6936
|
+
"id": 428,
|
|
6839
6937
|
"name": "addButtonClicked",
|
|
6840
6938
|
"kind": 4096,
|
|
6841
6939
|
"kindString": "Call signature",
|
|
@@ -6848,7 +6946,7 @@
|
|
|
6848
6946
|
]
|
|
6849
6947
|
},
|
|
6850
6948
|
{
|
|
6851
|
-
"id":
|
|
6949
|
+
"id": 464,
|
|
6852
6950
|
"name": "clearSearchText",
|
|
6853
6951
|
"kind": 2048,
|
|
6854
6952
|
"kindString": "Method",
|
|
@@ -6858,13 +6956,13 @@
|
|
|
6858
6956
|
"sources": [
|
|
6859
6957
|
{
|
|
6860
6958
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6861
|
-
"line":
|
|
6959
|
+
"line": 433,
|
|
6862
6960
|
"character": 9
|
|
6863
6961
|
}
|
|
6864
6962
|
],
|
|
6865
6963
|
"signatures": [
|
|
6866
6964
|
{
|
|
6867
|
-
"id":
|
|
6965
|
+
"id": 465,
|
|
6868
6966
|
"name": "clearSearchText",
|
|
6869
6967
|
"kind": 4096,
|
|
6870
6968
|
"kindString": "Call signature",
|
|
@@ -6877,7 +6975,7 @@
|
|
|
6877
6975
|
]
|
|
6878
6976
|
},
|
|
6879
6977
|
{
|
|
6880
|
-
"id":
|
|
6978
|
+
"id": 466,
|
|
6881
6979
|
"name": "inputKeydown",
|
|
6882
6980
|
"kind": 2048,
|
|
6883
6981
|
"kindString": "Method",
|
|
@@ -6887,20 +6985,20 @@
|
|
|
6887
6985
|
"sources": [
|
|
6888
6986
|
{
|
|
6889
6987
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6890
|
-
"line":
|
|
6988
|
+
"line": 442,
|
|
6891
6989
|
"character": 9
|
|
6892
6990
|
}
|
|
6893
6991
|
],
|
|
6894
6992
|
"signatures": [
|
|
6895
6993
|
{
|
|
6896
|
-
"id":
|
|
6994
|
+
"id": 467,
|
|
6897
6995
|
"name": "inputKeydown",
|
|
6898
6996
|
"kind": 4096,
|
|
6899
6997
|
"kindString": "Call signature",
|
|
6900
6998
|
"flags": {},
|
|
6901
6999
|
"parameters": [
|
|
6902
7000
|
{
|
|
6903
|
-
"id":
|
|
7001
|
+
"id": 468,
|
|
6904
7002
|
"name": "event",
|
|
6905
7003
|
"kind": 32768,
|
|
6906
7004
|
"kindString": "Parameter",
|
|
@@ -6911,7 +7009,7 @@
|
|
|
6911
7009
|
}
|
|
6912
7010
|
},
|
|
6913
7011
|
{
|
|
6914
|
-
"id":
|
|
7012
|
+
"id": 469,
|
|
6915
7013
|
"name": "value",
|
|
6916
7014
|
"kind": 32768,
|
|
6917
7015
|
"kindString": "Parameter",
|
|
@@ -6930,7 +7028,7 @@
|
|
|
6930
7028
|
]
|
|
6931
7029
|
},
|
|
6932
7030
|
{
|
|
6933
|
-
"id":
|
|
7031
|
+
"id": 470,
|
|
6934
7032
|
"name": "inputKeyup",
|
|
6935
7033
|
"kind": 2048,
|
|
6936
7034
|
"kindString": "Method",
|
|
@@ -6940,20 +7038,20 @@
|
|
|
6940
7038
|
"sources": [
|
|
6941
7039
|
{
|
|
6942
7040
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6943
|
-
"line":
|
|
7041
|
+
"line": 464,
|
|
6944
7042
|
"character": 9
|
|
6945
7043
|
}
|
|
6946
7044
|
],
|
|
6947
7045
|
"signatures": [
|
|
6948
7046
|
{
|
|
6949
|
-
"id":
|
|
7047
|
+
"id": 471,
|
|
6950
7048
|
"name": "inputKeyup",
|
|
6951
7049
|
"kind": 4096,
|
|
6952
7050
|
"kindString": "Call signature",
|
|
6953
7051
|
"flags": {},
|
|
6954
7052
|
"parameters": [
|
|
6955
7053
|
{
|
|
6956
|
-
"id":
|
|
7054
|
+
"id": 472,
|
|
6957
7055
|
"name": "event",
|
|
6958
7056
|
"kind": 32768,
|
|
6959
7057
|
"kindString": "Parameter",
|
|
@@ -6972,7 +7070,7 @@
|
|
|
6972
7070
|
]
|
|
6973
7071
|
},
|
|
6974
7072
|
{
|
|
6975
|
-
"id":
|
|
7073
|
+
"id": 423,
|
|
6976
7074
|
"name": "ngAfterViewInit",
|
|
6977
7075
|
"kind": 2048,
|
|
6978
7076
|
"kindString": "Method",
|
|
@@ -6982,13 +7080,13 @@
|
|
|
6982
7080
|
"sources": [
|
|
6983
7081
|
{
|
|
6984
7082
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
6985
|
-
"line":
|
|
7083
|
+
"line": 313,
|
|
6986
7084
|
"character": 9
|
|
6987
7085
|
}
|
|
6988
7086
|
],
|
|
6989
7087
|
"signatures": [
|
|
6990
7088
|
{
|
|
6991
|
-
"id":
|
|
7089
|
+
"id": 424,
|
|
6992
7090
|
"name": "ngAfterViewInit",
|
|
6993
7091
|
"kind": 4096,
|
|
6994
7092
|
"kindString": "Call signature",
|
|
@@ -7009,7 +7107,7 @@
|
|
|
7009
7107
|
}
|
|
7010
7108
|
},
|
|
7011
7109
|
{
|
|
7012
|
-
"id":
|
|
7110
|
+
"id": 425,
|
|
7013
7111
|
"name": "ngOnDestroy",
|
|
7014
7112
|
"kind": 2048,
|
|
7015
7113
|
"kindString": "Method",
|
|
@@ -7019,13 +7117,13 @@
|
|
|
7019
7117
|
"sources": [
|
|
7020
7118
|
{
|
|
7021
7119
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7022
|
-
"line":
|
|
7120
|
+
"line": 319,
|
|
7023
7121
|
"character": 9
|
|
7024
7122
|
}
|
|
7025
7123
|
],
|
|
7026
7124
|
"signatures": [
|
|
7027
7125
|
{
|
|
7028
|
-
"id":
|
|
7126
|
+
"id": 426,
|
|
7029
7127
|
"name": "ngOnDestroy",
|
|
7030
7128
|
"kind": 4096,
|
|
7031
7129
|
"kindString": "Call signature",
|
|
@@ -7046,7 +7144,7 @@
|
|
|
7046
7144
|
}
|
|
7047
7145
|
},
|
|
7048
7146
|
{
|
|
7049
|
-
"id":
|
|
7147
|
+
"id": 421,
|
|
7050
7148
|
"name": "ngOnInit",
|
|
7051
7149
|
"kind": 2048,
|
|
7052
7150
|
"kindString": "Method",
|
|
@@ -7056,13 +7154,13 @@
|
|
|
7056
7154
|
"sources": [
|
|
7057
7155
|
{
|
|
7058
7156
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7059
|
-
"line":
|
|
7157
|
+
"line": 288,
|
|
7060
7158
|
"character": 9
|
|
7061
7159
|
}
|
|
7062
7160
|
],
|
|
7063
7161
|
"signatures": [
|
|
7064
7162
|
{
|
|
7065
|
-
"id":
|
|
7163
|
+
"id": 422,
|
|
7066
7164
|
"name": "ngOnInit",
|
|
7067
7165
|
"kind": 4096,
|
|
7068
7166
|
"kindString": "Call signature",
|
|
@@ -7083,7 +7181,7 @@
|
|
|
7083
7181
|
}
|
|
7084
7182
|
},
|
|
7085
7183
|
{
|
|
7086
|
-
"id":
|
|
7184
|
+
"id": 432,
|
|
7087
7185
|
"name": "onAutocompleteBlur",
|
|
7088
7186
|
"kind": 2048,
|
|
7089
7187
|
"kindString": "Method",
|
|
@@ -7093,13 +7191,13 @@
|
|
|
7093
7191
|
"sources": [
|
|
7094
7192
|
{
|
|
7095
7193
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7096
|
-
"line":
|
|
7194
|
+
"line": 344,
|
|
7097
7195
|
"character": 9
|
|
7098
7196
|
}
|
|
7099
7197
|
],
|
|
7100
7198
|
"signatures": [
|
|
7101
7199
|
{
|
|
7102
|
-
"id":
|
|
7200
|
+
"id": 433,
|
|
7103
7201
|
"name": "onAutocompleteBlur",
|
|
7104
7202
|
"kind": 4096,
|
|
7105
7203
|
"kindString": "Call signature",
|
|
@@ -7112,7 +7210,7 @@
|
|
|
7112
7210
|
]
|
|
7113
7211
|
},
|
|
7114
7212
|
{
|
|
7115
|
-
"id":
|
|
7213
|
+
"id": 429,
|
|
7116
7214
|
"name": "onAutocompleteSelectionChange",
|
|
7117
7215
|
"kind": 2048,
|
|
7118
7216
|
"kindString": "Method",
|
|
@@ -7122,27 +7220,27 @@
|
|
|
7122
7220
|
"sources": [
|
|
7123
7221
|
{
|
|
7124
7222
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7125
|
-
"line":
|
|
7223
|
+
"line": 333,
|
|
7126
7224
|
"character": 9
|
|
7127
7225
|
}
|
|
7128
7226
|
],
|
|
7129
7227
|
"signatures": [
|
|
7130
7228
|
{
|
|
7131
|
-
"id":
|
|
7229
|
+
"id": 430,
|
|
7132
7230
|
"name": "onAutocompleteSelectionChange",
|
|
7133
7231
|
"kind": 4096,
|
|
7134
7232
|
"kindString": "Call signature",
|
|
7135
7233
|
"flags": {},
|
|
7136
7234
|
"parameters": [
|
|
7137
7235
|
{
|
|
7138
|
-
"id":
|
|
7236
|
+
"id": 431,
|
|
7139
7237
|
"name": "change",
|
|
7140
7238
|
"kind": 32768,
|
|
7141
7239
|
"kindString": "Parameter",
|
|
7142
7240
|
"flags": {},
|
|
7143
7241
|
"type": {
|
|
7144
7242
|
"type": "reference",
|
|
7145
|
-
"id":
|
|
7243
|
+
"id": 559,
|
|
7146
7244
|
"name": "SkyAutocompleteSelectionChange"
|
|
7147
7245
|
}
|
|
7148
7246
|
}
|
|
@@ -7155,7 +7253,7 @@
|
|
|
7155
7253
|
]
|
|
7156
7254
|
},
|
|
7157
7255
|
{
|
|
7158
|
-
"id":
|
|
7256
|
+
"id": 445,
|
|
7159
7257
|
"name": "onChange",
|
|
7160
7258
|
"kind": 2048,
|
|
7161
7259
|
"kindString": "Method",
|
|
@@ -7165,20 +7263,20 @@
|
|
|
7165
7263
|
"sources": [
|
|
7166
7264
|
{
|
|
7167
7265
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7168
|
-
"line":
|
|
7266
|
+
"line": 409,
|
|
7169
7267
|
"character": 9
|
|
7170
7268
|
}
|
|
7171
7269
|
],
|
|
7172
7270
|
"signatures": [
|
|
7173
7271
|
{
|
|
7174
|
-
"id":
|
|
7272
|
+
"id": 446,
|
|
7175
7273
|
"name": "onChange",
|
|
7176
7274
|
"kind": 4096,
|
|
7177
7275
|
"kindString": "Call signature",
|
|
7178
7276
|
"flags": {},
|
|
7179
7277
|
"parameters": [
|
|
7180
7278
|
{
|
|
7181
|
-
"id":
|
|
7279
|
+
"id": 447,
|
|
7182
7280
|
"name": "value",
|
|
7183
7281
|
"kind": 32768,
|
|
7184
7282
|
"kindString": "Parameter",
|
|
@@ -7200,7 +7298,50 @@
|
|
|
7200
7298
|
]
|
|
7201
7299
|
},
|
|
7202
7300
|
{
|
|
7203
|
-
"id":
|
|
7301
|
+
"id": 484,
|
|
7302
|
+
"name": "onSearchAsync",
|
|
7303
|
+
"kind": 2048,
|
|
7304
|
+
"kindString": "Method",
|
|
7305
|
+
"flags": {
|
|
7306
|
+
"isPublic": true
|
|
7307
|
+
},
|
|
7308
|
+
"sources": [
|
|
7309
|
+
{
|
|
7310
|
+
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7311
|
+
"line": 620,
|
|
7312
|
+
"character": 9
|
|
7313
|
+
}
|
|
7314
|
+
],
|
|
7315
|
+
"signatures": [
|
|
7316
|
+
{
|
|
7317
|
+
"id": 485,
|
|
7318
|
+
"name": "onSearchAsync",
|
|
7319
|
+
"kind": 4096,
|
|
7320
|
+
"kindString": "Call signature",
|
|
7321
|
+
"flags": {},
|
|
7322
|
+
"parameters": [
|
|
7323
|
+
{
|
|
7324
|
+
"id": 486,
|
|
7325
|
+
"name": "args",
|
|
7326
|
+
"kind": 32768,
|
|
7327
|
+
"kindString": "Parameter",
|
|
7328
|
+
"flags": {},
|
|
7329
|
+
"type": {
|
|
7330
|
+
"type": "reference",
|
|
7331
|
+
"id": 536,
|
|
7332
|
+
"name": "SkyAutocompleteSearchAsyncArgs"
|
|
7333
|
+
}
|
|
7334
|
+
}
|
|
7335
|
+
],
|
|
7336
|
+
"type": {
|
|
7337
|
+
"type": "intrinsic",
|
|
7338
|
+
"name": "void"
|
|
7339
|
+
}
|
|
7340
|
+
}
|
|
7341
|
+
]
|
|
7342
|
+
},
|
|
7343
|
+
{
|
|
7344
|
+
"id": 473,
|
|
7204
7345
|
"name": "onSearchButtonClick",
|
|
7205
7346
|
"kind": 2048,
|
|
7206
7347
|
"kindString": "Method",
|
|
@@ -7210,13 +7351,13 @@
|
|
|
7210
7351
|
"sources": [
|
|
7211
7352
|
{
|
|
7212
7353
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7213
|
-
"line":
|
|
7354
|
+
"line": 490,
|
|
7214
7355
|
"character": 9
|
|
7215
7356
|
}
|
|
7216
7357
|
],
|
|
7217
7358
|
"signatures": [
|
|
7218
7359
|
{
|
|
7219
|
-
"id":
|
|
7360
|
+
"id": 474,
|
|
7220
7361
|
"name": "onSearchButtonClick",
|
|
7221
7362
|
"kind": 4096,
|
|
7222
7363
|
"kindString": "Call signature",
|
|
@@ -7229,7 +7370,7 @@
|
|
|
7229
7370
|
]
|
|
7230
7371
|
},
|
|
7231
7372
|
{
|
|
7232
|
-
"id":
|
|
7373
|
+
"id": 475,
|
|
7233
7374
|
"name": "onShowMoreClick",
|
|
7234
7375
|
"kind": 2048,
|
|
7235
7376
|
"kindString": "Method",
|
|
@@ -7239,20 +7380,20 @@
|
|
|
7239
7380
|
"sources": [
|
|
7240
7381
|
{
|
|
7241
7382
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7242
|
-
"line":
|
|
7383
|
+
"line": 509,
|
|
7243
7384
|
"character": 9
|
|
7244
7385
|
}
|
|
7245
7386
|
],
|
|
7246
7387
|
"signatures": [
|
|
7247
7388
|
{
|
|
7248
|
-
"id":
|
|
7389
|
+
"id": 476,
|
|
7249
7390
|
"name": "onShowMoreClick",
|
|
7250
7391
|
"kind": 4096,
|
|
7251
7392
|
"kindString": "Call signature",
|
|
7252
7393
|
"flags": {},
|
|
7253
7394
|
"parameters": [
|
|
7254
7395
|
{
|
|
7255
|
-
"id":
|
|
7396
|
+
"id": 477,
|
|
7256
7397
|
"name": "event",
|
|
7257
7398
|
"kind": 32768,
|
|
7258
7399
|
"kindString": "Parameter",
|
|
@@ -7271,7 +7412,7 @@
|
|
|
7271
7412
|
]
|
|
7272
7413
|
},
|
|
7273
7414
|
{
|
|
7274
|
-
"id":
|
|
7415
|
+
"id": 434,
|
|
7275
7416
|
"name": "onTokensChange",
|
|
7276
7417
|
"kind": 2048,
|
|
7277
7418
|
"kindString": "Method",
|
|
@@ -7281,20 +7422,20 @@
|
|
|
7281
7422
|
"sources": [
|
|
7282
7423
|
{
|
|
7283
7424
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7284
|
-
"line":
|
|
7425
|
+
"line": 348,
|
|
7285
7426
|
"character": 9
|
|
7286
7427
|
}
|
|
7287
7428
|
],
|
|
7288
7429
|
"signatures": [
|
|
7289
7430
|
{
|
|
7290
|
-
"id":
|
|
7431
|
+
"id": 435,
|
|
7291
7432
|
"name": "onTokensChange",
|
|
7292
7433
|
"kind": 4096,
|
|
7293
7434
|
"kindString": "Call signature",
|
|
7294
7435
|
"flags": {},
|
|
7295
7436
|
"parameters": [
|
|
7296
7437
|
{
|
|
7297
|
-
"id":
|
|
7438
|
+
"id": 436,
|
|
7298
7439
|
"name": "change",
|
|
7299
7440
|
"kind": 32768,
|
|
7300
7441
|
"kindString": "Parameter",
|
|
@@ -7316,7 +7457,7 @@
|
|
|
7316
7457
|
]
|
|
7317
7458
|
},
|
|
7318
7459
|
{
|
|
7319
|
-
"id":
|
|
7460
|
+
"id": 437,
|
|
7320
7461
|
"name": "onTokensFocusIndexOverRange",
|
|
7321
7462
|
"kind": 2048,
|
|
7322
7463
|
"kindString": "Method",
|
|
@@ -7326,13 +7467,13 @@
|
|
|
7326
7467
|
"sources": [
|
|
7327
7468
|
{
|
|
7328
7469
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7329
|
-
"line":
|
|
7470
|
+
"line": 373,
|
|
7330
7471
|
"character": 9
|
|
7331
7472
|
}
|
|
7332
7473
|
],
|
|
7333
7474
|
"signatures": [
|
|
7334
7475
|
{
|
|
7335
|
-
"id":
|
|
7476
|
+
"id": 438,
|
|
7336
7477
|
"name": "onTokensFocusIndexOverRange",
|
|
7337
7478
|
"kind": 4096,
|
|
7338
7479
|
"kindString": "Call signature",
|
|
@@ -7345,7 +7486,7 @@
|
|
|
7345
7486
|
]
|
|
7346
7487
|
},
|
|
7347
7488
|
{
|
|
7348
|
-
"id":
|
|
7489
|
+
"id": 439,
|
|
7349
7490
|
"name": "onTokensKeyUp",
|
|
7350
7491
|
"kind": 2048,
|
|
7351
7492
|
"kindString": "Method",
|
|
@@ -7355,20 +7496,20 @@
|
|
|
7355
7496
|
"sources": [
|
|
7356
7497
|
{
|
|
7357
7498
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7358
|
-
"line":
|
|
7499
|
+
"line": 379,
|
|
7359
7500
|
"character": 9
|
|
7360
7501
|
}
|
|
7361
7502
|
],
|
|
7362
7503
|
"signatures": [
|
|
7363
7504
|
{
|
|
7364
|
-
"id":
|
|
7505
|
+
"id": 440,
|
|
7365
7506
|
"name": "onTokensKeyUp",
|
|
7366
7507
|
"kind": 4096,
|
|
7367
7508
|
"kindString": "Call signature",
|
|
7368
7509
|
"flags": {},
|
|
7369
7510
|
"parameters": [
|
|
7370
7511
|
{
|
|
7371
|
-
"id":
|
|
7512
|
+
"id": 441,
|
|
7372
7513
|
"name": "event",
|
|
7373
7514
|
"kind": 32768,
|
|
7374
7515
|
"kindString": "Parameter",
|
|
@@ -7387,7 +7528,7 @@
|
|
|
7387
7528
|
]
|
|
7388
7529
|
},
|
|
7389
7530
|
{
|
|
7390
|
-
"id":
|
|
7531
|
+
"id": 448,
|
|
7391
7532
|
"name": "onTouched",
|
|
7392
7533
|
"kind": 2048,
|
|
7393
7534
|
"kindString": "Method",
|
|
@@ -7397,13 +7538,13 @@
|
|
|
7397
7538
|
"sources": [
|
|
7398
7539
|
{
|
|
7399
7540
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7400
|
-
"line":
|
|
7541
|
+
"line": 411,
|
|
7401
7542
|
"character": 9
|
|
7402
7543
|
}
|
|
7403
7544
|
],
|
|
7404
7545
|
"signatures": [
|
|
7405
7546
|
{
|
|
7406
|
-
"id":
|
|
7547
|
+
"id": 449,
|
|
7407
7548
|
"name": "onTouched",
|
|
7408
7549
|
"kind": 4096,
|
|
7409
7550
|
"kindString": "Call signature",
|
|
@@ -7416,7 +7557,7 @@
|
|
|
7416
7557
|
]
|
|
7417
7558
|
},
|
|
7418
7559
|
{
|
|
7419
|
-
"id":
|
|
7560
|
+
"id": 481,
|
|
7420
7561
|
"name": "openPicker",
|
|
7421
7562
|
"kind": 2048,
|
|
7422
7563
|
"kindString": "Method",
|
|
@@ -7426,20 +7567,20 @@
|
|
|
7426
7567
|
"sources": [
|
|
7427
7568
|
{
|
|
7428
7569
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7429
|
-
"line":
|
|
7570
|
+
"line": 574,
|
|
7430
7571
|
"character": 9
|
|
7431
7572
|
}
|
|
7432
7573
|
],
|
|
7433
7574
|
"signatures": [
|
|
7434
7575
|
{
|
|
7435
|
-
"id":
|
|
7576
|
+
"id": 482,
|
|
7436
7577
|
"name": "openPicker",
|
|
7437
7578
|
"kind": 4096,
|
|
7438
7579
|
"kindString": "Call signature",
|
|
7439
7580
|
"flags": {},
|
|
7440
7581
|
"parameters": [
|
|
7441
7582
|
{
|
|
7442
|
-
"id":
|
|
7583
|
+
"id": 483,
|
|
7443
7584
|
"name": "initialSearch",
|
|
7444
7585
|
"kind": 32768,
|
|
7445
7586
|
"kindString": "Parameter",
|
|
@@ -7458,7 +7599,7 @@
|
|
|
7458
7599
|
]
|
|
7459
7600
|
},
|
|
7460
7601
|
{
|
|
7461
|
-
"id":
|
|
7602
|
+
"id": 450,
|
|
7462
7603
|
"name": "registerOnChange",
|
|
7463
7604
|
"kind": 2048,
|
|
7464
7605
|
"kindString": "Method",
|
|
@@ -7468,20 +7609,20 @@
|
|
|
7468
7609
|
"sources": [
|
|
7469
7610
|
{
|
|
7470
7611
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7471
|
-
"line":
|
|
7612
|
+
"line": 413,
|
|
7472
7613
|
"character": 9
|
|
7473
7614
|
}
|
|
7474
7615
|
],
|
|
7475
7616
|
"signatures": [
|
|
7476
7617
|
{
|
|
7477
|
-
"id":
|
|
7618
|
+
"id": 451,
|
|
7478
7619
|
"name": "registerOnChange",
|
|
7479
7620
|
"kind": 4096,
|
|
7480
7621
|
"kindString": "Call signature",
|
|
7481
7622
|
"flags": {},
|
|
7482
7623
|
"parameters": [
|
|
7483
7624
|
{
|
|
7484
|
-
"id":
|
|
7625
|
+
"id": 452,
|
|
7485
7626
|
"name": "fn",
|
|
7486
7627
|
"kind": 32768,
|
|
7487
7628
|
"kindString": "Parameter",
|
|
@@ -7489,21 +7630,21 @@
|
|
|
7489
7630
|
"type": {
|
|
7490
7631
|
"type": "reflection",
|
|
7491
7632
|
"declaration": {
|
|
7492
|
-
"id":
|
|
7633
|
+
"id": 453,
|
|
7493
7634
|
"name": "__type",
|
|
7494
7635
|
"kind": 65536,
|
|
7495
7636
|
"kindString": "Type literal",
|
|
7496
7637
|
"flags": {},
|
|
7497
7638
|
"signatures": [
|
|
7498
7639
|
{
|
|
7499
|
-
"id":
|
|
7640
|
+
"id": 454,
|
|
7500
7641
|
"name": "__type",
|
|
7501
7642
|
"kind": 4096,
|
|
7502
7643
|
"kindString": "Call signature",
|
|
7503
7644
|
"flags": {},
|
|
7504
7645
|
"parameters": [
|
|
7505
7646
|
{
|
|
7506
|
-
"id":
|
|
7647
|
+
"id": 455,
|
|
7507
7648
|
"name": "value",
|
|
7508
7649
|
"kind": 32768,
|
|
7509
7650
|
"kindString": "Parameter",
|
|
@@ -7540,7 +7681,7 @@
|
|
|
7540
7681
|
}
|
|
7541
7682
|
},
|
|
7542
7683
|
{
|
|
7543
|
-
"id":
|
|
7684
|
+
"id": 456,
|
|
7544
7685
|
"name": "registerOnTouched",
|
|
7545
7686
|
"kind": 2048,
|
|
7546
7687
|
"kindString": "Method",
|
|
@@ -7550,20 +7691,20 @@
|
|
|
7550
7691
|
"sources": [
|
|
7551
7692
|
{
|
|
7552
7693
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7553
|
-
"line":
|
|
7694
|
+
"line": 417,
|
|
7554
7695
|
"character": 9
|
|
7555
7696
|
}
|
|
7556
7697
|
],
|
|
7557
7698
|
"signatures": [
|
|
7558
7699
|
{
|
|
7559
|
-
"id":
|
|
7700
|
+
"id": 457,
|
|
7560
7701
|
"name": "registerOnTouched",
|
|
7561
7702
|
"kind": 4096,
|
|
7562
7703
|
"kindString": "Call signature",
|
|
7563
7704
|
"flags": {},
|
|
7564
7705
|
"parameters": [
|
|
7565
7706
|
{
|
|
7566
|
-
"id":
|
|
7707
|
+
"id": 458,
|
|
7567
7708
|
"name": "fn",
|
|
7568
7709
|
"kind": 32768,
|
|
7569
7710
|
"kindString": "Parameter",
|
|
@@ -7571,14 +7712,14 @@
|
|
|
7571
7712
|
"type": {
|
|
7572
7713
|
"type": "reflection",
|
|
7573
7714
|
"declaration": {
|
|
7574
|
-
"id":
|
|
7715
|
+
"id": 459,
|
|
7575
7716
|
"name": "__type",
|
|
7576
7717
|
"kind": 65536,
|
|
7577
7718
|
"kindString": "Type literal",
|
|
7578
7719
|
"flags": {},
|
|
7579
7720
|
"signatures": [
|
|
7580
7721
|
{
|
|
7581
|
-
"id":
|
|
7722
|
+
"id": 460,
|
|
7582
7723
|
"name": "__type",
|
|
7583
7724
|
"kind": 4096,
|
|
7584
7725
|
"kindString": "Call signature",
|
|
@@ -7609,7 +7750,7 @@
|
|
|
7609
7750
|
}
|
|
7610
7751
|
},
|
|
7611
7752
|
{
|
|
7612
|
-
"id":
|
|
7753
|
+
"id": 461,
|
|
7613
7754
|
"name": "setDisabledState",
|
|
7614
7755
|
"kind": 2048,
|
|
7615
7756
|
"kindString": "Method",
|
|
@@ -7619,20 +7760,20 @@
|
|
|
7619
7760
|
"sources": [
|
|
7620
7761
|
{
|
|
7621
7762
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7622
|
-
"line":
|
|
7763
|
+
"line": 422,
|
|
7623
7764
|
"character": 9
|
|
7624
7765
|
}
|
|
7625
7766
|
],
|
|
7626
7767
|
"signatures": [
|
|
7627
7768
|
{
|
|
7628
|
-
"id":
|
|
7769
|
+
"id": 462,
|
|
7629
7770
|
"name": "setDisabledState",
|
|
7630
7771
|
"kind": 4096,
|
|
7631
7772
|
"kindString": "Call signature",
|
|
7632
7773
|
"flags": {},
|
|
7633
7774
|
"parameters": [
|
|
7634
7775
|
{
|
|
7635
|
-
"id":
|
|
7776
|
+
"id": 463,
|
|
7636
7777
|
"name": "disabled",
|
|
7637
7778
|
"kind": 32768,
|
|
7638
7779
|
"kindString": "Parameter",
|
|
@@ -7659,7 +7800,7 @@
|
|
|
7659
7800
|
}
|
|
7660
7801
|
},
|
|
7661
7802
|
{
|
|
7662
|
-
"id":
|
|
7803
|
+
"id": 442,
|
|
7663
7804
|
"name": "writeValue",
|
|
7664
7805
|
"kind": 2048,
|
|
7665
7806
|
"kindString": "Method",
|
|
@@ -7669,20 +7810,20 @@
|
|
|
7669
7810
|
"sources": [
|
|
7670
7811
|
{
|
|
7671
7812
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7672
|
-
"line":
|
|
7813
|
+
"line": 402,
|
|
7673
7814
|
"character": 9
|
|
7674
7815
|
}
|
|
7675
7816
|
],
|
|
7676
7817
|
"signatures": [
|
|
7677
7818
|
{
|
|
7678
|
-
"id":
|
|
7819
|
+
"id": 443,
|
|
7679
7820
|
"name": "writeValue",
|
|
7680
7821
|
"kind": 4096,
|
|
7681
7822
|
"kindString": "Call signature",
|
|
7682
7823
|
"flags": {},
|
|
7683
7824
|
"parameters": [
|
|
7684
7825
|
{
|
|
7685
|
-
"id":
|
|
7826
|
+
"id": 444,
|
|
7686
7827
|
"name": "value",
|
|
7687
7828
|
"kind": 32768,
|
|
7688
7829
|
"kindString": "Parameter",
|
|
@@ -7717,80 +7858,82 @@
|
|
|
7717
7858
|
"title": "Constructors",
|
|
7718
7859
|
"kind": 512,
|
|
7719
7860
|
"children": [
|
|
7720
|
-
|
|
7861
|
+
361
|
|
7721
7862
|
]
|
|
7722
7863
|
},
|
|
7723
7864
|
{
|
|
7724
7865
|
"title": "Properties",
|
|
7725
7866
|
"kind": 1024,
|
|
7726
7867
|
"children": [
|
|
7727
|
-
|
|
7728
|
-
|
|
7729
|
-
|
|
7730
|
-
369,
|
|
7731
|
-
394,
|
|
7732
|
-
501,
|
|
7868
|
+
390,
|
|
7869
|
+
372,
|
|
7870
|
+
373,
|
|
7733
7871
|
374,
|
|
7734
|
-
|
|
7735
|
-
|
|
7736
|
-
414,
|
|
7737
|
-
395,
|
|
7738
|
-
376,
|
|
7739
|
-
516,
|
|
7740
|
-
514,
|
|
7741
|
-
517,
|
|
7742
|
-
515,
|
|
7743
|
-
378,
|
|
7872
|
+
399,
|
|
7873
|
+
512,
|
|
7744
7874
|
379,
|
|
7745
|
-
|
|
7746
|
-
|
|
7875
|
+
380,
|
|
7876
|
+
382,
|
|
7877
|
+
419,
|
|
7878
|
+
400,
|
|
7879
|
+
381,
|
|
7880
|
+
529,
|
|
7881
|
+
527,
|
|
7882
|
+
525,
|
|
7883
|
+
528,
|
|
7884
|
+
526,
|
|
7885
|
+
383,
|
|
7886
|
+
384,
|
|
7887
|
+
420,
|
|
7888
|
+
401
|
|
7747
7889
|
]
|
|
7748
7890
|
},
|
|
7749
7891
|
{
|
|
7750
7892
|
"title": "Accessors",
|
|
7751
7893
|
"kind": 262144,
|
|
7752
7894
|
"children": [
|
|
7753
|
-
|
|
7754
|
-
|
|
7755
|
-
|
|
7756
|
-
|
|
7757
|
-
|
|
7758
|
-
|
|
7759
|
-
|
|
7895
|
+
375,
|
|
7896
|
+
513,
|
|
7897
|
+
517,
|
|
7898
|
+
521,
|
|
7899
|
+
385,
|
|
7900
|
+
391,
|
|
7901
|
+
395
|
|
7760
7902
|
]
|
|
7761
7903
|
},
|
|
7762
7904
|
{
|
|
7763
7905
|
"title": "Methods",
|
|
7764
7906
|
"kind": 2048,
|
|
7765
7907
|
"children": [
|
|
7766
|
-
422,
|
|
7767
|
-
459,
|
|
7768
|
-
461,
|
|
7769
|
-
465,
|
|
7770
|
-
418,
|
|
7771
|
-
420,
|
|
7772
|
-
416,
|
|
7773
7908
|
427,
|
|
7774
|
-
|
|
7775
|
-
|
|
7776
|
-
468,
|
|
7909
|
+
464,
|
|
7910
|
+
466,
|
|
7777
7911
|
470,
|
|
7778
|
-
|
|
7912
|
+
423,
|
|
7913
|
+
425,
|
|
7914
|
+
421,
|
|
7779
7915
|
432,
|
|
7780
|
-
|
|
7781
|
-
443,
|
|
7782
|
-
473,
|
|
7916
|
+
429,
|
|
7783
7917
|
445,
|
|
7784
|
-
|
|
7918
|
+
484,
|
|
7919
|
+
473,
|
|
7920
|
+
475,
|
|
7921
|
+
434,
|
|
7922
|
+
437,
|
|
7923
|
+
439,
|
|
7924
|
+
448,
|
|
7925
|
+
481,
|
|
7926
|
+
450,
|
|
7785
7927
|
456,
|
|
7786
|
-
|
|
7928
|
+
461,
|
|
7929
|
+
442
|
|
7787
7930
|
]
|
|
7788
7931
|
}
|
|
7789
7932
|
],
|
|
7790
7933
|
"sources": [
|
|
7791
7934
|
{
|
|
7792
7935
|
"fileName": "projects/lookup/src/modules/lookup/lookup.component.ts",
|
|
7793
|
-
"line":
|
|
7936
|
+
"line": 60,
|
|
7794
7937
|
"character": 13
|
|
7795
7938
|
}
|
|
7796
7939
|
],
|
|
@@ -7820,14 +7963,285 @@
|
|
|
7820
7963
|
]
|
|
7821
7964
|
},
|
|
7822
7965
|
{
|
|
7823
|
-
"id":
|
|
7966
|
+
"id": 536,
|
|
7967
|
+
"name": "SkyAutocompleteSearchAsyncArgs",
|
|
7968
|
+
"kind": 256,
|
|
7969
|
+
"kindString": "Interface",
|
|
7970
|
+
"flags": {},
|
|
7971
|
+
"comment": {
|
|
7972
|
+
"shortText": "Arguments passed when an asynchronous search is executed from the\nautocomplete or lookup component."
|
|
7973
|
+
},
|
|
7974
|
+
"children": [
|
|
7975
|
+
{
|
|
7976
|
+
"id": 540,
|
|
7977
|
+
"name": "continuationData",
|
|
7978
|
+
"kind": 1024,
|
|
7979
|
+
"kindString": "Property",
|
|
7980
|
+
"flags": {
|
|
7981
|
+
"isOptional": true
|
|
7982
|
+
},
|
|
7983
|
+
"comment": {
|
|
7984
|
+
"shortText": "A continuation token which can be set and then will be passed back with any future searches.\nThis is helpful for applications which utilize a token instead of an offset when fetching data."
|
|
7985
|
+
},
|
|
7986
|
+
"sources": [
|
|
7987
|
+
{
|
|
7988
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
|
|
7989
|
+
"line": 32,
|
|
7990
|
+
"character": 2
|
|
7991
|
+
}
|
|
7992
|
+
],
|
|
7993
|
+
"type": {
|
|
7994
|
+
"type": "intrinsic",
|
|
7995
|
+
"name": "unknown"
|
|
7996
|
+
}
|
|
7997
|
+
},
|
|
7998
|
+
{
|
|
7999
|
+
"id": 538,
|
|
8000
|
+
"name": "displayType",
|
|
8001
|
+
"kind": 1024,
|
|
8002
|
+
"kindString": "Property",
|
|
8003
|
+
"flags": {},
|
|
8004
|
+
"comment": {
|
|
8005
|
+
"shortText": "How the search results will be displayed. Use this value to determine\nhow many results to return."
|
|
8006
|
+
},
|
|
8007
|
+
"sources": [
|
|
8008
|
+
{
|
|
8009
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
|
|
8010
|
+
"line": 19,
|
|
8011
|
+
"character": 2
|
|
8012
|
+
}
|
|
8013
|
+
],
|
|
8014
|
+
"type": {
|
|
8015
|
+
"type": "reference",
|
|
8016
|
+
"id": 547,
|
|
8017
|
+
"name": "AutocompleteSearchAsyncResultDisplayType"
|
|
8018
|
+
}
|
|
8019
|
+
},
|
|
8020
|
+
{
|
|
8021
|
+
"id": 539,
|
|
8022
|
+
"name": "offset",
|
|
8023
|
+
"kind": 1024,
|
|
8024
|
+
"kindString": "Property",
|
|
8025
|
+
"flags": {},
|
|
8026
|
+
"comment": {
|
|
8027
|
+
"shortText": "The offset index of the first result to return. When search is executed\nas a result of an infinite scroll event, for example, offset will be set\nto the number of items already displayed."
|
|
8028
|
+
},
|
|
8029
|
+
"sources": [
|
|
8030
|
+
{
|
|
8031
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
|
|
8032
|
+
"line": 26,
|
|
8033
|
+
"character": 2
|
|
8034
|
+
}
|
|
8035
|
+
],
|
|
8036
|
+
"type": {
|
|
8037
|
+
"type": "intrinsic",
|
|
8038
|
+
"name": "number"
|
|
8039
|
+
}
|
|
8040
|
+
},
|
|
8041
|
+
{
|
|
8042
|
+
"id": 541,
|
|
8043
|
+
"name": "result",
|
|
8044
|
+
"kind": 1024,
|
|
8045
|
+
"kindString": "Property",
|
|
8046
|
+
"flags": {
|
|
8047
|
+
"isOptional": true
|
|
8048
|
+
},
|
|
8049
|
+
"comment": {
|
|
8050
|
+
"shortText": "An Observable representing the search results. Consumers should set this\nwhen the event fires so the autocomplete or lookup component can subscribe\nto it and then display the results."
|
|
8051
|
+
},
|
|
8052
|
+
"sources": [
|
|
8053
|
+
{
|
|
8054
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
|
|
8055
|
+
"line": 39,
|
|
8056
|
+
"character": 2
|
|
8057
|
+
}
|
|
8058
|
+
],
|
|
8059
|
+
"type": {
|
|
8060
|
+
"type": "reference",
|
|
8061
|
+
"typeArguments": [
|
|
8062
|
+
{
|
|
8063
|
+
"type": "reference",
|
|
8064
|
+
"id": 542,
|
|
8065
|
+
"name": "SkyAutocompleteSearchAsyncResult"
|
|
8066
|
+
}
|
|
8067
|
+
],
|
|
8068
|
+
"name": "Observable"
|
|
8069
|
+
}
|
|
8070
|
+
},
|
|
8071
|
+
{
|
|
8072
|
+
"id": 537,
|
|
8073
|
+
"name": "searchText",
|
|
8074
|
+
"kind": 1024,
|
|
8075
|
+
"kindString": "Property",
|
|
8076
|
+
"flags": {},
|
|
8077
|
+
"comment": {
|
|
8078
|
+
"shortText": "The search text entered by the user."
|
|
8079
|
+
},
|
|
8080
|
+
"sources": [
|
|
8081
|
+
{
|
|
8082
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
|
|
8083
|
+
"line": 13,
|
|
8084
|
+
"character": 2
|
|
8085
|
+
}
|
|
8086
|
+
],
|
|
8087
|
+
"type": {
|
|
8088
|
+
"type": "intrinsic",
|
|
8089
|
+
"name": "string"
|
|
8090
|
+
}
|
|
8091
|
+
}
|
|
8092
|
+
],
|
|
8093
|
+
"groups": [
|
|
8094
|
+
{
|
|
8095
|
+
"title": "Properties",
|
|
8096
|
+
"kind": 1024,
|
|
8097
|
+
"children": [
|
|
8098
|
+
540,
|
|
8099
|
+
538,
|
|
8100
|
+
539,
|
|
8101
|
+
541,
|
|
8102
|
+
537
|
|
8103
|
+
]
|
|
8104
|
+
}
|
|
8105
|
+
],
|
|
8106
|
+
"sources": [
|
|
8107
|
+
{
|
|
8108
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-args.ts",
|
|
8109
|
+
"line": 9,
|
|
8110
|
+
"character": 17
|
|
8111
|
+
}
|
|
8112
|
+
]
|
|
8113
|
+
},
|
|
8114
|
+
{
|
|
8115
|
+
"id": 542,
|
|
8116
|
+
"name": "SkyAutocompleteSearchAsyncResult",
|
|
8117
|
+
"kind": 256,
|
|
8118
|
+
"kindString": "Interface",
|
|
8119
|
+
"flags": {},
|
|
8120
|
+
"comment": {
|
|
8121
|
+
"shortText": "The result of searching for items to display in an autocomplete or lookup field."
|
|
8122
|
+
},
|
|
8123
|
+
"children": [
|
|
8124
|
+
{
|
|
8125
|
+
"id": 543,
|
|
8126
|
+
"name": "continuationData",
|
|
8127
|
+
"kind": 1024,
|
|
8128
|
+
"kindString": "Property",
|
|
8129
|
+
"flags": {
|
|
8130
|
+
"isOptional": true
|
|
8131
|
+
},
|
|
8132
|
+
"comment": {
|
|
8133
|
+
"shortText": "Data provided on \"load more\" search result requests. Use this property for\ninformation such as a continuation token for paged database queries."
|
|
8134
|
+
},
|
|
8135
|
+
"sources": [
|
|
8136
|
+
{
|
|
8137
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result.ts",
|
|
8138
|
+
"line": 9,
|
|
8139
|
+
"character": 2
|
|
8140
|
+
}
|
|
8141
|
+
],
|
|
8142
|
+
"type": {
|
|
8143
|
+
"type": "intrinsic",
|
|
8144
|
+
"name": "unknown"
|
|
8145
|
+
}
|
|
8146
|
+
},
|
|
8147
|
+
{
|
|
8148
|
+
"id": 544,
|
|
8149
|
+
"name": "hasMore",
|
|
8150
|
+
"kind": 1024,
|
|
8151
|
+
"kindString": "Property",
|
|
8152
|
+
"flags": {
|
|
8153
|
+
"isOptional": true
|
|
8154
|
+
},
|
|
8155
|
+
"comment": {
|
|
8156
|
+
"shortText": "Indicates whether there are more results that match the search criteria."
|
|
8157
|
+
},
|
|
8158
|
+
"sources": [
|
|
8159
|
+
{
|
|
8160
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result.ts",
|
|
8161
|
+
"line": 13,
|
|
8162
|
+
"character": 2
|
|
8163
|
+
}
|
|
8164
|
+
],
|
|
8165
|
+
"type": {
|
|
8166
|
+
"type": "intrinsic",
|
|
8167
|
+
"name": "boolean"
|
|
8168
|
+
}
|
|
8169
|
+
},
|
|
8170
|
+
{
|
|
8171
|
+
"id": 545,
|
|
8172
|
+
"name": "items",
|
|
8173
|
+
"kind": 1024,
|
|
8174
|
+
"kindString": "Property",
|
|
8175
|
+
"flags": {},
|
|
8176
|
+
"comment": {
|
|
8177
|
+
"shortText": "A list of items matching the search criteria. When there are more items that match\nthe search criteria, set the `hasMore` property to `true` more records can be lazy-loaded\nas the user scrolls through the search results."
|
|
8178
|
+
},
|
|
8179
|
+
"sources": [
|
|
8180
|
+
{
|
|
8181
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result.ts",
|
|
8182
|
+
"line": 19,
|
|
8183
|
+
"character": 2
|
|
8184
|
+
}
|
|
8185
|
+
],
|
|
8186
|
+
"type": {
|
|
8187
|
+
"type": "array",
|
|
8188
|
+
"elementType": {
|
|
8189
|
+
"type": "intrinsic",
|
|
8190
|
+
"name": "unknown"
|
|
8191
|
+
}
|
|
8192
|
+
}
|
|
8193
|
+
},
|
|
8194
|
+
{
|
|
8195
|
+
"id": 546,
|
|
8196
|
+
"name": "totalCount",
|
|
8197
|
+
"kind": 1024,
|
|
8198
|
+
"kindString": "Property",
|
|
8199
|
+
"flags": {},
|
|
8200
|
+
"comment": {
|
|
8201
|
+
"shortText": "The total number of records that match the search criteria, including items not returned in\nthe current list of items."
|
|
8202
|
+
},
|
|
8203
|
+
"sources": [
|
|
8204
|
+
{
|
|
8205
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result.ts",
|
|
8206
|
+
"line": 24,
|
|
8207
|
+
"character": 2
|
|
8208
|
+
}
|
|
8209
|
+
],
|
|
8210
|
+
"type": {
|
|
8211
|
+
"type": "intrinsic",
|
|
8212
|
+
"name": "number"
|
|
8213
|
+
}
|
|
8214
|
+
}
|
|
8215
|
+
],
|
|
8216
|
+
"groups": [
|
|
8217
|
+
{
|
|
8218
|
+
"title": "Properties",
|
|
8219
|
+
"kind": 1024,
|
|
8220
|
+
"children": [
|
|
8221
|
+
543,
|
|
8222
|
+
544,
|
|
8223
|
+
545,
|
|
8224
|
+
546
|
|
8225
|
+
]
|
|
8226
|
+
}
|
|
8227
|
+
],
|
|
8228
|
+
"sources": [
|
|
8229
|
+
{
|
|
8230
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result.ts",
|
|
8231
|
+
"line": 4,
|
|
8232
|
+
"character": 17
|
|
8233
|
+
}
|
|
8234
|
+
]
|
|
8235
|
+
},
|
|
8236
|
+
{
|
|
8237
|
+
"id": 559,
|
|
7824
8238
|
"name": "SkyAutocompleteSelectionChange",
|
|
7825
8239
|
"kind": 256,
|
|
7826
8240
|
"kindString": "Interface",
|
|
7827
8241
|
"flags": {},
|
|
7828
8242
|
"children": [
|
|
7829
8243
|
{
|
|
7830
|
-
"id":
|
|
8244
|
+
"id": 560,
|
|
7831
8245
|
"name": "selectedItem",
|
|
7832
8246
|
"kind": 1024,
|
|
7833
8247
|
"kindString": "Property",
|
|
@@ -7855,7 +8269,7 @@
|
|
|
7855
8269
|
"title": "Properties",
|
|
7856
8270
|
"kind": 1024,
|
|
7857
8271
|
"children": [
|
|
7858
|
-
|
|
8272
|
+
560
|
|
7859
8273
|
]
|
|
7860
8274
|
}
|
|
7861
8275
|
],
|
|
@@ -7868,7 +8282,7 @@
|
|
|
7868
8282
|
]
|
|
7869
8283
|
},
|
|
7870
8284
|
{
|
|
7871
|
-
"id":
|
|
8285
|
+
"id": 567,
|
|
7872
8286
|
"name": "SkyCountryFieldCountry",
|
|
7873
8287
|
"kind": 256,
|
|
7874
8288
|
"kindString": "Interface",
|
|
@@ -7878,7 +8292,7 @@
|
|
|
7878
8292
|
},
|
|
7879
8293
|
"children": [
|
|
7880
8294
|
{
|
|
7881
|
-
"id":
|
|
8295
|
+
"id": 570,
|
|
7882
8296
|
"name": "dialCode",
|
|
7883
8297
|
"kind": 1024,
|
|
7884
8298
|
"kindString": "Property",
|
|
@@ -7901,7 +8315,7 @@
|
|
|
7901
8315
|
}
|
|
7902
8316
|
},
|
|
7903
8317
|
{
|
|
7904
|
-
"id":
|
|
8318
|
+
"id": 568,
|
|
7905
8319
|
"name": "iso2",
|
|
7906
8320
|
"kind": 1024,
|
|
7907
8321
|
"kindString": "Property",
|
|
@@ -7928,7 +8342,7 @@
|
|
|
7928
8342
|
}
|
|
7929
8343
|
},
|
|
7930
8344
|
{
|
|
7931
|
-
"id":
|
|
8345
|
+
"id": 569,
|
|
7932
8346
|
"name": "name",
|
|
7933
8347
|
"kind": 1024,
|
|
7934
8348
|
"kindString": "Property",
|
|
@@ -7956,9 +8370,9 @@
|
|
|
7956
8370
|
"title": "Properties",
|
|
7957
8371
|
"kind": 1024,
|
|
7958
8372
|
"children": [
|
|
7959
|
-
|
|
7960
|
-
|
|
7961
|
-
|
|
8373
|
+
570,
|
|
8374
|
+
568,
|
|
8375
|
+
569
|
|
7962
8376
|
]
|
|
7963
8377
|
}
|
|
7964
8378
|
],
|
|
@@ -7971,7 +8385,7 @@
|
|
|
7971
8385
|
]
|
|
7972
8386
|
},
|
|
7973
8387
|
{
|
|
7974
|
-
"id":
|
|
8388
|
+
"id": 576,
|
|
7975
8389
|
"name": "SkyLookupAddCallbackArgs",
|
|
7976
8390
|
"kind": 256,
|
|
7977
8391
|
"kindString": "Interface",
|
|
@@ -7981,7 +8395,7 @@
|
|
|
7981
8395
|
},
|
|
7982
8396
|
"children": [
|
|
7983
8397
|
{
|
|
7984
|
-
"id":
|
|
8398
|
+
"id": 578,
|
|
7985
8399
|
"name": "data",
|
|
7986
8400
|
"kind": 1024,
|
|
7987
8401
|
"kindString": "Property",
|
|
@@ -8007,7 +8421,7 @@
|
|
|
8007
8421
|
}
|
|
8008
8422
|
},
|
|
8009
8423
|
{
|
|
8010
|
-
"id":
|
|
8424
|
+
"id": 577,
|
|
8011
8425
|
"name": "item",
|
|
8012
8426
|
"kind": 1024,
|
|
8013
8427
|
"kindString": "Property",
|
|
@@ -8033,8 +8447,8 @@
|
|
|
8033
8447
|
"title": "Properties",
|
|
8034
8448
|
"kind": 1024,
|
|
8035
8449
|
"children": [
|
|
8036
|
-
|
|
8037
|
-
|
|
8450
|
+
578,
|
|
8451
|
+
577
|
|
8038
8452
|
]
|
|
8039
8453
|
}
|
|
8040
8454
|
],
|
|
@@ -8047,7 +8461,7 @@
|
|
|
8047
8461
|
]
|
|
8048
8462
|
},
|
|
8049
8463
|
{
|
|
8050
|
-
"id":
|
|
8464
|
+
"id": 579,
|
|
8051
8465
|
"name": "SkyLookupAddClickEventArgs",
|
|
8052
8466
|
"kind": 256,
|
|
8053
8467
|
"kindString": "Interface",
|
|
@@ -8057,7 +8471,7 @@
|
|
|
8057
8471
|
},
|
|
8058
8472
|
"children": [
|
|
8059
8473
|
{
|
|
8060
|
-
"id":
|
|
8474
|
+
"id": 580,
|
|
8061
8475
|
"name": "itemAdded",
|
|
8062
8476
|
"kind": 2048,
|
|
8063
8477
|
"kindString": "Method",
|
|
@@ -8071,7 +8485,7 @@
|
|
|
8071
8485
|
],
|
|
8072
8486
|
"signatures": [
|
|
8073
8487
|
{
|
|
8074
|
-
"id":
|
|
8488
|
+
"id": 581,
|
|
8075
8489
|
"name": "itemAdded",
|
|
8076
8490
|
"kind": 4096,
|
|
8077
8491
|
"kindString": "Call signature",
|
|
@@ -8081,7 +8495,7 @@
|
|
|
8081
8495
|
},
|
|
8082
8496
|
"parameters": [
|
|
8083
8497
|
{
|
|
8084
|
-
"id":
|
|
8498
|
+
"id": 582,
|
|
8085
8499
|
"name": "args",
|
|
8086
8500
|
"kind": 32768,
|
|
8087
8501
|
"kindString": "Parameter",
|
|
@@ -8091,7 +8505,7 @@
|
|
|
8091
8505
|
},
|
|
8092
8506
|
"type": {
|
|
8093
8507
|
"type": "reference",
|
|
8094
|
-
"id":
|
|
8508
|
+
"id": 576,
|
|
8095
8509
|
"name": "SkyLookupAddCallbackArgs"
|
|
8096
8510
|
}
|
|
8097
8511
|
}
|
|
@@ -8109,7 +8523,7 @@
|
|
|
8109
8523
|
"title": "Methods",
|
|
8110
8524
|
"kind": 2048,
|
|
8111
8525
|
"children": [
|
|
8112
|
-
|
|
8526
|
+
580
|
|
8113
8527
|
]
|
|
8114
8528
|
}
|
|
8115
8529
|
],
|
|
@@ -8122,7 +8536,7 @@
|
|
|
8122
8536
|
]
|
|
8123
8537
|
},
|
|
8124
8538
|
{
|
|
8125
|
-
"id":
|
|
8539
|
+
"id": 587,
|
|
8126
8540
|
"name": "SkyLookupShowMoreConfig",
|
|
8127
8541
|
"kind": 256,
|
|
8128
8542
|
"kindString": "Interface",
|
|
@@ -8132,7 +8546,7 @@
|
|
|
8132
8546
|
},
|
|
8133
8547
|
"children": [
|
|
8134
8548
|
{
|
|
8135
|
-
"id":
|
|
8549
|
+
"id": 588,
|
|
8136
8550
|
"name": "customPicker",
|
|
8137
8551
|
"kind": 1024,
|
|
8138
8552
|
"kindString": "Property",
|
|
@@ -8151,12 +8565,12 @@
|
|
|
8151
8565
|
],
|
|
8152
8566
|
"type": {
|
|
8153
8567
|
"type": "reference",
|
|
8154
|
-
"id":
|
|
8568
|
+
"id": 590,
|
|
8155
8569
|
"name": "SkyLookupShowMoreCustomPicker"
|
|
8156
8570
|
}
|
|
8157
8571
|
},
|
|
8158
8572
|
{
|
|
8159
|
-
"id":
|
|
8573
|
+
"id": 589,
|
|
8160
8574
|
"name": "nativePickerConfig",
|
|
8161
8575
|
"kind": 1024,
|
|
8162
8576
|
"kindString": "Property",
|
|
@@ -8175,7 +8589,7 @@
|
|
|
8175
8589
|
],
|
|
8176
8590
|
"type": {
|
|
8177
8591
|
"type": "reference",
|
|
8178
|
-
"id":
|
|
8592
|
+
"id": 600,
|
|
8179
8593
|
"name": "SkyLookupShowMoreNativePickerConfig"
|
|
8180
8594
|
}
|
|
8181
8595
|
}
|
|
@@ -8185,8 +8599,8 @@
|
|
|
8185
8599
|
"title": "Properties",
|
|
8186
8600
|
"kind": 1024,
|
|
8187
8601
|
"children": [
|
|
8188
|
-
|
|
8189
|
-
|
|
8602
|
+
588,
|
|
8603
|
+
589
|
|
8190
8604
|
]
|
|
8191
8605
|
}
|
|
8192
8606
|
],
|
|
@@ -8199,7 +8613,7 @@
|
|
|
8199
8613
|
]
|
|
8200
8614
|
},
|
|
8201
8615
|
{
|
|
8202
|
-
"id":
|
|
8616
|
+
"id": 590,
|
|
8203
8617
|
"name": "SkyLookupShowMoreCustomPicker",
|
|
8204
8618
|
"kind": 256,
|
|
8205
8619
|
"kindString": "Interface",
|
|
@@ -8209,7 +8623,7 @@
|
|
|
8209
8623
|
},
|
|
8210
8624
|
"children": [
|
|
8211
8625
|
{
|
|
8212
|
-
"id":
|
|
8626
|
+
"id": 591,
|
|
8213
8627
|
"name": "open",
|
|
8214
8628
|
"kind": 2048,
|
|
8215
8629
|
"kindString": "Method",
|
|
@@ -8223,21 +8637,21 @@
|
|
|
8223
8637
|
],
|
|
8224
8638
|
"signatures": [
|
|
8225
8639
|
{
|
|
8226
|
-
"id":
|
|
8640
|
+
"id": 592,
|
|
8227
8641
|
"name": "open",
|
|
8228
8642
|
"kind": 4096,
|
|
8229
8643
|
"kindString": "Call signature",
|
|
8230
8644
|
"flags": {},
|
|
8231
8645
|
"parameters": [
|
|
8232
8646
|
{
|
|
8233
|
-
"id":
|
|
8647
|
+
"id": 593,
|
|
8234
8648
|
"name": "pickerContext",
|
|
8235
8649
|
"kind": 32768,
|
|
8236
8650
|
"kindString": "Parameter",
|
|
8237
8651
|
"flags": {},
|
|
8238
8652
|
"type": {
|
|
8239
8653
|
"type": "reference",
|
|
8240
|
-
"id":
|
|
8654
|
+
"id": 594,
|
|
8241
8655
|
"name": "SkyLookupShowMoreCustomPickerContext"
|
|
8242
8656
|
}
|
|
8243
8657
|
}
|
|
@@ -8255,7 +8669,7 @@
|
|
|
8255
8669
|
"title": "Methods",
|
|
8256
8670
|
"kind": 2048,
|
|
8257
8671
|
"children": [
|
|
8258
|
-
|
|
8672
|
+
591
|
|
8259
8673
|
]
|
|
8260
8674
|
}
|
|
8261
8675
|
],
|
|
@@ -8268,7 +8682,7 @@
|
|
|
8268
8682
|
]
|
|
8269
8683
|
},
|
|
8270
8684
|
{
|
|
8271
|
-
"id":
|
|
8685
|
+
"id": 600,
|
|
8272
8686
|
"name": "SkyLookupShowMoreNativePickerConfig",
|
|
8273
8687
|
"kind": 256,
|
|
8274
8688
|
"kindString": "Interface",
|
|
@@ -8278,7 +8692,7 @@
|
|
|
8278
8692
|
},
|
|
8279
8693
|
"children": [
|
|
8280
8694
|
{
|
|
8281
|
-
"id":
|
|
8695
|
+
"id": 601,
|
|
8282
8696
|
"name": "itemTemplate",
|
|
8283
8697
|
"kind": 1024,
|
|
8284
8698
|
"kindString": "Property",
|
|
@@ -8307,7 +8721,7 @@
|
|
|
8307
8721
|
}
|
|
8308
8722
|
},
|
|
8309
8723
|
{
|
|
8310
|
-
"id":
|
|
8724
|
+
"id": 602,
|
|
8311
8725
|
"name": "title",
|
|
8312
8726
|
"kind": 1024,
|
|
8313
8727
|
"kindString": "Property",
|
|
@@ -8341,8 +8755,8 @@
|
|
|
8341
8755
|
"title": "Properties",
|
|
8342
8756
|
"kind": 1024,
|
|
8343
8757
|
"children": [
|
|
8344
|
-
|
|
8345
|
-
|
|
8758
|
+
601,
|
|
8759
|
+
602
|
|
8346
8760
|
]
|
|
8347
8761
|
}
|
|
8348
8762
|
],
|
|
@@ -8355,7 +8769,34 @@
|
|
|
8355
8769
|
]
|
|
8356
8770
|
},
|
|
8357
8771
|
{
|
|
8358
|
-
"id":
|
|
8772
|
+
"id": 547,
|
|
8773
|
+
"name": "AutocompleteSearchAsyncResultDisplayType",
|
|
8774
|
+
"kind": 4194304,
|
|
8775
|
+
"kindString": "Type alias",
|
|
8776
|
+
"flags": {},
|
|
8777
|
+
"sources": [
|
|
8778
|
+
{
|
|
8779
|
+
"fileName": "projects/lookup/src/modules/autocomplete/types/autocomplete-search-async-result-display-type.ts",
|
|
8780
|
+
"line": 1,
|
|
8781
|
+
"character": 12
|
|
8782
|
+
}
|
|
8783
|
+
],
|
|
8784
|
+
"type": {
|
|
8785
|
+
"type": "union",
|
|
8786
|
+
"types": [
|
|
8787
|
+
{
|
|
8788
|
+
"type": "literal",
|
|
8789
|
+
"value": "popover"
|
|
8790
|
+
},
|
|
8791
|
+
{
|
|
8792
|
+
"type": "literal",
|
|
8793
|
+
"value": "modal"
|
|
8794
|
+
}
|
|
8795
|
+
]
|
|
8796
|
+
}
|
|
8797
|
+
},
|
|
8798
|
+
{
|
|
8799
|
+
"id": 548,
|
|
8359
8800
|
"name": "SkyAutocompleteSearchFunction",
|
|
8360
8801
|
"kind": 4194304,
|
|
8361
8802
|
"kindString": "Type alias",
|
|
@@ -8370,7 +8811,7 @@
|
|
|
8370
8811
|
"type": {
|
|
8371
8812
|
"type": "reflection",
|
|
8372
8813
|
"declaration": {
|
|
8373
|
-
"id":
|
|
8814
|
+
"id": 549,
|
|
8374
8815
|
"name": "__type",
|
|
8375
8816
|
"kind": 65536,
|
|
8376
8817
|
"kindString": "Type literal",
|
|
@@ -8384,14 +8825,14 @@
|
|
|
8384
8825
|
],
|
|
8385
8826
|
"signatures": [
|
|
8386
8827
|
{
|
|
8387
|
-
"id":
|
|
8828
|
+
"id": 550,
|
|
8388
8829
|
"name": "__type",
|
|
8389
8830
|
"kind": 4096,
|
|
8390
8831
|
"kindString": "Call signature",
|
|
8391
8832
|
"flags": {},
|
|
8392
8833
|
"parameters": [
|
|
8393
8834
|
{
|
|
8394
|
-
"id":
|
|
8835
|
+
"id": 551,
|
|
8395
8836
|
"name": "searchText",
|
|
8396
8837
|
"kind": 32768,
|
|
8397
8838
|
"kindString": "Parameter",
|
|
@@ -8402,7 +8843,7 @@
|
|
|
8402
8843
|
}
|
|
8403
8844
|
},
|
|
8404
8845
|
{
|
|
8405
|
-
"id":
|
|
8846
|
+
"id": 552,
|
|
8406
8847
|
"name": "data",
|
|
8407
8848
|
"kind": 32768,
|
|
8408
8849
|
"kindString": "Parameter",
|
|
@@ -8418,7 +8859,7 @@
|
|
|
8418
8859
|
],
|
|
8419
8860
|
"type": {
|
|
8420
8861
|
"type": "reference",
|
|
8421
|
-
"id":
|
|
8862
|
+
"id": 558,
|
|
8422
8863
|
"name": "SkyAutocompleteSearchFunctionResponse"
|
|
8423
8864
|
}
|
|
8424
8865
|
}
|
|
@@ -8427,7 +8868,7 @@
|
|
|
8427
8868
|
}
|
|
8428
8869
|
},
|
|
8429
8870
|
{
|
|
8430
|
-
"id":
|
|
8871
|
+
"id": 553,
|
|
8431
8872
|
"name": "SkyAutocompleteSearchFunctionFilter",
|
|
8432
8873
|
"kind": 4194304,
|
|
8433
8874
|
"kindString": "Type alias",
|
|
@@ -8442,7 +8883,7 @@
|
|
|
8442
8883
|
"type": {
|
|
8443
8884
|
"type": "reflection",
|
|
8444
8885
|
"declaration": {
|
|
8445
|
-
"id":
|
|
8886
|
+
"id": 554,
|
|
8446
8887
|
"name": "__type",
|
|
8447
8888
|
"kind": 65536,
|
|
8448
8889
|
"kindString": "Type literal",
|
|
@@ -8456,14 +8897,14 @@
|
|
|
8456
8897
|
],
|
|
8457
8898
|
"signatures": [
|
|
8458
8899
|
{
|
|
8459
|
-
"id":
|
|
8900
|
+
"id": 555,
|
|
8460
8901
|
"name": "__type",
|
|
8461
8902
|
"kind": 4096,
|
|
8462
8903
|
"kindString": "Call signature",
|
|
8463
8904
|
"flags": {},
|
|
8464
8905
|
"parameters": [
|
|
8465
8906
|
{
|
|
8466
|
-
"id":
|
|
8907
|
+
"id": 556,
|
|
8467
8908
|
"name": "searchText",
|
|
8468
8909
|
"kind": 32768,
|
|
8469
8910
|
"kindString": "Parameter",
|
|
@@ -8474,7 +8915,7 @@
|
|
|
8474
8915
|
}
|
|
8475
8916
|
},
|
|
8476
8917
|
{
|
|
8477
|
-
"id":
|
|
8918
|
+
"id": 557,
|
|
8478
8919
|
"name": "item",
|
|
8479
8920
|
"kind": 32768,
|
|
8480
8921
|
"kindString": "Parameter",
|
|
@@ -8495,7 +8936,7 @@
|
|
|
8495
8936
|
}
|
|
8496
8937
|
},
|
|
8497
8938
|
{
|
|
8498
|
-
"id":
|
|
8939
|
+
"id": 558,
|
|
8499
8940
|
"name": "SkyAutocompleteSearchFunctionResponse",
|
|
8500
8941
|
"kind": 4194304,
|
|
8501
8942
|
"kindString": "Type alias",
|
|
@@ -8534,7 +8975,7 @@
|
|
|
8534
8975
|
}
|
|
8535
8976
|
},
|
|
8536
8977
|
{
|
|
8537
|
-
"id":
|
|
8978
|
+
"id": 586,
|
|
8538
8979
|
"name": "SkyLookupSelectModeType",
|
|
8539
8980
|
"kind": 4194304,
|
|
8540
8981
|
"kindString": "Type alias",
|
|
@@ -8566,39 +9007,42 @@
|
|
|
8566
9007
|
"title": "Classes",
|
|
8567
9008
|
"kind": 128,
|
|
8568
9009
|
"children": [
|
|
8569
|
-
|
|
8570
|
-
|
|
8571
|
-
|
|
8572
|
-
|
|
8573
|
-
|
|
8574
|
-
|
|
9010
|
+
561,
|
|
9011
|
+
564,
|
|
9012
|
+
573,
|
|
9013
|
+
594,
|
|
9014
|
+
606,
|
|
9015
|
+
603,
|
|
8575
9016
|
1,
|
|
8576
9017
|
90,
|
|
8577
|
-
|
|
8578
|
-
|
|
9018
|
+
255,
|
|
9019
|
+
360
|
|
8579
9020
|
]
|
|
8580
9021
|
},
|
|
8581
9022
|
{
|
|
8582
9023
|
"title": "Interfaces",
|
|
8583
9024
|
"kind": 256,
|
|
8584
9025
|
"children": [
|
|
8585
|
-
|
|
8586
|
-
|
|
8587
|
-
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
8591
|
-
|
|
9026
|
+
536,
|
|
9027
|
+
542,
|
|
9028
|
+
559,
|
|
9029
|
+
567,
|
|
9030
|
+
576,
|
|
9031
|
+
579,
|
|
9032
|
+
587,
|
|
9033
|
+
590,
|
|
9034
|
+
600
|
|
8592
9035
|
]
|
|
8593
9036
|
},
|
|
8594
9037
|
{
|
|
8595
9038
|
"title": "Type aliases",
|
|
8596
9039
|
"kind": 4194304,
|
|
8597
9040
|
"children": [
|
|
8598
|
-
|
|
8599
|
-
|
|
8600
|
-
|
|
8601
|
-
|
|
9041
|
+
547,
|
|
9042
|
+
548,
|
|
9043
|
+
553,
|
|
9044
|
+
558,
|
|
9045
|
+
586
|
|
8602
9046
|
]
|
|
8603
9047
|
}
|
|
8604
9048
|
],
|