@lumiscaphe/ng-viewer 15.0.0 → 16.0.0

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.
@@ -1,277 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { EventEmitter, Component, Input, Output, ViewChild, HostListener, NgModule } from '@angular/core';
3
- import { Viewer } from '@lumiscaphe/viewer';
4
- import * as i1 from '@angular/common';
5
- import { CommonModule } from '@angular/common';
6
-
7
- class Viewport {
8
- static fit(resolution, viewportWidth, viewportHeight, fit) {
9
- const aspectRatio = resolution.width / resolution.height;
10
- const viewportRatio = viewportWidth / viewportHeight;
11
- let width = 0;
12
- let height = 0;
13
- switch (fit) {
14
- case 'contain':
15
- width = viewportRatio < aspectRatio ? viewportWidth : viewportHeight * aspectRatio;
16
- height = viewportRatio < aspectRatio ? viewportWidth / aspectRatio : viewportHeight;
17
- break;
18
- case 'cover':
19
- default:
20
- width = viewportRatio < aspectRatio ? viewportHeight * aspectRatio : viewportWidth;
21
- height = viewportRatio < aspectRatio ? viewportHeight : viewportWidth / aspectRatio;
22
- break;
23
- case 'fill':
24
- width = viewportWidth;
25
- height = viewportHeight;
26
- break;
27
- }
28
- return {
29
- width: Math.round(width),
30
- height: Math.round(height),
31
- top: Math.round((viewportHeight - height) / 2),
32
- left: Math.round((viewportWidth - width) / 2),
33
- };
34
- }
35
- static getStandardAspectRatio(width, height) {
36
- if (width === 0 || height === 0) {
37
- return 0;
38
- }
39
- const aspectRatio = width / height;
40
- if (width < height) {
41
- const distanceTo34 = Math.abs(3 / 4 - aspectRatio);
42
- const distanceTo916 = Math.abs(9 / 16 - aspectRatio);
43
- return distanceTo34 < distanceTo916 ? 3 / 4 : 9 / 16;
44
- }
45
- const distanceTo43 = Math.abs(4 / 3 - aspectRatio);
46
- const distanceTo169 = Math.abs(16 / 9 - aspectRatio);
47
- return distanceTo43 < distanceTo169 ? 4 / 3 : 16 / 9;
48
- }
49
- static getStandardQuality(height) {
50
- if (height <= 240) {
51
- return 240;
52
- }
53
- if (height <= 360) {
54
- return 360;
55
- }
56
- if (height <= 480) {
57
- return 480;
58
- }
59
- if (height <= 720) {
60
- return 720;
61
- }
62
- return 1080;
63
- }
64
- static getStandardResolution(width, height) {
65
- if (width === 0 || height === 0) {
66
- return { width: 0, height: 0 };
67
- }
68
- const aspectRatio = Viewport.getStandardAspectRatio(width, height);
69
- if (width < height) {
70
- const quality = Viewport.getStandardQuality(height * aspectRatio);
71
- return { width: Math.round(quality), height: Math.round(quality / aspectRatio) };
72
- }
73
- const quality = Viewport.getStandardQuality(width / aspectRatio);
74
- return { width: Math.round(quality * aspectRatio), height: Math.round(quality) };
75
- }
76
- }
77
-
78
- class NgViewerComponent {
79
- constructor() {
80
- this.hotspots = [];
81
- this.hotspotTemplateRef = null;
82
- this.onLoadStart = new EventEmitter();
83
- this.onLoadProgress = new EventEmitter();
84
- this.onLoadEnd = new EventEmitter();
85
- this.onLoadError = new EventEmitter();
86
- this.onInteraction = new EventEmitter();
87
- this.onVrcubeInteraction = new EventEmitter();
88
- this.onVrobjectInteraction = new EventEmitter();
89
- this.fitPosition = { width: 1, height: 1, top: 1, left: 1 };
90
- this.scaleX = 1;
91
- this.scaleY = 1;
92
- }
93
- ngAfterViewInit() {
94
- this.viewer = new Viewer(this.container.nativeElement, {
95
- server: this.server,
96
- api: this.api || 'v1',
97
- fit: this.fit || 'cover',
98
- events: {
99
- onLoadStart: (...args) => { this.onLoadStart.emit(...args); },
100
- onLoadProgress: (...args) => { this.onLoadProgress.emit(...args); },
101
- onLoadEnd: (...args) => { this.onLoadEnd.emit(...args); },
102
- onLoadError: (...args) => { this.onLoadError.emit(...args); },
103
- onInteraction: (...args) => { this.onInteraction.emit(...args); },
104
- onVrcubeInteraction: (...args) => { this.onVrcubeInteraction.emit(...args); },
105
- onVrobjectInteraction: (...args) => { this.onVrobjectInteraction.emit(...args); },
106
- onHotspotsChange: this.onHotspotsChange.bind(this)
107
- },
108
- });
109
- if (this['scene']) {
110
- this.viewer.load(this.scene).catch(() => { });
111
- }
112
- if (this['encoder']) {
113
- this.viewer.setEncoder(this.encoder).catch(() => { });
114
- }
115
- if (this.parameters) {
116
- this.viewer.setParameters(this.parameters).catch(() => { });
117
- }
118
- if (this.view) {
119
- this.viewer.setView(this.view).catch(() => { });
120
- }
121
- if (this.vrcube) {
122
- this.viewer.setVrcube(this.vrcube);
123
- }
124
- if (this.vrobject) {
125
- this.viewer.setVrobject(this.vrobject);
126
- }
127
- if (this.tags) {
128
- this.viewer.setTags(this.tags);
129
- }
130
- this.onResize();
131
- }
132
- ngOnDestroy() {
133
- var _a;
134
- (_a = this.viewer) === null || _a === void 0 ? void 0 : _a.destroy();
135
- }
136
- ngOnChanges(changes) {
137
- if (!this.viewer) {
138
- return;
139
- }
140
- if (changes['scene'] && changes['scene'].currentValue) {
141
- this.viewer.load(changes['scene'].currentValue).catch(() => { });
142
- }
143
- if (changes['encoder'] && changes['encoder'].currentValue) {
144
- this.viewer.setEncoder(changes['encoder'].currentValue).catch(() => { });
145
- }
146
- if (changes['parameters'] && changes['parameters'].currentValue) {
147
- this.viewer.setParameters(changes['parameters'].currentValue).catch(() => { });
148
- }
149
- if (changes['tags'] && changes['tags'].currentValue) {
150
- this.viewer.setTags(changes['tags'].currentValue);
151
- }
152
- if (changes['view'] && changes['view'].currentValue) {
153
- this.viewer.setView(changes['view'].currentValue).catch(() => { });
154
- }
155
- if (changes['vrcube'] && changes['vrcube'].currentValue) {
156
- this.viewer.setVrcube(changes['vrcube'].currentValue);
157
- }
158
- if (changes['vrobject'] && changes['vrobject'].currentValue) {
159
- this.viewer.setVrobject(changes['vrobject'].currentValue);
160
- }
161
- }
162
- onHotspotsChange(hotspots) {
163
- this.hotspots = hotspots;
164
- if (this.hotspotsFilter !== undefined) {
165
- this.hotspots = this.hotspotsFilter(this.hotspots);
166
- }
167
- }
168
- snapshot(type, quality) {
169
- var _a;
170
- return (_a = this.viewer) === null || _a === void 0 ? void 0 : _a.snapshot(type, quality);
171
- }
172
- onResize() {
173
- this.resolution = Viewport.getStandardResolution(window.innerWidth, window.innerHeight);
174
- this.fitPosition = Viewport.fit(this.resolution, window.innerWidth, window.innerHeight, 'cover');
175
- this.scaleX = this.fitPosition.width / this.resolution.width;
176
- this.scaleY = this.fitPosition.height / this.resolution.height;
177
- }
178
- hotspotStyle(hotspot) {
179
- var _a;
180
- if (((_a = this.view) === null || _a === void 0 ? void 0 : _a.mode) === 'vrcube') {
181
- return {
182
- position: 'absolute',
183
- top: hotspot.position2D.y + 'px',
184
- left: hotspot.position2D.x + 'px'
185
- };
186
- }
187
- else {
188
- return {
189
- position: 'absolute',
190
- top: (hotspot.position2D.y * this.scaleY + this.fitPosition.top) + 'px',
191
- left: (hotspot.position2D.x * this.scaleX + this.fitPosition.left) + 'px'
192
- };
193
- }
194
- }
195
- }
196
- NgViewerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
197
- NgViewerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: NgViewerComponent, selector: "NgViewer", inputs: { server: "server", api: "api", fit: "fit", scene: "scene", encoder: "encoder", parameters: "parameters", view: "view", vrcube: "vrcube", vrobject: "vrobject", tags: "tags", hotspotTemplateRef: "hotspotTemplateRef", hotspotsFilter: "hotspotsFilter" }, outputs: { onLoadStart: "onLoadStart", onLoadProgress: "onLoadProgress", onLoadEnd: "onLoadEnd", onLoadError: "onLoadError", onInteraction: "onInteraction", onVrcubeInteraction: "onVrcubeInteraction", onVrobjectInteraction: "onVrobjectInteraction" }, host: { listeners: { "window:resize": "onResize($event)" } }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div #container></div>\n\n<div class=\"position-absolute w-100 h-100\" style=\"pointer-events: none;\" *ngIf=\"hotspots.length\">\n <div [ngStyle]=\"hotspotStyle(hotspot)\" *ngFor=\"let hotspot of hotspots\">\n <ng-container *ngTemplateOutlet=\"hotspotTemplateRef; context:{hotspot: hotspot}\"></ng-container>\n </div>\n</div>", styles: [":host{display:flex;flex:1 0 auto}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
198
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgViewerComponent, decorators: [{
199
- type: Component,
200
- args: [{ selector: 'NgViewer', template: "<div #container></div>\n\n<div class=\"position-absolute w-100 h-100\" style=\"pointer-events: none;\" *ngIf=\"hotspots.length\">\n <div [ngStyle]=\"hotspotStyle(hotspot)\" *ngFor=\"let hotspot of hotspots\">\n <ng-container *ngTemplateOutlet=\"hotspotTemplateRef; context:{hotspot: hotspot}\"></ng-container>\n </div>\n</div>", styles: [":host{display:flex;flex:1 0 auto}\n"] }]
201
- }], propDecorators: { server: [{
202
- type: Input
203
- }], api: [{
204
- type: Input
205
- }], fit: [{
206
- type: Input
207
- }], scene: [{
208
- type: Input
209
- }], encoder: [{
210
- type: Input
211
- }], parameters: [{
212
- type: Input
213
- }], view: [{
214
- type: Input
215
- }], vrcube: [{
216
- type: Input
217
- }], vrobject: [{
218
- type: Input
219
- }], tags: [{
220
- type: Input
221
- }], hotspotTemplateRef: [{
222
- type: Input
223
- }], hotspotsFilter: [{
224
- type: Input
225
- }], onLoadStart: [{
226
- type: Output
227
- }], onLoadProgress: [{
228
- type: Output
229
- }], onLoadEnd: [{
230
- type: Output
231
- }], onLoadError: [{
232
- type: Output
233
- }], onInteraction: [{
234
- type: Output
235
- }], onVrcubeInteraction: [{
236
- type: Output
237
- }], onVrobjectInteraction: [{
238
- type: Output
239
- }], container: [{
240
- type: ViewChild,
241
- args: ['container']
242
- }], onResize: [{
243
- type: HostListener,
244
- args: ['window:resize', ['$event']]
245
- }] } });
246
-
247
- class NgViewerModule {
248
- }
249
- NgViewerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgViewerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
250
- NgViewerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: NgViewerModule, declarations: [NgViewerComponent], imports: [CommonModule], exports: [NgViewerComponent] });
251
- NgViewerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgViewerModule, imports: [CommonModule] });
252
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgViewerModule, decorators: [{
253
- type: NgModule,
254
- args: [{
255
- declarations: [
256
- NgViewerComponent
257
- ],
258
- imports: [
259
- CommonModule
260
- ],
261
- exports: [
262
- NgViewerComponent
263
- ]
264
- }]
265
- }] });
266
-
267
- /*
268
- * Public API Surface of ng-viewer
269
- */
270
-
271
- /**
272
- * Generated bundle index. Do not edit.
273
- */
274
-
275
- export { NgViewerComponent, NgViewerModule };
276
- //# sourceMappingURL=lumiscaphe-ng-viewer.mjs.map
277
- //# sourceMappingURL=lumiscaphe-ng-viewer.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"lumiscaphe-ng-viewer.mjs","sources":["../../../projects/ng-viewer/src/lib/viewport.ts","../../../projects/ng-viewer/src/lib/ng-viewer.component.ts","../../../projects/ng-viewer/src/lib/ng-viewer.component.html","../../../projects/ng-viewer/src/lib/ng-viewer.module.ts","../../../projects/ng-viewer/src/public-api.ts","../../../projects/ng-viewer/src/lumiscaphe-ng-viewer.ts"],"sourcesContent":["export class Viewport {\n public static fit(resolution: any, viewportWidth: any, viewportHeight: any, fit: any): { width: number, height: number, top: number, left: number } {\n const aspectRatio = resolution.width / resolution.height;\n const viewportRatio = viewportWidth / viewportHeight;\n\n let width = 0;\n let height = 0;\n\n switch (fit) {\n case 'contain':\n width = viewportRatio < aspectRatio ? viewportWidth : viewportHeight * aspectRatio;\n height = viewportRatio < aspectRatio ? viewportWidth / aspectRatio : viewportHeight;\n break;\n case 'cover':\n default:\n width = viewportRatio < aspectRatio ? viewportHeight * aspectRatio : viewportWidth;\n height = viewportRatio < aspectRatio ? viewportHeight : viewportWidth / aspectRatio;\n break;\n case 'fill':\n width = viewportWidth;\n height = viewportHeight;\n break;\n }\n\n return {\n width: Math.round(width),\n height: Math.round(height),\n top: Math.round((viewportHeight - height) / 2),\n left: Math.round((viewportWidth - width) / 2),\n };\n }\n\n static getStandardAspectRatio(width: number, height: number): number {\n if (width === 0 || height === 0) {\n return 0;\n }\n\n const aspectRatio = width / height;\n\n if (width < height) {\n const distanceTo34 = Math.abs(3 / 4 - aspectRatio);\n const distanceTo916 = Math.abs(9 / 16 - aspectRatio);\n return distanceTo34 < distanceTo916 ? 3 / 4 : 9 / 16;\n }\n\n const distanceTo43 = Math.abs(4 / 3 - aspectRatio);\n const distanceTo169 = Math.abs(16 / 9 - aspectRatio);\n\n return distanceTo43 < distanceTo169 ? 4 / 3 : 16 / 9;\n }\n\n static getStandardQuality(height: number): number {\n if (height <= 240) {\n return 240;\n }\n\n if (height <= 360) {\n return 360;\n }\n\n if (height <= 480) {\n return 480;\n }\n\n if (height <= 720) {\n return 720;\n }\n\n return 1080;\n }\n\n public static getStandardResolution(width: number, height: number): { width: number, height: number } {\n if (width === 0 || height === 0) {\n return { width: 0, height: 0 };\n }\n\n const aspectRatio = Viewport.getStandardAspectRatio(width, height);\n\n if (width < height) {\n const quality = Viewport.getStandardQuality(height * aspectRatio);\n return { width: Math.round(quality), height: Math.round(quality / aspectRatio) };\n }\n\n const quality = Viewport.getStandardQuality(width / aspectRatio);\n return { width: Math.round(quality * aspectRatio), height: Math.round(quality) };\n }\n}\n\nexport default Viewport;\n","import { AfterViewInit, Component, ElementRef, EventEmitter, Input, OnChanges, OnDestroy, SimpleChanges, ViewChild, Output, TemplateRef, HostListener } from '@angular/core';\n\nimport { Encoder, Hotspot, Parameters, Scene, View, Viewer, WidgetVRCube, WidgetVRObject } from '@lumiscaphe/viewer';\nimport Viewport from './viewport';\n\n@Component({\n selector: 'NgViewer',\n templateUrl: './ng-viewer.component.html',\n styleUrls: ['./ng-viewer.component.scss']\n})\n\nexport class NgViewerComponent implements AfterViewInit, OnChanges, OnDestroy {\n\n public viewer: Viewer | undefined;\n\n public hotspots: Hotspot[] = [];\n\n @Input() server: string | undefined;\n @Input() api: string | undefined;\n @Input() fit: 'contain' | 'cover' | 'fill' | undefined;\n @Input() scene: Scene | undefined;\n @Input() encoder: Encoder | undefined;\n @Input() parameters: Parameters | undefined;\n @Input() view: View | undefined;\n @Input() vrcube: Partial<WidgetVRCube> | undefined;\n @Input() vrobject: Partial<WidgetVRObject> | undefined;\n @Input() tags: string[] | undefined;\n @Input() hotspotTemplateRef: TemplateRef<any> | null = null;\n @Input() hotspotsFilter: ((hotspots: Hotspot[]) => Hotspot[]) | undefined;\n\n @Output() onLoadStart = new EventEmitter();\n @Output() onLoadProgress = new EventEmitter();\n @Output() onLoadEnd = new EventEmitter();\n @Output() onLoadError = new EventEmitter();\n @Output() onInteraction = new EventEmitter();\n @Output() onVrcubeInteraction = new EventEmitter();\n @Output() onVrobjectInteraction = new EventEmitter();\n\n @ViewChild('container') container!: ElementRef;\n\n ngAfterViewInit() {\n this.viewer = new Viewer(this.container.nativeElement, {\n server: this.server,\n api: this.api || 'v1',\n fit: this.fit || 'cover',\n events: {\n onLoadStart: (...args: any[]) => { this.onLoadStart.emit(...args); },\n onLoadProgress: (...args: any[]) => { this.onLoadProgress.emit(...args); },\n onLoadEnd: (...args: any[]) => { this.onLoadEnd.emit(...args); },\n onLoadError: (...args: any[]) => { this.onLoadError.emit(...args); },\n onInteraction: (...args: any[]) => { this.onInteraction.emit(...args); },\n onVrcubeInteraction: (...args: any[]) => { this.onVrcubeInteraction.emit(...args); },\n onVrobjectInteraction: (...args: any[]) => { this.onVrobjectInteraction.emit(...args); },\n onHotspotsChange: this.onHotspotsChange.bind(this)\n },\n });\n\n if (this['scene']) {\n this.viewer.load(this.scene).catch(() => { });\n }\n\n if (this['encoder']) {\n this.viewer.setEncoder(this.encoder).catch(() => { });\n }\n\n if (this.parameters) {\n this.viewer.setParameters(this.parameters).catch(() => { });\n }\n\n if (this.view) {\n this.viewer.setView(this.view).catch(() => { });\n }\n\n if (this.vrcube) {\n this.viewer.setVrcube(this.vrcube);\n }\n\n if (this.vrobject) {\n this.viewer.setVrobject(this.vrobject);\n }\n\n if (this.tags) {\n this.viewer.setTags(this.tags);\n }\n\n this.onResize();\n }\n\n ngOnDestroy(): void {\n this.viewer?.destroy();\n }\n\n ngOnChanges(changes: SimpleChanges) {\n if (!this.viewer) {\n return;\n }\n\n if (changes['scene'] && changes['scene'].currentValue) {\n this.viewer.load(changes['scene'].currentValue).catch(() => { });\n }\n\n if (changes['encoder'] && changes['encoder'].currentValue) {\n this.viewer.setEncoder(changes['encoder'].currentValue).catch(() => { });\n }\n\n if (changes['parameters'] && changes['parameters'].currentValue) {\n this.viewer.setParameters(changes['parameters'].currentValue).catch(() => { });\n }\n\n if (changes['tags'] && changes['tags'].currentValue) {\n this.viewer.setTags(changes['tags'].currentValue);\n }\n\n if (changes['view'] && changes['view'].currentValue) {\n this.viewer.setView(changes['view'].currentValue).catch(() => { });\n }\n\n if (changes['vrcube'] && changes['vrcube'].currentValue) {\n this.viewer.setVrcube(changes['vrcube'].currentValue);\n }\n\n if (changes['vrobject'] && changes['vrobject'].currentValue) {\n this.viewer.setVrobject(changes['vrobject'].currentValue);\n }\n }\n\n onHotspotsChange(hotspots: Hotspot[]): void {\n this.hotspots = hotspots;\n\n if (this.hotspotsFilter !== undefined) {\n this.hotspots = this.hotspotsFilter(this.hotspots);\n }\n }\n\n snapshot(type: string, quality: number): string | undefined {\n return this.viewer?.snapshot(type, quality);\n }\n\n public fitPosition: { width: number, height: number, top: number, left: number } = { width: 1, height: 1, top: 1, left: 1 };\n public resolution: { width: number, height: number } | undefined;\n public scaleX: number = 1;\n public scaleY: number = 1;\n\n @HostListener('window:resize', ['$event'])\n public onResize(): void {\n this.resolution = Viewport.getStandardResolution(window.innerWidth, window.innerHeight);\n this.fitPosition = Viewport.fit(this.resolution, window.innerWidth, window.innerHeight, 'cover');\n this.scaleX = this.fitPosition.width / this.resolution.width;\n this.scaleY = this.fitPosition.height / this.resolution.height;\n }\n\n public hotspotStyle(hotspot: Hotspot): { left: string, top: string, position: string } {\n if (this.view?.mode === 'vrcube') {\n return {\n position: 'absolute',\n top: hotspot.position2D.y + 'px',\n left: hotspot.position2D.x + 'px'\n };\n } else {\n return {\n position: 'absolute',\n top: (hotspot.position2D.y * this.scaleY + this.fitPosition.top) + 'px',\n left: (hotspot.position2D.x * this.scaleX + this.fitPosition.left) + 'px'\n };\n }\n }\n}\n","<div #container></div>\n\n<div class=\"position-absolute w-100 h-100\" style=\"pointer-events: none;\" *ngIf=\"hotspots.length\">\n <div [ngStyle]=\"hotspotStyle(hotspot)\" *ngFor=\"let hotspot of hotspots\">\n <ng-container *ngTemplateOutlet=\"hotspotTemplateRef; context:{hotspot: hotspot}\"></ng-container>\n </div>\n</div>","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NgViewerComponent } from './ng-viewer.component';\n\n@NgModule({\n declarations: [\n NgViewerComponent\n ],\n imports: [\n CommonModule\n ],\n exports: [\n NgViewerComponent\n ]\n})\n\nexport class NgViewerModule { }\n","/*\n * Public API Surface of ng-viewer\n */\n\nexport * from './lib/ng-viewer.component';\nexport * from './lib/ng-viewer.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}