@coreui/angular-pro 5.4.9 → 5.4.11

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.
@@ -2,7 +2,7 @@ import * as i0 from "@angular/core";
2
2
  export declare class FormFloatingDirective {
3
3
  /**
4
4
  * Enable floating labels
5
- * @type boolean
5
+ * @dafault boolean
6
6
  */
7
7
  readonly floating: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFloatingDirective, never>;
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FormPasswordActionComponent {
3
+ /**
4
+ * Sets the accessible label (`aria-label`) for the toggle password visibility button. This improves accessibility for screen readers and should describe the action, e.g. `"Show password"` or `"Hide password"`.
5
+ * @default 'Toggle password visibility'
6
+ */
7
+ readonly ariaLabelToggler: import("@angular/core").InputSignal<string>;
8
+ /**
9
+ * Sets disabled state of the toggle password visibility button. When `true`, the user cannot interact with the button.
10
+ * @default false
11
+ */
12
+ readonly disabled: import("@angular/core").InputSignal<boolean>;
13
+ handleClick($event: MouseEvent): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormPasswordActionComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormPasswordActionComponent, "c-form-password-action", never, { "ariaLabelToggler": { "alias": "ariaLabelToggler"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
16
+ }
@@ -0,0 +1,54 @@
1
+ import { BooleanInput } from '@angular/cdk/coercion';
2
+ import { OnDestroy, OnInit, ViewContainerRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FormPasswordDirective implements OnDestroy, OnInit {
5
+ #private;
6
+ static ngAcceptInputType_disabled: BooleanInput;
7
+ static ngAcceptInputType_readOnly: BooleanInput;
8
+ static ngAcceptInputType_showPassword: BooleanInput;
9
+ readonly viewContainerRef: ViewContainerRef;
10
+ ngOnInit(): void;
11
+ /**
12
+ * Sets the accessible label (`aria-label`) for the toggle password visibility button. This improves accessibility for screen readers and should describe the action, e.g. `"Show password"` or `"Hide password"`.
13
+ * @default 'Toggle password visibility'
14
+ */
15
+ readonly ariaLabelToggler: import("@angular/core").InputSignal<string>;
16
+ /**
17
+ * Sets disabled state of the password input field. When `true`, the user cannot interact with the field.
18
+ * @dafault false
19
+ */
20
+ readonly disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
21
+ /**
22
+ * set form labels that float over the password input fields
23
+ * @reurnd string | undefined
24
+ */
25
+ readonly floatingLabel: import("@angular/core").InputSignal<string | undefined>;
26
+ /**
27
+ * Disables the password input field. When `true`, the user cannot interact with the field.
28
+ * @default false
29
+ */
30
+ readonly readOnly: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
31
+ /**
32
+ * Size the component small or large.
33
+ * @default undefined
34
+ */
35
+ readonly sizing: import("@angular/core").InputSignal<string | undefined>;
36
+ /**
37
+ * Set component validation state to valid.
38
+ * @default undefined
39
+ */
40
+ readonly valid: import("@angular/core").InputSignal<boolean | undefined>;
41
+ /**
42
+ * Controls the initial visibility of the password. When `true`, the input type is set to `"text"` instead of `"password"`. This allows **toggling password visibility** in Angular forms.
43
+ * @default false
44
+ */
45
+ readonly showPassword: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
46
+ /**
47
+ * Specifies the type of input element.
48
+ */
49
+ readonly type: import("@angular/core").Signal<"password" | "text">;
50
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
51
+ ngOnDestroy(): void;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormPasswordDirective, never>;
53
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormPasswordDirective, "input[cFormPassword]", never, { "ariaLabelToggler": { "alias": "ariaLabelToggler"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "floatingLabel": { "alias": "floatingLabel"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "showPassword": { "alias": "showPassword"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
54
+ }
@@ -7,12 +7,13 @@ import * as i5 from "./form-control/form-control.directive";
7
7
  import * as i6 from "./form-feedback/form-feedback.component";
8
8
  import * as i7 from "./form-floating/form-floating.directive";
9
9
  import * as i8 from "./form-label/form-label.directive";
10
- import * as i9 from "./form-select/form-select.directive";
11
- import * as i10 from "./form-text/form-text.directive";
12
- import * as i11 from "./input-group/input-group.component";
13
- import * as i12 from "./input-group-text/input-group-text.directive";
10
+ import * as i9 from "./form-password/form-password.directive";
11
+ import * as i10 from "./form-select/form-select.directive";
12
+ import * as i11 from "./form-text/form-text.directive";
13
+ import * as i12 from "./input-group/input-group.component";
14
+ import * as i13 from "./input-group-text/input-group-text.directive";
14
15
  export declare class FormModule {
15
16
  static ɵfac: i0.ɵɵFactoryDeclaration<FormModule, never>;
16
- static ɵmod: i0.ɵɵNgModuleDeclaration<FormModule, never, [typeof i1.FormDirective, typeof i2.FormCheckComponent, typeof i3.FormCheckLabelDirective, typeof i4.FormCheckInputDirective, typeof i5.FormControlDirective, typeof i6.FormFeedbackComponent, typeof i7.FormFloatingDirective, typeof i8.FormLabelDirective, typeof i9.FormSelectDirective, typeof i10.FormTextDirective, typeof i11.InputGroupComponent, typeof i12.InputGroupTextDirective], [typeof i1.FormDirective, typeof i2.FormCheckComponent, typeof i3.FormCheckLabelDirective, typeof i4.FormCheckInputDirective, typeof i5.FormControlDirective, typeof i6.FormFeedbackComponent, typeof i7.FormFloatingDirective, typeof i8.FormLabelDirective, typeof i9.FormSelectDirective, typeof i10.FormTextDirective, typeof i11.InputGroupComponent, typeof i12.InputGroupTextDirective]>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FormModule, never, [typeof i1.FormDirective, typeof i2.FormCheckComponent, typeof i3.FormCheckLabelDirective, typeof i4.FormCheckInputDirective, typeof i5.FormControlDirective, typeof i6.FormFeedbackComponent, typeof i7.FormFloatingDirective, typeof i8.FormLabelDirective, typeof i9.FormPasswordDirective, typeof i10.FormSelectDirective, typeof i11.FormTextDirective, typeof i12.InputGroupComponent, typeof i13.InputGroupTextDirective], [typeof i1.FormDirective, typeof i2.FormCheckComponent, typeof i3.FormCheckLabelDirective, typeof i4.FormCheckInputDirective, typeof i5.FormControlDirective, typeof i6.FormFeedbackComponent, typeof i7.FormFloatingDirective, typeof i8.FormLabelDirective, typeof i9.FormPasswordDirective, typeof i10.FormSelectDirective, typeof i11.FormTextDirective, typeof i12.InputGroupComponent, typeof i13.InputGroupTextDirective]>;
17
18
  static ɵinj: i0.ɵɵInjectorDeclaration<FormModule>;
18
19
  }
@@ -1,13 +1,14 @@
1
1
  export { FormDirective } from './form/form.directive';
2
- export { FormFeedbackComponent } from './form-feedback/form-feedback.component';
3
- export { InputGroupComponent } from './input-group/input-group.component';
4
- export { FormSelectDirective } from './form-select/form-select.directive';
5
- export { FormLabelDirective } from './form-label/form-label.directive';
6
2
  export { FormCheckComponent } from './form-check/form-check.component';
3
+ export { FormControlDirective } from './form-control/form-control.directive';
7
4
  export { FormCheckInputDirective } from './form-check/form-check-input.directive';
8
5
  export { FormCheckLabelDirective } from './form-check/form-check-label.directive';
9
- export { FormControlDirective } from './form-control/form-control.directive';
10
- export { FormTextDirective } from './form-text/form-text.directive';
6
+ export { FormFeedbackComponent } from './form-feedback/form-feedback.component';
11
7
  export { FormFloatingDirective } from './form-floating/form-floating.directive';
8
+ export { FormLabelDirective } from './form-label/form-label.directive';
9
+ export { FormPasswordDirective } from './form-password/form-password.directive';
10
+ export { FormSelectDirective } from './form-select/form-select.directive';
11
+ export { FormTextDirective } from './form-text/form-text.directive';
12
+ export { InputGroupComponent } from './input-group/input-group.component';
12
13
  export { InputGroupTextDirective } from './input-group-text/input-group-text.directive';
13
14
  export { FormModule } from './form.module';
@@ -2,7 +2,6 @@ import { AnimationEvent } from '@angular/animations';
2
2
  import { InputSignal, InputSignalWithTransform, OutputEmitterRef } from '@angular/core';
3
3
  import { TabsService } from '../tabs.service';
4
4
  import * as i0 from "@angular/core";
5
- type AnimateType = 'hide' | 'show';
6
5
  type VisibleChangeEvent = {
7
6
  itemKey: string | number;
8
7
  visible: boolean;
@@ -27,6 +26,12 @@ export declare class TabPanelComponent {
27
26
  * @required
28
27
  */
29
28
  readonly itemKey: InputSignal<string | number>;
29
+ /**
30
+ * Element role.
31
+ * @type string
32
+ * @default 'tabpanel'
33
+ */
34
+ readonly role: InputSignal<string>;
30
35
  /**
31
36
  * tabindex attribute.
32
37
  * @type number
@@ -49,10 +54,8 @@ export declare class TabPanelComponent {
49
54
  readonly propId: import("@angular/core").Signal<string>;
50
55
  readonly attrAriaLabelledBy: import("@angular/core").Signal<string>;
51
56
  readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
52
- get animationDisabled(): boolean;
53
- get animateType(): AnimateType;
54
57
  onAnimationDone($event: AnimationEvent): void;
55
58
  static ɵfac: i0.ɵɵFactoryDeclaration<TabPanelComponent, never>;
56
- static ɵcmp: i0.ɵɵ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; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "transition": { "alias": "transition"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, never>;
59
+ static ɵcmp: i0.ɵɵ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>;
57
60
  }
58
61
  export {};
@@ -24,7 +24,7 @@ export declare class TabsListComponent {
24
24
  readonly role: InputSignal<string>;
25
25
  readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
26
26
  readonly tabs: import("@angular/core").Signal<readonly TabDirective[]>;
27
- onKeydown($event: any): void;
27
+ onKeyDown($event: any): void;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<TabsListComponent, never>;
29
29
  static ɵcmp: i0.ɵɵComponentDeclaration<TabsListComponent, "c-tabs-list", ["cTabsList"], { "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, ["tabs"], ["*"], true, never>;
30
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreui/angular-pro",
3
- "version": "5.4.9",
3
+ "version": "5.4.11",
4
4
  "description": "CoreUI Pro Components Library for Angular",
5
5
  "copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
6
6
  "homepage": "https://coreui.io/angular",
@@ -28,8 +28,8 @@
28
28
  "@angular/core": "^19.2.0",
29
29
  "@angular/forms": "^19.2.0",
30
30
  "@angular/router": "^19.2.0",
31
- "@coreui/coreui-pro": "~5.9.0 || ~5.10.0",
32
- "@coreui/icons-angular": "~5.4.9",
31
+ "@coreui/coreui-pro": "~5.11.0",
32
+ "@coreui/icons-angular": "~5.4.11",
33
33
  "rxjs": "^7.8.2"
34
34
  },
35
35
  "repository": {