@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
|
@@ -1951,7 +1951,7 @@ class BryntumGridComponent {
|
|
|
1951
1951
|
/**
|
|
1952
1952
|
* Fires on the owning Grid before export started. Return `false` to cancel the export.
|
|
1953
1953
|
* @param {object} event Event object
|
|
1954
|
-
* @param {
|
|
1954
|
+
* @param {PdfExportConfig} event.config Export config
|
|
1955
1955
|
*/
|
|
1956
1956
|
this.onBeforePdfExport = new EventEmitter();
|
|
1957
1957
|
/**
|
|
@@ -4046,7 +4046,7 @@ class BryntumGridBaseComponent {
|
|
|
4046
4046
|
/**
|
|
4047
4047
|
* Fires on the owning Grid before export started. Return `false` to cancel the export.
|
|
4048
4048
|
* @param {object} event Event object
|
|
4049
|
-
* @param {
|
|
4049
|
+
* @param {PdfExportConfig} event.config Export config
|
|
4050
4050
|
*/
|
|
4051
4051
|
this.onBeforePdfExport = new EventEmitter();
|
|
4052
4052
|
/**
|
|
@@ -9847,7 +9847,7 @@ class BryntumTreeGridComponent {
|
|
|
9847
9847
|
/**
|
|
9848
9848
|
* Fires on the owning Grid before export started. Return `false` to cancel the export.
|
|
9849
9849
|
* @param {object} event Event object
|
|
9850
|
-
* @param {
|
|
9850
|
+
* @param {PdfExportConfig} event.config Export config
|
|
9851
9851
|
*/
|
|
9852
9852
|
this.onBeforePdfExport = new EventEmitter();
|
|
9853
9853
|
/**
|