@net7/components 4.4.1 → 4.5.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.
- package/esm2022/lib/components/anchor-wrapper/anchor-wrapper.mjs +3 -3
- package/esm2022/lib/components/parallel-text-viewer/parallel-text-viewer.mjs +49 -0
- package/esm2022/lib/components/parallel-text-viewer/parallel-text-viewer.mock.mjs +94 -0
- package/esm2022/lib/components/text-viewer/text-viewer.mock.mjs +4 -4
- package/esm2022/lib/dv-components-lib.module.mjs +7 -3
- package/esm2022/lib/shared-interfaces.mjs +1 -1
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/net7-components.mjs +151 -8
- package/fesm2022/net7-components.mjs.map +1 -1
- package/lib/components/parallel-text-viewer/parallel-text-viewer.d.ts +124 -0
- package/lib/components/parallel-text-viewer/parallel-text-viewer.mock.d.ts +2 -0
- package/lib/dv-components-lib.module.d.ts +4 -3
- package/lib/shared-interfaces.d.ts +4 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/src/lib/styles/_imports.scss +1 -0
- package/src/lib/styles/components/_parallel-text-viewer.scss +816 -0
|
@@ -24,11 +24,11 @@ class AnchorWrapperComponent {
|
|
|
24
24
|
this.clicked.emit(payload);
|
|
25
25
|
}
|
|
26
26
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AnchorWrapperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
27
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: AnchorWrapperComponent, selector: "n7-anchor-wrapper", inputs: { data: "data", classes: "classes" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<ng-container *ngIf=\"data; else noData\">\n <ng-container *ngIf=\"data.href && isExternal(data.href)\">\n <ng-container *ngTemplateOutlet=\"externalUrl\"></ng-container>\n </ng-container>\n <ng-container *ngIf=\"data.href && !isExternal(data.href)\">\n <ng-container *ngTemplateOutlet=\"internalUrl\"></ng-container>\n </ng-container>\n <ng-container *ngIf=\"!data.href\">\n <ng-container *ngTemplateOutlet=\"noUrl\"></ng-container>\n </ng-container>\n</ng-container>\n\n<!-- No data template -->\n<ng-template #noData>\n <a class=\"{{ classes || '' }}\"\n ><ng-container *ngTemplateOutlet=\"content\"></ng-container\n ></a>\n</ng-template>\n\n<!-- Internal URL template -->\n<ng-template #internalUrl>\n <a\n [routerLink]=\"data.href\"\n [target]=\"data.target || '_self'\"\n class=\"{{ classes || '' }}\"\n [queryParams]=\"data.queryParams || null\"\n >\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<!-- External URL template -->\n<ng-template #externalUrl>\n <a\n [href]=\"data.href\"\n [target]=\"data.target || '_self'\"\n class=\"{{ classes || '' }}\"\n >\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<!-- No URL template -->\n<ng-template #noUrl>\n <a (click)=\"onClick(data.payload)\" class=\"{{ classes || '' }}\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n", dependencies: [{ 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: i2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] }); }
|
|
27
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: AnchorWrapperComponent, selector: "n7-anchor-wrapper", inputs: { data: "data", classes: "classes" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<ng-container *ngIf=\"data; else noData\">\n <ng-container *ngIf=\"data.href && isExternal(data.href)\">\n <ng-container *ngTemplateOutlet=\"externalUrl\"></ng-container>\n </ng-container>\n <ng-container *ngIf=\"data.href && !isExternal(data.href)\">\n <ng-container *ngTemplateOutlet=\"internalUrl\"></ng-container>\n </ng-container>\n <ng-container *ngIf=\"!data.href\">\n <ng-container *ngTemplateOutlet=\"noUrl\"></ng-container>\n </ng-container>\n</ng-container>\n\n<!-- No data template -->\n<ng-template #noData>\n <a class=\"{{ classes || '' }}\"\n ><ng-container *ngTemplateOutlet=\"content\"></ng-container\n ></a>\n</ng-template>\n\n<!-- Internal URL template -->\n<ng-template #internalUrl>\n <a\n [routerLink]=\"data.href\"\n [target]=\"data.target || '_self'\"\n class=\"{{ classes || '' }}\"\n [queryParams]=\"data.queryParams || null\"\n [fragment]=\"data.fragment || null\"\n >\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<!-- External URL template -->\n<ng-template #externalUrl>\n <a\n [href]=\"data.href\"\n [target]=\"data.target || '_self'\"\n class=\"{{ classes || '' }}\"\n >\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<!-- No URL template -->\n<ng-template #noUrl>\n <a (click)=\"onClick(data.payload)\" class=\"{{ classes || '' }}\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n", dependencies: [{ 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: i2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] }); }
|
|
28
28
|
}
|
|
29
29
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AnchorWrapperComponent, decorators: [{
|
|
30
30
|
type: Component,
|
|
31
|
-
args: [{ selector: 'n7-anchor-wrapper', template: "<ng-container *ngIf=\"data; else noData\">\n <ng-container *ngIf=\"data.href && isExternal(data.href)\">\n <ng-container *ngTemplateOutlet=\"externalUrl\"></ng-container>\n </ng-container>\n <ng-container *ngIf=\"data.href && !isExternal(data.href)\">\n <ng-container *ngTemplateOutlet=\"internalUrl\"></ng-container>\n </ng-container>\n <ng-container *ngIf=\"!data.href\">\n <ng-container *ngTemplateOutlet=\"noUrl\"></ng-container>\n </ng-container>\n</ng-container>\n\n<!-- No data template -->\n<ng-template #noData>\n <a class=\"{{ classes || '' }}\"\n ><ng-container *ngTemplateOutlet=\"content\"></ng-container\n ></a>\n</ng-template>\n\n<!-- Internal URL template -->\n<ng-template #internalUrl>\n <a\n [routerLink]=\"data.href\"\n [target]=\"data.target || '_self'\"\n class=\"{{ classes || '' }}\"\n [queryParams]=\"data.queryParams || null\"\n >\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<!-- External URL template -->\n<ng-template #externalUrl>\n <a\n [href]=\"data.href\"\n [target]=\"data.target || '_self'\"\n class=\"{{ classes || '' }}\"\n >\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<!-- No URL template -->\n<ng-template #noUrl>\n <a (click)=\"onClick(data.payload)\" class=\"{{ classes || '' }}\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n" }]
|
|
31
|
+
args: [{ selector: 'n7-anchor-wrapper', template: "<ng-container *ngIf=\"data; else noData\">\n <ng-container *ngIf=\"data.href && isExternal(data.href)\">\n <ng-container *ngTemplateOutlet=\"externalUrl\"></ng-container>\n </ng-container>\n <ng-container *ngIf=\"data.href && !isExternal(data.href)\">\n <ng-container *ngTemplateOutlet=\"internalUrl\"></ng-container>\n </ng-container>\n <ng-container *ngIf=\"!data.href\">\n <ng-container *ngTemplateOutlet=\"noUrl\"></ng-container>\n </ng-container>\n</ng-container>\n\n<!-- No data template -->\n<ng-template #noData>\n <a class=\"{{ classes || '' }}\"\n ><ng-container *ngTemplateOutlet=\"content\"></ng-container\n ></a>\n</ng-template>\n\n<!-- Internal URL template -->\n<ng-template #internalUrl>\n <a\n [routerLink]=\"data.href\"\n [target]=\"data.target || '_self'\"\n class=\"{{ classes || '' }}\"\n [queryParams]=\"data.queryParams || null\"\n [fragment]=\"data.fragment || null\"\n >\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<!-- External URL template -->\n<ng-template #externalUrl>\n <a\n [href]=\"data.href\"\n [target]=\"data.target || '_self'\"\n class=\"{{ classes || '' }}\"\n >\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<!-- No URL template -->\n<ng-template #noUrl>\n <a (click)=\"onClick(data.payload)\" class=\"{{ classes || '' }}\">\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </a>\n</ng-template>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n" }]
|
|
32
32
|
}], propDecorators: { data: [{
|
|
33
33
|
type: Input
|
|
34
34
|
}], classes: [{
|
|
@@ -2385,6 +2385,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
2385
2385
|
type: Input
|
|
2386
2386
|
}] } });
|
|
2387
2387
|
|
|
2388
|
+
//---------------------------
|
|
2389
|
+
// PARALLEL-TEXT-VIEWER.ts
|
|
2390
|
+
//---------------------------
|
|
2391
|
+
class ParallelTextViewerComponent {
|
|
2392
|
+
static { this._loaded = false; }
|
|
2393
|
+
ngOnInit() {
|
|
2394
|
+
if (!ParallelTextViewerComponent._loaded) {
|
|
2395
|
+
const s = document.createElement('script');
|
|
2396
|
+
const baseHref = window.location.origin;
|
|
2397
|
+
s.setAttribute('src', `${baseHref}/assets/pb-components/dist/pb-components-bundle.js`);
|
|
2398
|
+
s.setAttribute('type', 'module');
|
|
2399
|
+
s.onload = this.onScriptLoaded;
|
|
2400
|
+
document.head.appendChild(s);
|
|
2401
|
+
}
|
|
2402
|
+
}
|
|
2403
|
+
displayIndex() {
|
|
2404
|
+
if (!this.emit)
|
|
2405
|
+
return;
|
|
2406
|
+
this.emit('togglecolumn');
|
|
2407
|
+
}
|
|
2408
|
+
onScriptLoaded() {
|
|
2409
|
+
ParallelTextViewerComponent._loaded = true;
|
|
2410
|
+
}
|
|
2411
|
+
onClick(payload) {
|
|
2412
|
+
if (!this.emit)
|
|
2413
|
+
return;
|
|
2414
|
+
this.emit('click', payload);
|
|
2415
|
+
}
|
|
2416
|
+
openDownload(event, url) {
|
|
2417
|
+
event.preventDefault();
|
|
2418
|
+
if (url) {
|
|
2419
|
+
window.open(url, '_blank');
|
|
2420
|
+
}
|
|
2421
|
+
}
|
|
2422
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ParallelTextViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2423
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ParallelTextViewerComponent, selector: "n7-parallel-text-viewer", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div\n class=\"n7-parallel-text-viewer {{data?.classes || ''}}\"\n *ngIf=\"data && data.endpoint\"\n>\n <pb-page \n [attr.endpoint]=\"data.endpoint\" \n api-version=\"1.0.0\" \n url-path=\"query\"\n [attr.url-ignore]=\"data.libOptions?.pbPage?.urlIgnore?.join(',') || 'odd,view,path,selectors,highlight,view2'\"\n >\n <!-- PB DOCUMENT-->\n <pb-document\n *ngFor=\"let doc of data.docs; index as $i\"\n [attr.path]=\"doc.xml\"\n [attr.odd]=\"doc.odd\"\n [attr.id]=\"doc.id\"\n [attr.view]=\"doc.view\"\n [attr.disable-history]=\"doc.disableHistory === true ? '' : null\"\n >\n </pb-document>\n\n <app-drawer-layout force-narrow=\"force-narrow\" narrow=\"\">\n <app-header-layout>\n <app-header\n fixed=\"fixed\"\n data-template=\"browse:fix-links\"\n style=\"\n transition-duration: 0ms;\n transform: translate3d(0px, 0px, 0px);\n left: 0px;\n right: 0.399994px;\n \"\n >\n <app-toolbar\n class=\"toolbar\"\n sticky=\"sticky\"\n style=\"transform: translate3d(0px, 0px, 0px)\"\n >\n <!-- TOC button -->\n <paper-icon-button\n id=\"tocToggle\"\n class=\"toc-toggle\"\n icon=\"icons:view-list\"\n role=\"button\"\n tabindex=\"0\"\n aria-disabled=\"false\"\n ></paper-icon-button>\n\n <!-- Plain reading view-->\n <pb-toggle-feature\n *ngIf=\"data.docs?.length === 1\"\n name=\"highlight1\"\n selector=\"tei-app,pb-popover,pb-highlight,.quote,pb-alternate\"\n default=\"off\"\n action=\"disable\"\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n >\n <ng-container *ngIf=\"data.labels && data.labels.view\">\n {{data.labels.view}}\n </ng-container>\n <ng-container *ngIf=\"!data.labels || !data.labels.view\">\n <pb-i18n key=\"document.plain\">Plain Reading View</pb-i18n>\n </ng-container>\n </pb-toggle-feature>\n\n <!-- Zoom Controls -->\n <pb-zoom\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n direction=\"in\"\n icon=\"icons:zoom-in\"\n ></pb-zoom>\n <pb-zoom\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n direction=\"out\"\n icon=\"icons:zoom-out\"\n ></pb-zoom>\n\n <!-- Navigation Controls -->\n <pb-navigation\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n keyboard=\"left\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n direction=\"backward\"\n unit=\"page\"\n >\n <paper-icon-button\n icon=\"icons:chevron-left\"\n role=\"button\"\n tabindex=\"0\"\n aria-disabled=\"false\"\n ></paper-icon-button>\n </pb-navigation>\n <pb-navigation\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n keyboard=\"right\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n direction=\"forward\"\n unit=\"page\"\n >\n <paper-icon-button\n icon=\"icons:chevron-right\"\n role=\"button\"\n tabindex=\"0\"\n aria-disabled=\"false\"\n ></paper-icon-button>\n </pb-navigation>\n\n <!-- Pulsante aggiungi pannello -->\n <pb-grid-action \n action=\"add\" \n class=\"grid-add\" \n [attr.grid]=\"'#' + (data.grid?.id || 'grid')\"\n >\n <paper-button \n role=\"button\" \n tabindex=\"0\" \n animated=\"\" \n elevation=\"0\" \n aria-disabled=\"false\"\n >\n <iron-icon icon=\"icons:add\"></iron-icon> \n {{ data.labels?.addColumn || 'Aggiungi colonna' }}\n </paper-button>\n </pb-grid-action>\n\n <!-- Pulsante download -->\n <ng-container *ngIf=\"data.download\">\n <div class=\"n7-parallel-text-viewer__toolbar-container-flex\">\n <pb-download\n [type]=\"data.download.format || ''\"\n [src]=\"data.docs[0].id\"\n [url]=\"data.download.file || ''\"\n dialog=\"downloadDialog\"\n (click)=\"openDownload($event, data.download.file)\"\n [title]=\"data.download.label && data.download.format ? data.download.label + ' ' + data.download.format : ''\"\n >\n <paper-button raised=\"\">\n {{data.download.label && data.download.format ? data.download.label + ' ' + data.download.format : 'Download'}}\n </paper-button>\n </pb-download>\n </div>\n </ng-container>\n\n <pb-progress\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n indeterminate=\"\"\n bottom-item=\"bottom-item\"\n style=\"visibility: hidden\"\n ></pb-progress>\n </app-toolbar>\n </app-header>\n\n <!-- Main Content with Parallel Grid -->\n <main class=\"content-body\">\n <pb-grid \n [id]=\"data.grid?.id || 'grid'\"\n [attr.panels]=\"data.grid?.panels ? '[' + data.grid.panels.join(',') + ']' : '[0]'\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n >\n <!-- Main pb-->\n <pb-view \n id=\"transcription-view\"\n [attr.src]=\"data.mainDoc.doc_id || data.docs[0].id\"\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n [attr.odd]=\"data.mainDoc.odd\"\n [attr.view]=\"data.mainDoc.view\"\n (click)=\"onClick($event)\"\n >\n </pb-view>\n\n <!-- Template -->\n <template>\n <pb-panel [attr.emit]=\"data.grid?.emit || 'transcription'\">\n <!-- Rimozione colonna -->\n <pb-grid-action \n [attr.grid]=\"'#' + (data.grid?.id || 'grid')\" \n slot=\"toolbar\" \n action=\"remove\"\n >\n <paper-icon-button icon=\"icons:close\"></paper-icon-button>\n </pb-grid-action>\n\n <!-- Pannelli secondari -->\n \n <ng-container *ngFor=\"let panel of data.panels\">\n <ng-container *ngIf=\"panel.enabled\">\n <ng-container [ngSwitch]=\"panel.type\">\n\n <ng-container *ngSwitchCase=\"'text'\">\n <template [attr.title]=\"panel.title\">\n <pb-view \n [attr.id]=\"panel.id + '-view'\"\n [attr.src]=\"panel.doc_id || data.docs[0].id\"\n [attr.odd]=\"panel.odd\"\n [attr.view]=\"panel.view || 'single'\"\n [attr.xpath]=\"panel.xpath\"\n [attr.map]=\"panel.mapFunction\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n (click)=\"onClick($event)\"\n >\n <pb-param \n *ngFor=\"let param of panel.params || []\"\n [attr.name]=\"param.name\"\n [attr.value]=\"param.value\"\n ></pb-param>\n </pb-view>\n </template>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'facsimile'\">\n <template [attr.title]=\"panel.title\">\n <pb-facsimile\n *ngIf=\"panel.facsimile?.enabled\"\n [attr.base-uri]=\"panel.facsimile.uri\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n class=\"pb-facsimile\"\n [style.height]=\"panel.facsimile.options?.height || '600px'\"\n [attr.default-zoom-level]=\"panel.facsimile.options?.defaultZoomLevel || 0\"\n [attr.show-navigator]=\"panel.facsimile.options?.showNavigator ? 'show-navigator' : null\"\n [attr.show-navigation-control]=\"panel.facsimile.options?.showNavigationControl ? 'show-navigation-control' : null\"\n [attr.show-home-control]=\"panel.facsimile.options?.showHomeControl ? 'show-home-control' : null\"\n [attr.show-rotation-control]=\"panel.facsimile.options?.showRotationControl ? 'show-rotation-control' : null\"\n [attr.show-full-page-control]=\"panel.facsimile.options?.showFullPageControl ? 'show-full-page-control' : null\"\n [scans]=\"panel.facsimile.scans\"\n >\n </pb-facsimile>\n </template>\n </ng-container>\n </ng-container>\n </ng-container>\n </ng-container>\n\n </pb-panel>\n </template>\n </pb-grid>\n </main>\n\n <!-- TOC Drawer -->\n <pb-drawer\n toggle=\"tocToggle\"\n class=\"tocDrawer\"\n emit=\"toc\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n >\n <div class=\"drawer-content\">\n <h3>\n <ng-container *ngIf=\"data.labels && data.labels.toc\">\n {{data.labels.toc}}\n </ng-container>\n <ng-container *ngIf=\"!data.labels || !data.labels.toc\">\n <pb-i18n key=\"document.contents\">Contents</pb-i18n>\n </ng-container>\n </h3>\n <pb-load\n *ngIf=\"data.docs && data.docs.length > 0\"\n id=\"toc\"\n url=\"api/document/{doc}/contents?target=transcription&icons=true\"\n [src]=\"data.docs[0].id\"\n subscribe=\"toc\"\n emit=\"toc\"\n expand=\"expand\"\n auto=\"auto\"\n >\n <ng-container *ngIf=\"data.labels && data.labels.loading\">\n {{data.labels.loading}}\n </ng-container>\n <ng-container *ngIf=\"!data.labels || !data.labels.loading\">\n <pb-i18n key=\"dialogs.loading\">Loading</pb-i18n>\n </ng-container>\n </pb-load>\n </div>\n </pb-drawer>\n </app-header-layout>\n </app-drawer-layout>\n </pb-page>\n</div>\n\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.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }] }); }
|
|
2424
|
+
}
|
|
2425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ParallelTextViewerComponent, decorators: [{
|
|
2426
|
+
type: Component,
|
|
2427
|
+
args: [{ selector: 'n7-parallel-text-viewer', template: "<div\n class=\"n7-parallel-text-viewer {{data?.classes || ''}}\"\n *ngIf=\"data && data.endpoint\"\n>\n <pb-page \n [attr.endpoint]=\"data.endpoint\" \n api-version=\"1.0.0\" \n url-path=\"query\"\n [attr.url-ignore]=\"data.libOptions?.pbPage?.urlIgnore?.join(',') || 'odd,view,path,selectors,highlight,view2'\"\n >\n <!-- PB DOCUMENT-->\n <pb-document\n *ngFor=\"let doc of data.docs; index as $i\"\n [attr.path]=\"doc.xml\"\n [attr.odd]=\"doc.odd\"\n [attr.id]=\"doc.id\"\n [attr.view]=\"doc.view\"\n [attr.disable-history]=\"doc.disableHistory === true ? '' : null\"\n >\n </pb-document>\n\n <app-drawer-layout force-narrow=\"force-narrow\" narrow=\"\">\n <app-header-layout>\n <app-header\n fixed=\"fixed\"\n data-template=\"browse:fix-links\"\n style=\"\n transition-duration: 0ms;\n transform: translate3d(0px, 0px, 0px);\n left: 0px;\n right: 0.399994px;\n \"\n >\n <app-toolbar\n class=\"toolbar\"\n sticky=\"sticky\"\n style=\"transform: translate3d(0px, 0px, 0px)\"\n >\n <!-- TOC button -->\n <paper-icon-button\n id=\"tocToggle\"\n class=\"toc-toggle\"\n icon=\"icons:view-list\"\n role=\"button\"\n tabindex=\"0\"\n aria-disabled=\"false\"\n ></paper-icon-button>\n\n <!-- Plain reading view-->\n <pb-toggle-feature\n *ngIf=\"data.docs?.length === 1\"\n name=\"highlight1\"\n selector=\"tei-app,pb-popover,pb-highlight,.quote,pb-alternate\"\n default=\"off\"\n action=\"disable\"\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n >\n <ng-container *ngIf=\"data.labels && data.labels.view\">\n {{data.labels.view}}\n </ng-container>\n <ng-container *ngIf=\"!data.labels || !data.labels.view\">\n <pb-i18n key=\"document.plain\">Plain Reading View</pb-i18n>\n </ng-container>\n </pb-toggle-feature>\n\n <!-- Zoom Controls -->\n <pb-zoom\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n direction=\"in\"\n icon=\"icons:zoom-in\"\n ></pb-zoom>\n <pb-zoom\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n direction=\"out\"\n icon=\"icons:zoom-out\"\n ></pb-zoom>\n\n <!-- Navigation Controls -->\n <pb-navigation\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n keyboard=\"left\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n direction=\"backward\"\n unit=\"page\"\n >\n <paper-icon-button\n icon=\"icons:chevron-left\"\n role=\"button\"\n tabindex=\"0\"\n aria-disabled=\"false\"\n ></paper-icon-button>\n </pb-navigation>\n <pb-navigation\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n keyboard=\"right\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n direction=\"forward\"\n unit=\"page\"\n >\n <paper-icon-button\n icon=\"icons:chevron-right\"\n role=\"button\"\n tabindex=\"0\"\n aria-disabled=\"false\"\n ></paper-icon-button>\n </pb-navigation>\n\n <!-- Pulsante aggiungi pannello -->\n <pb-grid-action \n action=\"add\" \n class=\"grid-add\" \n [attr.grid]=\"'#' + (data.grid?.id || 'grid')\"\n >\n <paper-button \n role=\"button\" \n tabindex=\"0\" \n animated=\"\" \n elevation=\"0\" \n aria-disabled=\"false\"\n >\n <iron-icon icon=\"icons:add\"></iron-icon> \n {{ data.labels?.addColumn || 'Aggiungi colonna' }}\n </paper-button>\n </pb-grid-action>\n\n <!-- Pulsante download -->\n <ng-container *ngIf=\"data.download\">\n <div class=\"n7-parallel-text-viewer__toolbar-container-flex\">\n <pb-download\n [type]=\"data.download.format || ''\"\n [src]=\"data.docs[0].id\"\n [url]=\"data.download.file || ''\"\n dialog=\"downloadDialog\"\n (click)=\"openDownload($event, data.download.file)\"\n [title]=\"data.download.label && data.download.format ? data.download.label + ' ' + data.download.format : ''\"\n >\n <paper-button raised=\"\">\n {{data.download.label && data.download.format ? data.download.label + ' ' + data.download.format : 'Download'}}\n </paper-button>\n </pb-download>\n </div>\n </ng-container>\n\n <pb-progress\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n indeterminate=\"\"\n bottom-item=\"bottom-item\"\n style=\"visibility: hidden\"\n ></pb-progress>\n </app-toolbar>\n </app-header>\n\n <!-- Main Content with Parallel Grid -->\n <main class=\"content-body\">\n <pb-grid \n [id]=\"data.grid?.id || 'grid'\"\n [attr.panels]=\"data.grid?.panels ? '[' + data.grid.panels.join(',') + ']' : '[0]'\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n >\n <!-- Main pb-->\n <pb-view \n id=\"transcription-view\"\n [attr.src]=\"data.mainDoc.doc_id || data.docs[0].id\"\n [attr.emit]=\"data.grid?.emit || 'transcription'\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n [attr.odd]=\"data.mainDoc.odd\"\n [attr.view]=\"data.mainDoc.view\"\n (click)=\"onClick($event)\"\n >\n </pb-view>\n\n <!-- Template -->\n <template>\n <pb-panel [attr.emit]=\"data.grid?.emit || 'transcription'\">\n <!-- Rimozione colonna -->\n <pb-grid-action \n [attr.grid]=\"'#' + (data.grid?.id || 'grid')\" \n slot=\"toolbar\" \n action=\"remove\"\n >\n <paper-icon-button icon=\"icons:close\"></paper-icon-button>\n </pb-grid-action>\n\n <!-- Pannelli secondari -->\n \n <ng-container *ngFor=\"let panel of data.panels\">\n <ng-container *ngIf=\"panel.enabled\">\n <ng-container [ngSwitch]=\"panel.type\">\n\n <ng-container *ngSwitchCase=\"'text'\">\n <template [attr.title]=\"panel.title\">\n <pb-view \n [attr.id]=\"panel.id + '-view'\"\n [attr.src]=\"panel.doc_id || data.docs[0].id\"\n [attr.odd]=\"panel.odd\"\n [attr.view]=\"panel.view || 'single'\"\n [attr.xpath]=\"panel.xpath\"\n [attr.map]=\"panel.mapFunction\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n (click)=\"onClick($event)\"\n >\n <pb-param \n *ngFor=\"let param of panel.params || []\"\n [attr.name]=\"param.name\"\n [attr.value]=\"param.value\"\n ></pb-param>\n </pb-view>\n </template>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'facsimile'\">\n <template [attr.title]=\"panel.title\">\n <pb-facsimile\n *ngIf=\"panel.facsimile?.enabled\"\n [attr.base-uri]=\"panel.facsimile.uri\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n class=\"pb-facsimile\"\n [style.height]=\"panel.facsimile.options?.height || '600px'\"\n [attr.default-zoom-level]=\"panel.facsimile.options?.defaultZoomLevel || 0\"\n [attr.show-navigator]=\"panel.facsimile.options?.showNavigator ? 'show-navigator' : null\"\n [attr.show-navigation-control]=\"panel.facsimile.options?.showNavigationControl ? 'show-navigation-control' : null\"\n [attr.show-home-control]=\"panel.facsimile.options?.showHomeControl ? 'show-home-control' : null\"\n [attr.show-rotation-control]=\"panel.facsimile.options?.showRotationControl ? 'show-rotation-control' : null\"\n [attr.show-full-page-control]=\"panel.facsimile.options?.showFullPageControl ? 'show-full-page-control' : null\"\n [scans]=\"panel.facsimile.scans\"\n >\n </pb-facsimile>\n </template>\n </ng-container>\n </ng-container>\n </ng-container>\n </ng-container>\n\n </pb-panel>\n </template>\n </pb-grid>\n </main>\n\n <!-- TOC Drawer -->\n <pb-drawer\n toggle=\"tocToggle\"\n class=\"tocDrawer\"\n emit=\"toc\"\n [attr.subscribe]=\"data.grid?.subscribe || 'transcription'\"\n >\n <div class=\"drawer-content\">\n <h3>\n <ng-container *ngIf=\"data.labels && data.labels.toc\">\n {{data.labels.toc}}\n </ng-container>\n <ng-container *ngIf=\"!data.labels || !data.labels.toc\">\n <pb-i18n key=\"document.contents\">Contents</pb-i18n>\n </ng-container>\n </h3>\n <pb-load\n *ngIf=\"data.docs && data.docs.length > 0\"\n id=\"toc\"\n url=\"api/document/{doc}/contents?target=transcription&icons=true\"\n [src]=\"data.docs[0].id\"\n subscribe=\"toc\"\n emit=\"toc\"\n expand=\"expand\"\n auto=\"auto\"\n >\n <ng-container *ngIf=\"data.labels && data.labels.loading\">\n {{data.labels.loading}}\n </ng-container>\n <ng-container *ngIf=\"!data.labels || !data.labels.loading\">\n <pb-i18n key=\"dialogs.loading\">Loading</pb-i18n>\n </ng-container>\n </pb-load>\n </div>\n </pb-drawer>\n </app-header-layout>\n </app-drawer-layout>\n </pb-page>\n</div>\n\n" }]
|
|
2428
|
+
}], propDecorators: { data: [{
|
|
2429
|
+
type: Input
|
|
2430
|
+
}], emit: [{
|
|
2431
|
+
type: Input
|
|
2432
|
+
}] } });
|
|
2433
|
+
|
|
2388
2434
|
const COMPONENTS = [
|
|
2389
2435
|
AdvancedAutocompleteComponent,
|
|
2390
2436
|
AlertComponent,
|
|
@@ -2435,6 +2481,7 @@ const COMPONENTS = [
|
|
|
2435
2481
|
WizardComponent,
|
|
2436
2482
|
ProgressLineComponent,
|
|
2437
2483
|
NetworkComponent,
|
|
2484
|
+
ParallelTextViewerComponent,
|
|
2438
2485
|
];
|
|
2439
2486
|
class DvComponentsLibModule {
|
|
2440
2487
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DvComponentsLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
@@ -2486,7 +2533,8 @@ class DvComponentsLibModule {
|
|
|
2486
2533
|
TreeComponent,
|
|
2487
2534
|
WizardComponent,
|
|
2488
2535
|
ProgressLineComponent,
|
|
2489
|
-
NetworkComponent
|
|
2536
|
+
NetworkComponent,
|
|
2537
|
+
ParallelTextViewerComponent], imports: [CommonModule, RouterModule], exports: [AdvancedAutocompleteComponent,
|
|
2490
2538
|
AlertComponent,
|
|
2491
2539
|
AnchorWrapperComponent,
|
|
2492
2540
|
AvatarComponent,
|
|
@@ -2534,7 +2582,8 @@ class DvComponentsLibModule {
|
|
|
2534
2582
|
TreeComponent,
|
|
2535
2583
|
WizardComponent,
|
|
2536
2584
|
ProgressLineComponent,
|
|
2537
|
-
NetworkComponent
|
|
2585
|
+
NetworkComponent,
|
|
2586
|
+
ParallelTextViewerComponent] }); }
|
|
2538
2587
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DvComponentsLibModule, imports: [CommonModule, RouterModule] }); }
|
|
2539
2588
|
}
|
|
2540
2589
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DvComponentsLibModule, decorators: [{
|
|
@@ -5587,15 +5636,15 @@ const TAG_MOCK = {
|
|
|
5587
5636
|
const TEXT_VIEWER_MOCK = {
|
|
5588
5637
|
// TODO: update with mock values
|
|
5589
5638
|
// endpoint: 'https://teipublisher.muruca.cloud/exist/apps/tei-publisher',
|
|
5590
|
-
|
|
5591
|
-
endpoint: 'https://teipublisher9.muruca.cloud/exist/apps/tei-publisher',
|
|
5639
|
+
endpoint: 'http://localhost:8081/exist/apps/tei-publisher',
|
|
5640
|
+
// endpoint: 'https://teipublisher9.muruca.cloud/exist/apps/tei-publisher',
|
|
5592
5641
|
// endpoint: 'https://teipublisher.com/exist/apps/tei-publisher',
|
|
5593
5642
|
docs: [
|
|
5594
5643
|
{
|
|
5595
5644
|
// channel: "apparato",
|
|
5596
5645
|
// xml: "playground/amor_pleito_new_1734374328.xml",
|
|
5597
5646
|
// xml: "playground/amor_pleito_new_1745920290.xml",
|
|
5598
|
-
xml: "
|
|
5647
|
+
xml: "playground/ivavon-luglio.xml",
|
|
5599
5648
|
// xml: "playground/LosdonairesdeMatico.xml",
|
|
5600
5649
|
// xml: "playground/Ivanov-152-3.xml",
|
|
5601
5650
|
// xml: "playground/sn_iliesi.xml",
|
|
@@ -6608,6 +6657,100 @@ const NETWORK_MOCK = {
|
|
|
6608
6657
|
}
|
|
6609
6658
|
};
|
|
6610
6659
|
|
|
6660
|
+
const PARALLEL_TEXT_VIEWER_MOCK = {
|
|
6661
|
+
endpoint: 'http://localhost:8081/exist/apps/tei-publisher',
|
|
6662
|
+
// endpoint: 'https://teipublisher.muruca.cloud/exist/apps/tei-publisher',
|
|
6663
|
+
// endpoint: 'https://teipublisher9.muruca.cloud/exist/apps/tei-publisher',
|
|
6664
|
+
docs: [
|
|
6665
|
+
{
|
|
6666
|
+
xml: 'playground/i229_aut_pl_cb_con-omissis_def_230625_1753707925.xml',
|
|
6667
|
+
id: 'document1',
|
|
6668
|
+
}
|
|
6669
|
+
],
|
|
6670
|
+
mainDoc: {
|
|
6671
|
+
odd: 'maximhum',
|
|
6672
|
+
doc_id: 'document1',
|
|
6673
|
+
view: 'page',
|
|
6674
|
+
},
|
|
6675
|
+
// Grid
|
|
6676
|
+
grid: {
|
|
6677
|
+
id: 'grid',
|
|
6678
|
+
panels: [0, 1], // Initial panels to show
|
|
6679
|
+
subscribe: 'transcription',
|
|
6680
|
+
emit: 'transcription',
|
|
6681
|
+
},
|
|
6682
|
+
// Pannelli secondari
|
|
6683
|
+
panels: [
|
|
6684
|
+
{
|
|
6685
|
+
id: 'apparatus',
|
|
6686
|
+
doc_id: 'document1',
|
|
6687
|
+
enabled: true,
|
|
6688
|
+
title: 'Apparatus',
|
|
6689
|
+
type: 'text',
|
|
6690
|
+
odd: 'muruca_apparatus_stand-off',
|
|
6691
|
+
view: 'single',
|
|
6692
|
+
},
|
|
6693
|
+
{
|
|
6694
|
+
id: 'citations',
|
|
6695
|
+
enabled: true,
|
|
6696
|
+
doc_id: 'document1',
|
|
6697
|
+
title: 'Biblical Citations',
|
|
6698
|
+
type: 'text',
|
|
6699
|
+
odd: 'biblical',
|
|
6700
|
+
view: 'single',
|
|
6701
|
+
},
|
|
6702
|
+
{
|
|
6703
|
+
id: 'authorities',
|
|
6704
|
+
enabled: true,
|
|
6705
|
+
doc_id: 'document1',
|
|
6706
|
+
title: 'Authorities',
|
|
6707
|
+
type: 'text',
|
|
6708
|
+
odd: 'authority',
|
|
6709
|
+
view: 'single',
|
|
6710
|
+
},
|
|
6711
|
+
{
|
|
6712
|
+
id: 'facsimile',
|
|
6713
|
+
enabled: false,
|
|
6714
|
+
title: 'Facsimile',
|
|
6715
|
+
type: 'facsimile',
|
|
6716
|
+
facsimile: {
|
|
6717
|
+
uri: 'https://iiif.digitaltwin.netseven.work/iiif/3/2dModel%2F24%2F2025.05.19_12.44.31%2Fprocessed%2F',
|
|
6718
|
+
scans: [
|
|
6719
|
+
'Ms_XIII_D_79_000_pyramidal.ptif',
|
|
6720
|
+
'Ms_XIII_D_79_001_pyramidal.ptif',
|
|
6721
|
+
'Ms_XIII_D_79_002_pyramidal.ptif',
|
|
6722
|
+
],
|
|
6723
|
+
options: {
|
|
6724
|
+
height: '700px',
|
|
6725
|
+
defaultZoomLevel: 0,
|
|
6726
|
+
showNavigator: true,
|
|
6727
|
+
showNavigationControl: true,
|
|
6728
|
+
showHomeControl: true,
|
|
6729
|
+
showRotationControl: false,
|
|
6730
|
+
showFullPageControl: true,
|
|
6731
|
+
},
|
|
6732
|
+
},
|
|
6733
|
+
},
|
|
6734
|
+
],
|
|
6735
|
+
download: {
|
|
6736
|
+
label: 'Download',
|
|
6737
|
+
file: 'http://staging.teipublisher.netseven.it/exist/apps/tei-publisher/api/document/mambrino%2Fsm1_source_def_1647334393.xml',
|
|
6738
|
+
format: 'XML',
|
|
6739
|
+
},
|
|
6740
|
+
// Labels
|
|
6741
|
+
labels: {
|
|
6742
|
+
view: 'Plain Reading View',
|
|
6743
|
+
addColumn: 'Add Column',
|
|
6744
|
+
toc: 'Table of Contents',
|
|
6745
|
+
loading: 'Loading...',
|
|
6746
|
+
},
|
|
6747
|
+
libOptions: {
|
|
6748
|
+
pbPage: {
|
|
6749
|
+
urlIgnore: ["highlight1,odd,view,path,selectors,highlight,view2"],
|
|
6750
|
+
},
|
|
6751
|
+
},
|
|
6752
|
+
};
|
|
6753
|
+
|
|
6611
6754
|
/*
|
|
6612
6755
|
* Public API Surface of dv-components-lib
|
|
6613
6756
|
*/
|
|
@@ -6617,5 +6760,5 @@ const NETWORK_MOCK = {
|
|
|
6617
6760
|
* Generated bundle index. Do not edit.
|
|
6618
6761
|
*/
|
|
6619
6762
|
|
|
6620
|
-
export { ADVANCED_AUTOCOMPLETE_MOCK, ALERT_MOCK, AVATAR_MOCK, AdvancedAutocompleteComponent, AlertComponent, AnchorWrapperComponent, AvatarComponent, BREADCRUMBS_MOCK, BUBBLECHART_MOCK, BUTTON_MOCK, BreadcrumbsComponent, BubbleChartComponent, ButtonComponent, CAROUSEL_MOCK, CHART_MOCK, CONTENT_PLACEHOLDER_MOCK, CarouselComponent, ChartComponent, ContentPlaceholderComponent, DATA_WIDGET_MOCK, DATEPICKER_MOCK, DataWidgetComponent, DatepickerComponent, DvComponentsLibModule, FACET_HEADER_MOCK, FACET_MOCK, FACET_YEAR_RANGE_MOCK, FILE_SELECTOR_MOCK, FOOTER_MOCK, FacetComponent, FacetHeaderComponent, FacetYearRangeComponent, FileSelectorComponent, FooterComponent, HEADER_MOCK, HERO_MOCK, HISTOGRAM_RANGE_MOCK, HeaderComponent, HeroComponent, HistogramRangeComponent, ICON_MOCK, IMAGE_VIEWER_MOCK, IMAGE_VIEWER_TOOLS_MOCK, INNER_TITLE_MOCK, INPUT_CHECKBOX_MOCK, INPUT_LINK_MOCK, INPUT_SELECT_MOCK, INPUT_TEXTAREA_MOCK, INPUT_TEXT_MOCK, ITEM_PREVIEW_MOCK, IconComponent, ImageViewerComponent, ImageViewerToolsComponent, InnerTitleComponent, InputCheckboxComponent, InputLinkComponent, InputSelectComponent, InputTextComponent, InputTextareaComponent, ItemPreviewComponent, LOADER_MOCK, LoaderComponent, MAP_MOCK, METADATA_VIEWER_MOCK, MIRADOR_MOCK, MapComponent, MetadataViewerComponent, MiradorComponent, NAV_MOCK, NETWORK_MOCK, NavComponent, NetworkComponent, PAGINATION_MOCK, PROGRESS_LINE_MOCK, PaginationComponent, ProgressLineComponent, SIDEBAR_HEADER_MOCK, SIGNUP_MOCK, SIMPLE_AUTOCOMPLETE_MOCK, SidebarHeaderComponent, SignupComponent, SimpleAutocompleteComponent, TABLE_MOCK, TAG_MOCK, TEXT_VIEWER_MOCK, TEXT_VIEWER_MOCK_PETRARCA, TIMELINE_GROUP_MOCK, TIMELINE_MOCK, TOAST_MOCK, TOOLTIP_CONTENT_MOCK, TREE_MOCK, TableComponent, TagComponent, TextViewerComponent, TimelineComponent, ToastComponent, TooltipContentComponent, TreeComponent, WIZARD_MOCK, WizardComponent };
|
|
6763
|
+
export { ADVANCED_AUTOCOMPLETE_MOCK, ALERT_MOCK, AVATAR_MOCK, AdvancedAutocompleteComponent, AlertComponent, AnchorWrapperComponent, AvatarComponent, BREADCRUMBS_MOCK, BUBBLECHART_MOCK, BUTTON_MOCK, BreadcrumbsComponent, BubbleChartComponent, ButtonComponent, CAROUSEL_MOCK, CHART_MOCK, CONTENT_PLACEHOLDER_MOCK, CarouselComponent, ChartComponent, ContentPlaceholderComponent, DATA_WIDGET_MOCK, DATEPICKER_MOCK, DataWidgetComponent, DatepickerComponent, DvComponentsLibModule, FACET_HEADER_MOCK, FACET_MOCK, FACET_YEAR_RANGE_MOCK, FILE_SELECTOR_MOCK, FOOTER_MOCK, FacetComponent, FacetHeaderComponent, FacetYearRangeComponent, FileSelectorComponent, FooterComponent, HEADER_MOCK, HERO_MOCK, HISTOGRAM_RANGE_MOCK, HeaderComponent, HeroComponent, HistogramRangeComponent, ICON_MOCK, IMAGE_VIEWER_MOCK, IMAGE_VIEWER_TOOLS_MOCK, INNER_TITLE_MOCK, INPUT_CHECKBOX_MOCK, INPUT_LINK_MOCK, INPUT_SELECT_MOCK, INPUT_TEXTAREA_MOCK, INPUT_TEXT_MOCK, ITEM_PREVIEW_MOCK, IconComponent, ImageViewerComponent, ImageViewerToolsComponent, InnerTitleComponent, InputCheckboxComponent, InputLinkComponent, InputSelectComponent, InputTextComponent, InputTextareaComponent, ItemPreviewComponent, LOADER_MOCK, LoaderComponent, MAP_MOCK, METADATA_VIEWER_MOCK, MIRADOR_MOCK, MapComponent, MetadataViewerComponent, MiradorComponent, NAV_MOCK, NETWORK_MOCK, NavComponent, NetworkComponent, PAGINATION_MOCK, PARALLEL_TEXT_VIEWER_MOCK, PROGRESS_LINE_MOCK, PaginationComponent, ParallelTextViewerComponent, ProgressLineComponent, SIDEBAR_HEADER_MOCK, SIGNUP_MOCK, SIMPLE_AUTOCOMPLETE_MOCK, SidebarHeaderComponent, SignupComponent, SimpleAutocompleteComponent, TABLE_MOCK, TAG_MOCK, TEXT_VIEWER_MOCK, TEXT_VIEWER_MOCK_PETRARCA, TIMELINE_GROUP_MOCK, TIMELINE_MOCK, TOAST_MOCK, TOOLTIP_CONTENT_MOCK, TREE_MOCK, TableComponent, TagComponent, TextViewerComponent, TimelineComponent, ToastComponent, TooltipContentComponent, TreeComponent, WIZARD_MOCK, WizardComponent };
|
|
6621
6764
|
//# sourceMappingURL=net7-components.mjs.map
|