@net7/boilerplate-arianna 5.2.5 → 5.2.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/esm2022/lib/config-types/arianna/layouts.mjs +1 -1
- package/esm2022/lib/data-sources/index.mjs +2 -1
- package/esm2022/lib/data-sources/scheda-image-iiif.ds.mjs +19 -0
- package/esm2022/lib/layouts/scheda-layout/scheda-layout.config.mjs +2 -1
- package/esm2022/lib/layouts/scheda-layout/scheda-layout.ds.mjs +7 -2
- package/esm2022/lib/layouts/scheda-layout/scheda-layout.mjs +3 -3
- package/fesm2022/net7-boilerplate-arianna.mjs +29 -4
- package/fesm2022/net7-boilerplate-arianna.mjs.map +1 -1
- package/lib/config-types/arianna/layouts.d.ts +4 -0
- package/lib/data-sources/index.d.ts +1 -0
- package/lib/data-sources/scheda-image-iiif.ds.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/styles/arianna/layouts/_scheda-layout.scss +17 -0
|
@@ -165,6 +165,10 @@ export interface ConfigAriannaSchedaLayout extends ConfigAriannaLayout {
|
|
|
165
165
|
/** is mouse context menu (right click) disabled? */
|
|
166
166
|
'context-menu'?: boolean;
|
|
167
167
|
};
|
|
168
|
+
/** image viewer options */
|
|
169
|
+
'iiif-viewer'?: {
|
|
170
|
+
libOptions?: any;
|
|
171
|
+
};
|
|
168
172
|
/** pdf viewer options */
|
|
169
173
|
'pdf-viewer'?: {
|
|
170
174
|
/** pdf lib (ngx-extended-pdf-viewer) options */
|
|
@@ -16,6 +16,7 @@ export * from './scheda-breadcrumbs.ds';
|
|
|
16
16
|
export * from './scheda-dropdown.ds';
|
|
17
17
|
export * from './sidebar-header.ds';
|
|
18
18
|
export * from './scheda-image.ds';
|
|
19
|
+
export * from './scheda-image-iiif.ds';
|
|
19
20
|
export * from './scheda-inner-title.ds';
|
|
20
21
|
export * from './scheda-metadata.ds';
|
|
21
22
|
export * from './scheda-pdf.ds';
|
package/package.json
CHANGED
|
@@ -356,6 +356,23 @@
|
|
|
356
356
|
}
|
|
357
357
|
}
|
|
358
358
|
}
|
|
359
|
+
|
|
360
|
+
/* Viewer iiif */
|
|
361
|
+
.aw-mirador-viewer {
|
|
362
|
+
// display: block;
|
|
363
|
+
// height: 500px;
|
|
364
|
+
|
|
365
|
+
.mui-1af2udd-WorkspaceArea-root,
|
|
366
|
+
.mui-rvh6fe-WorkspaceArea-root {
|
|
367
|
+
position: inherit;
|
|
368
|
+
height: 600px;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.fullscreen-enabled > .mui-1af2udd-WorkspaceArea-root,
|
|
372
|
+
.fullscreen-enabled > .mui-rvh6fe-WorkspaceArea-root {
|
|
373
|
+
height: 100%;
|
|
374
|
+
}
|
|
375
|
+
}
|
|
359
376
|
|
|
360
377
|
/* fix section hidden */
|
|
361
378
|
.aw-scheda__related-items[hidden] {
|