@coreui/angular-pro 5.5.17 → 5.5.19
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 +1132 -1126
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/package.json +4 -4
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,
|
|
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 * as _coreui_angular_pro from '@coreui/angular-pro';
|
|
5
5
|
import { BooleanInput as BooleanInput$1, NumberInput as NumberInput$1 } from '@angular/cdk/coercion';
|
|
6
6
|
import { ControlValueAccessor, FormGroup, FormControl } from '@angular/forms';
|
|
@@ -193,9 +193,8 @@ type Search = 'external' | 'global' | {
|
|
|
193
193
|
global?: boolean;
|
|
194
194
|
};
|
|
195
195
|
|
|
196
|
-
declare class AutocompleteDirective implements
|
|
196
|
+
declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
197
197
|
#private;
|
|
198
|
-
ngAfterViewInit(): void;
|
|
199
198
|
writeValue(value: string): void;
|
|
200
199
|
registerOnChange(fn: any): void;
|
|
201
200
|
registerOnTouched(fn: any): void;
|
|
@@ -439,9 +438,10 @@ declare class AutocompleteDirective implements AfterViewInit, OnInit, ControlVal
|
|
|
439
438
|
ngOnInit(): void;
|
|
440
439
|
protected onBlur($event?: FocusEvent): void;
|
|
441
440
|
readonly filteredOptions: _angular_core.Signal<_coreui_angular_pro.IAutocompleteOptionNorm[]>;
|
|
442
|
-
protected handleSearch(value: string): void;
|
|
443
|
-
|
|
441
|
+
protected handleSearch(value: string | undefined): void;
|
|
442
|
+
handleClear(): void;
|
|
444
443
|
protected handleSelect(option?: IAutocompleteOption | null): void;
|
|
444
|
+
protected dispatchInputEvent(value: string): void;
|
|
445
445
|
protected handleDropdownHide(): void;
|
|
446
446
|
protected handleDropdownShow(): void;
|
|
447
447
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteDirective, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.19",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@angular/animations": "^20.3.0",
|
|
26
|
-
"@angular/cdk": "^20.2.
|
|
26
|
+
"@angular/cdk": "^20.2.10",
|
|
27
27
|
"@angular/common": "^20.3.0",
|
|
28
28
|
"@angular/core": "^20.3.0",
|
|
29
29
|
"@angular/forms": "^20.3.0",
|
|
30
30
|
"@angular/router": "^20.3.0",
|
|
31
|
-
"@coreui/coreui-pro": "^5.21.
|
|
32
|
-
"@coreui/icons-angular": "~5.5.
|
|
31
|
+
"@coreui/coreui-pro": "^5.21.1",
|
|
32
|
+
"@coreui/icons-angular": "~5.5.19",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|