@net7/boilerplate-arianna 5.2.4 → 5.2.6
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 +21 -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 +31 -4
- package/fesm2022/net7-boilerplate-arianna.mjs.map +1 -1
- package/lib/config-types/arianna/layouts.d.ts +14 -0
- package/lib/data-sources/index.d.ts +1 -0
- package/lib/data-sources/scheda-image-iiif.ds.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/styles/arianna/layouts/_scheda-layout.scss +17 -0
|
@@ -165,6 +165,20 @@ 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?: {
|
|
171
|
+
window?: {
|
|
172
|
+
sideBarOpenByDefault?: boolean;
|
|
173
|
+
allowClose?: boolean;
|
|
174
|
+
allowMaximize?: boolean;
|
|
175
|
+
defaultSideBarPanel?: string;
|
|
176
|
+
views?: any;
|
|
177
|
+
workspaceControlPanel?: any;
|
|
178
|
+
};
|
|
179
|
+
id: string;
|
|
180
|
+
};
|
|
181
|
+
};
|
|
168
182
|
/** pdf viewer options */
|
|
169
183
|
'pdf-viewer'?: {
|
|
170
184
|
/** 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] {
|