@meshmakers/octo-ui 3.3.1000 → 3.3.1020

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.1000",
3
+ "version": "3.3.1020",
4
4
  "peerDependencies": {
5
5
  "@ngx-translate/core": "^17.0.0",
6
6
  "@angular/animations": "^21.0.6",
@@ -7,7 +7,7 @@ import { GridDataResult, CellClickEvent, RowArgs, PageChangeEvent, SelectionEven
7
7
  import { TreeItemDataTyped, TreeItemData, CommandItemExecuteEventArgs, CommandItem } from '@meshmakers/shared-services';
8
8
  import { ControlValueAccessor, Validator, FormControl, AbstractControl, ValidationErrors } from '@angular/forms';
9
9
  import { AutoCompleteComponent, PopupSettings } from '@progress/kendo-angular-dropdowns';
10
- import { DataSourceTyped, ListViewComponent, HierarchyDataSourceBase, FetchDataOptions, FetchResultTyped, BaseTreeDetailComponent, NodeDroppedEvent, TreeComponent } from '@meshmakers/shared-ui';
10
+ import { DataSourceTyped, ListViewComponent, HierarchyDataSourceBase, ListViewMessages, FetchDataOptions, FetchResultTyped, BaseTreeDetailComponent, NodeDroppedEvent, TreeComponent } from '@meshmakers/shared-ui';
11
11
  import { State } from '@progress/kendo-data-query/dist/npm/state';
12
12
  import { Observable } from 'rxjs';
13
13
  import { Routes } from '@angular/router';
@@ -239,12 +239,48 @@ declare class AttributeSortSelectorDialogService {
239
239
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AttributeSortSelectorDialogService>;
240
240
  }
241
241
 
242
+ interface CkTypeSelectorDialogMessages {
243
+ modelFilterLabel: string;
244
+ modelFilterPlaceholder: string;
245
+ typeSearchLabel: string;
246
+ typeSearchPlaceholder: string;
247
+ clearFiltersTitle: string;
248
+ columnTypeTitle: string;
249
+ columnBaseTypeTitle: string;
250
+ columnDescriptionTitle: string;
251
+ badgeAbstract: string;
252
+ badgeFinal: string;
253
+ selectedLabel: string;
254
+ cancel: string;
255
+ ok: string;
256
+ defaultDialogTitle: string;
257
+ pagerItemsPerPage: string;
258
+ pagerOf: string;
259
+ pagerItems: string;
260
+ pagerPage: string;
261
+ pagerFirstPage: string;
262
+ pagerLastPage: string;
263
+ pagerPreviousPage: string;
264
+ pagerNextPage: string;
265
+ noRecords: string;
266
+ /** Tooltip on the dialog window close (X) button. */
267
+ closeTitle?: string;
268
+ /** Tooltip on the dialog window minimize button. */
269
+ minimizeTitle?: string;
270
+ /** Tooltip on the dialog window maximize button. */
271
+ maximizeTitle?: string;
272
+ /** Tooltip on the dialog window restore button. */
273
+ restoreTitle?: string;
274
+ }
275
+ declare const DEFAULT_CK_TYPE_SELECTOR_DIALOG_MESSAGES: CkTypeSelectorDialogMessages;
276
+
242
277
  interface CkTypeSelectorDialogData {
243
278
  selectedCkTypeId?: string;
244
279
  ckModelIds?: string[];
245
280
  dialogTitle?: string;
246
281
  allowAbstract?: boolean;
247
282
  derivedFromRtCkTypeId?: string;
283
+ messages?: Partial<CkTypeSelectorDialogMessages>;
248
284
  }
249
285
  interface CkTypeSelectorDialogResult {
250
286
  selectedCkType: CkTypeSelectorItem$1;
@@ -258,6 +294,8 @@ declare class CkTypeSelectorDialogComponent implements OnInit, OnDestroy {
258
294
  protected readonly filterClearIcon: _progress_kendo_svg_icons.SVGIcon;
259
295
  dialogTitle: string;
260
296
  allowAbstract: boolean;
297
+ _messages: CkTypeSelectorDialogMessages;
298
+ set messages(value: Partial<CkTypeSelectorDialogMessages> | undefined);
261
299
  searchText: string;
262
300
  selectedModel: string | null;
263
301
  availableModels: string[];
@@ -289,7 +327,7 @@ declare class CkTypeSelectorDialogComponent implements OnInit, OnDestroy {
289
327
  onCancel(): void;
290
328
  onConfirm(): void;
291
329
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CkTypeSelectorDialogComponent, never>;
292
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<CkTypeSelectorDialogComponent, "mm-ck-type-selector-dialog", never, {}, {}, never, never, true, never>;
330
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CkTypeSelectorDialogComponent, "mm-ck-type-selector-dialog", never, { "messages": { "alias": "messages"; "required": false; }; }, {}, never, never, true, never>;
293
331
  }
294
332
 
295
333
  interface CkTypeSelectorResult {
@@ -299,22 +337,30 @@ interface CkTypeSelectorResult {
299
337
  declare class CkTypeSelectorDialogService {
300
338
  private readonly windowService;
301
339
  private readonly windowStateService;
302
- /**
303
- * Opens the CkType selector dialog
304
- * @param options Dialog options
305
- * @returns Promise that resolves with the result containing selected CkType and confirmation status
306
- */
340
+ defaultMessages: Partial<CkTypeSelectorDialogMessages> | undefined;
307
341
  openCkTypeSelector(options?: {
308
342
  selectedCkTypeId?: string;
309
343
  ckModelIds?: string[];
310
344
  dialogTitle?: string;
311
345
  allowAbstract?: boolean;
312
346
  derivedFromRtCkTypeId?: string;
347
+ messages?: Partial<CkTypeSelectorDialogMessages>;
313
348
  }): Promise<CkTypeSelectorResult>;
314
349
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CkTypeSelectorDialogService, never>;
315
350
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<CkTypeSelectorDialogService>;
316
351
  }
317
352
 
353
+ interface CkTypeSelectorInputMessages {
354
+ placeholder: string;
355
+ /** `{0}` is replaced with the current search value. */
356
+ noTypesFound: string;
357
+ /** `{0}` is replaced with the minimum search length. */
358
+ minCharactersHint: string;
359
+ advancedSearchLabel: string;
360
+ defaultDialogTitle: string;
361
+ }
362
+ declare const DEFAULT_CK_TYPE_SELECTOR_INPUT_MESSAGES: CkTypeSelectorInputMessages;
363
+
318
364
  declare class CkTypeSelectorInputComponent implements OnInit, OnDestroy, ControlValueAccessor, Validator {
319
365
  autocomplete: AutoCompleteComponent;
320
366
  placeholder: string;
@@ -326,6 +372,11 @@ declare class CkTypeSelectorInputComponent implements OnInit, OnDestroy, Control
326
372
  dialogTitle: string;
327
373
  advancedSearchLabel: string;
328
374
  derivedFromRtCkTypeId?: string;
375
+ _messages: CkTypeSelectorInputMessages;
376
+ set messages(value: Partial<CkTypeSelectorInputMessages> | undefined);
377
+ dialogMessages?: Partial<CkTypeSelectorDialogMessages>;
378
+ protected formatNoTypesFound(searchValue: string): string;
379
+ protected formatMinCharactersHint(minLength: number): string;
329
380
  private _disabled;
330
381
  get disabled(): boolean;
331
382
  set disabled(value: boolean);
@@ -370,7 +421,7 @@ declare class CkTypeSelectorInputComponent implements OnInit, OnDestroy, Control
370
421
  private selectCkType;
371
422
  openDialog(event?: Event): Promise<void>;
372
423
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CkTypeSelectorInputComponent, never>;
373
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<CkTypeSelectorInputComponent, "mm-ck-type-selector-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "minSearchLength": { "alias": "minSearchLength"; "required": false; }; "maxResults": { "alias": "maxResults"; "required": false; }; "debounceMs": { "alias": "debounceMs"; "required": false; }; "ckModelIds": { "alias": "ckModelIds"; "required": false; }; "allowAbstract": { "alias": "allowAbstract"; "required": false; }; "dialogTitle": { "alias": "dialogTitle"; "required": false; }; "advancedSearchLabel": { "alias": "advancedSearchLabel"; "required": false; }; "derivedFromRtCkTypeId": { "alias": "derivedFromRtCkTypeId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "ckTypeSelected": "ckTypeSelected"; "ckTypeCleared": "ckTypeCleared"; }, never, never, true, never>;
424
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CkTypeSelectorInputComponent, "mm-ck-type-selector-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "minSearchLength": { "alias": "minSearchLength"; "required": false; }; "maxResults": { "alias": "maxResults"; "required": false; }; "debounceMs": { "alias": "debounceMs"; "required": false; }; "ckModelIds": { "alias": "ckModelIds"; "required": false; }; "allowAbstract": { "alias": "allowAbstract"; "required": false; }; "dialogTitle": { "alias": "dialogTitle"; "required": false; }; "advancedSearchLabel": { "alias": "advancedSearchLabel"; "required": false; }; "derivedFromRtCkTypeId": { "alias": "derivedFromRtCkTypeId"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "dialogMessages": { "alias": "dialogMessages"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "ckTypeSelected": "ckTypeSelected"; "ckTypeCleared": "ckTypeCleared"; }, never, never, true, never>;
374
425
  }
375
426
 
376
427
  /**
@@ -947,6 +998,23 @@ interface BinaryDownloadEvent {
947
998
  downloadUri?: string;
948
999
  }
949
1000
 
1001
+ /**
1002
+ * Translatable messages for PropertyGridComponent.
1003
+ */
1004
+ interface PropertyGridMessages {
1005
+ /** Placeholder for the search input. Default: "Search attributes..." */
1006
+ searchPlaceholder: string;
1007
+ /** Title of the Property column. Default: "Property" */
1008
+ columnPropertyTitle: string;
1009
+ /** Title of the Value column. Default: "Value" */
1010
+ columnValueTitle: string;
1011
+ /** Title of the Type column. Default: "Type" */
1012
+ columnTypeTitle: string;
1013
+ /** Tooltip on the read-only lock icon. Default: "Read-only" */
1014
+ readOnlyTooltip: string;
1015
+ }
1016
+ declare const DEFAULT_PROPERTY_GRID_MESSAGES: PropertyGridMessages;
1017
+
950
1018
  /** Represents an attribute from an RtEntity */
951
1019
  interface RtAttribute {
952
1020
  attributeName?: string | null;
@@ -1042,6 +1110,8 @@ declare class PropertyGridComponent implements OnInit, OnChanges {
1042
1110
  data: PropertyGridItem[];
1043
1111
  config: PropertyGridConfig;
1044
1112
  showTypeColumn: boolean;
1113
+ protected _messages: PropertyGridMessages;
1114
+ set messages(value: Partial<PropertyGridMessages> | undefined);
1045
1115
  propertyChange: EventEmitter<PropertyChangeEvent>;
1046
1116
  saveRequested: EventEmitter<PropertyGridItem[]>;
1047
1117
  binaryDownload: EventEmitter<BinaryDownloadEvent>;
@@ -1091,7 +1161,7 @@ declare class PropertyGridComponent implements OnInit, OnChanges {
1091
1161
  */
1092
1162
  onBinaryDownload(event: BinaryDownloadEvent): void;
1093
1163
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PropertyGridComponent, never>;
1094
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<PropertyGridComponent, "mm-property-grid", never, { "data": { "alias": "data"; "required": false; }; "config": { "alias": "config"; "required": false; }; "showTypeColumn": { "alias": "showTypeColumn"; "required": false; }; }, { "propertyChange": "propertyChange"; "saveRequested": "saveRequested"; "binaryDownload": "binaryDownload"; }, never, never, true, never>;
1164
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<PropertyGridComponent, "mm-property-grid", never, { "data": { "alias": "data"; "required": false; }; "config": { "alias": "config"; "required": false; }; "showTypeColumn": { "alias": "showTypeColumn"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; }, { "propertyChange": "propertyChange"; "saveRequested": "saveRequested"; "binaryDownload": "binaryDownload"; }, never, never, true, never>;
1095
1165
  }
1096
1166
 
1097
1167
  /**
@@ -1299,6 +1369,204 @@ declare class RecordDetailDialogComponent implements OnInit {
1299
1369
  static ɵcmp: _angular_core.ɵɵ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>;
1300
1370
  }
1301
1371
 
1372
+ /**
1373
+ * Translatable messages for the RuntimeBrowser components.
1374
+ * Pass translated strings to override the English defaults.
1375
+ */
1376
+ interface RuntimeBrowserMessages {
1377
+ /**
1378
+ * Messages forwarded to the embedded ck-type-selector-input
1379
+ * (rendered by the create-editor flow).
1380
+ */
1381
+ ckTypeSelectorInput?: Partial<CkTypeSelectorInputMessages>;
1382
+ /**
1383
+ * Messages forwarded to the embedded property-grid
1384
+ * (attributes tab in entity detail view).
1385
+ */
1386
+ propertyGrid?: Partial<PropertyGridMessages>;
1387
+ /**
1388
+ * Messages forwarded to the embedded list-view
1389
+ * (associations tab in entity detail view: column headers, pager,
1390
+ * Excel/PDF/Refresh tooltips).
1391
+ */
1392
+ listView?: Partial<ListViewMessages>;
1393
+ /** Header label for record card in attributes-group. Default: "Record" */
1394
+ recordLabel?: string;
1395
+ /** Back button on the standalone entity-detail page. Default: "Back" */
1396
+ back?: string;
1397
+ /** Hint above a RECORD_ARRAY tabstrip in attributes-group. */
1398
+ recordArrayHint?: string;
1399
+ /** Hint above an optional RECORD section in attributes-group. */
1400
+ recordHint?: string;
1401
+ /** "Add" button for RECORD_ARRAY items. Default: "Add" */
1402
+ addRecord?: string;
1403
+ /** "Remove" button for RECORD_ARRAY items. Default: "Remove" */
1404
+ removeRecord?: string;
1405
+ /** "Load" button for optional RECORD. Default: "Load" */
1406
+ loadRecord?: string;
1407
+ /** "Unload" button for optional RECORD. Default: "Unload" */
1408
+ unloadRecord?: string;
1409
+ /** Hint for GEO longitude input. */
1410
+ longitudeHint?: string;
1411
+ /** Hint for GEO latitude input. */
1412
+ latitudeHint?: string;
1413
+ /**
1414
+ * Drag-and-drop messages for the binary attribute drop zone
1415
+ * (forwarded to <kendo-fileselect-messages>).
1416
+ */
1417
+ dragDrop?: {
1418
+ /** Drop-zone hint label. Default: 'Drop files here to upload' */
1419
+ dropZone?: string;
1420
+ /** Error shown when a file exceeds the size limit. Default: 'File size too large.' */
1421
+ errorFileTooBig?: string;
1422
+ /** Error shown when the file extension is not allowed. Default: 'File type not allowed.' */
1423
+ errorInvalidType?: string;
1424
+ /** Error shown when file upload fails. Default: 'File failed to upload.' */
1425
+ errorUploadFailed?: string;
1426
+ };
1427
+ /**
1428
+ * Labels/tooltips for the binary reference (file picker) editor,
1429
+ * shown when a BINARY attribute is restored from stored base64 data.
1430
+ */
1431
+ binaryReference?: {
1432
+ /** Inline label text. Default: 'Preview (restored from stored data)' */
1433
+ label?: string;
1434
+ /** Tooltip on the label span. Default: 'Content and size are from stored data. File name is a placeholder because the original name is not stored.' */
1435
+ tooltip?: string;
1436
+ };
1437
+ /**
1438
+ * Labels/tooltips for the reference preview component,
1439
+ * shown when a BINARY_LINKED attribute is a synthetic reference file.
1440
+ */
1441
+ referencePreview?: {
1442
+ /** Inline label text. Default: 'Preview (reference file)' */
1443
+ label?: string;
1444
+ /** Tooltip on the label span. Default: 'Shows metadata of an existing file in the system; content is not loaded. Replace with a file to change.' */
1445
+ tooltip?: string;
1446
+ };
1447
+ /**
1448
+ * Generic error messages emitted by mm-attribute-field.
1449
+ */
1450
+ attributeField?: {
1451
+ /** Validation error shown below a field when it is invalid and dirty/touched. Default: 'This field is required or invalid.' */
1452
+ errorMessage?: string;
1453
+ };
1454
+ title: string;
1455
+ badgeLabel: string;
1456
+ titlePrefix: string;
1457
+ ready: string;
1458
+ selectItem: string;
1459
+ noPropertiesAvailable: string;
1460
+ constructionKitModel: string;
1461
+ constructionKitModels: string;
1462
+ fullName: string;
1463
+ semanticName: string;
1464
+ modelName: string;
1465
+ version: string;
1466
+ state: string;
1467
+ selectTypeFromTree: string;
1468
+ browseModelsAndTypes: string;
1469
+ type: string;
1470
+ abstract: string;
1471
+ final: string;
1472
+ base: string;
1473
+ runtimeEntities: string;
1474
+ runtimeId: string;
1475
+ typeId: string;
1476
+ entityIdentifier: string;
1477
+ wellKnownName: string;
1478
+ entityInformation: string;
1479
+ loadingEntityDetails: string;
1480
+ retry: string;
1481
+ attributes: string;
1482
+ associations: string;
1483
+ direction: string;
1484
+ role: string;
1485
+ relatedType: string;
1486
+ relatedEntity: string;
1487
+ all: string;
1488
+ inbound: string;
1489
+ outbound: string;
1490
+ allRoles: string;
1491
+ allTypes: string;
1492
+ entityId: string;
1493
+ viewDetails: string;
1494
+ copyToClipboard: string;
1495
+ copyEntityIdentifierToClipboard: string;
1496
+ goToEntity: string;
1497
+ refresh: string;
1498
+ create: string;
1499
+ edit: string;
1500
+ delete: string;
1501
+ createEntity: string;
1502
+ updateEntity: string;
1503
+ name: string;
1504
+ runtimeCkTypeId: string;
1505
+ targetLocation: string;
1506
+ rootLevel: string;
1507
+ entityType: string;
1508
+ selectType: string;
1509
+ selectTypePrompt: string;
1510
+ save: string;
1511
+ cancel: string;
1512
+ longitude: string;
1513
+ latitude: string;
1514
+ resetToInitialValue: string;
1515
+ attributesFor: string;
1516
+ couldNotLoadEntityDetails: string;
1517
+ failedToLoadEntityDetails: string;
1518
+ entityNotFound?: string;
1519
+ entityIdInvalidFormat?: string;
1520
+ copiedToClipboard: string;
1521
+ failedToCopyToClipboard: string;
1522
+ downloadNotAvailable: string;
1523
+ failedToLoadDownloadInfo: string;
1524
+ missingRequiredIdentifiers: string;
1525
+ failedToCreateEntity: string;
1526
+ failedToUpdateEntity: string;
1527
+ goToEntityTitle: string;
1528
+ goToEntityPrompt: string;
1529
+ go: string;
1530
+ created: string;
1531
+ modified: string;
1532
+ dataMapping: string;
1533
+ mappingTarget: string;
1534
+ mappingSourceAttributePath: string;
1535
+ mappingTargetAttributePath: string;
1536
+ mappingExpression: string;
1537
+ mappingExpressionHint: string;
1538
+ selectTargetEntity: string;
1539
+ removeMapping: string;
1540
+ saveMapping: string;
1541
+ noMappingConfigured: string;
1542
+ mappingSaved: string;
1543
+ mappingRemoved: string;
1544
+ failedToSaveMapping: string;
1545
+ failedToLoadMapping: string;
1546
+ /** Toast text emitted when user tries to move a tree item INTO the root. */
1547
+ treeMoveToRootUnsupported?: string;
1548
+ /** Toast text emitted when user tries to drop a tree item directly ON the root node. */
1549
+ treeMoveOnRootUnsupported?: string;
1550
+ /** Card header prefix for each mapping card: "MAPPING N". Default: "MAPPING" */
1551
+ mappingHeader?: string;
1552
+ /** Label for the source data point row. Default: "Source Data Point" */
1553
+ mappingSourceDataPoint?: string;
1554
+ /** Label for the "Add Mapping" toolbar button. Default: "+ Add Mapping" */
1555
+ mappingAddMapping?: string;
1556
+ /** Label for the "Save All Mappings" button. Default: "Save All Mappings" */
1557
+ mappingSaveAll?: string;
1558
+ /** Placeholder shown when a target entity or attribute is not configured. Default: "(not set)" */
1559
+ mappingNotSet?: string;
1560
+ /** Label for the "Select..." / "Change..." picker buttons. Default: "Select..." */
1561
+ mappingSelect?: string;
1562
+ /** Empty-state hint shown when no mappings exist. Default: "No data point mappings configured yet." */
1563
+ mappingNoneConfigured?: string;
1564
+ }
1565
+ /**
1566
+ * Default English messages for the RuntimeBrowser components.
1567
+ */
1568
+ declare const DEFAULT_RUNTIME_BROWSER_MESSAGES: RuntimeBrowserMessages;
1569
+
1302
1570
  /**
1303
1571
  * Result of validating a mapping expression.
1304
1572
  */
@@ -1377,6 +1645,8 @@ declare class EntityDetailComponent implements OnInit, OnDestroy {
1377
1645
  private readonly attributeSelectorDialog;
1378
1646
  private readonly destroy$;
1379
1647
  protected readonly arrowLeftIcon: _progress_kendo_svg_icons.SVGIcon;
1648
+ protected _messages: RuntimeBrowserMessages;
1649
+ set messages(value: Partial<RuntimeBrowserMessages> | undefined);
1380
1650
  showDataMapping: boolean;
1381
1651
  entity: RtEntityDto | null;
1382
1652
  loading: boolean;
@@ -1400,7 +1670,7 @@ declare class EntityDetailComponent implements OnInit, OnDestroy {
1400
1670
  onSelectTargetAttribute(mapping: DataPointMappingItem): Promise<void>;
1401
1671
  onSaveAllMappings(): Promise<void>;
1402
1672
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<EntityDetailComponent, never>;
1403
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<EntityDetailComponent, "mm-entity-detail", never, {}, {}, never, never, true, never>;
1673
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<EntityDetailComponent, "mm-entity-detail", never, { "messages": { "alias": "messages"; "required": false; }; }, {}, never, never, true, never>;
1404
1674
  }
1405
1675
 
1406
1676
  declare const botService: {
@@ -1634,107 +1904,6 @@ declare const article: {
1634
1904
  viewBox: string;
1635
1905
  };
1636
1906
 
1637
- /**
1638
- * Translatable messages for the RuntimeBrowser components.
1639
- * Pass translated strings to override the English defaults.
1640
- */
1641
- interface RuntimeBrowserMessages {
1642
- title: string;
1643
- badgeLabel: string;
1644
- titlePrefix: string;
1645
- ready: string;
1646
- selectItem: string;
1647
- noPropertiesAvailable: string;
1648
- constructionKitModel: string;
1649
- constructionKitModels: string;
1650
- fullName: string;
1651
- semanticName: string;
1652
- modelName: string;
1653
- version: string;
1654
- state: string;
1655
- selectTypeFromTree: string;
1656
- browseModelsAndTypes: string;
1657
- type: string;
1658
- abstract: string;
1659
- final: string;
1660
- base: string;
1661
- runtimeEntities: string;
1662
- runtimeId: string;
1663
- typeId: string;
1664
- entityIdentifier: string;
1665
- wellKnownName: string;
1666
- entityInformation: string;
1667
- loadingEntityDetails: string;
1668
- retry: string;
1669
- attributes: string;
1670
- associations: string;
1671
- direction: string;
1672
- role: string;
1673
- relatedType: string;
1674
- relatedEntity: string;
1675
- all: string;
1676
- inbound: string;
1677
- outbound: string;
1678
- allRoles: string;
1679
- allTypes: string;
1680
- entityId: string;
1681
- viewDetails: string;
1682
- copyToClipboard: string;
1683
- copyEntityIdentifierToClipboard: string;
1684
- goToEntity: string;
1685
- refresh: string;
1686
- create: string;
1687
- edit: string;
1688
- delete: string;
1689
- createEntity: string;
1690
- updateEntity: string;
1691
- name: string;
1692
- runtimeCkTypeId: string;
1693
- targetLocation: string;
1694
- rootLevel: string;
1695
- entityType: string;
1696
- selectType: string;
1697
- selectTypePrompt: string;
1698
- save: string;
1699
- cancel: string;
1700
- longitude: string;
1701
- latitude: string;
1702
- resetToInitialValue: string;
1703
- attributesFor: string;
1704
- couldNotLoadEntityDetails: string;
1705
- failedToLoadEntityDetails: string;
1706
- copiedToClipboard: string;
1707
- failedToCopyToClipboard: string;
1708
- downloadNotAvailable: string;
1709
- failedToLoadDownloadInfo: string;
1710
- missingRequiredIdentifiers: string;
1711
- failedToCreateEntity: string;
1712
- failedToUpdateEntity: string;
1713
- goToEntityTitle: string;
1714
- goToEntityPrompt: string;
1715
- go: string;
1716
- created: string;
1717
- modified: string;
1718
- dataMapping: string;
1719
- mappingTarget: string;
1720
- mappingSourceAttributePath: string;
1721
- mappingTargetAttributePath: string;
1722
- mappingExpression: string;
1723
- mappingExpressionHint: string;
1724
- selectTargetEntity: string;
1725
- removeMapping: string;
1726
- saveMapping: string;
1727
- noMappingConfigured: string;
1728
- mappingSaved: string;
1729
- mappingRemoved: string;
1730
- failedToSaveMapping: string;
1731
- failedToLoadMapping: string;
1732
- }
1733
- /**
1734
- * Default English messages for the RuntimeBrowser components.
1735
- */
1736
- declare const DEFAULT_RUNTIME_BROWSER_MESSAGES: RuntimeBrowserMessages;
1737
-
1738
1907
  declare class CkTypeEntitiesDataSourceDirective extends OctoGraphQlDataSource<RtEntityDto> {
1739
1908
  private readonly getRuntimeEntitiesGQL;
1740
1909
  private ckTypeId;
@@ -2989,5 +3158,5 @@ declare class TenantSwitcherComponent {
2989
3158
  */
2990
3159
  declare function provideOctoUi(): EnvironmentProviders;
2991
3160
 
2992
- export { AssociationValidationService, AttributeSelectorDialogComponent, AttributeSelectorDialogService, AttributeSortSelectorDialogComponent, AttributeSortSelectorDialogService, AttributeValueTypeDto, CkTypeSelectorDialogComponent, CkTypeSelectorDialogService, CkTypeSelectorInputComponent, DEFAULT_DATA_POINT, DEFAULT_MAPPING_COVERAGE_TREE_CONFIG, DEFAULT_RUNTIME_BROWSER_MESSAGES, DataMappingOverviewComponent, DataPointPickerComponent, DataPointResolverService, DefaultPropertyCategory, EntityDetailComponent, EntityIdInfoComponent, EntitySelectorDialogComponent, EntitySelectorDialogService, FieldFilterEditorComponent, MappingCoverageTreeComponent, MappingCoverageTreeDataSource, MappingEditDialogComponent, MappingEditDialogService, 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, extractDataPointNames, 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 };
2993
- export type { AttributeItemLike, AttributeSelectorDialogData, AttributeSelectorDialogResult, AttributeSelectorResult, AttributeSortItem, AttributeSortSelectorDialogData, AttributeSortSelectorDialogResult, AttributeSortSelectorResult, BinaryDownloadEvent, BrowserItem, BrowserState, CkAssociationRole, CkTypeSelectorDialogData, CkTypeSelectorDialogResult, CkTypeSelectorResult, CoverageEntityRef, CoverageMappingItem, CoverageNodePayload, CoverageTreeIcons, CoverageTreeItem, DataPointMappingItem, DataPointMappingOverviewItem, EntitySelectorDialogData, EntitySelectorDialogResult, EntitySelectorResult, ExpressionValidationResult, ExpressionValidatorFn, FieldFilterItem, FilterVariable, MappingCoverageTreeConfig, MappingEditDialogData, MappingEditDialogResult, MappingEditValue, MappingOverviewSummary, MoveValidationResult, PropertyChangeEvent, PropertyGridConfig, PropertyGridItem, RtEntityId, RuntimeBrowserMessages, RuntimeBrowserRouteOptions, RuntimeEntityVariableDialogData, RuntimeEntityVariableDialogResult, RuntimeEntityVariableMapping, RuntimeEntityVariableResult, SortOption, ValidationMessage };
3161
+ export { AssociationValidationService, AttributeSelectorDialogComponent, AttributeSelectorDialogService, AttributeSortSelectorDialogComponent, AttributeSortSelectorDialogService, AttributeValueTypeDto, CkTypeSelectorDialogComponent, CkTypeSelectorDialogService, CkTypeSelectorInputComponent, DEFAULT_CK_TYPE_SELECTOR_DIALOG_MESSAGES, DEFAULT_CK_TYPE_SELECTOR_INPUT_MESSAGES, DEFAULT_DATA_POINT, DEFAULT_MAPPING_COVERAGE_TREE_CONFIG, DEFAULT_PROPERTY_GRID_MESSAGES, DEFAULT_RUNTIME_BROWSER_MESSAGES, DataMappingOverviewComponent, DataPointPickerComponent, DataPointResolverService, DefaultPropertyCategory, EntityDetailComponent, EntityIdInfoComponent, EntitySelectorDialogComponent, EntitySelectorDialogService, FieldFilterEditorComponent, MappingCoverageTreeComponent, MappingCoverageTreeDataSource, MappingEditDialogComponent, MappingEditDialogService, 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, extractDataPointNames, 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 };
3162
+ export type { AttributeItemLike, AttributeSelectorDialogData, AttributeSelectorDialogResult, AttributeSelectorResult, AttributeSortItem, AttributeSortSelectorDialogData, AttributeSortSelectorDialogResult, AttributeSortSelectorResult, BinaryDownloadEvent, BrowserItem, BrowserState, CkAssociationRole, CkTypeSelectorDialogData, CkTypeSelectorDialogMessages, CkTypeSelectorDialogResult, CkTypeSelectorInputMessages, CkTypeSelectorResult, CoverageEntityRef, CoverageMappingItem, CoverageNodePayload, CoverageTreeIcons, CoverageTreeItem, DataPointMappingItem, DataPointMappingOverviewItem, EntitySelectorDialogData, EntitySelectorDialogResult, EntitySelectorResult, ExpressionValidationResult, ExpressionValidatorFn, FieldFilterItem, FilterVariable, MappingCoverageTreeConfig, MappingEditDialogData, MappingEditDialogResult, MappingEditValue, MappingOverviewSummary, MoveValidationResult, PropertyChangeEvent, PropertyGridConfig, PropertyGridItem, PropertyGridMessages, RtEntityId, RuntimeBrowserMessages, RuntimeBrowserRouteOptions, RuntimeEntityVariableDialogData, RuntimeEntityVariableDialogResult, RuntimeEntityVariableMapping, RuntimeEntityVariableResult, SortOption, ValidationMessage };