@cu-mkp/editioncrafter 1.3.0-beta.1 → 1.3.0-beta.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.
Files changed (42) hide show
  1. package/README.md +7 -0
  2. package/dist/editioncrafter.js +33739 -30730
  3. package/dist/es/src/EditionCrafter/component/DiploMatic.js +19 -17
  4. package/dist/es/src/EditionCrafter/component/DocumentView.js +13 -9
  5. package/dist/es/src/EditionCrafter/component/EmptyPaneView.js +22 -0
  6. package/dist/es/src/EditionCrafter/component/ImageView.js +61 -40
  7. package/dist/es/src/EditionCrafter/component/Navigation.js +1 -0
  8. package/dist/es/src/EditionCrafter/component/SplitPaneView.js +10 -9
  9. package/dist/es/src/EditionCrafter/component/TagToolbar.jsx +14 -4
  10. package/dist/es/src/EditionCrafter/context/TagFilter.jsx +22 -11
  11. package/dist/es/src/EditionCrafter/context/TagFilterContext.js +2 -1
  12. package/dist/es/src/EditionCrafter/index.jsx +31 -0
  13. package/dist/es/src/EditionCrafter/model/Folio.js +27 -1
  14. package/dist/es/src/EditionCrafter/saga/RouteListenerSaga.js +22 -7
  15. package/dist/es/src/EditionCrafter/scss/_imageView.scss +1 -1
  16. package/dist/es/src/RecordList/component/Record.jsx +1 -1
  17. package/dist/es/src/RecordList/component/RecordListView.jsx +1 -1
  18. package/dist/es/src/RecordList/component/Sidebar.jsx +1 -1
  19. package/dist/es/src/RecordList/component/SidebarTagList.jsx +1 -1
  20. package/dist/es/src/RecordList/index.jsx +1 -1
  21. package/dist/es/src/RecordList/styles/base.css +0 -16
  22. package/dist/es/src/TagExplore/assets/InsertLeft.jsx +18 -0
  23. package/dist/es/src/TagExplore/assets/InsertRight.jsx +18 -0
  24. package/dist/es/src/TagExplore/assets/Left.jsx +17 -0
  25. package/dist/es/src/TagExplore/assets/Right.jsx +17 -0
  26. package/dist/es/src/TagExplore/assets/insert_left.svg +12 -0
  27. package/dist/es/src/TagExplore/assets/insert_right.svg +12 -0
  28. package/dist/es/src/TagExplore/assets/left.svg +11 -0
  29. package/dist/es/src/TagExplore/assets/right.svg +11 -0
  30. package/dist/es/src/TagExplore/components/DocumentDetail.jsx +224 -0
  31. package/dist/es/src/TagExplore/components/NarrowSidebar.jsx +35 -0
  32. package/dist/es/src/TagExplore/components/SurfaceBrowser.jsx +176 -0
  33. package/dist/es/src/TagExplore/components/TagExploreSidebar.jsx +55 -0
  34. package/dist/es/src/TagExplore/components/TagFilters.jsx +106 -0
  35. package/dist/es/src/TagExplore/index.jsx +108 -0
  36. package/dist/es/src/TagExplore/styles/base.css +192 -0
  37. package/dist/es/src/{RecordList/component → common/components}/Pill.jsx +2 -0
  38. package/dist/es/src/common/components/Pill.style.css +16 -0
  39. package/dist/es/src/index.jsx +3 -27
  40. package/package.json +1 -27
  41. /package/dist/es/src/{RecordList/component → common/components}/Loading.jsx +0 -0
  42. /package/dist/es/src/{RecordList → common}/lib/sql.js +0 -0
package/README.md CHANGED
@@ -150,3 +150,10 @@ Setup for Storybook was kind of rushed and the process could still be made simpl
150
150
  By default, Storybook doesn't display the hash routing params used by `react-router`. You can use the "Open canvas in new tab" button on the top right to open the component in its own tab:
151
151
 
152
152
  ![screenshot of new tab button](newtab.png)
153
+
154
+
155
+ ## Developer Note: Publishing a Beta Release
156
+
157
+ To publish editioncrafter or editioncrafter-umd to the beta channel, update the package.json version number to the correct beta version (such as '1.3.0-beta.1') and then run this command in the edtioncrafter and editioncrafter-umd directories:
158
+
159
+ ```npm publish --tag beta```