@coreui/angular-pro 5.5.10 → 5.5.11
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 +949 -970
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/index.d.ts +6 -5
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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, Renderer2,
|
|
3
|
+
import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ModelSignal, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, WritableSignal, OnChanges, SimpleChanges, Renderer2, EventEmitter, ComponentRef, Injector, NgModuleRef } from '@angular/core';
|
|
4
4
|
import { AnimationEvent } from '@angular/animations';
|
|
5
5
|
import * as rxjs from 'rxjs';
|
|
6
6
|
import { Observable, Subscription, Subject, BehaviorSubject } from 'rxjs';
|
|
@@ -2610,7 +2610,8 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
2610
2610
|
* @return ('checkbox' | 'text')
|
|
2611
2611
|
* @default 'checkbox'
|
|
2612
2612
|
*/
|
|
2613
|
-
readonly
|
|
2613
|
+
readonly optionsStyleInput: _angular_core.InputSignal<string | undefined>;
|
|
2614
|
+
readonly optionsStyle: WritableSignal<string>;
|
|
2614
2615
|
/**
|
|
2615
2616
|
* Option label
|
|
2616
2617
|
* @type string
|
|
@@ -2675,7 +2676,7 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
2675
2676
|
private setSubscriptions;
|
|
2676
2677
|
isSelected(value?: string | number): boolean;
|
|
2677
2678
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiSelectOptionComponent, never>;
|
|
2678
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectOptionComponent, "c-multi-select-option", ["cMultiSelectOption"], { "
|
|
2679
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectOptionComponent, "c-multi-select-option", ["cMultiSelectOption"], { "optionsStyleInput": { "alias": "optionsStyle"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; }; "text": { "alias": "text"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; "active": { "alias": "active"; "required": false; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, { "selectedChange": "selectedChange"; "focusChange": "focusChange"; }, never, ["*"], true, never>;
|
|
2679
2680
|
static ngAcceptInputType_visible: unknown;
|
|
2680
2681
|
static ngAcceptInputType_disabled: unknown;
|
|
2681
2682
|
static ngAcceptInputType_active: unknown;
|
|
@@ -2723,7 +2724,7 @@ interface IOption {
|
|
|
2723
2724
|
|
|
2724
2725
|
declare class MultiSelectService {
|
|
2725
2726
|
#private;
|
|
2726
|
-
optionsStyle:
|
|
2727
|
+
readonly optionsStyle: _angular_core.WritableSignal<"text" | "checkbox">;
|
|
2727
2728
|
selectionModel: SelectionModel<any>;
|
|
2728
2729
|
readonly selectionModelChanged$: Subject<SelectionChange<any>>;
|
|
2729
2730
|
setSelectionModel(multiple?: boolean, initiallySelectedValues?: string[]): void;
|
|
@@ -2997,7 +2998,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
2997
2998
|
};
|
|
2998
2999
|
contentTemplates: QueryList<TemplateIdDirective>;
|
|
2999
3000
|
private focusKeyManager;
|
|
3000
|
-
inputElement: ElementRef
|
|
3001
|
+
inputElement: ElementRef<HTMLInputElement>;
|
|
3001
3002
|
dropdownMenu: ElementRef;
|
|
3002
3003
|
dropdown: ElementRef;
|
|
3003
3004
|
dropdownToggle: ElementRef;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.11",
|
|
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.2.0",
|
|
30
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.11",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|