@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/fesm2022/meshmakers-octo-ui.mjs +33 -24
- package/fesm2022/meshmakers-octo-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/meshmakers-octo-ui.d.ts +4 -1
- package/lib/runtime-browser/styles/_index.scss +0 -4954
- package/lib/runtime-browser/styles/_kendo-theme.scss +0 -224
- package/lib/runtime-browser/styles/_variables.scss +0 -196
- package/styles/_index.scss +0 -3
- package/styles/_with-kendo.scss +0 -8
package/package.json
CHANGED
|
@@ -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
|
-
|
|
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;
|