@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
|
@@ -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
|
|
@@ -10,13 +10,11 @@ export declare class PopoverDirective implements OnDestroy, OnInit, AfterViewIni
|
|
|
10
10
|
* @type {string | TemplateRef}
|
|
11
11
|
*/
|
|
12
12
|
readonly content: import("@angular/core").InputSignal<string | TemplateRef<any> | undefined>;
|
|
13
|
-
readonly contentEffect: import("@angular/core").EffectRef;
|
|
14
13
|
/**
|
|
15
14
|
* Optional popper Options object, takes precedence over cPopoverPlacement prop
|
|
16
|
-
* @
|
|
15
|
+
* @return Partial<Options>
|
|
17
16
|
*/
|
|
18
17
|
readonly popperOptions: import("@angular/core").InputSignal<Partial<Options>>;
|
|
19
|
-
readonly popperOptionsEffect: import("@angular/core").EffectRef;
|
|
20
18
|
readonly popperOptionsComputed: import("@angular/core").Signal<{
|
|
21
19
|
placement: import("@popperjs/core").Placement;
|
|
22
20
|
modifiers?: Partial<import("@popperjs/core").Modifier<any, any>>[] | undefined;
|
|
@@ -46,7 +44,6 @@ export declare class PopoverDirective implements OnDestroy, OnInit, AfterViewIni
|
|
|
46
44
|
* @type boolean
|
|
47
45
|
*/
|
|
48
46
|
readonly visible: import("@angular/core").ModelSignal<boolean>;
|
|
49
|
-
readonly visibleEffect: import("@angular/core").EffectRef;
|
|
50
47
|
get ariaDescribedBy(): string | null;
|
|
51
48
|
private tooltip;
|
|
52
49
|
private tooltipId;
|
|
@@ -2,7 +2,7 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./progress-bar.directive";
|
|
3
3
|
export declare class ProgressBarComponent {
|
|
4
4
|
#private;
|
|
5
|
-
|
|
5
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "c-progress-bar", never, {}, {}, never, ["*"], true, [{ directive: typeof i1.ProgressBarDirective; inputs: { "animated": "animated"; "color": "color"; "max": "max"; "role": "role"; "
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "c-progress-bar", never, {}, {}, never, ["*"], true, [{ directive: typeof i1.ProgressBarDirective; inputs: { "animated": "animated"; "color": "color"; "max": "max"; "role": "role"; "value": "value"; "variant": "variant"; }; outputs: {}; }]>;
|
|
8
8
|
}
|
|
@@ -1,57 +1,40 @@
|
|
|
1
|
-
import { Colors } from '../coreui.types';
|
|
2
|
-
import { IProgressBar } from './progress.type';
|
|
3
1
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ProgressBarDirective
|
|
2
|
+
export declare class ProgressBarDirective {
|
|
5
3
|
#private;
|
|
6
|
-
readonly percent: import("@angular/core").Signal<number>;
|
|
7
4
|
/**
|
|
8
5
|
* Use to animate the stripes right to left via CSS3 animations.
|
|
9
|
-
* @
|
|
6
|
+
* @return boolean
|
|
10
7
|
*/
|
|
11
|
-
animated
|
|
8
|
+
readonly animated: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
12
9
|
/**
|
|
13
10
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
14
11
|
* @values 'primary', 'secondary', 'success', 'danger', 'warning', 'info', 'dark', 'light'
|
|
15
12
|
*/
|
|
16
|
-
color
|
|
17
|
-
precision: number
|
|
13
|
+
readonly color: import("@angular/core").InputSignal<string | undefined>;
|
|
14
|
+
readonly precision: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
18
15
|
/**
|
|
19
16
|
* The percent value the ProgressBar.
|
|
20
|
-
* @
|
|
17
|
+
* @return number
|
|
21
18
|
* @default 0
|
|
22
19
|
*/
|
|
23
|
-
|
|
24
|
-
get value(): number | undefined;
|
|
25
|
-
set width(value: number | undefined);
|
|
20
|
+
readonly value: import("@angular/core").InputSignalWithTransform<number | undefined, unknown>;
|
|
26
21
|
/**
|
|
27
22
|
* Set the progress bar variant to optional striped.
|
|
28
23
|
* @values 'striped'
|
|
29
24
|
* @default undefined
|
|
30
25
|
*/
|
|
31
|
-
variant
|
|
26
|
+
readonly variant: import("@angular/core").InputSignal<"striped" | undefined>;
|
|
32
27
|
/**
|
|
33
28
|
* The max value of the ProgressBar.
|
|
34
|
-
* @
|
|
29
|
+
* @return number
|
|
35
30
|
* @default 100
|
|
36
31
|
*/
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* Stacked ProgressBars.
|
|
40
|
-
* @type boolean
|
|
41
|
-
* @default false
|
|
42
|
-
*/
|
|
43
|
-
stacked?: boolean;
|
|
32
|
+
readonly max: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
44
33
|
/**
|
|
45
34
|
* Set default html role attribute.
|
|
46
|
-
* @
|
|
35
|
+
* @return string
|
|
47
36
|
*/
|
|
48
|
-
role: string
|
|
37
|
+
readonly role: import("@angular/core").InputSignal<string>;
|
|
49
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarDirective, never>;
|
|
50
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ProgressBarDirective, "[cProgressBar]",
|
|
51
|
-
static ngAcceptInputType_animated: unknown;
|
|
52
|
-
static ngAcceptInputType_precision: unknown;
|
|
53
|
-
static ngAcceptInputType_value: unknown;
|
|
54
|
-
static ngAcceptInputType_width: unknown;
|
|
55
|
-
static ngAcceptInputType_max: unknown;
|
|
56
|
-
static ngAcceptInputType_stacked: unknown;
|
|
39
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ProgressBarDirective, "[cProgressBar]", ["cProgressBar"], { "animated": { "alias": "animated"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "precision": { "alias": "precision"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
57
40
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { IProgressBarStacked } from './progress.type';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ProgressStackedComponent
|
|
4
|
-
stacked: boolean
|
|
2
|
+
export declare class ProgressStackedComponent {
|
|
3
|
+
readonly stacked: import("@angular/core").InputSignal<boolean>;
|
|
5
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressStackedComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressStackedComponent, "c-progress-stacked",
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressStackedComponent, "c-progress-stacked", ["cProgressStacked"], { "stacked": { "alias": "stacked"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
6
|
}
|
|
@@ -1,34 +1,32 @@
|
|
|
1
|
-
import { QueryList } from '@angular/core';
|
|
2
|
-
import { IProgress } from './progress.type';
|
|
3
1
|
import { ProgressBarComponent } from './progress-bar.component';
|
|
4
2
|
import { ProgressBarDirective } from './progress-bar.directive';
|
|
5
3
|
import * as i0 from "@angular/core";
|
|
6
4
|
import * as i1 from "./progress-bar.directive";
|
|
7
|
-
export declare class ProgressComponent
|
|
5
|
+
export declare class ProgressComponent {
|
|
8
6
|
#private;
|
|
9
|
-
protected readonly
|
|
7
|
+
protected readonly progressBarDirective: ProgressBarDirective | null;
|
|
10
8
|
constructor();
|
|
11
|
-
|
|
9
|
+
readonly stacked: import("@angular/core").WritableSignal<boolean>;
|
|
10
|
+
readonly percent: import("@angular/core").Signal<number>;
|
|
11
|
+
readonly value: import("@angular/core").WritableSignal<number | undefined>;
|
|
12
|
+
readonly contentProgressBars: import("@angular/core").Signal<readonly ProgressBarComponent[]>;
|
|
12
13
|
/**
|
|
13
14
|
* Sets the height of the component. If you set that value the inner `<CProgressBar>` will automatically resize accordingly.
|
|
14
|
-
* @
|
|
15
|
+
* @return number
|
|
15
16
|
*/
|
|
16
|
-
height: number
|
|
17
|
+
readonly height: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
17
18
|
/**
|
|
18
19
|
* Displays thin progress.
|
|
19
|
-
* @
|
|
20
|
+
* @return boolean
|
|
20
21
|
*/
|
|
21
|
-
thin: boolean
|
|
22
|
+
readonly thin: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
22
23
|
/**
|
|
23
24
|
* Change the default color to white.
|
|
24
|
-
* @
|
|
25
|
+
* @return boolean
|
|
25
26
|
*/
|
|
26
|
-
white: boolean
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
readonly white: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
28
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
29
|
+
readonly hostStyle: import("@angular/core").Signal<any>;
|
|
29
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressComponent, "c-progress",
|
|
31
|
-
static ngAcceptInputType_height: unknown;
|
|
32
|
-
static ngAcceptInputType_thin: unknown;
|
|
33
|
-
static ngAcceptInputType_white: unknown;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressComponent, "c-progress", ["cProgress"], { "height": { "alias": "height"; "required": false; "isSignal": true; }; "thin": { "alias": "thin"; "required": false; "isSignal": true; }; "white": { "alias": "white"; "required": false; "isSignal": true; }; }, {}, ["contentProgressBars"], ["*"], true, [{ directive: typeof i1.ProgressBarDirective; inputs: { "animated": "animated"; "color": "color"; "max": "max"; "role": "role"; "value": "value"; "variant": "variant"; }; outputs: {}; }]>;
|
|
34
32
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ProgressService {
|
|
3
|
+
readonly stacked: import("@angular/core").WritableSignal<boolean>;
|
|
4
|
+
readonly value: import("@angular/core").WritableSignal<number | undefined>;
|
|
5
|
+
readonly precision: import("@angular/core").WritableSignal<number>;
|
|
6
|
+
readonly min: import("@angular/core").WritableSignal<number>;
|
|
7
|
+
readonly max: import("@angular/core").WritableSignal<number>;
|
|
8
|
+
readonly percent: import("@angular/core").Signal<number>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProgressService>;
|
|
11
|
+
}
|
|
@@ -7,7 +7,6 @@ export declare class ColorModeService {
|
|
|
7
7
|
readonly localStorageItemName: WritableSignal<string | undefined>;
|
|
8
8
|
readonly localStorageItemName$: import("rxjs").Observable<string | undefined>;
|
|
9
9
|
readonly colorMode: WritableSignal<ColorMode>;
|
|
10
|
-
readonly colorModeEffect: import("@angular/core").EffectRef;
|
|
11
10
|
constructor();
|
|
12
11
|
getStoredTheme(localStorageItemName: string): any;
|
|
13
12
|
setStoredTheme(localStorageItemName: string, colorMode: string): void;
|
|
@@ -2,7 +2,6 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class HtmlAttributesDirective {
|
|
3
3
|
#private;
|
|
4
4
|
readonly cHtmlAttr: import("@angular/core").InputSignal<Record<string, any> | undefined>;
|
|
5
|
-
readonly attrEffect: import("@angular/core").EffectRef;
|
|
6
5
|
private setStyle;
|
|
7
6
|
private addClass;
|
|
8
7
|
private setAttrib;
|
|
@@ -29,9 +29,7 @@ export declare class SpinnerComponent {
|
|
|
29
29
|
* @default 'status'
|
|
30
30
|
*/
|
|
31
31
|
readonly role: import("@angular/core").InputSignal<string>;
|
|
32
|
-
readonly hostClasses: import("@angular/core").Signal<
|
|
33
|
-
[x: string]: boolean;
|
|
34
|
-
}>;
|
|
32
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
35
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerComponent, never>;
|
|
36
34
|
static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerComponent, "c-spinner", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
37
35
|
}
|
|
@@ -2,11 +2,9 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class TableActiveDirective {
|
|
3
3
|
/**
|
|
4
4
|
* Highlight a table row or cell
|
|
5
|
-
* @
|
|
5
|
+
* @return boolean
|
|
6
6
|
*/
|
|
7
|
-
active:
|
|
8
|
-
get hostClasses(): any;
|
|
7
|
+
readonly active: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
9
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableActiveDirective, never>;
|
|
10
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableActiveDirective, "[cTableActive]",
|
|
11
|
-
static ngAcceptInputType_active: unknown;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableActiveDirective, "[cTableActive]", ["cTableActive"], { "active": { "alias": "cTableActive"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12
10
|
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import { Colors } from '../coreui.types';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class TableColorDirective {
|
|
4
3
|
/**
|
|
5
4
|
* Use contextual color for tables, table rows or individual cells.
|
|
6
|
-
* @
|
|
5
|
+
* @return Colors
|
|
7
6
|
*/
|
|
8
|
-
color
|
|
9
|
-
|
|
7
|
+
readonly color: import("@angular/core").InputSignal<string | undefined>;
|
|
8
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
10
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableColorDirective, never>;
|
|
11
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableColorDirective, "[cTableColor]",
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableColorDirective, "[cTableColor]", ["cTableColor"], { "color": { "alias": "cTableColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12
11
|
}
|
|
@@ -1,75 +1,65 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { Breakpoints, Colors } from '../coreui.types';
|
|
3
|
-
import { ITable } from './table.type';
|
|
4
1
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TableDirective
|
|
2
|
+
export declare class TableDirective {
|
|
6
3
|
#private;
|
|
7
4
|
/**
|
|
8
5
|
* Set the vertical alignment.
|
|
9
|
-
* @
|
|
6
|
+
* @return string
|
|
10
7
|
* @values 'bottom' | 'middle' | 'top'
|
|
11
8
|
*/
|
|
12
|
-
align
|
|
9
|
+
readonly align: import("@angular/core").InputSignal<"top" | "middle" | "bottom" | undefined>;
|
|
13
10
|
/**
|
|
14
11
|
* Sets the border color of the component to one of CoreUI’s themed colors.
|
|
15
|
-
* @
|
|
12
|
+
* @return Colors
|
|
16
13
|
*/
|
|
17
|
-
borderColor
|
|
14
|
+
readonly borderColor: import("@angular/core").InputSignal<string | undefined>;
|
|
18
15
|
/**
|
|
19
16
|
* Add borders on all sides of the table and cells.
|
|
20
|
-
* @
|
|
17
|
+
* @return boolean
|
|
21
18
|
*/
|
|
22
|
-
bordered:
|
|
19
|
+
readonly bordered: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
23
20
|
/**
|
|
24
21
|
* Remove borders on all sides of the table and cells.
|
|
25
|
-
* @
|
|
22
|
+
* @return boolean
|
|
26
23
|
*/
|
|
27
|
-
borderless:
|
|
24
|
+
readonly borderless: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
28
25
|
/**
|
|
29
26
|
* Put the `<caption>` on the top of the table.
|
|
27
|
+
* @return 'top'
|
|
30
28
|
* @values 'top'
|
|
31
29
|
*/
|
|
32
|
-
caption
|
|
30
|
+
readonly caption: import("@angular/core").InputSignal<"top" | undefined>;
|
|
33
31
|
/**
|
|
34
32
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
35
|
-
* @
|
|
33
|
+
* @return Colors
|
|
36
34
|
*/
|
|
37
|
-
color
|
|
35
|
+
readonly color: import("@angular/core").InputSignal<string | undefined>;
|
|
38
36
|
/**
|
|
39
37
|
* Enable a hover state on table rows within table body.
|
|
40
|
-
* @
|
|
38
|
+
* @return boolean
|
|
41
39
|
*/
|
|
42
|
-
hover:
|
|
40
|
+
readonly hover: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
43
41
|
/**
|
|
44
42
|
* Make table responsive across all viewports or pick a maximum breakpoint with which to have a responsive table up to.
|
|
45
|
-
* @
|
|
43
|
+
* @values: {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
|
|
46
44
|
*/
|
|
47
|
-
responsive
|
|
45
|
+
readonly responsive: import("@angular/core").InputSignal<boolean | Omit<string, "xs"> | undefined>;
|
|
48
46
|
/**
|
|
49
47
|
* Make table more compact by cutting all cell `padding` in half.
|
|
50
|
-
* @
|
|
48
|
+
* @return boolean
|
|
51
49
|
*/
|
|
52
|
-
small:
|
|
50
|
+
readonly small: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
53
51
|
/**
|
|
54
52
|
* Add zebra-striping to any table row within the table body.
|
|
55
|
-
* @
|
|
53
|
+
* @return boolean
|
|
56
54
|
*/
|
|
57
|
-
striped:
|
|
55
|
+
readonly striped: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
58
56
|
/**
|
|
59
57
|
* Add zebra-striping to any table column.
|
|
60
|
-
* @
|
|
58
|
+
* @return boolean
|
|
61
59
|
* @since 4.2.4
|
|
62
60
|
*/
|
|
63
|
-
stripedColumns:
|
|
64
|
-
|
|
65
|
-
ngOnInit(): void;
|
|
66
|
-
setResponsiveWrapper(): void;
|
|
61
|
+
readonly stripedColumns: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
62
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
67
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableDirective, never>;
|
|
68
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableDirective, "table[cTable]",
|
|
69
|
-
static ngAcceptInputType_bordered: unknown;
|
|
70
|
-
static ngAcceptInputType_borderless: unknown;
|
|
71
|
-
static ngAcceptInputType_hover: unknown;
|
|
72
|
-
static ngAcceptInputType_small: unknown;
|
|
73
|
-
static ngAcceptInputType_striped: unknown;
|
|
74
|
-
static ngAcceptInputType_stripedColumns: unknown;
|
|
64
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableDirective, "table[cTable]", ["cTable"], { "align": { "alias": "align"; "required": false; "isSignal": true; }; "borderColor": { "alias": "borderColor"; "required": false; "isSignal": true; }; "bordered": { "alias": "bordered"; "required": false; "isSignal": true; }; "borderless": { "alias": "borderless"; "required": false; "isSignal": true; }; "caption": { "alias": "caption"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "hover": { "alias": "hover"; "required": false; "isSignal": true; }; "responsive": { "alias": "responsive"; "required": false; "isSignal": true; }; "small": { "alias": "small"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "stripedColumns": { "alias": "stripedColumns"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
75
65
|
}
|
|
@@ -5,12 +5,13 @@ export declare class TabDirective implements FocusableOption, OnInit {
|
|
|
5
5
|
#private;
|
|
6
6
|
/**
|
|
7
7
|
* Disabled attribute
|
|
8
|
-
* @
|
|
8
|
+
* @return boolean
|
|
9
9
|
* @default false
|
|
10
10
|
*/
|
|
11
|
+
readonly disabledInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
12
|
+
readonly attrDisabled: import("@angular/core").Signal<true | null>;
|
|
11
13
|
set disabled(value: boolean);
|
|
12
14
|
get disabled(): boolean;
|
|
13
|
-
readonly attrDisabled: import("@angular/core").Signal<true | null>;
|
|
14
15
|
/**
|
|
15
16
|
* Item key.
|
|
16
17
|
* @type string | number
|
|
@@ -30,17 +31,11 @@ export declare class TabDirective implements FocusableOption, OnInit {
|
|
|
30
31
|
*/
|
|
31
32
|
readonly ariaControls: InputSignal<string | undefined>;
|
|
32
33
|
readonly isActive: import("@angular/core").WritableSignal<boolean>;
|
|
33
|
-
readonly hostClasses: import("@angular/core").Signal<
|
|
34
|
-
'nav-link': boolean;
|
|
35
|
-
active: boolean;
|
|
36
|
-
disabled: boolean;
|
|
37
|
-
}>;
|
|
34
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
38
35
|
readonly propId: import("@angular/core").Signal<string>;
|
|
39
36
|
readonly attrAriaControls: import("@angular/core").Signal<string>;
|
|
40
|
-
disabledEffect: import("@angular/core").EffectRef;
|
|
41
37
|
focus(origin?: FocusOrigin): void;
|
|
42
38
|
ngOnInit(): void;
|
|
43
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabDirective, never>;
|
|
44
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TabDirective, "button[cTab]", ["cTab"], { "
|
|
45
|
-
static ngAcceptInputType_disabled: unknown;
|
|
40
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabDirective, "button[cTab]", ["cTab"], { "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "itemKey": { "alias": "itemKey"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "ariaControls": { "alias": "aria-controls"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
46
41
|
}
|
|
@@ -48,13 +48,7 @@ export declare class TabPanelComponent {
|
|
|
48
48
|
readonly visible: import("@angular/core").Signal<boolean>;
|
|
49
49
|
readonly propId: import("@angular/core").Signal<string>;
|
|
50
50
|
readonly attrAriaLabelledBy: import("@angular/core").Signal<string>;
|
|
51
|
-
readonly hostClasses: import("@angular/core").Signal<
|
|
52
|
-
'tab-pane': boolean;
|
|
53
|
-
active: boolean;
|
|
54
|
-
fade: boolean;
|
|
55
|
-
show: boolean;
|
|
56
|
-
invisible: any;
|
|
57
|
-
}>;
|
|
51
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
58
52
|
get animationDisabled(): boolean;
|
|
59
53
|
get animateType(): AnimateType;
|
|
60
54
|
onAnimationDone($event: AnimationEvent): void;
|
|
@@ -22,13 +22,8 @@ export declare class TabsListComponent {
|
|
|
22
22
|
* @default 'tablist'
|
|
23
23
|
*/
|
|
24
24
|
readonly role: InputSignal<string>;
|
|
25
|
-
readonly hostClasses: import("@angular/core").Signal<
|
|
26
|
-
[x: string]: boolean | "fill" | "justified" | "tabs" | "pills" | "underline" | "underline-border" | undefined;
|
|
27
|
-
nav: boolean;
|
|
28
|
-
}>;
|
|
25
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
29
26
|
readonly tabs: import("@angular/core").Signal<readonly TabDirective[]>;
|
|
30
|
-
readonly tabsEffect: import("@angular/core").EffectRef;
|
|
31
|
-
readonly tabsServiceEffect: import("@angular/core").EffectRef;
|
|
32
27
|
onKeydown($event: any): void;
|
|
33
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsListComponent, never>;
|
|
34
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>;
|
|
@@ -2,6 +2,7 @@ import { ModelSignal } from '@angular/core';
|
|
|
2
2
|
import { TabsService } from './tabs.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TabsComponent {
|
|
5
|
+
#private;
|
|
5
6
|
readonly tabsService: TabsService;
|
|
6
7
|
/**
|
|
7
8
|
* The active item key.
|
|
@@ -14,8 +15,6 @@ export declare class TabsComponent {
|
|
|
14
15
|
*/
|
|
15
16
|
tabsId: string;
|
|
16
17
|
readonly id: import("@angular/core").InputSignal<string>;
|
|
17
|
-
readonly activeItemEffect: import("@angular/core").EffectRef;
|
|
18
|
-
readonly tabsServiceEffect: import("@angular/core").EffectRef;
|
|
19
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
20
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "c-tabs", ["cTabs"], { "activeItemKey": { "alias": "activeItemKey"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, { "activeItemKey": "activeItemKeyChange"; }, never, ["*"], true, never>;
|
|
21
20
|
}
|
|
@@ -4,36 +4,38 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
type AnimateType = 'hide' | 'show';
|
|
5
5
|
export declare class ToastComponent implements OnInit, OnDestroy {
|
|
6
6
|
#private;
|
|
7
|
+
readonly changeDetectorRef: ChangeDetectorRef;
|
|
7
8
|
readonly hostElement: ElementRef<any>;
|
|
8
9
|
readonly renderer: Renderer2;
|
|
9
10
|
readonly toasterService: ToasterService;
|
|
10
|
-
readonly changeDetectorRef: ChangeDetectorRef;
|
|
11
11
|
readonly dynamic: import("@angular/core").InputSignal<boolean | undefined>;
|
|
12
|
-
readonly
|
|
12
|
+
readonly placementInput: import("@angular/core").InputSignal<string | undefined>;
|
|
13
|
+
get placement(): string | undefined;
|
|
13
14
|
/**
|
|
14
15
|
* Auto hide the toast.
|
|
15
|
-
* @
|
|
16
|
+
* @return boolean
|
|
16
17
|
*/
|
|
17
18
|
readonly autohide: import("@angular/core").InputSignal<boolean>;
|
|
18
19
|
/**
|
|
19
20
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
20
|
-
* @
|
|
21
|
+
* @return Colors
|
|
21
22
|
*/
|
|
22
23
|
readonly color: import("@angular/core").InputSignal<string>;
|
|
23
24
|
/**
|
|
24
25
|
* Delay hiding the toast (ms).
|
|
25
|
-
* @
|
|
26
|
+
* @return number
|
|
26
27
|
*/
|
|
27
28
|
readonly delay: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
28
29
|
/**
|
|
29
30
|
* Apply fade transition to the toast.
|
|
30
|
-
* @
|
|
31
|
+
* @return boolean
|
|
31
32
|
*/
|
|
32
33
|
readonly fade: import("@angular/core").InputSignal<boolean>;
|
|
33
34
|
/**
|
|
34
35
|
* Toggle the visibility of component.
|
|
35
|
-
* @
|
|
36
|
+
* @return boolean
|
|
36
37
|
*/
|
|
38
|
+
readonly visibleInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
37
39
|
set visible(value: boolean);
|
|
38
40
|
get visible(): boolean;
|
|
39
41
|
/**
|
|
@@ -42,12 +44,12 @@ export declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
42
44
|
readonly index: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
43
45
|
/**
|
|
44
46
|
* Event emitted on visibility change. [docs]
|
|
45
|
-
* @
|
|
47
|
+
* @return <boolean>
|
|
46
48
|
*/
|
|
47
49
|
readonly visibleChange: import("@angular/core").OutputEmitterRef<boolean>;
|
|
48
50
|
/**
|
|
49
51
|
* Event emitted on timer tick. [docs]
|
|
50
|
-
* @
|
|
52
|
+
* @return number
|
|
51
53
|
*/
|
|
52
54
|
readonly timer: import("@angular/core").OutputEmitterRef<number>;
|
|
53
55
|
private timerId;
|
|
@@ -56,11 +58,9 @@ export declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
56
58
|
private _clock;
|
|
57
59
|
get clock(): number;
|
|
58
60
|
set clock(value: number);
|
|
59
|
-
|
|
61
|
+
readonly animationDisabled: import("@angular/core").Signal<boolean>;
|
|
60
62
|
get animateType(): AnimateType;
|
|
61
|
-
|
|
62
|
-
onMouseOut(): void;
|
|
63
|
-
get hostClasses(): any;
|
|
63
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
64
64
|
ngOnInit(): void;
|
|
65
65
|
ngOnDestroy(): void;
|
|
66
66
|
setTimer(): void;
|
|
@@ -69,7 +69,6 @@ export declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
69
69
|
setClock(): void;
|
|
70
70
|
clearClock(): void;
|
|
71
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "c-toast", ["cToast"], { "dynamic": { "alias": "dynamic"; "required": false; "isSignal": true; }; "
|
|
73
|
-
static ngAcceptInputType_visible: unknown;
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "c-toast", ["cToast"], { "dynamic": { "alias": "dynamic"; "required": false; "isSignal": true; }; "placementInput": { "alias": "placement"; "required": false; "isSignal": true; }; "autohide": { "alias": "autohide"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "fade": { "alias": "fade"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; "index": { "alias": "index"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; "timer": "timer"; }, never, ["*"], true, never>;
|
|
74
73
|
}
|
|
75
74
|
export {};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { ToastComponent } from '../toast/toast.component';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ToastBodyComponent {
|
|
4
|
-
toast?: ToastComponent | null | undefined;
|
|
5
|
-
toastBodyClass: boolean;
|
|
4
|
+
readonly toast?: ToastComponent | null | undefined;
|
|
6
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToastBodyComponent, never>;
|
|
7
6
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToastBodyComponent, "c-toast-body", ["cToastBody"], {}, {}, never, ["*"], true, never>;
|
|
8
7
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import type { ToastComponent } from './toast/toast.component';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ToastCloseDirective {
|
|
3
4
|
#private;
|
|
4
|
-
|
|
5
|
-
toggleOpen($event:
|
|
5
|
+
readonly cToastClose: import("@angular/core").InputSignal<ToastComponent | undefined>;
|
|
6
|
+
toggleOpen($event: MouseEvent): void;
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToastCloseDirective, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ToastCloseDirective, "[cToastClose]", ["cToastClose"], { "
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ToastCloseDirective, "[cToastClose]", ["cToastClose"], { "cToastClose": { "alias": "cToastClose"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8
9
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { ToastComponent } from '../toast/toast.component';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ToastHeaderComponent {
|
|
4
|
-
|
|
4
|
+
#private;
|
|
5
|
+
readonly toast: import("@angular/core").WritableSignal<ToastComponent | undefined>;
|
|
5
6
|
/**
|
|
6
7
|
* Add close button to a toast header
|
|
7
|
-
* @
|
|
8
|
+
* @return boolean
|
|
8
9
|
*/
|
|
9
|
-
closeButton: boolean
|
|
10
|
-
toastHeaderClass: boolean;
|
|
10
|
+
readonly closeButton: import("@angular/core").InputSignal<boolean>;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToastHeaderComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToastHeaderComponent, "c-toast-header", ["cToastHeader"], { "closeButton": { "alias": "closeButton"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToastHeaderComponent, "c-toast-header", ["cToastHeader"], { "closeButton": { "alias": "closeButton"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
13
13
|
}
|