@coreui/angular-pro 5.7.12 → 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.12",
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.12",
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 carouselStateSubscribe;
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
  }
@@ -1676,53 +1686,54 @@ declare class CarouselModule {
1676
1686
 
1677
1687
  declare class CollapseDirective implements OnDestroy {
1678
1688
  #private;
1679
- constructor();
1689
+ static ngAcceptInputType_animate: BooleanInput$1;
1690
+ static ngAcceptInputType_horizontal: BooleanInput$1;
1691
+ static ngAcceptInputType_navbar: BooleanInput$1;
1692
+ static ngAcceptInputType_visible: BooleanInput$1;
1680
1693
  /**
1681
- * @ignore
1694
+ * @ignore internal
1682
1695
  */
1683
1696
  readonly animateInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1684
1697
  readonly animate: _angular_core.WritableSignal<boolean>;
1685
1698
  /**
1686
1699
  * Set horizontal collapsing to transition the width instead of height.
1687
- * @type boolean
1700
+ * @return boolean
1688
1701
  * @default false
1689
1702
  */
1690
1703
  readonly horizontal: _angular_core.InputSignalWithTransform<boolean, unknown>;
1691
1704
  /**
1692
- * Toggle the visibility of collapsible element.
1693
- * @type boolean
1705
+ * Toggle the visibility of a collapsible element.
1706
+ * @return boolean
1694
1707
  * @default false
1695
1708
  */
1696
1709
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1710
+ /**
1711
+ * Event emitted on visibility change. [docs]
1712
+ * @return boolean
1713
+ */
1697
1714
  readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
1698
1715
  readonly visible: _angular_core.WritableSignal<boolean>;
1699
1716
  /**
1700
- * Add `navbar` prop for grouping and hiding navbar contents by a parent breakpoint.
1701
- * @type boolean
1717
+ * Add a `navbar` prop for grouping and hiding navbar contents by a parent breakpoint.
1718
+ * @return boolean
1702
1719
  * @default false
1703
1720
  */
1704
1721
  readonly navbar: _angular_core.InputSignalWithTransform<boolean, unknown>;
1705
- /**
1706
- * @ignore
1707
- */
1708
- readonly duration: _angular_core.InputSignal<string>;
1709
- /**
1710
- * @ignore
1711
- */
1712
- readonly transition: _angular_core.InputSignal<string>;
1713
1722
  /**
1714
1723
  * Event emitted on visibility change. [docs]
1715
- * @type string
1724
+ * @return string
1716
1725
  */
1717
1726
  readonly collapseChange: _angular_core.OutputEmitterRef<string>;
1718
- readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
1727
+ protected readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
1719
1728
  ngOnDestroy(): void;
1720
1729
  toggle(visible?: boolean): void;
1721
- destroyPlayer(): void;
1722
- createPlayer(visible?: boolean): void;
1723
- setMaxSize(): void;
1730
+ protected clearPendingCallbacks(): void;
1731
+ protected setInitialState(visible: boolean): void;
1732
+ protected runTransition(visible: boolean): void;
1733
+ protected finishTransition(visible: boolean, host: HTMLElement, dimension: string): void;
1734
+ protected setMaxSize(): void;
1724
1735
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CollapseDirective, never>;
1725
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CollapseDirective, "[cCollapse]", ["cCollapse"], { "animateInput": { "alias": "animate"; "required": false; "isSignal": true; }; "horizontal": { "alias": "horizontal"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; "navbar": { "alias": "navbar"; "required": false; "isSignal": true; }; "duration": { "alias": "duration"; "required": false; "isSignal": true; }; "transition": { "alias": "transition"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; "collapseChange": "collapseChange"; }, never, never, true, never>;
1736
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CollapseDirective, "[cCollapse]", ["cCollapse"], { "animateInput": { "alias": "animate"; "required": false; "isSignal": true; }; "horizontal": { "alias": "horizontal"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; "navbar": { "alias": "navbar"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; "collapseChange": "collapseChange"; }, never, never, true, never>;
1726
1737
  }
1727
1738
 
1728
1739
  declare class CollapseModule {
@@ -2980,27 +2991,27 @@ declare class ListGroupModule {
2980
2991
 
2981
2992
  declare class LoadingButtonComponent extends ButtonDirective {
2982
2993
  /**
2983
- * Makes button disabled when loading.
2984
- * @type boolean
2994
+ * Makes a button disabled when loading.
2995
+ * @return boolean
2985
2996
  * @default false
2986
2997
  */
2987
- disabledOnLoading: InputSignalWithTransform<boolean, unknown>;
2998
+ disabledOnLoading: _angular_core.InputSignalWithTransform<boolean, unknown>;
2988
2999
  /**
2989
3000
  * Loading state (set to true to start animation).
2990
- * @type boolean
3001
+ * @return boolean
2991
3002
  */
2992
- loading: InputSignalWithTransform<boolean, unknown>;
3003
+ loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
2993
3004
  /**
2994
3005
  * Event emitted on loading change
2995
- * @type boolean
3006
+ * @return boolean
2996
3007
  */
2997
- loadingChange: OutputEmitterRef<boolean>;
3008
+ loadingChange: _angular_core.OutputEmitterRef<boolean>;
2998
3009
  loadingEffect: _angular_core.EffectRef;
2999
3010
  /**
3000
- * Sets type of spinner.
3001
- * @type {'border' | 'grow'}
3011
+ * Sets a type of spinner.
3012
+ * @return {'border' | 'grow'}
3002
3013
  */
3003
- spinnerType: InputSignal<'border' | 'grow'>;
3014
+ spinnerType: _angular_core.InputSignal<"border" | "grow">;
3004
3015
  constructor();
3005
3016
  hostClasses: _angular_core.Signal<Record<string, boolean>>;
3006
3017
  _disabled: _angular_core.Signal<boolean>;
@@ -3612,23 +3623,23 @@ declare class NavbarTogglerDirective {
3612
3623
  constructor();
3613
3624
  /**
3614
3625
  * Reference to navbar collapse element (via # template variable) . [docs]
3615
- * @type string
3626
+ * @return string
3616
3627
  * @default 'button'
3617
3628
  */
3618
3629
  readonly collapseRef: _angular_core.InputSignal<CollapseDirective | undefined>;
3619
3630
  /**
3620
3631
  * Default type for navbar-toggler. [docs]
3621
- * @type string
3632
+ * @return string
3622
3633
  * @default 'button'
3623
3634
  */
3624
3635
  readonly type: _angular_core.InputSignal<string>;
3625
3636
  /**
3626
3637
  * Default aria-label attr for navbar-toggler. [docs]
3627
- * @type string
3638
+ * @return string
3628
3639
  * @default 'Toggle navigation'
3629
3640
  */
3630
3641
  readonly ariaLabel: _angular_core.InputSignal<string>;
3631
- handleClick($event: MouseEvent): void;
3642
+ protected handleClick($event: MouseEvent): void;
3632
3643
  addDefaultIcon(): void;
3633
3644
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavbarTogglerDirective, never>;
3634
3645
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<NavbarTogglerDirective, "[cNavbarToggler]", never, { "collapseRef": { "alias": "cNavbarToggler"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -3967,6 +3978,9 @@ declare class OtpDirective implements FocusableOption {
3967
3978
  get disabled(): boolean;
3968
3979
  readonly tabIndex: _angular_core.WritableSignal<number>;
3969
3980
  readonly index: _angular_core.WritableSignal<number | undefined>;
3981
+ readonly autocomplete: _angular_core.Signal<"off" | "one-time-code">;
3982
+ readonly maxLength: _angular_core.Signal<number>;
3983
+ readonly enterKeyHint: _angular_core.Signal<"next" | "done">;
3970
3984
  focus(origin?: FocusOrigin): void;
3971
3985
  protected readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
3972
3986
  protected readonly inputMode: _angular_core.Signal<"text" | "numeric">;
@@ -3997,17 +4011,17 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
3997
4011
  */
3998
4012
  readonly ariaLabel: _angular_core.InputSignal<(index: number, total: number) => string>;
3999
4013
  /**
4000
- * Automatically submit the form when all one time password fields are filled.
4014
+ * Automatically submit the form when all one-time password fields are filled.
4001
4015
  * @default: false
4002
4016
  */
4003
4017
  readonly autoSubmit: _angular_core.InputSignalWithTransform<boolean, unknown>;
4004
4018
  /**
4005
- * Initial value for Angular one time password input.
4019
+ * Initial value for Angular one-time password input.
4006
4020
  * @default: undefined
4007
4021
  */
4008
4022
  readonly defaultValue: _angular_core.InputSignal<string | number | undefined>;
4009
4023
  /**
4010
- * Disable all one time password (OTP) input fields.
4024
+ * Disable all one-time password (OTP) input fields.
4011
4025
  * @default: false
4012
4026
  */
4013
4027
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -4018,7 +4032,7 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
4018
4032
  */
4019
4033
  readonly linear: _angular_core.InputSignalWithTransform<boolean, unknown>;
4020
4034
  /**
4021
- * Show input as password (masked characters).
4035
+ * Show input as a password (masked characters).
4022
4036
  * @default: false
4023
4037
  */
4024
4038
  readonly masked: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -4028,12 +4042,12 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
4028
4042
  */
4029
4043
  readonly placeholder: _angular_core.InputSignal<string>;
4030
4044
  /**
4031
- * Make Angular OTP input component read-only.
4045
+ * Make the Angular OTP input component read-only.
4032
4046
  * @default: false
4033
4047
  */
4034
4048
  readonly readOnly: _angular_core.InputSignalWithTransform<boolean, unknown>;
4035
4049
  /**
4036
- * Sets the visual size of the React.js one time password (OTP) input. Use 'sm' for small or 'lg' for large input fields.
4050
+ * Sets the visual size of the Angular one-time password (OTP) input. Use 'sm' for small or 'lg' for large input fields.
4037
4051
  * @default: undefined
4038
4052
  */
4039
4053
  readonly sizing: _angular_core.InputSignal<string | undefined>;
@@ -4054,11 +4068,11 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
4054
4068
  readonly valueInput: _angular_core.InputSignal<string | number | undefined>;
4055
4069
  protected readonly value: _angular_core.WritableSignal<string>;
4056
4070
  /**
4057
- * Event triggered when the Angular one time password (OTP) value changes.
4071
+ * Event triggered when the Angular one-time password (OTP) value changes.
4058
4072
  */
4059
4073
  readonly valueChange: _angular_core.OutputEmitterRef<string>;
4060
4074
  /**
4061
- * Callback triggered when all Angular one time password (OTP) fields are filled.
4075
+ * Callback triggered when all Angular one-time password (OTP) fields are filled.
4062
4076
  */
4063
4077
  readonly complete: _angular_core.OutputEmitterRef<string>;
4064
4078
  protected readonly hostClasses: _angular_core.Signal<{
@@ -6474,54 +6488,54 @@ type VisibleChangeEvent = {
6474
6488
  visible: boolean;
6475
6489
  };
6476
6490
  declare class TabPanelComponent {
6477
- readonly tabsService: TabsService;
6491
+ #private;
6478
6492
  /**
6479
6493
  * aria-labelledby attribute
6480
- * @type string
6494
+ * @return string
6481
6495
  * @default undefined
6482
6496
  */
6483
6497
  readonly ariaLabelledBy: _angular_core.InputSignal<string | undefined>;
6484
6498
  /**
6485
6499
  * Element id attribute
6486
- * @type string
6500
+ * @return string
6487
6501
  * @default undefined
6488
6502
  */
6489
6503
  readonly id: _angular_core.InputSignal<string | undefined>;
6490
6504
  /**
6491
6505
  * Item key.
6492
- * @type string | number
6506
+ * @return string | number
6493
6507
  * @required
6494
6508
  */
6495
6509
  readonly itemKey: _angular_core.InputSignal<string | number>;
6496
6510
  /**
6497
6511
  * Element role.
6498
- * @type string
6512
+ * @return string
6499
6513
  * @default 'tabpanel'
6500
6514
  */
6501
6515
  readonly role: _angular_core.InputSignal<string>;
6502
6516
  /**
6503
6517
  * tabindex attribute.
6504
- * @type number
6518
+ * @return number
6505
6519
  * @default 0
6506
6520
  */
6507
6521
  readonly tabindex: _angular_core.InputSignalWithTransform<number, unknown>;
6508
6522
  /**
6509
6523
  * Enable fade in transition.
6510
- * @type boolean
6524
+ * @return boolean
6511
6525
  * @default true
6512
6526
  */
6513
6527
  readonly transition: _angular_core.InputSignal<boolean>;
6514
6528
  /**
6515
6529
  * visible change output
6516
- * @type OutputEmitterRef<VisibleChangeEvent>
6530
+ * @return VisibleChangeEvent
6517
6531
  */
6518
- readonly visibleChange: OutputEmitterRef<VisibleChangeEvent>;
6519
- readonly show: _angular_core.WritableSignal<boolean>;
6532
+ readonly visibleChange: _angular_core.OutputEmitterRef<VisibleChangeEvent>;
6533
+ protected readonly show: _angular_core.WritableSignal<boolean>;
6520
6534
  readonly visible: _angular_core.Signal<boolean>;
6521
- readonly propId: _angular_core.Signal<string>;
6522
- readonly attrAriaLabelledBy: _angular_core.Signal<string>;
6523
- readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
6524
- onAnimationDone($event: AnimationEvent): void;
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;
6525
6539
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabPanelComponent, never>;
6526
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>;
6527
6541
  }