@teipublisher/pb-components 1.44.0 → 1.44.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.
- package/.github/workflows/main.yml +3 -2
- package/CHANGELOG.md +7 -0
- package/dist/demo/pb-facsimile.html +1 -1
- package/dist/demo/redirect.html +4 -3
- package/dist/pb-components-bundle.js +20 -20
- package/dist/pb-elements.json +18 -2
- package/gh-pages.js +5 -1
- package/package.json +1 -1
- package/pb-elements.json +18 -2
- package/src/pb-facsimile.js +10 -2
- package/src/pb-split-list.js +38 -0
- package/src/pb-timeline.js +31 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.44.1](https://github.com/eeditiones/tei-publisher-components/compare/v1.44.0...v1.44.1) (2023-03-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **cdn:** dynamic redirect for publisher cdn ([16b3d51](https://github.com/eeditiones/tei-publisher-components/commit/16b3d51e0997a4f114b4a8c524602e583c458c3e))
|
|
7
|
+
|
|
1
8
|
# [1.44.0](https://github.com/eeditiones/tei-publisher-components/compare/v1.43.5...v1.44.0) (2023-03-09)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
<pb-facsimile base-uri="https://apps.existsolutions.com/cantaloupe/iiif/2/"
|
|
44
44
|
facsimiles='["15929_000_IDL5772_BOss12034_IIIp79.jpg", "15929_000_IDL5772_BOss12034_IIIp80.jpg", "15929_000_IDL5772_BOss12034_IIIp81.jpg", "15929_000_IDL5772_BOss12034_IIIp82.jpg",
|
|
45
45
|
"does-not-exist.jpg"]'
|
|
46
|
-
default-zoom-level="0" show-navigator reference-strip
|
|
46
|
+
default-zoom-level="0" show-navigator show-sequence-control reference-strip
|
|
47
47
|
show-navigation-control show-home-control show-rotation-control>
|
|
48
48
|
<h3 slot="before">Facsimile Viewer Test</h3>
|
|
49
49
|
<div slot="after">Status: <span id="status"></span></div>
|
package/dist/demo/redirect.html
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
<head>
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
<head>
|
|
2
|
+
<div data-version="$version"></div>
|
|
3
|
+
<script type="text/javascript" src="redirect.js"></script>
|
|
4
|
+
</head>
|