@adaptabletools/adaptable 15.2.0-canary.0 → 15.2.0-canary.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/bundle.cjs.js +114 -114
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +8 -2
- package/src/AdaptableOptions/ExportOptions.d.ts +27 -0
- package/src/Api/GridApi.d.ts +5 -1
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
- package/src/Api/Implementation/AdaptableApiImpl.js +6 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +4 -1
- package/src/Api/Implementation/GridApiImpl.js +1 -1
- package/src/Api/Internal/AdaptableInternalApi.d.ts +8 -2
- package/src/Api/Internal/AdaptableInternalApi.js +4 -4
- package/src/PredefinedConfig/ExportState.d.ts +1 -1
- package/src/Strategy/ExportModule.d.ts +2 -1
- package/src/Strategy/ExportModule.js +78 -29
- package/src/Utilities/Services/Interface/IReportService.d.ts +4 -2
- package/src/Utilities/Services/ReportService.d.ts +3 -2
- package/src/Utilities/Services/ReportService.js +21 -23
- package/src/Utilities/waitForTimeout.d.ts +1 -0
- package/src/Utilities/waitForTimeout.js +12 -0
- package/src/View/Export/ExportTablePopup.js +7 -5
- package/src/agGrid/Adaptable.d.ts +8 -2
- package/src/agGrid/Adaptable.js +10 -7
- package/src/components/ProgressIndicator/ProgressIndicator.js +1 -1
- package/src/metamodel/adaptable.metamodel.d.ts +16 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -3629,6 +3629,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3629
3629
|
isOpt: boolean;
|
|
3630
3630
|
}[];
|
|
3631
3631
|
};
|
|
3632
|
+
PreProcessExportContext: {
|
|
3633
|
+
name: string;
|
|
3634
|
+
kind: string;
|
|
3635
|
+
desc: string;
|
|
3636
|
+
props: ({
|
|
3637
|
+
name: string;
|
|
3638
|
+
kind: string;
|
|
3639
|
+
desc: string;
|
|
3640
|
+
ref?: undefined;
|
|
3641
|
+
} | {
|
|
3642
|
+
name: string;
|
|
3643
|
+
kind: string;
|
|
3644
|
+
desc: string;
|
|
3645
|
+
ref: string;
|
|
3646
|
+
})[];
|
|
3647
|
+
};
|
|
3632
3648
|
QueryableColumnContext: {
|
|
3633
3649
|
name: string;
|
|
3634
3650
|
kind: string;
|