@elderbyte/ngx-starter 20.4.2 → 20.4.3
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/index.d.ts
CHANGED
|
@@ -4223,8 +4223,9 @@ declare class SelectionChangedEvent<TId, TEntity> {
|
|
|
4223
4223
|
readonly addedById: Map<TId, TEntity>;
|
|
4224
4224
|
readonly removed: Set<TId>;
|
|
4225
4225
|
readonly source: SelectionEventSource;
|
|
4226
|
+
readonly multiSelection: boolean;
|
|
4226
4227
|
readonly info?: string;
|
|
4227
|
-
constructor(after: TEntity[], addedById: Map<TId, TEntity>, removed: Set<TId>, source: SelectionEventSource, info?: string);
|
|
4228
|
+
constructor(after: TEntity[], addedById: Map<TId, TEntity>, removed: Set<TId>, source: SelectionEventSource, multiSelection: boolean, info?: string);
|
|
4228
4229
|
get isUserSource(): boolean;
|
|
4229
4230
|
}
|
|
4230
4231
|
/**
|