@harvard-lts/mirador-eda-plugin 0.1.1 → 0.1.2
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/dist/es/index.js +1 -1
- package/package.json +1 -1
- package/src/index.js +6 -1
package/dist/es/index.js
CHANGED
|
@@ -532,4 +532,4 @@ if (parsedCurrentVersion >= parsedFixedVersion) {
|
|
|
532
532
|
|
|
533
533
|
var index = [EdaSideBarButtonsWrapper$1, EdaTranscriptionPanel$1];
|
|
534
534
|
|
|
535
|
-
export { index as default };
|
|
535
|
+
export { EdaSideBarButtonsWrapper$1 as EdaSideBarButtonsWrapper, EdaTranscriptionPanel$1 as EdaTranscriptionPanel, index as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harvard-lts/mirador-eda-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A Mirador plugin for displaying Emily Dickinson Archive transcriptions with toggleable line breaks and editorial marks",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"source": "src/index.js",
|
package/src/index.js
CHANGED
|
@@ -4,7 +4,12 @@ import EdaSideBarButtonsWrapper from "./plugins/EdaSideBarButtonsWrapper"
|
|
|
4
4
|
// suppressing a console warning message that has been fixed in Mirador v4
|
|
5
5
|
import "./plugins/utils/suppressWarnings"
|
|
6
6
|
|
|
7
|
+
export {
|
|
8
|
+
EdaSideBarButtonsWrapper,
|
|
9
|
+
EdaTranscriptionPanel
|
|
10
|
+
};
|
|
11
|
+
|
|
7
12
|
export default [
|
|
8
13
|
EdaSideBarButtonsWrapper,
|
|
9
14
|
EdaTranscriptionPanel
|
|
10
|
-
]
|
|
15
|
+
];
|