@paperless/angular 2.0.1-beta.98 → 2.0.1-beta.99
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/esm2020/lib/modules/table/components/table/table.component.mjs +11 -1
- package/fesm2015/paperless-angular.mjs +10 -0
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +10 -0
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/components/table/table.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -234,6 +234,8 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
234
234
|
reachedScrollEnd$: BehaviorSubject<boolean>;
|
|
235
235
|
private _totalWidth;
|
|
236
236
|
private _calculateColumnWidthsTimeout?;
|
|
237
|
+
private _rowChangesSubscription?;
|
|
238
|
+
private _cellChangesSubscription?;
|
|
237
239
|
/**
|
|
238
240
|
* Event whenever the empty state is clicked
|
|
239
241
|
*/
|
|
@@ -318,6 +320,7 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
318
320
|
private _showFloatingMenu;
|
|
319
321
|
private _parseDefinitions;
|
|
320
322
|
private _parseDefinitionSizes;
|
|
323
|
+
private _checkChangesSubscriptions;
|
|
321
324
|
private _calculateColumnWidths;
|
|
322
325
|
private _setRowsWidth;
|
|
323
326
|
private _resetScrollPosition;
|