@coreui/angular-pro 5.3.6 → 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.
- package/LICENSE +1 -1
- package/README.md +2 -2
- package/fesm2022/coreui-angular-pro.mjs +1868 -1893
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/accordion/accordion-button/accordion-button.directive.d.ts +1 -4
- package/lib/accordion/accordion-item/accordion-item.component.d.ts +0 -1
- package/lib/button-group/button-group/button-group.component.d.ts +1 -5
- package/lib/collapse/collapse.directive.d.ts +1 -3
- package/lib/form/form/form.directive.d.ts +3 -4
- package/lib/form/form-check/form-check-input.directive.d.ts +10 -12
- package/lib/form/form-check/form-check.component.d.ts +10 -18
- package/lib/form/form-control/form-control.directive.d.ts +10 -10
- package/lib/form/form-feedback/form-feedback.component.d.ts +6 -7
- package/lib/form/form-floating/form-floating.directive.d.ts +1 -3
- package/lib/form/form-label/form-label.directive.d.ts +6 -5
- package/lib/form/form-select/form-select.directive.d.ts +6 -5
- package/lib/form/input-group/input-group.component.d.ts +1 -1
- package/lib/list-group/list-group-item.directive.d.ts +1 -7
- package/lib/modal/modal/modal.component.d.ts +34 -34
- package/lib/modal/modal-dialog/modal-dialog.component.d.ts +12 -9
- package/lib/modal/modal-dismiss/modal-toggle.directive.d.ts +3 -2
- package/lib/modal/modal.service.d.ts +2 -2
- package/lib/nav/nav-link.directive.d.ts +13 -15
- package/lib/nav/nav.component.d.ts +6 -6
- package/lib/placeholder/placeholder-animation.directive.d.ts +1 -3
- package/lib/placeholder/placeholder.directive.d.ts +1 -4
- package/lib/popover/popover/popover.component.d.ts +1 -1
- package/lib/popover/popover.directive.d.ts +1 -4
- package/lib/progress/progress-bar.component.d.ts +2 -2
- package/lib/progress/progress-bar.directive.d.ts +13 -30
- package/lib/progress/progress-stacked.component.d.ts +3 -4
- package/lib/progress/progress.component.d.ts +15 -17
- package/lib/progress/progress.service.d.ts +11 -0
- package/lib/services/color-mode.service.d.ts +0 -1
- package/lib/shared/html-attr.directive.d.ts +0 -1
- package/lib/spinner/spinner.component.d.ts +1 -3
- package/lib/table/table-active.directive.d.ts +3 -5
- package/lib/table/table-color.directive.d.ts +4 -5
- package/lib/table/table.directive.d.ts +25 -35
- package/lib/tabs-2/tab/tab.directive.d.ts +5 -10
- package/lib/tabs-2/tab-panel/tab-panel.component.d.ts +1 -7
- package/lib/tabs-2/tabs-list/tabs-list.component.d.ts +1 -6
- package/lib/tabs-2/tabs.component.d.ts +1 -2
- package/lib/toast/toast/toast.component.d.ts +14 -15
- package/lib/toast/toast-body/toast-body.component.d.ts +1 -2
- package/lib/toast/toast-close.directive.d.ts +4 -3
- package/lib/toast/toast-header/toast-header.component.d.ts +5 -5
- package/lib/toast/toaster/toaster.component.d.ts +12 -13
- package/lib/toast/toaster/toaster.service.d.ts +1 -1
- package/lib/tooltip/tooltip/tooltip.component.d.ts +1 -1
- package/lib/tooltip/tooltip.directive.d.ts +0 -3
- package/lib/utilities/align.directive.d.ts +4 -4
- package/lib/utilities/bg-color.directive.d.ts +5 -6
- package/lib/utilities/border.directive.d.ts +4 -4
- package/lib/utilities/rounded.directive.d.ts +3 -3
- package/lib/utilities/shadow-on-scroll.directive.d.ts +2 -2
- package/lib/widget/widget-stat-a/widget-stat-a.component.d.ts +1 -1
- package/lib/widget/widget-stat-c/widget-stat-c.component.d.ts +1 -1
- package/lib/widget/widget-stat-f/widget-stat-f.component.d.ts +1 -1
- 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
|
}
|
|
@@ -2,12 +2,12 @@ import { OnDestroy } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class CollapseDirective implements OnDestroy {
|
|
4
4
|
#private;
|
|
5
|
+
constructor();
|
|
5
6
|
/**
|
|
6
7
|
* @ignore
|
|
7
8
|
*/
|
|
8
9
|
readonly animateInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
9
10
|
readonly animate: import("@angular/core").WritableSignal<boolean>;
|
|
10
|
-
readonly animateInputEffect: import("@angular/core").EffectRef;
|
|
11
11
|
/**
|
|
12
12
|
* Set horizontal collapsing to transition the width instead of height.
|
|
13
13
|
* @type boolean
|
|
@@ -21,9 +21,7 @@ export declare class CollapseDirective implements OnDestroy {
|
|
|
21
21
|
*/
|
|
22
22
|
readonly visibleInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
23
23
|
readonly visibleChange: import("@angular/core").OutputEmitterRef<boolean>;
|
|
24
|
-
readonly visibleInputEffect: import("@angular/core").EffectRef;
|
|
25
24
|
readonly visible: import("@angular/core").WritableSignal<boolean>;
|
|
26
|
-
readonly visibleEffect: import("@angular/core").EffectRef;
|
|
27
25
|
/**
|
|
28
26
|
* Add `navbar` prop for grouping and hiding navbar contents by a parent breakpoint.
|
|
29
27
|
* @type boolean
|
|
@@ -5,9 +5,8 @@ export declare class FormDirective {
|
|
|
5
5
|
* @type boolean
|
|
6
6
|
* @default false
|
|
7
7
|
*/
|
|
8
|
-
validated:
|
|
9
|
-
|
|
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:
|
|
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
|
-
|
|
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
|
|
24
|
-
|
|
25
|
-
|
|
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; }; "
|
|
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
|
|
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:
|
|
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:
|
|
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
|
-
* @
|
|
17
|
+
* @default undefined
|
|
22
18
|
*/
|
|
23
|
-
sizing
|
|
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:
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
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
|
-
* @
|
|
8
|
+
* @default undefined
|
|
9
9
|
*/
|
|
10
|
-
sizing
|
|
10
|
+
readonly sizing: import("@angular/core").InputSignal<string | undefined>;
|
|
11
11
|
/**
|
|
12
12
|
* Set component validation state to valid.
|
|
13
|
-
* @
|
|
13
|
+
* @default undefined
|
|
14
14
|
*/
|
|
15
|
-
valid
|
|
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,
|
|
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`
|
|
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:
|
|
24
|
-
|
|
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
|
-
* @
|
|
5
|
+
* @default false
|
|
6
6
|
*/
|
|
7
|
-
tooltip:
|
|
7
|
+
readonly tooltip: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
8
8
|
/**
|
|
9
9
|
* Set component validation state to valid.
|
|
10
|
-
* @
|
|
10
|
+
* @default undefined
|
|
11
11
|
*/
|
|
12
|
-
valid
|
|
13
|
-
|
|
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
|
-
* @
|
|
5
|
+
* @default ''
|
|
6
6
|
*/
|
|
7
|
-
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:
|
|
12
|
-
|
|
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
|
|
7
|
+
readonly sizing: import("@angular/core").InputSignal<string | undefined>;
|
|
7
8
|
/**
|
|
8
9
|
* Set component validation state to valid.
|
|
9
|
-
* @
|
|
10
|
+
* @default undefined
|
|
10
11
|
*/
|
|
11
|
-
valid
|
|
12
|
-
|
|
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,
|
|
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
|
-
* @
|
|
8
|
+
* @return {'top' | 'center'}
|
|
9
9
|
* @default 'top'
|
|
10
10
|
*/
|
|
11
|
-
alignment
|
|
11
|
+
readonly alignment: import("@angular/core").InputSignal<"top" | "center">;
|
|
12
12
|
/**
|
|
13
13
|
* Apply a backdrop on body while modal is open.
|
|
14
|
-
* @
|
|
14
|
+
* @return boolean | 'static'
|
|
15
15
|
* @default true
|
|
16
16
|
*/
|
|
17
|
-
backdrop: boolean |
|
|
17
|
+
readonly backdrop: import("@angular/core").InputSignal<boolean | "static">;
|
|
18
18
|
/**
|
|
19
19
|
* Set modal to cover the entire user viewport.
|
|
20
|
-
* @
|
|
20
|
+
* @return {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
|
|
21
21
|
* @default undefined
|
|
22
22
|
*/
|
|
23
|
-
fullscreen
|
|
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
|
-
* @
|
|
26
|
+
* @return boolean
|
|
27
27
|
* @default true
|
|
28
28
|
*/
|
|
29
|
-
keyboard: boolean
|
|
30
|
-
|
|
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
|
|
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
|
|
41
|
-
* @
|
|
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
|
|
49
|
+
* Set aria-modal html attr for modal
|
|
47
50
|
* @type boolean
|
|
48
51
|
* @default null
|
|
49
52
|
*/
|
|
50
|
-
|
|
51
|
-
|
|
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
|
-
* @
|
|
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
|
-
* @
|
|
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:
|
|
67
|
-
|
|
68
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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; }; "
|
|
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
|
-
* @
|
|
5
|
+
* @default undefined
|
|
6
6
|
*/
|
|
7
|
-
alignment
|
|
7
|
+
readonly alignment: import("@angular/core").InputSignal<"top" | "center" | undefined>;
|
|
8
8
|
/**
|
|
9
9
|
* Set modal to covers the entire user viewport.
|
|
10
|
-
* @
|
|
10
|
+
* @return {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
|
|
11
11
|
*/
|
|
12
|
-
fullscreen
|
|
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
|
-
* @
|
|
15
|
+
* @default false
|
|
16
|
+
* @return {boolean}
|
|
16
17
|
*/
|
|
17
|
-
scrollable
|
|
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
|
|
22
|
-
|
|
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
|
-
|
|
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, { "
|
|
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
|
|
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:
|
|
8
|
+
readonly cNavLink: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
9
9
|
/**
|
|
10
10
|
* Toggle the active state for the component. [docs]
|
|
11
|
-
* @
|
|
11
|
+
* @default undefined
|
|
12
12
|
*/
|
|
13
|
-
active
|
|
13
|
+
readonly active: import("@angular/core").InputSignal<boolean | undefined>;
|
|
14
14
|
/**
|
|
15
15
|
* Set disabled attr for the host element. [docs]
|
|
16
|
-
* @
|
|
16
|
+
* @default false
|
|
17
17
|
*/
|
|
18
|
-
disabled:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
-
* @
|
|
5
|
+
* @default undefined
|
|
6
6
|
*/
|
|
7
|
-
layout
|
|
7
|
+
readonly layout: import("@angular/core").InputSignal<"fill" | "justified" | undefined>;
|
|
8
8
|
/**
|
|
9
9
|
* Set the nav variant to tabs or pills.
|
|
10
|
-
* @
|
|
10
|
+
* @default undefined
|
|
11
11
|
*/
|
|
12
|
-
variant
|
|
13
|
-
|
|
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
|
}
|