@cu-mkp/editioncrafter 1.2.1 → 1.3.0-beta.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/README.md +4 -0
- package/dist/editioncrafter.js +17713 -16123
- package/dist/es/src/EditionCrafter/action/NotesActions.js +11 -0
- package/dist/es/src/EditionCrafter/action/initialState/documentInitialState.js +15 -1
- package/dist/es/src/EditionCrafter/action/initialState/notesInitialState.js +8 -0
- package/dist/es/src/EditionCrafter/action/rootReducer.js +4 -0
- package/dist/es/src/EditionCrafter/component/DocumentView.js +14 -0
- package/dist/es/src/EditionCrafter/component/Navigation.js +6 -0
- package/dist/es/src/EditionCrafter/component/NotesView.js +50 -0
- package/dist/es/src/EditionCrafter/model/DocumentHelper.js +1 -0
- package/dist/es/src/EditionCrafter/saga/RouteListenerSaga.js +11 -0
- package/dist/es/src/EditionCrafter/scss/_notes.scss +49 -0
- package/dist/es/src/EditionCrafter/scss/editioncrafter.scss +1 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -89,6 +89,10 @@ Required. (Note: This is required even in the case that you have also included a
|
|
|
89
89
|
|
|
90
90
|
A *string* giving the name of the document(s).
|
|
91
91
|
|
|
92
|
+
### notesURL
|
|
93
|
+
|
|
94
|
+
Optional. Provide a URL to a Markdown file (GitHub Flavored Markdown supported). This will add a "Notes" item to the layers dropdown in which the contents of the Markdown will be displayed.
|
|
95
|
+
|
|
92
96
|
### iiifManifest
|
|
93
97
|
|
|
94
98
|
Required if no `documentInfo` prop specified.
|