@meshmakers/octo-ui 3.3.860 → 3.3.880

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshmakers/octo-ui",
3
- "version": "3.3.860",
3
+ "version": "3.3.880",
4
4
  "peerDependencies": {
5
5
  "@ngx-translate/core": "^17.0.0",
6
6
  "@angular/animations": "^21.0.6",
@@ -964,13 +964,15 @@ declare class PropertyGridComponent implements OnInit, OnChanges {
964
964
  /**
965
965
  * Component for displaying property values with appropriate formatting
966
966
  */
967
- declare class PropertyValueDisplayComponent implements OnInit {
967
+ declare class PropertyValueDisplayComponent implements OnInit, OnChanges {
968
968
  value: unknown;
969
969
  type: AttributeValueTypeDto;
970
970
  displayMode: PropertyDisplayMode;
971
+ attributeName: string;
971
972
  /** Emitted when a binary download is requested */
972
973
  binaryDownload: EventEmitter<BinaryDownloadEvent>;
973
974
  isExpanded: boolean;
975
+ private readonly windowService;
974
976
  expandableRecord: boolean;
975
977
  complexType: boolean;
976
978
  binaryLinkedWithDownload: boolean;
@@ -982,15 +984,31 @@ declare class PropertyValueDisplayComponent implements OnInit {
982
984
  binarySize: number | null;
983
985
  binaryContentType: string | null;
984
986
  formattedBinarySize: string;
987
+ useRecordArrayTable: boolean;
988
+ recordArrayColumns: string[];
989
+ recordArrayRows: Record<string, unknown>[];
990
+ /** Hard cap so we don't render a horizontally-unmanageable table. */
991
+ private static readonly MAX_TABLE_COLUMNS;
985
992
  readonly PropertyDisplayMode: typeof PropertyDisplayMode;
986
993
  readonly AttributeValueTypeDto: typeof AttributeValueTypeDto;
987
994
  readonly Array: ArrayConstructor;
988
995
  readonly chevronRightIcon: _progress_kendo_svg_icons.SVGIcon;
989
996
  readonly chevronDownIcon: _progress_kendo_svg_icons.SVGIcon;
990
997
  readonly downloadIcon: _progress_kendo_svg_icons.SVGIcon;
998
+ readonly windowIcon: _progress_kendo_svg_icons.SVGIcon;
991
999
  ngOnInit(): void;
1000
+ ngOnChanges(changes: SimpleChanges): void;
1001
+ private recomputeDerivedValues;
992
1002
  private computeFormattedValue;
993
1003
  private computeIsExpandableRecord;
1004
+ /**
1005
+ * For RecordArray values, attempt to render as a compact table when the
1006
+ * records share enough structure: ≥ 2 items, every item is object-like, and
1007
+ * the union of keys stays within MAX_TABLE_COLUMNS. Columns are ordered by
1008
+ * first appearance. Rows are stored as plain objects keyed by column name
1009
+ * so the template can do `row[col]` lookups cheaply.
1010
+ */
1011
+ private computeRecordArrayTable;
994
1012
  private computeIsComplexType;
995
1013
  private computeTypeIndicator;
996
1014
  private computeTypeDescription;
@@ -1022,6 +1040,15 @@ declare class PropertyValueDisplayComponent implements OnInit {
1022
1040
  * Toggle expansion state
1023
1041
  */
1024
1042
  toggleExpansion(): void;
1043
+ /**
1044
+ * Open the record-detail viewer in a Kendo Window. Using `WindowService.open`
1045
+ * (instead of an inline `<kendo-window>`) is what makes the window mount at
1046
+ * the application root with proper viewport positioning. An inline window
1047
+ * inherits its tile's `position: relative` ancestor and ends up anchored
1048
+ * inside that tile's box rather than on the meshboard surface.
1049
+ */
1050
+ openDetailDialog(event: Event): void;
1051
+ private computeDialogTitle;
1025
1052
  /**
1026
1053
  * Compute summary text for record header
1027
1054
  */
@@ -1048,9 +1075,114 @@ declare class PropertyValueDisplayComponent implements OnInit {
1048
1075
  */
1049
1076
  onDownload(): void;
1050
1077
  static ɵfac: i0.ɵɵFactoryDeclaration<PropertyValueDisplayComponent, never>;
1051
- static ɵcmp: i0.ɵɵComponentDeclaration<PropertyValueDisplayComponent, "mm-property-value-display", never, { "value": { "alias": "value"; "required": false; }; "type": { "alias": "type"; "required": false; }; "displayMode": { "alias": "displayMode"; "required": false; }; }, { "binaryDownload": "binaryDownload"; }, never, never, true, never>;
1078
+ static ɵcmp: i0.ɵɵComponentDeclaration<PropertyValueDisplayComponent, "mm-property-value-display", never, { "value": { "alias": "value"; "required": false; }; "type": { "alias": "type"; "required": false; }; "displayMode": { "alias": "displayMode"; "required": false; }; "attributeName": { "alias": "attributeName"; "required": false; }; }, { "binaryDownload": "binaryDownload"; }, never, never, true, never>;
1079
+ }
1080
+
1081
+ interface RecordProperty {
1082
+ key: string;
1083
+ value: unknown;
1084
+ formattedValue: string;
1085
+ type: AttributeValueTypeDto;
1086
+ }
1087
+ interface RecordArrayItem {
1088
+ /** Stable position in the original array — preserved when filtering shrinks the visible list. */
1089
+ originalIndex: number;
1090
+ label: string | null;
1091
+ properties: RecordProperty[];
1092
+ expanded: boolean;
1093
+ }
1094
+ /**
1095
+ * Content component for displaying Record and RecordArray attribute values.
1096
+ * Designed to be hosted inside a Kendo Window opened via `WindowService.open()`
1097
+ * — this guarantees the window is mounted at the application root (escaping
1098
+ * any tile/widget stacking context) and is fully resizable, draggable,
1099
+ * minimizable and maximizable like the other dialogs in the studio.
1100
+ *
1101
+ * Inputs are set on the component instance after the window is created:
1102
+ * const ref = windowService.open({ content: RecordDetailDialogComponent, ... });
1103
+ * const c = ref.content.instance as RecordDetailDialogComponent;
1104
+ * c.attributeName = ...; c.value = ...; c.type = ...;
1105
+ */
1106
+ declare class RecordDetailDialogComponent implements OnInit {
1107
+ attributeName: string;
1108
+ value: unknown;
1109
+ type: AttributeValueTypeDto;
1110
+ /**
1111
+ * Emitted when the user-visible state changes in a way the host might want
1112
+ * to react to. Currently unused for closing — the host listens to
1113
+ * `WindowRef.result` for that.
1114
+ */
1115
+ closed: EventEmitter<void>;
1116
+ singleRecordProperties: RecordProperty[];
1117
+ recordItems: RecordArrayItem[];
1118
+ searchTerm: string;
1119
+ readonly fileIcon: _progress_kendo_svg_icons.SVGIcon;
1120
+ readonly folderIcon: _progress_kendo_svg_icons.SVGIcon;
1121
+ readonly calendarIcon: _progress_kendo_svg_icons.SVGIcon;
1122
+ readonly checkboxCheckedIcon: _progress_kendo_svg_icons.SVGIcon;
1123
+ readonly listUnorderedIcon: _progress_kendo_svg_icons.SVGIcon;
1124
+ readonly chevronRightIcon: _progress_kendo_svg_icons.SVGIcon;
1125
+ readonly chevronDownIcon: _progress_kendo_svg_icons.SVGIcon;
1126
+ get isRecordArray(): boolean;
1127
+ /**
1128
+ * Compute the title text for the host window. The host reads this via
1129
+ * the component instance after construction.
1130
+ */
1131
+ get dialogTitle(): string;
1132
+ ngOnInit(): void;
1133
+ /**
1134
+ * Recompute derived state. Public so the host can call it after late
1135
+ * input assignment (WindowService.open() instantiates the component
1136
+ * before inputs can be set on its instance).
1137
+ */
1138
+ recompute(): void;
1139
+ /**
1140
+ * Records visible after applying the search filter. With no search term
1141
+ * this is just the full list. The matcher checks the record's label and
1142
+ * every property's key + formatted value (case-insensitive substring).
1143
+ */
1144
+ get visibleRecords(): RecordArrayItem[];
1145
+ /**
1146
+ * When search is active, force matching records open so their content is
1147
+ * visible without an extra click. Outside search mode the user's manual
1148
+ * expanded state wins.
1149
+ */
1150
+ isRecordExpanded(record: RecordArrayItem): boolean;
1151
+ onSearchInput(event: Event): void;
1152
+ clearSearch(): void;
1153
+ private recordMatches;
1154
+ toggleRecord(index: number): void;
1155
+ expandAll(): void;
1156
+ collapseAll(): void;
1157
+ getTypeIcon(type: AttributeValueTypeDto): _progress_kendo_svg_icons.SVGIcon;
1158
+ formatTypeName(type: AttributeValueTypeDto): string;
1159
+ private toRecordProperties;
1160
+ private formatValue;
1161
+ private getRecordLabel;
1162
+ private getObjectProperties;
1163
+ private inferType;
1164
+ private formatAttributeName;
1165
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecordDetailDialogComponent, never>;
1166
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecordDetailDialogComponent, "mm-record-detail-dialog", never, { "attributeName": { "alias": "attributeName"; "required": false; }; "value": { "alias": "value"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "closed": "closed"; }, never, never, true, never>;
1052
1167
  }
1053
1168
 
1169
+ /**
1170
+ * Result of validating a mapping expression.
1171
+ */
1172
+ interface ExpressionValidationResult {
1173
+ /** Whether the expression is syntactically valid and evaluates successfully. */
1174
+ valid: boolean;
1175
+ /** Error message if the expression is invalid. */
1176
+ error?: string;
1177
+ /** Formatted evaluation result for display (e.g., "42" or "0.42"). */
1178
+ preview?: string;
1179
+ }
1180
+ /**
1181
+ * Function that validates a mapping expression.
1182
+ * Receives the expression string and returns a validation result.
1183
+ * The implementation can use any expression engine (e.g., expr-eval, mXparser via API).
1184
+ */
1185
+ type ExpressionValidatorFn = (expression: string) => ExpressionValidationResult;
1054
1186
  interface DataPointMappingItem {
1055
1187
  rtId?: string;
1056
1188
  name?: string;
@@ -1063,6 +1195,12 @@ interface DataPointMappingItem {
1063
1195
  enabled?: boolean;
1064
1196
  /** Tracks the original target rtId at load time to detect changes on save. */
1065
1197
  _originalTargetRtId?: string;
1198
+ /** Client-side validation status (not persisted, set by component). */
1199
+ _expressionValid?: boolean;
1200
+ /** Client-side validation error message (not persisted). */
1201
+ _expressionError?: string;
1202
+ /** Client-side evaluation preview (not persisted, e.g., "value=42 → 0.42"). */
1203
+ _expressionPreview?: string;
1066
1204
  }
1067
1205
 
1068
1206
  interface RtEntityId {
@@ -1581,6 +1719,10 @@ declare class RuntimeBrowserDetailsComponent implements OnChanges, AfterViewInit
1581
1719
  private readonly attributeSelectorDialog;
1582
1720
  dataMappings: DataPointMappingItem[];
1583
1721
  sourceDataPoints: string[];
1722
+ /**
1723
+ * Optional expression validator function passed through to EntityDetailViewComponent → DataMappingListComponent.
1724
+ */
1725
+ expressionValidator?: ExpressionValidatorFn;
1584
1726
  protected readonly detailsIcon: _progress_kendo_svg_icons.SVGIcon;
1585
1727
  protected fullEntity: RtEntityDto | null;
1586
1728
  private loadRequestToken;
@@ -1701,7 +1843,7 @@ declare class RuntimeBrowserDetailsComponent implements OnChanges, AfterViewInit
1701
1843
  */
1702
1844
  onSaveAllMappings(): Promise<void>;
1703
1845
  static ɵfac: i0.ɵɵFactoryDeclaration<RuntimeBrowserDetailsComponent, never>;
1704
- static ɵcmp: i0.ɵɵComponentDeclaration<RuntimeBrowserDetailsComponent, "mm-runtime-browser-details", never, { "selectedItem": { "alias": "selectedItem"; "required": false; }; "showDataMapping": { "alias": "showDataMapping"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; }, { "entitySaved": "entitySaved"; }, never, never, true, never>;
1846
+ static ɵcmp: i0.ɵɵComponentDeclaration<RuntimeBrowserDetailsComponent, "mm-runtime-browser-details", never, { "selectedItem": { "alias": "selectedItem"; "required": false; }; "showDataMapping": { "alias": "showDataMapping"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "expressionValidator": { "alias": "expressionValidator"; "required": false; }; }, { "entitySaved": "entitySaved"; }, never, never, true, never>;
1705
1847
  }
1706
1848
 
1707
1849
  type BrowserItem$1 = RtEntityDto | CkModelDto | CkTypeDto | {
@@ -1724,6 +1866,11 @@ declare class RuntimeBrowserComponent implements AfterViewInit {
1724
1866
  private isEditing;
1725
1867
  messages: i0.InputSignal<Partial<RuntimeBrowserMessages>>;
1726
1868
  showDataMapping: i0.InputSignal<boolean>;
1869
+ /**
1870
+ * Optional expression validator function for DataPointMapping expressions.
1871
+ * Passed through to RuntimeBrowserDetailsComponent → EntityDetailViewComponent → DataMappingListComponent.
1872
+ */
1873
+ expressionValidator: i0.InputSignal<ExpressionValidatorFn | undefined>;
1727
1874
  protected readonly resolvedMessages: i0.Signal<RuntimeBrowserMessages>;
1728
1875
  treeDetail: BaseTreeDetailComponent<BrowserItem$1>;
1729
1876
  detailsPanel: RuntimeBrowserDetailsComponent;
@@ -1812,7 +1959,7 @@ declare class RuntimeBrowserComponent implements AfterViewInit {
1812
1959
  parentRtId?: string;
1813
1960
  }): Promise<void>;
1814
1961
  static ɵfac: i0.ɵɵFactoryDeclaration<RuntimeBrowserComponent, never>;
1815
- static ɵcmp: i0.ɵɵComponentDeclaration<RuntimeBrowserComponent, "mm-runtime-browser", never, { "messages": { "alias": "messages"; "required": false; "isSignal": true; }; "showDataMapping": { "alias": "showDataMapping"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1962
+ static ɵcmp: i0.ɵɵComponentDeclaration<RuntimeBrowserComponent, "mm-runtime-browser", never, { "messages": { "alias": "messages"; "required": false; "isSignal": true; }; "showDataMapping": { "alias": "showDataMapping"; "required": false; "isSignal": true; }; "expressionValidator": { "alias": "expressionValidator"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1816
1963
  }
1817
1964
 
1818
1965
  /**
@@ -1973,6 +2120,94 @@ declare class RuntimeBrowserStateService {
1973
2120
  static ɵprov: i0.ɵɵInjectableDeclaration<RuntimeBrowserStateService>;
1974
2121
  }
1975
2122
 
2123
+ /**
2124
+ * View model for a DataPointMapping entity with resolved source/target information.
2125
+ * Used by the DataMappingOverviewComponent for display in the grid.
2126
+ */
2127
+ interface DataPointMappingOverviewItem {
2128
+ /** DataPointMapping entity rtId */
2129
+ rtId: string;
2130
+ /** Display name of the mapping */
2131
+ name: string;
2132
+ /** Whether the mapping is enabled */
2133
+ enabled: boolean;
2134
+ /** Source attribute path (e.g., "CurrentValue") */
2135
+ sourceAttributePath: string;
2136
+ /** mXparser expression for value transformation */
2137
+ mappingExpression: string;
2138
+ /** Target attribute path (e.g., "Temperature") */
2139
+ targetAttributePath: string;
2140
+ /** Source entity rtId (from MapsFrom association) */
2141
+ sourceRtId: string;
2142
+ /** Source entity CK type (e.g., "Loxone/Control") */
2143
+ sourceCkTypeId: string;
2144
+ /** Resolved source entity name (loaded separately) */
2145
+ sourceName: string;
2146
+ /** Target entity rtId (from MapsTo association) */
2147
+ targetRtId: string;
2148
+ /** Target entity CK type (e.g., "EnergyIQ/Space") */
2149
+ targetCkTypeId: string;
2150
+ /** Resolved target entity name (loaded separately) */
2151
+ targetName: string;
2152
+ /** Validation status computed client-side */
2153
+ validationStatus: 'valid' | 'warning' | 'error';
2154
+ /** Validation messages */
2155
+ validationMessages: ValidationMessage[];
2156
+ }
2157
+ interface ValidationMessage {
2158
+ level: 'error' | 'warning' | 'info';
2159
+ code: string;
2160
+ message: string;
2161
+ }
2162
+ interface MappingOverviewSummary {
2163
+ total: number;
2164
+ valid: number;
2165
+ warnings: number;
2166
+ errors: number;
2167
+ disabled: number;
2168
+ }
2169
+
2170
+ declare class DataMappingOverviewComponent implements OnInit {
2171
+ private readonly getMappingsGQL;
2172
+ private readonly getEntityByIdGQL;
2173
+ private readonly updateEntitiesGQL;
2174
+ private readonly deleteEntitiesGQL;
2175
+ navigateToEntity: EventEmitter<{
2176
+ rtId: string;
2177
+ ckTypeId: string;
2178
+ }>;
2179
+ readonly mappings: i0.WritableSignal<DataPointMappingOverviewItem[]>;
2180
+ readonly loading: i0.WritableSignal<boolean>;
2181
+ readonly selectedMapping: i0.WritableSignal<DataPointMappingOverviewItem | null>;
2182
+ pageSize: number;
2183
+ skip: number;
2184
+ readonly gridData: i0.Signal<{
2185
+ data: DataPointMappingOverviewItem[];
2186
+ total: number;
2187
+ }>;
2188
+ readonly summary: i0.Signal<MappingOverviewSummary>;
2189
+ protected readonly refreshIcon: _progress_kendo_svg_icons.SVGIcon;
2190
+ protected readonly checkIcon: _progress_kendo_svg_icons.SVGIcon;
2191
+ protected readonly warnIcon: _progress_kendo_svg_icons.SVGIcon;
2192
+ protected readonly errorIcon: _progress_kendo_svg_icons.SVGIcon;
2193
+ protected readonly deleteIcon: _progress_kendo_svg_icons.SVGIcon;
2194
+ ngOnInit(): void;
2195
+ loadMappings(): Promise<void>;
2196
+ onPageChange(event: PageChangeEvent): void;
2197
+ onCellClick(event: CellClickEvent): void;
2198
+ onToggleEnabled(item: DataPointMappingOverviewItem, enabled: boolean): Promise<void>;
2199
+ onDeleteMapping(item: DataPointMappingOverviewItem): Promise<void>;
2200
+ private mapEntityToOverviewItem;
2201
+ private validateMapping;
2202
+ /**
2203
+ * Resolves entity names for all unique source/target rtIds.
2204
+ * Updates items in-place and triggers signal update.
2205
+ */
2206
+ private resolveEntityNames;
2207
+ static ɵfac: i0.ɵɵFactoryDeclaration<DataMappingOverviewComponent, never>;
2208
+ static ɵcmp: i0.ɵɵComponentDeclaration<DataMappingOverviewComponent, "mm-data-mapping-overview", never, {}, { "navigateToEntity": "navigateToEntity"; }, never, never, true, never>;
2209
+ }
2210
+
1976
2211
  /**
1977
2212
  * Input data for the RuntimeEntityVariableDialog.
1978
2213
  */
@@ -2091,5 +2326,5 @@ declare class TenantSwitcherComponent {
2091
2326
  */
2092
2327
  declare function provideOctoUi(): EnvironmentProviders;
2093
2328
 
2094
- export { AssociationValidationService, AttributeSelectorDialogComponent, AttributeSelectorDialogService, AttributeSortSelectorDialogComponent, AttributeSortSelectorDialogService, AttributeValueTypeDto, CkTypeSelectorDialogComponent, CkTypeSelectorDialogService, CkTypeSelectorInputComponent, DEFAULT_RUNTIME_BROWSER_MESSAGES, DefaultPropertyCategory, EntityDetailComponent, EntityIdInfoComponent, EntitySelectorDialogComponent, EntitySelectorDialogService, FieldFilterEditorComponent, OctoGraphQlDataSource, OctoGraphQlHierarchyDataSource, OctoLoaderComponent, PropertyConverterService, PropertyDisplayMode, PropertyGridComponent, PropertyValueDisplayComponent, RUNTIME_BROWSER_MESSAGES, RtEntityIdHelper, RuntimeBrowserComponent, RuntimeBrowserOutletComponent, RuntimeBrowserPageComponent, RuntimeBrowserStateService, RuntimeEntityVariableDialogComponent, RuntimeEntityVariableDialogService, TenantSwitcherComponent, account_tree, add, analytics, app_registration, article, botService, category, chat, checklist, code, component_exchange, computer, createRuntimeBrowserRoutes, customer, dashboard, event_list, graphic_eq, group, identityService, insert_link, manage_accounts, more_time, notifications, page_info, pages, person_search, playlist_add_check, pool, power, provideOctoUi, publicIcon, query_builder, schedule_send, settings, sort, storage, swagger, swagger_asset, swagger_bot, swagger_communication, swagger_identity, team_dashboard, tenancy, text_snippet, travel_explore, user_diagnostics, webhook, work };
2095
- export type { AttributeSelectorDialogData, AttributeSelectorDialogResult, AttributeSelectorResult, AttributeSortItem, AttributeSortSelectorDialogData, AttributeSortSelectorDialogResult, AttributeSortSelectorResult, BinaryDownloadEvent, BrowserItem, BrowserState, CkAssociationRole, CkTypeSelectorDialogData, CkTypeSelectorDialogResult, CkTypeSelectorResult, EntitySelectorDialogData, EntitySelectorDialogResult, EntitySelectorResult, FieldFilterItem, FilterVariable, MoveValidationResult, PropertyChangeEvent, PropertyGridConfig, PropertyGridItem, RtEntityId, RuntimeBrowserMessages, RuntimeBrowserRouteOptions, RuntimeEntityVariableDialogData, RuntimeEntityVariableDialogResult, RuntimeEntityVariableMapping, RuntimeEntityVariableResult, SortOption };
2329
+ export { AssociationValidationService, AttributeSelectorDialogComponent, AttributeSelectorDialogService, AttributeSortSelectorDialogComponent, AttributeSortSelectorDialogService, AttributeValueTypeDto, CkTypeSelectorDialogComponent, CkTypeSelectorDialogService, CkTypeSelectorInputComponent, DEFAULT_RUNTIME_BROWSER_MESSAGES, DataMappingOverviewComponent, DefaultPropertyCategory, EntityDetailComponent, EntityIdInfoComponent, EntitySelectorDialogComponent, EntitySelectorDialogService, FieldFilterEditorComponent, OctoGraphQlDataSource, OctoGraphQlHierarchyDataSource, OctoLoaderComponent, PropertyConverterService, PropertyDisplayMode, PropertyGridComponent, PropertyValueDisplayComponent, RUNTIME_BROWSER_MESSAGES, RecordDetailDialogComponent, RtEntityIdHelper, RuntimeBrowserComponent, RuntimeBrowserOutletComponent, RuntimeBrowserPageComponent, RuntimeBrowserStateService, RuntimeEntityVariableDialogComponent, RuntimeEntityVariableDialogService, TenantSwitcherComponent, account_tree, add, analytics, app_registration, article, botService, category, chat, checklist, code, component_exchange, computer, createRuntimeBrowserRoutes, customer, dashboard, event_list, graphic_eq, group, identityService, insert_link, manage_accounts, more_time, notifications, page_info, pages, person_search, playlist_add_check, pool, power, provideOctoUi, publicIcon, query_builder, schedule_send, settings, sort, storage, swagger, swagger_asset, swagger_bot, swagger_communication, swagger_identity, team_dashboard, tenancy, text_snippet, travel_explore, user_diagnostics, webhook, work };
2330
+ export type { AttributeSelectorDialogData, AttributeSelectorDialogResult, AttributeSelectorResult, AttributeSortItem, AttributeSortSelectorDialogData, AttributeSortSelectorDialogResult, AttributeSortSelectorResult, BinaryDownloadEvent, BrowserItem, BrowserState, CkAssociationRole, CkTypeSelectorDialogData, CkTypeSelectorDialogResult, CkTypeSelectorResult, DataPointMappingItem, DataPointMappingOverviewItem, EntitySelectorDialogData, EntitySelectorDialogResult, EntitySelectorResult, ExpressionValidationResult, ExpressionValidatorFn, FieldFilterItem, FilterVariable, MappingOverviewSummary, MoveValidationResult, PropertyChangeEvent, PropertyGridConfig, PropertyGridItem, RtEntityId, RuntimeBrowserMessages, RuntimeBrowserRouteOptions, RuntimeEntityVariableDialogData, RuntimeEntityVariableDialogResult, RuntimeEntityVariableMapping, RuntimeEntityVariableResult, SortOption, ValidationMessage };