@coreui/angular-pro 5.3.5 → 5.3.7
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 +43 -36
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/collapse/collapse.directive.d.ts +1 -3
- package/lib/smart-table/smart-table/smart-table.component.d.ts +2 -2
- package/lib/smart-table/smart-table-filter/filter-input.directive.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
@@ -38,7 +38,7 @@ export declare class SmartTableComponent implements ISmartTable, AfterContentIni
|
|
|
38
38
|
header: boolean;
|
|
39
39
|
set items(value: IItem[]);
|
|
40
40
|
get items(): IItem[];
|
|
41
|
-
items$: WritableSignal<IItemInternal[]>;
|
|
41
|
+
readonly items$: WritableSignal<IItemInternal[]>;
|
|
42
42
|
private _items;
|
|
43
43
|
set itemsPerPage(value: number);
|
|
44
44
|
get itemsPerPage(): number;
|
|
@@ -121,7 +121,7 @@ export declare class SmartTableComponent implements ISmartTable, AfterContentIni
|
|
|
121
121
|
clean($event: MouseEvent): void;
|
|
122
122
|
handleItemsPerPageChange(value: number): void;
|
|
123
123
|
handleRowChecked($event: Event, item: IItemInternal): void;
|
|
124
|
-
handleSelectAllChange($event:
|
|
124
|
+
handleSelectAllChange($event: boolean): void;
|
|
125
125
|
handleRowClick(param: {
|
|
126
126
|
$event: MouseEvent;
|
|
127
127
|
item: IItemInternal;
|
package/package.json
CHANGED