@coreui/angular-pro 5.5.8 → 5.5.9
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/fesm2022/coreui-angular-pro.mjs +1136 -1274
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/index.d.ts +110 -141
- package/package.json +2 -2
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,56 @@ 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_selectAll: BooleanInput$1;
|
|
2761
|
+
static ngAcceptInputType_virtualScroller: BooleanInput$1;
|
|
2762
|
+
static ngAcceptInputType_visibleInput: BooleanInput$1;
|
|
2745
2763
|
private readonly elementRef;
|
|
2746
2764
|
private readonly renderer;
|
|
2747
2765
|
private readonly ngZone;
|
|
2748
2766
|
private readonly changeDetectorRef;
|
|
2749
|
-
private readonly viewContainerRef;
|
|
2750
2767
|
private readonly focusMonitor;
|
|
2751
|
-
|
|
2768
|
+
protected readonly multiSelectService: MultiSelectService;
|
|
2752
2769
|
private readonly iterableDiffers;
|
|
2753
2770
|
constructor();
|
|
2754
2771
|
private readonly differ;
|
|
2755
|
-
readonly optionsArray$: Observable<IOption[]>;
|
|
2756
2772
|
readonly userOptionsArray$: BehaviorSubject<IOption[]>;
|
|
2757
|
-
readonly
|
|
2773
|
+
readonly optionTags: _angular_core.WritableSignal<IOption[]>;
|
|
2758
2774
|
readonly optionsSelected: Map<any, IOption>;
|
|
2759
2775
|
readonly value$: BehaviorSubject<TValue[]>;
|
|
2760
2776
|
onChange: (value: any) => void;
|
|
@@ -2765,66 +2781,44 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2765
2781
|
setDisabledState(isDisabled: boolean): void;
|
|
2766
2782
|
/**
|
|
2767
2783
|
* Allow users to create options if they are not in the list of options.
|
|
2768
|
-
* @
|
|
2784
|
+
* @return boolean
|
|
2769
2785
|
* @default false
|
|
2770
2786
|
* @since 4.5.11
|
|
2771
2787
|
*/
|
|
2772
|
-
allowCreateOptions: boolean
|
|
2788
|
+
readonly allowCreateOptions: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2773
2789
|
/**
|
|
2774
2790
|
* Enables selection cleaner element
|
|
2775
|
-
* @
|
|
2791
|
+
* @return boolean
|
|
2776
2792
|
* @default true | 'active'
|
|
2777
2793
|
*/
|
|
2778
|
-
cleaner: boolean |
|
|
2794
|
+
readonly cleaner: _angular_core.InputSignal<boolean | "active">;
|
|
2779
2795
|
/**
|
|
2780
2796
|
* Clear current search on selecting an item
|
|
2781
|
-
* @
|
|
2797
|
+
* @return boolean
|
|
2782
2798
|
* @default false
|
|
2783
2799
|
* @since 4.5.11
|
|
2784
2800
|
*/
|
|
2785
|
-
clearSearchOnSelect: boolean
|
|
2801
|
+
readonly clearSearchOnSelect: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2786
2802
|
/**
|
|
2787
2803
|
* Disables multi-select component
|
|
2788
|
-
* @
|
|
2804
|
+
* @return boolean
|
|
2789
2805
|
* @default false
|
|
2790
2806
|
*/
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
private _disabled;
|
|
2807
|
+
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2808
|
+
readonly disabled: _angular_core.WritableSignal<boolean>;
|
|
2794
2809
|
/**
|
|
2795
2810
|
* Add loading spinner and reduced opacity.
|
|
2796
|
-
* @
|
|
2811
|
+
* @return boolean
|
|
2797
2812
|
* @default false
|
|
2798
2813
|
* @since 4.5.2
|
|
2799
2814
|
*/
|
|
2800
|
-
|
|
2801
|
-
isLoading: _angular_core.WritableSignal<boolean>;
|
|
2815
|
+
readonly loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2802
2816
|
/**
|
|
2803
2817
|
* Specifies that multiple options can be selected at once
|
|
2804
|
-
* @
|
|
2818
|
+
* @returns boolean
|
|
2805
2819
|
* @default false
|
|
2806
2820
|
*/
|
|
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;
|
|
2821
|
+
readonly multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2828
2822
|
/**
|
|
2829
2823
|
* List of option elements
|
|
2830
2824
|
* @type IOption[]
|
|
@@ -2834,34 +2828,35 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2834
2828
|
get options(): IOption[];
|
|
2835
2829
|
/**
|
|
2836
2830
|
* Sets maxHeight of options list in px
|
|
2837
|
-
* @
|
|
2831
|
+
* @return string | number
|
|
2838
2832
|
* @default 'auto'
|
|
2839
2833
|
*/
|
|
2840
|
-
|
|
2834
|
+
readonly optionsMaxHeightInput: _angular_core.InputSignal<string | number>;
|
|
2835
|
+
readonly optionsMaxHeight: _angular_core.WritableSignal<string | number>;
|
|
2841
2836
|
/**
|
|
2842
2837
|
* Sets option style
|
|
2843
|
-
* @
|
|
2838
|
+
* @return 'checkbox' | 'text'
|
|
2844
2839
|
* @default 'checkbox'
|
|
2845
2840
|
*/
|
|
2846
|
-
|
|
2841
|
+
readonly optionsStyle: _angular_core.InputSignal<"text" | "checkbox">;
|
|
2847
2842
|
/**
|
|
2848
2843
|
* Specifies a short hint that is visible in the search input
|
|
2849
|
-
* @
|
|
2844
|
+
* @return string
|
|
2850
2845
|
* @default 'Select...'
|
|
2851
2846
|
*/
|
|
2852
|
-
placeholder: string
|
|
2847
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
2853
2848
|
/**
|
|
2854
2849
|
* Enables search input element
|
|
2855
|
-
* @
|
|
2850
|
+
* @return boolean | SearchFn | 'external'
|
|
2856
2851
|
* @default true
|
|
2857
2852
|
*/
|
|
2858
|
-
search: boolean |
|
|
2853
|
+
readonly search: _angular_core.InputSignal<boolean | SearchFn | "external">;
|
|
2859
2854
|
/**
|
|
2860
2855
|
* Sets the label for no results when filtering
|
|
2861
|
-
* @
|
|
2856
|
+
* @return string
|
|
2862
2857
|
* @default 'no items'
|
|
2863
2858
|
*/
|
|
2864
|
-
searchNoResultsLabel: string
|
|
2859
|
+
readonly searchNoResultsLabel: _angular_core.InputSignal<string>;
|
|
2865
2860
|
/**
|
|
2866
2861
|
* Sets initial search string
|
|
2867
2862
|
* @type string
|
|
@@ -2872,44 +2867,44 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2872
2867
|
private _searchValue;
|
|
2873
2868
|
/**
|
|
2874
2869
|
* Emits searchValue string for external filtering
|
|
2875
|
-
* @
|
|
2870
|
+
* @return string
|
|
2876
2871
|
*/
|
|
2877
|
-
readonly searchValueChange:
|
|
2872
|
+
readonly searchValueChange: _angular_core.OutputEmitterRef<string>;
|
|
2878
2873
|
/**
|
|
2879
2874
|
* Enables select all button
|
|
2880
|
-
* @
|
|
2875
|
+
* @return boolean
|
|
2881
2876
|
* @default true
|
|
2882
2877
|
*/
|
|
2883
|
-
selectAll: boolean
|
|
2878
|
+
readonly selectAll: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2884
2879
|
/**
|
|
2885
2880
|
* Sets the select all button label
|
|
2886
|
-
* @
|
|
2881
|
+
* @return string
|
|
2887
2882
|
* @default 'Select all options'
|
|
2888
2883
|
*/
|
|
2889
|
-
selectAllLabel: string
|
|
2884
|
+
readonly selectAllLabel: _angular_core.InputSignal<string>;
|
|
2890
2885
|
/**
|
|
2891
2886
|
* Selection type
|
|
2892
|
-
* @
|
|
2887
|
+
* @return 'counter' | 'tags' | 'text'
|
|
2893
2888
|
* @default 'tags'
|
|
2894
2889
|
*/
|
|
2895
|
-
selectionType:
|
|
2890
|
+
readonly selectionType: _angular_core.InputSignal<"text" | "counter" | "tags">;
|
|
2896
2891
|
/**
|
|
2897
2892
|
* Counter selection label value
|
|
2898
|
-
* @
|
|
2893
|
+
* @return string
|
|
2899
2894
|
* @default 'item(s) selected'
|
|
2900
2895
|
*/
|
|
2901
|
-
selectionTypeCounterText: string
|
|
2896
|
+
readonly selectionTypeCounterText: _angular_core.InputSignal<string>;
|
|
2902
2897
|
/**
|
|
2903
2898
|
* Counter selection label plural map for I18nPluralPipe
|
|
2904
|
-
* @
|
|
2899
|
+
* @return IPluralMap
|
|
2905
2900
|
* @default { '=1': 'item selected', 'other': 'items selected' }
|
|
2906
2901
|
*/
|
|
2907
|
-
selectionTypeCounterTextPluralMap
|
|
2902
|
+
readonly selectionTypeCounterTextPluralMap: _angular_core.InputSignal<IPluralMap | undefined>;
|
|
2908
2903
|
/**
|
|
2909
2904
|
* Size the component small or large.
|
|
2910
|
-
* @
|
|
2905
|
+
* @return 'sm' | 'lg' | undefined
|
|
2911
2906
|
*/
|
|
2912
|
-
size
|
|
2907
|
+
readonly size: _angular_core.InputSignal<"sm" | "lg" | undefined>;
|
|
2913
2908
|
/**
|
|
2914
2909
|
* Initial value of multi-select
|
|
2915
2910
|
* @type (TValue | TValue[])
|
|
@@ -2918,63 +2913,65 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2918
2913
|
get value(): TValue | TValue[];
|
|
2919
2914
|
/**
|
|
2920
2915
|
* Emits valueChange
|
|
2921
|
-
* @
|
|
2916
|
+
* @return TValue | TValue[]
|
|
2922
2917
|
*/
|
|
2923
|
-
readonly valueChange:
|
|
2918
|
+
readonly valueChange: _angular_core.OutputEmitterRef<TValue | TValue[]>;
|
|
2924
2919
|
/**
|
|
2925
2920
|
* Toggle visual validation feedback.
|
|
2926
|
-
* @
|
|
2921
|
+
* @return boolean | undefined
|
|
2927
2922
|
* @default undefined
|
|
2928
2923
|
*/
|
|
2929
|
-
valid
|
|
2924
|
+
readonly valid: _angular_core.InputSignal<boolean | undefined>;
|
|
2930
2925
|
/**
|
|
2931
2926
|
* Enable virtual scroller for options list.
|
|
2932
|
-
* @
|
|
2927
|
+
* @return boolean
|
|
2933
2928
|
* @default false
|
|
2934
2929
|
*/
|
|
2935
|
-
|
|
2936
|
-
get virtualScroller(): boolean;
|
|
2937
|
-
private _virtualScroller;
|
|
2930
|
+
readonly virtualScroller: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2938
2931
|
/**
|
|
2939
2932
|
* Amount of visible options, if set - overwrites optionsMaxHeight
|
|
2940
|
-
* @
|
|
2933
|
+
* @return number
|
|
2941
2934
|
* @default 8
|
|
2942
2935
|
*/
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
private _visibleItems;
|
|
2936
|
+
readonly visibleItemsInput: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
2937
|
+
readonly visibleItems: _angular_core.Signal<number>;
|
|
2946
2938
|
/**
|
|
2947
2939
|
* The size of the option item in the list (in pixels).
|
|
2948
|
-
* @
|
|
2940
|
+
* @return number
|
|
2949
2941
|
* @default 40
|
|
2950
2942
|
*/
|
|
2951
|
-
itemSize: number
|
|
2943
|
+
readonly itemSize: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
2952
2944
|
/**
|
|
2953
2945
|
* Min width of the options list (in pixels).
|
|
2954
|
-
* @
|
|
2946
|
+
* @return number
|
|
2955
2947
|
* @default 196
|
|
2956
2948
|
*/
|
|
2957
|
-
|
|
2949
|
+
readonly itemMinWidthInput: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
2950
|
+
readonly itemMinWidth: _angular_core.WritableSignal<number>;
|
|
2958
2951
|
readonly minWidth: _angular_core.WritableSignal<number>;
|
|
2959
2952
|
/**
|
|
2960
2953
|
* Toggle the visibility of the dropdown select component.
|
|
2961
2954
|
* @type boolean
|
|
2962
2955
|
* @default false
|
|
2963
2956
|
*/
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
private _visible;
|
|
2957
|
+
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2958
|
+
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
2967
2959
|
/**
|
|
2968
2960
|
* Emits visibleChange
|
|
2969
|
-
* @
|
|
2961
|
+
* @return boolean
|
|
2970
2962
|
*/
|
|
2971
|
-
readonly visibleChange:
|
|
2963
|
+
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
2972
2964
|
/**
|
|
2973
2965
|
* Optional popper Options object
|
|
2974
2966
|
* @type Partial<Options>
|
|
2975
2967
|
*/
|
|
2976
|
-
|
|
2977
|
-
|
|
2968
|
+
readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
|
|
2969
|
+
readonly popperOptions: _angular_core.Signal<{
|
|
2970
|
+
placement?: _popperjs_core.Placement | undefined;
|
|
2971
|
+
modifiers?: Partial<Modifier<any, any>>[] | undefined;
|
|
2972
|
+
strategy?: _popperjs_core.PositioningStrategy | undefined;
|
|
2973
|
+
onFirstUpdate?: (arg0: Partial<_popperjs_core.State>) => void;
|
|
2974
|
+
}>;
|
|
2978
2975
|
isDropdownVisible: boolean;
|
|
2979
2976
|
get selectedOptions(): IOption[];
|
|
2980
2977
|
get selectedOptionsText(): string;
|
|
@@ -2996,26 +2993,9 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2996
2993
|
dropdownMenu: ElementRef;
|
|
2997
2994
|
dropdown: ElementRef;
|
|
2998
2995
|
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
|
-
};
|
|
2996
|
+
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
2997
|
+
get multiselectClasses(): Record<string, boolean>;
|
|
2998
|
+
get multiselectSelectionClasses(): Record<string, boolean>;
|
|
3019
2999
|
private get ariaMultiSelectable();
|
|
3020
3000
|
private get ariaExpanded();
|
|
3021
3001
|
private get tabIndex();
|
|
@@ -3029,7 +3009,6 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3029
3009
|
get subtreeFocused(): boolean;
|
|
3030
3010
|
set subtreeFocused(focused: boolean);
|
|
3031
3011
|
private _subtreeFocused;
|
|
3032
|
-
private nativeSelectRef;
|
|
3033
3012
|
focusOrigin(origin: FocusOrigin): boolean;
|
|
3034
3013
|
ngOnInit(): void;
|
|
3035
3014
|
ngOnDestroy(): void;
|
|
@@ -3046,8 +3025,6 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3046
3025
|
handleTagRemove(value: any): void;
|
|
3047
3026
|
setFocus(origin?: FocusOrigin, methodName?: string): void;
|
|
3048
3027
|
filterOptions(value: string): void;
|
|
3049
|
-
createNativeSelect(): void;
|
|
3050
|
-
updateNativeSelect(): void;
|
|
3051
3028
|
inputElementSize(): void;
|
|
3052
3029
|
handleSearchKeyDown($event: KeyboardEvent): void;
|
|
3053
3030
|
private setFocusMonitor;
|
|
@@ -3064,15 +3041,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3064
3041
|
updateActiveItem<TItem extends MultiSelectOptionComponent & FocusableOption>(item: TItem): void;
|
|
3065
3042
|
handleIndicatorClick($event: MouseEvent): void;
|
|
3066
3043
|
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;
|
|
3044
|
+
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; }; "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
3045
|
}
|
|
3077
3046
|
|
|
3078
3047
|
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.9",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@angular/forms": "^20.1.0",
|
|
30
30
|
"@angular/router": "^20.1.0",
|
|
31
31
|
"@coreui/coreui-pro": "~5.18.0",
|
|
32
|
-
"@coreui/icons-angular": "~5.5.
|
|
32
|
+
"@coreui/icons-angular": "~5.5.9",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|