@teipublisher/pb-components 2.11.1 → 2.12.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 +14 -0
- package/dist/demo/demos.json +1 -2
- package/dist/demo/pb-mei.html +3 -3
- package/dist/{iron-form-89b60473.js → iron-form-a25b58de.js} +1 -1
- package/dist/paper-checkbox-c9177e35.js +1596 -0
- package/dist/paper-icon-button-be4dc644.js +398 -0
- package/dist/paper-listbox-1fc346ac.js +1463 -0
- package/dist/pb-components-bundle.js +264 -402
- package/dist/pb-edit-app.js +1 -1
- package/dist/pb-elements.json +30 -3
- package/dist/pb-mei.js +139 -0
- package/dist/pb-odd-editor.js +1 -1
- package/dist/vaadin-element-mixin-660b2157.js +516 -0
- package/lib/airtable.browser.js +3753 -0
- package/lib/web-midi-player/index.js +1 -0
- package/package.json +6 -3
- package/pb-elements.json +30 -3
- package/src/authority/airtable.js +4 -3
- package/src/pb-components.js +0 -1
- package/src/pb-mei.js +67 -33
- package/dist/paper-checkbox-56ead3d4.js +0 -3069
- package/dist/vaadin-element-mixin-67c5648d.js +0 -913
- package/lib/openseadragon.min.js +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.12.1](https://github.com/eeditiones/tei-publisher-components/compare/v2.12.0...v2.12.1) (2023-08-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **pb-authority-lookup,airtable:** fix error caused by empty field ([1af83fb](https://github.com/eeditiones/tei-publisher-components/commit/1af83fb88f594cfb3a667e619702a42b4b136859))
|
|
7
|
+
|
|
8
|
+
# [2.12.0](https://github.com/eeditiones/tei-publisher-components/compare/v2.11.1...v2.12.0) (2023-08-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **pb-mei:** allow MEI data to be passed directly; move into separate bundle pb-mei ([9fe14f4](https://github.com/eeditiones/tei-publisher-components/commit/9fe14f4e8b34e1ab2934d75e3602fbed2b45185d))
|
|
14
|
+
|
|
1
15
|
## [2.11.1](https://github.com/eeditiones/tei-publisher-components/compare/v2.11.0...v2.11.1) (2023-08-22)
|
|
2
16
|
|
|
3
17
|
|
package/dist/demo/demos.json
CHANGED
package/dist/demo/pb-mei.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
<title>pb-mei Demo</title>
|
|
8
8
|
<link rel="stylesheet" href="demo.css">
|
|
9
|
-
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script><script type="module" src="../pb-components-bundle.js"></script>
|
|
9
|
+
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script><script type="module" src="../pb-components-bundle.js"></script><script type="module" src="../pb-mei.js"></script>
|
|
10
10
|
</head>
|
|
11
11
|
|
|
12
12
|
<body>
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
</style>
|
|
29
29
|
<pb-page endpoint="https://teipublisher.com/exist/apps/tei-publisher" api-version="1.0.0">
|
|
30
30
|
<main>
|
|
31
|
-
<pb-mei player url="https://raw.githubusercontent.com/music-encoding/sample-encodings/master/MEI_4.0/Music/Complete_examples/
|
|
31
|
+
<pb-mei player url="https://raw.githubusercontent.com/music-encoding/sample-encodings/master/MEI_4.0/Music/Complete_examples/Liszt_Four_little_pieces_No1.mei">
|
|
32
32
|
</pb-mei>
|
|
33
33
|
<pb-mei player url="https://raw.githubusercontent.com/music-encoding/sample-encodings/master/MEI_4.0/Music/Complete_examples/Joplin_Elite_Syncopations.mei">
|
|
34
34
|
</pb-mei>
|
|
35
|
-
<pb-mei player url="https://raw.githubusercontent.com/music-encoding/sample-encodings/master/MEI_4.0/Music/Complete_examples/
|
|
35
|
+
<pb-mei player url="https://raw.githubusercontent.com/music-encoding/sample-encodings/master/MEI_4.0/Music/Complete_examples/Grieg_Butterfly_Op43_No1.mei">
|
|
36
36
|
</pb-mei>
|
|
37
37
|
</main>
|
|
38
38
|
</pb-page>
|