@coreui/angular-pro 5.7.12 → 5.7.13

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.13",
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.13",
35
35
  "rxjs": "^7.8.2"
36
36
  },
37
37
  "repository": {
@@ -1676,53 +1676,54 @@ declare class CarouselModule {
1676
1676
 
1677
1677
  declare class CollapseDirective implements OnDestroy {
1678
1678
  #private;
1679
- constructor();
1679
+ static ngAcceptInputType_animate: BooleanInput$1;
1680
+ static ngAcceptInputType_horizontal: BooleanInput$1;
1681
+ static ngAcceptInputType_navbar: BooleanInput$1;
1682
+ static ngAcceptInputType_visible: BooleanInput$1;
1680
1683
  /**
1681
- * @ignore
1684
+ * @ignore internal
1682
1685
  */
1683
1686
  readonly animateInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1684
1687
  readonly animate: _angular_core.WritableSignal<boolean>;
1685
1688
  /**
1686
1689
  * Set horizontal collapsing to transition the width instead of height.
1687
- * @type boolean
1690
+ * @return boolean
1688
1691
  * @default false
1689
1692
  */
1690
1693
  readonly horizontal: _angular_core.InputSignalWithTransform<boolean, unknown>;
1691
1694
  /**
1692
- * Toggle the visibility of collapsible element.
1693
- * @type boolean
1695
+ * Toggle the visibility of a collapsible element.
1696
+ * @return boolean
1694
1697
  * @default false
1695
1698
  */
1696
1699
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1700
+ /**
1701
+ * Event emitted on visibility change. [docs]
1702
+ * @return boolean
1703
+ */
1697
1704
  readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
1698
1705
  readonly visible: _angular_core.WritableSignal<boolean>;
1699
1706
  /**
1700
- * Add `navbar` prop for grouping and hiding navbar contents by a parent breakpoint.
1701
- * @type boolean
1707
+ * Add a `navbar` prop for grouping and hiding navbar contents by a parent breakpoint.
1708
+ * @return boolean
1702
1709
  * @default false
1703
1710
  */
1704
1711
  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
1712
  /**
1714
1713
  * Event emitted on visibility change. [docs]
1715
- * @type string
1714
+ * @return string
1716
1715
  */
1717
1716
  readonly collapseChange: _angular_core.OutputEmitterRef<string>;
1718
- readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
1717
+ protected readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
1719
1718
  ngOnDestroy(): void;
1720
1719
  toggle(visible?: boolean): void;
1721
- destroyPlayer(): void;
1722
- createPlayer(visible?: boolean): void;
1723
- setMaxSize(): void;
1720
+ protected clearPendingCallbacks(): void;
1721
+ protected setInitialState(visible: boolean): void;
1722
+ protected runTransition(visible: boolean): void;
1723
+ protected finishTransition(visible: boolean, host: HTMLElement, dimension: string): void;
1724
+ protected setMaxSize(): void;
1724
1725
  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>;
1726
+ 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
1727
  }
1727
1728
 
1728
1729
  declare class CollapseModule {
@@ -2980,27 +2981,27 @@ declare class ListGroupModule {
2980
2981
 
2981
2982
  declare class LoadingButtonComponent extends ButtonDirective {
2982
2983
  /**
2983
- * Makes button disabled when loading.
2984
- * @type boolean
2984
+ * Makes a button disabled when loading.
2985
+ * @return boolean
2985
2986
  * @default false
2986
2987
  */
2987
- disabledOnLoading: InputSignalWithTransform<boolean, unknown>;
2988
+ disabledOnLoading: _angular_core.InputSignalWithTransform<boolean, unknown>;
2988
2989
  /**
2989
2990
  * Loading state (set to true to start animation).
2990
- * @type boolean
2991
+ * @return boolean
2991
2992
  */
2992
- loading: InputSignalWithTransform<boolean, unknown>;
2993
+ loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
2993
2994
  /**
2994
2995
  * Event emitted on loading change
2995
- * @type boolean
2996
+ * @return boolean
2996
2997
  */
2997
- loadingChange: OutputEmitterRef<boolean>;
2998
+ loadingChange: _angular_core.OutputEmitterRef<boolean>;
2998
2999
  loadingEffect: _angular_core.EffectRef;
2999
3000
  /**
3000
- * Sets type of spinner.
3001
- * @type {'border' | 'grow'}
3001
+ * Sets a type of spinner.
3002
+ * @return {'border' | 'grow'}
3002
3003
  */
3003
- spinnerType: InputSignal<'border' | 'grow'>;
3004
+ spinnerType: _angular_core.InputSignal<"border" | "grow">;
3004
3005
  constructor();
3005
3006
  hostClasses: _angular_core.Signal<Record<string, boolean>>;
3006
3007
  _disabled: _angular_core.Signal<boolean>;
@@ -3612,23 +3613,23 @@ declare class NavbarTogglerDirective {
3612
3613
  constructor();
3613
3614
  /**
3614
3615
  * Reference to navbar collapse element (via # template variable) . [docs]
3615
- * @type string
3616
+ * @return string
3616
3617
  * @default 'button'
3617
3618
  */
3618
3619
  readonly collapseRef: _angular_core.InputSignal<CollapseDirective | undefined>;
3619
3620
  /**
3620
3621
  * Default type for navbar-toggler. [docs]
3621
- * @type string
3622
+ * @return string
3622
3623
  * @default 'button'
3623
3624
  */
3624
3625
  readonly type: _angular_core.InputSignal<string>;
3625
3626
  /**
3626
3627
  * Default aria-label attr for navbar-toggler. [docs]
3627
- * @type string
3628
+ * @return string
3628
3629
  * @default 'Toggle navigation'
3629
3630
  */
3630
3631
  readonly ariaLabel: _angular_core.InputSignal<string>;
3631
- handleClick($event: MouseEvent): void;
3632
+ protected handleClick($event: MouseEvent): void;
3632
3633
  addDefaultIcon(): void;
3633
3634
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavbarTogglerDirective, never>;
3634
3635
  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 +3968,9 @@ declare class OtpDirective implements FocusableOption {
3967
3968
  get disabled(): boolean;
3968
3969
  readonly tabIndex: _angular_core.WritableSignal<number>;
3969
3970
  readonly index: _angular_core.WritableSignal<number | undefined>;
3971
+ readonly autocomplete: _angular_core.Signal<"off" | "one-time-code">;
3972
+ readonly maxLength: _angular_core.Signal<number>;
3973
+ readonly enterKeyHint: _angular_core.Signal<"next" | "done">;
3970
3974
  focus(origin?: FocusOrigin): void;
3971
3975
  protected readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
3972
3976
  protected readonly inputMode: _angular_core.Signal<"text" | "numeric">;
@@ -3997,17 +4001,17 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
3997
4001
  */
3998
4002
  readonly ariaLabel: _angular_core.InputSignal<(index: number, total: number) => string>;
3999
4003
  /**
4000
- * Automatically submit the form when all one time password fields are filled.
4004
+ * Automatically submit the form when all one-time password fields are filled.
4001
4005
  * @default: false
4002
4006
  */
4003
4007
  readonly autoSubmit: _angular_core.InputSignalWithTransform<boolean, unknown>;
4004
4008
  /**
4005
- * Initial value for Angular one time password input.
4009
+ * Initial value for Angular one-time password input.
4006
4010
  * @default: undefined
4007
4011
  */
4008
4012
  readonly defaultValue: _angular_core.InputSignal<string | number | undefined>;
4009
4013
  /**
4010
- * Disable all one time password (OTP) input fields.
4014
+ * Disable all one-time password (OTP) input fields.
4011
4015
  * @default: false
4012
4016
  */
4013
4017
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -4018,7 +4022,7 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
4018
4022
  */
4019
4023
  readonly linear: _angular_core.InputSignalWithTransform<boolean, unknown>;
4020
4024
  /**
4021
- * Show input as password (masked characters).
4025
+ * Show input as a password (masked characters).
4022
4026
  * @default: false
4023
4027
  */
4024
4028
  readonly masked: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -4028,12 +4032,12 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
4028
4032
  */
4029
4033
  readonly placeholder: _angular_core.InputSignal<string>;
4030
4034
  /**
4031
- * Make Angular OTP input component read-only.
4035
+ * Make the Angular OTP input component read-only.
4032
4036
  * @default: false
4033
4037
  */
4034
4038
  readonly readOnly: _angular_core.InputSignalWithTransform<boolean, unknown>;
4035
4039
  /**
4036
- * Sets the visual size of the React.js one time password (OTP) input. Use 'sm' for small or 'lg' for large input fields.
4040
+ * Sets the visual size of the Angular one-time password (OTP) input. Use 'sm' for small or 'lg' for large input fields.
4037
4041
  * @default: undefined
4038
4042
  */
4039
4043
  readonly sizing: _angular_core.InputSignal<string | undefined>;
@@ -4054,11 +4058,11 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
4054
4058
  readonly valueInput: _angular_core.InputSignal<string | number | undefined>;
4055
4059
  protected readonly value: _angular_core.WritableSignal<string>;
4056
4060
  /**
4057
- * Event triggered when the Angular one time password (OTP) value changes.
4061
+ * Event triggered when the Angular one-time password (OTP) value changes.
4058
4062
  */
4059
4063
  readonly valueChange: _angular_core.OutputEmitterRef<string>;
4060
4064
  /**
4061
- * Callback triggered when all Angular one time password (OTP) fields are filled.
4065
+ * Callback triggered when all Angular one-time password (OTP) fields are filled.
4062
4066
  */
4063
4067
  readonly complete: _angular_core.OutputEmitterRef<string>;
4064
4068
  protected readonly hostClasses: _angular_core.Signal<{