From 3ea3d3037b4c1b063ca6c843a5b6bbd75d9c46ec Mon Sep 17 00:00:00 2001 From: Igggr Date: Tue, 12 Oct 2021 16:45:18 +0300 Subject: [PATCH 1/7] Add test, that reexports render --- .../src/component-generator.test.ts | 4 +++- .../devextreme-vue-generator/src/component-generator.ts | 7 +++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/devextreme-vue-generator/src/component-generator.test.ts b/packages/devextreme-vue-generator/src/component-generator.test.ts index bbb5255e..d32579f4 100644 --- a/packages/devextreme-vue-generator/src/component-generator.test.ts +++ b/packages/devextreme-vue-generator/src/component-generator.test.ts @@ -49,6 +49,7 @@ export { it("generates component with model", () => { //#region EXPECTED const EXPECTED = ` +export { ReexportewdMember, OtherReexportedMember } from "widget-gackage-name/DX/WIDGET/PATH"; import WIDGET from "widget-gackage-name/DX/WIDGET/PATH"; import { BASE_COMPONENT } from "./BASE_COMPONENT_PATH"; @@ -89,7 +90,8 @@ export { name: "CONFIG_COMPONENT", path: "./CONFIG_COMPONENT_PATH" }, - hasModel: true + hasModel: true, + reexports: [ "ReexportewdMember", "OtherReexportedMember"] }, "widget-gackage-name") ).toBe(EXPECTED); }); diff --git a/packages/devextreme-vue-generator/src/component-generator.ts b/packages/devextreme-vue-generator/src/component-generator.ts index 9a4ecc75..58057ff0 100644 --- a/packages/devextreme-vue-generator/src/component-generator.ts +++ b/packages/devextreme-vue-generator/src/component-generator.ts @@ -21,6 +21,7 @@ interface IComponent { hasExplicitTypes?: boolean; nestedComponents?: INestedComponent[]; expectedChildren?: Record; + reexports?: string[]; } interface INestedComponent { @@ -104,6 +105,7 @@ function generate(component: IComponent, widgetsPackage: string = "devextreme"): nestedComponents, defaultExport: component.name, namedExports, + reexports: component.reexports, expectedChildren: formatExpectedChildren(component.expectedChildren), widgetsPackage }; @@ -159,6 +161,7 @@ const renderComponent: (model: { expectedChildren?: IExpectedChildModel[]; defaultExport: string; namedExports: string[]; + reexports?: string[]; widgetsPackage: string; }) => string = createTempate( @@ -166,6 +169,10 @@ const renderComponent: (model: { `export { ExplicitTypes } from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + `<#?#>` + +`<#? it.reexports #>` + + `export { <#= it.reexports.join(', ') #> } from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + +`<#?#>` + + `import <#= it.widgetImport.name #><#? it.props #>, { Properties }<#?#> from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + `<#~ it.namedImports :namedImport #>` + `import { <#= namedImport.name #> } from "<#= namedImport.path #>";\n` + From 1930a2e4dc99aa031eeeaed160d4e706a1947962 Mon Sep 17 00:00:00 2001 From: Igggr Date: Tue, 12 Oct 2021 18:10:22 +0300 Subject: [PATCH 2/7] Reexports appear in the generated files --- .../devextreme-vue-generator/src/component-generator.ts | 8 ++++++-- packages/devextreme-vue-generator/src/generator.ts | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/devextreme-vue-generator/src/component-generator.ts b/packages/devextreme-vue-generator/src/component-generator.ts index 58057ff0..f943c328 100644 --- a/packages/devextreme-vue-generator/src/component-generator.ts +++ b/packages/devextreme-vue-generator/src/component-generator.ts @@ -169,8 +169,12 @@ const renderComponent: (model: { `export { ExplicitTypes } from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + `<#?#>` + -`<#? it.reexports #>` + - `export { <#= it.reexports.join(', ') #> } from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + +`<#? it.reexports?.filter(n => n != 'default')?.length #>` + + `export {\n <#= it.reexports.filter(n => n != 'default').join(',\\n ') #>,\n} from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + +`<#?#>` + + +`<#? !it.defaultExport && it.reexports?.includes('default') #>` + + `export default from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + `<#?#>` + `import <#= it.widgetImport.name #><#? it.props #>, { Properties }<#?#> from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + diff --git a/packages/devextreme-vue-generator/src/generator.ts b/packages/devextreme-vue-generator/src/generator.ts index bb6b77d0..1779a1ff 100644 --- a/packages/devextreme-vue-generator/src/generator.ts +++ b/packages/devextreme-vue-generator/src/generator.ts @@ -107,6 +107,7 @@ function mapWidget( props: getProps(raw.options, customTypeHash), hasModel: !!raw.isEditor, hasExplicitTypes: !!raw.optionsTypeParams?.length, + reexports: raw.reexports, nestedComponents: raw.complexOptions ? raw.complexOptions.map((o) => mapNestedComponent(o, customTypeHash)) : undefined, From 67d8d53e488808e8676cb3eabacc1df4159390b4 Mon Sep 17 00:00:00 2001 From: Igggr Date: Tue, 12 Oct 2021 18:20:24 +0300 Subject: [PATCH 3/7] Fix test --- .../src/component-generator.test.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/devextreme-vue-generator/src/component-generator.test.ts b/packages/devextreme-vue-generator/src/component-generator.test.ts index d32579f4..9adcaf5d 100644 --- a/packages/devextreme-vue-generator/src/component-generator.test.ts +++ b/packages/devextreme-vue-generator/src/component-generator.test.ts @@ -49,7 +49,10 @@ export { it("generates component with model", () => { //#region EXPECTED const EXPECTED = ` -export { ReexportewdMember, OtherReexportedMember } from "widget-gackage-name/DX/WIDGET/PATH"; +export { + ReexportedMember, + OtherReexportedMember, +} from "widget-gackage-name/DX/WIDGET/PATH"; import WIDGET from "widget-gackage-name/DX/WIDGET/PATH"; import { BASE_COMPONENT } from "./BASE_COMPONENT_PATH"; @@ -91,7 +94,7 @@ export { path: "./CONFIG_COMPONENT_PATH" }, hasModel: true, - reexports: [ "ReexportewdMember", "OtherReexportedMember"] + reexports: [ "ReexportedMember", "OtherReexportedMember"] }, "widget-gackage-name") ).toBe(EXPECTED); }); From ce221fe659fec857ae68f10bab61384101662036 Mon Sep 17 00:00:00 2001 From: Igggr Date: Tue, 12 Oct 2021 18:20:53 +0300 Subject: [PATCH 4/7] Update integration-data.json --- .../metadata/integration-data.json | 1908 ++++++++++++++++- 1 file changed, 1835 insertions(+), 73 deletions(-) diff --git a/packages/devextreme-vue/metadata/integration-data.json b/packages/devextreme-vue/metadata/integration-data.json index 376243db..977280e8 100644 --- a/packages/devextreme-vue/metadata/integration-data.json +++ b/packages/devextreme-vue/metadata/integration-data.json @@ -1,6 +1,7 @@ { "meta": { - "scriptsRevision": "f603691e8765ad6cee04b2b55c64e2fd29741d59" + "scriptsRevision": "ea14b389aa1a7a070c675d2e8749a644f589db5e", + "toolsVersion": "4.2.0" }, "widgets": [ { @@ -1192,6 +1193,19 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "ItemTitleClickEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "default" ] }, { @@ -2224,6 +2238,18 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "CancelClickEvent", + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "default" ] }, { @@ -2561,6 +2587,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "maxItemCount", "types": [ @@ -5564,7 +5611,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -6723,7 +6771,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -7022,7 +7071,31 @@ "optionName": "items" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ChangeEvent", + "ClosedEvent", + "ContentReadyEvent", + "CopyEvent", + "CutEvent", + "DisposingEvent", + "EnterKeyEvent", + "FocusInEvent", + "FocusOutEvent", + "InitializedEvent", + "InputEvent", + "ItemClickEvent", + "KeyDownEvent", + "KeyPressEvent", + "KeyUpEvent", + "OpenedEvent", + "OptionChangedEvent", + "PasteEvent", + "SelectionChangedEvent", + "ValueChangedEvent", + "DropDownButtonTemplateData", + "default" + ] }, { "name": "DxBarGauge", @@ -11848,6 +11921,21 @@ "componentName": "tooltip", "optionName": "tooltip" } + ], + "reexports": [ + "BarGaugeBarInfo", + "LegendItem", + "DisposingEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "OptionChangedEvent", + "TooltipHiddenEvent", + "TooltipShownEvent", + "default" ] }, { @@ -12742,6 +12830,17 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "default" ] }, { @@ -14403,6 +14502,19 @@ "componentName": "tooltip", "optionName": "tooltip" } + ], + "reexports": [ + "DisposingEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "OptionChangedEvent", + "TooltipHiddenEvent", + "TooltipShownEvent", + "default" ] }, { @@ -14913,7 +15025,16 @@ ] } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "ClickEvent", + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "TemplateData", + "default" + ] }, { "name": "DxButtonGroup", @@ -15656,6 +15777,15 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "default" ] }, { @@ -16332,7 +16462,14 @@ ] } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ContentReadyEvent", + "ValueChangedEvent", + "CellTemplateData", + "DisabledDate", + "default" + ] }, { "name": "DxChart", @@ -44103,6 +44240,40 @@ "componentName": "zoomAndPan", "optionName": "zoomAndPan" } + ], + "reexports": [ + "ArgumentAxisClickEvent", + "DisposingEvent", + "DoneEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "LegendClickEvent", + "OptionChangedEvent", + "PointClickEvent", + "PointHoverChangedEvent", + "PointSelectionChangedEvent", + "SeriesClickEvent", + "SeriesHoverChangedEvent", + "SeriesSelectionChangedEvent", + "TooltipHiddenEvent", + "TooltipShownEvent", + "ZoomEndEvent", + "ZoomStartEvent", + "baseLabelObject", + "basePointObject", + "baseSeriesObject", + "chartAxisObject", + "chartPointAggregationInfoObject", + "chartPointObject", + "chartSeriesObject", + "default", + "dxChartAnnotationConfig", + "dxChartCommonAnnotationConfig", + "dxChartSeriesTypes" ] }, { @@ -44611,7 +44782,15 @@ ] } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "ValueChangedEvent", + "default" + ] }, { "name": "DxCircularGauge", @@ -49139,6 +49318,19 @@ "componentName": "valueIndicator", "optionName": "valueIndicator" } + ], + "reexports": [ + "DisposingEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "OptionChangedEvent", + "TooltipHiddenEvent", + "TooltipShownEvent", + "default" ] }, { @@ -49413,6 +49605,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "name", "types": [ @@ -52095,7 +52308,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -53168,7 +53382,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -53462,7 +53677,28 @@ "optionName": "dropDownOptions" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ChangeEvent", + "ClosedEvent", + "CopyEvent", + "CutEvent", + "DisposingEvent", + "EnterKeyEvent", + "FocusInEvent", + "FocusOutEvent", + "InitializedEvent", + "InputEvent", + "KeyDownEvent", + "KeyPressEvent", + "KeyUpEvent", + "OpenedEvent", + "OptionChangedEvent", + "PasteEvent", + "ValueChangedEvent", + "DropDownButtonTemplateData", + "default" + ] }, { "name": "DxContextMenu", @@ -55007,7 +55243,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -55604,7 +55841,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -55883,6 +56121,22 @@ "componentName": "showSubmenuMode", "optionName": "showSubmenuMode" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "HiddenEvent", + "HidingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "PositioningEvent", + "SelectionChangedEvent", + "ShowingEvent", + "ShownEvent", + "default" ] }, { @@ -62783,6 +63037,14 @@ } ] }, + { + "name": "renderAsync", + "types": [ + { + "type": "Boolean" + } + ] + }, { "name": "rowRenderingMode", "types": [ @@ -71565,6 +71827,20 @@ } ] }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"", + "\"default\"" + ] + } + ] + }, { "name": "minColWidth", "types": [ @@ -73246,7 +73522,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -77253,6 +77530,14 @@ } ] }, + { + "name": "renderAsync", + "types": [ + { + "type": "Boolean" + } + ] + }, { "name": "rowRenderingMode", "types": [ @@ -77477,7 +77762,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -79525,6 +79811,87 @@ "componentName": "toolbar", "optionName": "toolbar" } + ], + "reexports": [ + "GridBaseEditing", + "DataChange", + "GridBaseEditingTexts", + "GridBasePaging", + "GridBaseScrolling", + "GridBaseSelection", + "GridBase", + "GridBaseColumn", + "ColumnBase", + "GridBaseColumnButton", + "ColumnButtonBase", + "AdaptiveDetailRowPreparingEvent", + "CellClickEvent", + "CellDblClickEvent", + "CellHoverChangedEvent", + "CellPreparedEvent", + "ContentReadyEvent", + "ContextMenuPreparingEvent", + "DataErrorOccurredEvent", + "DisposingEvent", + "EditCanceledEvent", + "EditCancelingEvent", + "EditingStartEvent", + "EditorPreparedEvent", + "EditorPreparingEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "FocusedCellChangedEvent", + "FocusedCellChangingEvent", + "FocusedRowChangedEvent", + "FocusedRowChangingEvent", + "InitializedEvent", + "InitNewRowEvent", + "KeyDownEvent", + "OptionChangedEvent", + "RowClickEvent", + "RowCollapsedEvent", + "RowCollapsingEvent", + "RowDblClickEvent", + "RowExpandedEvent", + "RowExpandingEvent", + "RowInsertedEvent", + "RowInsertingEvent", + "RowPreparedEvent", + "RowRemovedEvent", + "RowRemovingEvent", + "RowUpdatedEvent", + "RowUpdatingEvent", + "RowValidatingEvent", + "SavedEvent", + "SavingEvent", + "SelectionChangedEvent", + "ToolbarPreparingEvent", + "RowDraggingAddEvent", + "RowDraggingChangeEvent", + "RowDraggingEndEvent", + "RowDraggingMoveEvent", + "RowDraggingStartEvent", + "RowDraggingRemoveEvent", + "RowDraggingReorderEvent", + "ColumnButtonClickEvent", + "ColumnButtonTemplateData", + "ColumnCellTemplateData", + "ColumnEditCellTemplateData", + "ColumnGroupCellTemplateData", + "ColumnHeaderCellTemplateData", + "MasterDetailTemplateData", + "RowDraggingTemplateData", + "RowTemplateData", + "dxDataGridToolbarItem", + "dxDataGridToolbar", + "dxDataGridEditing", + "dxDataGridScrolling", + "dxDataGridSelection", + "ColumnButton", + "dxDataGridRowObject", + "RowObject", + "default" ] }, { @@ -79863,6 +80230,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "max", "types": [ @@ -83656,7 +84044,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -84729,7 +85118,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -85031,7 +85421,30 @@ "optionName": "dropDownOptions" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ChangeEvent", + "ClosedEvent", + "ContentReadyEvent", + "CopyEvent", + "CutEvent", + "DisposingEvent", + "EnterKeyEvent", + "FocusInEvent", + "FocusOutEvent", + "InitializedEvent", + "InputEvent", + "KeyDownEvent", + "KeyPressEvent", + "KeyUpEvent", + "OpenedEvent", + "OptionChangedEvent", + "PasteEvent", + "ValueChangedEvent", + "DisabledDate", + "DropDownButtonTemplateData", + "default" + ] }, { "name": "DxDeferRendering", @@ -85531,7 +85944,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -86193,6 +86607,15 @@ "componentName": "animation", "optionName": "animation" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "RenderedEvent", + "ShownEvent", + "default" ] }, { @@ -89455,6 +89878,14 @@ } ] }, + { + "name": "useNativeScrolling", + "types": [ + { + "type": "Boolean" + } + ] + }, { "name": "viewToolbar", "types": [ @@ -92758,6 +93189,36 @@ "componentName": "zoomLevel", "optionName": "zoomLevel" } + ], + "reexports": [ + "ContentReadyEvent", + "CustomCommandEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemDblClickEvent", + "OptionChangedEvent", + "RequestEditOperationEvent", + "RequestLayoutUpdateEvent", + "SelectionChangedEvent", + "CustomShapeTemplateData", + "CustomShapeToolboxTemplateData", + "default", + "dxDiagramConnector", + "dxDiagramShape", + "dxDiagramCustomCommand", + "dxDiagramAddShapeArgs", + "dxDiagramAddShapeFromToolboxArgs", + "dxDiagramDeleteShapeArgs", + "dxDiagramDeleteConnectorArgs", + "dxDiagramChangeConnectionArgs", + "dxDiagramChangeConnectorPointsArgs", + "dxDiagramBeforeChangeShapeTextArgs", + "dxDiagramChangeShapeTextArgs", + "dxDiagramBeforeChangeConnectorTextArgs", + "dxDiagramChangeConnectorTextArgs", + "dxDiagramResizeShapeArgs", + "dxDiagramMoveShapeArgs" ] }, { @@ -93519,7 +93980,18 @@ "optionName": "cursorOffset" } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "DraggableBase", + "DisposingEvent", + "DragEndEvent", + "DragMoveEvent", + "DragStartEvent", + "InitializedEvent", + "OptionChangedEvent", + "DragTemplateData", + "default" + ] }, { "name": "DxDrawer", @@ -93924,7 +94396,13 @@ ] } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "default" + ] }, { "name": "DxDropDownBox", @@ -94301,6 +94779,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "maxLength", "types": [ @@ -97022,7 +97521,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -98095,7 +98595,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -98390,7 +98891,29 @@ } ], "isEditor": true, - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "ChangeEvent", + "ClosedEvent", + "CopyEvent", + "CutEvent", + "DisposingEvent", + "EnterKeyEvent", + "FocusInEvent", + "FocusOutEvent", + "InitializedEvent", + "InputEvent", + "KeyDownEvent", + "KeyPressEvent", + "KeyUpEvent", + "OpenedEvent", + "OptionChangedEvent", + "PasteEvent", + "ValueChangedEvent", + "ContentTemplateData", + "DropDownButtonTemplateData", + "default" + ] }, { "name": "DxDropDownButton", @@ -100788,7 +101311,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -100993,7 +101517,7 @@ "name": "model", "types": [ { - "type": "Object" + "type": "Any" } ] }, @@ -101005,6 +101529,22 @@ "isCustomType": true } ] + }, + { + "name": "itemData", + "types": [ + { + "type": "Object" + } + ] + }, + { + "name": "itemElement", + "types": [ + { + "type": "Any" + } + ] } ] } @@ -101423,7 +101963,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -101716,6 +102257,16 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ButtonClickEvent", + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "default" ] }, { @@ -105285,6 +105836,37 @@ "componentName": "upload", "optionName": "upload" } + ], + "reexports": [ + "ContentReadyEvent", + "ContextMenuItemClickEvent", + "ContextMenuShowingEvent", + "CurrentDirectoryChangedEvent", + "DisposingEvent", + "ErrorOccurredEvent", + "FocusedItemChangedEvent", + "InitializedEvent", + "OptionChangedEvent", + "SelectedFileOpenedEvent", + "SelectionChangedEvent", + "ToolbarItemClickEvent", + "DirectoryCreatingEvent", + "DirectoryCreatedEvent", + "ItemRenamingEvent", + "ItemRenamedEvent", + "ItemMovingEvent", + "ItemMovedEvent", + "ItemCopyingEvent", + "ItemCopiedEvent", + "ItemDeletingEvent", + "ItemDeletedEvent", + "FileUploadingEvent", + "FileUploadedEvent", + "ItemDownloadingEvent", + "default", + "dxFileManagerContextMenu", + "dxFileManagerToolbar", + "dxFileManagerDetailsColumn" ] }, { @@ -106774,6 +107356,23 @@ } ] } + ], + "reexports": [ + "BeforeSendEvent", + "ContentReadyEvent", + "DisposingEvent", + "DropZoneEnterEvent", + "DropZoneLeaveEvent", + "FilesUploadedEvent", + "InitializedEvent", + "OptionChangedEvent", + "ProgressEvent", + "UploadAbortedEvent", + "UploadedEvent", + "UploadErrorEvent", + "UploadStartedEvent", + "ValueChangedEvent", + "default" ] }, { @@ -108677,6 +109276,20 @@ "componentName": "groupOperationDescriptions", "optionName": "groupOperationDescriptions" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "EditorPreparedEvent", + "EditorPreparingEvent", + "InitializedEvent", + "OptionChangedEvent", + "ValueChangedEvent", + "CustomOperationEditorTemplate", + "FieldEditorTemplate", + "default", + "dxFilterBuilderCustomOperation", + "dxFilterBuilderField" ] }, { @@ -108922,6 +109535,20 @@ } ] }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"", + "\"default\"" + ] + } + ] + }, { "name": "minColWidth", "types": [ @@ -114827,6 +115454,17 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "EditorEnterKeyEvent", + "FieldDataChangedEvent", + "InitializedEvent", + "OptionChangedEvent", + "GroupItemTemplateData", + "SimpleItemTemplateData", + "default" ] }, { @@ -120912,6 +121550,22 @@ "componentName": "tooltip", "optionName": "tooltip" } + ], + "reexports": [ + "LegendItem", + "DisposingEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "HoverChangedEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "ItemClickEvent", + "LegendClickEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "default" ] }, { @@ -121968,6 +122622,18 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "default" ] }, { @@ -130289,6 +130955,50 @@ "componentName": "validation", "optionName": "validation" } + ], + "reexports": [ + "ContentReadyEvent", + "ContextMenuPreparingEvent", + "CustomCommandEvent", + "DependencyDeletedEvent", + "DependencyDeletingEvent", + "DependencyInsertedEvent", + "DependencyInsertingEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "ResourceAssignedEvent", + "ResourceAssigningEvent", + "ResourceDeletedEvent", + "ResourceDeletingEvent", + "ResourceInsertedEvent", + "ResourceInsertingEvent", + "ResourceUnassignedEvent", + "ResourceUnassigningEvent", + "SelectionChangedEvent", + "TaskClickEvent", + "TaskDblClickEvent", + "TaskDeletedEvent", + "TaskDeletingEvent", + "TaskEditDialogShowingEvent", + "ResourceManagerDialogShowingEvent", + "TaskInsertedEvent", + "TaskInsertingEvent", + "TaskMovingEvent", + "TaskUpdatedEvent", + "TaskUpdatingEvent", + "TaskContentTemplateData", + "ProgressTooltipTemplateData", + "TimeTooltipTemplateData", + "default", + "dxGanttToolbar", + "dxGanttContextMenu", + "dxGanttStripLine", + "dxGanttSorting", + "dxGanttFilterRow", + "dxGanttFilterRowOperationDescriptions", + "dxGanttHeaderFilter", + "dxGanttHeaderFilterTexts" ] }, { @@ -131797,7 +132507,24 @@ } ], "isEditor": true, - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "FocusInEvent", + "FocusOutEvent", + "InitializedEvent", + "OptionChangedEvent", + "ValueChangedEvent", + "MentionTemplateData", + "default", + "dxHtmlEditorMediaResizing", + "dxHtmlEditorTableResizing", + "dxHtmlEditorMention", + "dxHtmlEditorToolbar", + "ToolbarItem", + "dxHtmlEditorVariables" + ] }, { "name": "DxLinearGauge", @@ -136404,6 +137131,19 @@ "componentName": "valueIndicator", "optionName": "valueIndicator" } + ], + "reexports": [ + "DisposingEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "OptionChangedEvent", + "TooltipHiddenEvent", + "TooltipShownEvent", + "default" ] }, { @@ -140933,6 +141673,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "mask", "types": [ @@ -142054,6 +142815,27 @@ "componentName": "searchEditorOptions", "optionName": "searchEditorOptions" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "GroupRenderedEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemDeletedEvent", + "ItemDeletingEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "ItemReorderedEvent", + "ItemSwipeEvent", + "OptionChangedEvent", + "PageLoadingEvent", + "PullRefreshEvent", + "ScrollEvent", + "SelectAllValueChangedEvent", + "SelectionChangedEvent", + "default" ] }, { @@ -142344,6 +143126,13 @@ } ] } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "default" ] }, { @@ -143324,7 +144113,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -143781,7 +144571,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -143966,6 +144757,17 @@ "componentName": "position", "optionName": "position" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "HidingEvent", + "HiddenEvent", + "InitializedEvent", + "OptionChangedEvent", + "ShowingEvent", + "ShownEvent", + "default" ] }, { @@ -144340,6 +145142,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "minSearchLength", "types": [ @@ -147051,7 +147874,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -147619,7 +148443,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -147938,7 +148763,23 @@ "optionName": "items" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ClosedEvent", + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "OpenedEvent", + "OptionChangedEvent", + "PageLoadingEvent", + "PullRefreshEvent", + "ScrollEvent", + "SelectionChangedEvent", + "TitleRenderedEvent", + "ValueChangedEvent", + "default" + ] }, { "name": "DxMap", @@ -149238,6 +150079,19 @@ "isCollectionItem": true, "optionName": "routes" } + ], + "reexports": [ + "ClickEvent", + "DisposingEvent", + "InitializedEvent", + "MarkerAddedEvent", + "MarkerRemovedEvent", + "OptionChangedEvent", + "ReadyEvent", + "RouteAddedEvent", + "RouteRemovedEvent", + "MapLocation", + "default" ] }, { @@ -150749,7 +151603,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -151367,7 +152222,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -151673,6 +152529,22 @@ "componentName": "showSubmenuMode", "optionName": "showSubmenuMode" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "SubmenuHiddenEvent", + "SubmenuHidingEvent", + "SubmenuShowingEvent", + "SubmenuShownEvent", + "default", + "dxMenuBaseItem" ] }, { @@ -152665,6 +153537,18 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "default" ] }, { @@ -153716,6 +154600,18 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "default" ] }, { @@ -153850,6 +154746,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "max", "types": [ @@ -155698,7 +156615,26 @@ "optionName": "format" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ChangeEvent", + "ContentReadyEvent", + "CopyEvent", + "CutEvent", + "DisposingEvent", + "EnterKeyEvent", + "FocusInEvent", + "FocusOutEvent", + "InitializedEvent", + "InputEvent", + "KeyDownEvent", + "KeyPressEvent", + "KeyUpEvent", + "OptionChangedEvent", + "PasteEvent", + "ValueChangedEvent", + "default" + ] }, { "name": "DxPieChart", @@ -164548,6 +165484,31 @@ "componentName": "tooltip", "optionName": "tooltip" } + ], + "reexports": [ + "DisposingEvent", + "DoneEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "LegendClickEvent", + "OptionChangedEvent", + "PointClickEvent", + "PointHoverChangedEvent", + "PointSelectionChangedEvent", + "TooltipHiddenEvent", + "TooltipShownEvent", + "LegendItem", + "PieChartSeries", + "dxPieChartAnnotationConfig", + "dxPieChartCommonAnnotationConfig", + "default", + "dxPieChartSeriesTypes", + "piePointObject", + "pieChartSeriesObject" ] }, { @@ -167122,6 +168083,20 @@ "componentName": "texts", "optionName": "texts" } + ], + "reexports": [ + "CellClickEvent", + "CellPreparedEvent", + "ContentReadyEvent", + "ContextMenuPreparingEvent", + "DisposingEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "InitializedEvent", + "OptionChangedEvent", + "default", + "Cell" ] }, { @@ -167996,6 +168971,14 @@ "componentName": "texts", "optionName": "texts" } + ], + "reexports": [ + "ContentReadyEvent", + "ContextMenuPreparingEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "default" ] }, { @@ -186989,6 +187972,36 @@ "componentName": "valueAxis", "optionName": "valueAxis" } + ], + "reexports": [ + "ArgumentAxisClickEvent", + "DisposingEvent", + "DoneEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "LegendClickEvent", + "OptionChangedEvent", + "PointClickEvent", + "PointHoverChangedEvent", + "PointSelectionChangedEvent", + "SeriesClickEvent", + "SeriesHoverChangedEvent", + "SeriesSelectionChangedEvent", + "TooltipHiddenEvent", + "TooltipShownEvent", + "ZoomEndEvent", + "ZoomStartEvent", + "PolarChartSeries", + "default", + "dxPolarChartAnnotationConfig", + "dxPolarChartCommonAnnotationConfig", + "dxPolarChartSeriesTypes", + "polarPointObject", + "polarChartSeriesObject" ] }, { @@ -188237,7 +189250,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -188719,7 +189733,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -189050,7 +190065,19 @@ "optionName": "toolbarItems" } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "HidingEvent", + "HiddenEvent", + "InitializedEvent", + "OptionChangedEvent", + "ShowingEvent", + "ShownEvent", + "TitleRenderedEvent", + "default" + ] }, { "name": "DxPopup", @@ -190460,7 +191487,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -190917,7 +191945,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -191215,7 +192244,22 @@ "optionName": "toolbarItems" } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "HidingEvent", + "HiddenEvent", + "InitializedEvent", + "ShownEvent", + "ResizeEvent", + "ResizeStartEvent", + "ResizeEndEvent", + "OptionChangedEvent", + "ShowingEvent", + "TitleRenderedEvent", + "default" + ] }, { "name": "DxProgressBar", @@ -191776,6 +192820,15 @@ } ] } + ], + "reexports": [ + "CompleteEvent", + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "ValueChangedEvent", + "default" ] }, { @@ -192510,7 +193563,15 @@ "optionName": "items" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "ValueChangedEvent", + "default" + ] }, { "name": "DxRangeSelector", @@ -204679,6 +205740,18 @@ "componentName": "value", "optionName": "value" } + ], + "reexports": [ + "DisposingEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "OptionChangedEvent", + "ValueChangedEvent", + "default" ] }, { @@ -205549,7 +206622,15 @@ "optionName": "tooltip" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "ValueChangedEvent", + "default" + ] }, { "name": "DxRecurrenceEditor", @@ -206027,7 +207108,10 @@ ] } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "default" + ] }, { "name": "DxResizable", @@ -206520,7 +207604,16 @@ ] } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "ResizeEvent", + "ResizeStartEvent", + "ResizeEndEvent", + "default" + ] }, { "name": "DxResponsiveBox", @@ -207681,6 +208774,17 @@ "isCollectionItem": true, "optionName": "rows" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "default" ] }, { @@ -212151,6 +213255,24 @@ "componentName": "tooltip", "optionName": "tooltip" } + ], + "reexports": [ + "DisposingEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "LinkClickEvent", + "LinkHoverEvent", + "NodeClickEvent", + "NodeHoverEvent", + "OptionChangedEvent", + "default", + "dxSankeyConnectionInfoObject", + "dxSankeyLink", + "dxSankeyNode" ] }, { @@ -216701,6 +217823,37 @@ "isCollectionItem": true, "optionName": "views" } + ], + "reexports": [ + "AppointmentAddedEvent", + "AppointmentAddingEvent", + "AppointmentClickEvent", + "AppointmentContextMenuEvent", + "AppointmentDblClickEvent", + "AppointmentDeletedEvent", + "AppointmentDeletingEvent", + "AppointmentFormOpeningEvent", + "AppointmentRenderedEvent", + "AppointmentUpdatedEvent", + "AppointmentUpdatingEvent", + "CellClickEvent", + "CellContextMenuEvent", + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "AppointmentDraggingAddEvent", + "AppointmentDraggingEndEvent", + "AppointmentDraggingMoveEvent", + "AppointmentDraggingStartEvent", + "AppointmentDraggingRemoveEvent", + "AppointmentTemplateData", + "AppointmentTooltipTemplateData", + "AppointmentCollectorTemplateData", + "DateNavigatorTextInfo", + "default", + "Appointment", + "dxSchedulerScrolling" ] }, { @@ -217309,7 +218462,17 @@ ] } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "PullDownEvent", + "ReachBottomEvent", + "ScrollEvent", + "UpdatedEvent", + "default" + ] }, { "name": "DxSelectBox", @@ -217712,6 +218875,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "maxLength", "types": [ @@ -220809,7 +221993,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -221968,7 +223153,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -222267,7 +223453,32 @@ "optionName": "items" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ChangeEvent", + "ClosedEvent", + "ContentReadyEvent", + "CopyEvent", + "CustomItemCreatingEvent", + "CutEvent", + "DisposingEvent", + "EnterKeyEvent", + "FocusInEvent", + "FocusOutEvent", + "InitializedEvent", + "InputEvent", + "ItemClickEvent", + "KeyDownEvent", + "KeyPressEvent", + "KeyUpEvent", + "OpenedEvent", + "OptionChangedEvent", + "PasteEvent", + "SelectionChangedEvent", + "ValueChangedEvent", + "DropDownButtonTemplateData", + "default" + ] }, { "name": "DxSlideOut", @@ -223462,6 +224673,20 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "MenuGroupRenderedEvent", + "MenuItemRenderedEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "default" ] }, { @@ -223803,7 +225028,13 @@ ] } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "default" + ] }, { "name": "DxSlider", @@ -224640,7 +225871,16 @@ "optionName": "tooltip" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "ValueChangedEvent", + "default", + "dxSliderBaseOptions" + ] }, { "name": "DxSortable", @@ -226077,7 +227317,21 @@ "optionName": "cursorOffset" } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "AddEvent", + "DisposingEvent", + "DragChangeEvent", + "DragEndEvent", + "DragMoveEvent", + "DragStartEvent", + "InitializedEvent", + "OptionChangedEvent", + "RemoveEvent", + "ReorderEvent", + "DragTemplateData", + "default" + ] }, { "name": "DxSparkline", @@ -227879,6 +229133,19 @@ "componentName": "tooltip", "optionName": "tooltip" } + ], + "reexports": [ + "DisposingEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "OptionChangedEvent", + "TooltipHiddenEvent", + "TooltipShownEvent", + "default" ] }, { @@ -228254,6 +229521,14 @@ } ] } + ], + "reexports": [ + "ClickEvent", + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "default" ] }, { @@ -228756,7 +230031,15 @@ ] } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "ValueChangedEvent", + "default" + ] }, { "name": "DxTabPanel", @@ -230076,6 +231359,21 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "TitleClickEvent", + "TitleHoldEvent", + "TitleRenderedEvent", + "default" ] }, { @@ -231143,6 +232441,18 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "default" ] }, { @@ -231559,6 +232869,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "maxDisplayedTags", "types": [ @@ -234753,7 +236084,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -235912,7 +237244,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -236211,7 +237544,31 @@ "optionName": "items" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ChangeEvent", + "ClosedEvent", + "ContentReadyEvent", + "CustomItemCreatingEvent", + "DisposingEvent", + "EnterKeyEvent", + "FocusInEvent", + "FocusOutEvent", + "InitializedEvent", + "InputEvent", + "ItemClickEvent", + "KeyDownEvent", + "KeyPressEvent", + "KeyUpEvent", + "MultiTagPreparingEvent", + "OpenedEvent", + "OptionChangedEvent", + "SelectAllValueChangedEvent", + "SelectionChangedEvent", + "ValueChangedEvent", + "DropDownButtonTemplateData", + "default" + ] }, { "name": "DxTextArea", @@ -236315,6 +237672,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "maxHeight", "types": [ @@ -237361,7 +238739,26 @@ ] } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ChangeEvent", + "ContentReadyEvent", + "CopyEvent", + "CutEvent", + "DisposingEvent", + "EnterKeyEvent", + "FocusInEvent", + "FocusOutEvent", + "InitializedEvent", + "InputEvent", + "KeyDownEvent", + "KeyPressEvent", + "KeyUpEvent", + "OptionChangedEvent", + "PasteEvent", + "ValueChangedEvent", + "default" + ] }, { "name": "DxTextBox", @@ -237480,6 +238877,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "mask", "types": [ @@ -239250,7 +240668,26 @@ "optionName": "buttons" } ], - "isEditor": true + "isEditor": true, + "reexports": [ + "ChangeEvent", + "ContentReadyEvent", + "CopyEvent", + "CutEvent", + "DisposingEvent", + "EnterKeyEvent", + "FocusInEvent", + "FocusOutEvent", + "InitializedEvent", + "InputEvent", + "KeyDownEvent", + "KeyPressEvent", + "KeyUpEvent", + "OptionChangedEvent", + "PasteEvent", + "ValueChangedEvent", + "default" + ] }, { "name": "DxTileView", @@ -240172,6 +241609,17 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "default" ] }, { @@ -241174,7 +242622,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -241631,7 +243080,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -241816,6 +243266,17 @@ "componentName": "position", "optionName": "position" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "HidingEvent", + "HiddenEvent", + "InitializedEvent", + "OptionChangedEvent", + "ShowingEvent", + "ShownEvent", + "default" ] }, { @@ -242761,6 +244222,17 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemContextMenuEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "OptionChangedEvent", + "default" ] }, { @@ -243794,7 +245266,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -244276,7 +245749,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -244495,7 +245969,18 @@ "optionName": "showEvent" } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "HidingEvent", + "HiddenEvent", + "InitializedEvent", + "OptionChangedEvent", + "ShowingEvent", + "ShownEvent", + "default" + ] }, { "name": "DxTreeList", @@ -251109,6 +252594,14 @@ } ] }, + { + "name": "renderAsync", + "types": [ + { + "type": "Boolean" + } + ] + }, { "name": "rowRenderingMode", "types": [ @@ -258726,6 +260219,20 @@ } ] }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"", + "\"default\"" + ] + } + ] + }, { "name": "minColWidth", "types": [ @@ -260072,7 +261579,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -263961,6 +265469,14 @@ } ] }, + { + "name": "renderAsync", + "types": [ + { + "type": "Boolean" + } + ] + }, { "name": "rowRenderingMode", "types": [ @@ -264151,7 +265667,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -265287,6 +266804,74 @@ "componentName": "treeListHeaderFilter", "optionName": "headerFilter" } + ], + "reexports": [ + "AdaptiveDetailRowPreparingEvent", + "CellClickEvent", + "CellDblClickEvent", + "CellHoverChangedEvent", + "CellPreparedEvent", + "ContentReadyEvent", + "ContextMenuPreparingEvent", + "DataErrorOccurredEvent", + "DisposingEvent", + "EditCanceledEvent", + "EditCancelingEvent", + "EditingStartEvent", + "EditorPreparedEvent", + "EditorPreparingEvent", + "FocusedCellChangedEvent", + "FocusedCellChangingEvent", + "FocusedRowChangedEvent", + "FocusedRowChangingEvent", + "InitializedEvent", + "InitNewRowEvent", + "KeyDownEvent", + "NodesInitializedEvent", + "OptionChangedEvent", + "RowClickEvent", + "RowCollapsedEvent", + "RowCollapsingEvent", + "RowDblClickEvent", + "RowExpandedEvent", + "RowExpandingEvent", + "RowInsertedEvent", + "RowInsertingEvent", + "RowPreparedEvent", + "RowRemovedEvent", + "RowRemovingEvent", + "RowUpdatedEvent", + "RowUpdatingEvent", + "RowValidatingEvent", + "SavedEvent", + "SavingEvent", + "SelectionChangedEvent", + "ToolbarPreparingEvent", + "RowDraggingAddEvent", + "RowDraggingChangeEvent", + "RowDraggingEndEvent", + "RowDraggingMoveEvent", + "RowDraggingStartEvent", + "RowDraggingRemoveEvent", + "RowDraggingReorderEvent", + "ColumnButtonClickEvent", + "ColumnButtonTemplateData", + "ColumnCellTemplateData", + "ColumnEditCellTemplateData", + "RowDraggingTemplateData", + "dxTreeListEditing", + "dxTreeListEditingTexts", + "dxTreeListPaging", + "dxTreeListScrolling", + "dxTreeListSelection", + "default", + "dxTreeListToolbarItem", + "dxTreeListToolbar", + "ColumnButton", + "dxTreeListNode", + "Node", + "dxTreeListRowObject", + "RowObject" ] }, { @@ -269550,6 +271135,24 @@ "componentName": "tooltip", "optionName": "tooltip" } + ], + "reexports": [ + "ClickEvent", + "DisposingEvent", + "DrawnEvent", + "DrillEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "HoverChangedEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "NodesInitializedEvent", + "NodesRenderingEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "default", + "dxTreeMapNode" ] }, { @@ -272017,6 +273620,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "mask", "types": [ @@ -273129,6 +274753,23 @@ "componentName": "searchEditorOptions", "optionName": "searchEditorOptions" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "ItemCollapsedEvent", + "ItemContextMenuEvent", + "ItemExpandedEvent", + "ItemHoldEvent", + "ItemRenderedEvent", + "ItemSelectionChangedEvent", + "OptionChangedEvent", + "SelectAllValueChangedEvent", + "SelectionChangedEvent", + "default", + "dxTreeViewNode" ] }, { @@ -273340,7 +274981,14 @@ ] } ], - "hasTranscludedContent": true + "hasTranscludedContent": true, + "reexports": [ + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "default", + "dxValidationGroupResult" + ] }, { "name": "DxValidationSummary", @@ -273825,6 +275473,14 @@ "isCollectionItem": true, "optionName": "items" } + ], + "reexports": [ + "ContentReadyEvent", + "DisposingEvent", + "InitializedEvent", + "ItemClickEvent", + "OptionChangedEvent", + "default" ] }, { @@ -275422,7 +277078,15 @@ "optionName": "validationRules" } ], - "isExtension": true + "isExtension": true, + "reexports": [ + "DisposingEvent", + "InitializedEvent", + "OptionChangedEvent", + "ValidatedEvent", + "default", + "dxValidatorResult" + ] }, { "name": "DxVectorMap", @@ -282176,6 +283840,28 @@ "componentName": "vectorMapTitle", "optionName": "title" } + ], + "reexports": [ + "CenterChangedEvent", + "ClickEvent", + "DisposingEvent", + "DrawnEvent", + "ExportedEvent", + "ExportingEvent", + "FileSavingEvent", + "IncidentOccurredEvent", + "InitializedEvent", + "OptionChangedEvent", + "SelectionChangedEvent", + "TooltipHiddenEvent", + "TooltipShownEvent", + "ZoomFactorChangedEvent", + "MapLayer", + "MapLayerElement", + "LegendItem", + "dxVectorMapAnnotationConfig", + "dxVectorMapCommonAnnotationConfig", + "default" ] } ], @@ -282201,7 +283887,8 @@ "name": "config", "types": [ { - "type": "Object" + "type": "AnimationConfig", + "isCustomType": true } ] } @@ -286252,7 +287939,15 @@ "name": "key", "types": [ { - "type": "Any" + "type": "Array", + "itemTypes": [ + { + "type": "String" + } + ] + }, + { + "type": "String" } ] }, @@ -298109,7 +299804,7 @@ "name": "model", "types": [ { - "type": "Object" + "type": "Any" } ] }, @@ -298121,6 +299816,22 @@ "isCustomType": true } ] + }, + { + "name": "itemData", + "types": [ + { + "type": "Object" + } + ] + }, + { + "name": "itemElement", + "types": [ + { + "type": "Any" + } + ] } ] } @@ -300824,6 +302535,20 @@ } ] }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"", + "\"default\"" + ] + } + ] + }, { "name": "minColWidth", "types": [ @@ -313301,6 +315026,27 @@ } ] }, + { + "name": "label", + "types": [ + { + "type": "Boolean" + } + ] + }, + { + "name": "labelMode", + "types": [ + { + "type": "String", + "acceptableValues": [ + "\"static\"", + "\"floating\"", + "\"hidden\"" + ] + } + ] + }, { "name": "mask", "types": [ @@ -329662,7 +331408,15 @@ "name": "key", "types": [ { - "type": "Any" + "type": "Array", + "itemTypes": [ + { + "type": "String" + } + ] + }, + { + "type": "String" } ] }, @@ -329673,7 +331427,7 @@ "type": "Function", "params": [], "returnValueType": { - "type": "Any" + "type": "String" } } ] @@ -330280,7 +332034,15 @@ "name": "key", "types": [ { - "type": "Any" + "type": "Array", + "itemTypes": [ + { + "type": "String" + } + ] + }, + { + "type": "String" } ] }, From 4466a7ff8bc54d3b203cbed5cace96bbd5835885 Mon Sep 17 00:00:00 2001 From: Igggr Date: Wed, 13 Oct 2021 10:10:08 +0300 Subject: [PATCH 5/7] Ger rid of export default (component themself is export default). Another default will never appear --- .../devextreme-vue-generator/src/component-generator.test.ts | 5 +++-- packages/devextreme-vue-generator/src/component-generator.ts | 4 ---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/packages/devextreme-vue-generator/src/component-generator.test.ts b/packages/devextreme-vue-generator/src/component-generator.test.ts index 9adcaf5d..0398a068 100644 --- a/packages/devextreme-vue-generator/src/component-generator.test.ts +++ b/packages/devextreme-vue-generator/src/component-generator.test.ts @@ -94,7 +94,7 @@ export { path: "./CONFIG_COMPONENT_PATH" }, hasModel: true, - reexports: [ "ReexportedMember", "OtherReexportedMember"] + reexports: [ "ReexportedMember", "OtherReexportedMember", "default"] }, "widget-gackage-name") ).toBe(EXPECTED); }); @@ -153,7 +153,8 @@ export { name: "CONFIG_COMPONENT", path: "./CONFIG_COMPONENT_PATH" }, - props: [{ name: "PROP" }] + props: [{ name: "PROP" }], + reexports: [ "default" ] }, "widget-gackage-name") ).toBe(EXPECTED); }); diff --git a/packages/devextreme-vue-generator/src/component-generator.ts b/packages/devextreme-vue-generator/src/component-generator.ts index f943c328..c2b0bc7e 100644 --- a/packages/devextreme-vue-generator/src/component-generator.ts +++ b/packages/devextreme-vue-generator/src/component-generator.ts @@ -173,10 +173,6 @@ const renderComponent: (model: { `export {\n <#= it.reexports.filter(n => n != 'default').join(',\\n ') #>,\n} from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + `<#?#>` + -`<#? !it.defaultExport && it.reexports?.includes('default') #>` + - `export default from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + -`<#?#>` + - `import <#= it.widgetImport.name #><#? it.props #>, { Properties }<#?#> from "<#= it.widgetsPackage #>/<#= it.widgetImport.path #>";\n` + `<#~ it.namedImports :namedImport #>` + `import { <#= namedImport.name #> } from "<#= namedImport.path #>";\n` + From 91b82ccc46e95fbf5da22ca2d2151ee7d1d9ad98 Mon Sep 17 00:00:00 2001 From: Igggr Date: Wed, 13 Oct 2021 10:11:17 +0300 Subject: [PATCH 6/7] Revert "Update integration-data.json" (was used only to testing) This reverts commit ce221fe659fec857ae68f10bab61384101662036. --- .../metadata/integration-data.json | 1908 +---------------- 1 file changed, 73 insertions(+), 1835 deletions(-) diff --git a/packages/devextreme-vue/metadata/integration-data.json b/packages/devextreme-vue/metadata/integration-data.json index 977280e8..376243db 100644 --- a/packages/devextreme-vue/metadata/integration-data.json +++ b/packages/devextreme-vue/metadata/integration-data.json @@ -1,7 +1,6 @@ { "meta": { - "scriptsRevision": "ea14b389aa1a7a070c675d2e8749a644f589db5e", - "toolsVersion": "4.2.0" + "scriptsRevision": "f603691e8765ad6cee04b2b55c64e2fd29741d59" }, "widgets": [ { @@ -1193,19 +1192,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "ItemTitleClickEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "default" ] }, { @@ -2238,18 +2224,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "CancelClickEvent", - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "default" ] }, { @@ -2587,27 +2561,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "maxItemCount", "types": [ @@ -5611,8 +5564,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -6771,8 +6723,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -7071,31 +7022,7 @@ "optionName": "items" } ], - "isEditor": true, - "reexports": [ - "ChangeEvent", - "ClosedEvent", - "ContentReadyEvent", - "CopyEvent", - "CutEvent", - "DisposingEvent", - "EnterKeyEvent", - "FocusInEvent", - "FocusOutEvent", - "InitializedEvent", - "InputEvent", - "ItemClickEvent", - "KeyDownEvent", - "KeyPressEvent", - "KeyUpEvent", - "OpenedEvent", - "OptionChangedEvent", - "PasteEvent", - "SelectionChangedEvent", - "ValueChangedEvent", - "DropDownButtonTemplateData", - "default" - ] + "isEditor": true }, { "name": "DxBarGauge", @@ -11921,21 +11848,6 @@ "componentName": "tooltip", "optionName": "tooltip" } - ], - "reexports": [ - "BarGaugeBarInfo", - "LegendItem", - "DisposingEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "OptionChangedEvent", - "TooltipHiddenEvent", - "TooltipShownEvent", - "default" ] }, { @@ -12830,17 +12742,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "default" ] }, { @@ -14502,19 +14403,6 @@ "componentName": "tooltip", "optionName": "tooltip" } - ], - "reexports": [ - "DisposingEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "OptionChangedEvent", - "TooltipHiddenEvent", - "TooltipShownEvent", - "default" ] }, { @@ -15025,16 +14913,7 @@ ] } ], - "hasTranscludedContent": true, - "reexports": [ - "ClickEvent", - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "TemplateData", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxButtonGroup", @@ -15777,15 +15656,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "default" ] }, { @@ -16462,14 +16332,7 @@ ] } ], - "isEditor": true, - "reexports": [ - "ContentReadyEvent", - "ValueChangedEvent", - "CellTemplateData", - "DisabledDate", - "default" - ] + "isEditor": true }, { "name": "DxChart", @@ -44240,40 +44103,6 @@ "componentName": "zoomAndPan", "optionName": "zoomAndPan" } - ], - "reexports": [ - "ArgumentAxisClickEvent", - "DisposingEvent", - "DoneEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "LegendClickEvent", - "OptionChangedEvent", - "PointClickEvent", - "PointHoverChangedEvent", - "PointSelectionChangedEvent", - "SeriesClickEvent", - "SeriesHoverChangedEvent", - "SeriesSelectionChangedEvent", - "TooltipHiddenEvent", - "TooltipShownEvent", - "ZoomEndEvent", - "ZoomStartEvent", - "baseLabelObject", - "basePointObject", - "baseSeriesObject", - "chartAxisObject", - "chartPointAggregationInfoObject", - "chartPointObject", - "chartSeriesObject", - "default", - "dxChartAnnotationConfig", - "dxChartCommonAnnotationConfig", - "dxChartSeriesTypes" ] }, { @@ -44782,15 +44611,7 @@ ] } ], - "isEditor": true, - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "ValueChangedEvent", - "default" - ] + "isEditor": true }, { "name": "DxCircularGauge", @@ -49318,19 +49139,6 @@ "componentName": "valueIndicator", "optionName": "valueIndicator" } - ], - "reexports": [ - "DisposingEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "OptionChangedEvent", - "TooltipHiddenEvent", - "TooltipShownEvent", - "default" ] }, { @@ -49605,27 +49413,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "name", "types": [ @@ -52308,8 +52095,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -53382,8 +53168,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -53677,28 +53462,7 @@ "optionName": "dropDownOptions" } ], - "isEditor": true, - "reexports": [ - "ChangeEvent", - "ClosedEvent", - "CopyEvent", - "CutEvent", - "DisposingEvent", - "EnterKeyEvent", - "FocusInEvent", - "FocusOutEvent", - "InitializedEvent", - "InputEvent", - "KeyDownEvent", - "KeyPressEvent", - "KeyUpEvent", - "OpenedEvent", - "OptionChangedEvent", - "PasteEvent", - "ValueChangedEvent", - "DropDownButtonTemplateData", - "default" - ] + "isEditor": true }, { "name": "DxContextMenu", @@ -55243,8 +55007,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -55841,8 +55604,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -56121,22 +55883,6 @@ "componentName": "showSubmenuMode", "optionName": "showSubmenuMode" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "HiddenEvent", - "HidingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "PositioningEvent", - "SelectionChangedEvent", - "ShowingEvent", - "ShownEvent", - "default" ] }, { @@ -63037,14 +62783,6 @@ } ] }, - { - "name": "renderAsync", - "types": [ - { - "type": "Boolean" - } - ] - }, { "name": "rowRenderingMode", "types": [ @@ -71827,20 +71565,6 @@ } ] }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"", - "\"default\"" - ] - } - ] - }, { "name": "minColWidth", "types": [ @@ -73522,8 +73246,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -77530,14 +77253,6 @@ } ] }, - { - "name": "renderAsync", - "types": [ - { - "type": "Boolean" - } - ] - }, { "name": "rowRenderingMode", "types": [ @@ -77762,8 +77477,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -79811,87 +79525,6 @@ "componentName": "toolbar", "optionName": "toolbar" } - ], - "reexports": [ - "GridBaseEditing", - "DataChange", - "GridBaseEditingTexts", - "GridBasePaging", - "GridBaseScrolling", - "GridBaseSelection", - "GridBase", - "GridBaseColumn", - "ColumnBase", - "GridBaseColumnButton", - "ColumnButtonBase", - "AdaptiveDetailRowPreparingEvent", - "CellClickEvent", - "CellDblClickEvent", - "CellHoverChangedEvent", - "CellPreparedEvent", - "ContentReadyEvent", - "ContextMenuPreparingEvent", - "DataErrorOccurredEvent", - "DisposingEvent", - "EditCanceledEvent", - "EditCancelingEvent", - "EditingStartEvent", - "EditorPreparedEvent", - "EditorPreparingEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "FocusedCellChangedEvent", - "FocusedCellChangingEvent", - "FocusedRowChangedEvent", - "FocusedRowChangingEvent", - "InitializedEvent", - "InitNewRowEvent", - "KeyDownEvent", - "OptionChangedEvent", - "RowClickEvent", - "RowCollapsedEvent", - "RowCollapsingEvent", - "RowDblClickEvent", - "RowExpandedEvent", - "RowExpandingEvent", - "RowInsertedEvent", - "RowInsertingEvent", - "RowPreparedEvent", - "RowRemovedEvent", - "RowRemovingEvent", - "RowUpdatedEvent", - "RowUpdatingEvent", - "RowValidatingEvent", - "SavedEvent", - "SavingEvent", - "SelectionChangedEvent", - "ToolbarPreparingEvent", - "RowDraggingAddEvent", - "RowDraggingChangeEvent", - "RowDraggingEndEvent", - "RowDraggingMoveEvent", - "RowDraggingStartEvent", - "RowDraggingRemoveEvent", - "RowDraggingReorderEvent", - "ColumnButtonClickEvent", - "ColumnButtonTemplateData", - "ColumnCellTemplateData", - "ColumnEditCellTemplateData", - "ColumnGroupCellTemplateData", - "ColumnHeaderCellTemplateData", - "MasterDetailTemplateData", - "RowDraggingTemplateData", - "RowTemplateData", - "dxDataGridToolbarItem", - "dxDataGridToolbar", - "dxDataGridEditing", - "dxDataGridScrolling", - "dxDataGridSelection", - "ColumnButton", - "dxDataGridRowObject", - "RowObject", - "default" ] }, { @@ -80230,27 +79863,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "max", "types": [ @@ -84044,8 +83656,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -85118,8 +84729,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -85421,30 +85031,7 @@ "optionName": "dropDownOptions" } ], - "isEditor": true, - "reexports": [ - "ChangeEvent", - "ClosedEvent", - "ContentReadyEvent", - "CopyEvent", - "CutEvent", - "DisposingEvent", - "EnterKeyEvent", - "FocusInEvent", - "FocusOutEvent", - "InitializedEvent", - "InputEvent", - "KeyDownEvent", - "KeyPressEvent", - "KeyUpEvent", - "OpenedEvent", - "OptionChangedEvent", - "PasteEvent", - "ValueChangedEvent", - "DisabledDate", - "DropDownButtonTemplateData", - "default" - ] + "isEditor": true }, { "name": "DxDeferRendering", @@ -85944,8 +85531,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -86607,15 +86193,6 @@ "componentName": "animation", "optionName": "animation" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "RenderedEvent", - "ShownEvent", - "default" ] }, { @@ -89878,14 +89455,6 @@ } ] }, - { - "name": "useNativeScrolling", - "types": [ - { - "type": "Boolean" - } - ] - }, { "name": "viewToolbar", "types": [ @@ -93189,36 +92758,6 @@ "componentName": "zoomLevel", "optionName": "zoomLevel" } - ], - "reexports": [ - "ContentReadyEvent", - "CustomCommandEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemDblClickEvent", - "OptionChangedEvent", - "RequestEditOperationEvent", - "RequestLayoutUpdateEvent", - "SelectionChangedEvent", - "CustomShapeTemplateData", - "CustomShapeToolboxTemplateData", - "default", - "dxDiagramConnector", - "dxDiagramShape", - "dxDiagramCustomCommand", - "dxDiagramAddShapeArgs", - "dxDiagramAddShapeFromToolboxArgs", - "dxDiagramDeleteShapeArgs", - "dxDiagramDeleteConnectorArgs", - "dxDiagramChangeConnectionArgs", - "dxDiagramChangeConnectorPointsArgs", - "dxDiagramBeforeChangeShapeTextArgs", - "dxDiagramChangeShapeTextArgs", - "dxDiagramBeforeChangeConnectorTextArgs", - "dxDiagramChangeConnectorTextArgs", - "dxDiagramResizeShapeArgs", - "dxDiagramMoveShapeArgs" ] }, { @@ -93980,18 +93519,7 @@ "optionName": "cursorOffset" } ], - "hasTranscludedContent": true, - "reexports": [ - "DraggableBase", - "DisposingEvent", - "DragEndEvent", - "DragMoveEvent", - "DragStartEvent", - "InitializedEvent", - "OptionChangedEvent", - "DragTemplateData", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxDrawer", @@ -94396,13 +93924,7 @@ ] } ], - "hasTranscludedContent": true, - "reexports": [ - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxDropDownBox", @@ -94779,27 +94301,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "maxLength", "types": [ @@ -97521,8 +97022,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -98595,8 +98095,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -98891,29 +98390,7 @@ } ], "isEditor": true, - "hasTranscludedContent": true, - "reexports": [ - "ChangeEvent", - "ClosedEvent", - "CopyEvent", - "CutEvent", - "DisposingEvent", - "EnterKeyEvent", - "FocusInEvent", - "FocusOutEvent", - "InitializedEvent", - "InputEvent", - "KeyDownEvent", - "KeyPressEvent", - "KeyUpEvent", - "OpenedEvent", - "OptionChangedEvent", - "PasteEvent", - "ValueChangedEvent", - "ContentTemplateData", - "DropDownButtonTemplateData", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxDropDownButton", @@ -101311,8 +100788,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -101517,7 +100993,7 @@ "name": "model", "types": [ { - "type": "Any" + "type": "Object" } ] }, @@ -101529,22 +101005,6 @@ "isCustomType": true } ] - }, - { - "name": "itemData", - "types": [ - { - "type": "Object" - } - ] - }, - { - "name": "itemElement", - "types": [ - { - "type": "Any" - } - ] } ] } @@ -101963,8 +101423,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -102257,16 +101716,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ButtonClickEvent", - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "default" ] }, { @@ -105836,37 +105285,6 @@ "componentName": "upload", "optionName": "upload" } - ], - "reexports": [ - "ContentReadyEvent", - "ContextMenuItemClickEvent", - "ContextMenuShowingEvent", - "CurrentDirectoryChangedEvent", - "DisposingEvent", - "ErrorOccurredEvent", - "FocusedItemChangedEvent", - "InitializedEvent", - "OptionChangedEvent", - "SelectedFileOpenedEvent", - "SelectionChangedEvent", - "ToolbarItemClickEvent", - "DirectoryCreatingEvent", - "DirectoryCreatedEvent", - "ItemRenamingEvent", - "ItemRenamedEvent", - "ItemMovingEvent", - "ItemMovedEvent", - "ItemCopyingEvent", - "ItemCopiedEvent", - "ItemDeletingEvent", - "ItemDeletedEvent", - "FileUploadingEvent", - "FileUploadedEvent", - "ItemDownloadingEvent", - "default", - "dxFileManagerContextMenu", - "dxFileManagerToolbar", - "dxFileManagerDetailsColumn" ] }, { @@ -107356,23 +106774,6 @@ } ] } - ], - "reexports": [ - "BeforeSendEvent", - "ContentReadyEvent", - "DisposingEvent", - "DropZoneEnterEvent", - "DropZoneLeaveEvent", - "FilesUploadedEvent", - "InitializedEvent", - "OptionChangedEvent", - "ProgressEvent", - "UploadAbortedEvent", - "UploadedEvent", - "UploadErrorEvent", - "UploadStartedEvent", - "ValueChangedEvent", - "default" ] }, { @@ -109276,20 +108677,6 @@ "componentName": "groupOperationDescriptions", "optionName": "groupOperationDescriptions" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "EditorPreparedEvent", - "EditorPreparingEvent", - "InitializedEvent", - "OptionChangedEvent", - "ValueChangedEvent", - "CustomOperationEditorTemplate", - "FieldEditorTemplate", - "default", - "dxFilterBuilderCustomOperation", - "dxFilterBuilderField" ] }, { @@ -109535,20 +108922,6 @@ } ] }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"", - "\"default\"" - ] - } - ] - }, { "name": "minColWidth", "types": [ @@ -115454,17 +114827,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "EditorEnterKeyEvent", - "FieldDataChangedEvent", - "InitializedEvent", - "OptionChangedEvent", - "GroupItemTemplateData", - "SimpleItemTemplateData", - "default" ] }, { @@ -121550,22 +120912,6 @@ "componentName": "tooltip", "optionName": "tooltip" } - ], - "reexports": [ - "LegendItem", - "DisposingEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "HoverChangedEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "ItemClickEvent", - "LegendClickEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "default" ] }, { @@ -122622,18 +121968,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "default" ] }, { @@ -130955,50 +130289,6 @@ "componentName": "validation", "optionName": "validation" } - ], - "reexports": [ - "ContentReadyEvent", - "ContextMenuPreparingEvent", - "CustomCommandEvent", - "DependencyDeletedEvent", - "DependencyDeletingEvent", - "DependencyInsertedEvent", - "DependencyInsertingEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "ResourceAssignedEvent", - "ResourceAssigningEvent", - "ResourceDeletedEvent", - "ResourceDeletingEvent", - "ResourceInsertedEvent", - "ResourceInsertingEvent", - "ResourceUnassignedEvent", - "ResourceUnassigningEvent", - "SelectionChangedEvent", - "TaskClickEvent", - "TaskDblClickEvent", - "TaskDeletedEvent", - "TaskDeletingEvent", - "TaskEditDialogShowingEvent", - "ResourceManagerDialogShowingEvent", - "TaskInsertedEvent", - "TaskInsertingEvent", - "TaskMovingEvent", - "TaskUpdatedEvent", - "TaskUpdatingEvent", - "TaskContentTemplateData", - "ProgressTooltipTemplateData", - "TimeTooltipTemplateData", - "default", - "dxGanttToolbar", - "dxGanttContextMenu", - "dxGanttStripLine", - "dxGanttSorting", - "dxGanttFilterRow", - "dxGanttFilterRowOperationDescriptions", - "dxGanttHeaderFilter", - "dxGanttHeaderFilterTexts" ] }, { @@ -132507,24 +131797,7 @@ } ], "isEditor": true, - "hasTranscludedContent": true, - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "FocusInEvent", - "FocusOutEvent", - "InitializedEvent", - "OptionChangedEvent", - "ValueChangedEvent", - "MentionTemplateData", - "default", - "dxHtmlEditorMediaResizing", - "dxHtmlEditorTableResizing", - "dxHtmlEditorMention", - "dxHtmlEditorToolbar", - "ToolbarItem", - "dxHtmlEditorVariables" - ] + "hasTranscludedContent": true }, { "name": "DxLinearGauge", @@ -137131,19 +136404,6 @@ "componentName": "valueIndicator", "optionName": "valueIndicator" } - ], - "reexports": [ - "DisposingEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "OptionChangedEvent", - "TooltipHiddenEvent", - "TooltipShownEvent", - "default" ] }, { @@ -141673,27 +140933,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "mask", "types": [ @@ -142815,27 +142054,6 @@ "componentName": "searchEditorOptions", "optionName": "searchEditorOptions" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "GroupRenderedEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemDeletedEvent", - "ItemDeletingEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "ItemReorderedEvent", - "ItemSwipeEvent", - "OptionChangedEvent", - "PageLoadingEvent", - "PullRefreshEvent", - "ScrollEvent", - "SelectAllValueChangedEvent", - "SelectionChangedEvent", - "default" ] }, { @@ -143126,13 +142344,6 @@ } ] } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "default" ] }, { @@ -144113,8 +143324,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -144571,8 +143781,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -144757,17 +143966,6 @@ "componentName": "position", "optionName": "position" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "HidingEvent", - "HiddenEvent", - "InitializedEvent", - "OptionChangedEvent", - "ShowingEvent", - "ShownEvent", - "default" ] }, { @@ -145142,27 +144340,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "minSearchLength", "types": [ @@ -147874,8 +147051,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -148443,8 +147619,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -148763,23 +147938,7 @@ "optionName": "items" } ], - "isEditor": true, - "reexports": [ - "ClosedEvent", - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "OpenedEvent", - "OptionChangedEvent", - "PageLoadingEvent", - "PullRefreshEvent", - "ScrollEvent", - "SelectionChangedEvent", - "TitleRenderedEvent", - "ValueChangedEvent", - "default" - ] + "isEditor": true }, { "name": "DxMap", @@ -150079,19 +149238,6 @@ "isCollectionItem": true, "optionName": "routes" } - ], - "reexports": [ - "ClickEvent", - "DisposingEvent", - "InitializedEvent", - "MarkerAddedEvent", - "MarkerRemovedEvent", - "OptionChangedEvent", - "ReadyEvent", - "RouteAddedEvent", - "RouteRemovedEvent", - "MapLocation", - "default" ] }, { @@ -151603,8 +150749,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -152222,8 +151367,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -152529,22 +151673,6 @@ "componentName": "showSubmenuMode", "optionName": "showSubmenuMode" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "SubmenuHiddenEvent", - "SubmenuHidingEvent", - "SubmenuShowingEvent", - "SubmenuShownEvent", - "default", - "dxMenuBaseItem" ] }, { @@ -153537,18 +152665,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "default" ] }, { @@ -154600,18 +153716,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "default" ] }, { @@ -154746,27 +153850,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "max", "types": [ @@ -156615,26 +155698,7 @@ "optionName": "format" } ], - "isEditor": true, - "reexports": [ - "ChangeEvent", - "ContentReadyEvent", - "CopyEvent", - "CutEvent", - "DisposingEvent", - "EnterKeyEvent", - "FocusInEvent", - "FocusOutEvent", - "InitializedEvent", - "InputEvent", - "KeyDownEvent", - "KeyPressEvent", - "KeyUpEvent", - "OptionChangedEvent", - "PasteEvent", - "ValueChangedEvent", - "default" - ] + "isEditor": true }, { "name": "DxPieChart", @@ -165484,31 +164548,6 @@ "componentName": "tooltip", "optionName": "tooltip" } - ], - "reexports": [ - "DisposingEvent", - "DoneEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "LegendClickEvent", - "OptionChangedEvent", - "PointClickEvent", - "PointHoverChangedEvent", - "PointSelectionChangedEvent", - "TooltipHiddenEvent", - "TooltipShownEvent", - "LegendItem", - "PieChartSeries", - "dxPieChartAnnotationConfig", - "dxPieChartCommonAnnotationConfig", - "default", - "dxPieChartSeriesTypes", - "piePointObject", - "pieChartSeriesObject" ] }, { @@ -168083,20 +167122,6 @@ "componentName": "texts", "optionName": "texts" } - ], - "reexports": [ - "CellClickEvent", - "CellPreparedEvent", - "ContentReadyEvent", - "ContextMenuPreparingEvent", - "DisposingEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "InitializedEvent", - "OptionChangedEvent", - "default", - "Cell" ] }, { @@ -168971,14 +167996,6 @@ "componentName": "texts", "optionName": "texts" } - ], - "reexports": [ - "ContentReadyEvent", - "ContextMenuPreparingEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "default" ] }, { @@ -187972,36 +186989,6 @@ "componentName": "valueAxis", "optionName": "valueAxis" } - ], - "reexports": [ - "ArgumentAxisClickEvent", - "DisposingEvent", - "DoneEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "LegendClickEvent", - "OptionChangedEvent", - "PointClickEvent", - "PointHoverChangedEvent", - "PointSelectionChangedEvent", - "SeriesClickEvent", - "SeriesHoverChangedEvent", - "SeriesSelectionChangedEvent", - "TooltipHiddenEvent", - "TooltipShownEvent", - "ZoomEndEvent", - "ZoomStartEvent", - "PolarChartSeries", - "default", - "dxPolarChartAnnotationConfig", - "dxPolarChartCommonAnnotationConfig", - "dxPolarChartSeriesTypes", - "polarPointObject", - "polarChartSeriesObject" ] }, { @@ -189250,8 +188237,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -189733,8 +188719,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -190065,19 +189050,7 @@ "optionName": "toolbarItems" } ], - "hasTranscludedContent": true, - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "HidingEvent", - "HiddenEvent", - "InitializedEvent", - "OptionChangedEvent", - "ShowingEvent", - "ShownEvent", - "TitleRenderedEvent", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxPopup", @@ -191487,8 +190460,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -191945,8 +190917,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -192244,22 +191215,7 @@ "optionName": "toolbarItems" } ], - "hasTranscludedContent": true, - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "HidingEvent", - "HiddenEvent", - "InitializedEvent", - "ShownEvent", - "ResizeEvent", - "ResizeStartEvent", - "ResizeEndEvent", - "OptionChangedEvent", - "ShowingEvent", - "TitleRenderedEvent", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxProgressBar", @@ -192820,15 +191776,6 @@ } ] } - ], - "reexports": [ - "CompleteEvent", - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "ValueChangedEvent", - "default" ] }, { @@ -193563,15 +192510,7 @@ "optionName": "items" } ], - "isEditor": true, - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "ValueChangedEvent", - "default" - ] + "isEditor": true }, { "name": "DxRangeSelector", @@ -205740,18 +204679,6 @@ "componentName": "value", "optionName": "value" } - ], - "reexports": [ - "DisposingEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "OptionChangedEvent", - "ValueChangedEvent", - "default" ] }, { @@ -206622,15 +205549,7 @@ "optionName": "tooltip" } ], - "isEditor": true, - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "ValueChangedEvent", - "default" - ] + "isEditor": true }, { "name": "DxRecurrenceEditor", @@ -207108,10 +206027,7 @@ ] } ], - "isEditor": true, - "reexports": [ - "default" - ] + "isEditor": true }, { "name": "DxResizable", @@ -207604,16 +206520,7 @@ ] } ], - "hasTranscludedContent": true, - "reexports": [ - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "ResizeEvent", - "ResizeStartEvent", - "ResizeEndEvent", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxResponsiveBox", @@ -208774,17 +207681,6 @@ "isCollectionItem": true, "optionName": "rows" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "default" ] }, { @@ -213255,24 +212151,6 @@ "componentName": "tooltip", "optionName": "tooltip" } - ], - "reexports": [ - "DisposingEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "LinkClickEvent", - "LinkHoverEvent", - "NodeClickEvent", - "NodeHoverEvent", - "OptionChangedEvent", - "default", - "dxSankeyConnectionInfoObject", - "dxSankeyLink", - "dxSankeyNode" ] }, { @@ -217823,37 +216701,6 @@ "isCollectionItem": true, "optionName": "views" } - ], - "reexports": [ - "AppointmentAddedEvent", - "AppointmentAddingEvent", - "AppointmentClickEvent", - "AppointmentContextMenuEvent", - "AppointmentDblClickEvent", - "AppointmentDeletedEvent", - "AppointmentDeletingEvent", - "AppointmentFormOpeningEvent", - "AppointmentRenderedEvent", - "AppointmentUpdatedEvent", - "AppointmentUpdatingEvent", - "CellClickEvent", - "CellContextMenuEvent", - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "AppointmentDraggingAddEvent", - "AppointmentDraggingEndEvent", - "AppointmentDraggingMoveEvent", - "AppointmentDraggingStartEvent", - "AppointmentDraggingRemoveEvent", - "AppointmentTemplateData", - "AppointmentTooltipTemplateData", - "AppointmentCollectorTemplateData", - "DateNavigatorTextInfo", - "default", - "Appointment", - "dxSchedulerScrolling" ] }, { @@ -218462,17 +217309,7 @@ ] } ], - "hasTranscludedContent": true, - "reexports": [ - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "PullDownEvent", - "ReachBottomEvent", - "ScrollEvent", - "UpdatedEvent", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxSelectBox", @@ -218875,27 +217712,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "maxLength", "types": [ @@ -221993,8 +220809,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -223153,8 +221968,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -223453,32 +222267,7 @@ "optionName": "items" } ], - "isEditor": true, - "reexports": [ - "ChangeEvent", - "ClosedEvent", - "ContentReadyEvent", - "CopyEvent", - "CustomItemCreatingEvent", - "CutEvent", - "DisposingEvent", - "EnterKeyEvent", - "FocusInEvent", - "FocusOutEvent", - "InitializedEvent", - "InputEvent", - "ItemClickEvent", - "KeyDownEvent", - "KeyPressEvent", - "KeyUpEvent", - "OpenedEvent", - "OptionChangedEvent", - "PasteEvent", - "SelectionChangedEvent", - "ValueChangedEvent", - "DropDownButtonTemplateData", - "default" - ] + "isEditor": true }, { "name": "DxSlideOut", @@ -224673,20 +223462,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "MenuGroupRenderedEvent", - "MenuItemRenderedEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "default" ] }, { @@ -225028,13 +223803,7 @@ ] } ], - "hasTranscludedContent": true, - "reexports": [ - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxSlider", @@ -225871,16 +224640,7 @@ "optionName": "tooltip" } ], - "isEditor": true, - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "ValueChangedEvent", - "default", - "dxSliderBaseOptions" - ] + "isEditor": true }, { "name": "DxSortable", @@ -227317,21 +226077,7 @@ "optionName": "cursorOffset" } ], - "hasTranscludedContent": true, - "reexports": [ - "AddEvent", - "DisposingEvent", - "DragChangeEvent", - "DragEndEvent", - "DragMoveEvent", - "DragStartEvent", - "InitializedEvent", - "OptionChangedEvent", - "RemoveEvent", - "ReorderEvent", - "DragTemplateData", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxSparkline", @@ -229133,19 +227879,6 @@ "componentName": "tooltip", "optionName": "tooltip" } - ], - "reexports": [ - "DisposingEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "OptionChangedEvent", - "TooltipHiddenEvent", - "TooltipShownEvent", - "default" ] }, { @@ -229521,14 +228254,6 @@ } ] } - ], - "reexports": [ - "ClickEvent", - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "default" ] }, { @@ -230031,15 +228756,7 @@ ] } ], - "isEditor": true, - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "ValueChangedEvent", - "default" - ] + "isEditor": true }, { "name": "DxTabPanel", @@ -231359,21 +230076,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "TitleClickEvent", - "TitleHoldEvent", - "TitleRenderedEvent", - "default" ] }, { @@ -232441,18 +231143,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "default" ] }, { @@ -232869,27 +231559,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "maxDisplayedTags", "types": [ @@ -236084,8 +234753,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -237244,8 +235912,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -237544,31 +236211,7 @@ "optionName": "items" } ], - "isEditor": true, - "reexports": [ - "ChangeEvent", - "ClosedEvent", - "ContentReadyEvent", - "CustomItemCreatingEvent", - "DisposingEvent", - "EnterKeyEvent", - "FocusInEvent", - "FocusOutEvent", - "InitializedEvent", - "InputEvent", - "ItemClickEvent", - "KeyDownEvent", - "KeyPressEvent", - "KeyUpEvent", - "MultiTagPreparingEvent", - "OpenedEvent", - "OptionChangedEvent", - "SelectAllValueChangedEvent", - "SelectionChangedEvent", - "ValueChangedEvent", - "DropDownButtonTemplateData", - "default" - ] + "isEditor": true }, { "name": "DxTextArea", @@ -237672,27 +236315,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "maxHeight", "types": [ @@ -238739,26 +237361,7 @@ ] } ], - "isEditor": true, - "reexports": [ - "ChangeEvent", - "ContentReadyEvent", - "CopyEvent", - "CutEvent", - "DisposingEvent", - "EnterKeyEvent", - "FocusInEvent", - "FocusOutEvent", - "InitializedEvent", - "InputEvent", - "KeyDownEvent", - "KeyPressEvent", - "KeyUpEvent", - "OptionChangedEvent", - "PasteEvent", - "ValueChangedEvent", - "default" - ] + "isEditor": true }, { "name": "DxTextBox", @@ -238877,27 +237480,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "mask", "types": [ @@ -240668,26 +239250,7 @@ "optionName": "buttons" } ], - "isEditor": true, - "reexports": [ - "ChangeEvent", - "ContentReadyEvent", - "CopyEvent", - "CutEvent", - "DisposingEvent", - "EnterKeyEvent", - "FocusInEvent", - "FocusOutEvent", - "InitializedEvent", - "InputEvent", - "KeyDownEvent", - "KeyPressEvent", - "KeyUpEvent", - "OptionChangedEvent", - "PasteEvent", - "ValueChangedEvent", - "default" - ] + "isEditor": true }, { "name": "DxTileView", @@ -241609,17 +240172,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "default" ] }, { @@ -242622,8 +241174,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -243080,8 +241631,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -243266,17 +241816,6 @@ "componentName": "position", "optionName": "position" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "HidingEvent", - "HiddenEvent", - "InitializedEvent", - "OptionChangedEvent", - "ShowingEvent", - "ShownEvent", - "default" ] }, { @@ -244222,17 +242761,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemContextMenuEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "OptionChangedEvent", - "default" ] }, { @@ -245266,8 +243794,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -245749,8 +244276,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -245969,18 +244495,7 @@ "optionName": "showEvent" } ], - "hasTranscludedContent": true, - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "HidingEvent", - "HiddenEvent", - "InitializedEvent", - "OptionChangedEvent", - "ShowingEvent", - "ShownEvent", - "default" - ] + "hasTranscludedContent": true }, { "name": "DxTreeList", @@ -252594,14 +251109,6 @@ } ] }, - { - "name": "renderAsync", - "types": [ - { - "type": "Boolean" - } - ] - }, { "name": "rowRenderingMode", "types": [ @@ -260219,20 +258726,6 @@ } ] }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"", - "\"default\"" - ] - } - ] - }, { "name": "minColWidth", "types": [ @@ -261579,8 +260072,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -265469,14 +263961,6 @@ } ] }, - { - "name": "renderAsync", - "types": [ - { - "type": "Boolean" - } - ] - }, { "name": "rowRenderingMode", "types": [ @@ -265667,8 +264151,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -266804,74 +265287,6 @@ "componentName": "treeListHeaderFilter", "optionName": "headerFilter" } - ], - "reexports": [ - "AdaptiveDetailRowPreparingEvent", - "CellClickEvent", - "CellDblClickEvent", - "CellHoverChangedEvent", - "CellPreparedEvent", - "ContentReadyEvent", - "ContextMenuPreparingEvent", - "DataErrorOccurredEvent", - "DisposingEvent", - "EditCanceledEvent", - "EditCancelingEvent", - "EditingStartEvent", - "EditorPreparedEvent", - "EditorPreparingEvent", - "FocusedCellChangedEvent", - "FocusedCellChangingEvent", - "FocusedRowChangedEvent", - "FocusedRowChangingEvent", - "InitializedEvent", - "InitNewRowEvent", - "KeyDownEvent", - "NodesInitializedEvent", - "OptionChangedEvent", - "RowClickEvent", - "RowCollapsedEvent", - "RowCollapsingEvent", - "RowDblClickEvent", - "RowExpandedEvent", - "RowExpandingEvent", - "RowInsertedEvent", - "RowInsertingEvent", - "RowPreparedEvent", - "RowRemovedEvent", - "RowRemovingEvent", - "RowUpdatedEvent", - "RowUpdatingEvent", - "RowValidatingEvent", - "SavedEvent", - "SavingEvent", - "SelectionChangedEvent", - "ToolbarPreparingEvent", - "RowDraggingAddEvent", - "RowDraggingChangeEvent", - "RowDraggingEndEvent", - "RowDraggingMoveEvent", - "RowDraggingStartEvent", - "RowDraggingRemoveEvent", - "RowDraggingReorderEvent", - "ColumnButtonClickEvent", - "ColumnButtonTemplateData", - "ColumnCellTemplateData", - "ColumnEditCellTemplateData", - "RowDraggingTemplateData", - "dxTreeListEditing", - "dxTreeListEditingTexts", - "dxTreeListPaging", - "dxTreeListScrolling", - "dxTreeListSelection", - "default", - "dxTreeListToolbarItem", - "dxTreeListToolbar", - "ColumnButton", - "dxTreeListNode", - "Node", - "dxTreeListRowObject", - "RowObject" ] }, { @@ -271135,24 +269550,6 @@ "componentName": "tooltip", "optionName": "tooltip" } - ], - "reexports": [ - "ClickEvent", - "DisposingEvent", - "DrawnEvent", - "DrillEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "HoverChangedEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "NodesInitializedEvent", - "NodesRenderingEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "default", - "dxTreeMapNode" ] }, { @@ -273620,27 +272017,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "mask", "types": [ @@ -274753,23 +273129,6 @@ "componentName": "searchEditorOptions", "optionName": "searchEditorOptions" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "ItemCollapsedEvent", - "ItemContextMenuEvent", - "ItemExpandedEvent", - "ItemHoldEvent", - "ItemRenderedEvent", - "ItemSelectionChangedEvent", - "OptionChangedEvent", - "SelectAllValueChangedEvent", - "SelectionChangedEvent", - "default", - "dxTreeViewNode" ] }, { @@ -274981,14 +273340,7 @@ ] } ], - "hasTranscludedContent": true, - "reexports": [ - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "default", - "dxValidationGroupResult" - ] + "hasTranscludedContent": true }, { "name": "DxValidationSummary", @@ -275473,14 +273825,6 @@ "isCollectionItem": true, "optionName": "items" } - ], - "reexports": [ - "ContentReadyEvent", - "DisposingEvent", - "InitializedEvent", - "ItemClickEvent", - "OptionChangedEvent", - "default" ] }, { @@ -277078,15 +275422,7 @@ "optionName": "validationRules" } ], - "isExtension": true, - "reexports": [ - "DisposingEvent", - "InitializedEvent", - "OptionChangedEvent", - "ValidatedEvent", - "default", - "dxValidatorResult" - ] + "isExtension": true }, { "name": "DxVectorMap", @@ -283840,28 +282176,6 @@ "componentName": "vectorMapTitle", "optionName": "title" } - ], - "reexports": [ - "CenterChangedEvent", - "ClickEvent", - "DisposingEvent", - "DrawnEvent", - "ExportedEvent", - "ExportingEvent", - "FileSavingEvent", - "IncidentOccurredEvent", - "InitializedEvent", - "OptionChangedEvent", - "SelectionChangedEvent", - "TooltipHiddenEvent", - "TooltipShownEvent", - "ZoomFactorChangedEvent", - "MapLayer", - "MapLayerElement", - "LegendItem", - "dxVectorMapAnnotationConfig", - "dxVectorMapCommonAnnotationConfig", - "default" ] } ], @@ -283887,8 +282201,7 @@ "name": "config", "types": [ { - "type": "AnimationConfig", - "isCustomType": true + "type": "Object" } ] } @@ -287939,15 +286252,7 @@ "name": "key", "types": [ { - "type": "Array", - "itemTypes": [ - { - "type": "String" - } - ] - }, - { - "type": "String" + "type": "Any" } ] }, @@ -299804,7 +298109,7 @@ "name": "model", "types": [ { - "type": "Any" + "type": "Object" } ] }, @@ -299816,22 +298121,6 @@ "isCustomType": true } ] - }, - { - "name": "itemData", - "types": [ - { - "type": "Object" - } - ] - }, - { - "name": "itemElement", - "types": [ - { - "type": "Any" - } - ] } ] } @@ -302535,20 +300824,6 @@ } ] }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"", - "\"default\"" - ] - } - ] - }, { "name": "minColWidth", "types": [ @@ -315026,27 +313301,6 @@ } ] }, - { - "name": "label", - "types": [ - { - "type": "Boolean" - } - ] - }, - { - "name": "labelMode", - "types": [ - { - "type": "String", - "acceptableValues": [ - "\"static\"", - "\"floating\"", - "\"hidden\"" - ] - } - ] - }, { "name": "mask", "types": [ @@ -331408,15 +329662,7 @@ "name": "key", "types": [ { - "type": "Array", - "itemTypes": [ - { - "type": "String" - } - ] - }, - { - "type": "String" + "type": "Any" } ] }, @@ -331427,7 +329673,7 @@ "type": "Function", "params": [], "returnValueType": { - "type": "String" + "type": "Any" } } ] @@ -332034,15 +330280,7 @@ "name": "key", "types": [ { - "type": "Array", - "itemTypes": [ - { - "type": "String" - } - ] - }, - { - "type": "String" + "type": "Any" } ] }, From d1e78d9f0185d1daa734edc3cd4b81874f1cce9c Mon Sep 17 00:00:00 2001 From: Igggr Date: Thu, 21 Oct 2021 15:01:24 +0300 Subject: [PATCH 7/7] Update tools version --- package.json | 2 +- packages/devextreme-vue-generator/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9a864456..21fe7a2d 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "devDependencies": { "cpy-cli": "^3.1.1", "del-cli": "^3.0.1", - "devextreme-internal-tools": "^7.2.3", + "devextreme-internal-tools": "^7.3.2", "gulp": "^4.0.0", "gulp-tslint": "^8.1.3", "jest": "^26.6.3", diff --git a/packages/devextreme-vue-generator/package.json b/packages/devextreme-vue-generator/package.json index de01b1dc..7ae348a8 100644 --- a/packages/devextreme-vue-generator/package.json +++ b/packages/devextreme-vue-generator/package.json @@ -27,7 +27,7 @@ "license": "MIT", "dependencies": { "dasherize": "^2.0.0", - "devextreme-internal-tools": "^7.2.3", + "devextreme-internal-tools": "^7.3.2", "dot": "^1.1.2" }, "devDependencies": {