@hmcts/media-viewer 4.1.8-exui-2488-1 → 4.1.8-exui-2600-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/assets/sass/box-highlight.scss +38 -0
- package/esm2022/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +74 -19
- package/esm2022/lib/annotations/annotation-set/annotation-create/box-highlight-create/keyboard-box-draw.directive.mjs +258 -0
- package/esm2022/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.mjs +4 -4
- package/esm2022/lib/annotations/annotation-set/annotation-view/annotation-view.component.mjs +37 -3
- package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/keyboard-box-move.directive.mjs +122 -0
- package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +39 -3
- package/esm2022/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +3 -3
- package/esm2022/lib/annotations/annotations.module.mjs +9 -3
- package/esm2022/lib/store/actions/annotation.actions.mjs +3 -2
- package/esm2022/lib/store/effects/annotation.effects.mjs +13 -3
- package/esm2022/lib/viewers/pdf-viewer/side-bar/side-bar.component.mjs +3 -8
- package/fesm2022/hmcts-media-viewer.mjs +545 -39
- package/fesm2022/hmcts-media-viewer.mjs.map +1 -1
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts +16 -2
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.d.ts.map +1 -1
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/keyboard-box-draw.directive.d.ts +59 -0
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/keyboard-box-draw.directive.d.ts.map +1 -0
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts +1 -1
- package/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.d.ts.map +1 -1
- package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts +8 -2
- package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -1
- package/lib/annotations/annotation-set/annotation-view/rectangle/keyboard-box-move.directive.d.ts +27 -0
- package/lib/annotations/annotation-set/annotation-view/rectangle/keyboard-box-move.directive.d.ts.map +1 -0
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +10 -1
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map +1 -1
- package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts +2 -1
- package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -1
- package/lib/annotations/annotations.module.d.ts +13 -11
- package/lib/annotations/annotations.module.d.ts.map +1 -1
- package/lib/store/actions/annotation.actions.d.ts +2 -1
- package/lib/store/actions/annotation.actions.d.ts.map +1 -1
- package/lib/store/effects/annotation.effects.d.ts +1 -0
- package/lib/store/effects/annotation.effects.d.ts.map +1 -1
- package/lib/viewers/pdf-viewer/side-bar/side-bar.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { Rectangle } from '../../annotation-view/rectangle/rectangle.model';
|
|
3
3
|
import { HighlightCreateService } from '../highlight-create/highlight-create.service';
|
|
4
4
|
import { ToolbarEventService } from '../../../../toolbar/toolbar-event.service';
|
|
5
|
+
import { KeyboardBoxDrawEvent, CursorPosition } from './keyboard-box-draw.directive';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class BoxHighlightCreateComponent implements OnInit, OnDestroy {
|
|
7
8
|
private readonly toolbarEvents;
|
|
@@ -18,8 +19,10 @@ export declare class BoxHighlightCreateComponent implements OnInit, OnDestroy {
|
|
|
18
19
|
saveSelection: EventEmitter<{
|
|
19
20
|
rectangles: Rectangle[];
|
|
20
21
|
page: number;
|
|
22
|
+
annotationId?: string;
|
|
21
23
|
}>;
|
|
22
24
|
highlight: ElementRef;
|
|
25
|
+
drawingContainer: ElementRef;
|
|
23
26
|
drawStartX: number;
|
|
24
27
|
drawStartY: number;
|
|
25
28
|
top: number;
|
|
@@ -27,19 +30,30 @@ export declare class BoxHighlightCreateComponent implements OnInit, OnDestroy {
|
|
|
27
30
|
height: number;
|
|
28
31
|
width: number;
|
|
29
32
|
display: string;
|
|
33
|
+
position: string;
|
|
34
|
+
backgroundColor: string;
|
|
30
35
|
drawMode: boolean;
|
|
31
36
|
defaultHeight: string;
|
|
32
37
|
defaultWidth: string;
|
|
33
|
-
position: string;
|
|
34
|
-
backgroundColor: string;
|
|
35
38
|
wholePage: boolean;
|
|
39
|
+
keyboardDrawingMode: boolean;
|
|
40
|
+
cursorX: number;
|
|
41
|
+
cursorY: number;
|
|
42
|
+
showCursor: boolean;
|
|
36
43
|
private subscriptions;
|
|
37
44
|
constructor(toolbarEvents: ToolbarEventService, highlightService: HighlightCreateService);
|
|
38
45
|
ngOnInit(): void;
|
|
39
46
|
ngOnDestroy(): void;
|
|
47
|
+
private isElementInViewport;
|
|
40
48
|
initHighlight(event: MouseEvent): void;
|
|
41
49
|
updateHighlight(event: MouseEvent): void;
|
|
42
50
|
createHighlight(): void;
|
|
51
|
+
onCursorPositionChanged(position: CursorPosition): void;
|
|
52
|
+
onDrawingStarted(event: KeyboardBoxDrawEvent): void;
|
|
53
|
+
onDrawingUpdated(event: KeyboardBoxDrawEvent): void;
|
|
54
|
+
onDrawingConfirmed(event: KeyboardBoxDrawEvent): void;
|
|
55
|
+
onDrawingCancelled(): void;
|
|
56
|
+
private adjustForRotation;
|
|
43
57
|
private resetHighlight;
|
|
44
58
|
private highlightPage;
|
|
45
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<BoxHighlightCreateComponent, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"box-highlight-create.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,YAAY,EAAS,SAAS,EAAE,MAAM,EAAqB,MAAM,eAAe,CAAC;AAGjH,OAAO,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,8CAA8C,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC
|
|
1
|
+
{"version":3,"file":"box-highlight-create.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,YAAY,EAAS,SAAS,EAAE,MAAM,EAAqB,MAAM,eAAe,CAAC;AAGjH,OAAO,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,8CAA8C,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC;AAEhF,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;;AAErF,qBAIa,2BAA4B,YAAW,MAAM,EAAE,SAAS;IAqCvD,OAAO,CAAC,QAAQ,CAAC,aAAa;IACxC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IApC1B,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC;IAExC,aAAa;oBAAkC,SAAS,EAAE;cAAQ,MAAM;uBAAiB,MAAM;OAAM;IAEjE,SAAS,EAAE,UAAU,CAAC;IAClB,gBAAgB,EAAE,UAAU,CAAC;IAE/E,UAAU,SAAM;IAChB,UAAU,SAAM;IAEhB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,SAAU;IAEzB,QAAQ,EAAE,OAAO,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;IAEnB,mBAAmB,UAAS;IAC5B,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,UAAS;IAEnB,OAAO,CAAC,aAAa,CAAsB;gBAEd,aAAa,EAAE,mBAAmB,EAC5C,gBAAgB,EAAE,sBAAsB;IAE3D,QAAQ,IAAI,IAAI;IAoBhB,WAAW,IAAI,IAAI;IAMnB,OAAO,CAAC,mBAAmB;IAW3B,aAAa,CAAC,KAAK,EAAE,UAAU;IAwB/B,eAAe,CAAC,KAAK,EAAE,UAAU;IAajC,eAAe;IAWf,uBAAuB,CAAC,QAAQ,EAAE,cAAc,GAAG,IAAI;IAMvD,gBAAgB,CAAC,KAAK,EAAE,oBAAoB,GAAG,IAAI;IAgBnD,gBAAgB,CAAC,KAAK,EAAE,oBAAoB,GAAG,IAAI;IAKnD,kBAAkB,CAAC,KAAK,EAAE,oBAAoB,GAAG,IAAI;IAKrD,kBAAkB,IAAI,IAAI;IAK1B,OAAO,CAAC,iBAAiB;IAezB,OAAO,CAAC,cAAc;IAWtB,OAAO,CAAC,aAAa;yCA5LV,2BAA2B;2CAA3B,2BAA2B;CAmMvC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface KeyboardBoxDrawEvent {
|
|
4
|
+
startX: number;
|
|
5
|
+
startY: number;
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
}
|
|
9
|
+
export interface CursorPosition {
|
|
10
|
+
x: number;
|
|
11
|
+
y: number;
|
|
12
|
+
visible: boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class KeyboardBoxDrawDirective implements OnDestroy {
|
|
15
|
+
private elementRef;
|
|
16
|
+
set enabled(value: boolean);
|
|
17
|
+
get enabled(): boolean;
|
|
18
|
+
private _enabled;
|
|
19
|
+
minBoxSize: number;
|
|
20
|
+
incrementSmall: number;
|
|
21
|
+
incrementMedium: number;
|
|
22
|
+
incrementLarge: number;
|
|
23
|
+
drawingStarted: EventEmitter<KeyboardBoxDrawEvent>;
|
|
24
|
+
drawingUpdated: EventEmitter<KeyboardBoxDrawEvent>;
|
|
25
|
+
drawingConfirmed: EventEmitter<KeyboardBoxDrawEvent>;
|
|
26
|
+
drawingCancelled: EventEmitter<void>;
|
|
27
|
+
cursorPositionChanged: EventEmitter<CursorPosition>;
|
|
28
|
+
private isDrawing;
|
|
29
|
+
private cursorX;
|
|
30
|
+
private cursorY;
|
|
31
|
+
private showCursor;
|
|
32
|
+
private drawStartX;
|
|
33
|
+
private drawStartY;
|
|
34
|
+
private currentWidth;
|
|
35
|
+
private currentHeight;
|
|
36
|
+
private static lastInteractionWasKeyboard;
|
|
37
|
+
constructor(elementRef: ElementRef<HTMLElement>);
|
|
38
|
+
private static onGlobalKeyDown;
|
|
39
|
+
private static onGlobalMouseDown;
|
|
40
|
+
ngOnDestroy(): void;
|
|
41
|
+
private initializeCursorForKeyboard;
|
|
42
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
43
|
+
onBlur(): void;
|
|
44
|
+
private moveCursor;
|
|
45
|
+
private startDrawing;
|
|
46
|
+
private resizeBox;
|
|
47
|
+
private confirmDrawing;
|
|
48
|
+
private cancelDrawing;
|
|
49
|
+
private hideCursor;
|
|
50
|
+
private cleanup;
|
|
51
|
+
private emitCursorPosition;
|
|
52
|
+
private emitDrawingStarted;
|
|
53
|
+
private emitDrawingUpdated;
|
|
54
|
+
private emitDrawingConfirmed;
|
|
55
|
+
reset(): void;
|
|
56
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KeyboardBoxDrawDirective, never>;
|
|
57
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KeyboardBoxDrawDirective, "[mvKeyboardBoxDraw]", never, { "enabled": { "alias": "enabled"; "required": false; }; "minBoxSize": { "alias": "minBoxSize"; "required": false; }; "incrementSmall": { "alias": "incrementSmall"; "required": false; }; "incrementMedium": { "alias": "incrementMedium"; "required": false; }; "incrementLarge": { "alias": "incrementLarge"; "required": false; }; }, { "drawingStarted": "drawingStarted"; "drawingUpdated": "drawingUpdated"; "drawingConfirmed": "drawingConfirmed"; "drawingCancelled": "drawingCancelled"; "cursorPositionChanged": "cursorPositionChanged"; }, never, never, false, never>;
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=keyboard-box-draw.directive.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keyboard-box-draw.directive.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/box-highlight-create/keyboard-box-draw.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,YAAY,EAAuB,SAAS,EAAU,MAAM,eAAe,CAAC;;AAE5G,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,cAAc;IAC7B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,qBAGa,wBAAyB,YAAW,SAAS;IAoC5C,OAAO,CAAC,UAAU;IAlC9B,IAAa,OAAO,CAAC,KAAK,EAAE,OAAO,EAOlC;IACD,IAAI,OAAO,IAAI,OAAO,CAErB;IACD,OAAO,CAAC,QAAQ,CAAS;IAEhB,UAAU,SAAM;IAChB,cAAc,SAAK;IACnB,eAAe,SAAK;IACpB,cAAc,SAAM;IAEnB,cAAc,qCAA4C;IAC1D,cAAc,qCAA4C;IAC1D,gBAAgB,qCAA4C;IAC5D,gBAAgB,qBAA4B;IAC5C,qBAAqB,+BAAsC;IAErE,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,UAAU,CAAS;IAC3B,OAAO,CAAC,UAAU,CAAS;IAC3B,OAAO,CAAC,UAAU,CAAS;IAC3B,OAAO,CAAC,YAAY,CAAS;IAC7B,OAAO,CAAC,aAAa,CAAS;IAC9B,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAAS;gBAE9B,UAAU,EAAE,UAAU,CAAC,WAAW,CAAC;IAOvD,OAAO,CAAC,MAAM,CAAC,eAAe;IAI9B,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAIhC,WAAW,IAAI,IAAI;IAInB,OAAO,CAAC,2BAA2B;IAanC,SAAS,CAAC,KAAK,EAAE,aAAa,GAAG,IAAI;IA0CrC,MAAM,IAAI,IAAI;IAMd,OAAO,CAAC,UAAU;IAiClB,OAAO,CAAC,YAAY;IAyBpB,OAAO,CAAC,SAAS;IAwBjB,OAAO,CAAC,cAAc;IAKtB,OAAO,CAAC,aAAa;IAKrB,OAAO,CAAC,UAAU;IAKlB,OAAO,CAAC,OAAO;IAWf,OAAO,CAAC,kBAAkB;IAQ1B,OAAO,CAAC,kBAAkB;IAS1B,OAAO,CAAC,kBAAkB;IAS1B,OAAO,CAAC,oBAAoB;IASrB,KAAK,IAAI,IAAI;yCAnQT,wBAAwB;2CAAxB,wBAAwB;CAuQpC"}
|
|
@@ -8,7 +8,7 @@ export declare class HighlightCreateService {
|
|
|
8
8
|
private toolBarEvents;
|
|
9
9
|
private store;
|
|
10
10
|
constructor(toolBarEvents: ToolbarEventService, store: Store<fromStore.AnnotationSetState>);
|
|
11
|
-
saveAnnotation(rectangles: Rectangle[], page: number): void;
|
|
11
|
+
saveAnnotation(rectangles: Rectangle[], page: number, annotationId?: string): void;
|
|
12
12
|
saveAnnotationSet(searchRectangles: RedactRectangle[]): void;
|
|
13
13
|
applyRotation(pageHeight: any, pageWidth: any, offsetHeight: any, offsetWidth: any, offsetTop: any, offsetLeft: any, rotate: any, zoom: any): any;
|
|
14
14
|
resetHighlight(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"highlight-create.service.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAGlF,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAK5C,OAAO,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAC;AAC5E,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC;AAIjE,OAAO,EAAE,eAAe,EAAE,MAAM,iEAAiE,CAAC;;AAGlG,qBACa,sBAAsB;IAErB,OAAO,CAAC,aAAa;IAC/B,OAAO,CAAC,KAAK;gBADK,aAAa,EAAE,mBAAmB,EAC5C,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAEpD,cAAc,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,IAAI,EAAE,MAAM;
|
|
1
|
+
{"version":3,"file":"highlight-create.service.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-create/highlight-create/highlight-create.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAGlF,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAK5C,OAAO,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAC;AAC5E,OAAO,KAAK,SAAS,MAAM,qCAAqC,CAAC;AAIjE,OAAO,EAAE,eAAe,EAAE,MAAM,iEAAiE,CAAC;;AAGlG,qBACa,sBAAsB;IAErB,OAAO,CAAC,aAAa;IAC/B,OAAO,CAAC,KAAK;gBADK,aAAa,EAAE,mBAAmB,EAC5C,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAEpD,cAAc,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM;IAsB3E,iBAAiB,CAAC,gBAAgB,EAAE,eAAe,EAAE;IA0BrD,aAAa,CAAC,UAAU,KAAA,EAAE,SAAS,KAAA,EAAE,YAAY,KAAA,EAAE,WAAW,KAAA,EAAE,SAAS,KAAA,EAAE,UAAU,KAAA,EAAE,MAAM,KAAA,EAAE,IAAI,KAAA;IA6BnG,cAAc;yCAlFH,sBAAsB;6CAAtB,sBAAsB;CAsFlC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, ElementRef } from '@angular/core';
|
|
1
|
+
import { EventEmitter, ElementRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { Annotation } from './annotation.model';
|
|
3
3
|
import { Rectangle } from './rectangle/rectangle.model';
|
|
4
4
|
import { Store } from '@ngrx/store';
|
|
@@ -6,12 +6,15 @@ import * as fromStore from '../../../store/reducers/reducers';
|
|
|
6
6
|
import { SelectionAnnotation } from '../../models/event-select.model';
|
|
7
7
|
import { ToolbarEventService } from '../../../toolbar/toolbar-event.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class AnnotationViewComponent {
|
|
9
|
+
export declare class AnnotationViewComponent implements OnDestroy {
|
|
10
10
|
private readonly toolbarEvents;
|
|
11
11
|
private store;
|
|
12
12
|
set annotation(value: any);
|
|
13
13
|
anno: Annotation;
|
|
14
14
|
selected: boolean;
|
|
15
|
+
isKeyboardMoving: boolean;
|
|
16
|
+
showToolbar: boolean;
|
|
17
|
+
private showToolbarSubject;
|
|
15
18
|
zoom: number;
|
|
16
19
|
rotate: number;
|
|
17
20
|
set selectedAnnoId(selectedId: {
|
|
@@ -24,10 +27,13 @@ export declare class AnnotationViewComponent {
|
|
|
24
27
|
annotationClick: EventEmitter<SelectionAnnotation>;
|
|
25
28
|
container: ElementRef;
|
|
26
29
|
constructor(toolbarEvents: ToolbarEventService, store: Store<fromStore.AnnotationSetState>);
|
|
30
|
+
ngOnDestroy(): void;
|
|
31
|
+
private setShowToolbar;
|
|
27
32
|
onSelect(): void;
|
|
28
33
|
onRectangleUpdate(rectangle: Rectangle): void;
|
|
29
34
|
deleteHighlight(): void;
|
|
30
35
|
addOrEditComment(): void;
|
|
36
|
+
onKeyboardMovingChange(isMoving: boolean): void;
|
|
31
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationViewComponent, never>;
|
|
32
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<AnnotationViewComponent, "mv-annotation", never, { "annotation": { "alias": "annotation"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "selectedAnnoId": { "alias": "selectedAnnoId"; "required": false; }; "pageHeight": { "alias": "pageHeight"; "required": false; }; "pageWidth": { "alias": "pageWidth"; "required": false; }; }, { "update": "update"; "delete": "delete"; "annotationClick": "annotationClick"; }, never, never, false, never>;
|
|
33
39
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotation-view.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/annotation-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAA4B,UAAU,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"annotation-view.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/annotation-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAA4B,UAAU,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAEzG,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAExD,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAE9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;;AAI7E,qBAIa,uBAAwB,YAAW,SAAS;IAiCrD,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IAhCf,IAAa,UAAU,CAAC,KAAK,KAAA,EAE5B;IACD,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EAAE,OAAO,CAAC;IAClB,gBAAgB,UAAS;IACzB,WAAW,UAAS;IACpB,OAAO,CAAC,kBAAkB,CAA0B;IAE3C,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACxB,IAAa,cAAc,CAAC,UAAU,EAAE;QAAE,YAAY,EAAE,MAAM,CAAA;KAAE,EAU/D;IACQ,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IACjB,MAAM,2BAAkC;IACxC,MAAM,2BAAkC;IACxC,eAAe,oCAA2C;IAEzB,SAAS,EAAE,UAAU,CAAC;gBAG9C,aAAa,EAAE,mBAAmB,EAC3C,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC;IASpD,WAAW,IAAI,IAAI;IAInB,OAAO,CAAC,cAAc;IAIf,QAAQ;IASR,iBAAiB,CAAC,SAAS,EAAE,SAAS;IAOtC,eAAe;IAIf,gBAAgB;IA2BhB,sBAAsB,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI;yCAlG3C,uBAAuB;2CAAvB,uBAAuB;CA4GnC"}
|
package/lib/annotations/annotation-set/annotation-view/rectangle/keyboard-box-move.directive.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface BoxMovementBounds {
|
|
4
|
+
containerWidth: number;
|
|
5
|
+
containerHeight: number;
|
|
6
|
+
}
|
|
7
|
+
export declare class KeyboardBoxMoveDirective implements OnDestroy {
|
|
8
|
+
private elementRef;
|
|
9
|
+
enabled: boolean;
|
|
10
|
+
incrementSmall: number;
|
|
11
|
+
incrementLarge: number;
|
|
12
|
+
movementBounds: BoxMovementBounds;
|
|
13
|
+
keyboardMovingChange: EventEmitter<boolean>;
|
|
14
|
+
boxDelete: EventEmitter<void>;
|
|
15
|
+
private moveSubject;
|
|
16
|
+
private moveSubscription;
|
|
17
|
+
private isMoving;
|
|
18
|
+
constructor(elementRef: ElementRef<HTMLElement>);
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
21
|
+
private moveBox;
|
|
22
|
+
private setMoving;
|
|
23
|
+
private emitStoppedEvent;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KeyboardBoxMoveDirective, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KeyboardBoxMoveDirective, "[mvKeyboardBoxMove]", never, { "enabled": { "alias": "enabled"; "required": false; }; "incrementSmall": { "alias": "incrementSmall"; "required": false; }; "incrementLarge": { "alias": "incrementLarge"; "required": false; }; "movementBounds": { "alias": "movementBounds"; "required": false; }; }, { "keyboardMovingChange": "keyboardMovingChange"; "boxDelete": "boxDelete"; }, never, never, false, never>;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=keyboard-box-move.directive.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keyboard-box-move.directive.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/rectangle/keyboard-box-move.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,YAAY,EAAuB,SAAS,EAAU,MAAM,eAAe,CAAC;;AAI5G,MAAM,WAAW,iBAAiB;IAChC,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,qBAGa,wBAAyB,YAAW,SAAS;IAc5C,OAAO,CAAC,UAAU;IAZrB,OAAO,UAAQ;IACf,cAAc,SAAK;IACnB,cAAc,SAAM;IACpB,cAAc,EAAE,iBAAiB,CAAC;IAEjC,oBAAoB,wBAA+B;IACnD,SAAS,qBAA4B;IAE/C,OAAO,CAAC,WAAW,CAAuB;IAC1C,OAAO,CAAC,gBAAgB,CAAe;IACvC,OAAO,CAAC,QAAQ,CAAS;gBAEL,UAAU,EAAE,UAAU,CAAC,WAAW,CAAC;IASvD,WAAW,IAAI,IAAI;IAQnB,SAAS,CAAC,KAAK,EAAE,aAAa,GAAG,IAAI;IAmBrC,OAAO,CAAC,OAAO;IA0Cf,OAAO,CAAC,SAAS;IAOjB,OAAO,CAAC,gBAAgB;yCAnGb,wBAAwB;2CAAxB,wBAAwB;CAoHpC"}
|
|
@@ -2,6 +2,7 @@ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy, SimpleCh
|
|
|
2
2
|
import { Rectangle } from './rectangle.model';
|
|
3
3
|
import { ToolbarEventService } from '../../../../toolbar/toolbar-event.service';
|
|
4
4
|
import { HighlightCreateService } from '../../annotation-create/highlight-create/highlight-create.service';
|
|
5
|
+
import { BoxMovementBounds } from './keyboard-box-move.directive';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class RectangleComponent implements OnChanges, AfterViewInit, OnDestroy {
|
|
7
8
|
private readonly toolbarEvents;
|
|
@@ -12,8 +13,11 @@ export declare class RectangleComponent implements OnChanges, AfterViewInit, OnD
|
|
|
12
13
|
editable: boolean;
|
|
13
14
|
pageHeight: number;
|
|
14
15
|
pageWidth: number;
|
|
16
|
+
rectangleTabIndex: number;
|
|
15
17
|
selectEvent: EventEmitter<Rectangle>;
|
|
16
18
|
updateEvent: EventEmitter<Rectangle>;
|
|
19
|
+
deleteEvent: EventEmitter<Rectangle>;
|
|
20
|
+
keyboardMovingChange: EventEmitter<boolean>;
|
|
17
21
|
viewRect: ElementRef;
|
|
18
22
|
private subscriptions;
|
|
19
23
|
_selected: boolean;
|
|
@@ -22,6 +26,7 @@ export declare class RectangleComponent implements OnChanges, AfterViewInit, OnD
|
|
|
22
26
|
width: number;
|
|
23
27
|
top: number;
|
|
24
28
|
left: number;
|
|
29
|
+
movementBounds: BoxMovementBounds;
|
|
25
30
|
_annoRect: Rectangle;
|
|
26
31
|
set annoRect(annoRect: Rectangle);
|
|
27
32
|
get annoRect(): Rectangle;
|
|
@@ -32,10 +37,14 @@ export declare class RectangleComponent implements OnChanges, AfterViewInit, OnD
|
|
|
32
37
|
set selected(selected: boolean);
|
|
33
38
|
get selected(): boolean;
|
|
34
39
|
onClick(): void;
|
|
40
|
+
onFocus(): void;
|
|
35
41
|
onUpdate(viewRect: any): void;
|
|
36
42
|
adjustForRotation(rotation: number): void;
|
|
37
43
|
hasRectangleChanged(viewRect: any): boolean;
|
|
44
|
+
private updateMovementBounds;
|
|
45
|
+
onKeyboardMovingChange(isMoving: boolean): void;
|
|
46
|
+
onDelete(): void;
|
|
38
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<RectangleComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RectangleComponent, "mv-anno-rectangle", never, { "color": { "alias": "color"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "pageHeight": { "alias": "pageHeight"; "required": false; }; "pageWidth": { "alias": "pageWidth"; "required": false; }; "annoRect": { "alias": "annoRect"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "selectEvent": "selectEvent"; "updateEvent": "updateEvent"; }, never, never, false, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RectangleComponent, "mv-anno-rectangle", never, { "color": { "alias": "color"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "pageHeight": { "alias": "pageHeight"; "required": false; }; "pageWidth": { "alias": "pageWidth"; "required": false; }; "rectangleTabIndex": { "alias": "rectangleTabIndex"; "required": false; }; "annoRect": { "alias": "annoRect"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "selectEvent": "selectEvent"; "updateEvent": "updateEvent"; "deleteEvent": "deleteEvent"; "keyboardMovingChange": "keyboardMovingChange"; }, never, never, false, never>;
|
|
40
49
|
}
|
|
41
50
|
//# sourceMappingURL=rectangle.component.d.ts.map
|
package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rectangle.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,SAAS,EAET,aAAa,EAEd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAE9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC;AAChF,OAAO,EAAE,sBAAsB,EAAE,MAAM,mEAAmE,CAAC;;
|
|
1
|
+
{"version":3,"file":"rectangle.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,SAAS,EAET,aAAa,EAEd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAE9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC;AAChF,OAAO,EAAE,sBAAsB,EAAE,MAAM,mEAAmE,CAAC;AAC3G,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;;AAElE,qBAIa,kBAAmB,YAAW,SAAS,EAAE,aAAa,EAAE,SAAS;IA2ChE,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IA1CpC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,iBAAiB,EAAE,MAAM,CAAK;IAE7B,WAAW,0BAAiC;IAC5C,WAAW,0BAAiC;IAC5C,WAAW,0BAAiC;IAC5C,oBAAoB,wBAA+B;IAElB,QAAQ,EAAE,UAAU,CAAC;IAEhE,OAAO,CAAC,aAAa,CAAsB;IAC3C,SAAS,EAAE,OAAO,CAAC;IACnB,eAAe,UAAS;IAExB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IAEb,cAAc,EAAE,iBAAiB,CAAC;IAElC,SAAS,EAAE,SAAS,CAAC;IACrB,IACI,QAAQ,CAAC,QAAQ,EAAE,SAAS,EAM/B;IAED,IAAI,QAAQ,IARW,SAAS,CAU/B;gBAG4B,aAAa,EAAE,mBAAmB,EAClC,gBAAgB,EAAE,sBAAsB;IAErE,WAAW,CAAC,OAAO,EAAE,aAAa;IASlC,eAAe;IAWf,WAAW,IAAI,IAAI;IAKnB,IACI,QAAQ,CAAC,QAAQ,EAAE,OAAO,EAK7B;IAED,IAAI,QAAQ,IAPW,OAAO,CAS7B;IAED,OAAO;IAIP,OAAO;IAIP,QAAQ,CAAC,QAAQ,EAAE,GAAG;IAUtB,iBAAiB,CAAC,QAAQ,EAAE,MAAM;IAsBlC,mBAAmB,CAAC,QAAQ,KAAA,GAAG,OAAO;IAOtC,OAAO,CAAC,oBAAoB;IAS5B,sBAAsB,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI;IAI/C,QAAQ,IAAI,IAAI;yCA/IL,kBAAkB;2CAAlB,kBAAkB;CAoJ9B"}
|
|
@@ -27,9 +27,10 @@ export declare class MetadataLayerComponent implements OnInit, OnDestroy {
|
|
|
27
27
|
clearContextToolbar(): void;
|
|
28
28
|
createHighlight(): void;
|
|
29
29
|
createBookmark(rectangle: Rectangle): void;
|
|
30
|
-
saveAnnotation({ rectangles, page }: {
|
|
30
|
+
saveAnnotation({ rectangles, page, annotationId }: {
|
|
31
31
|
rectangles: Rectangle[];
|
|
32
32
|
page: any;
|
|
33
|
+
annotationId?: string;
|
|
33
34
|
}): void;
|
|
34
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataLayerComponent, never>;
|
|
35
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataLayerComponent, "mv-metadata-layer", never, { "zoom": { "alias": "zoom"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metadata-layer.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAG9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,gEAAgE,CAAC;AACxG,OAAO,EAAE,SAAS,EAAE,MAAM,8CAA8C,CAAC;AAGzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;;AAEtF,qBAIa,sBAAuB,YAAW,MAAM,EAAE,SAAS;IAe5D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAhBtB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IAExB,KAAK,EAAE,GAAG,EAAE,CAAM;IAClB,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IAE5B,QAAQ,UAAS;IACjB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,SAAS,EAAE,CAAC;IAExB,OAAO,CAAC,cAAc,CAAe;gBAG3B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,gBAAgB,EAAE,sBAAsB,EACxC,aAAa,EAAE,mBAAmB,EAClC,YAAY,EAAE,kBAAkB;IAEnD,QAAQ,IAAI,IAAI;IAUhB,WAAW,IAAI,IAAI;IAInB,kBAAkB,CAAC,SAAS,EAAE,SAAS;IAQvC,mBAAmB;IAInB,eAAe;IAMf,cAAc,CAAC,SAAS,EAAE,SAAS;IAoBnC,cAAc,CAAC,EAAE,UAAU,EAAE,IAAI,EAAE,EAAE;QAAE,UAAU,EAAE,SAAS,EAAE,CAAC;QAAC,IAAI,EAAE,GAAG,CAAA;KAAE;
|
|
1
|
+
{"version":3,"file":"metadata-layer.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,KAAK,SAAS,MAAM,kCAAkC,CAAC;AAG9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,gEAAgE,CAAC;AACxG,OAAO,EAAE,SAAS,EAAE,MAAM,8CAA8C,CAAC;AAGzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;;AAEtF,qBAIa,sBAAuB,YAAW,MAAM,EAAE,SAAS;IAe5D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAhBtB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IAExB,KAAK,EAAE,GAAG,EAAE,CAAM;IAClB,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IAE5B,QAAQ,UAAS;IACjB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,SAAS,EAAE,CAAC;IAExB,OAAO,CAAC,cAAc,CAAe;gBAG3B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,kBAAkB,CAAC,EACjC,gBAAgB,EAAE,sBAAsB,EACxC,aAAa,EAAE,mBAAmB,EAClC,YAAY,EAAE,kBAAkB;IAEnD,QAAQ,IAAI,IAAI;IAUhB,WAAW,IAAI,IAAI;IAInB,kBAAkB,CAAC,SAAS,EAAE,SAAS;IAQvC,mBAAmB;IAInB,eAAe;IAMf,cAAc,CAAC,SAAS,EAAE,SAAS;IAoBnC,cAAc,CAAC,EAAE,UAAU,EAAE,IAAI,EAAE,YAAY,EAAE,EAAE;QAAE,UAAU,EAAE,SAAS,EAAE,CAAC;QAAC,IAAI,EAAE,GAAG,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAA;KAAE;yCAxErG,sBAAsB;2CAAtB,sBAAsB;CA4ElC"}
|
|
@@ -18,19 +18,21 @@ import * as i16 from "./pipes/date/date.pipe";
|
|
|
18
18
|
import * as i17 from "./comment-set/comment-set-header/comment-filter/comment-filter.component";
|
|
19
19
|
import * as i18 from "./pipes/filter/filter.pipe";
|
|
20
20
|
import * as i19 from "./pipes/unsnake/unsnake.pipe";
|
|
21
|
-
import * as i20 from "
|
|
22
|
-
import * as i21 from "
|
|
23
|
-
import * as i22 from "@angular/
|
|
24
|
-
import * as i23 from "@angular/common
|
|
25
|
-
import * as i24 from "
|
|
26
|
-
import * as i25 from "
|
|
27
|
-
import * as i26 from "
|
|
28
|
-
import * as i27 from "
|
|
29
|
-
import * as i28 from "
|
|
30
|
-
import * as i29 from "
|
|
21
|
+
import * as i20 from "./annotation-set/annotation-create/box-highlight-create/keyboard-box-draw.directive";
|
|
22
|
+
import * as i21 from "./annotation-set/annotation-view/rectangle/keyboard-box-move.directive";
|
|
23
|
+
import * as i22 from "@angular/cdk/a11y";
|
|
24
|
+
import * as i23 from "@angular/common";
|
|
25
|
+
import * as i24 from "@angular/forms";
|
|
26
|
+
import * as i25 from "@angular/common/http";
|
|
27
|
+
import * as i26 from "mutable-div";
|
|
28
|
+
import * as i27 from "ngx-chips";
|
|
29
|
+
import * as i28 from "@angular/router";
|
|
30
|
+
import * as i29 from "@swimlane/ngx-datatable";
|
|
31
|
+
import * as i30 from "../shared/shared.module";
|
|
32
|
+
import * as i31 from "rpx-xui-translation";
|
|
31
33
|
export declare class AnnotationsModule {
|
|
32
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationsModule, never>;
|
|
33
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AnnotationsModule, [typeof i1.MetadataLayerComponent, typeof i2.AnnotationViewComponent, typeof i3.BoxHighlightCreateComponent, typeof i4.AnnotationSetComponent, typeof i5.RectangleComponent, typeof i6.CommentComponent, typeof i7.CommentSetHeaderComponent, typeof i8.CommentSearchComponent, typeof i9.TextHighlightDirective, typeof i10.CtxToolbarComponent, typeof i11.CommentSetComponent, typeof i12.CommentsNavigateComponent, typeof i13.TextareaAutoExpandDirective, typeof i14.CommentsSummaryComponent, typeof i15.TagsComponent, typeof i16.MomentDatePipe, typeof i17.CommentFilterComponent, typeof i18.FilterPipe, typeof i19.UnsnakePipe], [typeof
|
|
35
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnnotationsModule, [typeof i1.MetadataLayerComponent, typeof i2.AnnotationViewComponent, typeof i3.BoxHighlightCreateComponent, typeof i4.AnnotationSetComponent, typeof i5.RectangleComponent, typeof i6.CommentComponent, typeof i7.CommentSetHeaderComponent, typeof i8.CommentSearchComponent, typeof i9.TextHighlightDirective, typeof i10.CtxToolbarComponent, typeof i11.CommentSetComponent, typeof i12.CommentsNavigateComponent, typeof i13.TextareaAutoExpandDirective, typeof i14.CommentsSummaryComponent, typeof i15.TagsComponent, typeof i16.MomentDatePipe, typeof i17.CommentFilterComponent, typeof i18.FilterPipe, typeof i19.UnsnakePipe, typeof i20.KeyboardBoxDrawDirective, typeof i21.KeyboardBoxMoveDirective], [typeof i22.A11yModule, typeof i23.CommonModule, typeof i24.FormsModule, typeof i25.HttpClientModule, typeof i26.MutableDivModule, typeof i27.TagInputModule, typeof i28.RouterModule, typeof i24.ReactiveFormsModule, typeof i29.NgxDatatableModule, typeof i30.SharedModule, typeof i31.RpxTranslationModule], [typeof i2.AnnotationViewComponent, typeof i3.BoxHighlightCreateComponent, typeof i4.AnnotationSetComponent, typeof i11.CommentSetComponent, typeof i7.CommentSetHeaderComponent, typeof i8.CommentSearchComponent, typeof i14.CommentsSummaryComponent, typeof i15.TagsComponent, typeof i17.CommentFilterComponent, typeof i16.MomentDatePipe, typeof i18.FilterPipe, typeof i19.UnsnakePipe, typeof i1.MetadataLayerComponent]>;
|
|
34
36
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnnotationsModule>;
|
|
35
37
|
}
|
|
36
38
|
//# sourceMappingURL=annotations.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotations.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/annotations/annotations.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"annotations.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/annotations/annotations.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyCA,qBA6Da,iBAAiB;yCAAjB,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAAI"}
|
|
@@ -71,8 +71,9 @@ export declare class SaveAnnotationSetFail implements Action {
|
|
|
71
71
|
}
|
|
72
72
|
export declare class SaveAnnotation implements Action {
|
|
73
73
|
payload: Annotation;
|
|
74
|
+
autoSelect?: boolean;
|
|
74
75
|
readonly type = "[Annotations] Save Annotation";
|
|
75
|
-
constructor(payload: Annotation);
|
|
76
|
+
constructor(payload: Annotation, autoSelect?: boolean);
|
|
76
77
|
}
|
|
77
78
|
export declare class SaveAnnotationSuccess implements Action {
|
|
78
79
|
payload: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotation.actions.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/actions/annotation.actions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,mEAAmE,CAAC;AAC/F,OAAO,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAClF,OAAO,EAAE,aAAa,EAAE,MAAM,uDAAuD,CAAC;AACtF,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,qDAAqD,CAAC;AAE9E,eAAO,MAAM,mBAAmB,sCAAsC,CAAC;AACvE,eAAO,MAAM,2BAA2B,8CAA8C,CAAC;AACvF,eAAO,MAAM,wBAAwB,2CAA2C,CAAC;AAEjF,eAAO,MAAM,mBAAmB,sCAAsC,CAAC;AACvE,eAAO,MAAM,2BAA2B,8CAA8C,CAAC;AACvF,eAAO,MAAM,wBAAwB,2CAA2C,CAAC;AAEjF,eAAO,MAAM,eAAe,kCAAkC,CAAC;AAC/D,eAAO,MAAM,uBAAuB,0CAA0C,CAAC;AAC/E,eAAO,MAAM,oBAAoB,uCAAuC,CAAC;AACzE,eAAO,MAAM,mBAAmB,sCAAsC,CAAC;AAEvE,eAAO,MAAM,iBAAiB,oCAAoC,CAAC;AACnE,eAAO,MAAM,yBAAyB,4CAA4C,CAAC;AACnF,eAAO,MAAM,sBAAsB,yCAAyC,CAAC;AAE7E,eAAO,MAAM,iBAAiB,oCAAoC,CAAC;AACnE,eAAO,MAAM,cAAc,+BAA+B,CAAC;AAC3D,eAAO,MAAM,4BAA4B,4CAA4C,CAAC;AACtF,eAAO,MAAM,4BAA4B,4CAA4C,CAAC;AAEtF,qBAAa,iBAAkB,YAAW,MAAM;IAE3B,OAAO,EAAE,MAAM;IADlC,QAAQ,CAAC,IAAI,uCAAuB;gBACjB,OAAO,EAAE,MAAM;CACnC;AAED,qBAAa,iBAAkB,YAAW,MAAM;IAE3B,OAAO,EAAE,aAAa;IADzC,QAAQ,CAAC,IAAI,uCAAuB;gBACjB,OAAO,EAAE,aAAa;CAC1C;AAED,qBAAa,uBAAwB,YAAW,MAAM;IAEjC,OAAO,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,aAAa,CAAA;KAAE;IADnE,QAAQ,CAAC,IAAI,+CAA+B;gBACzB,OAAO,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,aAAa,CAAA;KAAE;CACpE;AAED,qBAAa,wBAAyB,YAAW,MAAM;IAElC,OAAO,EAAE,aAAa;IADzC,QAAQ,CAAC,IAAI,+CAA+B;gBACzB,OAAO,EAAE,aAAa;CAC1C;AAED,qBAAa,qBAAsB,YAAW,MAAM;IAE/B,OAAO,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,GAAG,CAAA;KAAE;IADzD,QAAQ,CAAC,IAAI,4CAA4B;gBACtB,OAAO,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,GAAG,CAAA;KAAE;CAC1D;AAED,qBAAa,qBAAsB,YAAW,MAAM;IAE/B,OAAO,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,GAAG,CAAA;KAAE;IADzD,QAAQ,CAAC,IAAI,4CAA4B;gBACtB,OAAO,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,GAAG,CAAA;KAAE;CAC1D;AAED,qBAAa,cAAe,YAAW,MAAM;IAExB,OAAO,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"annotation.actions.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/actions/annotation.actions.ts"],"names":[],"mappings":"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"}
|
|
@@ -10,6 +10,7 @@ export declare class AnnotationEffects {
|
|
|
10
10
|
postAnnotation$: import("rxjs").Observable<annotationsActions.LoadAnnotationSetFail | annotationsActions.SaveAnnotationSuccess> & import("@ngrx/effects").CreateEffectMetadata;
|
|
11
11
|
deleteAnnotation$: import("rxjs").Observable<annotationsActions.DeleteAnnotationSuccess | annotationsActions.DeleteAnnotationFail> & import("@ngrx/effects").CreateEffectMetadata;
|
|
12
12
|
saveAnnotationSet$: import("rxjs").Observable<annotationsActions.SaveAnnotationSetSuccess | annotationsActions.SaveAnnotationSetFail> & import("@ngrx/effects").CreateEffectMetadata;
|
|
13
|
+
autoSelectAnnotation$: import("rxjs").Observable<annotationsActions.SelectedAnnotation> & import("@ngrx/effects").CreateEffectMetadata;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationEffects, never>;
|
|
14
15
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnnotationEffects>;
|
|
15
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotation.effects.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/effects/annotation.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAC;AAG9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,kEAAkE,CAAC;AACxG,OAAO,KAAK,kBAAkB,MAAM,+BAA+B,CAAC;;AAEpE,qBACa,iBAAiB;IAE1B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,oBAAoB;gBADpB,QAAQ,EAAE,OAAO,EACjB,oBAAoB,EAAE,oBAAoB;IAGpD,eAAe,kKAgBb;IAEF,eAAe,
|
|
1
|
+
{"version":3,"file":"annotation.effects.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/store/effects/annotation.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAC;AAG9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,kEAAkE,CAAC;AACxG,OAAO,KAAK,kBAAkB,MAAM,+BAA+B,CAAC;;AAEpE,qBACa,iBAAiB;IAE1B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,oBAAoB;gBADpB,QAAQ,EAAE,OAAO,EACjB,oBAAoB,EAAE,oBAAoB;IAGpD,eAAe,kKAgBb;IAEF,eAAe,gKAeb;IAEF,iBAAiB,iKAaf;IAEF,kBAAkB,mKAahB;IAEF,qBAAqB,kHAYnB;yCAnFS,iBAAiB;6CAAjB,iBAAiB;CAoF7B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"side-bar.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/side-bar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAA6D,SAAS,EAAE,SAAS,EAAE,MAAM,EAAE,aAAa,EAAa,MAAM,eAAe,CAAC;AAClJ,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAChD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,YAAY,EAAE,MAAM,2CAA2C,CAAC;AAIzE,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAC;AAC3E,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;;AAErE,qBAIa,gBAAiB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;IAoBvD,OAAO,CAAC,YAAY;IAC9B,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,aAAa;IApBvB,kBAAkB,EAAE,OAAO,CAAC;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,iBAAiB,EAAE,MAAM,CAAC;IAGnC,SAAS,EAAE,kBAAkB,CAAC;IAC9B,WAAW,EAAE,OAAO,CAAS;IAC7B,YAAY,SAAa;IACzB,cAAc,EAAE,UAAU,CAAC,YAAY,EAAE,CAAC,CAAC;IAC3C,SAAS,EAAE,GAAG,CAAC;IACf,WAAW,EAAE,GAAG,CAAC;IAEjB,OAAO,CAAC,aAAa,CAAsB;IACrB,UAAU,MAAC;gBAEb,YAAY,EAAE,kBAAkB,EAC1C,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,EACnB,aAAa,EAAE,mBAAmB;IAGrD,QAAQ,IAAI,IAAI;
|
|
1
|
+
{"version":3,"file":"side-bar.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/side-bar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAA6D,SAAS,EAAE,SAAS,EAAE,MAAM,EAAE,aAAa,EAAa,MAAM,eAAe,CAAC;AAClJ,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,EAAE,UAAU,EAAgB,MAAM,MAAM,CAAC;AAChD,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,YAAY,EAAE,MAAM,2CAA2C,CAAC;AAIzE,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAC;AAC3E,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;;AAErE,qBAIa,gBAAiB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS;IAoBvD,OAAO,CAAC,YAAY;IAC9B,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ,CAAC,aAAa;IApBvB,kBAAkB,EAAE,OAAO,CAAC;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,iBAAiB,EAAE,MAAM,CAAC;IAGnC,SAAS,EAAE,kBAAkB,CAAC;IAC9B,WAAW,EAAE,OAAO,CAAS;IAC7B,YAAY,SAAa;IACzB,cAAc,EAAE,UAAU,CAAC,YAAY,EAAE,CAAC,CAAC;IAC3C,SAAS,EAAE,GAAG,CAAC;IACf,WAAW,EAAE,GAAG,CAAC;IAEjB,OAAO,CAAC,aAAa,CAAsB;IACrB,UAAU,MAAC;gBAEb,YAAY,EAAE,kBAAkB,EAC1C,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,EACnB,aAAa,EAAE,mBAAmB;IAGrD,QAAQ,IAAI,IAAI;IAmBhB,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAMzC,WAAW,IAAI,IAAI;IAMZ,QAAQ,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAOjC,eAAe,CAAC,WAAW,EAAE,GAAG,EAAE;IAIlC,cAAc,CAAC,KAAK,EAAE,OAAO;IAI7B,iBAAiB,CAAC,WAAW,EAAE,MAAM;IAIrC,YAAY,CAAC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,OAAO,GAAG,OAAO;IAQtD,WAAW,CAAC,IAAI,EAAE,OAAO,GAAG,MAAM;yCAnFvB,gBAAgB;2CAAhB,gBAAgB;CAsF5B"}
|