@coreui/angular-pro 5.5.8 → 5.5.10
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/README.md +1 -1
- package/fesm2022/coreui-angular-pro.mjs +1150 -1280
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/index.d.ts +118 -141
- package/package.json +8 -8
package/index.d.ts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { IsActiveMatchOptions, UrlTree, Router, NavigationEnd } from '@angular/router';
|
|
2
2
|
import * as _angular_core from '@angular/core';
|
|
3
|
-
import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ModelSignal, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, OnChanges, SimpleChanges,
|
|
3
|
+
import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ModelSignal, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, OnChanges, SimpleChanges, Renderer2, WritableSignal, EventEmitter, ComponentRef, Injector, NgModuleRef } from '@angular/core';
|
|
4
4
|
import { AnimationEvent } from '@angular/animations';
|
|
5
5
|
import * as rxjs from 'rxjs';
|
|
6
|
-
import { Observable, Subscription, BehaviorSubject } from 'rxjs';
|
|
6
|
+
import { Observable, Subscription, Subject, BehaviorSubject } from 'rxjs';
|
|
7
7
|
import { FocusableOption, FocusMonitor, FocusOrigin } from '@angular/cdk/a11y';
|
|
8
8
|
import { ControlValueAccessor, FormGroup, FormControl } from '@angular/forms';
|
|
9
9
|
import { BooleanInput as BooleanInput$1, NumberInput as NumberInput$1 } from '@angular/cdk/coercion';
|
|
10
10
|
import * as _popperjs_core from '@popperjs/core';
|
|
11
|
-
import { Options, Placement } from '@popperjs/core';
|
|
11
|
+
import { Options, Placement, Modifier } from '@popperjs/core';
|
|
12
12
|
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
13
|
+
import { SelectionModel, SelectionChange } from '@angular/cdk/collections';
|
|
13
14
|
|
|
14
15
|
declare type BooleanInput = string | boolean | null | undefined;
|
|
15
16
|
declare type NumberInput = string | number | null | undefined;
|
|
@@ -2700,28 +2701,11 @@ declare class MultiSelectOptgroupComponent implements AfterContentInit, OnChange
|
|
|
2700
2701
|
static ngAcceptInputType_disabled: unknown;
|
|
2701
2702
|
}
|
|
2702
2703
|
|
|
2703
|
-
type SearchFn = (
|
|
2704
|
+
type SearchFn = (option: IOption, searchValue: string) => boolean;
|
|
2704
2705
|
interface IMultiSelect<T> {
|
|
2705
|
-
cleaner?: boolean | 'active';
|
|
2706
|
-
multiple?: boolean;
|
|
2707
|
-
options?: IOption[];
|
|
2708
|
-
optionsMaxHeight?: (number | string | 'auto');
|
|
2709
|
-
optionsStyle?: (string | 'checkbox' | 'text');
|
|
2710
|
-
placeholder?: string;
|
|
2711
|
-
search?: boolean | 'external' | SearchFn;
|
|
2712
|
-
searchValue?: string;
|
|
2713
|
-
searchValueChange?: EventEmitter<string>;
|
|
2714
|
-
searchNoResultsLabel?: string;
|
|
2715
|
-
selectAll?: boolean;
|
|
2716
|
-
selectAllLabel?: string;
|
|
2717
|
-
selectionType?: ('counter' | 'tags' | 'text');
|
|
2718
|
-
selectionTypeCounterText?: string;
|
|
2719
2706
|
value: T | T[];
|
|
2720
|
-
valueChange:
|
|
2721
|
-
|
|
2722
|
-
visibleItems?: number;
|
|
2723
|
-
visible?: boolean;
|
|
2724
|
-
visibleChange?: EventEmitter<boolean>;
|
|
2707
|
+
valueChange: OutputEmitterRef<T | T[]>;
|
|
2708
|
+
[k: string]: any;
|
|
2725
2709
|
}
|
|
2726
2710
|
type TOptions = IOption[];
|
|
2727
2711
|
interface IOption {
|
|
@@ -2737,24 +2721,57 @@ interface IOption {
|
|
|
2737
2721
|
custom?: boolean;
|
|
2738
2722
|
}
|
|
2739
2723
|
|
|
2724
|
+
declare class MultiSelectService {
|
|
2725
|
+
#private;
|
|
2726
|
+
optionsStyle: 'checkbox' | 'text';
|
|
2727
|
+
selectionModel: SelectionModel<any>;
|
|
2728
|
+
readonly selectionModelChanged$: Subject<SelectionChange<any>>;
|
|
2729
|
+
setSelectionModel(multiple?: boolean, initiallySelectedValues?: string[]): void;
|
|
2730
|
+
private readonly multiSelectVisible;
|
|
2731
|
+
readonly multiSelectVisible$: rxjs.Observable<boolean>;
|
|
2732
|
+
toggleVisible(visible: boolean): void;
|
|
2733
|
+
private readonly multiSelectFocus;
|
|
2734
|
+
readonly multiSelectFocus$: rxjs.Observable<MultiSelectOptionComponent>;
|
|
2735
|
+
focusChange(option: MultiSelectOptionComponent): void;
|
|
2736
|
+
readonly userOptionsSignal: _angular_core.WritableSignal<IOption[]>;
|
|
2737
|
+
getUserOptions(): _angular_core.Signal<IOption[]>;
|
|
2738
|
+
addUserOption(option: IOption): void;
|
|
2739
|
+
removeUserOption(value: string): void;
|
|
2740
|
+
removeAllUserOptions(): void;
|
|
2741
|
+
readonly optionsArray$: rxjs.Observable<IOption[]>;
|
|
2742
|
+
getOptionsArray(): rxjs.Observable<IOption[]>;
|
|
2743
|
+
updateOptionsArray(options: IOption[]): void;
|
|
2744
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiSelectService, never>;
|
|
2745
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<MultiSelectService>;
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2740
2748
|
interface IPluralMap {
|
|
2741
2749
|
[k: string]: string;
|
|
2742
2750
|
}
|
|
2743
2751
|
declare class MultiSelectComponent<TValue extends string | number> implements IMultiSelect<TValue>, ControlValueAccessor, AfterViewInit, OnChanges, OnDestroy, OnInit {
|
|
2744
2752
|
#private;
|
|
2753
|
+
static ngAcceptInputType_allowCreateOptions: BooleanInput$1;
|
|
2754
|
+
static ngAcceptInputType_clearSearchOnSelect: BooleanInput$1;
|
|
2755
|
+
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
2756
|
+
static ngAcceptInputType_itemSize: NumberInput$1;
|
|
2757
|
+
static ngAcceptInputType_itemMinWidthInput: NumberInput$1;
|
|
2758
|
+
static ngAcceptInputType_loading: BooleanInput$1;
|
|
2759
|
+
static ngAcceptInputType_multiple: BooleanInput$1;
|
|
2760
|
+
static ngAcceptInputType_resetSelectionOnOptionsChange: BooleanInput$1;
|
|
2761
|
+
static ngAcceptInputType_selectAll: BooleanInput$1;
|
|
2762
|
+
static ngAcceptInputType_virtualScroller: BooleanInput$1;
|
|
2763
|
+
static ngAcceptInputType_visibleInput: BooleanInput$1;
|
|
2745
2764
|
private readonly elementRef;
|
|
2746
2765
|
private readonly renderer;
|
|
2747
2766
|
private readonly ngZone;
|
|
2748
2767
|
private readonly changeDetectorRef;
|
|
2749
|
-
private readonly viewContainerRef;
|
|
2750
2768
|
private readonly focusMonitor;
|
|
2751
|
-
|
|
2769
|
+
protected readonly multiSelectService: MultiSelectService;
|
|
2752
2770
|
private readonly iterableDiffers;
|
|
2753
2771
|
constructor();
|
|
2754
2772
|
private readonly differ;
|
|
2755
|
-
readonly optionsArray$: Observable<IOption[]>;
|
|
2756
2773
|
readonly userOptionsArray$: BehaviorSubject<IOption[]>;
|
|
2757
|
-
readonly
|
|
2774
|
+
readonly optionTags: _angular_core.WritableSignal<IOption[]>;
|
|
2758
2775
|
readonly optionsSelected: Map<any, IOption>;
|
|
2759
2776
|
readonly value$: BehaviorSubject<TValue[]>;
|
|
2760
2777
|
onChange: (value: any) => void;
|
|
@@ -2765,66 +2782,44 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2765
2782
|
setDisabledState(isDisabled: boolean): void;
|
|
2766
2783
|
/**
|
|
2767
2784
|
* Allow users to create options if they are not in the list of options.
|
|
2768
|
-
* @
|
|
2785
|
+
* @return boolean
|
|
2769
2786
|
* @default false
|
|
2770
2787
|
* @since 4.5.11
|
|
2771
2788
|
*/
|
|
2772
|
-
allowCreateOptions: boolean
|
|
2789
|
+
readonly allowCreateOptions: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2773
2790
|
/**
|
|
2774
2791
|
* Enables selection cleaner element
|
|
2775
|
-
* @
|
|
2792
|
+
* @return boolean
|
|
2776
2793
|
* @default true | 'active'
|
|
2777
2794
|
*/
|
|
2778
|
-
cleaner: boolean |
|
|
2795
|
+
readonly cleaner: _angular_core.InputSignal<boolean | "active">;
|
|
2779
2796
|
/**
|
|
2780
2797
|
* Clear current search on selecting an item
|
|
2781
|
-
* @
|
|
2798
|
+
* @return boolean
|
|
2782
2799
|
* @default false
|
|
2783
2800
|
* @since 4.5.11
|
|
2784
2801
|
*/
|
|
2785
|
-
clearSearchOnSelect: boolean
|
|
2802
|
+
readonly clearSearchOnSelect: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2786
2803
|
/**
|
|
2787
2804
|
* Disables multi-select component
|
|
2788
|
-
* @
|
|
2805
|
+
* @return boolean
|
|
2789
2806
|
* @default false
|
|
2790
2807
|
*/
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
private _disabled;
|
|
2808
|
+
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2809
|
+
readonly disabled: _angular_core.WritableSignal<boolean>;
|
|
2794
2810
|
/**
|
|
2795
2811
|
* Add loading spinner and reduced opacity.
|
|
2796
|
-
* @
|
|
2812
|
+
* @return boolean
|
|
2797
2813
|
* @default false
|
|
2798
2814
|
* @since 4.5.2
|
|
2799
2815
|
*/
|
|
2800
|
-
|
|
2801
|
-
isLoading: _angular_core.WritableSignal<boolean>;
|
|
2816
|
+
readonly loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2802
2817
|
/**
|
|
2803
2818
|
* Specifies that multiple options can be selected at once
|
|
2804
|
-
* @
|
|
2819
|
+
* @returns boolean
|
|
2805
2820
|
* @default false
|
|
2806
2821
|
*/
|
|
2807
|
-
|
|
2808
|
-
get multiple(): boolean;
|
|
2809
|
-
private _multiple;
|
|
2810
|
-
/**
|
|
2811
|
-
* Hidden native select form
|
|
2812
|
-
* @type string
|
|
2813
|
-
* @default ''
|
|
2814
|
-
*/
|
|
2815
|
-
nativeFormId: string;
|
|
2816
|
-
/**
|
|
2817
|
-
* Hidden native select id
|
|
2818
|
-
* @type string
|
|
2819
|
-
* @default ''
|
|
2820
|
-
*/
|
|
2821
|
-
nativeId: string;
|
|
2822
|
-
/**
|
|
2823
|
-
* Hidden native select name
|
|
2824
|
-
* @type string
|
|
2825
|
-
* @default ''
|
|
2826
|
-
*/
|
|
2827
|
-
nativeName: string;
|
|
2822
|
+
readonly multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2828
2823
|
/**
|
|
2829
2824
|
* List of option elements
|
|
2830
2825
|
* @type IOption[]
|
|
@@ -2834,34 +2829,42 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2834
2829
|
get options(): IOption[];
|
|
2835
2830
|
/**
|
|
2836
2831
|
* Sets maxHeight of options list in px
|
|
2837
|
-
* @
|
|
2832
|
+
* @return string | number
|
|
2838
2833
|
* @default 'auto'
|
|
2839
2834
|
*/
|
|
2840
|
-
|
|
2835
|
+
readonly optionsMaxHeightInput: _angular_core.InputSignal<string | number>;
|
|
2836
|
+
readonly optionsMaxHeight: _angular_core.WritableSignal<string | number>;
|
|
2841
2837
|
/**
|
|
2842
2838
|
* Sets option style
|
|
2843
|
-
* @
|
|
2839
|
+
* @return 'checkbox' | 'text'
|
|
2844
2840
|
* @default 'checkbox'
|
|
2845
2841
|
*/
|
|
2846
|
-
|
|
2842
|
+
readonly optionsStyle: _angular_core.InputSignal<"text" | "checkbox">;
|
|
2847
2843
|
/**
|
|
2848
2844
|
* Specifies a short hint that is visible in the search input
|
|
2849
|
-
* @
|
|
2845
|
+
* @return string
|
|
2850
2846
|
* @default 'Select...'
|
|
2851
2847
|
*/
|
|
2852
|
-
placeholder: string
|
|
2848
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
2849
|
+
/**
|
|
2850
|
+
* Resets selection when options are changed
|
|
2851
|
+
* When set to true, any previously selected options will be reset whenever the options list undergoes a change.
|
|
2852
|
+
* This ensures that outdated selections are not retained when new options are provided.
|
|
2853
|
+
* @default false
|
|
2854
|
+
* */
|
|
2855
|
+
readonly resetSelectionOnOptionsChange: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2853
2856
|
/**
|
|
2854
2857
|
* Enables search input element
|
|
2855
|
-
* @
|
|
2858
|
+
* @return boolean | SearchFn | 'external'
|
|
2856
2859
|
* @default true
|
|
2857
2860
|
*/
|
|
2858
|
-
search: boolean |
|
|
2861
|
+
readonly search: _angular_core.InputSignal<boolean | SearchFn | "external">;
|
|
2859
2862
|
/**
|
|
2860
2863
|
* Sets the label for no results when filtering
|
|
2861
|
-
* @
|
|
2864
|
+
* @return string
|
|
2862
2865
|
* @default 'no items'
|
|
2863
2866
|
*/
|
|
2864
|
-
searchNoResultsLabel: string
|
|
2867
|
+
readonly searchNoResultsLabel: _angular_core.InputSignal<string>;
|
|
2865
2868
|
/**
|
|
2866
2869
|
* Sets initial search string
|
|
2867
2870
|
* @type string
|
|
@@ -2872,44 +2875,44 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2872
2875
|
private _searchValue;
|
|
2873
2876
|
/**
|
|
2874
2877
|
* Emits searchValue string for external filtering
|
|
2875
|
-
* @
|
|
2878
|
+
* @return string
|
|
2876
2879
|
*/
|
|
2877
|
-
readonly searchValueChange:
|
|
2880
|
+
readonly searchValueChange: _angular_core.OutputEmitterRef<string>;
|
|
2878
2881
|
/**
|
|
2879
2882
|
* Enables select all button
|
|
2880
|
-
* @
|
|
2883
|
+
* @return boolean
|
|
2881
2884
|
* @default true
|
|
2882
2885
|
*/
|
|
2883
|
-
selectAll: boolean
|
|
2886
|
+
readonly selectAll: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2884
2887
|
/**
|
|
2885
2888
|
* Sets the select all button label
|
|
2886
|
-
* @
|
|
2889
|
+
* @return string
|
|
2887
2890
|
* @default 'Select all options'
|
|
2888
2891
|
*/
|
|
2889
|
-
selectAllLabel: string
|
|
2892
|
+
readonly selectAllLabel: _angular_core.InputSignal<string>;
|
|
2890
2893
|
/**
|
|
2891
2894
|
* Selection type
|
|
2892
|
-
* @
|
|
2895
|
+
* @return 'counter' | 'tags' | 'text'
|
|
2893
2896
|
* @default 'tags'
|
|
2894
2897
|
*/
|
|
2895
|
-
selectionType:
|
|
2898
|
+
readonly selectionType: _angular_core.InputSignal<"text" | "counter" | "tags">;
|
|
2896
2899
|
/**
|
|
2897
2900
|
* Counter selection label value
|
|
2898
|
-
* @
|
|
2901
|
+
* @return string
|
|
2899
2902
|
* @default 'item(s) selected'
|
|
2900
2903
|
*/
|
|
2901
|
-
selectionTypeCounterText: string
|
|
2904
|
+
readonly selectionTypeCounterText: _angular_core.InputSignal<string>;
|
|
2902
2905
|
/**
|
|
2903
2906
|
* Counter selection label plural map for I18nPluralPipe
|
|
2904
|
-
* @
|
|
2907
|
+
* @return IPluralMap
|
|
2905
2908
|
* @default { '=1': 'item selected', 'other': 'items selected' }
|
|
2906
2909
|
*/
|
|
2907
|
-
selectionTypeCounterTextPluralMap
|
|
2910
|
+
readonly selectionTypeCounterTextPluralMap: _angular_core.InputSignal<IPluralMap | undefined>;
|
|
2908
2911
|
/**
|
|
2909
2912
|
* Size the component small or large.
|
|
2910
|
-
* @
|
|
2913
|
+
* @return 'sm' | 'lg' | undefined
|
|
2911
2914
|
*/
|
|
2912
|
-
size
|
|
2915
|
+
readonly size: _angular_core.InputSignal<"sm" | "lg" | undefined>;
|
|
2913
2916
|
/**
|
|
2914
2917
|
* Initial value of multi-select
|
|
2915
2918
|
* @type (TValue | TValue[])
|
|
@@ -2918,63 +2921,65 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2918
2921
|
get value(): TValue | TValue[];
|
|
2919
2922
|
/**
|
|
2920
2923
|
* Emits valueChange
|
|
2921
|
-
* @
|
|
2924
|
+
* @return TValue | TValue[]
|
|
2922
2925
|
*/
|
|
2923
|
-
readonly valueChange:
|
|
2926
|
+
readonly valueChange: _angular_core.OutputEmitterRef<TValue | TValue[]>;
|
|
2924
2927
|
/**
|
|
2925
2928
|
* Toggle visual validation feedback.
|
|
2926
|
-
* @
|
|
2929
|
+
* @return boolean | undefined
|
|
2927
2930
|
* @default undefined
|
|
2928
2931
|
*/
|
|
2929
|
-
valid
|
|
2932
|
+
readonly valid: _angular_core.InputSignal<boolean | undefined>;
|
|
2930
2933
|
/**
|
|
2931
2934
|
* Enable virtual scroller for options list.
|
|
2932
|
-
* @
|
|
2935
|
+
* @return boolean
|
|
2933
2936
|
* @default false
|
|
2934
2937
|
*/
|
|
2935
|
-
|
|
2936
|
-
get virtualScroller(): boolean;
|
|
2937
|
-
private _virtualScroller;
|
|
2938
|
+
readonly virtualScroller: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2938
2939
|
/**
|
|
2939
2940
|
* Amount of visible options, if set - overwrites optionsMaxHeight
|
|
2940
|
-
* @
|
|
2941
|
+
* @return number
|
|
2941
2942
|
* @default 8
|
|
2942
2943
|
*/
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
private _visibleItems;
|
|
2944
|
+
readonly visibleItemsInput: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
2945
|
+
readonly visibleItems: _angular_core.Signal<number>;
|
|
2946
2946
|
/**
|
|
2947
2947
|
* The size of the option item in the list (in pixels).
|
|
2948
|
-
* @
|
|
2948
|
+
* @return number
|
|
2949
2949
|
* @default 40
|
|
2950
2950
|
*/
|
|
2951
|
-
itemSize: number
|
|
2951
|
+
readonly itemSize: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
2952
2952
|
/**
|
|
2953
2953
|
* Min width of the options list (in pixels).
|
|
2954
|
-
* @
|
|
2954
|
+
* @return number
|
|
2955
2955
|
* @default 196
|
|
2956
2956
|
*/
|
|
2957
|
-
|
|
2957
|
+
readonly itemMinWidthInput: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
2958
|
+
readonly itemMinWidth: _angular_core.WritableSignal<number>;
|
|
2958
2959
|
readonly minWidth: _angular_core.WritableSignal<number>;
|
|
2959
2960
|
/**
|
|
2960
2961
|
* Toggle the visibility of the dropdown select component.
|
|
2961
2962
|
* @type boolean
|
|
2962
2963
|
* @default false
|
|
2963
2964
|
*/
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
private _visible;
|
|
2965
|
+
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2966
|
+
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
2967
2967
|
/**
|
|
2968
2968
|
* Emits visibleChange
|
|
2969
|
-
* @
|
|
2969
|
+
* @return boolean
|
|
2970
2970
|
*/
|
|
2971
|
-
readonly visibleChange:
|
|
2971
|
+
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
2972
2972
|
/**
|
|
2973
2973
|
* Optional popper Options object
|
|
2974
2974
|
* @type Partial<Options>
|
|
2975
2975
|
*/
|
|
2976
|
-
|
|
2977
|
-
|
|
2976
|
+
readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
|
|
2977
|
+
readonly popperOptions: _angular_core.Signal<{
|
|
2978
|
+
placement?: _popperjs_core.Placement | undefined;
|
|
2979
|
+
modifiers?: Partial<Modifier<any, any>>[] | undefined;
|
|
2980
|
+
strategy?: _popperjs_core.PositioningStrategy | undefined;
|
|
2981
|
+
onFirstUpdate?: (arg0: Partial<_popperjs_core.State>) => void;
|
|
2982
|
+
}>;
|
|
2978
2983
|
isDropdownVisible: boolean;
|
|
2979
2984
|
get selectedOptions(): IOption[];
|
|
2980
2985
|
get selectedOptionsText(): string;
|
|
@@ -2996,26 +3001,9 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2996
3001
|
dropdownMenu: ElementRef;
|
|
2997
3002
|
dropdown: ElementRef;
|
|
2998
3003
|
dropdownToggle: ElementRef;
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
'is-invalid': boolean;
|
|
3003
|
-
};
|
|
3004
|
-
get multiselectClasses(): {
|
|
3005
|
-
[x: string]: boolean;
|
|
3006
|
-
'form-multi-select': boolean;
|
|
3007
|
-
show: boolean;
|
|
3008
|
-
disabled: boolean;
|
|
3009
|
-
'is-valid': boolean;
|
|
3010
|
-
'is-invalid': boolean;
|
|
3011
|
-
};
|
|
3012
|
-
get multiselectSelectionClasses(): {
|
|
3013
|
-
'form-multi-select-selection': boolean;
|
|
3014
|
-
'form-multi-select-selection-tags': number | false;
|
|
3015
|
-
'form-control': boolean;
|
|
3016
|
-
'is-valid': boolean;
|
|
3017
|
-
'is-invalid': boolean;
|
|
3018
|
-
};
|
|
3004
|
+
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
3005
|
+
get multiselectClasses(): Record<string, boolean>;
|
|
3006
|
+
get multiselectSelectionClasses(): Record<string, boolean>;
|
|
3019
3007
|
private get ariaMultiSelectable();
|
|
3020
3008
|
private get ariaExpanded();
|
|
3021
3009
|
private get tabIndex();
|
|
@@ -3029,7 +3017,6 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3029
3017
|
get subtreeFocused(): boolean;
|
|
3030
3018
|
set subtreeFocused(focused: boolean);
|
|
3031
3019
|
private _subtreeFocused;
|
|
3032
|
-
private nativeSelectRef;
|
|
3033
3020
|
focusOrigin(origin: FocusOrigin): boolean;
|
|
3034
3021
|
ngOnInit(): void;
|
|
3035
3022
|
ngOnDestroy(): void;
|
|
@@ -3046,8 +3033,6 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3046
3033
|
handleTagRemove(value: any): void;
|
|
3047
3034
|
setFocus(origin?: FocusOrigin, methodName?: string): void;
|
|
3048
3035
|
filterOptions(value: string): void;
|
|
3049
|
-
createNativeSelect(): void;
|
|
3050
|
-
updateNativeSelect(): void;
|
|
3051
3036
|
inputElementSize(): void;
|
|
3052
3037
|
handleSearchKeyDown($event: KeyboardEvent): void;
|
|
3053
3038
|
private setFocusMonitor;
|
|
@@ -3064,15 +3049,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3064
3049
|
updateActiveItem<TItem extends MultiSelectOptionComponent & FocusableOption>(item: TItem): void;
|
|
3065
3050
|
handleIndicatorClick($event: MouseEvent): void;
|
|
3066
3051
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiSelectComponent<any>, never>;
|
|
3067
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectComponent<any>, "c-multi-select", ["cMultiSelect"], { "allowCreateOptions": { "alias": "allowCreateOptions"; "required": false; }; "cleaner": { "alias": "cleaner"; "required": false; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; }; "
|
|
3068
|
-
static ngAcceptInputType_allowCreateOptions: unknown;
|
|
3069
|
-
static ngAcceptInputType_clearSearchOnSelect: unknown;
|
|
3070
|
-
static ngAcceptInputType_disabled: unknown;
|
|
3071
|
-
static ngAcceptInputType_loading: unknown;
|
|
3072
|
-
static ngAcceptInputType_multiple: unknown;
|
|
3073
|
-
static ngAcceptInputType_virtualScroller: unknown;
|
|
3074
|
-
static ngAcceptInputType_visibleItems: unknown;
|
|
3075
|
-
static ngAcceptInputType_visible: unknown;
|
|
3052
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectComponent<any>, "c-multi-select", ["cMultiSelect"], { "allowCreateOptions": { "alias": "allowCreateOptions"; "required": false; "isSignal": true; }; "cleaner": { "alias": "cleaner"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; }; "optionsMaxHeightInput": { "alias": "optionsMaxHeight"; "required": false; "isSignal": true; }; "optionsStyle": { "alias": "optionsStyle"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "resetSelectionOnOptionsChange": { "alias": "resetSelectionOnOptionsChange"; "required": false; "isSignal": true; }; "search": { "alias": "search"; "required": false; "isSignal": true; }; "searchNoResultsLabel": { "alias": "searchNoResultsLabel"; "required": false; "isSignal": true; }; "searchValue": { "alias": "searchValue"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "selectAllLabel": { "alias": "selectAllLabel"; "required": false; "isSignal": true; }; "selectionType": { "alias": "selectionType"; "required": false; "isSignal": true; }; "selectionTypeCounterText": { "alias": "selectionTypeCounterText"; "required": false; "isSignal": true; }; "selectionTypeCounterTextPluralMap": { "alias": "selectionTypeCounterTextPluralMap"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "virtualScroller": { "alias": "virtualScroller"; "required": false; "isSignal": true; }; "visibleItemsInput": { "alias": "visibleItems"; "required": false; "isSignal": true; }; "itemSize": { "alias": "itemSize"; "required": false; "isSignal": true; }; "itemMinWidthInput": { "alias": "itemMinWidth"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; "popperOptionsInput": { "alias": "popperOptions"; "required": false; "isSignal": true; }; }, { "searchValueChange": "searchValueChange"; "valueChange": "valueChange"; "visibleChange": "visibleChange"; }, ["multiSelectOptionsContent", "contentTemplates"], ["*"], true, never>;
|
|
3076
3053
|
}
|
|
3077
3054
|
|
|
3078
3055
|
declare class MultiSelectModule {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.10",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
},
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@angular/animations": "^20.
|
|
26
|
-
"@angular/cdk": "^20.
|
|
27
|
-
"@angular/common": "^20.
|
|
28
|
-
"@angular/core": "^20.
|
|
29
|
-
"@angular/forms": "^20.
|
|
30
|
-
"@angular/router": "^20.
|
|
25
|
+
"@angular/animations": "^20.2.0",
|
|
26
|
+
"@angular/cdk": "^20.2.0",
|
|
27
|
+
"@angular/common": "^20.2.0",
|
|
28
|
+
"@angular/core": "^20.2.0",
|
|
29
|
+
"@angular/forms": "^20.2.0",
|
|
30
|
+
"@angular/router": "^20.2.0",
|
|
31
31
|
"@coreui/coreui-pro": "~5.18.0",
|
|
32
|
-
"@coreui/icons-angular": "~5.5.
|
|
32
|
+
"@coreui/icons-angular": "~5.5.10",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|