@smarterplan/ngx-smarterplan-locations 0.0.21
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/README.md +24 -0
- package/esm2020/lib/components/carousel/carousel.component.mjs +28 -0
- package/esm2020/lib/components/chevron/chevron.component.mjs +18 -0
- package/esm2020/lib/components/detail-location/detail-location.component.mjs +154 -0
- package/esm2020/lib/components/form-location/form-location.component.mjs +215 -0
- package/esm2020/lib/components/images/images.component.mjs +91 -0
- package/esm2020/lib/components/locations/locations.component.mjs +138 -0
- package/esm2020/lib/components/locations/map/map-popup/map-popup.component.mjs +66 -0
- package/esm2020/lib/components/locations/map/map.component.mjs +91 -0
- package/esm2020/lib/components/plans/calibration/calibration.component.mjs +484 -0
- package/esm2020/lib/components/plans/edit-plan/edit-plan.component.mjs +314 -0
- package/esm2020/lib/components/plans/plans.component.mjs +211 -0
- package/esm2020/lib/components/tab-navigation/tab-navigation.component.mjs +40 -0
- package/esm2020/lib/components/visits/visits.component.mjs +227 -0
- package/esm2020/lib/components/zones/add-zone/add-zone.component.mjs +592 -0
- package/esm2020/lib/components/zones/add-zone/selection/selection.component.mjs +77 -0
- package/esm2020/lib/components/zones/zones.component.mjs +214 -0
- package/esm2020/lib/helper.service.mjs +2 -0
- package/esm2020/lib/ngx-smarterplan-location-routing.module.mjs +49 -0
- package/esm2020/lib/ngx-smarterplan-locations.module.mjs +107 -0
- package/esm2020/lib/ngx-smarterplan-locations.service.mjs +14 -0
- package/esm2020/public-api.mjs +6 -0
- package/esm2020/smarterplan-ngx-smarterplan-locations.mjs +5 -0
- package/fesm2015/smarterplan-ngx-smarterplan-locations.mjs +3126 -0
- package/fesm2015/smarterplan-ngx-smarterplan-locations.mjs.map +1 -0
- package/fesm2020/smarterplan-ngx-smarterplan-locations.mjs +2987 -0
- package/fesm2020/smarterplan-ngx-smarterplan-locations.mjs.map +1 -0
- package/lib/components/carousel/carousel.component.d.ts +12 -0
- package/lib/components/chevron/chevron.component.d.ts +9 -0
- package/lib/components/detail-location/detail-location.component.d.ts +51 -0
- package/lib/components/form-location/form-location.component.d.ts +40 -0
- package/lib/components/images/images.component.d.ts +28 -0
- package/lib/components/locations/locations.component.d.ts +49 -0
- package/lib/components/locations/map/map-popup/map-popup.component.d.ts +22 -0
- package/lib/components/locations/map/map.component.d.ts +22 -0
- package/lib/components/plans/calibration/calibration.component.d.ts +140 -0
- package/lib/components/plans/edit-plan/edit-plan.component.d.ts +54 -0
- package/lib/components/plans/plans.component.d.ts +59 -0
- package/lib/components/tab-navigation/tab-navigation.component.d.ts +13 -0
- package/lib/components/visits/visits.component.d.ts +51 -0
- package/lib/components/zones/add-zone/add-zone.component.d.ts +154 -0
- package/lib/components/zones/add-zone/selection/selection.component.d.ts +44 -0
- package/lib/components/zones/zones.component.d.ts +66 -0
- package/lib/helper.service.d.ts +6 -0
- package/lib/ngx-smarterplan-location-routing.module.d.ts +7 -0
- package/lib/ngx-smarterplan-locations.module.d.ts +31 -0
- package/lib/ngx-smarterplan-locations.service.d.ts +6 -0
- package/package.json +39 -0
- package/public-api.d.ts +2 -0
- package/smarterplan-ngx-smarterplan-locations.d.ts +5 -0
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup, FormBuilder, AbstractControl } from '@angular/forms';
|
|
3
|
+
import { Zone, Plan, Layer, Navigation, ZoneService, LayerService, BaseUserService, NavigationService, PlanService } from 'ngx-smarterplan-core';
|
|
4
|
+
import { PanZoom } from 'panzoom';
|
|
5
|
+
import { Rectangle } from '../../../helper.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class AddZoneComponent implements OnInit {
|
|
8
|
+
private fb;
|
|
9
|
+
private zoneService;
|
|
10
|
+
private layerService;
|
|
11
|
+
private userService;
|
|
12
|
+
private navigationService;
|
|
13
|
+
private planService;
|
|
14
|
+
zoneEdit: Zone;
|
|
15
|
+
spaceID: string;
|
|
16
|
+
images360: {
|
|
17
|
+
path: string;
|
|
18
|
+
filename: string;
|
|
19
|
+
}[];
|
|
20
|
+
navigationIDs: string[];
|
|
21
|
+
zones: Zone[];
|
|
22
|
+
newZoneData: any;
|
|
23
|
+
updatedZone: EventEmitter<any>;
|
|
24
|
+
chosenPlan: Plan;
|
|
25
|
+
isMuseumVisit: boolean;
|
|
26
|
+
defaultZone: Zone;
|
|
27
|
+
parentZones: Zone[];
|
|
28
|
+
carouselIsVisible: boolean;
|
|
29
|
+
zoneForm: FormGroup;
|
|
30
|
+
isSubmitted: boolean;
|
|
31
|
+
currentScanShowing: number;
|
|
32
|
+
chosenScans: number[];
|
|
33
|
+
layers: Layer[];
|
|
34
|
+
plans: Plan[];
|
|
35
|
+
fromPlan: boolean;
|
|
36
|
+
planCalibrated: boolean;
|
|
37
|
+
chosenScansOnPlan: string[];
|
|
38
|
+
navIDsZoneEdit: string[];
|
|
39
|
+
currentOrgId: string;
|
|
40
|
+
zoneInitialNavCount: number;
|
|
41
|
+
/** panZoom element for adding scans */
|
|
42
|
+
panZoom: PanZoom;
|
|
43
|
+
/** divPlan (use By panZoom) */
|
|
44
|
+
divPlan: HTMLElement;
|
|
45
|
+
/** all scan buttons Element */
|
|
46
|
+
buttonElements: HTMLButtonElement[];
|
|
47
|
+
/** Scan buttons that are in the current selection */
|
|
48
|
+
buttonsInSelection: HTMLButtonElement[];
|
|
49
|
+
zoneIsMatterportFloor: boolean;
|
|
50
|
+
constructor(fb: FormBuilder, zoneService: ZoneService, layerService: LayerService, userService: BaseUserService, navigationService: NavigationService, planService: PlanService);
|
|
51
|
+
ngOnInit(): void;
|
|
52
|
+
ngOnChanges(): void;
|
|
53
|
+
updateLayers(): Promise<void>;
|
|
54
|
+
initZoneForm(): Promise<void>;
|
|
55
|
+
getPlans(): Promise<void>;
|
|
56
|
+
onSubmitZone(): Promise<void>;
|
|
57
|
+
onCancel(): void;
|
|
58
|
+
get name(): AbstractControl;
|
|
59
|
+
toggleCarousel(): void;
|
|
60
|
+
togglePlan(): void;
|
|
61
|
+
onAddScan(): void;
|
|
62
|
+
onRemoveScanImage(scan: any): void;
|
|
63
|
+
onRemoveScanPlan(scan: any): void;
|
|
64
|
+
setSweepsAndNodeForZoneInput(zoneInput: Zone): Promise<void>;
|
|
65
|
+
createLayer(name: string): Promise<Layer>;
|
|
66
|
+
loadNavigations(): Promise<any>;
|
|
67
|
+
onPlanClick(plan?: Plan): Promise<void>;
|
|
68
|
+
addScanPoints(): Promise<void>;
|
|
69
|
+
/**
|
|
70
|
+
* When a button representing a scan is clicked
|
|
71
|
+
* @param button
|
|
72
|
+
*/
|
|
73
|
+
onButtonScanClicked(button: HTMLElement): void;
|
|
74
|
+
styleButton(button: HTMLButtonElement, isAdded?: boolean): void;
|
|
75
|
+
buttonIsChosen(button: HTMLElement): boolean;
|
|
76
|
+
clearDivPlan(): void;
|
|
77
|
+
iniPlanForDraw(): void;
|
|
78
|
+
setScanByDraw(navigations: any[]): Promise<void>;
|
|
79
|
+
setScanInRect(coeffX: number, coeffY: number, element: {
|
|
80
|
+
angle: any;
|
|
81
|
+
cx: any;
|
|
82
|
+
cy: any;
|
|
83
|
+
x: number;
|
|
84
|
+
width: any;
|
|
85
|
+
y: number;
|
|
86
|
+
height: any;
|
|
87
|
+
}, navigations: any[]): Promise<void>;
|
|
88
|
+
setScanInCircle(coeffX: number, coeffY: number, element: {
|
|
89
|
+
angle: any;
|
|
90
|
+
cx: number;
|
|
91
|
+
cy: number;
|
|
92
|
+
rx: number;
|
|
93
|
+
ry: number;
|
|
94
|
+
}, navigations: Navigation[]): Promise<void>;
|
|
95
|
+
setScanInPolygon(coeffX: number, coeffY: number, element: {
|
|
96
|
+
segList: any;
|
|
97
|
+
}, navigations: any[]): Promise<void>;
|
|
98
|
+
isInPolygon(p: {
|
|
99
|
+
x: any;
|
|
100
|
+
y: any;
|
|
101
|
+
}, polygon: string | any[]): Promise<boolean>;
|
|
102
|
+
rotate(point: {
|
|
103
|
+
x: any;
|
|
104
|
+
y: any;
|
|
105
|
+
}, center: {
|
|
106
|
+
x: any;
|
|
107
|
+
y: any;
|
|
108
|
+
}, angle: number): {
|
|
109
|
+
x: number;
|
|
110
|
+
y: number;
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* Check if an HtmlElement is inside a selection
|
|
114
|
+
* @param button HTMLElement
|
|
115
|
+
* @param selection
|
|
116
|
+
* @returns true if the element is inside the selection, false otherwise
|
|
117
|
+
*/
|
|
118
|
+
buttonIsInSelection(button: HTMLButtonElement, selection: Rectangle): boolean;
|
|
119
|
+
/**
|
|
120
|
+
* Trigger each by the selectionComponent when selection change
|
|
121
|
+
* Update the current selected scan buttons
|
|
122
|
+
* @param selection new selection
|
|
123
|
+
*/
|
|
124
|
+
onSelectionChanged(selection: Rectangle): void;
|
|
125
|
+
/**
|
|
126
|
+
* Visually change the state of a scan button, a selected button is blue
|
|
127
|
+
* @param button
|
|
128
|
+
* @param selected if true the button will be blue, otherwise it will red or green
|
|
129
|
+
*/
|
|
130
|
+
setVisuallySelected(button: HTMLElement, selected: boolean): void;
|
|
131
|
+
/**
|
|
132
|
+
* Trigger when the user click to add the selected scans
|
|
133
|
+
*/
|
|
134
|
+
onSelectionAdd(): void;
|
|
135
|
+
/**
|
|
136
|
+
* Trigger when the user click to remove the selected scans
|
|
137
|
+
*/
|
|
138
|
+
onSelectionRemove(): void;
|
|
139
|
+
/**
|
|
140
|
+
* Trigger when the user click to select all scans
|
|
141
|
+
*/
|
|
142
|
+
onSelectAll(): void;
|
|
143
|
+
/**
|
|
144
|
+
* Trigger when the user change the size of the scan points
|
|
145
|
+
* @param event
|
|
146
|
+
*/
|
|
147
|
+
onChangeScanSize(event: any): void;
|
|
148
|
+
/**
|
|
149
|
+
* Adds all sweeps of the space
|
|
150
|
+
*/
|
|
151
|
+
onAddAll(): void;
|
|
152
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AddZoneComponent, never>;
|
|
153
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddZoneComponent, "lib-add-zone", never, { "zoneEdit": "zoneEdit"; "spaceID": "spaceID"; "images360": "images360"; "navigationIDs": "navigationIDs"; "zones": "zones"; "newZoneData": "newZoneData"; "chosenPlan": "chosenPlan"; "isMuseumVisit": "isMuseumVisit"; "defaultZone": "defaultZone"; }, { "updatedZone": "updatedZone"; }, never, never>;
|
|
154
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { Rectangle } from '../../../../helper.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SelectionComponent implements OnInit {
|
|
5
|
+
constructor();
|
|
6
|
+
/**Emit a new selection */
|
|
7
|
+
onSelectionChanged: EventEmitter<Rectangle>;
|
|
8
|
+
/**Zone wich you can use a selection inside, must have the class ".selectZone" */
|
|
9
|
+
selectionableZone: HTMLElement;
|
|
10
|
+
/**HtmlElement use to display the selected zone (blue) */
|
|
11
|
+
selectionElement: HTMLElement;
|
|
12
|
+
isMousedown: boolean;
|
|
13
|
+
selection: {
|
|
14
|
+
startX: number;
|
|
15
|
+
startY: number;
|
|
16
|
+
endX: number;
|
|
17
|
+
endY: number;
|
|
18
|
+
};
|
|
19
|
+
selectionRectangle: Rectangle;
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
/**
|
|
22
|
+
* Update the current selection
|
|
23
|
+
* Will update the selectionRectangle and Selection HTML element
|
|
24
|
+
* @param shouldEmit if true an event will be emitted through onSelectionChanged (true by default)
|
|
25
|
+
*/
|
|
26
|
+
updateSelectionElement(shouldEmit?: boolean): void;
|
|
27
|
+
/**
|
|
28
|
+
* Trigger when mouse is press down on selectionableZone
|
|
29
|
+
* @param event
|
|
30
|
+
*/
|
|
31
|
+
mousedown(event: MouseEvent): void;
|
|
32
|
+
/**
|
|
33
|
+
* Trigger when mouse is release on selectionableZone
|
|
34
|
+
* @param event
|
|
35
|
+
*/
|
|
36
|
+
mouseup(event: MouseEvent): void;
|
|
37
|
+
/**
|
|
38
|
+
* Trigger when mouse is moving on selectionableZone
|
|
39
|
+
* @param event
|
|
40
|
+
*/
|
|
41
|
+
mousemove(event: MouseEvent): void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectionComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectionComponent, "lib-selection", never, {}, { "onSelectionChanged": "onSelectionChanged"; }, never, ["*"]>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import { Zone, Space, Plan, MenuItem, ZoneService, SpaceService, VisitService, NavigationService, BaseUserService, PlanService, Navigation } from 'ngx-smarterplan-core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ZonesComponent implements OnInit {
|
|
7
|
+
private route;
|
|
8
|
+
private zoneService;
|
|
9
|
+
private spaceService;
|
|
10
|
+
private visitService;
|
|
11
|
+
private navigationService;
|
|
12
|
+
private userService;
|
|
13
|
+
private planService;
|
|
14
|
+
private translate;
|
|
15
|
+
lotIndexDetails: number;
|
|
16
|
+
currentSpace: Space;
|
|
17
|
+
updatedZone: EventEmitter<boolean>;
|
|
18
|
+
plans: Plan[];
|
|
19
|
+
zoneForEdit: Zone;
|
|
20
|
+
isEditingZone: boolean;
|
|
21
|
+
captureDate: number;
|
|
22
|
+
spaceID: string;
|
|
23
|
+
navigations: string[];
|
|
24
|
+
images360: any[];
|
|
25
|
+
carouselIsVisible: boolean;
|
|
26
|
+
planIsVisible: boolean;
|
|
27
|
+
currentPlan: Plan;
|
|
28
|
+
currentZone: Zone;
|
|
29
|
+
loadingPlan: boolean;
|
|
30
|
+
menuItems: MenuItem[];
|
|
31
|
+
isMuseumVisit: boolean;
|
|
32
|
+
isGuide: boolean;
|
|
33
|
+
isAdmin: boolean;
|
|
34
|
+
allZones: Zone[];
|
|
35
|
+
floorZones: Zone[];
|
|
36
|
+
zonesMap: Map<string, Zone[]>;
|
|
37
|
+
floorDetails: number;
|
|
38
|
+
defaultZone: Zone;
|
|
39
|
+
defaultShowing: boolean;
|
|
40
|
+
constructor(route: ActivatedRoute, zoneService: ZoneService, spaceService: SpaceService, visitService: VisitService, navigationService: NavigationService, userService: BaseUserService, planService: PlanService, translate: TranslateService);
|
|
41
|
+
ngOnInit(): Promise<void>;
|
|
42
|
+
setUserPermissions(): void;
|
|
43
|
+
setupMenuItems(): void;
|
|
44
|
+
onGoBack(): void;
|
|
45
|
+
ngOnChanges(): void;
|
|
46
|
+
resetZones(): Promise<void>;
|
|
47
|
+
resetNavigations(): void;
|
|
48
|
+
onPlansLoaded(): Promise<void>;
|
|
49
|
+
/**
|
|
50
|
+
* onToggleDetail folds/unfolds details for a zone
|
|
51
|
+
* @param i index of the lot to be toggled
|
|
52
|
+
*/
|
|
53
|
+
onToggleDetail(index: number, zone: Zone): Promise<void>;
|
|
54
|
+
onToggleDetailFloor(index: number, floor: Zone): void;
|
|
55
|
+
onToggleDefaultZone(): void;
|
|
56
|
+
preparePlan(): Promise<void>;
|
|
57
|
+
toggleCarousel(): void;
|
|
58
|
+
onEdit(zone: Zone): void;
|
|
59
|
+
onAddLot(): void;
|
|
60
|
+
onAddMuseumZone(): void;
|
|
61
|
+
onDelete(zone: Zone, floorID: string): Promise<void>;
|
|
62
|
+
editCompleted(event: any): void;
|
|
63
|
+
showScanPointsOnPlan(navigations: Navigation[]): Promise<void>;
|
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ZonesComponent, never>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZonesComponent, "lib-zones", never, {}, { "updatedZone": "updatedZone"; }, never, never>;
|
|
66
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class LocationsRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocationsRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LocationsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LocationsRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/locations/locations.component";
|
|
3
|
+
import * as i2 from "./components/detail-location/detail-location.component";
|
|
4
|
+
import * as i3 from "./components/plans/calibration/calibration.component";
|
|
5
|
+
import * as i4 from "./components/plans/plans.component";
|
|
6
|
+
import * as i5 from "./components/visits/visits.component";
|
|
7
|
+
import * as i6 from "./components/zones/zones.component";
|
|
8
|
+
import * as i7 from "./components/images/images.component";
|
|
9
|
+
import * as i8 from "./components/plans/edit-plan/edit-plan.component";
|
|
10
|
+
import * as i9 from "./components/tab-navigation/tab-navigation.component";
|
|
11
|
+
import * as i10 from "./components/locations/map/map.component";
|
|
12
|
+
import * as i11 from "./components/locations/map/map-popup/map-popup.component";
|
|
13
|
+
import * as i12 from "./components/form-location/form-location.component";
|
|
14
|
+
import * as i13 from "./components/chevron/chevron.component";
|
|
15
|
+
import * as i14 from "./components/zones/add-zone/add-zone.component";
|
|
16
|
+
import * as i15 from "./components/zones/add-zone/selection/selection.component";
|
|
17
|
+
import * as i16 from "./components/carousel/carousel.component";
|
|
18
|
+
import * as i17 from "ng2-pdf-viewer";
|
|
19
|
+
import * as i18 from "ngx-clipboard";
|
|
20
|
+
import * as i19 from "@ng-bootstrap/ng-bootstrap";
|
|
21
|
+
import * as i20 from "@angular/common";
|
|
22
|
+
import * as i21 from "@ngx-translate/core";
|
|
23
|
+
import * as i22 from "@asymmetrik/ngx-leaflet";
|
|
24
|
+
import * as i23 from "@angular/forms";
|
|
25
|
+
import * as i24 from "ngx-smarterplan-core";
|
|
26
|
+
import * as i25 from "./ngx-smarterplan-location-routing.module";
|
|
27
|
+
export declare class NgxSmarterplanLocationsModule {
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxSmarterplanLocationsModule, never>;
|
|
29
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxSmarterplanLocationsModule, [typeof i1.LocationsComponent, typeof i2.DetailLocationComponent, typeof i3.CalibrationComponent, typeof i4.PlansComponent, typeof i5.VisitsComponent, typeof i6.ZonesComponent, typeof i7.ImagesComponent, typeof i8.EditPlanComponent, typeof i9.TabNavigationComponent, typeof i10.MapComponent, typeof i11.MapPopupComponent, typeof i12.FormLocationComponent, typeof i13.ChevronComponent, typeof i14.AddZoneComponent, typeof i15.SelectionComponent, typeof i16.CarouselComponent], [typeof i17.PdfViewerModule, typeof i18.ClipboardModule, typeof i19.NgbModule, typeof i20.CommonModule, typeof i21.TranslateModule, typeof i22.LeafletModule, typeof i23.FormsModule, typeof i23.ReactiveFormsModule, typeof i24.NgxSmarterplanCoreModule, typeof i25.LocationsRoutingModule], never>;
|
|
30
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NgxSmarterplanLocationsModule>;
|
|
31
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@smarterplan/ngx-smarterplan-locations",
|
|
3
|
+
"version": "0.0.21",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^13.2.0",
|
|
6
|
+
"@angular/core": "^13.2.0",
|
|
7
|
+
"@asymmetrik/ngx-leaflet": "^13.0.2",
|
|
8
|
+
"@ng-bootstrap/ng-bootstrap": "^12.0.2",
|
|
9
|
+
"@ngx-translate/core": "^14.0.0",
|
|
10
|
+
"leaflet": "^1.8.0",
|
|
11
|
+
"ngx-clipboard": "^15.1.0",
|
|
12
|
+
"ngx-smarterplan-core": "^0.3.8",
|
|
13
|
+
"panzoom": "^9.4.2",
|
|
14
|
+
"ng2-pdf-viewer": "^9.0.0"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"tslib": "^2.3.0"
|
|
18
|
+
},
|
|
19
|
+
"module": "fesm2015/smarterplan-ngx-smarterplan-locations.mjs",
|
|
20
|
+
"es2020": "fesm2020/smarterplan-ngx-smarterplan-locations.mjs",
|
|
21
|
+
"esm2020": "esm2020/smarterplan-ngx-smarterplan-locations.mjs",
|
|
22
|
+
"fesm2020": "fesm2020/smarterplan-ngx-smarterplan-locations.mjs",
|
|
23
|
+
"fesm2015": "fesm2015/smarterplan-ngx-smarterplan-locations.mjs",
|
|
24
|
+
"typings": "smarterplan-ngx-smarterplan-locations.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
"./package.json": {
|
|
27
|
+
"default": "./package.json"
|
|
28
|
+
},
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./smarterplan-ngx-smarterplan-locations.d.ts",
|
|
31
|
+
"esm2020": "./esm2020/smarterplan-ngx-smarterplan-locations.mjs",
|
|
32
|
+
"es2020": "./fesm2020/smarterplan-ngx-smarterplan-locations.mjs",
|
|
33
|
+
"es2015": "./fesm2015/smarterplan-ngx-smarterplan-locations.mjs",
|
|
34
|
+
"node": "./fesm2015/smarterplan-ngx-smarterplan-locations.mjs",
|
|
35
|
+
"default": "./fesm2020/smarterplan-ngx-smarterplan-locations.mjs"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"sideEffects": false
|
|
39
|
+
}
|
package/public-api.d.ts
ADDED