@coreui/angular-pro 5.7.10 → 5.7.12
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 +986 -1006
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/package.json +9 -9
- package/types/coreui-angular-pro.d.ts +16 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.12",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2026 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
},
|
|
24
24
|
"sideEffects": false,
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@angular/animations": "^22.
|
|
27
|
-
"@angular/aria": "^22.
|
|
28
|
-
"@angular/cdk": "^22.
|
|
29
|
-
"@angular/common": "^22.
|
|
30
|
-
"@angular/core": "^22.
|
|
31
|
-
"@angular/forms": "^22.
|
|
32
|
-
"@angular/router": "^22.
|
|
26
|
+
"@angular/animations": "^22.1.0",
|
|
27
|
+
"@angular/aria": "^22.1.0",
|
|
28
|
+
"@angular/cdk": "^22.1.0",
|
|
29
|
+
"@angular/common": "^22.1.0",
|
|
30
|
+
"@angular/core": "^22.1.0",
|
|
31
|
+
"@angular/forms": "^22.1.0",
|
|
32
|
+
"@angular/router": "^22.1.0",
|
|
33
33
|
"@coreui/coreui-pro": "^5.27.0",
|
|
34
|
-
"@coreui/icons-angular": "~5.7.
|
|
34
|
+
"@coreui/icons-angular": "~5.7.12",
|
|
35
35
|
"rxjs": "^7.8.2"
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
@@ -1,18 +1,18 @@
|
|
|
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, WritableSignal, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, OnChanges, SimpleChanges, Renderer2, ComponentRef, Injector, NgModuleRef, DestroyRef
|
|
3
|
+
import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, WritableSignal, AnimationCallbackEvent, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, OnChanges, SimpleChanges, Renderer2, ComponentRef, Injector, NgModuleRef, DestroyRef } 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';
|
|
7
7
|
import * as _popperjs_core from '@popperjs/core';
|
|
8
8
|
import { Options, Placement, Modifier } from '@popperjs/core';
|
|
9
|
-
import { AnimationEvent } from '@angular/animations';
|
|
10
9
|
import * as rxjs from 'rxjs';
|
|
11
10
|
import { Observable, Subscription, Subject, BehaviorSubject } from 'rxjs';
|
|
12
11
|
import { FocusableOption, FocusMonitor, FocusOrigin } from '@angular/cdk/a11y';
|
|
13
12
|
import * as node_modules_rxjs_dist_types from 'node_modules/rxjs/dist/types';
|
|
14
13
|
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
15
14
|
import { SelectionModel, SelectionChange } from '@angular/cdk/collections';
|
|
15
|
+
import { AnimationEvent } from '@angular/animations';
|
|
16
16
|
|
|
17
17
|
declare type BooleanInput = string | boolean | null | undefined;
|
|
18
18
|
declare type NumberInput = string | number | null | undefined;
|
|
@@ -488,7 +488,6 @@ declare class AlertLinkDirective {
|
|
|
488
488
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AlertLinkDirective, "[cAlertLink]", never, {}, {}, never, never, true, never>;
|
|
489
489
|
}
|
|
490
490
|
|
|
491
|
-
type AnimateType = 'hide' | 'show';
|
|
492
491
|
declare class AlertComponent {
|
|
493
492
|
#private;
|
|
494
493
|
/**
|
|
@@ -509,39 +508,36 @@ declare class AlertComponent {
|
|
|
509
508
|
*/
|
|
510
509
|
readonly variant: _angular_core.InputSignal<"solid" | undefined>;
|
|
511
510
|
/**
|
|
512
|
-
* Optionally adds a close button to alert and allow it to self
|
|
511
|
+
* Optionally adds a close button to the alert and allow it to self-dismiss.
|
|
513
512
|
* @return boolean
|
|
514
513
|
* @default false
|
|
515
514
|
*/
|
|
516
|
-
readonly
|
|
517
|
-
set dismissible(value: boolean);
|
|
518
|
-
get dismissible(): boolean;
|
|
515
|
+
readonly dismissible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
519
516
|
/**
|
|
520
517
|
* Adds animation for dismissible alert.
|
|
521
518
|
* @return boolean
|
|
522
519
|
*/
|
|
523
520
|
readonly fade: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
524
521
|
/**
|
|
525
|
-
* Toggle the visibility of alert component.
|
|
522
|
+
* Toggle the visibility of the alert component.
|
|
526
523
|
* @return boolean
|
|
527
524
|
*/
|
|
528
525
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
529
|
-
|
|
530
|
-
get visible(): boolean;
|
|
531
|
-
readonly hide: _angular_core.WritableSignal<boolean>;
|
|
526
|
+
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
532
527
|
/**
|
|
533
|
-
* Event triggered on the alert
|
|
528
|
+
* Event triggered on the alert visibility change.
|
|
529
|
+
* @return boolean
|
|
534
530
|
*/
|
|
535
531
|
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
536
|
-
readonly
|
|
537
|
-
readonly
|
|
538
|
-
|
|
539
|
-
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
532
|
+
protected readonly hide: _angular_core.WritableSignal<boolean>;
|
|
533
|
+
protected readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
534
|
+
protected readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
|
|
535
|
+
protected readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
536
|
+
protected onTransitionStart($event: TransitionEvent): void;
|
|
537
|
+
protected onTransitionEnd($event: TransitionEvent): void;
|
|
538
|
+
protected handleLeaving($event: AnimationCallbackEvent): void;
|
|
543
539
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
544
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertComponent, "c-alert", ["cAlert"], { "color": { "alias": "color"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "
|
|
540
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertComponent, "c-alert", ["cAlert"], { "color": { "alias": "color"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "dismissible": { "alias": "dismissible"; "required": false; "isSignal": true; }; "fade": { "alias": "fade"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, ["contentTemplates"], ["*"], true, never>;
|
|
545
541
|
}
|
|
546
542
|
|
|
547
543
|
declare class AlertModule {
|