@bryntum/grid-angular-thin 7.1.1 → 7.1.2
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/README.md +267 -15
- package/bundles/bryntum-grid-angular-thin.umd.js +3 -3
- package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
- package/esm2015/lib/bryntum-grid-base.component.js +2 -2
- package/esm2015/lib/bryntum-grid.component.js +2 -2
- package/esm2015/lib/bryntum-tree-grid.component.js +2 -2
- package/fesm2015/bryntum-grid-angular-thin.js +3 -3
- package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
- package/lib/bryntum-grid-base.component.d.ts +1 -1
- package/lib/bryntum-grid.component.d.ts +1 -1
- package/lib/bryntum-tree-grid.component.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/bryntum-a-i-filter-field.component.ts +1337 -0
- package/src/lib/bryntum-checklist-filter-combo.component.ts +1651 -0
- package/src/lib/bryntum-grid-base.component.ts +2797 -0
- package/src/lib/bryntum-grid-chart-designer.component.ts +1000 -0
- package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +1301 -0
- package/src/lib/bryntum-grid-field-filter-picker.component.ts +1288 -0
- package/src/lib/bryntum-grid.component.ts +2801 -0
- package/src/lib/bryntum-group-bar.component.ts +1226 -0
- package/src/lib/bryntum-tree-combo.component.ts +1635 -0
- package/src/lib/bryntum-tree-grid.component.ts +2801 -0
- package/src/lib/grid.module.ts +46 -0
- package/src/lib/wrapper.helper.ts +89 -0
- package/src/public-api.ts +15 -0
|
@@ -1404,7 +1404,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1404
1404
|
/**
|
|
1405
1405
|
* Fires on the owning Grid before export started. Return `false` to cancel the export.
|
|
1406
1406
|
* @param {object} event Event object
|
|
1407
|
-
* @param {
|
|
1407
|
+
* @param {PdfExportConfig} event.config Export config
|
|
1408
1408
|
*/
|
|
1409
1409
|
onBeforePdfExport: any;
|
|
1410
1410
|
/**
|
|
@@ -1406,7 +1406,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1406
1406
|
/**
|
|
1407
1407
|
* Fires on the owning Grid before export started. Return `false` to cancel the export.
|
|
1408
1408
|
* @param {object} event Event object
|
|
1409
|
-
* @param {
|
|
1409
|
+
* @param {PdfExportConfig} event.config Export config
|
|
1410
1410
|
*/
|
|
1411
1411
|
onBeforePdfExport: any;
|
|
1412
1412
|
/**
|
|
@@ -1406,7 +1406,7 @@ export declare class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1406
1406
|
/**
|
|
1407
1407
|
* Fires on the owning Grid before export started. Return `false` to cancel the export.
|
|
1408
1408
|
* @param {object} event Event object
|
|
1409
|
-
* @param {
|
|
1409
|
+
* @param {PdfExportConfig} event.config Export config
|
|
1410
1410
|
*/
|
|
1411
1411
|
onBeforePdfExport: any;
|
|
1412
1412
|
/**
|