@bryntum/grid-angular 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 +209 -15
- package/bundles/bryntum-grid-angular.umd.js +3 -3
- package/bundles/bryntum-grid-angular.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.js +3 -3
- package/fesm2015/bryntum-grid-angular.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 +1336 -0
- package/src/lib/bryntum-button-group.component.ts +1213 -0
- package/src/lib/bryntum-button.component.ts +1190 -0
- package/src/lib/bryntum-chat-panel.component.ts +1435 -0
- package/src/lib/bryntum-checkbox-group.component.ts +1478 -0
- package/src/lib/bryntum-checkbox.component.ts +1333 -0
- package/src/lib/bryntum-checklist-filter-combo.component.ts +1650 -0
- package/src/lib/bryntum-chip-view.component.ts +1225 -0
- package/src/lib/bryntum-code-editor.component.ts +1419 -0
- package/src/lib/bryntum-color-field.component.ts +1334 -0
- package/src/lib/bryntum-combo.component.ts +1634 -0
- package/src/lib/bryntum-container.component.ts +1166 -0
- package/src/lib/bryntum-date-field.component.ts +1413 -0
- package/src/lib/bryntum-date-picker.component.ts +1756 -0
- package/src/lib/bryntum-date-range-field.component.ts +1417 -0
- package/src/lib/bryntum-date-time-field.component.ts +1261 -0
- package/src/lib/bryntum-demo-code-editor.component.ts +1441 -0
- package/src/lib/bryntum-demo-header.component.ts +141 -0
- package/src/lib/bryntum-display-field.component.ts +1308 -0
- package/src/lib/bryntum-duration-field.component.ts +1390 -0
- package/src/lib/bryntum-editor.component.ts +1343 -0
- package/src/lib/bryntum-field-filter-picker-group.component.ts +1308 -0
- package/src/lib/bryntum-field-filter-picker.component.ts +1272 -0
- package/src/lib/bryntum-field-set.component.ts +1408 -0
- package/src/lib/bryntum-file-field.component.ts +1313 -0
- package/src/lib/bryntum-file-picker.component.ts +1199 -0
- package/src/lib/bryntum-filter-field.component.ts +1367 -0
- package/src/lib/bryntum-fullscreen-button.component.ts +53 -0
- package/src/lib/bryntum-grid-base.component.ts +2796 -0
- package/src/lib/bryntum-grid-chart-designer.component.ts +999 -0
- package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +1300 -0
- package/src/lib/bryntum-grid-field-filter-picker.component.ts +1287 -0
- package/src/lib/bryntum-grid.component.ts +2800 -0
- package/src/lib/bryntum-group-bar.component.ts +1225 -0
- package/src/lib/bryntum-hint.component.ts +1506 -0
- package/src/lib/bryntum-label.component.ts +989 -0
- package/src/lib/bryntum-list.component.ts +1196 -0
- package/src/lib/bryntum-menu.component.ts +1520 -0
- package/src/lib/bryntum-month-picker.component.ts +1400 -0
- package/src/lib/bryntum-number-field.component.ts +1368 -0
- package/src/lib/bryntum-paging-toolbar.component.ts +1243 -0
- package/src/lib/bryntum-panel.component.ts +1377 -0
- package/src/lib/bryntum-password-field.component.ts +1296 -0
- package/src/lib/bryntum-radio-group.component.ts +1446 -0
- package/src/lib/bryntum-radio.component.ts +1333 -0
- package/src/lib/bryntum-slide-toggle.component.ts +1333 -0
- package/src/lib/bryntum-slider.component.ts +1112 -0
- package/src/lib/bryntum-splitter.component.ts +1025 -0
- package/src/lib/bryntum-tab-panel.component.ts +1441 -0
- package/src/lib/bryntum-text-area-field.component.ts +1312 -0
- package/src/lib/bryntum-text-area-picker-field.component.ts +1343 -0
- package/src/lib/bryntum-text-field.component.ts +1321 -0
- package/src/lib/bryntum-time-field.component.ts +1388 -0
- package/src/lib/bryntum-time-picker.component.ts +1207 -0
- package/src/lib/bryntum-toolbar.component.ts +1234 -0
- package/src/lib/bryntum-tree-combo.component.ts +1634 -0
- package/src/lib/bryntum-tree-grid.component.ts +2800 -0
- package/src/lib/bryntum-widget.component.ts +982 -0
- package/src/lib/bryntum-year-picker.component.ts +1423 -0
- package/src/lib/grid.module.ts +196 -0
- package/src/lib/wrapper.helper.ts +89 -0
- package/src/public-api.ts +65 -0
|
@@ -1403,7 +1403,7 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1403
1403
|
/**
|
|
1404
1404
|
* Fires on the owning Grid before export started. Return `false` to cancel the export.
|
|
1405
1405
|
* @param {object} event Event object
|
|
1406
|
-
* @param {
|
|
1406
|
+
* @param {PdfExportConfig} event.config Export config
|
|
1407
1407
|
*/
|
|
1408
1408
|
onBeforePdfExport: any;
|
|
1409
1409
|
/**
|
|
@@ -1405,7 +1405,7 @@ export declare class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1405
1405
|
/**
|
|
1406
1406
|
* Fires on the owning Grid before export started. Return `false` to cancel the export.
|
|
1407
1407
|
* @param {object} event Event object
|
|
1408
|
-
* @param {
|
|
1408
|
+
* @param {PdfExportConfig} event.config Export config
|
|
1409
1409
|
*/
|
|
1410
1410
|
onBeforePdfExport: any;
|
|
1411
1411
|
/**
|
|
@@ -1405,7 +1405,7 @@ export declare class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1405
1405
|
/**
|
|
1406
1406
|
* Fires on the owning Grid before export started. Return `false` to cancel the export.
|
|
1407
1407
|
* @param {object} event Event object
|
|
1408
|
-
* @param {
|
|
1408
|
+
* @param {PdfExportConfig} event.config Export config
|
|
1409
1409
|
*/
|
|
1410
1410
|
onBeforePdfExport: any;
|
|
1411
1411
|
/**
|