phoenix-ui-components 2.2.0 → 2.5.1
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 +1 -1
- package/_theming.scss +14 -7
- package/dist/README.md +1 -1
- package/dist/components/embed-menu/embed-menu.component.d.ts +3 -0
- package/dist/components/embed-menu/experiment-link/experiment-link.component.d.ts +3 -0
- package/dist/components/loader/loader.component.d.ts +3 -0
- package/dist/components/nav/nav.component.d.ts +3 -0
- package/dist/components/phoenix-menu/config/config-slider/config-slider.component.d.ts +3 -0
- package/dist/components/phoenix-menu/pheonix-menu-item/phoenix-menu-item.component.d.ts +3 -0
- package/dist/components/phoenix-menu/phoenix-menu.component.d.ts +3 -0
- package/dist/components/phoenix-ui.module.d.ts +56 -0
- package/dist/components/ui-menu/animate-camera/animate-camera.component.d.ts +3 -0
- package/dist/components/ui-menu/animate-event/animate-event.component.d.ts +3 -0
- package/dist/components/ui-menu/ar-toggle/ar-toggle.component.d.ts +3 -0
- package/dist/components/ui-menu/auto-rotate/auto-rotate.component.d.ts +3 -0
- package/dist/components/ui-menu/collections-info/collections-info-overlay/collections-info-overlay.component.d.ts +10 -2
- package/dist/components/ui-menu/collections-info/collections-info.component.d.ts +3 -0
- package/dist/components/ui-menu/dark-theme/dark-theme.component.d.ts +3 -0
- package/dist/components/ui-menu/event-selector/event-selector.component.d.ts +3 -0
- package/dist/components/ui-menu/experiment-info/experiment-info.component.d.ts +3 -0
- package/dist/components/ui-menu/info-panel/info-panel-overlay/info-panel-overlay.component.d.ts +5 -0
- package/dist/components/ui-menu/info-panel/info-panel.component.d.ts +3 -0
- package/dist/components/ui-menu/io-options/io-options-dialog/io-options-dialog.component.d.ts +3 -0
- package/dist/components/ui-menu/io-options/io-options.component.d.ts +3 -0
- package/dist/components/ui-menu/main-view-toggle/main-view-toggle.component.d.ts +3 -0
- package/dist/components/ui-menu/menu-toggle/menu-toggle.component.d.ts +3 -0
- package/dist/components/ui-menu/object-clipping/object-clipping.component.d.ts +3 -0
- package/dist/components/ui-menu/object-selection/object-selection-overlay/object-selection-overlay.component.d.ts +3 -0
- package/dist/components/ui-menu/object-selection/object-selection.component.d.ts +3 -0
- package/dist/components/ui-menu/overlay/overlay.component.d.ts +3 -0
- package/dist/components/ui-menu/overlay-view/overlay-view-window/overlay-view-window.component.d.ts +3 -0
- package/dist/components/ui-menu/overlay-view/overlay-view.component.d.ts +3 -0
- package/dist/components/ui-menu/performance-toggle/performance-toggle.component.d.ts +3 -0
- package/dist/components/ui-menu/share-link/share-link-dialog/share-link-dialog.component.d.ts +10 -2
- package/dist/components/ui-menu/share-link/share-link.component.d.ts +3 -0
- package/dist/components/ui-menu/ss-mode/ss-mode.component.d.ts +3 -0
- package/dist/components/ui-menu/tree-menu/tree-menu-item/tree-menu-item.component.d.ts +3 -0
- package/dist/components/ui-menu/tree-menu/tree-menu.component.d.ts +3 -0
- package/dist/components/ui-menu/ui-menu.component.d.ts +3 -0
- package/dist/components/ui-menu/view-options/view-options.component.d.ts +3 -0
- package/dist/components/ui-menu/vr-toggle/vr-toggle.component.d.ts +3 -0
- package/dist/components/ui-menu/zoom-controls/zoom-controls.component.d.ts +3 -0
- package/dist/esm2020/components/embed-menu/embed-menu.component.mjs +17 -0
- package/dist/esm2020/components/embed-menu/experiment-link/experiment-link.component.mjs +18 -0
- package/dist/esm2020/components/loader/loader.component.mjs +19 -0
- package/dist/esm2020/components/nav/nav.component.mjs +14 -0
- package/dist/esm2020/components/phoenix-menu/config/config-slider/config-slider.component.mjs +38 -0
- package/dist/{esm2015/components/phoenix-menu/index.js → esm2020/components/phoenix-menu/index.mjs} +1 -1
- package/dist/esm2020/components/phoenix-menu/pheonix-menu-item/phoenix-menu-item.component.mjs +32 -0
- package/dist/esm2020/components/phoenix-menu/phoenix-menu.component.mjs +14 -0
- package/dist/esm2020/components/phoenix-ui.module.mjs +201 -0
- package/dist/esm2020/components/ui-menu/animate-camera/animate-camera.component.mjs +76 -0
- package/dist/esm2020/components/ui-menu/animate-event/animate-event.component.mjs +25 -0
- package/dist/esm2020/components/ui-menu/ar-toggle/ar-toggle.component.mjs +47 -0
- package/dist/esm2020/components/ui-menu/auto-rotate/auto-rotate.component.mjs +21 -0
- package/dist/esm2020/components/ui-menu/collections-info/collections-info-overlay/collections-info-overlay.component.mjs +81 -0
- package/dist/esm2020/components/ui-menu/collections-info/collections-info.component.mjs +32 -0
- package/dist/esm2020/components/ui-menu/dark-theme/dark-theme.component.mjs +24 -0
- package/dist/esm2020/components/ui-menu/event-selector/event-selector.component.mjs +24 -0
- package/dist/esm2020/components/ui-menu/experiment-info/experiment-info.component.mjs +26 -0
- package/dist/{esm2015/components/ui-menu/index.js → esm2020/components/ui-menu/index.mjs} +1 -1
- package/dist/esm2020/components/ui-menu/info-panel/info-panel-overlay/info-panel-overlay.component.mjs +37 -0
- package/dist/esm2020/components/ui-menu/info-panel/info-panel.component.mjs +49 -0
- package/dist/esm2020/components/ui-menu/io-options/io-options-dialog/io-options-dialog.component.mjs +196 -0
- package/dist/esm2020/components/ui-menu/io-options/io-options.component.mjs +28 -0
- package/dist/esm2020/components/ui-menu/main-view-toggle/main-view-toggle.component.mjs +24 -0
- package/dist/esm2020/components/ui-menu/menu-toggle/menu-toggle.component.mjs +24 -0
- package/dist/esm2020/components/ui-menu/object-clipping/object-clipping.component.mjs +31 -0
- package/dist/esm2020/components/ui-menu/object-selection/object-selection-overlay/object-selection-overlay.component.mjs +24 -0
- package/dist/esm2020/components/ui-menu/object-selection/object-selection.component.mjs +36 -0
- package/dist/esm2020/components/ui-menu/overlay/overlay.component.mjs +99 -0
- package/dist/esm2020/components/ui-menu/overlay-view/overlay-view-window/overlay-view-window.component.mjs +53 -0
- package/dist/esm2020/components/ui-menu/overlay-view/overlay-view.component.mjs +32 -0
- package/dist/esm2020/components/ui-menu/performance-toggle/performance-toggle.component.mjs +21 -0
- package/dist/esm2020/components/ui-menu/share-link/share-link-dialog/share-link-dialog.component.mjs +73 -0
- package/dist/esm2020/components/ui-menu/share-link/share-link.component.mjs +20 -0
- package/dist/esm2020/components/ui-menu/ss-mode/ss-mode.component.mjs +41 -0
- package/dist/esm2020/components/ui-menu/tree-menu/tree-menu-item/tree-menu-item.component.mjs +33 -0
- package/dist/esm2020/components/ui-menu/tree-menu/tree-menu.component.mjs +71 -0
- package/dist/esm2020/components/ui-menu/ui-menu.component.mjs +43 -0
- package/dist/esm2020/components/ui-menu/view-options/view-options.component.mjs +34 -0
- package/dist/esm2020/components/ui-menu/vr-toggle/vr-toggle.component.mjs +44 -0
- package/dist/esm2020/components/ui-menu/zoom-controls/zoom-controls.component.mjs +61 -0
- package/dist/esm2020/phoenix-ui-components.mjs +5 -0
- package/dist/esm2020/public_api.mjs +9 -0
- package/dist/esm2020/services/event-display.service.mjs +23 -0
- package/dist/esm2020/services/extras/attribute.pipe.mjs +33 -0
- package/dist/{esm2015/services/extras/event-data-import.js → esm2020/services/extras/event-data-import.mjs} +1 -1
- package/dist/esm2020/services/index.mjs +4 -0
- package/dist/fesm2015/phoenix-ui-components.mjs +1644 -0
- package/dist/fesm2015/phoenix-ui-components.mjs.map +1 -0
- package/dist/fesm2020/phoenix-ui-components.mjs +1644 -0
- package/dist/fesm2020/phoenix-ui-components.mjs.map +1 -0
- package/dist/phoenix-ui-components.d.ts +2 -6
- package/dist/{index.d.ts → public_api.d.ts} +2 -0
- package/dist/services/event-display.service.d.ts +3 -0
- package/dist/services/extras/attribute.pipe.d.ts +3 -0
- package/dist/services/index.d.ts +1 -0
- package/package.json +12 -12
- package/dist/bundles/phoenix-ui-components.umd.js +0 -2135
- package/dist/bundles/phoenix-ui-components.umd.js.map +0 -1
- package/dist/esm2015/components/embed-menu/embed-menu.component.js +0 -11
- package/dist/esm2015/components/embed-menu/experiment-link/experiment-link.component.js +0 -17
- package/dist/esm2015/components/loader/loader.component.js +0 -18
- package/dist/esm2015/components/nav/nav.component.js +0 -14
- package/dist/esm2015/components/phoenix-menu/config/config-slider/config-slider.component.js +0 -32
- package/dist/esm2015/components/phoenix-menu/pheonix-menu-item/phoenix-menu-item.component.js +0 -29
- package/dist/esm2015/components/phoenix-menu/phoenix-menu.component.js +0 -14
- package/dist/esm2015/components/phoenix-ui.module.js +0 -94
- package/dist/esm2015/components/ui-menu/animate-camera/animate-camera.component.js +0 -77
- package/dist/esm2015/components/ui-menu/animate-event/animate-event.component.js +0 -27
- package/dist/esm2015/components/ui-menu/ar-toggle/ar-toggle.component.js +0 -46
- package/dist/esm2015/components/ui-menu/auto-rotate/auto-rotate.component.js +0 -23
- package/dist/esm2015/components/ui-menu/collections-info/collections-info-overlay/collections-info-overlay.component.js +0 -61
- package/dist/esm2015/components/ui-menu/collections-info/collections-info.component.js +0 -34
- package/dist/esm2015/components/ui-menu/dark-theme/dark-theme.component.js +0 -26
- package/dist/esm2015/components/ui-menu/event-selector/event-selector.component.js +0 -25
- package/dist/esm2015/components/ui-menu/experiment-info/experiment-info.component.js +0 -27
- package/dist/esm2015/components/ui-menu/info-panel/info-panel-overlay/info-panel-overlay.component.js +0 -36
- package/dist/esm2015/components/ui-menu/info-panel/info-panel.component.js +0 -51
- package/dist/esm2015/components/ui-menu/io-options/io-options-dialog/io-options-dialog.component.js +0 -202
- package/dist/esm2015/components/ui-menu/io-options/io-options.component.js +0 -31
- package/dist/esm2015/components/ui-menu/main-view-toggle/main-view-toggle.component.js +0 -25
- package/dist/esm2015/components/ui-menu/menu-toggle/menu-toggle.component.js +0 -20
- package/dist/esm2015/components/ui-menu/object-clipping/object-clipping.component.js +0 -30
- package/dist/esm2015/components/ui-menu/object-selection/object-selection-overlay/object-selection-overlay.component.js +0 -25
- package/dist/esm2015/components/ui-menu/object-selection/object-selection.component.js +0 -39
- package/dist/esm2015/components/ui-menu/overlay/overlay.component.js +0 -90
- package/dist/esm2015/components/ui-menu/overlay-view/overlay-view-window/overlay-view-window.component.js +0 -52
- package/dist/esm2015/components/ui-menu/overlay-view/overlay-view.component.js +0 -34
- package/dist/esm2015/components/ui-menu/performance-toggle/performance-toggle.component.js +0 -23
- package/dist/esm2015/components/ui-menu/share-link/share-link-dialog/share-link-dialog.component.js +0 -63
- package/dist/esm2015/components/ui-menu/share-link/share-link.component.js +0 -22
- package/dist/esm2015/components/ui-menu/ss-mode/ss-mode.component.js +0 -43
- package/dist/esm2015/components/ui-menu/tree-menu/tree-menu-item/tree-menu-item.component.js +0 -32
- package/dist/esm2015/components/ui-menu/tree-menu/tree-menu.component.js +0 -71
- package/dist/esm2015/components/ui-menu/ui-menu.component.js +0 -22
- package/dist/esm2015/components/ui-menu/view-options/view-options.component.js +0 -33
- package/dist/esm2015/components/ui-menu/vr-toggle/vr-toggle.component.js +0 -45
- package/dist/esm2015/components/ui-menu/zoom-controls/zoom-controls.component.js +0 -63
- package/dist/esm2015/index.js +0 -7
- package/dist/esm2015/phoenix-ui-components.js +0 -10
- package/dist/esm2015/services/event-display.service.js +0 -22
- package/dist/esm2015/services/extras/attribute.pipe.js +0 -29
- package/dist/esm2015/services/index.js +0 -3
- package/dist/fesm2015/phoenix-ui-components.js +0 -1607
- package/dist/fesm2015/phoenix-ui-components.js.map +0 -1
- package/dist/phoenix-ui-components.metadata.json +0 -1
package/README.md
CHANGED
package/_theming.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use '
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
2
|
@include mat.core();
|
|
3
3
|
|
|
4
4
|
/* Define an alternate dark theme. */
|
|
@@ -39,10 +39,6 @@ $light-theme: mat.define-light-theme($colors);
|
|
|
39
39
|
--dat-background-tertiary: #e9e9e9;
|
|
40
40
|
--dat-background-quaternary: #ffffff;
|
|
41
41
|
--dat-border: #f0f0f0;
|
|
42
|
-
|
|
43
|
-
.optionsButton.activeIcon {
|
|
44
|
-
--phoenix-options-icon-path: #00bcd4;
|
|
45
|
-
}
|
|
46
42
|
}
|
|
47
43
|
|
|
48
44
|
/* Dark Theme */
|
|
@@ -115,10 +111,18 @@ body {
|
|
|
115
111
|
background-color: #118ab2;
|
|
116
112
|
}
|
|
117
113
|
|
|
118
|
-
.btn.btn-primary:hover
|
|
114
|
+
.btn.btn-primary:hover,
|
|
115
|
+
.btn.btn-primary:not(:disabled):not(.disabled):active {
|
|
119
116
|
background-color: #19506f;
|
|
120
117
|
}
|
|
121
118
|
|
|
119
|
+
.btn-blank {
|
|
120
|
+
color: inherit;
|
|
121
|
+
background: unset;
|
|
122
|
+
border: unset;
|
|
123
|
+
padding: unset;
|
|
124
|
+
}
|
|
125
|
+
|
|
122
126
|
canvas {
|
|
123
127
|
width: 100%;
|
|
124
128
|
max-width: 100%;
|
|
@@ -130,10 +134,13 @@ select {
|
|
|
130
134
|
padding: 0.125rem 0.25rem;
|
|
131
135
|
background-color: var(--phoenix-background-color-tertiary);
|
|
132
136
|
color: var(--phoenix-text-color-secondary);
|
|
133
|
-
outline: none;
|
|
134
137
|
border: none;
|
|
135
138
|
}
|
|
136
139
|
|
|
140
|
+
label {
|
|
141
|
+
margin: 0;
|
|
142
|
+
}
|
|
143
|
+
|
|
137
144
|
#eventDisplay {
|
|
138
145
|
height: 100vh;
|
|
139
146
|
overflow: hidden;
|
package/dist/README.md
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ExperimentLinkComponent implements OnInit {
|
|
3
4
|
private experimentLink;
|
|
4
5
|
ngOnInit(): void;
|
|
5
6
|
goToExperiment(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExperimentLinkComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExperimentLinkComponent, "app-experiment-link", never, {}, {}, never, never>;
|
|
6
9
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class LoaderComponent {
|
|
2
3
|
loaded: boolean;
|
|
3
4
|
progress: number;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "app-loader", never, { "loaded": "loaded"; "progress": "progress"; }, {}, never, never>;
|
|
4
7
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class NavComponent implements OnInit {
|
|
3
4
|
constructor();
|
|
4
5
|
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavComponent, "app-nav", never, {}, {}, never, never>;
|
|
5
8
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ConfigSliderComponent {
|
|
3
4
|
value: number;
|
|
4
5
|
min: number;
|
|
@@ -7,4 +8,6 @@ export declare class ConfigSliderComponent {
|
|
|
7
8
|
allowCustomValue: boolean;
|
|
8
9
|
onChange: EventEmitter<number>;
|
|
9
10
|
onValueChange(value: number): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigSliderComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfigSliderComponent, "app-config-slider", never, { "value": "value"; "min": "min"; "max": "max"; "step": "step"; "allowCustomValue": "allowCustomValue"; }, { "onChange": "onChange"; }, never, never>;
|
|
10
13
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
2
|
import type { PhoenixMenuNode } from 'phoenix-event-display';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class PhoenixMenuItemComponent {
|
|
4
5
|
private cdr;
|
|
5
6
|
currentNode: PhoenixMenuNode;
|
|
@@ -7,4 +8,6 @@ export declare class PhoenixMenuItemComponent {
|
|
|
7
8
|
configTop: number;
|
|
8
9
|
constructor(cdr: ChangeDetectorRef);
|
|
9
10
|
calculateConfigTop(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoenixMenuItemComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoenixMenuItemComponent, "app-phoenix-menu-item", never, { "currentNode": "currentNode"; }, {}, never, never>;
|
|
10
13
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import type { PhoenixMenuNode } from 'phoenix-event-display';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class PhoenixMenuComponent {
|
|
3
4
|
rootNode: PhoenixMenuNode;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoenixMenuComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoenixMenuComponent, "app-phoenix-menu", never, { "rootNode": "rootNode"; }, {}, never, never>;
|
|
4
7
|
}
|
|
@@ -1,2 +1,58 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./nav/nav.component";
|
|
3
|
+
import * as i2 from "./ui-menu/ui-menu.component";
|
|
4
|
+
import * as i3 from "./ui-menu/collections-info/collections-info.component";
|
|
5
|
+
import * as i4 from "./ui-menu/menu-toggle/menu-toggle.component";
|
|
6
|
+
import * as i5 from "./ui-menu/collections-info/collections-info-overlay/collections-info-overlay.component";
|
|
7
|
+
import * as i6 from "./ui-menu/io-options/io-options.component";
|
|
8
|
+
import * as i7 from "./ui-menu/io-options/io-options-dialog/io-options-dialog.component";
|
|
9
|
+
import * as i8 from "./ui-menu/overlay-view/overlay-view.component";
|
|
10
|
+
import * as i9 from "../services/extras/attribute.pipe";
|
|
11
|
+
import * as i10 from "./ui-menu/object-selection/object-selection.component";
|
|
12
|
+
import * as i11 from "./ui-menu/object-selection/object-selection-overlay/object-selection-overlay.component";
|
|
13
|
+
import * as i12 from "./ui-menu/event-selector/event-selector.component";
|
|
14
|
+
import * as i13 from "./ui-menu/object-clipping/object-clipping.component";
|
|
15
|
+
import * as i14 from "./ui-menu/dark-theme/dark-theme.component";
|
|
16
|
+
import * as i15 from "./ui-menu/auto-rotate/auto-rotate.component";
|
|
17
|
+
import * as i16 from "./ui-menu/view-options/view-options.component";
|
|
18
|
+
import * as i17 from "./ui-menu/overlay-view/overlay-view-window/overlay-view-window.component";
|
|
19
|
+
import * as i18 from "./ui-menu/overlay/overlay.component";
|
|
20
|
+
import * as i19 from "./ui-menu/experiment-info/experiment-info.component";
|
|
21
|
+
import * as i20 from "./ui-menu/info-panel/info-panel.component";
|
|
22
|
+
import * as i21 from "./ui-menu/info-panel/info-panel-overlay/info-panel-overlay.component";
|
|
23
|
+
import * as i22 from "./ui-menu/main-view-toggle/main-view-toggle.component";
|
|
24
|
+
import * as i23 from "./ui-menu/zoom-controls/zoom-controls.component";
|
|
25
|
+
import * as i24 from "./ui-menu/tree-menu/tree-menu.component";
|
|
26
|
+
import * as i25 from "./ui-menu/tree-menu/tree-menu-item/tree-menu-item.component";
|
|
27
|
+
import * as i26 from "./phoenix-menu/phoenix-menu.component";
|
|
28
|
+
import * as i27 from "./phoenix-menu/pheonix-menu-item/phoenix-menu-item.component";
|
|
29
|
+
import * as i28 from "./phoenix-menu/config/config-slider/config-slider.component";
|
|
30
|
+
import * as i29 from "./ui-menu/animate-camera/animate-camera.component";
|
|
31
|
+
import * as i30 from "./ui-menu/animate-event/animate-event.component";
|
|
32
|
+
import * as i31 from "./ui-menu/vr-toggle/vr-toggle.component";
|
|
33
|
+
import * as i32 from "./ui-menu/ar-toggle/ar-toggle.component";
|
|
34
|
+
import * as i33 from "./ui-menu/ss-mode/ss-mode.component";
|
|
35
|
+
import * as i34 from "./ui-menu/performance-toggle/performance-toggle.component";
|
|
36
|
+
import * as i35 from "./loader/loader.component";
|
|
37
|
+
import * as i36 from "./ui-menu/share-link/share-link.component";
|
|
38
|
+
import * as i37 from "./ui-menu/share-link/share-link-dialog/share-link-dialog.component";
|
|
39
|
+
import * as i38 from "./embed-menu/embed-menu.component";
|
|
40
|
+
import * as i39 from "./embed-menu/experiment-link/experiment-link.component";
|
|
41
|
+
import * as i40 from "@angular/common";
|
|
42
|
+
import * as i41 from "@angular/router";
|
|
43
|
+
import * as i42 from "@angular/cdk/drag-drop";
|
|
44
|
+
import * as i43 from "@angular/material/dialog";
|
|
45
|
+
import * as i44 from "@angular/material/button";
|
|
46
|
+
import * as i45 from "@angular/material/tooltip";
|
|
47
|
+
import * as i46 from "@angular/cdk/overlay";
|
|
48
|
+
import * as i47 from "@angular/material/menu";
|
|
49
|
+
import * as i48 from "@angular/material/slider";
|
|
50
|
+
import * as i49 from "@angular/material/slide-toggle";
|
|
51
|
+
import * as i50 from "@angular/material/checkbox";
|
|
52
|
+
import * as i51 from "@angular/material/icon";
|
|
53
|
+
import * as i52 from "@angular-slider/ngx-slider";
|
|
1
54
|
export declare class PhoenixUIModule {
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoenixUIModule, never>;
|
|
56
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PhoenixUIModule, [typeof i1.NavComponent, typeof i2.UiMenuComponent, typeof i3.CollectionsInfoComponent, typeof i4.MenuToggleComponent, typeof i5.CollectionsInfoOverlayComponent, typeof i6.IoOptionsComponent, typeof i7.IOOptionsDialogComponent, typeof i8.OverlayViewComponent, typeof i9.AttributePipe, typeof i10.ObjectSelectionComponent, typeof i11.ObjectSelectionOverlayComponent, typeof i12.EventSelectorComponent, typeof i13.ObjectClippingComponent, typeof i14.DarkThemeComponent, typeof i15.AutoRotateComponent, typeof i16.ViewOptionsComponent, typeof i17.OverlayViewWindowComponent, typeof i18.OverlayComponent, typeof i19.ExperimentInfoComponent, typeof i20.InfoPanelComponent, typeof i21.InfoPanelOverlayComponent, typeof i22.MainViewToggleComponent, typeof i23.ZoomControlsComponent, typeof i24.TreeMenuComponent, typeof i25.TreeMenuItemComponent, typeof i26.PhoenixMenuComponent, typeof i27.PhoenixMenuItemComponent, typeof i28.ConfigSliderComponent, typeof i29.AnimateCameraComponent, typeof i30.AnimateEventComponent, typeof i31.VrToggleComponent, typeof i32.ArToggleComponent, typeof i33.SSModeComponent, typeof i34.PerformanceToggleComponent, typeof i35.LoaderComponent, typeof i36.ShareLinkComponent, typeof i37.ShareLinkDialogComponent, typeof i38.EmbedMenuComponent, typeof i39.ExperimentLinkComponent], [typeof i40.CommonModule, typeof i41.RouterModule, typeof i42.DragDropModule, typeof i43.MatDialogModule, typeof i44.MatButtonModule, typeof i45.MatTooltipModule, typeof i46.OverlayModule, typeof i47.MatMenuModule, typeof i48.MatSliderModule, typeof i49.MatSlideToggleModule, typeof i50.MatCheckboxModule, typeof i51.MatIconModule, typeof i52.NgxSliderModule], [typeof i1.NavComponent, typeof i2.UiMenuComponent, typeof i3.CollectionsInfoComponent, typeof i4.MenuToggleComponent, typeof i5.CollectionsInfoOverlayComponent, typeof i6.IoOptionsComponent, typeof i7.IOOptionsDialogComponent, typeof i8.OverlayViewComponent, typeof i9.AttributePipe, typeof i10.ObjectSelectionComponent, typeof i11.ObjectSelectionOverlayComponent, typeof i12.EventSelectorComponent, typeof i13.ObjectClippingComponent, typeof i14.DarkThemeComponent, typeof i15.AutoRotateComponent, typeof i16.ViewOptionsComponent, typeof i17.OverlayViewWindowComponent, typeof i18.OverlayComponent, typeof i19.ExperimentInfoComponent, typeof i20.InfoPanelComponent, typeof i21.InfoPanelOverlayComponent, typeof i22.MainViewToggleComponent, typeof i23.ZoomControlsComponent, typeof i24.TreeMenuComponent, typeof i25.TreeMenuItemComponent, typeof i26.PhoenixMenuComponent, typeof i27.PhoenixMenuItemComponent, typeof i28.ConfigSliderComponent, typeof i29.AnimateCameraComponent, typeof i30.AnimateEventComponent, typeof i31.VrToggleComponent, typeof i32.ArToggleComponent, typeof i33.SSModeComponent, typeof i34.PerformanceToggleComponent, typeof i35.LoaderComponent, typeof i36.ShareLinkComponent, typeof i37.ShareLinkDialogComponent, typeof i38.EmbedMenuComponent, typeof i39.ExperimentLinkComponent]>;
|
|
57
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PhoenixUIModule>;
|
|
2
58
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AnimationPreset } from 'phoenix-event-display';
|
|
2
2
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare const defaultAnimationPresets: {
|
|
4
5
|
[key: string]: AnimationPreset;
|
|
5
6
|
};
|
|
@@ -14,4 +15,6 @@ export declare class AnimateCameraComponent {
|
|
|
14
15
|
animatePreset(preset: string): void;
|
|
15
16
|
animateCamera(): void;
|
|
16
17
|
private setDetectorOpacity;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnimateCameraComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnimateCameraComponent, "app-animate-camera", never, { "animationPresets": "animationPresets"; }, {}, never, never>;
|
|
17
20
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class AnimateEventComponent {
|
|
3
4
|
private eventDisplay;
|
|
4
5
|
isAnimating: boolean;
|
|
5
6
|
constructor(eventDisplay: EventDisplayService);
|
|
6
7
|
toggleAnimateEvent(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnimateEventComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnimateEventComponent, "app-animate-event", never, {}, {}, never, never>;
|
|
7
10
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ArToggleComponent {
|
|
3
4
|
private eventDisplay;
|
|
4
5
|
arSupported: boolean;
|
|
5
6
|
arActive: boolean;
|
|
6
7
|
constructor(eventDisplay: EventDisplayService);
|
|
7
8
|
toggleAr(enableDomOverlay?: boolean): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArToggleComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArToggleComponent, "app-ar-toggle", never, {}, {}, never, never>;
|
|
8
11
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class AutoRotateComponent {
|
|
3
4
|
private eventDisplay;
|
|
4
5
|
autoRotate: boolean;
|
|
5
6
|
constructor(eventDisplay: EventDisplayService);
|
|
6
7
|
toggleAutoRotate(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoRotateComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutoRotateComponent, "app-auto-rotate", never, {}, {}, never, never>;
|
|
7
10
|
}
|
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
import { OnInit, ElementRef } from '@angular/core';
|
|
2
|
-
import { ActiveVariable } from 'phoenix-event-display';
|
|
2
|
+
import { PrettySymbols, ActiveVariable } from 'phoenix-event-display';
|
|
3
3
|
import { EventDisplayService } from '../../../../services/event-display.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class CollectionsInfoOverlayComponent implements OnInit {
|
|
5
6
|
private elementRef;
|
|
6
7
|
private eventDisplay;
|
|
7
8
|
showObjectsInfo: boolean;
|
|
9
|
+
hideInvisible: boolean;
|
|
8
10
|
collections: string[];
|
|
9
11
|
selectedCollection: string;
|
|
10
12
|
showingCollection: any;
|
|
11
13
|
collectionColumns: string[];
|
|
14
|
+
getPrettySymbol: typeof PrettySymbols.getPrettySymbol;
|
|
12
15
|
activeObject: ActiveVariable<string>;
|
|
13
16
|
constructor(elementRef: ElementRef, eventDisplay: EventDisplayService);
|
|
14
17
|
ngOnInit(): void;
|
|
15
|
-
changeCollection(
|
|
18
|
+
changeCollection(selectedCollection: string): void;
|
|
19
|
+
sort(column: string, order: string): void;
|
|
16
20
|
lookAtObject(uuid: string): void;
|
|
17
21
|
highlightObject(uuid: string): void;
|
|
22
|
+
toggleInvisible(checked: boolean): void;
|
|
18
23
|
addLabel(index: number, uuid: string): void;
|
|
24
|
+
private getEventDataGroup;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CollectionsInfoOverlayComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CollectionsInfoOverlayComponent, "app-collections-info-overlay", never, { "showObjectsInfo": "showObjectsInfo"; }, {}, never, never>;
|
|
19
27
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit, ComponentRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { Overlay } from '@angular/cdk/overlay';
|
|
3
3
|
import { CollectionsInfoOverlayComponent } from './collections-info-overlay/collections-info-overlay.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class CollectionsInfoComponent implements OnInit, OnDestroy {
|
|
5
6
|
private overlay;
|
|
6
7
|
showObjectsInfo: boolean;
|
|
@@ -9,4 +10,6 @@ export declare class CollectionsInfoComponent implements OnInit, OnDestroy {
|
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
ngOnDestroy(): void;
|
|
11
12
|
toggleOverlay(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CollectionsInfoComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CollectionsInfoComponent, "app-collections-info", never, {}, {}, never, never>;
|
|
12
15
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DarkThemeComponent implements OnInit {
|
|
4
5
|
private eventDisplay;
|
|
5
6
|
darkTheme: boolean;
|
|
6
7
|
constructor(eventDisplay: EventDisplayService);
|
|
7
8
|
ngOnInit(): void;
|
|
8
9
|
setDarkTheme(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DarkThemeComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DarkThemeComponent, "app-dark-theme", never, {}, {}, never, never>;
|
|
9
12
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class EventSelectorComponent implements OnInit {
|
|
4
5
|
private eventDisplay;
|
|
5
6
|
events: string[];
|
|
6
7
|
constructor(eventDisplay: EventDisplayService);
|
|
7
8
|
ngOnInit(): void;
|
|
8
9
|
changeEvent(selected: any): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EventSelectorComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EventSelectorComponent, "app-event-selector", never, {}, {}, never, never>;
|
|
9
12
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ExperimentInfoComponent implements OnInit {
|
|
4
5
|
private eventDisplay;
|
|
5
6
|
experimentInfo: any[];
|
|
@@ -7,4 +8,6 @@ export declare class ExperimentInfoComponent implements OnInit {
|
|
|
7
8
|
experimentTagline: string;
|
|
8
9
|
constructor(eventDisplay: EventDisplayService);
|
|
9
10
|
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExperimentInfoComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExperimentInfoComponent, "app-experiment-info", never, { "experiment": "experiment"; "experimentTagline": "experimentTagline"; }, {}, never, never>;
|
|
10
13
|
}
|
package/dist/components/ui-menu/info-panel/info-panel-overlay/info-panel-overlay.component.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { EventDisplayService } from '../../../../services/event-display.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Component for displaying information from the logger
|
|
5
6
|
*/
|
|
@@ -9,6 +10,8 @@ export declare class InfoPanelOverlayComponent implements OnInit {
|
|
|
9
10
|
showInfoPanel: boolean;
|
|
10
11
|
/** List of actions to be displayed in the info panel */
|
|
11
12
|
actionsList: any[];
|
|
13
|
+
/** Get Phoenix Version */
|
|
14
|
+
version: string;
|
|
12
15
|
/**
|
|
13
16
|
* Create the information panel overlay
|
|
14
17
|
* @param infoLogger Service containing operations related to info logs
|
|
@@ -18,4 +21,6 @@ export declare class InfoPanelOverlayComponent implements OnInit {
|
|
|
18
21
|
* Get the list of logs from the info logger service
|
|
19
22
|
*/
|
|
20
23
|
ngOnInit(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoPanelOverlayComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoPanelOverlayComponent, "app-info-panel-overlay", never, { "showInfoPanel": "showInfoPanel"; }, {}, never, never>;
|
|
21
26
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit, ComponentRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { Overlay } from '@angular/cdk/overlay';
|
|
3
3
|
import { InfoPanelOverlayComponent } from './info-panel-overlay/info-panel-overlay.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/**
|
|
5
6
|
* Component for toggling info panel overlay
|
|
6
7
|
*/
|
|
@@ -27,4 +28,6 @@ export declare class InfoPanelComponent implements OnInit, OnDestroy {
|
|
|
27
28
|
* Toggle the info panel overlay
|
|
28
29
|
*/
|
|
29
30
|
toggleOverlay(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoPanelComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoPanelComponent, "app-info-panel", never, {}, {}, never, never>;
|
|
30
33
|
}
|
package/dist/components/ui-menu/io-options/io-options-dialog/io-options-dialog.component.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { EventDisplayService } from '../../../../services/event-display.service';
|
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
4
|
import { EventDataImportOption, ImportOption } from '../../../../services/extras/event-data-import';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class IOOptionsDialogComponent implements OnInit {
|
|
6
7
|
private eventDisplay;
|
|
7
8
|
dialogRef: MatDialogRef<IOOptionsDialogComponent>;
|
|
@@ -29,4 +30,6 @@ export declare class IOOptionsDialogComponent implements OnInit {
|
|
|
29
30
|
private isFileOfExtension;
|
|
30
31
|
saveScene(): void;
|
|
31
32
|
exportOBJ(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IOOptionsDialogComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IOOptionsDialogComponent, "app-io-options-dialog", never, { "eventDataImportOptions": "eventDataImportOptions"; }, {}, never, never>;
|
|
32
35
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { MatDialog } from '@angular/material/dialog';
|
|
2
2
|
import { EventDataImportOption } from '../../../services/extras/event-data-import';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class IoOptionsComponent {
|
|
4
5
|
private dialog;
|
|
5
6
|
eventDataImportOptions: EventDataImportOption[];
|
|
6
7
|
constructor(dialog: MatDialog);
|
|
7
8
|
openIODialog(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IoOptionsComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IoOptionsComponent, "app-io-options", never, { "eventDataImportOptions": "eventDataImportOptions"; }, {}, never, never>;
|
|
8
11
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class MainViewToggleComponent {
|
|
3
4
|
private eventDisplay;
|
|
4
5
|
orthographicView: boolean;
|
|
5
6
|
constructor(eventDisplay: EventDisplayService);
|
|
6
7
|
switchMainView(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MainViewToggleComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainViewToggleComponent, "app-main-view-toggle", never, {}, {}, never, never>;
|
|
7
10
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class MenuToggleComponent {
|
|
2
3
|
icon: string;
|
|
3
4
|
active: boolean;
|
|
4
5
|
tooltip: string;
|
|
5
6
|
disabled: boolean;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuToggleComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuToggleComponent, "app-menu-toggle", never, { "icon": "icon"; "active": "active"; "tooltip": "tooltip"; "disabled": "disabled"; }, {}, never, never>;
|
|
6
9
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { MatSliderChange } from '@angular/material/slider';
|
|
2
2
|
import { MatCheckboxChange } from '@angular/material/checkbox';
|
|
3
3
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ObjectClippingComponent {
|
|
5
6
|
private eventDisplay;
|
|
6
7
|
clippingEnabled: boolean;
|
|
@@ -8,4 +9,6 @@ export declare class ObjectClippingComponent {
|
|
|
8
9
|
constructor(eventDisplay: EventDisplayService);
|
|
9
10
|
changeClippingAngle(change: MatSliderChange): void;
|
|
10
11
|
toggleClipping(change: MatCheckboxChange): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectClippingComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectClippingComponent, "app-object-clipping", never, {}, {}, never, never>;
|
|
11
14
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { EventDisplayService } from '../../../../services/event-display.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ObjectSelectionOverlayComponent implements OnInit {
|
|
4
5
|
private eventDisplay;
|
|
5
6
|
hiddenSelectedInfo: boolean;
|
|
@@ -9,4 +10,6 @@ export declare class ObjectSelectionOverlayComponent implements OnInit {
|
|
|
9
10
|
};
|
|
10
11
|
constructor(eventDisplay: EventDisplayService);
|
|
11
12
|
ngOnInit(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectSelectionOverlayComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectSelectionOverlayComponent, "app-object-selection-overlay", never, { "hiddenSelectedInfo": "hiddenSelectedInfo"; }, {}, never, never>;
|
|
12
15
|
}
|
|
@@ -2,6 +2,7 @@ import { OnInit, ComponentRef, OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { Overlay } from '@angular/cdk/overlay';
|
|
3
3
|
import { ObjectSelectionOverlayComponent } from './object-selection-overlay/object-selection-overlay.component';
|
|
4
4
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class ObjectSelectionComponent implements OnInit, OnDestroy {
|
|
6
7
|
private overlay;
|
|
7
8
|
private eventDisplay;
|
|
@@ -11,4 +12,6 @@ export declare class ObjectSelectionComponent implements OnInit, OnDestroy {
|
|
|
11
12
|
ngOnInit(): void;
|
|
12
13
|
ngOnDestroy(): void;
|
|
13
14
|
toggleOverlay(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectSelectionComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectSelectionComponent, "app-object-selection", never, {}, {}, never, never>;
|
|
14
17
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit } from '@angular/core';
|
|
2
2
|
import type { ElementRef } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Component for overlay panel.
|
|
5
6
|
*/
|
|
@@ -42,4 +43,6 @@ export declare class OverlayComponent implements AfterViewInit {
|
|
|
42
43
|
* @param dragRect Bounding client rectangle of the resize handle.
|
|
43
44
|
*/
|
|
44
45
|
private setHandleTransform;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverlayComponent, "app-overlay", never, { "overlayTitle": "overlayTitle"; "active": "active"; "icon": "icon"; "resizable": "resizable"; "transparentBody": "transparentBody"; }, {}, never, ["*"]>;
|
|
45
48
|
}
|
package/dist/components/ui-menu/overlay-view/overlay-view-window/overlay-view-window.component.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AfterViewInit } from '@angular/core';
|
|
2
2
|
import type { ElementRef } from '@angular/core';
|
|
3
3
|
import { EventDisplayService } from '../../../../services/event-display.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class OverlayViewWindowComponent implements AfterViewInit {
|
|
5
6
|
private eventDisplay;
|
|
6
7
|
showOverlay: boolean;
|
|
@@ -14,4 +15,6 @@ export declare class OverlayViewWindowComponent implements AfterViewInit {
|
|
|
14
15
|
switchOverlayView(): void;
|
|
15
16
|
fixOverlayView(): void;
|
|
16
17
|
toggleBgTransparency(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayViewWindowComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverlayViewWindowComponent, "app-overlay-view-window", never, { "showOverlay": "showOverlay"; }, {}, never, never>;
|
|
17
20
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ComponentRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { Overlay } from '@angular/cdk/overlay';
|
|
3
3
|
import { OverlayViewWindowComponent } from './overlay-view-window/overlay-view-window.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class OverlayViewComponent implements OnInit, OnDestroy {
|
|
5
6
|
private overlay;
|
|
6
7
|
overlayWindow: ComponentRef<OverlayViewWindowComponent>;
|
|
@@ -9,4 +10,6 @@ export declare class OverlayViewComponent implements OnInit, OnDestroy {
|
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
ngOnDestroy(): void;
|
|
11
12
|
toggleOverlay(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayViewComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverlayViewComponent, "app-overlay-view", never, {}, {}, never, never>;
|
|
12
15
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { EventDisplayService } from '../../../services/event-display.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class PerformanceToggleComponent {
|
|
3
4
|
private eventDisplay;
|
|
4
5
|
performanceMode: boolean;
|
|
5
6
|
constructor(eventDisplay: EventDisplayService);
|
|
6
7
|
togglePerformance(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceToggleComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceToggleComponent, "app-performance-toggle", never, {}, {}, never, never>;
|
|
7
10
|
}
|
package/dist/components/ui-menu/share-link/share-link-dialog/share-link-dialog.component.d.ts
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
1
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
-
|
|
3
|
+
import { ActiveVariable } from 'phoenix-event-display';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ShareLinkDialogComponent implements AfterViewInit {
|
|
3
6
|
private dialogRef;
|
|
4
7
|
baseLink: string;
|
|
5
|
-
shareLink: string
|
|
8
|
+
shareLink: ActiveVariable<string>;
|
|
6
9
|
embedLink: string;
|
|
7
10
|
urlOptions: {
|
|
8
11
|
file: string;
|
|
@@ -11,10 +14,15 @@ export declare class ShareLinkDialogComponent {
|
|
|
11
14
|
hideWidgets: boolean;
|
|
12
15
|
embed: boolean;
|
|
13
16
|
};
|
|
17
|
+
qrcodeCanvas: ElementRef<HTMLCanvasElement>;
|
|
14
18
|
constructor(dialogRef: MatDialogRef<ShareLinkDialogComponent>);
|
|
19
|
+
ngAfterViewInit(): void;
|
|
15
20
|
onClose(): void;
|
|
16
21
|
getEmbedLink(urlParametersString?: string): string;
|
|
17
22
|
setOptionValue(option: string, value: string): void;
|
|
18
23
|
onOptionsChange(): void;
|
|
19
24
|
copyText(text: string, element: HTMLElement): void;
|
|
25
|
+
updateQRCode(link: string): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShareLinkDialogComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShareLinkDialogComponent, "app-share-link-dialog", never, {}, {}, never, never>;
|
|
20
28
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { MatDialog } from '@angular/material/dialog';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ShareLinkComponent {
|
|
3
4
|
private dialog;
|
|
4
5
|
constructor(dialog: MatDialog);
|
|
5
6
|
openShareLinkDialog(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShareLinkComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShareLinkComponent, "app-share-link", never, {}, {}, never, never>;
|
|
6
9
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class SSModeComponent implements OnInit {
|
|
3
4
|
ssMode: boolean;
|
|
4
5
|
ngOnInit(): void;
|
|
5
6
|
toggleSSMode(): void;
|
|
6
7
|
private onDocumentClick;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SSModeComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SSModeComponent, "app-ss-mode", never, {}, {}, never, never>;
|
|
7
10
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { QueryList } from '@angular/core';
|
|
2
2
|
import { EventDisplayService } from '../../../../services/event-display.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TreeMenuItemComponent {
|
|
4
5
|
private eventDisplay;
|
|
5
6
|
children: QueryList<TreeMenuItemComponent>;
|
|
@@ -12,4 +13,6 @@ export declare class TreeMenuItemComponent {
|
|
|
12
13
|
visible: boolean;
|
|
13
14
|
constructor(eventDisplay: EventDisplayService);
|
|
14
15
|
toggleVisibility(visible: boolean): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeMenuItemComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeMenuItemComponent, "app-tree-menu-item", never, { "node": "node"; }, {}, never, never>;
|
|
15
18
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class TreeMenuComponent implements OnInit {
|
|
3
4
|
rootNode: {
|
|
4
5
|
name: string;
|
|
@@ -14,4 +15,6 @@ export declare class TreeMenuComponent implements OnInit {
|
|
|
14
15
|
};
|
|
15
16
|
constructor();
|
|
16
17
|
ngOnInit(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeMenuComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeMenuComponent, "app-tree-menu", never, {}, {}, never, never>;
|
|
17
20
|
}
|