@meshmakers/octo-ui 3.3.600 → 3.3.620

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.600",
3
+ "version": "3.3.620",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0",
@@ -423,7 +423,9 @@ declare class AttributeSelectorDialogComponent implements OnInit {
423
423
  protected readonly searchIcon: _progress_kendo_svg_icons.SVGIcon;
424
424
  protected readonly arrowUpIcon: _progress_kendo_svg_icons.SVGIcon;
425
425
  protected readonly arrowDownIcon: _progress_kendo_svg_icons.SVGIcon;
426
- data: AttributeSelectorDialogData;
426
+ private _data;
427
+ get data(): AttributeSelectorDialogData;
428
+ set data(value: AttributeSelectorDialogData);
427
429
  dialogTitle: string;
428
430
  rtCkTypeId: string;
429
431
  singleSelect: boolean;
@@ -446,6 +448,7 @@ declare class AttributeSelectorDialogComponent implements OnInit {
446
448
  private lastClickedItem;
447
449
  private readonly doubleClickDelay;
448
450
  ngOnInit(): void;
451
+ private initializeFromData;
449
452
  private loadAvailableAttributes;
450
453
  private loadInitialSelectedAttributes;
451
454
  onSearchChange(value: string): void;