@coreui/angular-pro 5.3.3 → 5.3.4
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/fesm2022/coreui-angular-pro.mjs +1371 -1340
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/breadcrumb/breadcrumb-router/breadcrumb-router.component.d.ts +1 -2
- package/lib/breadcrumb/breadcrumb-router/breadcrumb-router.service.d.ts +1 -4
- package/lib/carousel/carousel-control/carousel-control.component.d.ts +2 -6
- package/lib/carousel/carousel-indicators/carousel-indicators.component.d.ts +1 -6
- package/lib/carousel/carousel-inner/carousel-inner.component.d.ts +1 -4
- package/lib/carousel/carousel-item/carousel-item.component.d.ts +2 -7
- package/lib/carousel/carousel-state.d.ts +1 -3
- package/lib/dropdown/dropdown-close/dropdown-close.directive.d.ts +3 -5
- package/lib/dropdown/dropdown-item/dropdown-item.directive.d.ts +2 -5
- package/lib/form/form-check/form-check-input.directive.d.ts +1 -4
- package/lib/form/form-control/form-control.directive.d.ts +2 -3
- package/lib/header/header-toggler/header-toggler.directive.d.ts +2 -5
- package/lib/modal/modal/modal.component.d.ts +1 -9
- package/lib/modal/modal-dismiss/modal-toggle.directive.d.ts +1 -3
- package/lib/offcanvas/offcanvas/offcanvas.component.d.ts +1 -12
- package/lib/offcanvas/offcanvas-toggle/offcanvas-toggle.directive.d.ts +1 -3
- package/lib/pagination/page-item/page-item.directive.d.ts +2 -3
- package/lib/popover/popover.directive.d.ts +5 -13
- package/lib/services/class-toggle.service.d.ts +2 -5
- package/lib/sidebar/sidebar/sidebar.component.d.ts +3 -10
- package/lib/sidebar/sidebar-backdrop/sidebar-backdrop.service.d.ts +1 -6
- package/lib/sidebar/sidebar-nav/sidebar-nav-item-class.pipe.d.ts +1 -2
- package/lib/sidebar/sidebar-nav/sidebar-nav-label.component.d.ts +1 -2
- package/lib/sidebar/sidebar-nav/sidebar-nav-link.component.d.ts +3 -4
- package/lib/sidebar/sidebar-nav/sidebar-nav-title.component.d.ts +2 -4
- package/lib/sidebar/sidebar-nav/sidebar-nav.component.d.ts +9 -17
- package/lib/sidebar/sidebar-toggle/sidebar-toggle.directive.d.ts +1 -3
- package/lib/table/table.directive.d.ts +2 -4
- package/lib/tabs/tab-content/tab-content.component.d.ts +2 -7
- package/lib/tabs/tab-content-ref.directive.d.ts +3 -8
- package/lib/tabs/tab-pane/tab-pane.component.d.ts +3 -7
- package/lib/toast/toast/toast.component.d.ts +5 -6
- package/lib/toast/toast-body/toast-body.component.d.ts +2 -3
- package/lib/toast/toast-close.directive.d.ts +1 -3
- package/lib/toast/toast-header/toast-header.component.d.ts +2 -3
- package/lib/toast/toaster/toaster-host.directive.d.ts +1 -2
- package/lib/toast/toaster/toaster.component.d.ts +2 -6
- package/lib/tooltip/tooltip.directive.d.ts +5 -13
- package/package.json +2 -2
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { TabContentComponent } from '../tab-content/tab-content.component';
|
|
3
|
-
import { TabService } from '../tab.service';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class TabPaneComponent implements OnDestroy {
|
|
6
|
-
private
|
|
7
|
-
|
|
8
|
-
constructor(changeDetectorRef: ChangeDetectorRef, tabService: TabService);
|
|
5
|
+
#private;
|
|
6
|
+
constructor();
|
|
9
7
|
tabPaneIdx: number;
|
|
10
8
|
tabContent: TabContentComponent;
|
|
11
|
-
private tabServiceSubscription;
|
|
12
9
|
set active(value: boolean);
|
|
13
10
|
get active(): boolean;
|
|
14
|
-
private _active;
|
|
15
11
|
get hostClasses(): {
|
|
16
12
|
'tab-pane': boolean;
|
|
17
13
|
fade: boolean;
|
|
@@ -3,11 +3,11 @@ import { ToasterService } from '../toaster/toaster.service';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
type AnimateType = 'hide' | 'show';
|
|
5
5
|
export declare class ToastComponent implements OnInit, OnDestroy {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
#private;
|
|
7
|
+
readonly hostElement: ElementRef<any>;
|
|
8
|
+
readonly renderer: Renderer2;
|
|
9
|
+
readonly toasterService: ToasterService;
|
|
10
|
+
readonly changeDetectorRef: ChangeDetectorRef;
|
|
11
11
|
readonly dynamic: import("@angular/core").InputSignal<boolean | undefined>;
|
|
12
12
|
readonly placement: import("@angular/core").InputSignal<string | undefined>;
|
|
13
13
|
/**
|
|
@@ -36,7 +36,6 @@ export declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
36
36
|
*/
|
|
37
37
|
set visible(value: boolean);
|
|
38
38
|
get visible(): boolean;
|
|
39
|
-
private _visible;
|
|
40
39
|
/**
|
|
41
40
|
* @ignore
|
|
42
41
|
*/
|
|
@@ -1,9 +1,8 @@
|
|
|
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 | undefined;
|
|
4
|
+
toast?: ToastComponent | null | undefined;
|
|
5
5
|
toastBodyClass: boolean;
|
|
6
|
-
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ToastBodyComponent, [{ optional: true; }]>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastBodyComponent, never>;
|
|
8
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToastBodyComponent, "c-toast-body", ["cToastBody"], {}, {}, never, ["*"], true, never>;
|
|
9
8
|
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
import { ToasterService } from './toaster/toaster.service';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class ToastCloseDirective {
|
|
4
|
-
private
|
|
3
|
+
#private;
|
|
5
4
|
toast: any;
|
|
6
|
-
constructor(toasterService: ToasterService);
|
|
7
5
|
toggleOpen($event: any): void;
|
|
8
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToastCloseDirective, never>;
|
|
9
7
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ToastCloseDirective, "[cToastClose]", ["cToastClose"], { "toast": { "alias": "cToastClose"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1,14 +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
|
-
toast?: ToastComponent | undefined;
|
|
4
|
+
toast?: ToastComponent | null | undefined;
|
|
5
5
|
/**
|
|
6
6
|
* Add close button to a toast header
|
|
7
7
|
* @type boolean
|
|
8
8
|
*/
|
|
9
9
|
closeButton: boolean;
|
|
10
10
|
toastHeaderClass: boolean;
|
|
11
|
-
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ToastHeaderComponent, [{ optional: true; }]>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastHeaderComponent, never>;
|
|
13
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToastHeaderComponent, "c-toast-header", ["cToastHeader"], { "closeButton": { "alias": "closeButton"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
14
13
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ToasterHostDirective {
|
|
4
|
-
viewContainerRef: ViewContainerRef;
|
|
5
|
-
constructor(viewContainerRef: ViewContainerRef);
|
|
4
|
+
readonly viewContainerRef: ViewContainerRef;
|
|
6
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToasterHostDirective, never>;
|
|
7
6
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ToasterHostDirective, "[cToasterHost]", ["cToasterHost"], {}, {}, never, never, true, never>;
|
|
8
7
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AfterContentChecked, ComponentRef,
|
|
2
|
-
import { IToasterAction
|
|
1
|
+
import { AfterContentChecked, ComponentRef, Injector, NgModuleRef, OnInit, QueryList, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { IToasterAction } from './toaster.service';
|
|
3
3
|
import { ToasterHostDirective } from './toaster-host.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare enum ToasterPlacement {
|
|
@@ -17,10 +17,6 @@ export declare enum ToasterPlacement {
|
|
|
17
17
|
export type TToasterPlacement = ToasterPlacement.Static | ToasterPlacement.TopStart | ToasterPlacement.TopCenter | ToasterPlacement.TopEnd | ToasterPlacement.MiddleStart | ToasterPlacement.MiddleCenter | ToasterPlacement.MiddleEnd | ToasterPlacement.BottomStart | ToasterPlacement.BottomCenter | ToasterPlacement.BottomEnd | string;
|
|
18
18
|
export declare class ToasterComponent implements OnInit, AfterContentChecked {
|
|
19
19
|
#private;
|
|
20
|
-
private hostElement;
|
|
21
|
-
private renderer;
|
|
22
|
-
private toasterService;
|
|
23
|
-
constructor(hostElement: ElementRef, renderer: Renderer2, toasterService: ToasterService);
|
|
24
20
|
placements: ToasterPlacement[];
|
|
25
21
|
toasts: QueryList<ViewContainerRef>;
|
|
26
22
|
toastsDynamic: any[];
|
|
@@ -1,30 +1,23 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { AfterViewInit, ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
2
|
import { Options } from '@popperjs/core';
|
|
3
3
|
import { Triggers } from '../coreui.types';
|
|
4
|
-
import { IntersectionService, ListenersService } from '../services';
|
|
5
4
|
import { ElementRefDirective } from '../shared';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class TooltipDirective implements OnDestroy, OnInit, AfterViewInit {
|
|
8
7
|
#private;
|
|
9
|
-
private renderer;
|
|
10
|
-
private hostElement;
|
|
11
|
-
private viewContainerRef;
|
|
12
|
-
private listenersService;
|
|
13
|
-
private changeDetectorRef;
|
|
14
|
-
private intersectionService;
|
|
15
8
|
/**
|
|
16
9
|
* Content of tooltip
|
|
17
10
|
* @type {string | TemplateRef}
|
|
18
11
|
*/
|
|
19
12
|
readonly content: import("@angular/core").InputSignal<string | TemplateRef<any> | undefined>;
|
|
20
|
-
contentEffect: import("@angular/core").EffectRef;
|
|
13
|
+
readonly contentEffect: import("@angular/core").EffectRef;
|
|
21
14
|
/**
|
|
22
15
|
* Optional popper Options object, takes precedence over cPopoverPlacement prop
|
|
23
16
|
* @type Partial<Options>
|
|
24
17
|
*/
|
|
25
18
|
readonly popperOptions: import("@angular/core").InputSignal<Partial<Options>>;
|
|
26
|
-
popperOptionsEffect: import("@angular/core").EffectRef;
|
|
27
|
-
popperOptionsComputed: import("@angular/core").Signal<{
|
|
19
|
+
readonly popperOptionsEffect: import("@angular/core").EffectRef;
|
|
20
|
+
readonly popperOptionsComputed: import("@angular/core").Signal<{
|
|
28
21
|
placement: import("@popperjs/core").Placement;
|
|
29
22
|
modifiers?: Partial<import("@popperjs/core").Modifier<any, any>>[] | undefined;
|
|
30
23
|
strategy?: import("@popperjs/core").PositioningStrategy | undefined;
|
|
@@ -53,14 +46,13 @@ export declare class TooltipDirective implements OnDestroy, OnInit, AfterViewIni
|
|
|
53
46
|
* @type boolean
|
|
54
47
|
*/
|
|
55
48
|
readonly visible: import("@angular/core").ModelSignal<boolean>;
|
|
56
|
-
visibleEffect: import("@angular/core").EffectRef;
|
|
49
|
+
readonly visibleEffect: import("@angular/core").EffectRef;
|
|
57
50
|
get ariaDescribedBy(): string | null;
|
|
58
51
|
private tooltip;
|
|
59
52
|
private tooltipId;
|
|
60
53
|
private tooltipRef;
|
|
61
54
|
private popperInstance;
|
|
62
55
|
private _popperOptions;
|
|
63
|
-
constructor(renderer: Renderer2, hostElement: ElementRef, viewContainerRef: ViewContainerRef, listenersService: ListenersService, changeDetectorRef: ChangeDetectorRef, intersectionService: IntersectionService);
|
|
64
56
|
ngAfterViewInit(): void;
|
|
65
57
|
ngOnDestroy(): void;
|
|
66
58
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.4",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@angular/forms": "^19.0.0",
|
|
30
30
|
"@angular/router": "^19.0.0",
|
|
31
31
|
"@coreui/coreui-pro": "^5.8.0",
|
|
32
|
-
"@coreui/icons-angular": "~5.3.
|
|
32
|
+
"@coreui/icons-angular": "~5.3.4",
|
|
33
33
|
"rxjs": "^7.8.1"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|