@skyux/lookup 5.2.1 → 5.5.0-beta.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/README.md +6 -4
- package/bundles/skyux-lookup.umd.js +10 -9
- package/documentation.json +468 -56
- package/esm2015/index.js +32 -0
- package/esm2015/index.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/autocomplete-adapter.service.js +62 -0
- package/esm2015/lib/modules/autocomplete/autocomplete-adapter.service.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/autocomplete-default-search-function.js +39 -0
- package/esm2015/lib/modules/autocomplete/autocomplete-default-search-function.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/autocomplete-input.directive.js +220 -0
- package/esm2015/lib/modules/autocomplete/autocomplete-input.directive.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/autocomplete-search-async-disabled.pipe.js +19 -0
- package/esm2015/lib/modules/autocomplete/autocomplete-search-async-disabled.pipe.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/autocomplete.component.js +732 -0
- package/esm2015/lib/modules/autocomplete/autocomplete.component.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/autocomplete.module.js +65 -0
- package/esm2015/lib/modules/autocomplete/autocomplete.module.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-default-search-function-options.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-default-search-function-options.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-input-text-change.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-input-text-change.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-message-type.js +15 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-message-type.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-message.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-message.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-async-args.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-async-args.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-async-function.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-async-function.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-async-result-display-type.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-async-result-display-type.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-async-result.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-async-result.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-function-filter.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-function-filter.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-function-response.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-function-response.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-function.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-function.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-selection-change.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-selection-change.js.map +1 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-show-more-args.js +2 -0
- package/esm2015/lib/modules/autocomplete/types/autocomplete-show-more-args.js.map +1 -0
- package/esm2015/{modules → lib/modules}/country-field/country-field.component.js +7 -3
- package/esm2015/lib/modules/country-field/country-field.component.js.map +1 -0
- package/esm2015/lib/modules/country-field/country-field.module.js +49 -0
- package/esm2015/lib/modules/country-field/country-field.module.js.map +1 -0
- package/esm2015/lib/modules/country-field/types/country.js +2 -0
- package/esm2015/lib/modules/country-field/types/country.js.map +1 -0
- package/esm2015/lib/modules/lookup/lookup-adapter.service.js +21 -0
- package/esm2015/lib/modules/lookup/lookup-adapter.service.js.map +1 -0
- package/esm2015/lib/modules/lookup/lookup-autocomplete-adapter.js +72 -0
- package/esm2015/lib/modules/lookup/lookup-autocomplete-adapter.js.map +1 -0
- package/esm2015/lib/modules/lookup/lookup-item-selected.pipe.js +16 -0
- package/esm2015/lib/modules/lookup/lookup-item-selected.pipe.js.map +1 -0
- package/esm2015/lib/modules/lookup/lookup-show-more-async-modal.component.js +186 -0
- package/esm2015/lib/modules/lookup/lookup-show-more-async-modal.component.js.map +1 -0
- package/esm2015/lib/modules/lookup/lookup-show-more-modal.component.js +258 -0
- package/esm2015/lib/modules/lookup/lookup-show-more-modal.component.js.map +1 -0
- package/esm2015/lib/modules/lookup/lookup.component.js +608 -0
- package/esm2015/lib/modules/lookup/lookup.component.js.map +1 -0
- package/esm2015/lib/modules/lookup/lookup.module.js +94 -0
- package/esm2015/lib/modules/lookup/lookup.module.js.map +1 -0
- package/esm2015/lib/modules/lookup/types/lookup-add-click-callback-args.js +2 -0
- package/esm2015/lib/modules/lookup/types/lookup-add-click-callback-args.js.map +1 -0
- package/esm2015/lib/modules/lookup/types/lookup-add-click-event-args.js +2 -0
- package/esm2015/lib/modules/lookup/types/lookup-add-click-event-args.js.map +1 -0
- package/esm2015/lib/modules/lookup/types/lookup-select-mode-type.js +2 -0
- package/esm2015/lib/modules/lookup/types/lookup-select-mode-type.js.map +1 -0
- package/esm2015/lib/modules/lookup/types/lookup-select-mode.js +16 -0
- package/esm2015/lib/modules/lookup/types/lookup-select-mode.js.map +1 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-config.js +2 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-config.js.map +1 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-custom-picker-context.js +7 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-custom-picker-context.js.map +1 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-custom-picker.js +2 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-custom-picker.js.map +1 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-native-picker-async-context.js +7 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-native-picker-async-context.js.map +1 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-native-picker-config.js +2 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-native-picker-config.js.map +1 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-native-picker-context.js +7 -0
- package/esm2015/lib/modules/lookup/types/lookup-show-more-native-picker-context.js.map +1 -0
- package/esm2015/lib/modules/search/search-adapter.service.js +45 -0
- package/esm2015/lib/modules/search/search-adapter.service.js.map +1 -0
- package/esm2015/lib/modules/search/search.component.js +260 -0
- package/esm2015/lib/modules/search/search.component.js.map +1 -0
- package/esm2015/lib/modules/search/search.module.js +46 -0
- package/esm2015/lib/modules/search/search.module.js.map +1 -0
- package/esm2015/lib/modules/shared/sky-lookup-resources.module.js +72 -0
- package/esm2015/lib/modules/shared/sky-lookup-resources.module.js.map +1 -0
- package/esm2015/lib/modules/shared/sky-lookup-string-utils.js +8 -0
- package/esm2015/lib/modules/shared/sky-lookup-string-utils.js.map +1 -0
- package/esm2015/lib/polyfills.js +30 -0
- package/esm2015/lib/polyfills.js.map +1 -0
- package/esm2015/skyux-lookup.js +2 -2
- package/esm2015/skyux-lookup.js.map +1 -0
- package/esm2015/testing/country-field/country-field-fixture.js +1 -1
- package/esm2015/testing/country-field/country-field-fixture.js.map +1 -0
- package/esm2015/testing/country-field/country-field-testing.module.js +1 -1
- package/esm2015/testing/country-field/country-field-testing.module.js.map +1 -0
- package/esm2015/testing/public-api.js +1 -1
- package/esm2015/testing/public-api.js.map +1 -0
- package/esm2015/testing/search/search-fixture.js +1 -1
- package/esm2015/testing/search/search-fixture.js.map +1 -0
- package/esm2015/testing/search/search-testing.module.js +1 -1
- package/esm2015/testing/search/search-testing.module.js.map +1 -0
- package/esm2015/testing/skyux-lookup-testing.js +1 -1
- package/esm2015/testing/skyux-lookup-testing.js.map +1 -0
- package/fesm2015/skyux-lookup-testing.js.map +1 -1
- package/fesm2015/skyux-lookup.js +12 -11
- package/fesm2015/skyux-lookup.js.map +1 -1
- package/index.d.ts +27 -0
- package/{modules → lib/modules}/autocomplete/autocomplete-adapter.service.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/autocomplete-default-search-function.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/autocomplete-input.directive.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/autocomplete-search-async-disabled.pipe.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/autocomplete.component.d.ts +3 -3
- package/{modules → lib/modules}/autocomplete/autocomplete.module.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-default-search-function-options.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-input-text-change.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-message-type.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-message.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-search-async-args.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-search-async-function.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-search-async-result-display-type.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-search-async-result.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-search-function-filter.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-search-function-response.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-search-function.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-selection-change.d.ts +0 -0
- package/{modules → lib/modules}/autocomplete/types/autocomplete-show-more-args.d.ts +0 -0
- package/{modules → lib/modules}/country-field/country-field.component.d.ts +3 -2
- package/{modules → lib/modules}/country-field/country-field.module.d.ts +0 -0
- package/{modules → lib/modules}/country-field/types/country.d.ts +0 -0
- package/{modules → lib/modules}/lookup/lookup-adapter.service.d.ts +0 -0
- package/{modules → lib/modules}/lookup/lookup-autocomplete-adapter.d.ts +2 -2
- package/{modules → lib/modules}/lookup/lookup-item-selected.pipe.d.ts +0 -0
- package/{modules → lib/modules}/lookup/lookup-show-more-async-modal.component.d.ts +0 -0
- package/{modules → lib/modules}/lookup/lookup-show-more-modal.component.d.ts +0 -0
- package/{modules → lib/modules}/lookup/lookup.component.d.ts +0 -0
- package/{modules → lib/modules}/lookup/lookup.module.d.ts +0 -0
- package/{modules → lib/modules}/lookup/types/lookup-add-click-callback-args.d.ts +0 -0
- package/{modules → lib/modules}/lookup/types/lookup-add-click-event-args.d.ts +0 -0
- package/{modules → lib/modules}/lookup/types/lookup-select-mode-type.d.ts +0 -0
- package/{modules → lib/modules}/lookup/types/lookup-select-mode.d.ts +0 -0
- package/{modules → lib/modules}/lookup/types/lookup-show-more-config.d.ts +0 -0
- package/{modules → lib/modules}/lookup/types/lookup-show-more-custom-picker-context.d.ts +0 -0
- package/{modules → lib/modules}/lookup/types/lookup-show-more-custom-picker.d.ts +0 -0
- package/{modules → lib/modules}/lookup/types/lookup-show-more-native-picker-async-context.d.ts +0 -0
- package/{modules → lib/modules}/lookup/types/lookup-show-more-native-picker-config.d.ts +1 -1
- package/{modules → lib/modules}/lookup/types/lookup-show-more-native-picker-context.d.ts +0 -0
- package/{modules → lib/modules}/search/search-adapter.service.d.ts +0 -0
- package/{modules → lib/modules}/search/search.component.d.ts +5 -5
- package/{modules → lib/modules}/search/search.module.d.ts +0 -0
- package/{modules → lib/modules}/shared/sky-lookup-resources.module.d.ts +0 -0
- package/{modules → lib/modules}/shared/sky-lookup-string-utils.d.ts +0 -0
- package/{polyfills.d.ts → lib/polyfills.d.ts} +0 -0
- package/package.json +23 -9
- package/skyux-lookup.d.ts +1 -1
- package/LICENSE +0 -21
- package/esm2015/modules/autocomplete/autocomplete-adapter.service.js +0 -61
- package/esm2015/modules/autocomplete/autocomplete-default-search-function.js +0 -39
- package/esm2015/modules/autocomplete/autocomplete-input.directive.js +0 -220
- package/esm2015/modules/autocomplete/autocomplete-search-async-disabled.pipe.js +0 -19
- package/esm2015/modules/autocomplete/autocomplete.component.js +0 -731
- package/esm2015/modules/autocomplete/autocomplete.module.js +0 -65
- package/esm2015/modules/autocomplete/types/autocomplete-default-search-function-options.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-input-text-change.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-message-type.js +0 -15
- package/esm2015/modules/autocomplete/types/autocomplete-message.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-search-async-args.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-search-async-function.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-search-async-result-display-type.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-search-async-result.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-search-function-filter.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-search-function-response.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-search-function.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-selection-change.js +0 -2
- package/esm2015/modules/autocomplete/types/autocomplete-show-more-args.js +0 -2
- package/esm2015/modules/country-field/country-field.module.js +0 -49
- package/esm2015/modules/country-field/types/country.js +0 -2
- package/esm2015/modules/lookup/lookup-adapter.service.js +0 -21
- package/esm2015/modules/lookup/lookup-autocomplete-adapter.js +0 -72
- package/esm2015/modules/lookup/lookup-item-selected.pipe.js +0 -16
- package/esm2015/modules/lookup/lookup-show-more-async-modal.component.js +0 -184
- package/esm2015/modules/lookup/lookup-show-more-modal.component.js +0 -256
- package/esm2015/modules/lookup/lookup.component.js +0 -602
- package/esm2015/modules/lookup/lookup.module.js +0 -94
- package/esm2015/modules/lookup/types/lookup-add-click-callback-args.js +0 -2
- package/esm2015/modules/lookup/types/lookup-add-click-event-args.js +0 -2
- package/esm2015/modules/lookup/types/lookup-select-mode-type.js +0 -2
- package/esm2015/modules/lookup/types/lookup-select-mode.js +0 -16
- package/esm2015/modules/lookup/types/lookup-show-more-config.js +0 -2
- package/esm2015/modules/lookup/types/lookup-show-more-custom-picker-context.js +0 -7
- package/esm2015/modules/lookup/types/lookup-show-more-custom-picker.js +0 -2
- package/esm2015/modules/lookup/types/lookup-show-more-native-picker-async-context.js +0 -7
- package/esm2015/modules/lookup/types/lookup-show-more-native-picker-config.js +0 -2
- package/esm2015/modules/lookup/types/lookup-show-more-native-picker-context.js +0 -7
- package/esm2015/modules/search/search-adapter.service.js +0 -45
- package/esm2015/modules/search/search.component.js +0 -260
- package/esm2015/modules/search/search.module.js +0 -46
- package/esm2015/modules/shared/sky-lookup-resources.module.js +0 -72
- package/esm2015/modules/shared/sky-lookup-string-utils.js +0 -8
- package/esm2015/polyfills.js +0 -30
- package/esm2015/public-api.js +0 -32
- package/public-api.d.ts +0 -27
package/documentation.json
CHANGED
|
@@ -44,6 +44,8 @@
|
|
|
44
44
|
"name": "NgModule",
|
|
45
45
|
"type": {
|
|
46
46
|
"type": "reference",
|
|
47
|
+
"qualifiedName": "NgModuleDecorator",
|
|
48
|
+
"package": "@angular/core",
|
|
47
49
|
"name": "NgModule"
|
|
48
50
|
},
|
|
49
51
|
"arguments": {
|
|
@@ -102,6 +104,8 @@
|
|
|
102
104
|
"name": "NgModule",
|
|
103
105
|
"type": {
|
|
104
106
|
"type": "reference",
|
|
107
|
+
"qualifiedName": "NgModuleDecorator",
|
|
108
|
+
"package": "@angular/core",
|
|
105
109
|
"name": "NgModule"
|
|
106
110
|
},
|
|
107
111
|
"arguments": {
|
|
@@ -160,6 +164,8 @@
|
|
|
160
164
|
"name": "NgModule",
|
|
161
165
|
"type": {
|
|
162
166
|
"type": "reference",
|
|
167
|
+
"qualifiedName": "NgModuleDecorator",
|
|
168
|
+
"package": "@angular/core",
|
|
163
169
|
"name": "NgModule"
|
|
164
170
|
},
|
|
165
171
|
"arguments": {
|
|
@@ -348,6 +354,8 @@
|
|
|
348
354
|
"name": "Component",
|
|
349
355
|
"type": {
|
|
350
356
|
"type": "reference",
|
|
357
|
+
"qualifiedName": "ComponentDecorator",
|
|
358
|
+
"package": "@angular/core",
|
|
351
359
|
"name": "Component"
|
|
352
360
|
},
|
|
353
361
|
"arguments": {
|
|
@@ -402,6 +410,8 @@
|
|
|
402
410
|
"name": "any"
|
|
403
411
|
}
|
|
404
412
|
],
|
|
413
|
+
"qualifiedName": "ElementRef",
|
|
414
|
+
"package": "@angular/core",
|
|
405
415
|
"name": "ElementRef"
|
|
406
416
|
}
|
|
407
417
|
},
|
|
@@ -424,6 +434,8 @@
|
|
|
424
434
|
"flags": {},
|
|
425
435
|
"type": {
|
|
426
436
|
"type": "reference",
|
|
437
|
+
"qualifiedName": "ChangeDetectorRef",
|
|
438
|
+
"package": "@angular/core",
|
|
427
439
|
"name": "ChangeDetectorRef"
|
|
428
440
|
}
|
|
429
441
|
}
|
|
@@ -453,6 +465,8 @@
|
|
|
453
465
|
],
|
|
454
466
|
"type": {
|
|
455
467
|
"type": "reference",
|
|
468
|
+
"qualifiedName": "Subscription",
|
|
469
|
+
"package": "rxjs",
|
|
456
470
|
"name": "Subscription"
|
|
457
471
|
}
|
|
458
472
|
},
|
|
@@ -499,6 +513,8 @@
|
|
|
499
513
|
"name": "Input",
|
|
500
514
|
"type": {
|
|
501
515
|
"type": "reference",
|
|
516
|
+
"qualifiedName": "InputDecorator",
|
|
517
|
+
"package": "@angular/core",
|
|
502
518
|
"name": "Input"
|
|
503
519
|
},
|
|
504
520
|
"arguments": {}
|
|
@@ -539,6 +555,8 @@
|
|
|
539
555
|
"name": "Input",
|
|
540
556
|
"type": {
|
|
541
557
|
"type": "reference",
|
|
558
|
+
"qualifiedName": "InputDecorator",
|
|
559
|
+
"package": "@angular/core",
|
|
542
560
|
"name": "Input"
|
|
543
561
|
},
|
|
544
562
|
"arguments": {}
|
|
@@ -587,11 +605,11 @@
|
|
|
587
605
|
"isPublic": true
|
|
588
606
|
},
|
|
589
607
|
"comment": {
|
|
590
|
-
"shortText": "Specifies the expand mode for the search input. The valid options\ninclude
|
|
608
|
+
"shortText": "Specifies the expand mode for the search input. The valid options\ninclude `\"responsive\"` to collapse the search input into a button on\nmobile devices, `\"none\"` to *not* collapse the search input on mobile\ndevices, and `\"fit\"` to extend the search input to fit the width of its container.",
|
|
591
609
|
"tags": [
|
|
592
610
|
{
|
|
593
611
|
"tag": "default",
|
|
594
|
-
"text": "responsive\n"
|
|
612
|
+
"text": "\"responsive\"\n"
|
|
595
613
|
}
|
|
596
614
|
]
|
|
597
615
|
},
|
|
@@ -600,6 +618,8 @@
|
|
|
600
618
|
"name": "Input",
|
|
601
619
|
"type": {
|
|
602
620
|
"type": "reference",
|
|
621
|
+
"qualifiedName": "InputDecorator",
|
|
622
|
+
"package": "@angular/core",
|
|
603
623
|
"name": "Input"
|
|
604
624
|
},
|
|
605
625
|
"arguments": {}
|
|
@@ -616,7 +636,7 @@
|
|
|
616
636
|
"type": "intrinsic",
|
|
617
637
|
"name": "string"
|
|
618
638
|
},
|
|
619
|
-
"defaultValue": "
|
|
639
|
+
"defaultValue": "EXPAND_MODE_RESPONSIVE"
|
|
620
640
|
},
|
|
621
641
|
{
|
|
622
642
|
"id": 623,
|
|
@@ -637,7 +657,7 @@
|
|
|
637
657
|
"type": "intrinsic",
|
|
638
658
|
"name": "string"
|
|
639
659
|
},
|
|
640
|
-
"defaultValue": "
|
|
660
|
+
"defaultValue": "INPUT_SHOWN_STATE"
|
|
641
661
|
},
|
|
642
662
|
{
|
|
643
663
|
"id": 621,
|
|
@@ -715,7 +735,7 @@
|
|
|
715
735
|
"tags": [
|
|
716
736
|
{
|
|
717
737
|
"tag": "default",
|
|
718
|
-
"text": "Find in this list\n"
|
|
738
|
+
"text": "\"Find in this list\"\n"
|
|
719
739
|
}
|
|
720
740
|
]
|
|
721
741
|
},
|
|
@@ -724,6 +744,8 @@
|
|
|
724
744
|
"name": "Input",
|
|
725
745
|
"type": {
|
|
726
746
|
"type": "reference",
|
|
747
|
+
"qualifiedName": "InputDecorator",
|
|
748
|
+
"package": "@angular/core",
|
|
727
749
|
"name": "Input"
|
|
728
750
|
},
|
|
729
751
|
"arguments": {}
|
|
@@ -757,6 +779,8 @@
|
|
|
757
779
|
"name": "Output",
|
|
758
780
|
"type": {
|
|
759
781
|
"type": "reference",
|
|
782
|
+
"qualifiedName": "OutputDecorator",
|
|
783
|
+
"package": "@angular/core",
|
|
760
784
|
"name": "Output"
|
|
761
785
|
},
|
|
762
786
|
"arguments": {}
|
|
@@ -777,6 +801,8 @@
|
|
|
777
801
|
"name": "string"
|
|
778
802
|
}
|
|
779
803
|
],
|
|
804
|
+
"qualifiedName": "EventEmitter",
|
|
805
|
+
"package": "@angular/core",
|
|
780
806
|
"name": "EventEmitter"
|
|
781
807
|
},
|
|
782
808
|
"defaultValue": "..."
|
|
@@ -818,6 +844,8 @@
|
|
|
818
844
|
"name": "Output",
|
|
819
845
|
"type": {
|
|
820
846
|
"type": "reference",
|
|
847
|
+
"qualifiedName": "OutputDecorator",
|
|
848
|
+
"package": "@angular/core",
|
|
821
849
|
"name": "Output"
|
|
822
850
|
},
|
|
823
851
|
"arguments": {}
|
|
@@ -838,6 +866,8 @@
|
|
|
838
866
|
"name": "string"
|
|
839
867
|
}
|
|
840
868
|
],
|
|
869
|
+
"qualifiedName": "EventEmitter",
|
|
870
|
+
"package": "@angular/core",
|
|
841
871
|
"name": "EventEmitter"
|
|
842
872
|
},
|
|
843
873
|
"defaultValue": "..."
|
|
@@ -858,6 +888,8 @@
|
|
|
858
888
|
"name": "Output",
|
|
859
889
|
"type": {
|
|
860
890
|
"type": "reference",
|
|
891
|
+
"qualifiedName": "OutputDecorator",
|
|
892
|
+
"package": "@angular/core",
|
|
861
893
|
"name": "Output"
|
|
862
894
|
},
|
|
863
895
|
"arguments": {}
|
|
@@ -878,6 +910,8 @@
|
|
|
878
910
|
"name": "void"
|
|
879
911
|
}
|
|
880
912
|
],
|
|
913
|
+
"qualifiedName": "EventEmitter",
|
|
914
|
+
"package": "@angular/core",
|
|
881
915
|
"name": "EventEmitter"
|
|
882
916
|
},
|
|
883
917
|
"defaultValue": "..."
|
|
@@ -898,6 +932,8 @@
|
|
|
898
932
|
"name": "Input",
|
|
899
933
|
"type": {
|
|
900
934
|
"type": "reference",
|
|
935
|
+
"qualifiedName": "InputDecorator",
|
|
936
|
+
"package": "@angular/core",
|
|
901
937
|
"name": "Input"
|
|
902
938
|
},
|
|
903
939
|
"arguments": {}
|
|
@@ -1017,6 +1053,8 @@
|
|
|
1017
1053
|
"flags": {},
|
|
1018
1054
|
"type": {
|
|
1019
1055
|
"type": "reference",
|
|
1056
|
+
"qualifiedName": "KeyboardEvent",
|
|
1057
|
+
"package": "typescript",
|
|
1020
1058
|
"name": "KeyboardEvent"
|
|
1021
1059
|
}
|
|
1022
1060
|
},
|
|
@@ -1070,6 +1108,8 @@
|
|
|
1070
1108
|
"flags": {},
|
|
1071
1109
|
"type": {
|
|
1072
1110
|
"type": "reference",
|
|
1111
|
+
"qualifiedName": "AnimationEvent_2",
|
|
1112
|
+
"package": "@angular/animations",
|
|
1073
1113
|
"name": "AnimationEvent_2"
|
|
1074
1114
|
}
|
|
1075
1115
|
}
|
|
@@ -1112,6 +1152,8 @@
|
|
|
1112
1152
|
"flags": {},
|
|
1113
1153
|
"type": {
|
|
1114
1154
|
"type": "reference",
|
|
1155
|
+
"qualifiedName": "AnimationEvent_2",
|
|
1156
|
+
"package": "@angular/animations",
|
|
1115
1157
|
"name": "AnimationEvent_2"
|
|
1116
1158
|
}
|
|
1117
1159
|
}
|
|
@@ -1154,6 +1196,8 @@
|
|
|
1154
1196
|
"flags": {},
|
|
1155
1197
|
"type": {
|
|
1156
1198
|
"type": "reference",
|
|
1199
|
+
"qualifiedName": "SimpleChanges",
|
|
1200
|
+
"package": "@angular/core",
|
|
1157
1201
|
"name": "SimpleChanges"
|
|
1158
1202
|
}
|
|
1159
1203
|
}
|
|
@@ -1389,14 +1433,20 @@
|
|
|
1389
1433
|
"implementedTypes": [
|
|
1390
1434
|
{
|
|
1391
1435
|
"type": "reference",
|
|
1436
|
+
"qualifiedName": "OnDestroy",
|
|
1437
|
+
"package": "@angular/core",
|
|
1392
1438
|
"name": "OnDestroy"
|
|
1393
1439
|
},
|
|
1394
1440
|
{
|
|
1395
1441
|
"type": "reference",
|
|
1442
|
+
"qualifiedName": "OnInit",
|
|
1443
|
+
"package": "@angular/core",
|
|
1396
1444
|
"name": "OnInit"
|
|
1397
1445
|
},
|
|
1398
1446
|
{
|
|
1399
1447
|
"type": "reference",
|
|
1448
|
+
"qualifiedName": "OnChanges",
|
|
1449
|
+
"package": "@angular/core",
|
|
1400
1450
|
"name": "OnChanges"
|
|
1401
1451
|
}
|
|
1402
1452
|
]
|
|
@@ -1412,6 +1462,8 @@
|
|
|
1412
1462
|
"name": "NgModule",
|
|
1413
1463
|
"type": {
|
|
1414
1464
|
"type": "reference",
|
|
1465
|
+
"qualifiedName": "NgModuleDecorator",
|
|
1466
|
+
"package": "@angular/core",
|
|
1415
1467
|
"name": "NgModule"
|
|
1416
1468
|
},
|
|
1417
1469
|
"arguments": {
|
|
@@ -1470,6 +1522,8 @@
|
|
|
1470
1522
|
"name": "Directive",
|
|
1471
1523
|
"type": {
|
|
1472
1524
|
"type": "reference",
|
|
1525
|
+
"qualifiedName": "DirectiveDecorator",
|
|
1526
|
+
"package": "@angular/core",
|
|
1473
1527
|
"name": "Directive"
|
|
1474
1528
|
},
|
|
1475
1529
|
"arguments": {
|
|
@@ -1513,6 +1567,8 @@
|
|
|
1513
1567
|
"name": "any"
|
|
1514
1568
|
}
|
|
1515
1569
|
],
|
|
1570
|
+
"qualifiedName": "ElementRef",
|
|
1571
|
+
"package": "@angular/core",
|
|
1516
1572
|
"name": "ElementRef"
|
|
1517
1573
|
}
|
|
1518
1574
|
},
|
|
@@ -1524,6 +1580,8 @@
|
|
|
1524
1580
|
"flags": {},
|
|
1525
1581
|
"type": {
|
|
1526
1582
|
"type": "reference",
|
|
1583
|
+
"qualifiedName": "Renderer2",
|
|
1584
|
+
"package": "@angular/core",
|
|
1527
1585
|
"name": "Renderer2"
|
|
1528
1586
|
}
|
|
1529
1587
|
}
|
|
@@ -1549,6 +1607,8 @@
|
|
|
1549
1607
|
"name": "Input",
|
|
1550
1608
|
"type": {
|
|
1551
1609
|
"type": "reference",
|
|
1610
|
+
"qualifiedName": "InputDecorator",
|
|
1611
|
+
"package": "@angular/core",
|
|
1552
1612
|
"name": "Input"
|
|
1553
1613
|
},
|
|
1554
1614
|
"arguments": {}
|
|
@@ -1569,7 +1629,13 @@
|
|
|
1569
1629
|
"kindString": "Get signature",
|
|
1570
1630
|
"flags": {},
|
|
1571
1631
|
"comment": {
|
|
1572
|
-
"shortText": "Specifies the value for the `autocomplete` attribute on the form input."
|
|
1632
|
+
"shortText": "Specifies the value for the `autocomplete` attribute on the form input.",
|
|
1633
|
+
"tags": [
|
|
1634
|
+
{
|
|
1635
|
+
"tag": "default",
|
|
1636
|
+
"text": "\"off\"\n"
|
|
1637
|
+
}
|
|
1638
|
+
]
|
|
1573
1639
|
},
|
|
1574
1640
|
"type": {
|
|
1575
1641
|
"type": "intrinsic",
|
|
@@ -1643,6 +1709,8 @@
|
|
|
1643
1709
|
"name": "void"
|
|
1644
1710
|
}
|
|
1645
1711
|
],
|
|
1712
|
+
"qualifiedName": "Observable",
|
|
1713
|
+
"package": "rxjs",
|
|
1646
1714
|
"name": "Observable"
|
|
1647
1715
|
}
|
|
1648
1716
|
}
|
|
@@ -1661,6 +1729,8 @@
|
|
|
1661
1729
|
"name": "Input",
|
|
1662
1730
|
"type": {
|
|
1663
1731
|
"type": "reference",
|
|
1732
|
+
"qualifiedName": "InputDecorator",
|
|
1733
|
+
"package": "@angular/core",
|
|
1664
1734
|
"name": "Input"
|
|
1665
1735
|
},
|
|
1666
1736
|
"arguments": {}
|
|
@@ -1681,7 +1751,13 @@
|
|
|
1681
1751
|
"kindString": "Get signature",
|
|
1682
1752
|
"flags": {},
|
|
1683
1753
|
"comment": {
|
|
1684
|
-
"shortText": "Indicates whether to disable the autocomplete field."
|
|
1754
|
+
"shortText": "Indicates whether to disable the autocomplete field.",
|
|
1755
|
+
"tags": [
|
|
1756
|
+
{
|
|
1757
|
+
"tag": "default",
|
|
1758
|
+
"text": "false\n"
|
|
1759
|
+
}
|
|
1760
|
+
]
|
|
1685
1761
|
},
|
|
1686
1762
|
"type": {
|
|
1687
1763
|
"type": "intrinsic",
|
|
@@ -1810,6 +1886,8 @@
|
|
|
1810
1886
|
"name": "void"
|
|
1811
1887
|
}
|
|
1812
1888
|
],
|
|
1889
|
+
"qualifiedName": "Observable",
|
|
1890
|
+
"package": "rxjs",
|
|
1813
1891
|
"name": "Observable"
|
|
1814
1892
|
}
|
|
1815
1893
|
}
|
|
@@ -1900,6 +1978,8 @@
|
|
|
1900
1978
|
"name": "SkyAutocompleteInputTextChange"
|
|
1901
1979
|
}
|
|
1902
1980
|
],
|
|
1981
|
+
"qualifiedName": "Observable",
|
|
1982
|
+
"package": "rxjs",
|
|
1903
1983
|
"name": "Observable"
|
|
1904
1984
|
}
|
|
1905
1985
|
}
|
|
@@ -2506,12 +2586,16 @@
|
|
|
2506
2586
|
"flags": {},
|
|
2507
2587
|
"type": {
|
|
2508
2588
|
"type": "reference",
|
|
2589
|
+
"qualifiedName": "AbstractControl",
|
|
2590
|
+
"package": "@angular/forms",
|
|
2509
2591
|
"name": "AbstractControl"
|
|
2510
2592
|
}
|
|
2511
2593
|
}
|
|
2512
2594
|
],
|
|
2513
2595
|
"type": {
|
|
2514
2596
|
"type": "reference",
|
|
2597
|
+
"qualifiedName": "ValidationErrors",
|
|
2598
|
+
"package": "@angular/forms",
|
|
2515
2599
|
"name": "ValidationErrors"
|
|
2516
2600
|
},
|
|
2517
2601
|
"implementationOf": {
|
|
@@ -2628,18 +2712,26 @@
|
|
|
2628
2712
|
"implementedTypes": [
|
|
2629
2713
|
{
|
|
2630
2714
|
"type": "reference",
|
|
2715
|
+
"qualifiedName": "OnInit",
|
|
2716
|
+
"package": "@angular/core",
|
|
2631
2717
|
"name": "OnInit"
|
|
2632
2718
|
},
|
|
2633
2719
|
{
|
|
2634
2720
|
"type": "reference",
|
|
2721
|
+
"qualifiedName": "OnDestroy",
|
|
2722
|
+
"package": "@angular/core",
|
|
2635
2723
|
"name": "OnDestroy"
|
|
2636
2724
|
},
|
|
2637
2725
|
{
|
|
2638
2726
|
"type": "reference",
|
|
2727
|
+
"qualifiedName": "ControlValueAccessor",
|
|
2728
|
+
"package": "@angular/forms",
|
|
2639
2729
|
"name": "ControlValueAccessor"
|
|
2640
2730
|
},
|
|
2641
2731
|
{
|
|
2642
2732
|
"type": "reference",
|
|
2733
|
+
"qualifiedName": "Validator",
|
|
2734
|
+
"package": "@angular/forms",
|
|
2643
2735
|
"name": "Validator"
|
|
2644
2736
|
}
|
|
2645
2737
|
]
|
|
@@ -2655,6 +2747,8 @@
|
|
|
2655
2747
|
"name": "Component",
|
|
2656
2748
|
"type": {
|
|
2657
2749
|
"type": "reference",
|
|
2750
|
+
"qualifiedName": "ComponentDecorator",
|
|
2751
|
+
"package": "@angular/core",
|
|
2658
2752
|
"name": "Component"
|
|
2659
2753
|
},
|
|
2660
2754
|
"arguments": {
|
|
@@ -2692,6 +2786,8 @@
|
|
|
2692
2786
|
"flags": {},
|
|
2693
2787
|
"type": {
|
|
2694
2788
|
"type": "reference",
|
|
2789
|
+
"qualifiedName": "ChangeDetectorRef",
|
|
2790
|
+
"package": "@angular/core",
|
|
2695
2791
|
"name": "ChangeDetectorRef"
|
|
2696
2792
|
}
|
|
2697
2793
|
},
|
|
@@ -2709,6 +2805,8 @@
|
|
|
2709
2805
|
"name": "any"
|
|
2710
2806
|
}
|
|
2711
2807
|
],
|
|
2808
|
+
"qualifiedName": "ElementRef",
|
|
2809
|
+
"package": "@angular/core",
|
|
2712
2810
|
"name": "ElementRef"
|
|
2713
2811
|
}
|
|
2714
2812
|
},
|
|
@@ -2758,6 +2856,8 @@
|
|
|
2758
2856
|
"name": "Optional",
|
|
2759
2857
|
"type": {
|
|
2760
2858
|
"type": "reference",
|
|
2859
|
+
"qualifiedName": "OptionalDecorator",
|
|
2860
|
+
"package": "@angular/core",
|
|
2761
2861
|
"name": "Optional"
|
|
2762
2862
|
},
|
|
2763
2863
|
"arguments": {}
|
|
@@ -2793,6 +2893,8 @@
|
|
|
2793
2893
|
"name": "Input",
|
|
2794
2894
|
"type": {
|
|
2795
2895
|
"type": "reference",
|
|
2896
|
+
"qualifiedName": "InputDecorator",
|
|
2897
|
+
"package": "@angular/core",
|
|
2796
2898
|
"name": "Input"
|
|
2797
2899
|
},
|
|
2798
2900
|
"arguments": {}
|
|
@@ -2865,7 +2967,7 @@
|
|
|
2865
2967
|
"tags": [
|
|
2866
2968
|
{
|
|
2867
2969
|
"tag": "default",
|
|
2868
|
-
"text": "No matches found\n"
|
|
2970
|
+
"text": "\"No matches found\"\n"
|
|
2869
2971
|
}
|
|
2870
2972
|
]
|
|
2871
2973
|
},
|
|
@@ -2874,6 +2976,8 @@
|
|
|
2874
2976
|
"name": "Input",
|
|
2875
2977
|
"type": {
|
|
2876
2978
|
"type": "reference",
|
|
2979
|
+
"qualifiedName": "InputDecorator",
|
|
2980
|
+
"package": "@angular/core",
|
|
2877
2981
|
"name": "Input"
|
|
2878
2982
|
},
|
|
2879
2983
|
"arguments": {}
|
|
@@ -2944,6 +3048,8 @@
|
|
|
2944
3048
|
"name": "Output",
|
|
2945
3049
|
"type": {
|
|
2946
3050
|
"type": "reference",
|
|
3051
|
+
"qualifiedName": "OutputDecorator",
|
|
3052
|
+
"package": "@angular/core",
|
|
2947
3053
|
"name": "Output"
|
|
2948
3054
|
},
|
|
2949
3055
|
"arguments": {}
|
|
@@ -2965,6 +3071,8 @@
|
|
|
2965
3071
|
"name": "SkyAutocompleteSearchAsyncArgs"
|
|
2966
3072
|
}
|
|
2967
3073
|
],
|
|
3074
|
+
"qualifiedName": "EventEmitter",
|
|
3075
|
+
"package": "@angular/core",
|
|
2968
3076
|
"name": "EventEmitter"
|
|
2969
3077
|
},
|
|
2970
3078
|
"defaultValue": "..."
|
|
@@ -2985,6 +3093,8 @@
|
|
|
2985
3093
|
"name": "Input",
|
|
2986
3094
|
"type": {
|
|
2987
3095
|
"type": "reference",
|
|
3096
|
+
"qualifiedName": "InputDecorator",
|
|
3097
|
+
"package": "@angular/core",
|
|
2988
3098
|
"name": "Input"
|
|
2989
3099
|
},
|
|
2990
3100
|
"arguments": {}
|
|
@@ -3059,6 +3169,8 @@
|
|
|
3059
3169
|
"name": "Input",
|
|
3060
3170
|
"type": {
|
|
3061
3171
|
"type": "reference",
|
|
3172
|
+
"qualifiedName": "InputDecorator",
|
|
3173
|
+
"package": "@angular/core",
|
|
3062
3174
|
"name": "Input"
|
|
3063
3175
|
},
|
|
3064
3176
|
"arguments": {}
|
|
@@ -3136,6 +3248,8 @@
|
|
|
3136
3248
|
"name": "Input",
|
|
3137
3249
|
"type": {
|
|
3138
3250
|
"type": "reference",
|
|
3251
|
+
"qualifiedName": "InputDecorator",
|
|
3252
|
+
"package": "@angular/core",
|
|
3139
3253
|
"name": "Input"
|
|
3140
3254
|
},
|
|
3141
3255
|
"arguments": {}
|
|
@@ -3156,7 +3270,13 @@
|
|
|
3156
3270
|
"kindString": "Get signature",
|
|
3157
3271
|
"flags": {},
|
|
3158
3272
|
"comment": {
|
|
3159
|
-
"shortText": "Specifies how many milliseconds to wait before searching while users\nenter text in the autocomplete field."
|
|
3273
|
+
"shortText": "Specifies how many milliseconds to wait before searching while users\nenter text in the autocomplete field.",
|
|
3274
|
+
"tags": [
|
|
3275
|
+
{
|
|
3276
|
+
"tag": "default",
|
|
3277
|
+
"text": "0\n"
|
|
3278
|
+
}
|
|
3279
|
+
]
|
|
3160
3280
|
},
|
|
3161
3281
|
"type": {
|
|
3162
3282
|
"type": "intrinsic",
|
|
@@ -3213,6 +3333,8 @@
|
|
|
3213
3333
|
"name": "Input",
|
|
3214
3334
|
"type": {
|
|
3215
3335
|
"type": "reference",
|
|
3336
|
+
"qualifiedName": "InputDecorator",
|
|
3337
|
+
"package": "@angular/core",
|
|
3216
3338
|
"name": "Input"
|
|
3217
3339
|
},
|
|
3218
3340
|
"arguments": {}
|
|
@@ -3233,7 +3355,13 @@
|
|
|
3233
3355
|
"kindString": "Get signature",
|
|
3234
3356
|
"flags": {},
|
|
3235
3357
|
"comment": {
|
|
3236
|
-
"shortText": "Specifies an object property to display in the text input after users\nselect an item in the dropdown list."
|
|
3358
|
+
"shortText": "Specifies an object property to display in the text input after users\nselect an item in the dropdown list.",
|
|
3359
|
+
"tags": [
|
|
3360
|
+
{
|
|
3361
|
+
"tag": "default",
|
|
3362
|
+
"text": "\"name\"\n"
|
|
3363
|
+
}
|
|
3364
|
+
]
|
|
3237
3365
|
},
|
|
3238
3366
|
"type": {
|
|
3239
3367
|
"type": "intrinsic",
|
|
@@ -3253,7 +3381,7 @@
|
|
|
3253
3381
|
"tags": [
|
|
3254
3382
|
{
|
|
3255
3383
|
"tag": "default",
|
|
3256
|
-
"text": "name\n"
|
|
3384
|
+
"text": "\"name\"\n"
|
|
3257
3385
|
}
|
|
3258
3386
|
]
|
|
3259
3387
|
},
|
|
@@ -3322,6 +3450,8 @@
|
|
|
3322
3450
|
"name": "Input",
|
|
3323
3451
|
"type": {
|
|
3324
3452
|
"type": "reference",
|
|
3453
|
+
"qualifiedName": "InputDecorator",
|
|
3454
|
+
"package": "@angular/core",
|
|
3325
3455
|
"name": "Input"
|
|
3326
3456
|
},
|
|
3327
3457
|
"arguments": {}
|
|
@@ -3342,7 +3472,13 @@
|
|
|
3342
3472
|
"kindString": "Get signature",
|
|
3343
3473
|
"flags": {},
|
|
3344
3474
|
"comment": {
|
|
3345
|
-
"shortText": "Specifies the object properties to search."
|
|
3475
|
+
"shortText": "Specifies the object properties to search.",
|
|
3476
|
+
"tags": [
|
|
3477
|
+
{
|
|
3478
|
+
"tag": "default",
|
|
3479
|
+
"text": "[\"name\"]\n"
|
|
3480
|
+
}
|
|
3481
|
+
]
|
|
3346
3482
|
},
|
|
3347
3483
|
"type": {
|
|
3348
3484
|
"type": "array",
|
|
@@ -3365,7 +3501,7 @@
|
|
|
3365
3501
|
"tags": [
|
|
3366
3502
|
{
|
|
3367
3503
|
"tag": "default",
|
|
3368
|
-
"text": "[
|
|
3504
|
+
"text": "[\"name\"]\n"
|
|
3369
3505
|
}
|
|
3370
3506
|
]
|
|
3371
3507
|
},
|
|
@@ -3405,6 +3541,8 @@
|
|
|
3405
3541
|
"name": "Input",
|
|
3406
3542
|
"type": {
|
|
3407
3543
|
"type": "reference",
|
|
3544
|
+
"qualifiedName": "InputDecorator",
|
|
3545
|
+
"package": "@angular/core",
|
|
3408
3546
|
"name": "Input"
|
|
3409
3547
|
},
|
|
3410
3548
|
"arguments": {}
|
|
@@ -3478,6 +3616,8 @@
|
|
|
3478
3616
|
"name": "Input",
|
|
3479
3617
|
"type": {
|
|
3480
3618
|
"type": "reference",
|
|
3619
|
+
"qualifiedName": "InputDecorator",
|
|
3620
|
+
"package": "@angular/core",
|
|
3481
3621
|
"name": "Input"
|
|
3482
3622
|
},
|
|
3483
3623
|
"arguments": {}
|
|
@@ -3508,6 +3648,8 @@
|
|
|
3508
3648
|
"name": "any"
|
|
3509
3649
|
}
|
|
3510
3650
|
],
|
|
3651
|
+
"qualifiedName": "TemplateRef",
|
|
3652
|
+
"package": "@angular/core",
|
|
3511
3653
|
"name": "TemplateRef"
|
|
3512
3654
|
}
|
|
3513
3655
|
}
|
|
@@ -3537,6 +3679,8 @@
|
|
|
3537
3679
|
"name": "any"
|
|
3538
3680
|
}
|
|
3539
3681
|
],
|
|
3682
|
+
"qualifiedName": "TemplateRef",
|
|
3683
|
+
"package": "@angular/core",
|
|
3540
3684
|
"name": "TemplateRef"
|
|
3541
3685
|
}
|
|
3542
3686
|
}
|
|
@@ -3593,6 +3737,8 @@
|
|
|
3593
3737
|
"name": "Input",
|
|
3594
3738
|
"type": {
|
|
3595
3739
|
"type": "reference",
|
|
3740
|
+
"qualifiedName": "InputDecorator",
|
|
3741
|
+
"package": "@angular/core",
|
|
3596
3742
|
"name": "Input"
|
|
3597
3743
|
},
|
|
3598
3744
|
"arguments": {}
|
|
@@ -3664,6 +3810,8 @@
|
|
|
3664
3810
|
"name": "Input",
|
|
3665
3811
|
"type": {
|
|
3666
3812
|
"type": "reference",
|
|
3813
|
+
"qualifiedName": "InputDecorator",
|
|
3814
|
+
"package": "@angular/core",
|
|
3667
3815
|
"name": "Input"
|
|
3668
3816
|
},
|
|
3669
3817
|
"arguments": {}
|
|
@@ -3684,7 +3832,13 @@
|
|
|
3684
3832
|
"kindString": "Get signature",
|
|
3685
3833
|
"flags": {},
|
|
3686
3834
|
"comment": {
|
|
3687
|
-
"shortText": "Specifies the minimum number of characters that users must enter before\nthe autocomplete component searches the data source and displays search\nresults in the dropdown list."
|
|
3835
|
+
"shortText": "Specifies the minimum number of characters that users must enter before\nthe autocomplete component searches the data source and displays search\nresults in the dropdown list.",
|
|
3836
|
+
"tags": [
|
|
3837
|
+
{
|
|
3838
|
+
"tag": "default",
|
|
3839
|
+
"text": "1\n"
|
|
3840
|
+
}
|
|
3841
|
+
]
|
|
3688
3842
|
},
|
|
3689
3843
|
"type": {
|
|
3690
3844
|
"type": "intrinsic",
|
|
@@ -3741,6 +3895,8 @@
|
|
|
3741
3895
|
"name": "Output",
|
|
3742
3896
|
"type": {
|
|
3743
3897
|
"type": "reference",
|
|
3898
|
+
"qualifiedName": "OutputDecorator",
|
|
3899
|
+
"package": "@angular/core",
|
|
3744
3900
|
"name": "Output"
|
|
3745
3901
|
},
|
|
3746
3902
|
"arguments": {}
|
|
@@ -3772,6 +3928,8 @@
|
|
|
3772
3928
|
"name": "SkyAutocompleteSelectionChange"
|
|
3773
3929
|
}
|
|
3774
3930
|
],
|
|
3931
|
+
"qualifiedName": "EventEmitter",
|
|
3932
|
+
"package": "@angular/core",
|
|
3775
3933
|
"name": "EventEmitter"
|
|
3776
3934
|
}
|
|
3777
3935
|
}
|
|
@@ -3866,6 +4024,8 @@
|
|
|
3866
4024
|
"flags": {},
|
|
3867
4025
|
"type": {
|
|
3868
4026
|
"type": "reference",
|
|
4027
|
+
"qualifiedName": "KeyboardEvent",
|
|
4028
|
+
"package": "typescript",
|
|
3869
4029
|
"name": "KeyboardEvent"
|
|
3870
4030
|
}
|
|
3871
4031
|
}
|
|
@@ -3908,6 +4068,8 @@
|
|
|
3908
4068
|
"flags": {},
|
|
3909
4069
|
"type": {
|
|
3910
4070
|
"type": "reference",
|
|
4071
|
+
"qualifiedName": "HTMLElement",
|
|
4072
|
+
"package": "typescript",
|
|
3911
4073
|
"name": "HTMLElement"
|
|
3912
4074
|
}
|
|
3913
4075
|
}
|
|
@@ -4101,6 +4263,8 @@
|
|
|
4101
4263
|
"flags": {},
|
|
4102
4264
|
"type": {
|
|
4103
4265
|
"type": "reference",
|
|
4266
|
+
"qualifiedName": "MouseEvent",
|
|
4267
|
+
"package": "typescript",
|
|
4104
4268
|
"name": "MouseEvent"
|
|
4105
4269
|
}
|
|
4106
4270
|
}
|
|
@@ -4223,14 +4387,20 @@
|
|
|
4223
4387
|
"implementedTypes": [
|
|
4224
4388
|
{
|
|
4225
4389
|
"type": "reference",
|
|
4390
|
+
"qualifiedName": "OnDestroy",
|
|
4391
|
+
"package": "@angular/core",
|
|
4226
4392
|
"name": "OnDestroy"
|
|
4227
4393
|
},
|
|
4228
4394
|
{
|
|
4229
4395
|
"type": "reference",
|
|
4396
|
+
"qualifiedName": "AfterContentInit",
|
|
4397
|
+
"package": "@angular/core",
|
|
4230
4398
|
"name": "AfterContentInit"
|
|
4231
4399
|
},
|
|
4232
4400
|
{
|
|
4233
4401
|
"type": "reference",
|
|
4402
|
+
"qualifiedName": "AfterViewInit",
|
|
4403
|
+
"package": "@angular/core",
|
|
4234
4404
|
"name": "AfterViewInit"
|
|
4235
4405
|
}
|
|
4236
4406
|
]
|
|
@@ -4246,6 +4416,8 @@
|
|
|
4246
4416
|
"name": "Component",
|
|
4247
4417
|
"type": {
|
|
4248
4418
|
"type": "reference",
|
|
4419
|
+
"qualifiedName": "ComponentDecorator",
|
|
4420
|
+
"package": "@angular/core",
|
|
4249
4421
|
"name": "Component"
|
|
4250
4422
|
},
|
|
4251
4423
|
"arguments": {
|
|
@@ -4263,7 +4435,7 @@
|
|
|
4263
4435
|
"sources": [
|
|
4264
4436
|
{
|
|
4265
4437
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4266
|
-
"line":
|
|
4438
|
+
"line": 268,
|
|
4267
4439
|
"character": 2
|
|
4268
4440
|
}
|
|
4269
4441
|
],
|
|
@@ -4283,6 +4455,8 @@
|
|
|
4283
4455
|
"flags": {},
|
|
4284
4456
|
"type": {
|
|
4285
4457
|
"type": "reference",
|
|
4458
|
+
"qualifiedName": "ChangeDetectorRef",
|
|
4459
|
+
"package": "@angular/core",
|
|
4286
4460
|
"name": "ChangeDetectorRef"
|
|
4287
4461
|
}
|
|
4288
4462
|
},
|
|
@@ -4300,6 +4474,8 @@
|
|
|
4300
4474
|
"name": "any"
|
|
4301
4475
|
}
|
|
4302
4476
|
],
|
|
4477
|
+
"qualifiedName": "ElementRef",
|
|
4478
|
+
"package": "@angular/core",
|
|
4303
4479
|
"name": "ElementRef"
|
|
4304
4480
|
}
|
|
4305
4481
|
},
|
|
@@ -4322,6 +4498,8 @@
|
|
|
4322
4498
|
"flags": {},
|
|
4323
4499
|
"type": {
|
|
4324
4500
|
"type": "reference",
|
|
4501
|
+
"qualifiedName": "Injector",
|
|
4502
|
+
"package": "@angular/core",
|
|
4325
4503
|
"name": "Injector"
|
|
4326
4504
|
}
|
|
4327
4505
|
},
|
|
@@ -4338,6 +4516,8 @@
|
|
|
4338
4516
|
"name": "Optional",
|
|
4339
4517
|
"type": {
|
|
4340
4518
|
"type": "reference",
|
|
4519
|
+
"qualifiedName": "OptionalDecorator",
|
|
4520
|
+
"package": "@angular/core",
|
|
4341
4521
|
"name": "Optional"
|
|
4342
4522
|
},
|
|
4343
4523
|
"arguments": {}
|
|
@@ -4361,6 +4541,8 @@
|
|
|
4361
4541
|
"name": "Optional",
|
|
4362
4542
|
"type": {
|
|
4363
4543
|
"type": "reference",
|
|
4544
|
+
"qualifiedName": "OptionalDecorator",
|
|
4545
|
+
"package": "@angular/core",
|
|
4364
4546
|
"name": "Optional"
|
|
4365
4547
|
},
|
|
4366
4548
|
"arguments": {}
|
|
@@ -4393,7 +4575,7 @@
|
|
|
4393
4575
|
"tags": [
|
|
4394
4576
|
{
|
|
4395
4577
|
"tag": "default",
|
|
4396
|
-
"text": "
|
|
4578
|
+
"text": "\"off\"\n"
|
|
4397
4579
|
}
|
|
4398
4580
|
]
|
|
4399
4581
|
},
|
|
@@ -4402,6 +4584,8 @@
|
|
|
4402
4584
|
"name": "Input",
|
|
4403
4585
|
"type": {
|
|
4404
4586
|
"type": "reference",
|
|
4587
|
+
"qualifiedName": "InputDecorator",
|
|
4588
|
+
"package": "@angular/core",
|
|
4405
4589
|
"name": "Input"
|
|
4406
4590
|
},
|
|
4407
4591
|
"arguments": {}
|
|
@@ -4430,7 +4614,7 @@
|
|
|
4430
4614
|
"sources": [
|
|
4431
4615
|
{
|
|
4432
4616
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4433
|
-
"line":
|
|
4617
|
+
"line": 167,
|
|
4434
4618
|
"character": 9
|
|
4435
4619
|
}
|
|
4436
4620
|
],
|
|
@@ -4456,6 +4640,8 @@
|
|
|
4456
4640
|
"name": "ViewChild",
|
|
4457
4641
|
"type": {
|
|
4458
4642
|
"type": "reference",
|
|
4643
|
+
"qualifiedName": "ViewChildDecorator",
|
|
4644
|
+
"package": "@angular/core",
|
|
4459
4645
|
"name": "ViewChild"
|
|
4460
4646
|
},
|
|
4461
4647
|
"arguments": {
|
|
@@ -4466,7 +4652,7 @@
|
|
|
4466
4652
|
"sources": [
|
|
4467
4653
|
{
|
|
4468
4654
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4469
|
-
"line":
|
|
4655
|
+
"line": 176,
|
|
4470
4656
|
"character": 9
|
|
4471
4657
|
}
|
|
4472
4658
|
],
|
|
@@ -4487,12 +4673,14 @@
|
|
|
4487
4673
|
"sources": [
|
|
4488
4674
|
{
|
|
4489
4675
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4490
|
-
"line":
|
|
4676
|
+
"line": 169,
|
|
4491
4677
|
"character": 9
|
|
4492
4678
|
}
|
|
4493
4679
|
],
|
|
4494
4680
|
"type": {
|
|
4495
4681
|
"type": "reference",
|
|
4682
|
+
"qualifiedName": "FormControl",
|
|
4683
|
+
"package": "@angular/forms",
|
|
4496
4684
|
"name": "FormControl"
|
|
4497
4685
|
}
|
|
4498
4686
|
},
|
|
@@ -4507,7 +4695,7 @@
|
|
|
4507
4695
|
"sources": [
|
|
4508
4696
|
{
|
|
4509
4697
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4510
|
-
"line":
|
|
4698
|
+
"line": 230,
|
|
4511
4699
|
"character": 9
|
|
4512
4700
|
}
|
|
4513
4701
|
],
|
|
@@ -4539,6 +4727,8 @@
|
|
|
4539
4727
|
"name": "Input",
|
|
4540
4728
|
"type": {
|
|
4541
4729
|
"type": "reference",
|
|
4730
|
+
"qualifiedName": "InputDecorator",
|
|
4731
|
+
"package": "@angular/core",
|
|
4542
4732
|
"name": "Input"
|
|
4543
4733
|
},
|
|
4544
4734
|
"arguments": {}
|
|
@@ -4547,7 +4737,7 @@
|
|
|
4547
4737
|
"sources": [
|
|
4548
4738
|
{
|
|
4549
4739
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4550
|
-
"line":
|
|
4740
|
+
"line": 125,
|
|
4551
4741
|
"character": 9
|
|
4552
4742
|
}
|
|
4553
4743
|
],
|
|
@@ -4581,7 +4771,7 @@
|
|
|
4581
4771
|
"sources": [
|
|
4582
4772
|
{
|
|
4583
4773
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4584
|
-
"line":
|
|
4774
|
+
"line": 232,
|
|
4585
4775
|
"character": 9
|
|
4586
4776
|
}
|
|
4587
4777
|
],
|
|
@@ -4601,7 +4791,7 @@
|
|
|
4601
4791
|
"sources": [
|
|
4602
4792
|
{
|
|
4603
4793
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4604
|
-
"line":
|
|
4794
|
+
"line": 171,
|
|
4605
4795
|
"character": 9
|
|
4606
4796
|
}
|
|
4607
4797
|
],
|
|
@@ -4622,12 +4812,14 @@
|
|
|
4622
4812
|
"sources": [
|
|
4623
4813
|
{
|
|
4624
4814
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4625
|
-
"line":
|
|
4815
|
+
"line": 373,
|
|
4626
4816
|
"character": 9
|
|
4627
4817
|
}
|
|
4628
4818
|
],
|
|
4629
4819
|
"type": {
|
|
4630
4820
|
"type": "reference",
|
|
4821
|
+
"qualifiedName": "Function",
|
|
4822
|
+
"package": "typescript",
|
|
4631
4823
|
"name": "Function"
|
|
4632
4824
|
},
|
|
4633
4825
|
"defaultValue": "..."
|
|
@@ -4643,12 +4835,14 @@
|
|
|
4643
4835
|
"sources": [
|
|
4644
4836
|
{
|
|
4645
4837
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4646
|
-
"line":
|
|
4838
|
+
"line": 376,
|
|
4647
4839
|
"character": 9
|
|
4648
4840
|
}
|
|
4649
4841
|
],
|
|
4650
4842
|
"type": {
|
|
4651
4843
|
"type": "reference",
|
|
4844
|
+
"qualifiedName": "Function",
|
|
4845
|
+
"package": "typescript",
|
|
4652
4846
|
"name": "Function"
|
|
4653
4847
|
},
|
|
4654
4848
|
"defaultValue": "..."
|
|
@@ -4664,7 +4858,7 @@
|
|
|
4664
4858
|
"sources": [
|
|
4665
4859
|
{
|
|
4666
4860
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4667
|
-
"line":
|
|
4861
|
+
"line": 173,
|
|
4668
4862
|
"character": 9
|
|
4669
4863
|
}
|
|
4670
4864
|
],
|
|
@@ -4690,6 +4884,8 @@
|
|
|
4690
4884
|
"name": "Output",
|
|
4691
4885
|
"type": {
|
|
4692
4886
|
"type": "reference",
|
|
4887
|
+
"qualifiedName": "OutputDecorator",
|
|
4888
|
+
"package": "@angular/core",
|
|
4693
4889
|
"name": "Output"
|
|
4694
4890
|
},
|
|
4695
4891
|
"arguments": {}
|
|
@@ -4698,7 +4894,7 @@
|
|
|
4698
4894
|
"sources": [
|
|
4699
4895
|
{
|
|
4700
4896
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4701
|
-
"line":
|
|
4897
|
+
"line": 165,
|
|
4702
4898
|
"character": 9
|
|
4703
4899
|
}
|
|
4704
4900
|
],
|
|
@@ -4711,6 +4907,8 @@
|
|
|
4711
4907
|
"name": "SkyCountryFieldCountry"
|
|
4712
4908
|
}
|
|
4713
4909
|
],
|
|
4910
|
+
"qualifiedName": "EventEmitter",
|
|
4911
|
+
"package": "@angular/core",
|
|
4714
4912
|
"name": "EventEmitter"
|
|
4715
4913
|
},
|
|
4716
4914
|
"defaultValue": "..."
|
|
@@ -4728,6 +4926,8 @@
|
|
|
4728
4926
|
"name": "Input",
|
|
4729
4927
|
"type": {
|
|
4730
4928
|
"type": "reference",
|
|
4929
|
+
"qualifiedName": "InputDecorator",
|
|
4930
|
+
"package": "@angular/core",
|
|
4731
4931
|
"name": "Input"
|
|
4732
4932
|
},
|
|
4733
4933
|
"arguments": {}
|
|
@@ -4748,7 +4948,13 @@
|
|
|
4748
4948
|
"kindString": "Get signature",
|
|
4749
4949
|
"flags": {},
|
|
4750
4950
|
"comment": {
|
|
4751
|
-
"shortText": "Specifies the [International Organization for Standardization Alpha 2](https://www.nationsonline.org/oneworld/country_code_list.htm)\ncountry code for the default country.\nWhen search results include the default country, it appears at the top of the list."
|
|
4951
|
+
"shortText": "Specifies the [International Organization for Standardization Alpha 2](https://www.nationsonline.org/oneworld/country_code_list.htm)\ncountry code for the default country.\nWhen search results include the default country, it appears at the top of the list.",
|
|
4952
|
+
"tags": [
|
|
4953
|
+
{
|
|
4954
|
+
"tag": "default",
|
|
4955
|
+
"text": "\"us\"\n"
|
|
4956
|
+
}
|
|
4957
|
+
]
|
|
4752
4958
|
},
|
|
4753
4959
|
"type": {
|
|
4754
4960
|
"type": "intrinsic",
|
|
@@ -4768,7 +4974,7 @@
|
|
|
4768
4974
|
"tags": [
|
|
4769
4975
|
{
|
|
4770
4976
|
"tag": "default",
|
|
4771
|
-
"text": "us\n"
|
|
4977
|
+
"text": "\"us\"\n"
|
|
4772
4978
|
}
|
|
4773
4979
|
]
|
|
4774
4980
|
},
|
|
@@ -4805,6 +5011,8 @@
|
|
|
4805
5011
|
"name": "Input",
|
|
4806
5012
|
"type": {
|
|
4807
5013
|
"type": "reference",
|
|
5014
|
+
"qualifiedName": "InputDecorator",
|
|
5015
|
+
"package": "@angular/core",
|
|
4808
5016
|
"name": "Input"
|
|
4809
5017
|
},
|
|
4810
5018
|
"arguments": {}
|
|
@@ -4813,7 +5021,7 @@
|
|
|
4813
5021
|
"sources": [
|
|
4814
5022
|
{
|
|
4815
5023
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4816
|
-
"line":
|
|
5024
|
+
"line": 104,
|
|
4817
5025
|
"character": 13
|
|
4818
5026
|
}
|
|
4819
5027
|
],
|
|
@@ -4825,7 +5033,13 @@
|
|
|
4825
5033
|
"kindString": "Get signature",
|
|
4826
5034
|
"flags": {},
|
|
4827
5035
|
"comment": {
|
|
4828
|
-
"shortText": "Indicates whether to disable the country field."
|
|
5036
|
+
"shortText": "Indicates whether to disable the country field.",
|
|
5037
|
+
"tags": [
|
|
5038
|
+
{
|
|
5039
|
+
"tag": "default",
|
|
5040
|
+
"text": "false\n"
|
|
5041
|
+
}
|
|
5042
|
+
]
|
|
4829
5043
|
},
|
|
4830
5044
|
"type": {
|
|
4831
5045
|
"type": "intrinsic",
|
|
@@ -4841,7 +5055,13 @@
|
|
|
4841
5055
|
"kindString": "Set signature",
|
|
4842
5056
|
"flags": {},
|
|
4843
5057
|
"comment": {
|
|
4844
|
-
"shortText": "Indicates whether to disable the country field."
|
|
5058
|
+
"shortText": "Indicates whether to disable the country field.",
|
|
5059
|
+
"tags": [
|
|
5060
|
+
{
|
|
5061
|
+
"tag": "default",
|
|
5062
|
+
"text": "false\n"
|
|
5063
|
+
}
|
|
5064
|
+
]
|
|
4845
5065
|
},
|
|
4846
5066
|
"parameters": [
|
|
4847
5067
|
{
|
|
@@ -4876,6 +5096,8 @@
|
|
|
4876
5096
|
"name": "Input",
|
|
4877
5097
|
"type": {
|
|
4878
5098
|
"type": "reference",
|
|
5099
|
+
"qualifiedName": "InputDecorator",
|
|
5100
|
+
"package": "@angular/core",
|
|
4879
5101
|
"name": "Input"
|
|
4880
5102
|
},
|
|
4881
5103
|
"arguments": {}
|
|
@@ -4884,7 +5106,7 @@
|
|
|
4884
5106
|
"sources": [
|
|
4885
5107
|
{
|
|
4886
5108
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4887
|
-
"line":
|
|
5109
|
+
"line": 132,
|
|
4888
5110
|
"character": 13
|
|
4889
5111
|
}
|
|
4890
5112
|
],
|
|
@@ -4896,7 +5118,13 @@
|
|
|
4896
5118
|
"kindString": "Get signature",
|
|
4897
5119
|
"flags": {},
|
|
4898
5120
|
"comment": {
|
|
4899
|
-
"shortText": "Indicates whether to include phone information in the selected country and country dropdown."
|
|
5121
|
+
"shortText": "Indicates whether to include phone information in the selected country and country dropdown.",
|
|
5122
|
+
"tags": [
|
|
5123
|
+
{
|
|
5124
|
+
"tag": "default",
|
|
5125
|
+
"text": "false\n"
|
|
5126
|
+
}
|
|
5127
|
+
]
|
|
4900
5128
|
},
|
|
4901
5129
|
"type": {
|
|
4902
5130
|
"type": "intrinsic",
|
|
@@ -4951,7 +5179,7 @@
|
|
|
4951
5179
|
"sources": [
|
|
4952
5180
|
{
|
|
4953
5181
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
4954
|
-
"line":
|
|
5182
|
+
"line": 178,
|
|
4955
5183
|
"character": 13
|
|
4956
5184
|
}
|
|
4957
5185
|
],
|
|
@@ -5010,6 +5238,8 @@
|
|
|
5010
5238
|
"name": "Input",
|
|
5011
5239
|
"type": {
|
|
5012
5240
|
"type": "reference",
|
|
5241
|
+
"qualifiedName": "InputDecorator",
|
|
5242
|
+
"package": "@angular/core",
|
|
5013
5243
|
"name": "Input"
|
|
5014
5244
|
},
|
|
5015
5245
|
"arguments": {}
|
|
@@ -5018,7 +5248,7 @@
|
|
|
5018
5248
|
"sources": [
|
|
5019
5249
|
{
|
|
5020
5250
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
5021
|
-
"line":
|
|
5251
|
+
"line": 147,
|
|
5022
5252
|
"character": 13
|
|
5023
5253
|
}
|
|
5024
5254
|
],
|
|
@@ -5085,7 +5315,7 @@
|
|
|
5085
5315
|
"sources": [
|
|
5086
5316
|
{
|
|
5087
5317
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
5088
|
-
"line":
|
|
5318
|
+
"line": 323,
|
|
5089
5319
|
"character": 9
|
|
5090
5320
|
}
|
|
5091
5321
|
],
|
|
@@ -5122,7 +5352,7 @@
|
|
|
5122
5352
|
"sources": [
|
|
5123
5353
|
{
|
|
5124
5354
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
5125
|
-
"line":
|
|
5355
|
+
"line": 378,
|
|
5126
5356
|
"character": 9
|
|
5127
5357
|
}
|
|
5128
5358
|
],
|
|
@@ -5204,7 +5434,7 @@
|
|
|
5204
5434
|
"sources": [
|
|
5205
5435
|
{
|
|
5206
5436
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
5207
|
-
"line":
|
|
5437
|
+
"line": 382,
|
|
5208
5438
|
"character": 9
|
|
5209
5439
|
}
|
|
5210
5440
|
],
|
|
@@ -5273,7 +5503,7 @@
|
|
|
5273
5503
|
"sources": [
|
|
5274
5504
|
{
|
|
5275
5505
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
5276
|
-
"line":
|
|
5506
|
+
"line": 387,
|
|
5277
5507
|
"character": 9
|
|
5278
5508
|
}
|
|
5279
5509
|
],
|
|
@@ -5323,7 +5553,7 @@
|
|
|
5323
5553
|
"sources": [
|
|
5324
5554
|
{
|
|
5325
5555
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
5326
|
-
"line":
|
|
5556
|
+
"line": 391,
|
|
5327
5557
|
"character": 9
|
|
5328
5558
|
}
|
|
5329
5559
|
],
|
|
@@ -5343,12 +5573,16 @@
|
|
|
5343
5573
|
"flags": {},
|
|
5344
5574
|
"type": {
|
|
5345
5575
|
"type": "reference",
|
|
5576
|
+
"qualifiedName": "AbstractControl",
|
|
5577
|
+
"package": "@angular/forms",
|
|
5346
5578
|
"name": "AbstractControl"
|
|
5347
5579
|
}
|
|
5348
5580
|
}
|
|
5349
5581
|
],
|
|
5350
5582
|
"type": {
|
|
5351
5583
|
"type": "reference",
|
|
5584
|
+
"qualifiedName": "ValidationErrors",
|
|
5585
|
+
"package": "@angular/forms",
|
|
5352
5586
|
"name": "ValidationErrors"
|
|
5353
5587
|
},
|
|
5354
5588
|
"implementationOf": {
|
|
@@ -5373,7 +5607,7 @@
|
|
|
5373
5607
|
"sources": [
|
|
5374
5608
|
{
|
|
5375
5609
|
"fileName": "projects/lookup/src/modules/country-field/country-field.component.ts",
|
|
5376
|
-
"line":
|
|
5610
|
+
"line": 405,
|
|
5377
5611
|
"character": 9
|
|
5378
5612
|
}
|
|
5379
5613
|
],
|
|
@@ -5475,22 +5709,32 @@
|
|
|
5475
5709
|
"implementedTypes": [
|
|
5476
5710
|
{
|
|
5477
5711
|
"type": "reference",
|
|
5712
|
+
"qualifiedName": "AfterViewInit",
|
|
5713
|
+
"package": "@angular/core",
|
|
5478
5714
|
"name": "AfterViewInit"
|
|
5479
5715
|
},
|
|
5480
5716
|
{
|
|
5481
5717
|
"type": "reference",
|
|
5718
|
+
"qualifiedName": "ControlValueAccessor",
|
|
5719
|
+
"package": "@angular/forms",
|
|
5482
5720
|
"name": "ControlValueAccessor"
|
|
5483
5721
|
},
|
|
5484
5722
|
{
|
|
5485
5723
|
"type": "reference",
|
|
5724
|
+
"qualifiedName": "OnDestroy",
|
|
5725
|
+
"package": "@angular/core",
|
|
5486
5726
|
"name": "OnDestroy"
|
|
5487
5727
|
},
|
|
5488
5728
|
{
|
|
5489
5729
|
"type": "reference",
|
|
5730
|
+
"qualifiedName": "OnInit",
|
|
5731
|
+
"package": "@angular/core",
|
|
5490
5732
|
"name": "OnInit"
|
|
5491
5733
|
},
|
|
5492
5734
|
{
|
|
5493
5735
|
"type": "reference",
|
|
5736
|
+
"qualifiedName": "Validator",
|
|
5737
|
+
"package": "@angular/forms",
|
|
5494
5738
|
"name": "Validator"
|
|
5495
5739
|
}
|
|
5496
5740
|
]
|
|
@@ -5506,6 +5750,8 @@
|
|
|
5506
5750
|
"name": "Component",
|
|
5507
5751
|
"type": {
|
|
5508
5752
|
"type": "reference",
|
|
5753
|
+
"qualifiedName": "ComponentDecorator",
|
|
5754
|
+
"package": "@angular/core",
|
|
5509
5755
|
"name": "Component"
|
|
5510
5756
|
},
|
|
5511
5757
|
"arguments": {
|
|
@@ -5543,6 +5789,8 @@
|
|
|
5543
5789
|
"flags": {},
|
|
5544
5790
|
"type": {
|
|
5545
5791
|
"type": "reference",
|
|
5792
|
+
"qualifiedName": "ChangeDetectorRef",
|
|
5793
|
+
"package": "@angular/core",
|
|
5546
5794
|
"name": "ChangeDetectorRef"
|
|
5547
5795
|
}
|
|
5548
5796
|
},
|
|
@@ -5560,6 +5808,8 @@
|
|
|
5560
5808
|
"name": "any"
|
|
5561
5809
|
}
|
|
5562
5810
|
],
|
|
5811
|
+
"qualifiedName": "ElementRef",
|
|
5812
|
+
"package": "@angular/core",
|
|
5563
5813
|
"name": "ElementRef"
|
|
5564
5814
|
}
|
|
5565
5815
|
},
|
|
@@ -5585,6 +5835,8 @@
|
|
|
5585
5835
|
"name": "Self",
|
|
5586
5836
|
"type": {
|
|
5587
5837
|
"type": "reference",
|
|
5838
|
+
"qualifiedName": "SelfDecorator",
|
|
5839
|
+
"package": "@angular/core",
|
|
5588
5840
|
"name": "Self"
|
|
5589
5841
|
},
|
|
5590
5842
|
"arguments": {}
|
|
@@ -5593,6 +5845,8 @@
|
|
|
5593
5845
|
"name": "Optional",
|
|
5594
5846
|
"type": {
|
|
5595
5847
|
"type": "reference",
|
|
5848
|
+
"qualifiedName": "OptionalDecorator",
|
|
5849
|
+
"package": "@angular/core",
|
|
5596
5850
|
"name": "Optional"
|
|
5597
5851
|
},
|
|
5598
5852
|
"arguments": {}
|
|
@@ -5600,6 +5854,8 @@
|
|
|
5600
5854
|
],
|
|
5601
5855
|
"type": {
|
|
5602
5856
|
"type": "reference",
|
|
5857
|
+
"qualifiedName": "NgControl",
|
|
5858
|
+
"package": "@angular/forms",
|
|
5603
5859
|
"name": "NgControl"
|
|
5604
5860
|
}
|
|
5605
5861
|
},
|
|
@@ -5649,6 +5905,8 @@
|
|
|
5649
5905
|
"name": "Optional",
|
|
5650
5906
|
"type": {
|
|
5651
5907
|
"type": "reference",
|
|
5908
|
+
"qualifiedName": "OptionalDecorator",
|
|
5909
|
+
"package": "@angular/core",
|
|
5652
5910
|
"name": "Optional"
|
|
5653
5911
|
},
|
|
5654
5912
|
"arguments": {}
|
|
@@ -5672,6 +5930,8 @@
|
|
|
5672
5930
|
"name": "Optional",
|
|
5673
5931
|
"type": {
|
|
5674
5932
|
"type": "reference",
|
|
5933
|
+
"qualifiedName": "OptionalDecorator",
|
|
5934
|
+
"package": "@angular/core",
|
|
5675
5935
|
"name": "Optional"
|
|
5676
5936
|
},
|
|
5677
5937
|
"arguments": {}
|
|
@@ -5715,6 +5975,8 @@
|
|
|
5715
5975
|
"name": "Output",
|
|
5716
5976
|
"type": {
|
|
5717
5977
|
"type": "reference",
|
|
5978
|
+
"qualifiedName": "OutputDecorator",
|
|
5979
|
+
"package": "@angular/core",
|
|
5718
5980
|
"name": "Output"
|
|
5719
5981
|
},
|
|
5720
5982
|
"arguments": {}
|
|
@@ -5736,6 +5998,8 @@
|
|
|
5736
5998
|
"name": "SkyLookupAddClickEventArgs"
|
|
5737
5999
|
}
|
|
5738
6000
|
],
|
|
6001
|
+
"qualifiedName": "EventEmitter",
|
|
6002
|
+
"package": "@angular/core",
|
|
5739
6003
|
"name": "EventEmitter"
|
|
5740
6004
|
},
|
|
5741
6005
|
"defaultValue": "..."
|
|
@@ -5756,6 +6020,8 @@
|
|
|
5756
6020
|
"name": "Input",
|
|
5757
6021
|
"type": {
|
|
5758
6022
|
"type": "reference",
|
|
6023
|
+
"qualifiedName": "InputDecorator",
|
|
6024
|
+
"package": "@angular/core",
|
|
5759
6025
|
"name": "Input"
|
|
5760
6026
|
},
|
|
5761
6027
|
"arguments": {}
|
|
@@ -5789,6 +6055,8 @@
|
|
|
5789
6055
|
"name": "Input",
|
|
5790
6056
|
"type": {
|
|
5791
6057
|
"type": "reference",
|
|
6058
|
+
"qualifiedName": "InputDecorator",
|
|
6059
|
+
"package": "@angular/core",
|
|
5792
6060
|
"name": "Input"
|
|
5793
6061
|
},
|
|
5794
6062
|
"arguments": {}
|
|
@@ -5828,6 +6096,8 @@
|
|
|
5828
6096
|
"name": "Input",
|
|
5829
6097
|
"type": {
|
|
5830
6098
|
"type": "reference",
|
|
6099
|
+
"qualifiedName": "InputDecorator",
|
|
6100
|
+
"package": "@angular/core",
|
|
5831
6101
|
"name": "Input"
|
|
5832
6102
|
},
|
|
5833
6103
|
"arguments": {}
|
|
@@ -5868,6 +6138,8 @@
|
|
|
5868
6138
|
"name": "SkyAutocompleteMessage"
|
|
5869
6139
|
}
|
|
5870
6140
|
],
|
|
6141
|
+
"qualifiedName": "Subject",
|
|
6142
|
+
"package": "rxjs",
|
|
5871
6143
|
"name": "Subject"
|
|
5872
6144
|
},
|
|
5873
6145
|
"defaultValue": "..."
|
|
@@ -5894,6 +6166,8 @@
|
|
|
5894
6166
|
"name": "Input",
|
|
5895
6167
|
"type": {
|
|
5896
6168
|
"type": "reference",
|
|
6169
|
+
"qualifiedName": "InputDecorator",
|
|
6170
|
+
"package": "@angular/core",
|
|
5897
6171
|
"name": "Input"
|
|
5898
6172
|
},
|
|
5899
6173
|
"arguments": {}
|
|
@@ -5931,6 +6205,8 @@
|
|
|
5931
6205
|
"name": "Input",
|
|
5932
6206
|
"type": {
|
|
5933
6207
|
"type": "reference",
|
|
6208
|
+
"qualifiedName": "InputDecorator",
|
|
6209
|
+
"package": "@angular/core",
|
|
5934
6210
|
"name": "Input"
|
|
5935
6211
|
},
|
|
5936
6212
|
"arguments": {}
|
|
@@ -5965,6 +6241,8 @@
|
|
|
5965
6241
|
"name": "Input",
|
|
5966
6242
|
"type": {
|
|
5967
6243
|
"type": "reference",
|
|
6244
|
+
"qualifiedName": "InputDecorator",
|
|
6245
|
+
"package": "@angular/core",
|
|
5968
6246
|
"name": "Input"
|
|
5969
6247
|
},
|
|
5970
6248
|
"arguments": {}
|
|
@@ -5999,6 +6277,8 @@
|
|
|
5999
6277
|
"name": "Input",
|
|
6000
6278
|
"type": {
|
|
6001
6279
|
"type": "reference",
|
|
6280
|
+
"qualifiedName": "InputDecorator",
|
|
6281
|
+
"package": "@angular/core",
|
|
6002
6282
|
"name": "Input"
|
|
6003
6283
|
},
|
|
6004
6284
|
"arguments": {}
|
|
@@ -6067,6 +6347,8 @@
|
|
|
6067
6347
|
"name": "Input",
|
|
6068
6348
|
"type": {
|
|
6069
6349
|
"type": "reference",
|
|
6350
|
+
"qualifiedName": "InputDecorator",
|
|
6351
|
+
"package": "@angular/core",
|
|
6070
6352
|
"name": "Input"
|
|
6071
6353
|
},
|
|
6072
6354
|
"arguments": {}
|
|
@@ -6097,6 +6379,8 @@
|
|
|
6097
6379
|
"name": "Output",
|
|
6098
6380
|
"type": {
|
|
6099
6381
|
"type": "reference",
|
|
6382
|
+
"qualifiedName": "OutputDecorator",
|
|
6383
|
+
"package": "@angular/core",
|
|
6100
6384
|
"name": "Output"
|
|
6101
6385
|
},
|
|
6102
6386
|
"arguments": {}
|
|
@@ -6118,6 +6402,8 @@
|
|
|
6118
6402
|
"name": "SkyAutocompleteSearchAsyncArgs"
|
|
6119
6403
|
}
|
|
6120
6404
|
],
|
|
6405
|
+
"qualifiedName": "EventEmitter",
|
|
6406
|
+
"package": "@angular/core",
|
|
6121
6407
|
"name": "EventEmitter"
|
|
6122
6408
|
},
|
|
6123
6409
|
"defaultValue": "...",
|
|
@@ -6142,6 +6428,8 @@
|
|
|
6142
6428
|
"name": "Input",
|
|
6143
6429
|
"type": {
|
|
6144
6430
|
"type": "reference",
|
|
6431
|
+
"qualifiedName": "InputDecorator",
|
|
6432
|
+
"package": "@angular/core",
|
|
6145
6433
|
"name": "Input"
|
|
6146
6434
|
},
|
|
6147
6435
|
"arguments": {}
|
|
@@ -6183,6 +6471,8 @@
|
|
|
6183
6471
|
"name": "Input",
|
|
6184
6472
|
"type": {
|
|
6185
6473
|
"type": "reference",
|
|
6474
|
+
"qualifiedName": "InputDecorator",
|
|
6475
|
+
"package": "@angular/core",
|
|
6186
6476
|
"name": "Input"
|
|
6187
6477
|
},
|
|
6188
6478
|
"arguments": {}
|
|
@@ -6203,6 +6493,8 @@
|
|
|
6203
6493
|
"name": "any"
|
|
6204
6494
|
}
|
|
6205
6495
|
],
|
|
6496
|
+
"qualifiedName": "TemplateRef",
|
|
6497
|
+
"package": "@angular/core",
|
|
6206
6498
|
"name": "TemplateRef"
|
|
6207
6499
|
},
|
|
6208
6500
|
"inheritedFrom": {
|
|
@@ -6226,6 +6518,8 @@
|
|
|
6226
6518
|
"name": "Input",
|
|
6227
6519
|
"type": {
|
|
6228
6520
|
"type": "reference",
|
|
6521
|
+
"qualifiedName": "InputDecorator",
|
|
6522
|
+
"package": "@angular/core",
|
|
6229
6523
|
"name": "Input"
|
|
6230
6524
|
},
|
|
6231
6525
|
"arguments": {}
|
|
@@ -6269,6 +6563,8 @@
|
|
|
6269
6563
|
"name": "Input",
|
|
6270
6564
|
"type": {
|
|
6271
6565
|
"type": "reference",
|
|
6566
|
+
"qualifiedName": "InputDecorator",
|
|
6567
|
+
"package": "@angular/core",
|
|
6272
6568
|
"name": "Input"
|
|
6273
6569
|
},
|
|
6274
6570
|
"arguments": {}
|
|
@@ -6306,6 +6602,8 @@
|
|
|
6306
6602
|
"name": "Input",
|
|
6307
6603
|
"type": {
|
|
6308
6604
|
"type": "reference",
|
|
6605
|
+
"qualifiedName": "InputDecorator",
|
|
6606
|
+
"package": "@angular/core",
|
|
6309
6607
|
"name": "Input"
|
|
6310
6608
|
},
|
|
6311
6609
|
"arguments": {}
|
|
@@ -6340,6 +6638,8 @@
|
|
|
6340
6638
|
"name": "Input",
|
|
6341
6639
|
"type": {
|
|
6342
6640
|
"type": "reference",
|
|
6641
|
+
"qualifiedName": "InputDecorator",
|
|
6642
|
+
"package": "@angular/core",
|
|
6343
6643
|
"name": "Input"
|
|
6344
6644
|
},
|
|
6345
6645
|
"arguments": {}
|
|
@@ -6395,6 +6695,8 @@
|
|
|
6395
6695
|
"name": "SkyTokensMessage"
|
|
6396
6696
|
}
|
|
6397
6697
|
],
|
|
6698
|
+
"qualifiedName": "Subject",
|
|
6699
|
+
"package": "rxjs",
|
|
6398
6700
|
"name": "Subject"
|
|
6399
6701
|
},
|
|
6400
6702
|
"defaultValue": "..."
|
|
@@ -6412,6 +6714,8 @@
|
|
|
6412
6714
|
"name": "Input",
|
|
6413
6715
|
"type": {
|
|
6414
6716
|
"type": "reference",
|
|
6717
|
+
"qualifiedName": "InputDecorator",
|
|
6718
|
+
"package": "@angular/core",
|
|
6415
6719
|
"name": "Input"
|
|
6416
6720
|
},
|
|
6417
6721
|
"arguments": {}
|
|
@@ -6432,7 +6736,13 @@
|
|
|
6432
6736
|
"kindString": "Get signature",
|
|
6433
6737
|
"flags": {},
|
|
6434
6738
|
"comment": {
|
|
6435
|
-
"shortText": "Specifies a data source for the lookup component to search when users\nenter text. You can specify static data such as an array of objects, or\nyou can pull data from a database."
|
|
6739
|
+
"shortText": "Specifies a data source for the lookup component to search when users\nenter text. You can specify static data such as an array of objects, or\nyou can pull data from a database.",
|
|
6740
|
+
"tags": [
|
|
6741
|
+
{
|
|
6742
|
+
"tag": "default",
|
|
6743
|
+
"text": "[]\n"
|
|
6744
|
+
}
|
|
6745
|
+
]
|
|
6436
6746
|
},
|
|
6437
6747
|
"type": {
|
|
6438
6748
|
"type": "array",
|
|
@@ -6495,6 +6805,8 @@
|
|
|
6495
6805
|
"name": "Input",
|
|
6496
6806
|
"type": {
|
|
6497
6807
|
"type": "reference",
|
|
6808
|
+
"qualifiedName": "InputDecorator",
|
|
6809
|
+
"package": "@angular/core",
|
|
6498
6810
|
"name": "Input"
|
|
6499
6811
|
},
|
|
6500
6812
|
"arguments": {}
|
|
@@ -6515,11 +6827,21 @@
|
|
|
6515
6827
|
"kindString": "Get signature",
|
|
6516
6828
|
"flags": {},
|
|
6517
6829
|
"comment": {
|
|
6518
|
-
"shortText": "Specifies an object property to display in the text input after users\nselect an item in the dropdown list."
|
|
6830
|
+
"shortText": "Specifies an object property to display in the text input after users\nselect an item in the dropdown list.",
|
|
6831
|
+
"tags": [
|
|
6832
|
+
{
|
|
6833
|
+
"tag": "default",
|
|
6834
|
+
"text": "\"name\"\n"
|
|
6835
|
+
}
|
|
6836
|
+
]
|
|
6519
6837
|
},
|
|
6520
6838
|
"type": {
|
|
6521
6839
|
"type": "intrinsic",
|
|
6522
6840
|
"name": "string"
|
|
6841
|
+
},
|
|
6842
|
+
"inheritedFrom": {
|
|
6843
|
+
"type": "reference",
|
|
6844
|
+
"name": "SkyLookupAutocompleteAdapter.descriptorProperty"
|
|
6523
6845
|
}
|
|
6524
6846
|
}
|
|
6525
6847
|
],
|
|
@@ -6535,7 +6857,7 @@
|
|
|
6535
6857
|
"tags": [
|
|
6536
6858
|
{
|
|
6537
6859
|
"tag": "default",
|
|
6538
|
-
"text": "name\n"
|
|
6860
|
+
"text": "\"name\"\n"
|
|
6539
6861
|
}
|
|
6540
6862
|
]
|
|
6541
6863
|
},
|
|
@@ -6555,9 +6877,17 @@
|
|
|
6555
6877
|
"type": {
|
|
6556
6878
|
"type": "intrinsic",
|
|
6557
6879
|
"name": "void"
|
|
6880
|
+
},
|
|
6881
|
+
"inheritedFrom": {
|
|
6882
|
+
"type": "reference",
|
|
6883
|
+
"name": "SkyLookupAutocompleteAdapter.descriptorProperty"
|
|
6558
6884
|
}
|
|
6559
6885
|
}
|
|
6560
|
-
]
|
|
6886
|
+
],
|
|
6887
|
+
"inheritedFrom": {
|
|
6888
|
+
"type": "reference",
|
|
6889
|
+
"name": "SkyLookupAutocompleteAdapter.descriptorProperty"
|
|
6890
|
+
}
|
|
6561
6891
|
},
|
|
6562
6892
|
{
|
|
6563
6893
|
"id": 517,
|
|
@@ -6572,6 +6902,8 @@
|
|
|
6572
6902
|
"name": "Input",
|
|
6573
6903
|
"type": {
|
|
6574
6904
|
"type": "reference",
|
|
6905
|
+
"qualifiedName": "InputDecorator",
|
|
6906
|
+
"package": "@angular/core",
|
|
6575
6907
|
"name": "Input"
|
|
6576
6908
|
},
|
|
6577
6909
|
"arguments": {}
|
|
@@ -6592,7 +6924,13 @@
|
|
|
6592
6924
|
"kindString": "Get signature",
|
|
6593
6925
|
"flags": {},
|
|
6594
6926
|
"comment": {
|
|
6595
|
-
"shortText": "Specifies an array of object properties to search."
|
|
6927
|
+
"shortText": "Specifies an array of object properties to search.",
|
|
6928
|
+
"tags": [
|
|
6929
|
+
{
|
|
6930
|
+
"tag": "default",
|
|
6931
|
+
"text": "[\"name\"]\n"
|
|
6932
|
+
}
|
|
6933
|
+
]
|
|
6596
6934
|
},
|
|
6597
6935
|
"type": {
|
|
6598
6936
|
"type": "array",
|
|
@@ -6600,6 +6938,10 @@
|
|
|
6600
6938
|
"type": "intrinsic",
|
|
6601
6939
|
"name": "string"
|
|
6602
6940
|
}
|
|
6941
|
+
},
|
|
6942
|
+
"inheritedFrom": {
|
|
6943
|
+
"type": "reference",
|
|
6944
|
+
"name": "SkyLookupAutocompleteAdapter.propertiesToSearch"
|
|
6603
6945
|
}
|
|
6604
6946
|
}
|
|
6605
6947
|
],
|
|
@@ -6615,7 +6957,7 @@
|
|
|
6615
6957
|
"tags": [
|
|
6616
6958
|
{
|
|
6617
6959
|
"tag": "default",
|
|
6618
|
-
"text": "[
|
|
6960
|
+
"text": "[\"name\"]\n"
|
|
6619
6961
|
}
|
|
6620
6962
|
]
|
|
6621
6963
|
},
|
|
@@ -6638,9 +6980,17 @@
|
|
|
6638
6980
|
"type": {
|
|
6639
6981
|
"type": "intrinsic",
|
|
6640
6982
|
"name": "void"
|
|
6983
|
+
},
|
|
6984
|
+
"inheritedFrom": {
|
|
6985
|
+
"type": "reference",
|
|
6986
|
+
"name": "SkyLookupAutocompleteAdapter.propertiesToSearch"
|
|
6641
6987
|
}
|
|
6642
6988
|
}
|
|
6643
|
-
]
|
|
6989
|
+
],
|
|
6990
|
+
"inheritedFrom": {
|
|
6991
|
+
"type": "reference",
|
|
6992
|
+
"name": "SkyLookupAutocompleteAdapter.propertiesToSearch"
|
|
6993
|
+
}
|
|
6644
6994
|
},
|
|
6645
6995
|
{
|
|
6646
6996
|
"id": 521,
|
|
@@ -6655,6 +7005,8 @@
|
|
|
6655
7005
|
"name": "Input",
|
|
6656
7006
|
"type": {
|
|
6657
7007
|
"type": "reference",
|
|
7008
|
+
"qualifiedName": "InputDecorator",
|
|
7009
|
+
"package": "@angular/core",
|
|
6658
7010
|
"name": "Input"
|
|
6659
7011
|
},
|
|
6660
7012
|
"arguments": {}
|
|
@@ -6681,6 +7033,10 @@
|
|
|
6681
7033
|
"type": "reference",
|
|
6682
7034
|
"id": 548,
|
|
6683
7035
|
"name": "SkyAutocompleteSearchFunction"
|
|
7036
|
+
},
|
|
7037
|
+
"inheritedFrom": {
|
|
7038
|
+
"type": "reference",
|
|
7039
|
+
"name": "SkyLookupAutocompleteAdapter.search"
|
|
6684
7040
|
}
|
|
6685
7041
|
}
|
|
6686
7042
|
],
|
|
@@ -6711,9 +7067,17 @@
|
|
|
6711
7067
|
"type": {
|
|
6712
7068
|
"type": "intrinsic",
|
|
6713
7069
|
"name": "void"
|
|
7070
|
+
},
|
|
7071
|
+
"inheritedFrom": {
|
|
7072
|
+
"type": "reference",
|
|
7073
|
+
"name": "SkyLookupAutocompleteAdapter.search"
|
|
6714
7074
|
}
|
|
6715
7075
|
}
|
|
6716
|
-
]
|
|
7076
|
+
],
|
|
7077
|
+
"inheritedFrom": {
|
|
7078
|
+
"type": "reference",
|
|
7079
|
+
"name": "SkyLookupAutocompleteAdapter.search"
|
|
7080
|
+
}
|
|
6717
7081
|
},
|
|
6718
7082
|
{
|
|
6719
7083
|
"id": 385,
|
|
@@ -6728,6 +7092,8 @@
|
|
|
6728
7092
|
"name": "Input",
|
|
6729
7093
|
"type": {
|
|
6730
7094
|
"type": "reference",
|
|
7095
|
+
"qualifiedName": "InputDecorator",
|
|
7096
|
+
"package": "@angular/core",
|
|
6731
7097
|
"name": "Input"
|
|
6732
7098
|
},
|
|
6733
7099
|
"arguments": {}
|
|
@@ -6748,7 +7114,13 @@
|
|
|
6748
7114
|
"kindString": "Get signature",
|
|
6749
7115
|
"flags": {},
|
|
6750
7116
|
"comment": {
|
|
6751
|
-
"shortText": "Specifies whether users can select one option or multiple options."
|
|
7117
|
+
"shortText": "Specifies whether users can select one option or multiple options.",
|
|
7118
|
+
"tags": [
|
|
7119
|
+
{
|
|
7120
|
+
"tag": "default",
|
|
7121
|
+
"text": "\"mulitple\"\n"
|
|
7122
|
+
}
|
|
7123
|
+
]
|
|
6752
7124
|
},
|
|
6753
7125
|
"type": {
|
|
6754
7126
|
"type": "reference",
|
|
@@ -7005,6 +7377,8 @@
|
|
|
7005
7377
|
"flags": {},
|
|
7006
7378
|
"type": {
|
|
7007
7379
|
"type": "reference",
|
|
7380
|
+
"qualifiedName": "KeyboardEvent",
|
|
7381
|
+
"package": "typescript",
|
|
7008
7382
|
"name": "KeyboardEvent"
|
|
7009
7383
|
}
|
|
7010
7384
|
},
|
|
@@ -7058,6 +7432,8 @@
|
|
|
7058
7432
|
"flags": {},
|
|
7059
7433
|
"type": {
|
|
7060
7434
|
"type": "reference",
|
|
7435
|
+
"qualifiedName": "KeyboardEvent",
|
|
7436
|
+
"package": "typescript",
|
|
7061
7437
|
"name": "KeyboardEvent"
|
|
7062
7438
|
}
|
|
7063
7439
|
}
|
|
@@ -7516,6 +7892,8 @@
|
|
|
7516
7892
|
"flags": {},
|
|
7517
7893
|
"type": {
|
|
7518
7894
|
"type": "reference",
|
|
7895
|
+
"qualifiedName": "KeyboardEvent",
|
|
7896
|
+
"package": "typescript",
|
|
7519
7897
|
"name": "KeyboardEvent"
|
|
7520
7898
|
}
|
|
7521
7899
|
}
|
|
@@ -7946,18 +8324,26 @@
|
|
|
7946
8324
|
"implementedTypes": [
|
|
7947
8325
|
{
|
|
7948
8326
|
"type": "reference",
|
|
8327
|
+
"qualifiedName": "OnInit",
|
|
8328
|
+
"package": "@angular/core",
|
|
7949
8329
|
"name": "OnInit"
|
|
7950
8330
|
},
|
|
7951
8331
|
{
|
|
7952
8332
|
"type": "reference",
|
|
8333
|
+
"qualifiedName": "AfterViewInit",
|
|
8334
|
+
"package": "@angular/core",
|
|
7953
8335
|
"name": "AfterViewInit"
|
|
7954
8336
|
},
|
|
7955
8337
|
{
|
|
7956
8338
|
"type": "reference",
|
|
8339
|
+
"qualifiedName": "OnDestroy",
|
|
8340
|
+
"package": "@angular/core",
|
|
7957
8341
|
"name": "OnDestroy"
|
|
7958
8342
|
},
|
|
7959
8343
|
{
|
|
7960
8344
|
"type": "reference",
|
|
8345
|
+
"qualifiedName": "ControlValueAccessor",
|
|
8346
|
+
"package": "@angular/forms",
|
|
7961
8347
|
"name": "ControlValueAccessor"
|
|
7962
8348
|
}
|
|
7963
8349
|
]
|
|
@@ -8065,6 +8451,8 @@
|
|
|
8065
8451
|
"name": "SkyAutocompleteSearchAsyncResult"
|
|
8066
8452
|
}
|
|
8067
8453
|
],
|
|
8454
|
+
"qualifiedName": "Observable",
|
|
8455
|
+
"package": "rxjs",
|
|
8068
8456
|
"name": "Observable"
|
|
8069
8457
|
}
|
|
8070
8458
|
},
|
|
@@ -8717,6 +9105,8 @@
|
|
|
8717
9105
|
"name": "any"
|
|
8718
9106
|
}
|
|
8719
9107
|
],
|
|
9108
|
+
"qualifiedName": "TemplateRef",
|
|
9109
|
+
"package": "@angular/core",
|
|
8720
9110
|
"name": "TemplateRef"
|
|
8721
9111
|
}
|
|
8722
9112
|
},
|
|
@@ -8733,7 +9123,7 @@
|
|
|
8733
9123
|
"tags": [
|
|
8734
9124
|
{
|
|
8735
9125
|
"tag": "default",
|
|
8736
|
-
"text": "
|
|
9126
|
+
"text": "\"Select an option/Select options\"\n"
|
|
8737
9127
|
}
|
|
8738
9128
|
]
|
|
8739
9129
|
},
|
|
@@ -8818,7 +9208,7 @@
|
|
|
8818
9208
|
"flags": {},
|
|
8819
9209
|
"sources": [
|
|
8820
9210
|
{
|
|
8821
|
-
"fileName": "
|
|
9211
|
+
"fileName": "lib/modules/autocomplete/types/autocomplete-search-function.ts",
|
|
8822
9212
|
"line": 3,
|
|
8823
9213
|
"character": 44
|
|
8824
9214
|
}
|
|
@@ -8890,7 +9280,7 @@
|
|
|
8890
9280
|
"flags": {},
|
|
8891
9281
|
"sources": [
|
|
8892
9282
|
{
|
|
8893
|
-
"fileName": "
|
|
9283
|
+
"fileName": "lib/modules/autocomplete/types/autocomplete-search-function-filter.ts",
|
|
8894
9284
|
"line": 1,
|
|
8895
9285
|
"character": 50
|
|
8896
9286
|
}
|
|
@@ -8969,6 +9359,8 @@
|
|
|
8969
9359
|
}
|
|
8970
9360
|
}
|
|
8971
9361
|
],
|
|
9362
|
+
"qualifiedName": "Promise",
|
|
9363
|
+
"package": "typescript",
|
|
8972
9364
|
"name": "Promise"
|
|
8973
9365
|
}
|
|
8974
9366
|
]
|
|
@@ -9048,7 +9440,7 @@
|
|
|
9048
9440
|
],
|
|
9049
9441
|
"sources": [
|
|
9050
9442
|
{
|
|
9051
|
-
"fileName": "
|
|
9443
|
+
"fileName": "index.ts",
|
|
9052
9444
|
"line": 1,
|
|
9053
9445
|
"character": 0
|
|
9054
9446
|
}
|
|
@@ -9130,6 +9522,26 @@
|
|
|
9130
9522
|
"filePath": "/projects/lookup/documentation/code-examples/country-field/basic/country-field-demo.module.ts",
|
|
9131
9523
|
"rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { ReactiveFormsModule } from '@angular/forms';\n\nimport { SkyInputBoxModule } from '@skyux/forms';\n\nimport { SkyCountryFieldModule } from '@skyux/lookup';\n\nimport { CountryFieldDemoComponent } from './country-field-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyCountryFieldModule,\n SkyInputBoxModule,\n ],\n declarations: [CountryFieldDemoComponent],\n exports: [CountryFieldDemoComponent],\n})\nexport class CountryFieldDemoModule {}\n"
|
|
9132
9524
|
},
|
|
9525
|
+
{
|
|
9526
|
+
"fileName": "lookup-async-demo.component.html",
|
|
9527
|
+
"filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.component.html",
|
|
9528
|
+
"rawContents": "<form\n class=\"lookup-demo-form\"\n novalidate\n [formGroup]=\"myForm\"\n (ngSubmit)=\"onSubmit()\"\n>\n <div class=\"sky-form-group\">\n <sky-input-box>\n <label class=\"sky-control-label\" skyId #nameLabel=\"skyId\">\n Favorite name\n </label>\n <sky-lookup\n formControlName=\"name\"\n selectMode=\"single\"\n [ariaLabelledBy]=\"nameLabel.id\"\n [data]=\"people\"\n [searchFilters]=\"getSearchFilters()\"\n (searchAsync)=\"searchAsync($event)\"\n >\n </sky-lookup>\n </sky-input-box>\n </div>\n <div class=\"lookup-demo-alert\">\n <strong>Form model:</strong>\n <pre>{{ myForm.value | json }}</pre>\n </div>\n <button class=\"sky-btn sky-btn-default\" type=\"submit\">Submit</button>\n</form>\n"
|
|
9529
|
+
},
|
|
9530
|
+
{
|
|
9531
|
+
"fileName": "lookup-async-demo.component.scss",
|
|
9532
|
+
"filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.component.scss",
|
|
9533
|
+
"rawContents": ".lookup-demo-alert {\n padding: 10px;\n margin-bottom: 10px;\n border: 1px solid #cdcfd2;\n border-radius: 3px;\n}\n\n.lookup-demo-alert pre {\n margin: 0;\n}\n"
|
|
9534
|
+
},
|
|
9535
|
+
{
|
|
9536
|
+
"fileName": "lookup-async-demo.component.ts",
|
|
9537
|
+
"filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.component.ts",
|
|
9538
|
+
"rawContents": "import { Component, OnInit } from '@angular/core';\n\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport { SkyAutocompleteSearchAsyncArgs } from 'lookup';\n\nimport {\n SkyAutocompleteSearchAsyncResult,\n SkyAutocompleteSearchFunctionFilter,\n} from '@skyux/lookup';\nimport { Subject } from 'rxjs';\n\n@Component({\n selector: 'app-async-lookup-demo',\n templateUrl: './lookup-async-demo.component.html',\n styleUrls: ['./lookup-async-demo.component.scss'],\n})\nexport class LookupAsyncDemoComponent implements OnInit {\n public myForm: FormGroup;\n\n public people: any[] = [\n { name: 'Abed' },\n { name: 'Alex' },\n { name: 'Ben' },\n { name: 'Britta' },\n { name: 'Buzz' },\n { name: 'Craig' },\n { name: 'Elroy' },\n { name: 'Garrett' },\n { name: 'Ian' },\n { name: 'Jeff' },\n { name: 'Leonard' },\n { name: 'Neil' },\n { name: 'Pierce' },\n { name: 'Preston' },\n { name: 'Rachel' },\n { name: 'Shirley' },\n { name: 'Todd' },\n { name: 'Troy' },\n { name: 'Vaughn' },\n { name: 'Vicki' },\n ];\n\n public name: any[] = [this.people[15]];\n\n constructor(private formBuilder: FormBuilder) {}\n\n public ngOnInit(): void {\n this.createForm();\n\n // If you need to execute some logic after the lookup values change,\n // subscribe to Angular's built-in value changes observable.\n this.myForm.valueChanges.subscribe((changes) => {\n console.log('Lookup value changes:', changes);\n });\n }\n\n // Only show people in the search results that have not been chosen already.\n public getSearchFilters(): SkyAutocompleteSearchFunctionFilter[] {\n const name: any[] = this.myForm.controls.name.value;\n return [\n (searchText: string, item: any): boolean => {\n const found = name.find((option) => option.name === item.name);\n return !found;\n },\n ];\n }\n\n public onSubmit(): void {\n alert('Form submitted with: ' + JSON.stringify(this.myForm.value));\n }\n\n public searchAsync($event: SkyAutocompleteSearchAsyncArgs) {\n const result = new Subject<SkyAutocompleteSearchAsyncResult>();\n $event.result = result;\n setTimeout(() => {\n const searchText = $event.searchText.toLowerCase();\n const items = this.people.filter((person) => {\n return person.name.toLowerCase().includes(searchText);\n });\n result.next({\n hasMore: false,\n items,\n totalCount: items.length,\n });\n }, 800);\n }\n\n private createForm(): void {\n this.myForm = this.formBuilder.group({\n name: new FormControl(this.name),\n });\n }\n}\n"
|
|
9539
|
+
},
|
|
9540
|
+
{
|
|
9541
|
+
"fileName": "lookup-async-demo.module.ts",
|
|
9542
|
+
"filePath": "/projects/lookup/documentation/code-examples/lookup/async/lookup-async-demo.module.ts",
|
|
9543
|
+
"rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { ReactiveFormsModule } from '@angular/forms';\n\nimport { SkyIdModule } from '@skyux/core';\n\nimport { SkyInputBoxModule } from '@skyux/forms';\n\nimport { SkyLookupModule } from '@skyux/lookup';\n\nimport { LookupAsyncDemoComponent } from './lookup-async-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyIdModule,\n SkyInputBoxModule,\n SkyLookupModule,\n ],\n declarations: [LookupAsyncDemoComponent],\n exports: [LookupAsyncDemoComponent],\n})\nexport class LookupAsyncDemoModule {}\n"
|
|
9544
|
+
},
|
|
9133
9545
|
{
|
|
9134
9546
|
"fileName": "lookup-custom-picker-demo-modal.component.html",
|
|
9135
9547
|
"filePath": "/projects/lookup/documentation/code-examples/lookup/custom-picker/lookup-custom-picker-demo-modal.component.html",
|
|
@@ -9236,4 +9648,4 @@
|
|
|
9236
9648
|
"rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { SkyToolbarModule } from '@skyux/layout';\n\nimport { SkyRepeaterModule } from '@skyux/lists';\n\nimport { SkySearchModule } from '@skyux/lookup';\n\nimport { SearchDemoComponent } from './search-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyRepeaterModule, SkySearchModule, SkyToolbarModule],\n declarations: [SearchDemoComponent],\n exports: [SearchDemoComponent],\n})\nexport class SearchDemoModule {}\n"
|
|
9237
9649
|
}
|
|
9238
9650
|
]
|
|
9239
|
-
}
|
|
9651
|
+
}
|