@skyux/lookup 8.10.0 → 8.10.2
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.
|
@@ -23,7 +23,7 @@ import { SkyToolbarModule } from '@skyux/layout';
|
|
|
23
23
|
import * as i7 from '@skyux/lists';
|
|
24
24
|
import { SkyInfiniteScrollModule, SkyRepeaterModule } from '@skyux/lists';
|
|
25
25
|
import * as i1$1 from '@skyux/modals';
|
|
26
|
-
import { SkyModalModule, SkyModalService
|
|
26
|
+
import { SkyModalModule, SkyModalService } from '@skyux/modals';
|
|
27
27
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
28
28
|
|
|
29
29
|
/**
|
|
@@ -2877,7 +2877,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2877
2877
|
type: Output
|
|
2878
2878
|
}] } });
|
|
2879
2879
|
|
|
2880
|
-
var _SkyLookupComponent_instances, _SkyLookupComponent_idle, _SkyLookupComponent_markForTokenFocusOnKeyUp, _SkyLookupComponent_ngUnsubscribe, _SkyLookupComponent__autocompleteInputDirective, _SkyLookupComponent__data, _SkyLookupComponent__disabled, _SkyLookupComponent__enableShowMore, _SkyLookupComponent__selectMode, _SkyLookupComponent__showAddButton, _SkyLookupComponent__tokens, _SkyLookupComponent__value, _SkyLookupComponent_adapter, _SkyLookupComponent_changeDetector, _SkyLookupComponent_elementRef, _SkyLookupComponent_idService, _SkyLookupComponent_logSvc, _SkyLookupComponent_modalService,
|
|
2880
|
+
var _SkyLookupComponent_instances, _SkyLookupComponent_idle, _SkyLookupComponent_markForTokenFocusOnKeyUp, _SkyLookupComponent_ngUnsubscribe, _SkyLookupComponent_openNativePicker, _SkyLookupComponent_openSelectionModal, _SkyLookupComponent__autocompleteInputDirective, _SkyLookupComponent__data, _SkyLookupComponent__disabled, _SkyLookupComponent__enableShowMore, _SkyLookupComponent__selectMode, _SkyLookupComponent__showAddButton, _SkyLookupComponent__tokens, _SkyLookupComponent__value, _SkyLookupComponent_adapter, _SkyLookupComponent_changeDetector, _SkyLookupComponent_elementRef, _SkyLookupComponent_idService, _SkyLookupComponent_logSvc, _SkyLookupComponent_modalService, _SkyLookupComponent_resourcesService, _SkyLookupComponent_selectionModalSvc, _SkyLookupComponent_windowRef, _SkyLookupComponent_createSelectionModalInstance, _SkyLookupComponent_createNativePickerInstance, _SkyLookupComponent_processPickerResult, _SkyLookupComponent_addToSelected, _SkyLookupComponent_addEventListeners, _SkyLookupComponent_removeEventListeners, _SkyLookupComponent_focusInputOnHostClick, _SkyLookupComponent_focusInput, _SkyLookupComponent_onAddButtonComplete, _SkyLookupComponent_parseTokens, _SkyLookupComponent_sendAutocompleteMessage, _SkyLookupComponent_sendTokensMessage, _SkyLookupComponent_updateForSelectMode, _SkyLookupComponent_hasSearchAsync, _SkyLookupComponent_pickerModalOpen;
|
|
2881
2881
|
class SkyLookupComponent extends SkyLookupAutocompleteAdapter {
|
|
2882
2882
|
/**
|
|
2883
2883
|
* The data source for the lookup component to search when users
|
|
@@ -3006,6 +3006,8 @@ class SkyLookupComponent extends SkyLookupAutocompleteAdapter {
|
|
|
3006
3006
|
_SkyLookupComponent_idle.set(this, new Subject());
|
|
3007
3007
|
_SkyLookupComponent_markForTokenFocusOnKeyUp.set(this, false);
|
|
3008
3008
|
_SkyLookupComponent_ngUnsubscribe.set(this, new Subject());
|
|
3009
|
+
_SkyLookupComponent_openNativePicker.set(this, void 0);
|
|
3010
|
+
_SkyLookupComponent_openSelectionModal.set(this, void 0);
|
|
3009
3011
|
_SkyLookupComponent__autocompleteInputDirective.set(this, void 0);
|
|
3010
3012
|
_SkyLookupComponent__data.set(this, void 0);
|
|
3011
3013
|
_SkyLookupComponent__disabled.set(this, false);
|
|
@@ -3020,10 +3022,6 @@ class SkyLookupComponent extends SkyLookupAutocompleteAdapter {
|
|
|
3020
3022
|
_SkyLookupComponent_idService.set(this, inject(SkyIdService));
|
|
3021
3023
|
_SkyLookupComponent_logSvc.set(this, inject(SkyLogService));
|
|
3022
3024
|
_SkyLookupComponent_modalService.set(this, inject(SkyModalService));
|
|
3023
|
-
_SkyLookupComponent_openNativePicker.set(this, inject(SkyModalInstance, {
|
|
3024
|
-
optional: true,
|
|
3025
|
-
}) || undefined);
|
|
3026
|
-
_SkyLookupComponent_openSelectionModal.set(this, inject(SkySelectionModalInstance, { optional: true }) || undefined);
|
|
3027
3025
|
_SkyLookupComponent_resourcesService.set(this, inject(SkyLibResourcesService));
|
|
3028
3026
|
_SkyLookupComponent_selectionModalSvc.set(this, inject(SkySelectionModalService));
|
|
3029
3027
|
_SkyLookupComponent_windowRef.set(this, inject(SkyAppWindowRef));
|
|
@@ -3300,7 +3298,7 @@ class SkyLookupComponent extends SkyLookupAutocompleteAdapter {
|
|
|
3300
3298
|
this.searchAsync.emit(args);
|
|
3301
3299
|
}
|
|
3302
3300
|
}
|
|
3303
|
-
_SkyLookupComponent_idle = new WeakMap(), _SkyLookupComponent_markForTokenFocusOnKeyUp = new WeakMap(), _SkyLookupComponent_ngUnsubscribe = new WeakMap(),
|
|
3301
|
+
_SkyLookupComponent_idle = new WeakMap(), _SkyLookupComponent_markForTokenFocusOnKeyUp = new WeakMap(), _SkyLookupComponent_ngUnsubscribe = new WeakMap(), _SkyLookupComponent_openNativePicker = new WeakMap(), _SkyLookupComponent_openSelectionModal = new WeakMap(), _SkyLookupComponent__autocompleteInputDirective = new WeakMap(), _SkyLookupComponent__data = new WeakMap(), _SkyLookupComponent__disabled = new WeakMap(), _SkyLookupComponent__enableShowMore = new WeakMap(), _SkyLookupComponent__selectMode = new WeakMap(), _SkyLookupComponent__showAddButton = new WeakMap(), _SkyLookupComponent__tokens = new WeakMap(), _SkyLookupComponent__value = new WeakMap(), _SkyLookupComponent_adapter = new WeakMap(), _SkyLookupComponent_changeDetector = new WeakMap(), _SkyLookupComponent_elementRef = new WeakMap(), _SkyLookupComponent_idService = new WeakMap(), _SkyLookupComponent_logSvc = new WeakMap(), _SkyLookupComponent_modalService = new WeakMap(), _SkyLookupComponent_resourcesService = new WeakMap(), _SkyLookupComponent_selectionModalSvc = new WeakMap(), _SkyLookupComponent_windowRef = new WeakMap(), _SkyLookupComponent_instances = new WeakSet(), _SkyLookupComponent_createSelectionModalInstance = function _SkyLookupComponent_createSelectionModalInstance(initialSearch) {
|
|
3304
3302
|
const initialValue = this.value;
|
|
3305
3303
|
const modalConfig = this.showMoreConfig?.nativePickerConfig || {};
|
|
3306
3304
|
if (!modalConfig.itemTemplate) {
|