@coreui/angular-pro 5.4.10 → 5.4.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.
@@ -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';
@@ -76,6 +76,7 @@ export declare class SmartTableComponent implements ISmartTable, AfterContentIni
76
76
  readonly columnFilterValueChange: EventEmitter<IColumnFilterValue>;
77
77
  readonly filteredItemsChange: EventEmitter<IItemInternal[]>;
78
78
  readonly tableFilterValueChange: EventEmitter<string>;
79
+ readonly cleanerClick: EventEmitter<void>;
79
80
  columnTemplates: QueryList<TemplateIdDirective>;
80
81
  templates: {
81
82
  [key: string]: TemplateRef<any> | null;
@@ -129,7 +130,7 @@ export declare class SmartTableComponent implements ISmartTable, AfterContentIni
129
130
  }): void;
130
131
  ngOnChanges(changes: SimpleChanges): void;
131
132
  static ɵfac: i0.ɵɵFactoryDeclaration<SmartTableComponent, never>;
132
- static ɵcmp: i0.ɵɵComponentDeclaration<SmartTableComponent, "c-smart-table", ["cSmartTable"], { "activePage": { "alias": "activePage"; "required": false; }; "cleaner": { "alias": "cleaner"; "required": false; }; "clickableRows": { "alias": "clickableRows"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "columnFilter": { "alias": "columnFilter"; "required": false; }; "columnFilterValue": { "alias": "columnFilterValue"; "required": false; }; "columnSorter": { "alias": "columnSorter"; "required": false; "isSignal": true; }; "footer": { "alias": "footer"; "required": false; }; "header": { "alias": "header"; "required": false; }; "items": { "alias": "items"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "itemsPerPageLabel": { "alias": "itemsPerPageLabel"; "required": false; }; "itemsPerPageOptions": { "alias": "itemsPerPageOptions"; "required": false; }; "itemsPerPageSelect": { "alias": "itemsPerPageSelect"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "noItemsLabel": { "alias": "noItemsLabel"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; "sorterValue": { "alias": "sorterValue"; "required": false; }; "tableFilter": { "alias": "tableFilter"; "required": false; }; "tableFilterLabel": { "alias": "tableFilterLabel"; "required": false; }; "tableFilterPlaceholder": { "alias": "tableFilterPlaceholder"; "required": false; }; "tableFilterValue": { "alias": "tableFilterValue"; "required": false; }; "tableBodyProps": { "alias": "tableBodyProps"; "required": false; }; "tableFootProps": { "alias": "tableFootProps"; "required": false; }; "tableHeadProps": { "alias": "tableHeadProps"; "required": false; }; "tableProps": { "alias": "tableProps"; "required": false; }; }, { "selectedItemsChange": "selectedItemsChange"; "sorterValueChange": "sorterValueChange"; "activePageChange": "activePageChange"; "itemsPerPageChange": "itemsPerPageChange"; "rowClick": "rowClick"; "columnFilterValueChange": "columnFilterValueChange"; "filteredItemsChange": "filteredItemsChange"; "tableFilterValueChange": "tableFilterValueChange"; }, ["columnTemplates"], ["[customHeader]"], true, never>;
133
+ static ɵcmp: i0.ɵɵComponentDeclaration<SmartTableComponent, "c-smart-table", ["cSmartTable"], { "activePage": { "alias": "activePage"; "required": false; }; "cleaner": { "alias": "cleaner"; "required": false; }; "clickableRows": { "alias": "clickableRows"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "columnFilter": { "alias": "columnFilter"; "required": false; }; "columnFilterValue": { "alias": "columnFilterValue"; "required": false; }; "columnSorter": { "alias": "columnSorter"; "required": false; "isSignal": true; }; "footer": { "alias": "footer"; "required": false; }; "header": { "alias": "header"; "required": false; }; "items": { "alias": "items"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "itemsPerPageLabel": { "alias": "itemsPerPageLabel"; "required": false; }; "itemsPerPageOptions": { "alias": "itemsPerPageOptions"; "required": false; }; "itemsPerPageSelect": { "alias": "itemsPerPageSelect"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "noItemsLabel": { "alias": "noItemsLabel"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; "sorterValue": { "alias": "sorterValue"; "required": false; }; "tableFilter": { "alias": "tableFilter"; "required": false; }; "tableFilterLabel": { "alias": "tableFilterLabel"; "required": false; }; "tableFilterPlaceholder": { "alias": "tableFilterPlaceholder"; "required": false; }; "tableFilterValue": { "alias": "tableFilterValue"; "required": false; }; "tableBodyProps": { "alias": "tableBodyProps"; "required": false; }; "tableFootProps": { "alias": "tableFootProps"; "required": false; }; "tableHeadProps": { "alias": "tableHeadProps"; "required": false; }; "tableProps": { "alias": "tableProps"; "required": false; }; }, { "selectedItemsChange": "selectedItemsChange"; "sorterValueChange": "sorterValueChange"; "activePageChange": "activePageChange"; "itemsPerPageChange": "itemsPerPageChange"; "rowClick": "rowClick"; "columnFilterValueChange": "columnFilterValueChange"; "filteredItemsChange": "filteredItemsChange"; "tableFilterValueChange": "tableFilterValueChange"; "cleanerClick": "cleanerClick"; }, ["columnTemplates"], ["[customHeader]"], true, never>;
133
134
  static ngAcceptInputType_activePage: unknown;
134
135
  static ngAcceptInputType_cleaner: unknown;
135
136
  static ngAcceptInputType_clickableRows: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreui/angular-pro",
3
- "version": "5.4.10",
3
+ "version": "5.4.12",
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 || ~5.11.0",
32
- "@coreui/icons-angular": "~5.4.10",
31
+ "@coreui/coreui-pro": "^5.12.0",
32
+ "@coreui/icons-angular": "~5.4.12",
33
33
  "rxjs": "^7.8.2"
34
34
  },
35
35
  "repository": {