@meshmakers/octo-ui 3.3.440 → 3.3.460

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.440",
3
+ "version": "3.3.460",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.6",
6
6
  "@angular/core": "^21.0.6",
@@ -374,6 +374,7 @@ interface AttributeSelectorDialogData {
374
374
  rtCkTypeId: string;
375
375
  selectedAttributes?: string[];
376
376
  dialogTitle?: string;
377
+ singleSelect?: boolean;
377
378
  }
378
379
  interface AttributeSelectorDialogResult {
379
380
  selectedAttributes: AttributeItem[];
@@ -391,7 +392,9 @@ declare class AttributeSelectorDialogComponent extends DialogContentBase impleme
391
392
  protected readonly arrowDownIcon: _progress_kendo_svg_icons.SVGIcon;
392
393
  dialogTitle: string;
393
394
  rtCkTypeId: string;
395
+ singleSelect: boolean;
394
396
  searchText: string;
397
+ selectedSingleKey: string[];
395
398
  availableAttributes: AttributeItem[];
396
399
  selectedAttributes: AttributeItem[];
397
400
  availableGridData: GridDataResult;
@@ -427,6 +430,10 @@ declare class AttributeSelectorDialogComponent extends DialogContentBase impleme
427
430
  * Handle cell click on selected attributes grid to detect double-click
428
431
  */
429
432
  onSelectedCellClick(event: CellClickEvent): void;
433
+ /**
434
+ * Handle cell click on single-select grid to detect double-click (confirm immediately)
435
+ */
436
+ onSingleSelectCellClick(event: CellClickEvent): void;
430
437
  /**
431
438
  * Move a single attribute from available to selected
432
439
  */
@@ -452,7 +459,7 @@ declare class AttributeSelectorDialogService {
452
459
  * @param dialogTitle Optional custom dialog title
453
460
  * @returns Promise that resolves with the result containing selected attributes and confirmation status
454
461
  */
455
- openAttributeSelector(rtCkTypeId: string, selectedAttributes?: string[], dialogTitle?: string): Promise<AttributeSelectorResult>;
462
+ openAttributeSelector(rtCkTypeId: string, selectedAttributes?: string[], dialogTitle?: string, singleSelect?: boolean): Promise<AttributeSelectorResult>;
456
463
  static ɵfac: i0.ɵɵFactoryDeclaration<AttributeSelectorDialogService, never>;
457
464
  static ɵprov: i0.ɵɵInjectableDeclaration<AttributeSelectorDialogService>;
458
465
  }
@@ -538,6 +545,7 @@ interface CkTypeSelectorDialogData {
538
545
  ckModelIds?: string[];
539
546
  dialogTitle?: string;
540
547
  allowAbstract?: boolean;
548
+ derivedFromRtCkTypeId?: string;
541
549
  }
542
550
  interface CkTypeSelectorDialogResult {
543
551
  selectedCkType: CkTypeSelectorItem;
@@ -561,6 +569,7 @@ declare class CkTypeSelectorDialogComponent extends DialogContentBase implements
561
569
  selectedType: CkTypeSelectorItem | null;
562
570
  selectItemBy: (context: RowArgs) => string;
563
571
  private initialCkModelIds?;
572
+ derivedFromRtCkTypeId?: string;
564
573
  constructor();
565
574
  ngOnInit(): void;
566
575
  ngOnDestroy(): void;
@@ -593,6 +602,7 @@ declare class CkTypeSelectorDialogService {
593
602
  ckModelIds?: string[];
594
603
  dialogTitle?: string;
595
604
  allowAbstract?: boolean;
605
+ derivedFromRtCkTypeId?: string;
596
606
  }): Promise<CkTypeSelectorResult>;
597
607
  static ɵfac: i0.ɵɵFactoryDeclaration<CkTypeSelectorDialogService, never>;
598
608
  static ɵprov: i0.ɵɵInjectableDeclaration<CkTypeSelectorDialogService>;
@@ -608,6 +618,7 @@ declare class CkTypeSelectorInputComponent implements OnInit, OnDestroy, Control
608
618
  allowAbstract: boolean;
609
619
  dialogTitle: string;
610
620
  advancedSearchLabel: string;
621
+ derivedFromRtCkTypeId?: string;
611
622
  private _disabled;
612
623
  get disabled(): boolean;
613
624
  set disabled(value: boolean);
@@ -646,7 +657,7 @@ declare class CkTypeSelectorInputComponent implements OnInit, OnDestroy, Control
646
657
  private selectCkType;
647
658
  openDialog(event?: Event): Promise<void>;
648
659
  static ɵfac: i0.ɵɵFactoryDeclaration<CkTypeSelectorInputComponent, never>;
649
- static ɵcmp: i0.ɵɵ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; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "ckTypeSelected": "ckTypeSelected"; "ckTypeCleared": "ckTypeCleared"; }, never, never, true, never>;
660
+ static ɵcmp: i0.ɵɵ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>;
650
661
  }
651
662
 
652
663
  /**
@@ -798,8 +809,8 @@ declare class EntityIdInfoComponent {
798
809
 
799
810
  /**
800
811
  * Animated OctoMesh logo loader component.
801
- * Displays the OctoMesh octopus SVG with a tentacle wave animation,
802
- * gentle bob, and pulsing glow effect.
812
+ * Displays the OctoMesh octopus SVG with wiggling tentacles
813
+ * and orbiting data blocks representing data loading.
803
814
  *
804
815
  * Uses `--kendo-color-primary` for theme-independent coloring.
805
816
  * Override the color via CSS `color` property on the host element.