@smarterplan/ngx-smarterplan-core 1.2.45 → 1.2.47
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 -24
- package/esm2020/lib/components/csv-export/csv-export.component.mjs +59 -59
- package/esm2020/lib/components/loader/loader.component.mjs +23 -23
- package/esm2020/lib/components/menu-bar/avatar/avatar.component.mjs +80 -80
- package/esm2020/lib/components/menu-bar/menu-bar.component.mjs +99 -99
- package/esm2020/lib/components/menu-bar/navigation-bar/navigation-bar.component.mjs +384 -384
- package/esm2020/lib/components/menu-bar/range-date-picker/range-date-picker.component.mjs +147 -147
- package/esm2020/lib/components/modal-switch-visit/modal-switch-visit.component.mjs +40 -40
- package/esm2020/lib/components/search-bar/search-bar.component.mjs +63 -63
- package/esm2020/lib/components/support-modal/support-modal.component.mjs +66 -66
- package/esm2020/lib/config.mjs +4 -4
- package/esm2020/lib/helpers.service.mjs +470 -470
- package/esm2020/lib/matterport-extensions/hsl-loader/HlsLoader.mjs +69 -69
- package/esm2020/lib/matterport-extensions/nest-thermostat/CanvasImage.mjs +51 -51
- package/esm2020/lib/matterport-extensions/nest-thermostat/CanvasRenderer.mjs +61 -61
- package/esm2020/lib/matterport-extensions/nest-thermostat/NestThermostat.mjs +158 -158
- package/esm2020/lib/matterport-extensions/nest-thermostat/PlaneRenderer.mjs +85 -85
- package/esm2020/lib/matterport-extensions/scene-component/SceneComponent.mjs +128 -128
- package/esm2020/lib/matterport-extensions/security-camera/SecurityCamera.mjs +249 -249
- package/esm2020/lib/matterport-extensions/tv-player/TvPlayer.mjs +98 -98
- package/esm2020/lib/matterport-extensions/video-renderer/VideoRenderer.mjs +64 -64
- package/esm2020/lib/matterport-extensions/view-frustum-mesh/ViewFrustumMesh.mjs +221 -221
- package/esm2020/lib/mattertagData.mjs +165 -165
- package/esm2020/lib/ngx-smarterplan-core.module.mjs +122 -122
- package/esm2020/lib/ngx-smarterplan-core.service.mjs +14 -14
- package/esm2020/lib/pipes/duration-to-string.pipe.mjs +66 -66
- package/esm2020/lib/pipes/format-date-number-to-digits.pipe.mjs +30 -30
- package/esm2020/lib/pipes/hashtag-from-id.pipe.mjs +26 -26
- package/esm2020/lib/pipes/safe-url.pipe.mjs +20 -20
- package/esm2020/lib/pipes/time-date-to-local-string.pipe.mjs +104 -104
- package/esm2020/lib/pipes/username-from-id.pipe.mjs +29 -29
- package/esm2020/lib/services/amplify-cache.service.mjs +72 -72
- package/esm2020/lib/services/base-tab.service.mjs +24 -24
- package/esm2020/lib/services/baseVisibility.service.mjs +18 -18
- package/esm2020/lib/services/content.service.mjs +135 -135
- package/esm2020/lib/services/filter.service.mjs +599 -599
- package/esm2020/lib/services/intervention.service.mjs +236 -236
- package/esm2020/lib/services/locale.service.mjs +45 -45
- package/esm2020/lib/services/matterport-import.service.mjs +340 -340
- package/esm2020/lib/services/matterport.service.mjs +1587 -1587
- package/esm2020/lib/services/models/affectation.service.mjs +60 -60
- package/esm2020/lib/services/models/base-object.service.mjs +70 -70
- package/esm2020/lib/services/models/capture.service.mjs +34 -34
- package/esm2020/lib/services/models/comment.service.mjs +98 -98
- package/esm2020/lib/services/models/domain.service.mjs +78 -78
- package/esm2020/lib/services/models/equipment.service.mjs +683 -683
- package/esm2020/lib/services/models/event.service.mjs +128 -128
- package/esm2020/lib/services/models/feature.service.mjs +380 -380
- package/esm2020/lib/services/models/hashtag.service.mjs +38 -38
- package/esm2020/lib/services/models/layer.service.mjs +33 -33
- package/esm2020/lib/services/models/measurement.service.mjs +199 -199
- package/esm2020/lib/services/models/mission.service.mjs +206 -206
- package/esm2020/lib/services/models/navigation.service.mjs +92 -92
- package/esm2020/lib/services/models/node.service.mjs +31 -31
- package/esm2020/lib/services/models/object3D.service.mjs +364 -364
- package/esm2020/lib/services/models/operation.service.mjs +59 -59
- package/esm2020/lib/services/models/organisation.service.mjs +73 -73
- package/esm2020/lib/services/models/plan.service.mjs +799 -799
- package/esm2020/lib/services/models/poi.service.mjs +103 -103
- package/esm2020/lib/services/models/profile.service.mjs +58 -58
- package/esm2020/lib/services/models/property.service.mjs +44 -44
- package/esm2020/lib/services/models/space.service.mjs +204 -204
- package/esm2020/lib/services/models/template.service.mjs +41 -41
- package/esm2020/lib/services/models/ticket.service.mjs +526 -526
- package/esm2020/lib/services/models/visit.service.mjs +130 -130
- package/esm2020/lib/services/models/zone.service.mjs +225 -225
- package/esm2020/lib/services/navigator.service.mjs +212 -212
- package/esm2020/lib/services/s3.service.mjs +137 -137
- package/esm2020/lib/services/search.service.mjs +124 -124
- package/esm2020/lib/services/support.service.mjs +42 -42
- package/esm2020/lib/services/tag.service.mjs +111 -111
- package/esm2020/lib/services/user.service.mjs +501 -501
- package/esm2020/lib/services/validators.service.mjs +50 -50
- package/esm2020/lib/services/viewer.service.mjs +389 -389
- package/esm2020/lib/services/zone-drawer.service.mjs +76 -76
- package/esm2020/lib/services/zoneChange.service.mjs +30 -30
- package/esm2020/lib/types.service.mjs +311 -311
- package/esm2020/lib/validators/email.directive.mjs +7 -7
- package/esm2020/lib/validators/no-empty.directive.mjs +12 -12
- package/esm2020/lib/validators/number.directive.mjs +12 -12
- package/esm2020/lib/validators/text.directive.mjs +12 -12
- package/esm2020/public-api.mjs +72 -72
- package/esm2020/smarterplan-ngx-smarterplan-core.mjs +4 -4
- package/fesm2015/smarterplan-ngx-smarterplan-core.mjs +13014 -13014
- package/fesm2015/smarterplan-ngx-smarterplan-core.mjs.map +1 -1
- package/fesm2020/smarterplan-ngx-smarterplan-core.mjs +12263 -12263
- package/fesm2020/smarterplan-ngx-smarterplan-core.mjs.map +1 -1
- package/lib/components/csv-export/csv-export.component.d.ts +18 -18
- package/lib/components/loader/loader.component.d.ts +10 -10
- package/lib/components/menu-bar/avatar/avatar.component.d.ts +21 -21
- package/lib/components/menu-bar/menu-bar.component.d.ts +38 -38
- package/lib/components/menu-bar/navigation-bar/navigation-bar.component.d.ts +73 -73
- package/lib/components/menu-bar/range-date-picker/range-date-picker.component.d.ts +35 -35
- package/lib/components/modal-switch-visit/modal-switch-visit.component.d.ts +22 -22
- package/lib/components/search-bar/search-bar.component.d.ts +16 -16
- package/lib/components/support-modal/support-modal.component.d.ts +26 -26
- package/lib/config.d.ts +22 -22
- package/lib/helpers.service.d.ts +79 -79
- package/lib/matterport-extensions/hsl-loader/HlsLoader.d.ts +26 -26
- package/lib/matterport-extensions/nest-thermostat/CanvasImage.d.ts +31 -31
- package/lib/matterport-extensions/nest-thermostat/CanvasRenderer.d.ts +37 -37
- package/lib/matterport-extensions/nest-thermostat/NestThermostat.d.ts +42 -42
- package/lib/matterport-extensions/nest-thermostat/PlaneRenderer.d.ts +46 -46
- package/lib/matterport-extensions/scene-component/SceneComponent.d.ts +388 -388
- package/lib/matterport-extensions/security-camera/SecurityCamera.d.ts +47 -47
- package/lib/matterport-extensions/tv-player/TvPlayer.d.ts +26 -26
- package/lib/matterport-extensions/video-renderer/VideoRenderer.d.ts +26 -26
- package/lib/matterport-extensions/view-frustum-mesh/ViewFrustumMesh.d.ts +43 -43
- package/lib/mattertagData.d.ts +70 -70
- package/lib/ngx-smarterplan-core.module.d.ts +29 -29
- package/lib/ngx-smarterplan-core.service.d.ts +6 -6
- package/lib/pipes/duration-to-string.pipe.d.ts +12 -12
- package/lib/pipes/format-date-number-to-digits.pipe.d.ts +10 -10
- package/lib/pipes/hashtag-from-id.pipe.d.ts +10 -10
- package/lib/pipes/safe-url.pipe.d.ts +10 -10
- package/lib/pipes/time-date-to-local-string.pipe.d.ts +16 -16
- package/lib/pipes/username-from-id.pipe.d.ts +11 -11
- package/lib/services/amplify-cache.service.d.ts +37 -37
- package/lib/services/base-tab.service.d.ts +10 -10
- package/lib/services/baseVisibility.service.d.ts +9 -9
- package/lib/services/content.service.d.ts +28 -28
- package/lib/services/filter.service.d.ts +60 -60
- package/lib/services/intervention.service.d.ts +25 -25
- package/lib/services/locale.service.d.ts +23 -23
- package/lib/services/matterport-import.service.d.ts +53 -53
- package/lib/services/matterport.service.d.ts +336 -336
- package/lib/services/models/affectation.service.d.ts +14 -14
- package/lib/services/models/base-object.service.d.ts +20 -20
- package/lib/services/models/capture.service.d.ts +13 -13
- package/lib/services/models/comment.service.d.ts +26 -26
- package/lib/services/models/domain.service.d.ts +19 -19
- package/lib/services/models/equipment.service.d.ts +93 -93
- package/lib/services/models/event.service.d.ts +43 -43
- package/lib/services/models/feature.service.d.ts +75 -75
- package/lib/services/models/hashtag.service.d.ts +13 -13
- package/lib/services/models/layer.service.d.ts +11 -11
- package/lib/services/models/measurement.service.d.ts +51 -51
- package/lib/services/models/mission.service.d.ts +39 -39
- package/lib/services/models/navigation.service.d.ts +29 -29
- package/lib/services/models/node.service.d.ts +12 -12
- package/lib/services/models/object3D.service.d.ts +57 -57
- package/lib/services/models/operation.service.d.ts +15 -15
- package/lib/services/models/organisation.service.d.ts +19 -19
- package/lib/services/models/plan.service.d.ts +133 -133
- package/lib/services/models/poi.service.d.ts +25 -25
- package/lib/services/models/profile.service.d.ts +16 -16
- package/lib/services/models/property.service.d.ts +13 -13
- package/lib/services/models/space.service.d.ts +46 -46
- package/lib/services/models/template.service.d.ts +15 -15
- package/lib/services/models/ticket.service.d.ts +93 -93
- package/lib/services/models/visit.service.d.ts +24 -24
- package/lib/services/models/zone.service.d.ts +50 -50
- package/lib/services/navigator.service.d.ts +61 -61
- package/lib/services/s3.service.d.ts +14 -14
- package/lib/services/search.service.d.ts +20 -20
- package/lib/services/support.service.d.ts +17 -17
- package/lib/services/tag.service.d.ts +29 -29
- package/lib/services/user.service.d.ts +118 -118
- package/lib/services/validators.service.d.ts +18 -18
- package/lib/services/viewer.service.d.ts +110 -110
- package/lib/services/zone-drawer.service.d.ts +7 -7
- package/lib/services/zoneChange.service.d.ts +17 -17
- package/lib/types.service.d.ts +842 -842
- package/lib/validators/email.directive.d.ts +2 -2
- package/lib/validators/no-empty.directive.d.ts +2 -2
- package/lib/validators/number.directive.d.ts +2 -2
- package/lib/validators/text.directive.d.ts +2 -2
- package/package.json +2 -2
- package/public-api.d.ts +64 -64
- package/smarterplan-ngx-smarterplan-core.d.ts +5 -5
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CsvExportComponent {
|
|
3
|
-
/** Header of the CSV, titles for each columns */
|
|
4
|
-
headers: string[];
|
|
5
|
-
/** Array of each rows (array of array of string), if it's not set, then the function getRows() will be used */
|
|
6
|
-
rowsInput: string[][];
|
|
7
|
-
/** Function used to get rows if rowsInput is not set, call each time the user click on the button to generate the CSV file */
|
|
8
|
-
getRows: any;
|
|
9
|
-
/** Title of the file to download */
|
|
10
|
-
title: string;
|
|
11
|
-
/** Label for the button to click */
|
|
12
|
-
buttonLabel: string;
|
|
13
|
-
/** Delimiter for the CSV */
|
|
14
|
-
delimeter: string;
|
|
15
|
-
onClickDownload(): Promise<void>;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CsvExportComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CsvExportComponent, "lib-csv-export", never, { "headers": "headers"; "rowsInput": "rowsInput"; "getRows": "getRows"; "title": "title"; "buttonLabel": "buttonLabel"; }, {}, never, never>;
|
|
18
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CsvExportComponent {
|
|
3
|
+
/** Header of the CSV, titles for each columns */
|
|
4
|
+
headers: string[];
|
|
5
|
+
/** Array of each rows (array of array of string), if it's not set, then the function getRows() will be used */
|
|
6
|
+
rowsInput: string[][];
|
|
7
|
+
/** Function used to get rows if rowsInput is not set, call each time the user click on the button to generate the CSV file */
|
|
8
|
+
getRows: any;
|
|
9
|
+
/** Title of the file to download */
|
|
10
|
+
title: string;
|
|
11
|
+
/** Label for the button to click */
|
|
12
|
+
buttonLabel: string;
|
|
13
|
+
/** Delimiter for the CSV */
|
|
14
|
+
delimeter: string;
|
|
15
|
+
onClickDownload(): Promise<void>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CsvExportComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CsvExportComponent, "lib-csv-export", never, { "headers": "headers"; "rowsInput": "rowsInput"; "getRows": "getRows"; "title": "title"; "buttonLabel": "buttonLabel"; }, {}, never, never>;
|
|
18
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class LoaderComponent implements OnInit {
|
|
4
|
-
useLogo: boolean;
|
|
5
|
-
color: string;
|
|
6
|
-
constructor();
|
|
7
|
-
ngOnInit(): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "lib-loader", never, { "useLogo": "useLogo"; "color": "color"; }, {}, never, never>;
|
|
10
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LoaderComponent implements OnInit {
|
|
4
|
+
useLogo: boolean;
|
|
5
|
+
color: string;
|
|
6
|
+
constructor();
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "lib-loader", never, { "useLogo": "useLogo"; "color": "color"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ProfileService } from '../../../services/models/profile.service';
|
|
3
|
-
import { BaseUserService } from '../../../services/user.service';
|
|
4
|
-
import { ProfileEntity } from '../../../types.service';
|
|
5
|
-
import { Subscription } from 'rxjs';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class AvatarComponent implements OnInit {
|
|
8
|
-
private userService;
|
|
9
|
-
private profileService;
|
|
10
|
-
size: number;
|
|
11
|
-
userID: string;
|
|
12
|
-
currentUser: ProfileEntity;
|
|
13
|
-
avatar: any;
|
|
14
|
-
userSub: Subscription;
|
|
15
|
-
constructor(userService: BaseUserService, profileService: ProfileService);
|
|
16
|
-
ngOnInit(): Promise<void>;
|
|
17
|
-
ngOnDestroy(): void;
|
|
18
|
-
setAvatar(user: ProfileEntity): Promise<void>;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "lib-avatar", never, { "size": "size"; "userID": "userID"; }, {}, never, never>;
|
|
21
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ProfileService } from '../../../services/models/profile.service';
|
|
3
|
+
import { BaseUserService } from '../../../services/user.service';
|
|
4
|
+
import { ProfileEntity } from '../../../types.service';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class AvatarComponent implements OnInit {
|
|
8
|
+
private userService;
|
|
9
|
+
private profileService;
|
|
10
|
+
size: number;
|
|
11
|
+
userID: string;
|
|
12
|
+
currentUser: ProfileEntity;
|
|
13
|
+
avatar: any;
|
|
14
|
+
userSub: Subscription;
|
|
15
|
+
constructor(userService: BaseUserService, profileService: ProfileService);
|
|
16
|
+
ngOnInit(): Promise<void>;
|
|
17
|
+
ngOnDestroy(): void;
|
|
18
|
+
setAvatar(user: ProfileEntity): Promise<void>;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "lib-avatar", never, { "size": "size"; "userID": "userID"; }, {}, never, never>;
|
|
21
|
+
}
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
3
|
-
import { Subscription } from 'rxjs';
|
|
4
|
-
import { LocaleService } from '../../services/locale.service';
|
|
5
|
-
import { NavigatorService } from '../../services/navigator.service';
|
|
6
|
-
import { SupportService } from '../../services/support.service';
|
|
7
|
-
import { BaseUserService } from '../../services/user.service';
|
|
8
|
-
import { ProfileEntity, Mission } from '../../types.service';
|
|
9
|
-
import { BaseVisibilityService } from '../../services/baseVisibility.service';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class MenuBarComponent implements OnInit {
|
|
12
|
-
private router;
|
|
13
|
-
localeService: LocaleService;
|
|
14
|
-
private userService;
|
|
15
|
-
private navigatorService;
|
|
16
|
-
private supportService;
|
|
17
|
-
private baseVisibilityService;
|
|
18
|
-
user: ProfileEntity;
|
|
19
|
-
mission: Mission;
|
|
20
|
-
isVisitor: boolean;
|
|
21
|
-
isVisible: boolean;
|
|
22
|
-
isChangePositionVisible: boolean;
|
|
23
|
-
isManager: boolean;
|
|
24
|
-
userSubscription: Subscription;
|
|
25
|
-
navSubscription: Subscription;
|
|
26
|
-
constructor(router: Router, localeService: LocaleService, userService: BaseUserService, navigatorService: NavigatorService, supportService: SupportService, baseVisibilityService: BaseVisibilityService);
|
|
27
|
-
ngOnInit(): void;
|
|
28
|
-
ngAfterViewInit(): void;
|
|
29
|
-
ngOnDestroy(): void;
|
|
30
|
-
signOut(): Promise<void>;
|
|
31
|
-
update(): Promise<void>;
|
|
32
|
-
onSubmit(): void;
|
|
33
|
-
onToggleVisible(): void;
|
|
34
|
-
openSupportForm(): void;
|
|
35
|
-
onChangePositionClick(): void;
|
|
36
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MenuBarComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuBarComponent, "lib-menu-bar", never, {}, {}, never, never>;
|
|
38
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import { LocaleService } from '../../services/locale.service';
|
|
5
|
+
import { NavigatorService } from '../../services/navigator.service';
|
|
6
|
+
import { SupportService } from '../../services/support.service';
|
|
7
|
+
import { BaseUserService } from '../../services/user.service';
|
|
8
|
+
import { ProfileEntity, Mission } from '../../types.service';
|
|
9
|
+
import { BaseVisibilityService } from '../../services/baseVisibility.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class MenuBarComponent implements OnInit {
|
|
12
|
+
private router;
|
|
13
|
+
localeService: LocaleService;
|
|
14
|
+
private userService;
|
|
15
|
+
private navigatorService;
|
|
16
|
+
private supportService;
|
|
17
|
+
private baseVisibilityService;
|
|
18
|
+
user: ProfileEntity;
|
|
19
|
+
mission: Mission;
|
|
20
|
+
isVisitor: boolean;
|
|
21
|
+
isVisible: boolean;
|
|
22
|
+
isChangePositionVisible: boolean;
|
|
23
|
+
isManager: boolean;
|
|
24
|
+
userSubscription: Subscription;
|
|
25
|
+
navSubscription: Subscription;
|
|
26
|
+
constructor(router: Router, localeService: LocaleService, userService: BaseUserService, navigatorService: NavigatorService, supportService: SupportService, baseVisibilityService: BaseVisibilityService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
ngAfterViewInit(): void;
|
|
29
|
+
ngOnDestroy(): void;
|
|
30
|
+
signOut(): Promise<void>;
|
|
31
|
+
update(): Promise<void>;
|
|
32
|
+
onSubmit(): void;
|
|
33
|
+
onToggleVisible(): void;
|
|
34
|
+
openSupportForm(): void;
|
|
35
|
+
onChangePositionClick(): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuBarComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuBarComponent, "lib-menu-bar", never, {}, {}, never, never>;
|
|
38
|
+
}
|
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { NavigationEnd, Router } from '@angular/router';
|
|
3
|
-
import { Observable, Subject } from 'rxjs';
|
|
4
|
-
import { SpaceService } from '../../../services/models/space.service';
|
|
5
|
-
import { VisitService } from '../../../services/models/visit.service';
|
|
6
|
-
import { ZoneService } from '../../../services/models/zone.service';
|
|
7
|
-
import { NavigatorService } from '../../../services/navigator.service';
|
|
8
|
-
import { ViewerService } from '../../../services/viewer.service';
|
|
9
|
-
import { Space, Visit, Zone } from '../../../types.service';
|
|
10
|
-
import { BaseUserService } from '../../../services/user.service';
|
|
11
|
-
import { ZoneChangeService } from "../../../services/zoneChange.service";
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
export declare class NavigationBarComponent implements OnInit {
|
|
14
|
-
private router;
|
|
15
|
-
private spaceService;
|
|
16
|
-
private userService;
|
|
17
|
-
private zoneService;
|
|
18
|
-
private visitService;
|
|
19
|
-
private viewerService;
|
|
20
|
-
private navigatorService;
|
|
21
|
-
private zoneChangeService;
|
|
22
|
-
awsKinesisAnalytics: any;
|
|
23
|
-
navbarSelectMenu: any;
|
|
24
|
-
locations: Space[];
|
|
25
|
-
currentLocationID: string;
|
|
26
|
-
currentModel3d: string;
|
|
27
|
-
selectedLocation: Space;
|
|
28
|
-
selectedModel3d: string;
|
|
29
|
-
selectedFloor: Zone;
|
|
30
|
-
selectedZone: Zone;
|
|
31
|
-
selectedChildZone: Zone;
|
|
32
|
-
visitsPerSpace: Visit[];
|
|
33
|
-
floorsPerSpace: Zone[];
|
|
34
|
-
zonesPerSpace: Zone[];
|
|
35
|
-
zonesPerFloor: Zone[];
|
|
36
|
-
childrenZones: Zone[];
|
|
37
|
-
sweepToGo: string;
|
|
38
|
-
floorToGo: Zone;
|
|
39
|
-
destroy$: Subject<unknown>;
|
|
40
|
-
navEvents: Observable<NavigationEnd>;
|
|
41
|
-
constructor(awsKinesisAnalyticsInjected: any, router: Router, spaceService: SpaceService, userService: BaseUserService, zoneService: ZoneService, visitService: VisitService, viewerService: ViewerService, navigatorService: NavigatorService, zoneChangeService: ZoneChangeService);
|
|
42
|
-
ngOnInit(): Promise<void>;
|
|
43
|
-
ngOnDestroy(): void;
|
|
44
|
-
handleStartUrl(): void;
|
|
45
|
-
initLocations(): Promise<void>;
|
|
46
|
-
/**
|
|
47
|
-
* Find a location with a given ID
|
|
48
|
-
* @param id ID for the location
|
|
49
|
-
* @returns The location or null if no location were found
|
|
50
|
-
*/
|
|
51
|
-
findLocationByID(id: string): Space;
|
|
52
|
-
clearData(clearVisits?: boolean): void;
|
|
53
|
-
/**
|
|
54
|
-
* When the selectedLocation changes
|
|
55
|
-
* Send a event to locationIDChange from NavigatorService
|
|
56
|
-
* The event will be catch by this component and the filter bar will be update
|
|
57
|
-
*/
|
|
58
|
-
sendUpdateLocationEvent(): void;
|
|
59
|
-
onSelectedLocationChanged(): Promise<void>;
|
|
60
|
-
onLocationClick(): void;
|
|
61
|
-
onFloorClick(emitEvent?: boolean): Promise<void>;
|
|
62
|
-
onZoneClick(): Promise<void>;
|
|
63
|
-
onChildZoneClick(): void;
|
|
64
|
-
sendKinesisAnalyticsEventForZone(zoneId: string, zoneName: string): Promise<void>;
|
|
65
|
-
onVisitClick(event: any): Promise<void>;
|
|
66
|
-
goTo(): Promise<void>;
|
|
67
|
-
isWithinSameVisit(): boolean;
|
|
68
|
-
goToSweepOrFloor(): void;
|
|
69
|
-
canGo(): boolean;
|
|
70
|
-
showLocation(): string;
|
|
71
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationBarComponent, never>;
|
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationBarComponent, "lib-navigation-bar", never, {}, {}, never, never>;
|
|
73
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NavigationEnd, Router } from '@angular/router';
|
|
3
|
+
import { Observable, Subject } from 'rxjs';
|
|
4
|
+
import { SpaceService } from '../../../services/models/space.service';
|
|
5
|
+
import { VisitService } from '../../../services/models/visit.service';
|
|
6
|
+
import { ZoneService } from '../../../services/models/zone.service';
|
|
7
|
+
import { NavigatorService } from '../../../services/navigator.service';
|
|
8
|
+
import { ViewerService } from '../../../services/viewer.service';
|
|
9
|
+
import { Space, Visit, Zone } from '../../../types.service';
|
|
10
|
+
import { BaseUserService } from '../../../services/user.service';
|
|
11
|
+
import { ZoneChangeService } from "../../../services/zoneChange.service";
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
export declare class NavigationBarComponent implements OnInit {
|
|
14
|
+
private router;
|
|
15
|
+
private spaceService;
|
|
16
|
+
private userService;
|
|
17
|
+
private zoneService;
|
|
18
|
+
private visitService;
|
|
19
|
+
private viewerService;
|
|
20
|
+
private navigatorService;
|
|
21
|
+
private zoneChangeService;
|
|
22
|
+
awsKinesisAnalytics: any;
|
|
23
|
+
navbarSelectMenu: any;
|
|
24
|
+
locations: Space[];
|
|
25
|
+
currentLocationID: string;
|
|
26
|
+
currentModel3d: string;
|
|
27
|
+
selectedLocation: Space;
|
|
28
|
+
selectedModel3d: string;
|
|
29
|
+
selectedFloor: Zone;
|
|
30
|
+
selectedZone: Zone;
|
|
31
|
+
selectedChildZone: Zone;
|
|
32
|
+
visitsPerSpace: Visit[];
|
|
33
|
+
floorsPerSpace: Zone[];
|
|
34
|
+
zonesPerSpace: Zone[];
|
|
35
|
+
zonesPerFloor: Zone[];
|
|
36
|
+
childrenZones: Zone[];
|
|
37
|
+
sweepToGo: string;
|
|
38
|
+
floorToGo: Zone;
|
|
39
|
+
destroy$: Subject<unknown>;
|
|
40
|
+
navEvents: Observable<NavigationEnd>;
|
|
41
|
+
constructor(awsKinesisAnalyticsInjected: any, router: Router, spaceService: SpaceService, userService: BaseUserService, zoneService: ZoneService, visitService: VisitService, viewerService: ViewerService, navigatorService: NavigatorService, zoneChangeService: ZoneChangeService);
|
|
42
|
+
ngOnInit(): Promise<void>;
|
|
43
|
+
ngOnDestroy(): void;
|
|
44
|
+
handleStartUrl(): void;
|
|
45
|
+
initLocations(): Promise<void>;
|
|
46
|
+
/**
|
|
47
|
+
* Find a location with a given ID
|
|
48
|
+
* @param id ID for the location
|
|
49
|
+
* @returns The location or null if no location were found
|
|
50
|
+
*/
|
|
51
|
+
findLocationByID(id: string): Space;
|
|
52
|
+
clearData(clearVisits?: boolean): void;
|
|
53
|
+
/**
|
|
54
|
+
* When the selectedLocation changes
|
|
55
|
+
* Send a event to locationIDChange from NavigatorService
|
|
56
|
+
* The event will be catch by this component and the filter bar will be update
|
|
57
|
+
*/
|
|
58
|
+
sendUpdateLocationEvent(): void;
|
|
59
|
+
onSelectedLocationChanged(): Promise<void>;
|
|
60
|
+
onLocationClick(): void;
|
|
61
|
+
onFloorClick(emitEvent?: boolean): Promise<void>;
|
|
62
|
+
onZoneClick(): Promise<void>;
|
|
63
|
+
onChildZoneClick(): void;
|
|
64
|
+
sendKinesisAnalyticsEventForZone(zoneId: string, zoneName: string): Promise<void>;
|
|
65
|
+
onVisitClick(event: any): Promise<void>;
|
|
66
|
+
goTo(): Promise<void>;
|
|
67
|
+
isWithinSameVisit(): boolean;
|
|
68
|
+
goToSweepOrFloor(): void;
|
|
69
|
+
canGo(): boolean;
|
|
70
|
+
showLocation(): string;
|
|
71
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationBarComponent, never>;
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationBarComponent, "lib-navigation-bar", never, {}, {}, never, never>;
|
|
73
|
+
}
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { NgbDate, NgbCalendar, NgbDateParserFormatter } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { AmplifyCacheService } from '../../../services/amplify-cache.service';
|
|
4
|
-
import { FilterService } from '../../../services/filter.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class RangeDatePickerComponent implements OnInit {
|
|
7
|
-
private calendar;
|
|
8
|
-
formatter: NgbDateParserFormatter;
|
|
9
|
-
private filterService;
|
|
10
|
-
private cacheService;
|
|
11
|
-
hoveredDate: NgbDate | null;
|
|
12
|
-
fromDate: NgbDate | null;
|
|
13
|
-
toDate: NgbDate | null;
|
|
14
|
-
cacheName: string | null;
|
|
15
|
-
cache: {
|
|
16
|
-
from: number;
|
|
17
|
-
to: number;
|
|
18
|
-
} | null;
|
|
19
|
-
isDateFilterApplied: boolean;
|
|
20
|
-
dateChanged: boolean;
|
|
21
|
-
constructor(calendar: NgbCalendar, formatter: NgbDateParserFormatter, filterService: FilterService, cacheService: AmplifyCacheService);
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
getNgbDate(date: number): NgbDate;
|
|
24
|
-
onDateSelection(date: NgbDate): void;
|
|
25
|
-
isDateChanged(): void;
|
|
26
|
-
isHovered(date: NgbDate): boolean;
|
|
27
|
-
isInside(date: NgbDate): boolean;
|
|
28
|
-
isRange(date: NgbDate): boolean;
|
|
29
|
-
validateInput(currentValue: NgbDate | null, input: string): NgbDate | null;
|
|
30
|
-
emitRange(): void;
|
|
31
|
-
onClearDates(): void;
|
|
32
|
-
onApply(): void;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RangeDatePickerComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RangeDatePickerComponent, "lib-range-date-picker", never, { "cacheName": "cacheName"; }, {}, never, never>;
|
|
35
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NgbDate, NgbCalendar, NgbDateParserFormatter } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import { AmplifyCacheService } from '../../../services/amplify-cache.service';
|
|
4
|
+
import { FilterService } from '../../../services/filter.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class RangeDatePickerComponent implements OnInit {
|
|
7
|
+
private calendar;
|
|
8
|
+
formatter: NgbDateParserFormatter;
|
|
9
|
+
private filterService;
|
|
10
|
+
private cacheService;
|
|
11
|
+
hoveredDate: NgbDate | null;
|
|
12
|
+
fromDate: NgbDate | null;
|
|
13
|
+
toDate: NgbDate | null;
|
|
14
|
+
cacheName: string | null;
|
|
15
|
+
cache: {
|
|
16
|
+
from: number;
|
|
17
|
+
to: number;
|
|
18
|
+
} | null;
|
|
19
|
+
isDateFilterApplied: boolean;
|
|
20
|
+
dateChanged: boolean;
|
|
21
|
+
constructor(calendar: NgbCalendar, formatter: NgbDateParserFormatter, filterService: FilterService, cacheService: AmplifyCacheService);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
getNgbDate(date: number): NgbDate;
|
|
24
|
+
onDateSelection(date: NgbDate): void;
|
|
25
|
+
isDateChanged(): void;
|
|
26
|
+
isHovered(date: NgbDate): boolean;
|
|
27
|
+
isInside(date: NgbDate): boolean;
|
|
28
|
+
isRange(date: NgbDate): boolean;
|
|
29
|
+
validateInput(currentValue: NgbDate | null, input: string): NgbDate | null;
|
|
30
|
+
emitRange(): void;
|
|
31
|
+
onClearDates(): void;
|
|
32
|
+
onApply(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangeDatePickerComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RangeDatePickerComponent, "lib-range-date-picker", never, { "cacheName": "cacheName"; }, {}, never, never>;
|
|
35
|
+
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
3
|
-
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
-
import { ViewerService } from '../../services/viewer.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class ModalSwitchVisitComponent implements OnInit {
|
|
7
|
-
activeModal: NgbActiveModal;
|
|
8
|
-
private router;
|
|
9
|
-
private viewerService;
|
|
10
|
-
content: string;
|
|
11
|
-
model3D: string;
|
|
12
|
-
spaceID: string;
|
|
13
|
-
dataToMove: {
|
|
14
|
-
sweepToMove: string;
|
|
15
|
-
rotation: any;
|
|
16
|
-
};
|
|
17
|
-
constructor(activeModal: NgbActiveModal, router: Router, viewerService: ViewerService);
|
|
18
|
-
ngOnInit(): void;
|
|
19
|
-
switchVisit(): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ModalSwitchVisitComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModalSwitchVisitComponent, "lib-modal-switch-visit", never, { "content": "content"; "model3D": "model3D"; "spaceID": "spaceID"; "dataToMove": "dataToMove"; }, {}, never, never>;
|
|
22
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
+
import { ViewerService } from '../../services/viewer.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ModalSwitchVisitComponent implements OnInit {
|
|
7
|
+
activeModal: NgbActiveModal;
|
|
8
|
+
private router;
|
|
9
|
+
private viewerService;
|
|
10
|
+
content: string;
|
|
11
|
+
model3D: string;
|
|
12
|
+
spaceID: string;
|
|
13
|
+
dataToMove: {
|
|
14
|
+
sweepToMove: string;
|
|
15
|
+
rotation: any;
|
|
16
|
+
};
|
|
17
|
+
constructor(activeModal: NgbActiveModal, router: Router, viewerService: ViewerService);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
switchVisit(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalSwitchVisitComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalSwitchVisitComponent, "lib-modal-switch-visit", never, { "content": "content"; "model3D": "model3D"; "spaceID": "spaceID"; "dataToMove": "dataToMove"; }, {}, never, never>;
|
|
22
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { SearchObjectType, SearchService } from '../../services/search.service';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SearchBarComponent implements OnInit {
|
|
5
|
-
private searchService;
|
|
6
|
-
searchable: any;
|
|
7
|
-
objectType: SearchObjectType;
|
|
8
|
-
searchEvent: EventEmitter<any>;
|
|
9
|
-
model: any;
|
|
10
|
-
constructor(searchService: SearchService);
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
onSubmit(): void;
|
|
13
|
-
filter(term: string): Promise<void>;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "lib-search-bar", never, { "searchable": "searchable"; "objectType": "objectType"; }, { "searchEvent": "searchEvent"; }, never, never>;
|
|
16
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { SearchObjectType, SearchService } from '../../services/search.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SearchBarComponent implements OnInit {
|
|
5
|
+
private searchService;
|
|
6
|
+
searchable: any;
|
|
7
|
+
objectType: SearchObjectType;
|
|
8
|
+
searchEvent: EventEmitter<any>;
|
|
9
|
+
model: any;
|
|
10
|
+
constructor(searchService: SearchService);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
onSubmit(): void;
|
|
13
|
+
filter(term: string): Promise<void>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "lib-search-bar", never, { "searchable": "searchable"; "objectType": "objectType"; }, { "searchEvent": "searchEvent"; }, never, never>;
|
|
16
|
+
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { FormBuilder, FormGroup } from "@angular/forms";
|
|
4
|
-
import { BaseUserService } from '../../services/user.service';
|
|
5
|
-
import { SupportService } from '../../services/support.service';
|
|
6
|
-
import { ValidatorsService } from '../../services/validators.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class SupportModalComponent implements OnInit {
|
|
9
|
-
private supportService;
|
|
10
|
-
activeModal: NgbActiveModal;
|
|
11
|
-
private formBuilder;
|
|
12
|
-
private userService;
|
|
13
|
-
validatorsService: ValidatorsService;
|
|
14
|
-
status: string;
|
|
15
|
-
supportForm: FormGroup;
|
|
16
|
-
currentUser: any;
|
|
17
|
-
loading: boolean;
|
|
18
|
-
constructor(supportService: SupportService, activeModal: NgbActiveModal, formBuilder: FormBuilder, userService: BaseUserService, validatorsService: ValidatorsService);
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
onClose(): void;
|
|
21
|
-
getCurrentUser(): Promise<any>;
|
|
22
|
-
iniForm(): Promise<void>;
|
|
23
|
-
onSubmit(): Promise<void>;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SupportModalComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SupportModalComponent, "app-support-modal", never, {}, {}, never, never>;
|
|
26
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import { FormBuilder, FormGroup } from "@angular/forms";
|
|
4
|
+
import { BaseUserService } from '../../services/user.service';
|
|
5
|
+
import { SupportService } from '../../services/support.service';
|
|
6
|
+
import { ValidatorsService } from '../../services/validators.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class SupportModalComponent implements OnInit {
|
|
9
|
+
private supportService;
|
|
10
|
+
activeModal: NgbActiveModal;
|
|
11
|
+
private formBuilder;
|
|
12
|
+
private userService;
|
|
13
|
+
validatorsService: ValidatorsService;
|
|
14
|
+
status: string;
|
|
15
|
+
supportForm: FormGroup;
|
|
16
|
+
currentUser: any;
|
|
17
|
+
loading: boolean;
|
|
18
|
+
constructor(supportService: SupportService, activeModal: NgbActiveModal, formBuilder: FormBuilder, userService: BaseUserService, validatorsService: ValidatorsService);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
onClose(): void;
|
|
21
|
+
getCurrentUser(): Promise<any>;
|
|
22
|
+
iniForm(): Promise<void>;
|
|
23
|
+
onSubmit(): Promise<void>;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupportModalComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SupportModalComponent, "app-support-modal", never, {}, {}, never, never>;
|
|
26
|
+
}
|
package/lib/config.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
export declare class Config {
|
|
2
|
-
my_config: {
|
|
3
|
-
icon_ticket?: string;
|
|
4
|
-
icon_equipment?: string;
|
|
5
|
-
icon_measure?: string;
|
|
6
|
-
icon_data?: string;
|
|
7
|
-
icon_object3d?: string;
|
|
8
|
-
icon_position: string;
|
|
9
|
-
MAX_CHARACTER_DESCRIPTION_TAG: number;
|
|
10
|
-
DEFAULT_HEIGHT_HTML_TAG: number;
|
|
11
|
-
DEFAULT_OPACITY_TAG: number;
|
|
12
|
-
COLD_LIMIT?: number;
|
|
13
|
-
HOT_LIMIT?: number;
|
|
14
|
-
DEFAULT_WIDTH_HTML_TAG: number;
|
|
15
|
-
MAX_IMAGE_HEIGHT_HTML_TAG: number;
|
|
16
|
-
icon_room_available?: string;
|
|
17
|
-
icon_room_unavailable?: string;
|
|
18
|
-
icon_room_chosen?: string;
|
|
19
|
-
icon_room_viewed?: string;
|
|
20
|
-
};
|
|
21
|
-
constructor();
|
|
22
|
-
}
|
|
1
|
+
export declare class Config {
|
|
2
|
+
my_config: {
|
|
3
|
+
icon_ticket?: string;
|
|
4
|
+
icon_equipment?: string;
|
|
5
|
+
icon_measure?: string;
|
|
6
|
+
icon_data?: string;
|
|
7
|
+
icon_object3d?: string;
|
|
8
|
+
icon_position: string;
|
|
9
|
+
MAX_CHARACTER_DESCRIPTION_TAG: number;
|
|
10
|
+
DEFAULT_HEIGHT_HTML_TAG: number;
|
|
11
|
+
DEFAULT_OPACITY_TAG: number;
|
|
12
|
+
COLD_LIMIT?: number;
|
|
13
|
+
HOT_LIMIT?: number;
|
|
14
|
+
DEFAULT_WIDTH_HTML_TAG: number;
|
|
15
|
+
MAX_IMAGE_HEIGHT_HTML_TAG: number;
|
|
16
|
+
icon_room_available?: string;
|
|
17
|
+
icon_room_unavailable?: string;
|
|
18
|
+
icon_room_chosen?: string;
|
|
19
|
+
icon_room_viewed?: string;
|
|
20
|
+
};
|
|
21
|
+
constructor();
|
|
22
|
+
}
|