@vectoriox/iox-builder 1.0.7 → 1.0.9
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
|
@@ -2,6 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { ComponentRef, Type, ChangeDetectorRef, OnInit, AfterViewInit, OnChanges, OnDestroy, EventEmitter, ElementRef, ApplicationRef, SimpleChanges, ViewContainerRef, Injector, InjectionToken, TemplateRef, AfterContentInit, QueryList } from '@angular/core';
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Subject, Subscription, BehaviorSubject } from 'rxjs';
|
|
5
|
+
import * as _vectoriox_iox_builder from '@vectoriox/iox-builder';
|
|
5
6
|
import * as i20 from 'primeng/popover';
|
|
6
7
|
import { Popover } from 'primeng/popover';
|
|
7
8
|
import { ActivatedRoute } from '@angular/router';
|
|
@@ -578,6 +579,9 @@ declare class ViewportService {
|
|
|
578
579
|
x: number;
|
|
579
580
|
y: number;
|
|
580
581
|
};
|
|
582
|
+
private update;
|
|
583
|
+
private saveToStorage;
|
|
584
|
+
private loadFromStorage;
|
|
581
585
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewportService, never>;
|
|
582
586
|
static ɵprov: i0.ɵɵInjectableDeclaration<ViewportService>;
|
|
583
587
|
}
|
|
@@ -907,16 +911,18 @@ declare class ToolbarComponent {
|
|
|
907
911
|
modes: typeof BuilderMode;
|
|
908
912
|
deviceModes: typeof DeviceMode;
|
|
909
913
|
deviceOptions: DeviceOption[];
|
|
910
|
-
zoomOptions: ZoomOption[];
|
|
914
|
+
zoomOptions: _vectoriox_iox_builder.ZoomOption[];
|
|
911
915
|
screenWidthOptions: ScreenWidthOption[];
|
|
912
916
|
get activeModeIcon(): string;
|
|
913
917
|
get activeModeLabel(): string;
|
|
914
918
|
get activeDeviceOption(): DeviceOption;
|
|
915
919
|
get zoomLabel(): string;
|
|
920
|
+
get sliderZoom(): number;
|
|
916
921
|
toggleModePopover(event: Event): void;
|
|
917
922
|
selectMode(mode: BuilderMode): void;
|
|
918
923
|
toggleDevicePopover(event: Event): void;
|
|
919
924
|
selectDevice(mode: DeviceMode): void;
|
|
925
|
+
onSliderChange(event: Event): void;
|
|
920
926
|
toggleWidthPopover(event: Event): void;
|
|
921
927
|
selectScreenWidth(width: number): void;
|
|
922
928
|
toggleZoomPopover(event: Event): void;
|