fix: export types were published incorrectly (#29548)#32475
Open
mpreyskurantov wants to merge 1 commit intoDevExpress:26_1from
Open
fix: export types were published incorrectly (#29548)#32475mpreyskurantov wants to merge 1 commit intoDevExpress:26_1from
mpreyskurantov wants to merge 1 commit intoDevExpress:26_1from
Conversation
Co-authored-by: Mikhail Preyskurantov <5574159+mpreyskurantov@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Fixes how Excel exporter-related types are surfaced in generated typings by moving CellAddress/CellRange to a shared internal definition and re-exporting them through the intended public entrypoints, while also adjusting documentation visibility for several helper types.
Changes:
- Reworked
CellAddress/CellRangeto be defined once and re-exported (instead of duplicated interface declarations). - Added
DevExpress.exportInternaltype container (and mapped publicDevExpress.excelExportertypes to it). - Marked several helper/public-facing-but-doc-unwanted types as
@hiddenin.d.tsfiles; updated wrapper exports to include the Excel cell range/address types.
Reviewed changes
Copilot reviewed 3 out of 14 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| packages/devextreme/ts/dx.all.d.ts | Replaced CellAddress/CellRange interfaces with aliases and introduced DevExpress.exportInternal module in the bundled typings. |
| packages/devextreme/js/exporter/export_load_panel.d.ts | Marked ExportLoadPanel as hidden for doc generation. |
| packages/devextreme/js/excel_exporter.types.d.ts | Removed local CellAddress/CellRange definitions and re-exported them from a shared types file. |
| packages/devextreme/js/excel_exporter.d.ts | Adjusted exports so CellAddress/CellRange come from common/export/excel. |
| packages/devextreme/js/events/events.types.d.ts | Hid DxEvent in docs. |
| packages/devextreme/js/data/data_source.d.ts | Hid DataSourceLike in docs. |
| packages/devextreme/js/core/utils/deferred.d.ts | Hid DxPromise in docs. |
| packages/devextreme/js/core/templates/template.d.ts | Hid dxTemplateOptions in docs. |
| packages/devextreme/js/core/element.d.ts | Hid DxElement / UserDefinedElement in docs. |
| packages/devextreme/js/common/export/excel.types.d.ts | Added new shared internal type declarations for Excel export (CellAddress, CellRange). |
| packages/devextreme/js/common/export/excel.d.ts | Re-exported CellAddress/CellRange publicly via type aliases and used them in exported APIs. |
| packages/devextreme-vue/src/common/export/excel.ts | Re-exported CellAddress/CellRange from devextreme Excel export entry. |
| packages/devextreme-react/src/common/export/excel.ts | Re-exported CellAddress/CellRange from devextreme Excel export entry. |
| packages/devextreme-angular/src/common/export/excel/index.ts | Re-exported CellAddress/CellRange from devextreme Excel export entry. |
alexslavr
approved these changes
Feb 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cherry-pick of: