@den4ik92/ng2-smart-table 19.5.2 → 19.5.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.
|
@@ -4,7 +4,7 @@ export declare class Cell {
|
|
|
4
4
|
protected value: any;
|
|
5
5
|
row: Row;
|
|
6
6
|
column: Column;
|
|
7
|
-
newValue: any
|
|
7
|
+
readonly newValue: import("@angular/core").WritableSignal<any>;
|
|
8
8
|
readonly columnClass: string;
|
|
9
9
|
readonly styles: Partial<CSSStyleDeclaration>;
|
|
10
10
|
readonly title: string;
|
|
@@ -12,6 +12,6 @@ export declare class Cell {
|
|
|
12
12
|
constructor(value: any, row: Row, column: Column);
|
|
13
13
|
getValue(): any;
|
|
14
14
|
getNotPrepareValue(): any;
|
|
15
|
-
|
|
15
|
+
setNewValue(value: any): void;
|
|
16
16
|
isEditable(): boolean;
|
|
17
17
|
}
|
|
@@ -2,7 +2,7 @@ import { SmartTableOnChangedEventToEmit } from '../../interfaces/smart-table.mod
|
|
|
2
2
|
import { DataSource } from '../data-source';
|
|
3
3
|
export declare class LocalDataSource<T extends Record<string, any> = any> extends DataSource<T> {
|
|
4
4
|
private readonly filteredAndSorted;
|
|
5
|
-
|
|
5
|
+
readonly paginatedList: import("@angular/core").Signal<T[]>;
|
|
6
6
|
readonly count: import("@angular/core").Signal<number>;
|
|
7
7
|
constructor(data?: T[]);
|
|
8
8
|
load(data: T[]): Promise<true>;
|