@sumaris-net/ngx-components 1.23.6 → 1.23.9
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/bundles/sumaris-net.ngx-components.umd.js +97 -79
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/table/entities-table-datasource.class.js +2 -2
- package/esm2015/src/app/core/table/table.class.js +74 -64
- package/esm2015/src/app/core/table/testing/table.testing.js +2 -1
- package/fesm2015/sumaris-net.ngx-components.js +73 -62
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/table.class.d.ts +2 -1
- package/src/theme/_ngx-components.scss +5 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -234,7 +234,6 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
234
234
|
confirmAndAdd(event?: Event, row?: TableElement<T>): boolean;
|
|
235
235
|
confirmAndBackward(event?: Event, row?: TableElement<T>): boolean;
|
|
236
236
|
confirmAndForward(event?: Event, row?: TableElement<T>): boolean | Promise<boolean>;
|
|
237
|
-
private editRowById;
|
|
238
237
|
/**
|
|
239
238
|
* Confirm the creation of the given row, or if not specified the currently edited row
|
|
240
239
|
*
|
|
@@ -382,6 +381,8 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
382
381
|
onlySelf?: boolean;
|
|
383
382
|
emitEVent?: boolean;
|
|
384
383
|
}): void;
|
|
384
|
+
private listenSortAndPaginationEvents;
|
|
385
|
+
private editRowById;
|
|
385
386
|
private setLoading;
|
|
386
387
|
private deleteNewRow;
|
|
387
388
|
private deleteExistingRow;
|
|
@@ -1100,6 +1100,11 @@ mat-tab-group.mat-tab-disabled-hidden .mat-tab-disabled {
|
|
|
1100
1100
|
display: none;
|
|
1101
1101
|
}
|
|
1102
1102
|
|
|
1103
|
+
// --- Allow to show disabled headers
|
|
1104
|
+
mat-tab-group.mat-tab-disabled-visible .mat-tab-disabled {
|
|
1105
|
+
display: inherit;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1103
1108
|
// --------------------------------------------------
|
|
1104
1109
|
// Material menu
|
|
1105
1110
|
// --------------------------------------------------
|