@coreui/angular-pro 5.3.7 → 5.3.8

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.
Files changed (59) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +2 -2
  3. package/fesm2022/coreui-angular-pro.mjs +1844 -1875
  4. package/fesm2022/coreui-angular-pro.mjs.map +1 -1
  5. package/lib/accordion/accordion-button/accordion-button.directive.d.ts +1 -4
  6. package/lib/accordion/accordion-item/accordion-item.component.d.ts +0 -1
  7. package/lib/button-group/button-group/button-group.component.d.ts +1 -5
  8. package/lib/form/form/form.directive.d.ts +3 -4
  9. package/lib/form/form-check/form-check-input.directive.d.ts +10 -12
  10. package/lib/form/form-check/form-check.component.d.ts +10 -18
  11. package/lib/form/form-control/form-control.directive.d.ts +10 -10
  12. package/lib/form/form-feedback/form-feedback.component.d.ts +6 -7
  13. package/lib/form/form-floating/form-floating.directive.d.ts +1 -3
  14. package/lib/form/form-label/form-label.directive.d.ts +6 -5
  15. package/lib/form/form-select/form-select.directive.d.ts +6 -5
  16. package/lib/form/input-group/input-group.component.d.ts +1 -1
  17. package/lib/list-group/list-group-item.directive.d.ts +1 -7
  18. package/lib/modal/modal/modal.component.d.ts +34 -34
  19. package/lib/modal/modal-dialog/modal-dialog.component.d.ts +12 -9
  20. package/lib/modal/modal-dismiss/modal-toggle.directive.d.ts +3 -2
  21. package/lib/modal/modal.service.d.ts +2 -2
  22. package/lib/nav/nav-link.directive.d.ts +13 -15
  23. package/lib/nav/nav.component.d.ts +6 -6
  24. package/lib/placeholder/placeholder-animation.directive.d.ts +1 -3
  25. package/lib/placeholder/placeholder.directive.d.ts +1 -4
  26. package/lib/popover/popover/popover.component.d.ts +1 -1
  27. package/lib/popover/popover.directive.d.ts +1 -4
  28. package/lib/progress/progress-bar.component.d.ts +2 -2
  29. package/lib/progress/progress-bar.directive.d.ts +13 -30
  30. package/lib/progress/progress-stacked.component.d.ts +3 -4
  31. package/lib/progress/progress.component.d.ts +15 -17
  32. package/lib/progress/progress.service.d.ts +11 -0
  33. package/lib/services/color-mode.service.d.ts +0 -1
  34. package/lib/shared/html-attr.directive.d.ts +0 -1
  35. package/lib/spinner/spinner.component.d.ts +1 -3
  36. package/lib/table/table-active.directive.d.ts +3 -5
  37. package/lib/table/table-color.directive.d.ts +4 -5
  38. package/lib/table/table.directive.d.ts +25 -35
  39. package/lib/tabs-2/tab/tab.directive.d.ts +5 -10
  40. package/lib/tabs-2/tab-panel/tab-panel.component.d.ts +1 -7
  41. package/lib/tabs-2/tabs-list/tabs-list.component.d.ts +1 -6
  42. package/lib/tabs-2/tabs.component.d.ts +1 -2
  43. package/lib/toast/toast/toast.component.d.ts +14 -15
  44. package/lib/toast/toast-body/toast-body.component.d.ts +1 -2
  45. package/lib/toast/toast-close.directive.d.ts +4 -3
  46. package/lib/toast/toast-header/toast-header.component.d.ts +5 -5
  47. package/lib/toast/toaster/toaster.component.d.ts +12 -13
  48. package/lib/toast/toaster/toaster.service.d.ts +1 -1
  49. package/lib/tooltip/tooltip/tooltip.component.d.ts +1 -1
  50. package/lib/tooltip/tooltip.directive.d.ts +0 -3
  51. package/lib/utilities/align.directive.d.ts +4 -4
  52. package/lib/utilities/bg-color.directive.d.ts +5 -6
  53. package/lib/utilities/border.directive.d.ts +4 -4
  54. package/lib/utilities/rounded.directive.d.ts +3 -3
  55. package/lib/utilities/shadow-on-scroll.directive.d.ts +2 -2
  56. package/lib/widget/widget-stat-a/widget-stat-a.component.d.ts +1 -1
  57. package/lib/widget/widget-stat-c/widget-stat-c.component.d.ts +1 -1
  58. package/lib/widget/widget-stat-f/widget-stat-f.component.d.ts +1 -1
  59. package/package.json +9 -9
@@ -11,10 +11,7 @@ export declare class AccordionButtonDirective {
11
11
  * @default 'button'
12
12
  */
13
13
  readonly type: import("@angular/core").InputSignal<string>;
14
- readonly hostClasses: import("@angular/core").Signal<{
15
- 'accordion-button': boolean;
16
- collapsed: boolean | undefined;
17
- }>;
14
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
18
15
  readonly ariaExpanded: import("@angular/core").Signal<boolean>;
19
16
  static ɵfac: i0.ɵɵFactoryDeclaration<AccordionButtonDirective, never>;
20
17
  static ɵdir: i0.ɵɵDirectiveDeclaration<AccordionButtonDirective, "[cAccordionButton]", never, { "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -10,7 +10,6 @@ export declare class AccordionItemComponent implements OnInit, OnDestroy {
10
10
  */
11
11
  readonly visibleInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
12
12
  readonly itemVisible: import("@angular/core").WritableSignal<boolean>;
13
- visibleInputChange: import("@angular/core").EffectRef;
14
13
  set visible(value: boolean);
15
14
  get visible(): boolean;
16
15
  contentId: string;
@@ -17,11 +17,7 @@ export declare class ButtonGroupComponent {
17
17
  * @default 'group'
18
18
  */
19
19
  readonly role: InputSignal<string>;
20
- readonly hostClasses: import("@angular/core").Signal<{
21
- [x: string]: boolean;
22
- 'btn-group': boolean;
23
- 'btn-group-vertical': boolean;
24
- }>;
20
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
25
21
  static ɵfac: i0.ɵɵFactoryDeclaration<ButtonGroupComponent, never>;
26
22
  static ɵcmp: i0.ɵɵComponentDeclaration<ButtonGroupComponent, "c-button-group", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "vertical": { "alias": "vertical"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
27
23
  }
@@ -5,9 +5,8 @@ export declare class FormDirective {
5
5
  * @type boolean
6
6
  * @default false
7
7
  */
8
- validated: string | boolean;
9
- get hostClasses(): any;
8
+ readonly validated: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
9
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<FormDirective, never>;
11
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormDirective, "form[cForm]", never, { "validated": { "alias": "validated"; "required": false; }; }, {}, never, never, true, never>;
12
- static ngAcceptInputType_validated: unknown;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormDirective, "form[cForm]", never, { "validated": { "alias": "validated"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
13
12
  }
@@ -3,29 +3,27 @@ export declare class FormCheckInputDirective {
3
3
  #private;
4
4
  /**
5
5
  * Specifies the type of component.
6
- * @type {'checkbox' | 'radio'}
7
6
  * @default 'checkbox'
8
7
  */
9
- type: 'checkbox' | 'radio';
8
+ readonly type: import("@angular/core").InputSignal<"checkbox" | "radio">;
10
9
  /**
11
10
  * Set component indeterminate state.
12
- * @type boolean
13
11
  * @default false
14
12
  */
15
- set indeterminate(value: boolean);
13
+ readonly indeterminateInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
16
14
  get indeterminate(): boolean;
17
- private _indeterminate;
18
15
  /**
19
16
  * Set component validation state to valid.
20
- * @type boolean
21
17
  * @default undefined
22
18
  */
23
- valid?: boolean;
24
- get hostClasses(): any;
25
- set checked(value: boolean);
19
+ readonly valid: import("@angular/core").InputSignal<boolean | undefined>;
20
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
21
+ /**
22
+ * Set component checked state.
23
+ * @default false
24
+ */
25
+ readonly checkedInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
26
26
  get checked(): boolean;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<FormCheckInputDirective, never>;
28
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormCheckInputDirective, "input[cFormCheckInput]", never, { "type": { "alias": "type"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "valid": { "alias": "valid"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, {}, never, never, true, never>;
29
- static ngAcceptInputType_indeterminate: unknown;
30
- static ngAcceptInputType_checked: unknown;
28
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormCheckInputDirective, "input[cFormCheckInput]", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "indeterminateInput": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "checkedInput": { "alias": "checked"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
31
29
  }
@@ -1,39 +1,31 @@
1
- import { AfterContentInit } from '@angular/core';
2
1
  import { FormCheckLabelDirective } from './form-check-label.directive';
3
2
  import * as i0 from "@angular/core";
4
- export declare class FormCheckComponent implements AfterContentInit {
5
- #private;
3
+ export declare class FormCheckComponent {
6
4
  /**
7
5
  * Group checkboxes or radios on the same horizontal row.
8
- * @type boolean
9
6
  * @default false
10
7
  */
11
- inline: string | boolean;
8
+ readonly inline: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
12
9
  /**
13
10
  * Put checkboxes or radios on the opposite side.
14
- * @type boolean
15
11
  * @default false
16
12
  * @since 4.4.7
17
13
  */
18
- reverse: string | boolean;
14
+ readonly reverse: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
19
15
  /**
20
16
  * Size the component large or extra large. Works only with `[switch]="true"` [docs]
21
- * @type {'lg' | 'xl' | ''}
17
+ * @default undefined
22
18
  */
23
- sizing?: 'lg' | 'xl' | '';
19
+ readonly sizing: import("@angular/core").InputSignal<string | undefined>;
24
20
  /**
25
21
  * Render a toggle switch on for checkbox.
26
22
  * @type boolean
27
23
  * @default false
28
24
  */
29
- switch: string | boolean;
30
- get hostClasses(): any;
31
- formCheckLabel: FormCheckLabelDirective;
32
- get formCheckClass(): boolean;
33
- ngAfterContentInit(): void;
25
+ readonly switch: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
26
+ readonly formCheckLabel: import("@angular/core").Signal<FormCheckLabelDirective | undefined>;
27
+ readonly formCheckClass: import("@angular/core").Signal<boolean>;
28
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
34
29
  static ɵfac: i0.ɵɵFactoryDeclaration<FormCheckComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<FormCheckComponent, "c-form-check", ["cFormCheck"], { "inline": { "alias": "inline"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "sizing": { "alias": "sizing"; "required": false; }; "switch": { "alias": "switch"; "required": false; }; }, {}, ["formCheckLabel"], ["*"], true, never>;
36
- static ngAcceptInputType_inline: unknown;
37
- static ngAcceptInputType_reverse: unknown;
38
- static ngAcceptInputType_switch: unknown;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormCheckComponent, "c-form-check", ["cFormCheck"], { "inline": { "alias": "inline"; "required": false; "isSignal": true; }; "reverse": { "alias": "reverse"; "required": false; "isSignal": true; }; "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; "switch": { "alias": "switch"; "required": false; "isSignal": true; }; }, {}, ["formCheckLabel"], ["*"], true, never>;
39
31
  }
@@ -5,26 +5,26 @@ export declare class FormControlDirective implements OnInit {
5
5
  #private;
6
6
  /**
7
7
  * Size the component small or large.
8
- * @type {'sm' | 'lg'}
8
+ * @default undefined
9
9
  */
10
- sizing?: '' | 'sm' | 'lg' | string;
10
+ readonly sizing: import("@angular/core").InputSignal<string | undefined>;
11
11
  /**
12
12
  * Set component validation state to valid.
13
- * @type boolean | undefined
13
+ * @default undefined
14
14
  */
15
- valid?: boolean;
15
+ readonly valid: import("@angular/core").InputSignal<boolean | undefined>;
16
16
  /**
17
17
  * Specifies the type of input element.
18
18
  */
19
- type: Omit<InputType, 'checkbox' | 'radio'>;
19
+ readonly type: import("@angular/core").InputSignal<Omit<InputType, "checkbox" | "radio">>;
20
20
  /**
21
- * Render the component styled as plain text. Removes the default form field styling and preserve the correct margin and padding. Recommend to use alongside `readonly` [docs]
21
+ * Render the component styled as plain text. Removes the default form field styling and preserve the correct margin and padding. Recommend to use alongside `readonly`
22
+ * @default false
22
23
  */
23
- plaintext: string | boolean;
24
- get hostClasses(): any;
24
+ readonly plaintext: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
25
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
25
26
  get hostTag(): string;
26
27
  ngOnInit(): void;
27
28
  static ɵfac: i0.ɵɵFactoryDeclaration<FormControlDirective, never>;
28
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlDirective, "input[cFormControl], textarea[cFormControl]", never, { "sizing": { "alias": "sizing"; "required": false; }; "valid": { "alias": "valid"; "required": false; }; "type": { "alias": "type"; "required": false; }; "plaintext": { "alias": "plaintext"; "required": false; }; }, {}, never, never, true, never>;
29
- static ngAcceptInputType_plaintext: unknown;
29
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlDirective, "input[cFormControl], textarea[cFormControl]", never, { "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "plaintext": { "alias": "plaintext"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
30
30
  }
@@ -2,16 +2,15 @@ import * as i0 from "@angular/core";
2
2
  export declare class FormFeedbackComponent {
3
3
  /**
4
4
  * If your form layout allows it, you can display validation feedback in a styled tooltip.
5
- * @type boolean
5
+ * @default false
6
6
  */
7
- tooltip: string | boolean;
7
+ readonly tooltip: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
8
8
  /**
9
9
  * Set component validation state to valid.
10
- * @type boolean
10
+ * @default undefined
11
11
  */
12
- valid?: boolean;
13
- get hostClasses(): any;
12
+ readonly valid: import("@angular/core").InputSignal<boolean | undefined>;
13
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFeedbackComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFeedbackComponent, "c-form-feedback", never, { "tooltip": { "alias": "tooltip"; "required": false; }; "valid": { "alias": "valid"; "required": false; }; }, {}, never, ["*"], true, never>;
16
- static ngAcceptInputType_tooltip: unknown;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFeedbackComponent, "c-form-feedback", never, { "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
17
16
  }
@@ -5,9 +5,7 @@ export declare class FormFloatingDirective {
5
5
  * @type boolean
6
6
  */
7
7
  readonly floating: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
8
- readonly hostClasses: import("@angular/core").Signal<{
9
- 'form-floating': boolean;
10
- }>;
8
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
11
9
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFloatingDirective, never>;
12
10
  static ɵdir: i0.ɵɵDirectiveDeclaration<FormFloatingDirective, "[cFormFloating]", never, { "floating": { "alias": "cFormFloating"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
13
11
  }
@@ -2,14 +2,15 @@ import * as i0 from "@angular/core";
2
2
  export declare class FormLabelDirective {
3
3
  /**
4
4
  * For horizontal forms set labels to 'col' and make them vertically centered with their associated form controls.
5
- * @type 'col'
5
+ * @default ''
6
6
  */
7
- col: 'col' | '';
7
+ readonly col: import("@angular/core").InputSignal<"" | "col">;
8
8
  /**
9
9
  * Size the label small or large.
10
+ * @default ''
10
11
  */
11
- sizing: '' | 'sm' | 'lg' | string;
12
- get hostClasses(): any;
12
+ readonly sizing: import("@angular/core").InputSignal<string | undefined>;
13
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<FormLabelDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormLabelDirective, "[cLabel]", never, { "col": { "alias": "cLabel"; "required": false; }; "sizing": { "alias": "sizing"; "required": false; }; }, {}, never, never, true, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormLabelDirective, "[cLabel]", never, { "col": { "alias": "cLabel"; "required": false; "isSignal": true; }; "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
15
16
  }
@@ -2,14 +2,15 @@ import * as i0 from "@angular/core";
2
2
  export declare class FormSelectDirective {
3
3
  /**
4
4
  * Size the component small or large.
5
+ * @default undefined
5
6
  */
6
- sizing?: '' | 'sm' | 'lg' | string;
7
+ readonly sizing: import("@angular/core").InputSignal<string | undefined>;
7
8
  /**
8
9
  * Set component validation state to valid.
9
- * @type {boolean | undefined}
10
+ * @default undefined
10
11
  */
11
- valid?: boolean;
12
- get hostClasses(): any;
12
+ readonly valid: import("@angular/core").InputSignal<boolean | undefined>;
13
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<FormSelectDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormSelectDirective, "select[cSelect]", never, { "sizing": { "alias": "sizing"; "required": false; }; "valid": { "alias": "valid"; "required": false; }; }, {}, never, never, true, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormSelectDirective, "select[cSelect]", never, { "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
15
16
  }
@@ -3,7 +3,7 @@ export declare class InputGroupComponent {
3
3
  /**
4
4
  * Size the component small or large.
5
5
  */
6
- readonly sizing: import("@angular/core").InputSignal<string>;
6
+ readonly sizing: import("@angular/core").InputSignal<string | undefined>;
7
7
  readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<InputGroupComponent, never>;
9
9
  static ɵcmp: i0.ɵɵComponentDeclaration<InputGroupComponent, "c-input-group", never, { "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
@@ -18,13 +18,7 @@ export declare class ListGroupItemDirective {
18
18
  * @type boolean
19
19
  */
20
20
  readonly disabled: InputSignalWithTransform<boolean, unknown>;
21
- readonly hostClasses: import("@angular/core").Signal<{
22
- [x: string]: boolean;
23
- 'list-group-item': boolean;
24
- 'list-group-item-action': boolean;
25
- active: boolean;
26
- disabled: boolean;
27
- }>;
21
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
28
22
  readonly _disabled: import("@angular/core").Signal<boolean>;
29
23
  readonly ariaDisabled: import("@angular/core").Signal<true | null>;
30
24
  readonly attrDisabled: import("@angular/core").Signal<"" | null>;
@@ -1,81 +1,85 @@
1
1
  import { AnimationEvent } from '@angular/animations';
2
- import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
+ import { AfterViewInit, ElementRef, OnDestroy, OnInit } from '@angular/core';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
5
5
  #private;
6
6
  /**
7
7
  * Align the modal in the center or top of the screen.
8
- * @type {'top' | 'center'}
8
+ * @return {'top' | 'center'}
9
9
  * @default 'top'
10
10
  */
11
- alignment?: 'top' | 'center';
11
+ readonly alignment: import("@angular/core").InputSignal<"top" | "center">;
12
12
  /**
13
13
  * Apply a backdrop on body while modal is open.
14
- * @type boolean | 'static'
14
+ * @return boolean | 'static'
15
15
  * @default true
16
16
  */
17
- backdrop: boolean | 'static';
17
+ readonly backdrop: import("@angular/core").InputSignal<boolean | "static">;
18
18
  /**
19
19
  * Set modal to cover the entire user viewport.
20
- * @type {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
20
+ * @return {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
21
21
  * @default undefined
22
22
  */
23
- fullscreen?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
23
+ readonly fullscreen: import("@angular/core").InputSignal<boolean | "sm" | "md" | "lg" | "xl" | "xxl" | undefined>;
24
24
  /**
25
25
  * Closes the modal when escape key is pressed.
26
- * @type boolean
26
+ * @return boolean
27
27
  * @default true
28
28
  */
29
- keyboard: boolean;
30
- id?: string;
29
+ readonly keyboard: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
30
+ readonly attrId: import("@angular/core").InputSignal<string | undefined>;
31
+ get id(): string | undefined;
31
32
  /**
32
33
  * Size the component small, large, or extra large.
34
+ * @return {'sm' | 'lg' | 'xl'}
35
+ * @default undefined
33
36
  */
34
- size?: 'sm' | 'lg' | 'xl';
37
+ readonly size: import("@angular/core").InputSignal<"sm" | "lg" | "xl" | undefined>;
35
38
  /**
36
39
  * Remove animation to create modal that simply appear rather than fade in to view.
37
40
  */
38
- transition: boolean;
41
+ readonly transition: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
39
42
  /**
40
- * Default role for modal. [docs]
41
- * @type string
43
+ * Default role for modal
44
+ * @return string
42
45
  * @default 'dialog'
43
46
  */
44
- role: string;
47
+ readonly role: import("@angular/core").InputSignal<string>;
45
48
  /**
46
- * Set aria-modal html attr for modal. [docs]
49
+ * Set aria-modal html attr for modal
47
50
  * @type boolean
48
51
  * @default null
49
52
  */
50
- set ariaModal(value: boolean | null);
51
- get ariaModal(): boolean | null;
53
+ readonly ariaModalInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
54
+ readonly ariaModal: import("@angular/core").Signal<true | null>;
52
55
  /**
53
56
  * Create a scrollable modal that allows scrolling the modal body.
54
- * @type boolean
57
+ * @return boolean
58
+ * @default false
55
59
  */
56
- scrollable: boolean;
60
+ readonly scrollable: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
57
61
  /**
58
62
  * Toggle the visibility of modal component.
59
- * @type boolean
63
+ * @return boolean
64
+ * @default false
60
65
  */
66
+ readonly visibleInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
61
67
  set visible(value: boolean);
62
68
  get visible(): boolean;
63
69
  /**
64
70
  * Event triggered on modal dismiss.
71
+ * @return boolean
65
72
  */
66
- visibleChange: EventEmitter<boolean>;
67
- modalContent: ElementRef;
68
- modalContentRef: ElementRef;
69
- get hostClasses(): any;
73
+ readonly visibleChange: import("@angular/core").OutputEmitterRef<boolean>;
74
+ readonly modalContentRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
75
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
70
76
  get ariaHidden(): boolean | null;
71
- get tabIndex(): string | null;
72
- get animateTrigger(): string;
77
+ readonly animateTrigger: import("@angular/core").Signal<"hidden" | "visible">;
73
78
  get show(): boolean;
74
79
  set show(value: boolean);
75
- private _show;
76
80
  animateStart(event: AnimationEvent): void;
77
81
  animateDone(event: AnimationEvent): void;
78
- onKeyDownHandler(event: KeyboardEvent): void;
82
+ onKeyUpHandler(event: KeyboardEvent): void;
79
83
  private mouseDownTarget;
80
84
  onMouseDownHandler($event: MouseEvent): void;
81
85
  onClickHandler($event: MouseEvent): void;
@@ -87,9 +91,5 @@ export declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit
87
91
  private setBodyStyles;
88
92
  private setStaticBackdrop;
89
93
  static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>;
90
- static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "c-modal", ["cModal"], { "alignment": { "alias": "alignment"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "keyboard": { "alias": "keyboard"; "required": false; }; "id": { "alias": "id"; "required": false; }; "size": { "alias": "size"; "required": false; }; "transition": { "alias": "transition"; "required": false; }; "role": { "alias": "role"; "required": false; }; "ariaModal": { "alias": "ariaModal"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, never>;
91
- static ngAcceptInputType_keyboard: unknown;
92
- static ngAcceptInputType_transition: unknown;
93
- static ngAcceptInputType_scrollable: unknown;
94
- static ngAcceptInputType_visible: unknown;
94
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "c-modal", ["cModal"], { "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "backdrop": { "alias": "backdrop"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; "keyboard": { "alias": "keyboard"; "required": false; "isSignal": true; }; "attrId": { "alias": "id"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "transition": { "alias": "transition"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "ariaModalInput": { "alias": "ariaModal"; "required": false; "isSignal": true; }; "scrollable": { "alias": "scrollable"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, never>;
95
95
  }
@@ -2,24 +2,27 @@ import * as i0 from "@angular/core";
2
2
  export declare class ModalDialogComponent {
3
3
  /**
4
4
  * Align the modal in the center or top of the screen.
5
- * @type {'top' | 'center'}
5
+ * @default undefined
6
6
  */
7
- alignment?: 'top' | 'center';
7
+ readonly alignment: import("@angular/core").InputSignal<"top" | "center" | undefined>;
8
8
  /**
9
9
  * Set modal to covers the entire user viewport.
10
- * @type {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
10
+ * @return {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
11
11
  */
12
- fullscreen?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
12
+ readonly fullscreen: import("@angular/core").InputSignal<boolean | "sm" | "md" | "lg" | "xl" | "xxl" | undefined>;
13
13
  /**
14
14
  * Does the modal dialog itself scroll, or does the whole dialog scroll within the window.
15
- * @type boolean
15
+ * @default false
16
+ * @return {boolean}
16
17
  */
17
- scrollable?: boolean;
18
+ readonly scrollable: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
18
19
  /**
19
20
  * Size the component small, large, or extra large.
21
+ * @default undefined
22
+ * @return {'sm' | 'lg' | 'xl'}
20
23
  */
21
- size?: 'sm' | 'lg' | 'xl';
22
- get hostClasses(): any;
24
+ readonly size: import("@angular/core").InputSignal<"sm" | "lg" | "xl" | undefined>;
25
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
23
26
  static ɵfac: i0.ɵɵFactoryDeclaration<ModalDialogComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<ModalDialogComponent, "c-modal-dialog", never, { "alignment": { "alias": "alignment"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], true, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalDialogComponent, "c-modal-dialog", never, { "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; "scrollable": { "alias": "scrollable"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
25
28
  }
@@ -3,9 +3,10 @@ export declare class ModalToggleDirective {
3
3
  #private;
4
4
  /**
5
5
  * Html id attr of modal to dismiss.
6
+ * @default undefined
6
7
  */
7
- id: string | undefined;
8
+ readonly toggle: import("@angular/core").InputSignal<string | undefined>;
8
9
  dismiss($event: any): void;
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<ModalToggleDirective, never>;
10
- static ɵdir: i0.ɵɵDirectiveDeclaration<ModalToggleDirective, "[cModalToggle]", never, { "id": { "alias": "cModalToggle"; "required": false; }; }, {}, never, never, true, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ModalToggleDirective, "[cModalToggle]", never, { "toggle": { "alias": "cModalToggle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11
12
  }
@@ -6,8 +6,8 @@ export interface IModalAction {
6
6
  id?: string;
7
7
  }
8
8
  export declare class ModalService {
9
- private modalState;
10
- modalState$: import("rxjs").Observable<any>;
9
+ #private;
10
+ readonly modalState$: import("rxjs").Observable<any>;
11
11
  toggle(action: IModalAction): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<ModalService, never>;
13
13
  static ɵprov: i0.ɵɵInjectableDeclaration<ModalService>;
@@ -1,29 +1,27 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class NavLinkDirective {
3
+ #private;
3
4
  /**
4
5
  * Sets .nav-link class to the host. [docs]
5
- * @type boolean
6
6
  * @default true
7
7
  */
8
- cNavLink: string | boolean;
8
+ readonly cNavLink: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
9
9
  /**
10
10
  * Toggle the active state for the component. [docs]
11
- * @type boolean
11
+ * @default undefined
12
12
  */
13
- active?: boolean;
13
+ readonly active: import("@angular/core").InputSignal<boolean | undefined>;
14
14
  /**
15
15
  * Set disabled attr for the host element. [docs]
16
- * @type boolean
16
+ * @default false
17
17
  */
18
- disabled: string | boolean;
19
- get ariaCurrent(): string | null;
20
- get isDisabled(): boolean | null;
21
- get attrDisabled(): "" | null;
22
- get getTabindex(): string | null;
23
- get getCursorStyle(): string | null;
24
- get hostClasses(): any;
18
+ readonly disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
19
+ readonly ariaCurrent: import("@angular/core").Signal<"page" | null>;
20
+ ariaDisabled: boolean | null;
21
+ attrDisabled: boolean | string | null;
22
+ attrTabindex: '-1' | null;
23
+ styleCursor: 'pointer' | null;
24
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<NavLinkDirective, never>;
26
- static ɵdir: i0.ɵɵDirectiveDeclaration<NavLinkDirective, "[cNavLink]", never, { "cNavLink": { "alias": "cNavLink"; "required": false; }; "active": { "alias": "active"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
27
- static ngAcceptInputType_cNavLink: unknown;
28
- static ngAcceptInputType_disabled: unknown;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NavLinkDirective, "[cNavLink]", never, { "cNavLink": { "alias": "cNavLink"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
29
27
  }
@@ -2,15 +2,15 @@ import * as i0 from "@angular/core";
2
2
  export declare class NavComponent {
3
3
  /**
4
4
  * Specify a layout type for component.
5
- * @type {'fill' | 'justified'}
5
+ * @default undefined
6
6
  */
7
- layout?: 'fill' | 'justified';
7
+ readonly layout: import("@angular/core").InputSignal<"fill" | "justified" | undefined>;
8
8
  /**
9
9
  * Set the nav variant to tabs or pills.
10
- * @type 'tabs' | 'pills' | 'underline' | 'underline-border'
10
+ * @default undefined
11
11
  */
12
- variant?: '' | 'tabs' | 'pills' | 'underline' | 'underline-border';
13
- get hostClasses(): any;
12
+ readonly variant: import("@angular/core").InputSignal<"" | "tabs" | "pills" | "underline" | "underline-border" | undefined>;
13
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<NavComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<NavComponent, "c-nav", never, { "layout": { "alias": "layout"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavComponent, "c-nav", never, { "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
16
16
  }
@@ -9,9 +9,7 @@ export declare class PlaceholderAnimationDirective {
9
9
  */
10
10
  readonly animation: InputSignal<'glow' | 'wave' | undefined>;
11
11
  readonly placeholder: import("@angular/core").Signal<PlaceholderDirective | undefined>;
12
- readonly hostClasses: import("@angular/core").Signal<{
13
- [x: string]: boolean | undefined;
14
- }>;
12
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
15
13
  static ɵfac: i0.ɵɵFactoryDeclaration<PlaceholderAnimationDirective, never>;
16
14
  static ɵdir: i0.ɵɵDirectiveDeclaration<PlaceholderAnimationDirective, "[cPlaceholderAnimation]", never, { "animation": { "alias": "cPlaceholderAnimation"; "required": false; "isSignal": true; }; }, {}, ["placeholder"], never, true, never>;
17
15
  }
@@ -12,10 +12,7 @@ export declare class PlaceholderDirective {
12
12
  */
13
13
  readonly size: import("@angular/core").InputSignal<"xs" | "sm" | "lg" | undefined>;
14
14
  readonly ariaHidden: import("@angular/core").Signal<true | null>;
15
- readonly hostClasses: import("@angular/core").Signal<{
16
- [x: string]: boolean;
17
- placeholder: boolean;
18
- }>;
15
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
19
16
  static ɵfac: i0.ɵɵFactoryDeclaration<PlaceholderDirective, never>;
20
17
  static ɵdir: i0.ɵɵDirectiveDeclaration<PlaceholderDirective, "[cPlaceholder]", ["cPlaceholder"], { "visible": { "alias": "cPlaceholder"; "required": false; "isSignal": true; }; "size": { "alias": "cPlaceholderSize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
21
18
  }
@@ -1,13 +1,13 @@
1
1
  import { OnDestroy, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class PopoverComponent implements OnDestroy {
4
+ #private;
4
5
  readonly renderer: Renderer2;
5
6
  /**
6
7
  * Content of popover
7
8
  * @type {string | TemplateRef}
8
9
  */
9
10
  readonly content: import("@angular/core").InputSignal<string | TemplateRef<any>>;
10
- readonly contentEffect: import("@angular/core").EffectRef;
11
11
  /**
12
12
  * Toggle the visibility of popover component.
13
13
  * @type boolean