@elderbyte/ngx-starter 21.4.2 → 21.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/package.json
CHANGED
|
@@ -11567,7 +11567,7 @@ declare class ElderChipLabelDirective {
|
|
|
11567
11567
|
readonly levelColor: i0.InputSignal<ElderLevelColor>;
|
|
11568
11568
|
readonly namedColor: i0.InputSignal<ElderNamedColor>;
|
|
11569
11569
|
readonly themeColor: i0.InputSignal<ThemePalette>;
|
|
11570
|
-
readonly chipSize: i0.InputSignal<"
|
|
11570
|
+
readonly chipSize: i0.InputSignal<"medium" | "small">;
|
|
11571
11571
|
readonly cssClasses: i0.Signal<string>;
|
|
11572
11572
|
readonly sizeClass: i0.Signal<string>;
|
|
11573
11573
|
/***************************************************************************
|
|
@@ -11662,38 +11662,31 @@ declare class ElderSelectionPopupTriggerAdapterDirective {
|
|
|
11662
11662
|
}
|
|
11663
11663
|
|
|
11664
11664
|
declare class ElderSelectOnTabDirective<TEntity = any, TId = any, TValue = TEntity | TId> implements AfterViewInit, OnDestroy {
|
|
11665
|
-
private readonly autoTrigger;
|
|
11666
|
-
private readonly elderSelectBase;
|
|
11667
11665
|
/***************************************************************************
|
|
11668
11666
|
* *
|
|
11669
|
-
* Fields
|
|
11667
|
+
* Fields *
|
|
11670
11668
|
* *
|
|
11671
11669
|
**************************************************************************/
|
|
11672
11670
|
private readonly logger;
|
|
11673
|
-
private readonly
|
|
11671
|
+
private readonly autoTrigger;
|
|
11672
|
+
private readonly elderSelectBase;
|
|
11674
11673
|
private readonly controlValueAccessor;
|
|
11675
|
-
|
|
11676
|
-
* Whether the autocomplete panel was open before the event
|
|
11677
|
-
*/
|
|
11678
|
-
private panelOpen;
|
|
11679
|
-
/**
|
|
11680
|
-
* Whether the user selected an option.
|
|
11681
|
-
* (We want to ignore selections if there is already a selection present and the user tabs away)
|
|
11682
|
-
*/
|
|
11683
|
-
private userInput;
|
|
11674
|
+
private readonly destroy$;
|
|
11684
11675
|
/***************************************************************************
|
|
11685
11676
|
* *
|
|
11686
|
-
*
|
|
11677
|
+
* State *
|
|
11687
11678
|
* *
|
|
11688
11679
|
**************************************************************************/
|
|
11689
|
-
|
|
11680
|
+
private isPanelOpen;
|
|
11681
|
+
private userInteractionState;
|
|
11682
|
+
private valueSnapshot;
|
|
11690
11683
|
/***************************************************************************
|
|
11691
11684
|
* *
|
|
11692
11685
|
* Event Listener *
|
|
11693
11686
|
* *
|
|
11694
11687
|
**************************************************************************/
|
|
11695
|
-
|
|
11696
|
-
|
|
11688
|
+
handleVerticalArrowKeyPress(): void;
|
|
11689
|
+
handleTabKeyPress(): void;
|
|
11697
11690
|
/***************************************************************************
|
|
11698
11691
|
* *
|
|
11699
11692
|
* Life Cycle *
|
|
@@ -11706,10 +11699,13 @@ declare class ElderSelectOnTabDirective<TEntity = any, TId = any, TValue = TEnti
|
|
|
11706
11699
|
* Private methods *
|
|
11707
11700
|
* *
|
|
11708
11701
|
**************************************************************************/
|
|
11709
|
-
private
|
|
11702
|
+
private isValueSnapShotNotEmpty;
|
|
11703
|
+
private buildPanelOpenAsyncObservable;
|
|
11704
|
+
private buildOptionSelectionFromUserInputObservable;
|
|
11705
|
+
private shouldSkipTabSelection;
|
|
11710
11706
|
private writeEntity;
|
|
11711
11707
|
private entityToValue;
|
|
11712
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderSelectOnTabDirective<any, any, any>,
|
|
11708
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderSelectOnTabDirective<any, any, any>, never>;
|
|
11713
11709
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderSelectOnTabDirective<any, any, any>, "[elderSelectOnTab]", never, {}, {}, never, never, true, never>;
|
|
11714
11710
|
}
|
|
11715
11711
|
|