@hmcts/media-viewer 4.1.8-exui-2600-1 → 4.1.8-exui-2986-7
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/all.scss +1 -0
- package/assets/sass/box-highlight.scss +0 -38
- package/assets/sass/tooltip.scss +50 -0
- package/esm2022/lib/annotations/annotation-set/annotation-create/box-highlight-create/box-highlight-create.component.mjs +19 -74
- 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 +3 -37
- package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.mjs +3 -39
- package/esm2022/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.mjs +3 -3
- package/esm2022/lib/annotations/annotations.module.mjs +3 -9
- package/esm2022/lib/shared/directives/tooltip-dismiss.directive.mjs +36 -0
- package/esm2022/lib/store/actions/annotation.actions.mjs +2 -3
- package/esm2022/lib/store/effects/annotation.effects.mjs +3 -13
- package/esm2022/lib/toolbar/highlight-toolbar/highlight-toolbar.component.mjs +6 -4
- package/esm2022/lib/toolbar/main-toolbar/main-toolbar.component.mjs +5 -4
- package/esm2022/lib/toolbar/redaction-toolbar/redaction-toolbar.component.mjs +5 -4
- package/esm2022/lib/toolbar/toolbar.module.mjs +7 -4
- package/fesm2022/hmcts-media-viewer.mjs +78 -552
- 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 +2 -16
- 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/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 +2 -8
- package/lib/annotations/annotation-set/annotation-view/annotation-view.component.d.ts.map +1 -1
- package/lib/annotations/annotation-set/annotation-view/rectangle/rectangle.component.d.ts +1 -10
- 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 +1 -2
- package/lib/annotations/annotation-set/metadata-layer/metadata-layer.component.d.ts.map +1 -1
- package/lib/annotations/annotations.module.d.ts +11 -13
- package/lib/annotations/annotations.module.d.ts.map +1 -1
- package/lib/shared/directives/tooltip-dismiss.directive.d.ts +11 -0
- package/lib/shared/directives/tooltip-dismiss.directive.d.ts.map +1 -0
- package/lib/store/actions/annotation.actions.d.ts +1 -2
- package/lib/store/actions/annotation.actions.d.ts.map +1 -1
- package/lib/store/effects/annotation.effects.d.ts +0 -1
- package/lib/store/effects/annotation.effects.d.ts.map +1 -1
- package/lib/toolbar/toolbar.module.d.ts +7 -6
- package/lib/toolbar/toolbar.module.d.ts.map +1 -1
- package/package.json +1 -1
- package/esm2022/lib/annotations/annotation-set/annotation-create/box-highlight-create/keyboard-box-draw.directive.mjs +0 -258
- package/esm2022/lib/annotations/annotation-set/annotation-view/rectangle/keyboard-box-move.directive.mjs +0 -122
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/keyboard-box-draw.directive.d.ts +0 -59
- package/lib/annotations/annotation-set/annotation-create/box-highlight-create/keyboard-box-draw.directive.d.ts.map +0 -1
- package/lib/annotations/annotation-set/annotation-view/rectangle/keyboard-box-move.directive.d.ts +0 -27
- package/lib/annotations/annotation-set/annotation-view/rectangle/keyboard-box-move.directive.d.ts.map +0 -1
|
@@ -2,7 +2,6 @@ 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';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class BoxHighlightCreateComponent implements OnInit, OnDestroy {
|
|
8
7
|
private readonly toolbarEvents;
|
|
@@ -19,10 +18,8 @@ export declare class BoxHighlightCreateComponent implements OnInit, OnDestroy {
|
|
|
19
18
|
saveSelection: EventEmitter<{
|
|
20
19
|
rectangles: Rectangle[];
|
|
21
20
|
page: number;
|
|
22
|
-
annotationId?: string;
|
|
23
21
|
}>;
|
|
24
22
|
highlight: ElementRef;
|
|
25
|
-
drawingContainer: ElementRef;
|
|
26
23
|
drawStartX: number;
|
|
27
24
|
drawStartY: number;
|
|
28
25
|
top: number;
|
|
@@ -30,30 +27,19 @@ export declare class BoxHighlightCreateComponent implements OnInit, OnDestroy {
|
|
|
30
27
|
height: number;
|
|
31
28
|
width: number;
|
|
32
29
|
display: string;
|
|
33
|
-
position: string;
|
|
34
|
-
backgroundColor: string;
|
|
35
30
|
drawMode: boolean;
|
|
36
31
|
defaultHeight: string;
|
|
37
32
|
defaultWidth: string;
|
|
33
|
+
position: string;
|
|
34
|
+
backgroundColor: string;
|
|
38
35
|
wholePage: boolean;
|
|
39
|
-
keyboardDrawingMode: boolean;
|
|
40
|
-
cursorX: number;
|
|
41
|
-
cursorY: number;
|
|
42
|
-
showCursor: boolean;
|
|
43
36
|
private subscriptions;
|
|
44
37
|
constructor(toolbarEvents: ToolbarEventService, highlightService: HighlightCreateService);
|
|
45
38
|
ngOnInit(): void;
|
|
46
39
|
ngOnDestroy(): void;
|
|
47
|
-
private isElementInViewport;
|
|
48
40
|
initHighlight(event: MouseEvent): void;
|
|
49
41
|
updateHighlight(event: MouseEvent): void;
|
|
50
42
|
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;
|
|
57
43
|
private resetHighlight;
|
|
58
44
|
private highlightPage;
|
|
59
45
|
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,qBAIa,2BAA4B,YAAW,MAAM,EAAE,SAAS;IA6BvD,OAAO,CAAC,QAAQ,CAAC,aAAa;IACxC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IA5B1B,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;OAAM;IAE1C,SAAS,EAAE,UAAU,CAAC;IAEpE,UAAU,SAAM;IAChB,UAAU,SAAM;IAChB,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,OAAO,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,SAAU;IACzB,SAAS,EAAE,OAAO,CAAC;IAEnB,OAAO,CAAC,aAAa,CAAsB;gBAEd,aAAa,EAAE,mBAAmB,EAC5C,gBAAgB,EAAE,sBAAsB;IAE3D,QAAQ,IAAI,IAAI;IAYhB,WAAW,IAAI,IAAI;IAMnB,aAAa,CAAC,KAAK,EAAE,UAAU;IAoC/B,eAAe,CAAC,KAAK,EAAE,UAAU;IAYjC,eAAe;IAWf,OAAO,CAAC,cAAc;IAWtB,OAAO,CAAC,aAAa;yCAxHV,2BAA2B;2CAA3B,2BAA2B;CA+HvC"}
|
|
@@ -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
|
|
11
|
+
saveAnnotation(rectangles: Rectangle[], page: number): 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;IAsBpD,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
|
|
1
|
+
import { EventEmitter, ElementRef } 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,15 +6,12 @@ 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 {
|
|
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;
|
|
18
15
|
zoom: number;
|
|
19
16
|
rotate: number;
|
|
20
17
|
set selectedAnnoId(selectedId: {
|
|
@@ -27,13 +24,10 @@ export declare class AnnotationViewComponent implements OnDestroy {
|
|
|
27
24
|
annotationClick: EventEmitter<SelectionAnnotation>;
|
|
28
25
|
container: ElementRef;
|
|
29
26
|
constructor(toolbarEvents: ToolbarEventService, store: Store<fromStore.AnnotationSetState>);
|
|
30
|
-
ngOnDestroy(): void;
|
|
31
|
-
private setShowToolbar;
|
|
32
27
|
onSelect(): void;
|
|
33
28
|
onRectangleUpdate(rectangle: Rectangle): void;
|
|
34
29
|
deleteHighlight(): void;
|
|
35
30
|
addOrEditComment(): void;
|
|
36
|
-
onKeyboardMovingChange(isMoving: boolean): void;
|
|
37
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationViewComponent, never>;
|
|
38
32
|
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>;
|
|
39
33
|
}
|
|
@@ -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,
|
|
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;AAE9F,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;;AAG7E,qBAIa,uBAAuB;IAwBhC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,KAAK;IAvBf,IAAa,UAAU,CAAC,KAAK,KAAA,EAE5B;IACD,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EAAE,OAAO,CAAC;IACT,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACxB,IAAa,cAAc,CAAC,UAAU,EAAE;QAAE,YAAY,EAAE,MAAM,CAAA;KAAE,EAK/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;IAG7C,QAAQ;IAKR,iBAAiB,CAAC,SAAS,EAAE,SAAS;IAOtC,eAAe;IAIf,gBAAgB;yCA5CZ,uBAAuB;2CAAvB,uBAAuB;CAsEnC"}
|
|
@@ -2,7 +2,6 @@ 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';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class RectangleComponent implements OnChanges, AfterViewInit, OnDestroy {
|
|
8
7
|
private readonly toolbarEvents;
|
|
@@ -13,11 +12,8 @@ export declare class RectangleComponent implements OnChanges, AfterViewInit, OnD
|
|
|
13
12
|
editable: boolean;
|
|
14
13
|
pageHeight: number;
|
|
15
14
|
pageWidth: number;
|
|
16
|
-
rectangleTabIndex: number;
|
|
17
15
|
selectEvent: EventEmitter<Rectangle>;
|
|
18
16
|
updateEvent: EventEmitter<Rectangle>;
|
|
19
|
-
deleteEvent: EventEmitter<Rectangle>;
|
|
20
|
-
keyboardMovingChange: EventEmitter<boolean>;
|
|
21
17
|
viewRect: ElementRef;
|
|
22
18
|
private subscriptions;
|
|
23
19
|
_selected: boolean;
|
|
@@ -26,7 +22,6 @@ export declare class RectangleComponent implements OnChanges, AfterViewInit, OnD
|
|
|
26
22
|
width: number;
|
|
27
23
|
top: number;
|
|
28
24
|
left: number;
|
|
29
|
-
movementBounds: BoxMovementBounds;
|
|
30
25
|
_annoRect: Rectangle;
|
|
31
26
|
set annoRect(annoRect: Rectangle);
|
|
32
27
|
get annoRect(): Rectangle;
|
|
@@ -37,14 +32,10 @@ export declare class RectangleComponent implements OnChanges, AfterViewInit, OnD
|
|
|
37
32
|
set selected(selected: boolean);
|
|
38
33
|
get selected(): boolean;
|
|
39
34
|
onClick(): void;
|
|
40
|
-
onFocus(): void;
|
|
41
35
|
onUpdate(viewRect: any): void;
|
|
42
36
|
adjustForRotation(rotation: number): void;
|
|
43
37
|
hasRectangleChanged(viewRect: any): boolean;
|
|
44
|
-
private updateMovementBounds;
|
|
45
|
-
onKeyboardMovingChange(isMoving: boolean): void;
|
|
46
|
-
onDelete(): void;
|
|
47
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<RectangleComponent, 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; }; "
|
|
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>;
|
|
49
40
|
}
|
|
50
41
|
//# 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;;AAE3G,qBAIa,kBAAmB,YAAW,SAAS,EAAE,aAAa,EAAE,SAAS;IAsChE,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IArCpC,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;IAEjB,WAAW,0BAAiC;IAC5C,WAAW,0BAAiC;IAEX,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,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;IAMlC,eAAe;IAMf,WAAW,IAAI,IAAI;IAKnB,IACI,QAAQ,CAAC,QAAQ,EAAE,OAAO,EAK7B;IAED,IAAI,QAAQ,IAPW,OAAO,CAS7B;IAED,OAAO;IAIP,QAAQ,CAAC,QAAQ,EAAE,GAAG;IAUtB,iBAAiB,CAAC,QAAQ,EAAE,MAAM;IAsBlC,mBAAmB,CAAC,QAAQ,KAAA,GAAG,OAAO;yCA1G3B,kBAAkB;2CAAlB,kBAAkB;CAgH9B"}
|
|
@@ -27,10 +27,9 @@ 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 }: {
|
|
31
31
|
rectangles: Rectangle[];
|
|
32
32
|
page: any;
|
|
33
|
-
annotationId?: string;
|
|
34
33
|
}): void;
|
|
35
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataLayerComponent, never>;
|
|
36
35
|
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,
|
|
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;yCAxEhE,sBAAsB;2CAAtB,sBAAsB;CA4ElC"}
|
|
@@ -18,21 +18,19 @@ 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 "ngx-
|
|
29
|
-
import * as i28 from "
|
|
30
|
-
import * as i29 from "
|
|
31
|
-
import * as i30 from "../shared/shared.module";
|
|
32
|
-
import * as i31 from "rpx-xui-translation";
|
|
21
|
+
import * as i20 from "@angular/cdk/a11y";
|
|
22
|
+
import * as i21 from "@angular/common";
|
|
23
|
+
import * as i22 from "@angular/forms";
|
|
24
|
+
import * as i23 from "@angular/common/http";
|
|
25
|
+
import * as i24 from "mutable-div";
|
|
26
|
+
import * as i25 from "ngx-chips";
|
|
27
|
+
import * as i26 from "@angular/router";
|
|
28
|
+
import * as i27 from "@swimlane/ngx-datatable";
|
|
29
|
+
import * as i28 from "../shared/shared.module";
|
|
30
|
+
import * as i29 from "rpx-xui-translation";
|
|
33
31
|
export declare class AnnotationsModule {
|
|
34
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationsModule, never>;
|
|
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
|
|
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 i20.A11yModule, typeof i21.CommonModule, typeof i22.FormsModule, typeof i23.HttpClientModule, typeof i24.MutableDivModule, typeof i25.TagInputModule, typeof i26.RouterModule, typeof i22.ReactiveFormsModule, typeof i27.NgxDatatableModule, typeof i28.SharedModule, typeof i29.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]>;
|
|
36
34
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnnotationsModule>;
|
|
37
35
|
}
|
|
38
36
|
//# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuCA,qBA2Da,iBAAiB;yCAAjB,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAAI"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TooltipDismissDirective {
|
|
4
|
+
private el;
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
onEscapeDismissTooltip(): void;
|
|
7
|
+
onShowTooltip(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDismissDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDismissDirective, ".mv-tooltip, [mvTooltipDismiss]", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=tooltip-dismiss.directive.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tooltip-dismiss.directive.d.ts","sourceRoot":"","sources":["../../../../../projects/media-viewer/src/lib/shared/directives/tooltip-dismiss.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAgB,MAAM,eAAe,CAAC;;AAEpE,qBAGa,uBAAuB;IACtB,OAAO,CAAC,EAAE;gBAAF,EAAE,EAAE,UAAU;IAGlC,sBAAsB;IAQtB,aAAa;yCAZF,uBAAuB;2CAAvB,uBAAuB;CAiBnC"}
|
|
@@ -71,9 +71,8 @@ export declare class SaveAnnotationSetFail implements Action {
|
|
|
71
71
|
}
|
|
72
72
|
export declare class SaveAnnotation implements Action {
|
|
73
73
|
payload: Annotation;
|
|
74
|
-
autoSelect?: boolean;
|
|
75
74
|
readonly type = "[Annotations] Save Annotation";
|
|
76
|
-
constructor(payload: Annotation
|
|
75
|
+
constructor(payload: Annotation);
|
|
77
76
|
}
|
|
78
77
|
export declare class SaveAnnotationSuccess implements Action {
|
|
79
78
|
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":"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;IADtC,QAAQ,CAAC,IAAI,mCAAmB;gBACb,OAAO,EAAE,UAAU;CACvC;AAED,qBAAa,qBAAsB,YAAW,MAAM;IAE/B,OAAO,EAAE,GAAG;IAD/B,QAAQ,CAAC,IAAI,2CAA2B;gBACrB,OAAO,EAAE,GAAG;CAChC;AAED,qBAAa,kBAAmB,YAAW,MAAM;IAE5B,OAAO,EAAE,KAAK;IADjC,QAAQ,CAAC,IAAI,wCAAwB;gBAClB,OAAO,EAAE,KAAK;CAClC;AAED,qBAAa,gBAAiB,YAAW,MAAM;IAE1B,OAAO,EAAE,OAAO;IADnC,QAAQ,CAAC,IAAI,uCAAuB;gBACjB,OAAO,EAAE,OAAO;CACpC;AAED,qBAAa,gBAAiB,YAAW,MAAM;IAE1B,OAAO,EAAE,MAAM;IADlC,QAAQ,CAAC,IAAI,qCAAqB;gBACf,OAAO,EAAE,MAAM;CACnC;AAED,qBAAa,uBAAwB,YAAW,MAAM;IAEjC,OAAO,EAAE,MAAM;IADlC,QAAQ,CAAC,IAAI,6CAA6B;gBACvB,OAAO,EAAE,MAAM;CACnC;AAED,qBAAa,oBAAqB,YAAW,MAAM;IAE9B,OAAO,EAAE,KAAK;IADjC,QAAQ,CAAC,IAAI,0CAA0B;gBACpB,OAAO,EAAE,KAAK;CAClC;AAED,qBAAa,kBAAmB,YAAW,MAAM;IAE5B,OAAO,EAAE,mBAAmB;IAD/C,QAAQ,CAAC,IAAI,qCAAqB;gBACf,OAAO,EAAE,mBAAmB;CAChD;AAED,qBAAa,aAAc,YAAW,MAAM;IAEvB,OAAO,EAAE,MAAM;IADlC,QAAQ,CAAC,IAAI,gCAAkB;gBACZ,OAAO,EAAE,MAAM;CACnC;AAED,qBAAa,yBAA0B,YAAW,MAAM;IAEnC,OAAO,EAAE,OAAO;IADnC,QAAQ,CAAC,IAAI,6CAAgC;gBAC1B,OAAO,EAAE,OAAO;CACpC;AAED,qBAAa,0BAA2B,YAAW,MAAM;IACvD,QAAQ,CAAC,IAAI,6CAAgC;CAC9C;AAED,MAAM,MAAM,kBAAkB,GAC1B,iBAAiB,GACjB,uBAAuB,GACvB,qBAAqB,GACrB,cAAc,GACd,qBAAqB,GACrB,kBAAkB,GAClB,wBAAwB,GACxB,gBAAgB,GAChB,gBAAgB,GAChB,uBAAuB,GACvB,oBAAoB,GACpB,kBAAkB,GAClB,aAAa,GACb,yBAAyB,GACzB,0BAA0B,CAAC"}
|
|
@@ -10,7 +10,6 @@ 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;
|
|
14
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnotationEffects, never>;
|
|
15
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnnotationEffects>;
|
|
16
15
|
}
|
|
@@ -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,gKAYb;IAEF,iBAAiB,iKAaf;IAEF,kBAAkB,mKAahB;yCAlES,iBAAiB;6CAAjB,iBAAiB;CAmE7B"}
|
|
@@ -5,15 +5,16 @@ import * as i3 from "./redaction-toolbar/redaction-toolbar.component";
|
|
|
5
5
|
import * as i4 from "./icp-toolbar/icp-toolbar.component";
|
|
6
6
|
import * as i5 from "./redaction-search-bar/redaction-search-bar.component";
|
|
7
7
|
import * as i6 from "./highlight-toolbar/highlight-toolbar.component";
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "@angular/
|
|
10
|
-
import * as i9 from "@angular/
|
|
11
|
-
import * as i10 from "@angular/
|
|
12
|
-
import * as i11 from "
|
|
8
|
+
import * as i7 from "../shared/directives/tooltip-dismiss.directive";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "@angular/forms";
|
|
11
|
+
import * as i10 from "@angular/cdk/overlay";
|
|
12
|
+
import * as i11 from "@angular/router";
|
|
13
|
+
import * as i12 from "rpx-xui-translation";
|
|
13
14
|
export { ToolbarButtonVisibilityService } from './toolbar-button-visibility.service';
|
|
14
15
|
export declare class ToolbarModule {
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarModule, [typeof i1.SearchBarComponent, typeof i2.MainToolbarComponent, typeof i3.RedactionToolbarComponent, typeof i4.IcpToolbarComponent, typeof i5.RedactionSearchBarComponent, typeof i6.HighlightToolbarComponent], [typeof
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarModule, [typeof i1.SearchBarComponent, typeof i2.MainToolbarComponent, typeof i3.RedactionToolbarComponent, typeof i4.IcpToolbarComponent, typeof i5.RedactionSearchBarComponent, typeof i6.HighlightToolbarComponent, typeof i7.TooltipDismissDirective], [typeof i8.CommonModule, typeof i9.FormsModule, typeof i10.OverlayModule, typeof i11.RouterModule, typeof i12.RpxTranslationModule], [typeof i2.MainToolbarComponent, typeof i1.SearchBarComponent, typeof i3.RedactionToolbarComponent, typeof i4.IcpToolbarComponent, typeof i5.RedactionSearchBarComponent, typeof i6.HighlightToolbarComponent]>;
|
|
17
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<ToolbarModule>;
|
|
18
19
|
}
|
|
19
20
|
//# sourceMappingURL=toolbar.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbar.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"toolbar.module.d.ts","sourceRoot":"","sources":["../../../../projects/media-viewer/src/lib/toolbar/toolbar.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;AASA,OAAO,EAAE,8BAA8B,EAAE,MAAM,qCAAqC,CAAC;AAQrF,qBA6Ba,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAI"}
|