@skyux/lookup 7.9.0 → 7.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation.json +897 -860
- package/esm2020/lib/modules/autocomplete/autocomplete.component.mjs +19 -7
- package/fesm2015/skyux-lookup.mjs +18 -6
- package/fesm2015/skyux-lookup.mjs.map +1 -1
- package/fesm2020/skyux-lookup.mjs +18 -6
- package/fesm2020/skyux-lookup.mjs.map +1 -1
- package/lib/modules/autocomplete/autocomplete.component.d.ts +3 -3
- package/package.json +10 -10
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, TemplateRef } from '@angular/core';
|
|
2
|
-
import { SkyAffixService, SkyOverlayService } from '@skyux/core';
|
|
2
|
+
import { SkyAffixService, SkyOverlayService, SkyStackingContext } from '@skyux/core';
|
|
3
3
|
import { SkyInputBoxHostService } from '@skyux/forms';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
5
5
|
import { SkyAutocompleteAdapterService } from './autocomplete-adapter.service';
|
|
@@ -163,7 +163,7 @@ export declare class SkyAutocompleteComponent implements OnDestroy, AfterViewIni
|
|
|
163
163
|
set resultsRef(value: ElementRef | undefined);
|
|
164
164
|
get resultsRef(): ElementRef | undefined;
|
|
165
165
|
searchOrDefault: SkyAutocompleteSearchFunction;
|
|
166
|
-
constructor(changeDetector: ChangeDetectorRef, elementRef: ElementRef, affixService: SkyAffixService, adapterService: SkyAutocompleteAdapterService, overlayService: SkyOverlayService, inputBoxHostSvc?: SkyInputBoxHostService);
|
|
166
|
+
constructor(changeDetector: ChangeDetectorRef, elementRef: ElementRef, affixService: SkyAffixService, adapterService: SkyAutocompleteAdapterService, overlayService: SkyOverlayService, inputBoxHostSvc?: SkyInputBoxHostService, stackingContext?: SkyStackingContext);
|
|
167
167
|
ngAfterViewInit(): void;
|
|
168
168
|
ngOnDestroy(): void;
|
|
169
169
|
addButtonClicked(): void;
|
|
@@ -172,7 +172,7 @@ export declare class SkyAutocompleteComponent implements OnDestroy, AfterViewIni
|
|
|
172
172
|
onResultMouseDown(id: string, event: MouseEvent): void;
|
|
173
173
|
onResultMouseMove(id: number): void;
|
|
174
174
|
isElementFocused(ref: HTMLElement): boolean;
|
|
175
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SkyAutocompleteComponent, [null, null, null, null, null, { optional: true; }]>;
|
|
175
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyAutocompleteComponent, [null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
176
176
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyAutocompleteComponent, "sky-autocomplete", never, { "ariaLabelledBy": "ariaLabelledBy"; "data": "data"; "debounceTime": "debounceTime"; "descriptorProperty": "descriptorProperty"; "enableShowMore": "enableShowMore"; "messageStream": "messageStream"; "wrapperClass": "wrapperClass"; "propertiesToSearch": "propertiesToSearch"; "search": "search"; "searchResultTemplate": "searchResultTemplate"; "searchTextMinimumCharacters": "searchTextMinimumCharacters"; "searchFilters": "searchFilters"; "searchResultsLimit": "searchResultsLimit"; "showAddButton": "showAddButton"; "noResultsFoundText": "noResultsFoundText"; "searchAsyncDisabled": "searchAsyncDisabled"; }, { "addClick": "addClick"; "showMoreClick": "showMoreClick"; "selectionChange": "selectionChange"; "searchAsync": "searchAsync"; }, ["inputDirective"], ["*"], false>;
|
|
177
177
|
}
|
|
178
178
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "7.9.
|
|
3
|
+
"version": "7.9.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -46,15 +46,15 @@
|
|
|
46
46
|
"@angular/core": "^14.2.11",
|
|
47
47
|
"@angular/forms": "^14.2.11",
|
|
48
48
|
"@angular/platform-browser": "^14.2.11",
|
|
49
|
-
"@skyux-sdk/testing": "7.9.
|
|
50
|
-
"@skyux/core": "7.9.
|
|
51
|
-
"@skyux/forms": "7.9.
|
|
52
|
-
"@skyux/i18n": "7.9.
|
|
53
|
-
"@skyux/indicators": "7.9.
|
|
54
|
-
"@skyux/layout": "7.9.
|
|
55
|
-
"@skyux/lists": "7.9.
|
|
56
|
-
"@skyux/modals": "7.9.
|
|
57
|
-
"@skyux/theme": "7.9.
|
|
49
|
+
"@skyux-sdk/testing": "7.9.1",
|
|
50
|
+
"@skyux/core": "7.9.1",
|
|
51
|
+
"@skyux/forms": "7.9.1",
|
|
52
|
+
"@skyux/i18n": "7.9.1",
|
|
53
|
+
"@skyux/indicators": "7.9.1",
|
|
54
|
+
"@skyux/layout": "7.9.1",
|
|
55
|
+
"@skyux/lists": "7.9.1",
|
|
56
|
+
"@skyux/modals": "7.9.1",
|
|
57
|
+
"@skyux/theme": "7.9.1"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"intl-tel-input": "17.0.19",
|