@teipublisher/pb-components 2.5.1 → 2.6.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/CHANGELOG.md +15 -0
- package/Dockerfile +2 -4
- package/dist/demo/pb-svg.html +2 -5
- package/dist/pb-components-bundle.js +13 -13
- package/dist/pb-elements.json +8 -2
- package/package.json +1 -1
- package/pb-elements.json +8 -2
- package/src/authority/{gf.js → anton.js} +7 -5
- package/src/authority/connectors.js +3 -2
- package/src/pb-svg.js +27 -21
- package/src/pb-tabs.js +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [2.6.1](https://github.com/eeditiones/tei-publisher-components/compare/v2.6.0...v2.6.1) (2023-07-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **pb-svg:** react to url property change as well as event ([5fb4f7f](https://github.com/eeditiones/tei-publisher-components/commit/5fb4f7f48867a145a7cf97d5f1787a43006220a4))
|
|
7
|
+
* **pb-tabs:** emit pb-tab event when selected tab changes ([709ee80](https://github.com/eeditiones/tei-publisher-components/commit/709ee8053526b290b257684bf97a21ed4a54a392))
|
|
8
|
+
|
|
9
|
+
# [2.6.0](https://github.com/eeditiones/tei-publisher-components/compare/v2.5.1...v2.6.0) (2023-07-06)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **authority:** renamed gf.js to anton.js and made endpoint and provider name configurable ([5dc6943](https://github.com/eeditiones/tei-publisher-components/commit/5dc69436644954d813801faf09e1c50f565b5d6e))
|
|
15
|
+
|
|
1
16
|
## [2.5.1](https://github.com/eeditiones/tei-publisher-components/compare/v2.5.0...v2.5.1) (2023-06-14)
|
|
2
17
|
|
|
3
18
|
|
package/Dockerfile
CHANGED
|
@@ -25,9 +25,7 @@ RUN curl -L -o apache-ant-${ANT_VERSION}-bin.tar.gz http://www.apache.org/dist/a
|
|
|
25
25
|
|
|
26
26
|
ENV PATH ${PATH}:${ANT_HOME}/bin
|
|
27
27
|
|
|
28
|
-
RUN
|
|
29
|
-
&& apt-get install -y nodejs \
|
|
30
|
-
&& curl -L https://www.npmjs.com/install.sh | sh
|
|
28
|
+
RUN apt-get update && apt-get install -y nodejs npm
|
|
31
29
|
|
|
32
30
|
FROM builder as tei
|
|
33
31
|
|
|
@@ -89,4 +87,4 @@ ENV JAVA_TOOL_OPTIONS \
|
|
|
89
87
|
# pre-populate the database by launching it once
|
|
90
88
|
RUN [ "java", \
|
|
91
89
|
"org.exist.start.Main", "client", "-l", \
|
|
92
|
-
"--no-gui", "--xpath", "system:get-version()" ]
|
|
90
|
+
"--no-gui", "--xpath", "system:get-version()" ]
|
package/dist/demo/pb-svg.html
CHANGED
|
@@ -37,12 +37,9 @@
|
|
|
37
37
|
if (current === files.length) {
|
|
38
38
|
current = 0;
|
|
39
39
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
file: files[current]
|
|
43
|
-
}
|
|
40
|
+
pbEvents.emit('pb-show-annotation', null, {
|
|
41
|
+
file: files[current]
|
|
44
42
|
});
|
|
45
|
-
document.dispatchEvent(ev);
|
|
46
43
|
}
|
|
47
44
|
</script>
|
|
48
45
|
</pb-page>
|