@skyux/lookup 5.5.0 → 5.6.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 +850 -849
- package/documentation.json +194 -194
- package/esm2015/lib/modules/autocomplete/autocomplete-adapter.service.js.map +1 -1
- package/esm2015/lib/modules/autocomplete/autocomplete-default-search-function.js.map +1 -1
- package/esm2015/lib/modules/autocomplete/autocomplete-input.directive.js +2 -2
- package/esm2015/lib/modules/autocomplete/autocomplete-input.directive.js.map +1 -1
- package/esm2015/lib/modules/autocomplete/autocomplete-search-async-disabled.pipe.js.map +1 -1
- package/esm2015/lib/modules/autocomplete/autocomplete.component.js +3 -3
- package/esm2015/lib/modules/autocomplete/autocomplete.component.js.map +1 -1
- package/esm2015/lib/modules/autocomplete/autocomplete.module.js +1 -1
- package/esm2015/lib/modules/autocomplete/autocomplete.module.js.map +1 -1
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-async-args.js.map +1 -1
- package/esm2015/lib/modules/autocomplete/types/autocomplete-search-async-function.js.map +1 -1
- package/esm2015/lib/modules/country-field/country-field.component.js +7 -7
- package/esm2015/lib/modules/country-field/country-field.component.js.map +1 -1
- package/esm2015/lib/modules/country-field/country-field.module.js +1 -1
- package/esm2015/lib/modules/country-field/country-field.module.js.map +1 -1
- package/esm2015/lib/modules/lookup/lookup-autocomplete-adapter.js.map +1 -1
- package/esm2015/lib/modules/lookup/lookup-show-more-async-modal.component.js.map +1 -1
- package/esm2015/lib/modules/lookup/lookup-show-more-modal.component.js +6 -6
- package/esm2015/lib/modules/lookup/lookup-show-more-modal.component.js.map +1 -1
- package/esm2015/lib/modules/lookup/lookup.component.js +11 -10
- package/esm2015/lib/modules/lookup/lookup.component.js.map +1 -1
- package/esm2015/lib/modules/lookup/lookup.module.js +4 -4
- package/esm2015/lib/modules/lookup/lookup.module.js.map +1 -1
- package/esm2015/lib/modules/lookup/types/lookup-show-more-config.js.map +1 -1
- package/esm2015/lib/modules/lookup/types/lookup-show-more-native-picker-async-context.js.map +1 -1
- package/esm2015/lib/modules/lookup/types/lookup-show-more-native-picker-context.js.map +1 -1
- package/esm2015/lib/modules/search/search-adapter.service.js +3 -3
- package/esm2015/lib/modules/search/search-adapter.service.js.map +1 -1
- package/esm2015/lib/modules/search/search.component.js +2 -2
- package/esm2015/lib/modules/search/search.component.js.map +1 -1
- package/esm2015/lib/modules/search/search.module.js +1 -1
- package/esm2015/lib/modules/search/search.module.js.map +1 -1
- package/esm2015/lib/modules/shared/sky-lookup-resources.module.js +1 -1
- package/esm2015/lib/modules/shared/sky-lookup-resources.module.js.map +1 -1
- package/esm2015/testing/country-field/country-field-fixture.js.map +1 -1
- package/esm2015/testing/country-field/country-field-testing.module.js.map +1 -1
- package/esm2015/testing/search/search-fixture.js.map +1 -1
- package/esm2015/testing/search/search-testing.module.js.map +1 -1
- package/fesm2015/skyux-lookup-testing.js.map +1 -1
- package/fesm2015/skyux-lookup.js +582 -581
- package/fesm2015/skyux-lookup.js.map +1 -1
- package/lib/modules/autocomplete/autocomplete-default-search-function.d.ts +1 -1
- package/lib/modules/autocomplete/autocomplete.component.d.ts +2 -2
- package/lib/modules/autocomplete/types/autocomplete-search-async-args.d.ts +1 -1
- package/lib/modules/country-field/country-field.component.d.ts +2 -2
- package/lib/modules/lookup/lookup.component.d.ts +3 -3
- package/lib/modules/search/search.component.d.ts +1 -1
- package/package.json +9 -9
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { SkyAutocompleteSearchFunction } from './types/autocomplete-search-function';
|
|
2
1
|
import { SkyAutocompleteDefaultSearchFunctionOptions } from './types/autocomplete-default-search-function-options';
|
|
2
|
+
import { SkyAutocompleteSearchFunction } from './types/autocomplete-search-function';
|
|
3
3
|
export declare function skyAutocompleteDefaultSearchFunction(options: SkyAutocompleteDefaultSearchFunctionOptions): SkyAutocompleteSearchFunction;
|
|
@@ -2,13 +2,13 @@ import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, EventEm
|
|
|
2
2
|
import { SkyAffixService, SkyOverlayService } from '@skyux/core';
|
|
3
3
|
import { SkyInputBoxHostService } from '@skyux/forms';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
5
|
+
import { SkyAutocompleteAdapterService } from './autocomplete-adapter.service';
|
|
5
6
|
import { SkyAutocompleteMessage } from './types/autocomplete-message';
|
|
7
|
+
import { SkyAutocompleteSearchAsyncArgs } from './types/autocomplete-search-async-args';
|
|
6
8
|
import { SkyAutocompleteSearchFunction } from './types/autocomplete-search-function';
|
|
7
9
|
import { SkyAutocompleteSearchFunctionFilter } from './types/autocomplete-search-function-filter';
|
|
8
10
|
import { SkyAutocompleteSelectionChange } from './types/autocomplete-selection-change';
|
|
9
11
|
import { SkyAutocompleteShowMoreArgs } from './types/autocomplete-show-more-args';
|
|
10
|
-
import { SkyAutocompleteAdapterService } from './autocomplete-adapter.service';
|
|
11
|
-
import { SkyAutocompleteSearchAsyncArgs } from './types/autocomplete-search-async-args';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
/**
|
|
14
14
|
* @internal
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { SkyAutocompleteSearchAsyncResult } from './autocomplete-search-async-result';
|
|
2
1
|
import { Observable } from 'rxjs';
|
|
2
|
+
import { SkyAutocompleteSearchAsyncResult } from './autocomplete-search-async-result';
|
|
3
3
|
import { AutocompleteSearchAsyncResultDisplayType } from './autocomplete-search-async-result-display-type';
|
|
4
4
|
/**
|
|
5
5
|
* Arguments passed when an asynchronous search is executed from the
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, FormControl, ValidationErrors, Validator } from '@angular/forms';
|
|
3
3
|
import { SkyAppWindowRef } from '@skyux/core';
|
|
4
|
-
import { SkyThemeService } from '@skyux/theme';
|
|
5
4
|
import { SkyInputBoxHostService } from '@skyux/forms';
|
|
5
|
+
import { SkyThemeService } from '@skyux/theme';
|
|
6
6
|
import 'intl-tel-input';
|
|
7
|
-
import { SkyAutocompleteSelectionChange } from '../autocomplete/types/autocomplete-selection-change';
|
|
8
7
|
import { SkyAutocompleteInputDirective } from '../autocomplete/autocomplete-input.directive';
|
|
8
|
+
import { SkyAutocompleteSelectionChange } from '../autocomplete/types/autocomplete-selection-change';
|
|
9
9
|
import { SkyCountryFieldCountry } from './types/country';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class SkyCountryFieldComponent implements AfterViewInit, ControlValueAccessor, OnDestroy, OnInit, Validator {
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
3
|
import { SkyAppWindowRef } from '@skyux/core';
|
|
5
4
|
import { SkyInputBoxHostService } from '@skyux/forms';
|
|
6
5
|
import { SkyLibResourcesService } from '@skyux/i18n';
|
|
7
6
|
import { SkyToken, SkyTokensMessage } from '@skyux/indicators';
|
|
8
7
|
import { SkyModalService } from '@skyux/modals';
|
|
9
8
|
import { SkyThemeService } from '@skyux/theme';
|
|
9
|
+
import { Subject } from 'rxjs';
|
|
10
10
|
import { SkyAutocompleteMessage } from '../autocomplete/types/autocomplete-message';
|
|
11
|
+
import { SkyAutocompleteSearchAsyncArgs } from '../autocomplete/types/autocomplete-search-async-args';
|
|
11
12
|
import { SkyAutocompleteSelectionChange } from '../autocomplete/types/autocomplete-selection-change';
|
|
12
13
|
import { SkyAutocompleteShowMoreArgs } from '../autocomplete/types/autocomplete-show-more-args';
|
|
13
|
-
import { SkyLookupAutocompleteAdapter } from './lookup-autocomplete-adapter';
|
|
14
14
|
import { SkyLookupAdapterService } from './lookup-adapter.service';
|
|
15
|
+
import { SkyLookupAutocompleteAdapter } from './lookup-autocomplete-adapter';
|
|
15
16
|
import { SkyLookupAddClickEventArgs } from './types/lookup-add-click-event-args';
|
|
16
17
|
import { SkyLookupSelectModeType } from './types/lookup-select-mode-type';
|
|
17
18
|
import { SkyLookupShowMoreConfig } from './types/lookup-show-more-config';
|
|
18
|
-
import { SkyAutocompleteSearchAsyncArgs } from '../autocomplete/types/autocomplete-search-async-args';
|
|
19
19
|
import * as i0 from "@angular/core";
|
|
20
20
|
export declare class SkyLookupComponent extends SkyLookupAutocompleteAdapter implements OnInit, AfterViewInit, OnDestroy, ControlValueAccessor {
|
|
21
21
|
private changeDetector;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AnimationEvent } from '@angular/animations';
|
|
2
|
-
import {
|
|
2
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { SkyMediaQueryService } from '@skyux/core';
|
|
4
4
|
import { Subscription } from 'rxjs';
|
|
5
5
|
import { SkySearchAdapterService } from './search-adapter.service';
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^12.2.16",
|
|
6
6
|
"@angular/core": "^12.2.16",
|
|
7
7
|
"@angular/router": "^12.2.16",
|
|
8
|
-
"@skyux/core": "5.
|
|
9
|
-
"@skyux/modals": "5.
|
|
10
|
-
"@skyux/forms": "5.
|
|
11
|
-
"@skyux/i18n": "5.
|
|
12
|
-
"@skyux/indicators": "5.
|
|
13
|
-
"@skyux/layout": "5.
|
|
14
|
-
"@skyux/lists": "5.
|
|
15
|
-
"@skyux/theme": "5.
|
|
8
|
+
"@skyux/core": "5.6.0",
|
|
9
|
+
"@skyux/modals": "5.6.0",
|
|
10
|
+
"@skyux/forms": "5.6.0",
|
|
11
|
+
"@skyux/i18n": "5.6.0",
|
|
12
|
+
"@skyux/indicators": "5.6.0",
|
|
13
|
+
"@skyux/layout": "5.6.0",
|
|
14
|
+
"@skyux/lists": "5.6.0",
|
|
15
|
+
"@skyux/theme": "5.6.0"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"intl-tel-input": "14.1.0",
|