@canopy-iiif/app 0.13.0 → 0.13.1
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.
|
@@ -4,7 +4,10 @@ import CloverSlider from '@samvera/clover-iiif/slider';
|
|
|
4
4
|
import 'swiper/css';
|
|
5
5
|
import 'swiper/css/navigation';
|
|
6
6
|
import 'swiper/css/pagination';
|
|
7
|
-
import {
|
|
7
|
+
import {
|
|
8
|
+
mergeSliderOptions,
|
|
9
|
+
normalizeSliderOptions,
|
|
10
|
+
} from '../../ui/dist/index.mjs';
|
|
8
11
|
|
|
9
12
|
function ready(fn) {
|
|
10
13
|
if (document.readyState === 'loading') {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { createRoot, hydrateRoot } from 'react-dom/client';
|
|
3
|
-
import Timeline from '../../ui/
|
|
3
|
+
import { Timeline } from '../../ui/dist/index.mjs';
|
|
4
4
|
|
|
5
5
|
function ready(fn) {
|
|
6
6
|
if (typeof document === 'undefined') return;
|
package/package.json
CHANGED