@coreui/angular-pro 5.7.13 → 5.7.14
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.14",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2026 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@angular/forms": "^22.1.0",
|
|
32
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.14",
|
|
35
35
|
"rxjs": "^7.8.2"
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
@@ -1533,7 +1533,7 @@ declare class CarouselComponent implements OnInit, OnDestroy, AfterContentInit {
|
|
|
1533
1533
|
*/
|
|
1534
1534
|
readonly touch: _angular_core.InputSignal<boolean>;
|
|
1535
1535
|
/**
|
|
1536
|
-
* Set type of the transition.
|
|
1536
|
+
* Set the type of the transition.
|
|
1537
1537
|
* @return {'slide' | 'crossfade'}
|
|
1538
1538
|
* @default 'slide'
|
|
1539
1539
|
*/
|
|
@@ -1561,7 +1561,7 @@ declare class CarouselComponent implements OnInit, OnDestroy, AfterContentInit {
|
|
|
1561
1561
|
get visible(): boolean;
|
|
1562
1562
|
setTimer(): void;
|
|
1563
1563
|
resetTimer(): void;
|
|
1564
|
-
private
|
|
1564
|
+
private carouselServiceSubscribe;
|
|
1565
1565
|
private intersectionServiceSubscribe;
|
|
1566
1566
|
private swipeSubscribe;
|
|
1567
1567
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CarouselComponent, never>;
|
|
@@ -1611,7 +1611,7 @@ declare class CarouselIndicatorsComponent implements OnInit {
|
|
|
1611
1611
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CarouselIndicatorsComponent, "c-carousel-indicators", ["cCarouselIndicators"], {}, {}, ["contentTemplates"], never, true, never>;
|
|
1612
1612
|
}
|
|
1613
1613
|
|
|
1614
|
-
declare class CarouselItemComponent {
|
|
1614
|
+
declare class CarouselItemComponent implements OnInit {
|
|
1615
1615
|
#private;
|
|
1616
1616
|
index?: number;
|
|
1617
1617
|
/**
|
|
@@ -1620,7 +1620,7 @@ declare class CarouselItemComponent {
|
|
|
1620
1620
|
readonly activeInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1621
1621
|
readonly active: _angular_core.WritableSignal<boolean>;
|
|
1622
1622
|
/**
|
|
1623
|
-
* Time delay before cycling to next item. If -1, uses carousel interval value.
|
|
1623
|
+
* Time delay before cycling to the next item. If -1, uses carousel interval value.
|
|
1624
1624
|
* @return number
|
|
1625
1625
|
* @default -1
|
|
1626
1626
|
*/
|
|
@@ -1632,6 +1632,16 @@ declare class CarouselItemComponent {
|
|
|
1632
1632
|
*/
|
|
1633
1633
|
readonly role: _angular_core.InputSignal<string>;
|
|
1634
1634
|
constructor();
|
|
1635
|
+
ngOnInit(): void;
|
|
1636
|
+
protected readonly hostClasses: _angular_core.Signal<{
|
|
1637
|
+
[x: string]: boolean;
|
|
1638
|
+
active: boolean;
|
|
1639
|
+
'd-none': boolean;
|
|
1640
|
+
}>;
|
|
1641
|
+
readonly prevActive: _angular_core.WritableSignal<boolean>;
|
|
1642
|
+
readonly activeClass: _angular_core.WritableSignal<boolean>;
|
|
1643
|
+
readonly orderClassName: _angular_core.WritableSignal<string>;
|
|
1644
|
+
readonly directionClassName: _angular_core.WritableSignal<string>;
|
|
1635
1645
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CarouselItemComponent, never>;
|
|
1636
1646
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CarouselItemComponent, "c-carousel-item", ["cCarouselItem"], { "activeInput": { "alias": "active"; "required": false; "isSignal": true; }; "interval": { "alias": "interval"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1637
1647
|
}
|
|
@@ -6478,54 +6488,54 @@ type VisibleChangeEvent = {
|
|
|
6478
6488
|
visible: boolean;
|
|
6479
6489
|
};
|
|
6480
6490
|
declare class TabPanelComponent {
|
|
6481
|
-
|
|
6491
|
+
#private;
|
|
6482
6492
|
/**
|
|
6483
6493
|
* aria-labelledby attribute
|
|
6484
|
-
* @
|
|
6494
|
+
* @return string
|
|
6485
6495
|
* @default undefined
|
|
6486
6496
|
*/
|
|
6487
6497
|
readonly ariaLabelledBy: _angular_core.InputSignal<string | undefined>;
|
|
6488
6498
|
/**
|
|
6489
6499
|
* Element id attribute
|
|
6490
|
-
* @
|
|
6500
|
+
* @return string
|
|
6491
6501
|
* @default undefined
|
|
6492
6502
|
*/
|
|
6493
6503
|
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
6494
6504
|
/**
|
|
6495
6505
|
* Item key.
|
|
6496
|
-
* @
|
|
6506
|
+
* @return string | number
|
|
6497
6507
|
* @required
|
|
6498
6508
|
*/
|
|
6499
6509
|
readonly itemKey: _angular_core.InputSignal<string | number>;
|
|
6500
6510
|
/**
|
|
6501
6511
|
* Element role.
|
|
6502
|
-
* @
|
|
6512
|
+
* @return string
|
|
6503
6513
|
* @default 'tabpanel'
|
|
6504
6514
|
*/
|
|
6505
6515
|
readonly role: _angular_core.InputSignal<string>;
|
|
6506
6516
|
/**
|
|
6507
6517
|
* tabindex attribute.
|
|
6508
|
-
* @
|
|
6518
|
+
* @return number
|
|
6509
6519
|
* @default 0
|
|
6510
6520
|
*/
|
|
6511
6521
|
readonly tabindex: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
6512
6522
|
/**
|
|
6513
6523
|
* Enable fade in transition.
|
|
6514
|
-
* @
|
|
6524
|
+
* @return boolean
|
|
6515
6525
|
* @default true
|
|
6516
6526
|
*/
|
|
6517
6527
|
readonly transition: _angular_core.InputSignal<boolean>;
|
|
6518
6528
|
/**
|
|
6519
6529
|
* visible change output
|
|
6520
|
-
* @
|
|
6530
|
+
* @return VisibleChangeEvent
|
|
6521
6531
|
*/
|
|
6522
|
-
readonly visibleChange: OutputEmitterRef<VisibleChangeEvent>;
|
|
6523
|
-
readonly show: _angular_core.WritableSignal<boolean>;
|
|
6532
|
+
readonly visibleChange: _angular_core.OutputEmitterRef<VisibleChangeEvent>;
|
|
6533
|
+
protected readonly show: _angular_core.WritableSignal<boolean>;
|
|
6524
6534
|
readonly visible: _angular_core.Signal<boolean>;
|
|
6525
|
-
readonly propId: _angular_core.Signal<string>;
|
|
6526
|
-
readonly attrAriaLabelledBy: _angular_core.Signal<string>;
|
|
6527
|
-
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
6528
|
-
|
|
6535
|
+
protected readonly propId: _angular_core.Signal<string>;
|
|
6536
|
+
protected readonly attrAriaLabelledBy: _angular_core.Signal<string>;
|
|
6537
|
+
protected readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
6538
|
+
protected onTransitionEnd($event: TransitionEvent): void;
|
|
6529
6539
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabPanelComponent, never>;
|
|
6530
6540
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabPanelComponent, "c-tab-panel", ["cTabPanel"], { "ariaLabelledBy": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "itemKey": { "alias": "itemKey"; "required": true; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "transition": { "alias": "transition"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, never>;
|
|
6531
6541
|
}
|