@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
|
/**
|
|
@@ -2885,7 +2885,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2885
2885
|
type: Output
|
|
2886
2886
|
}] } });
|
|
2887
2887
|
|
|
2888
|
-
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,
|
|
2888
|
+
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;
|
|
2889
2889
|
class SkyLookupComponent extends SkyLookupAutocompleteAdapter {
|
|
2890
2890
|
/**
|
|
2891
2891
|
* The data source for the lookup component to search when users
|
|
@@ -3014,6 +3014,8 @@ class SkyLookupComponent extends SkyLookupAutocompleteAdapter {
|
|
|
3014
3014
|
_SkyLookupComponent_idle.set(this, new Subject());
|
|
3015
3015
|
_SkyLookupComponent_markForTokenFocusOnKeyUp.set(this, false);
|
|
3016
3016
|
_SkyLookupComponent_ngUnsubscribe.set(this, new Subject());
|
|
3017
|
+
_SkyLookupComponent_openNativePicker.set(this, void 0);
|
|
3018
|
+
_SkyLookupComponent_openSelectionModal.set(this, void 0);
|
|
3017
3019
|
_SkyLookupComponent__autocompleteInputDirective.set(this, void 0);
|
|
3018
3020
|
_SkyLookupComponent__data.set(this, void 0);
|
|
3019
3021
|
_SkyLookupComponent__disabled.set(this, false);
|
|
@@ -3028,10 +3030,6 @@ class SkyLookupComponent extends SkyLookupAutocompleteAdapter {
|
|
|
3028
3030
|
_SkyLookupComponent_idService.set(this, inject(SkyIdService));
|
|
3029
3031
|
_SkyLookupComponent_logSvc.set(this, inject(SkyLogService));
|
|
3030
3032
|
_SkyLookupComponent_modalService.set(this, inject(SkyModalService));
|
|
3031
|
-
_SkyLookupComponent_openNativePicker.set(this, inject(SkyModalInstance, {
|
|
3032
|
-
optional: true,
|
|
3033
|
-
}) || undefined);
|
|
3034
|
-
_SkyLookupComponent_openSelectionModal.set(this, inject(SkySelectionModalInstance, { optional: true }) || undefined);
|
|
3035
3033
|
_SkyLookupComponent_resourcesService.set(this, inject(SkyLibResourcesService));
|
|
3036
3034
|
_SkyLookupComponent_selectionModalSvc.set(this, inject(SkySelectionModalService));
|
|
3037
3035
|
_SkyLookupComponent_windowRef.set(this, inject(SkyAppWindowRef));
|
|
@@ -3310,7 +3308,7 @@ class SkyLookupComponent extends SkyLookupAutocompleteAdapter {
|
|
|
3310
3308
|
this.searchAsync.emit(args);
|
|
3311
3309
|
}
|
|
3312
3310
|
}
|
|
3313
|
-
_SkyLookupComponent_idle = new WeakMap(), _SkyLookupComponent_markForTokenFocusOnKeyUp = new WeakMap(), _SkyLookupComponent_ngUnsubscribe = new WeakMap(),
|
|
3311
|
+
_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) {
|
|
3314
3312
|
var _a;
|
|
3315
3313
|
const initialValue = this.value;
|
|
3316
3314
|
const modalConfig = ((_a = this.showMoreConfig) === null || _a === void 0 ? void 0 : _a.nativePickerConfig) || {};
|