@semiont/react-ui 0.4.21 → 0.5.0

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 (82) hide show
  1. package/dist/{PdfAnnotationCanvas.client-6ZGFEN2N.mjs → PdfAnnotationCanvas.client-5QESNO5H.mjs} +10 -9
  2. package/dist/PdfAnnotationCanvas.client-5QESNO5H.mjs.map +1 -0
  3. package/dist/{chunk-KEDFYI6N.mjs → chunk-4NOUO3W6.mjs} +2 -2
  4. package/dist/{chunk-KEDFYI6N.mjs.map → chunk-4NOUO3W6.mjs.map} +1 -1
  5. package/dist/index.d.mts +54 -79
  6. package/dist/index.mjs +255 -254
  7. package/dist/index.mjs.map +1 -1
  8. package/dist/test-utils.d.mts +3 -1
  9. package/dist/test-utils.mjs +14 -8
  10. package/dist/test-utils.mjs.map +1 -1
  11. package/package.json +2 -1
  12. package/src/components/AnnotateReferencesProgressWidget.tsx +1 -1
  13. package/src/components/CodeMirrorRenderer.tsx +5 -3
  14. package/src/components/LiveRegion.tsx +1 -2
  15. package/src/components/StatusDisplay.tsx +1 -1
  16. package/src/components/__tests__/StatusDisplay.test.tsx +3 -1
  17. package/src/components/annotation/AnnotateToolbar.tsx +5 -7
  18. package/src/components/annotation-popups/JsonLdView.tsx +1 -2
  19. package/src/components/annotation-popups/__tests__/JsonLdView.test.tsx +1 -1
  20. package/src/components/image-annotation/AnnotationOverlay.tsx +12 -14
  21. package/src/components/image-annotation/SvgDrawingCanvas.tsx +8 -13
  22. package/src/components/modals/ConfigureGenerationStep.tsx +1 -2
  23. package/src/components/modals/ReferenceWizardModal.tsx +1 -1
  24. package/src/components/modals/ResourceSearchModal.tsx +3 -3
  25. package/src/components/modals/SearchModal.tsx +2 -1
  26. package/src/components/modals/SearchResultsStep.tsx +1 -3
  27. package/src/components/modals/__tests__/SearchModal.accessibility.test.tsx +6 -2
  28. package/src/components/modals/__tests__/SearchModal.basic.test.tsx +6 -2
  29. package/src/components/modals/__tests__/SearchModal.keyboard.test.tsx +6 -2
  30. package/src/components/modals/__tests__/SearchModal.visual.test.tsx +6 -2
  31. package/src/components/pdf-annotation/PdfAnnotationCanvas.tsx +11 -12
  32. package/src/components/pdf-annotation/__tests__/PdfAnnotationCanvas.test.tsx +1 -1
  33. package/src/components/resource/AnnotateView.tsx +2 -5
  34. package/src/components/resource/BrowseView.tsx +6 -4
  35. package/src/components/resource/ResourceViewer.tsx +7 -11
  36. package/src/components/resource/__tests__/BrowseView.test.tsx +4 -4
  37. package/src/components/resource/__tests__/ResourceViewer.mode-switch.test.tsx +1 -0
  38. package/src/components/resource/__tests__/event-formatting.test.ts +6 -2
  39. package/src/components/resource/event-formatting.ts +2 -3
  40. package/src/components/resource/panels/AssessmentEntry.tsx +3 -5
  41. package/src/components/resource/panels/AssessmentPanel.tsx +5 -5
  42. package/src/components/resource/panels/AssistSection.tsx +6 -10
  43. package/src/components/resource/panels/CollaborationPanel.tsx +1 -1
  44. package/src/components/resource/panels/CommentEntry.tsx +3 -5
  45. package/src/components/resource/panels/CommentsPanel.tsx +5 -5
  46. package/src/components/resource/panels/HighlightEntry.tsx +3 -5
  47. package/src/components/resource/panels/HighlightPanel.tsx +3 -3
  48. package/src/components/resource/panels/ReferenceEntry.tsx +7 -9
  49. package/src/components/resource/panels/ReferencesPanel.tsx +8 -11
  50. package/src/components/resource/panels/ResourceInfoPanel.tsx +5 -5
  51. package/src/components/resource/panels/StatisticsPanel.tsx +2 -3
  52. package/src/components/resource/panels/TagEntry.tsx +3 -5
  53. package/src/components/resource/panels/TaggingPanel.tsx +8 -11
  54. package/src/components/resource/panels/UnifiedAnnotationsPanel.tsx +1 -1
  55. package/src/components/resource/panels/__tests__/AssessmentEntry.test.tsx +4 -4
  56. package/src/components/resource/panels/__tests__/AssessmentPanel.test.tsx +4 -5
  57. package/src/components/resource/panels/__tests__/CommentEntry.test.tsx +4 -4
  58. package/src/components/resource/panels/__tests__/CommentsPanel.test.tsx +4 -5
  59. package/src/components/resource/panels/__tests__/HighlightEntry.test.tsx +4 -4
  60. package/src/components/resource/panels/__tests__/HighlightPanel.annotationProgress.test.tsx +1 -1
  61. package/src/components/resource/panels/__tests__/ReferenceEntry.test.tsx +4 -4
  62. package/src/components/resource/panels/__tests__/ResourceInfoPanel.test.tsx +21 -14
  63. package/src/components/resource/panels/__tests__/StatisticsPanel.test.tsx +3 -3
  64. package/src/components/resource/panels/__tests__/TagEntry.test.tsx +4 -4
  65. package/src/components/resource/panels/__tests__/TaggingPanel.test.tsx +4 -5
  66. package/src/components/settings/SettingsPanel.tsx +1 -1
  67. package/src/components/settings/__tests__/SettingsPanel.test.tsx +3 -3
  68. package/src/features/admin-devops/components/AdminDevOpsPage.tsx +1 -2
  69. package/src/features/admin-exchange/components/AdminExchangePage.tsx +1 -1
  70. package/src/features/admin-exchange/components/ImportCard.tsx +1 -2
  71. package/src/features/admin-security/components/AdminSecurityPage.tsx +1 -2
  72. package/src/features/admin-users/components/AdminUsersPage.tsx +1 -1
  73. package/src/features/moderate-entity-tags/components/EntityTagsPage.tsx +1 -2
  74. package/src/features/moderate-recent/components/RecentDocumentsPage.tsx +1 -2
  75. package/src/features/moderate-tag-schemas/components/TagSchemasPage.tsx +1 -1
  76. package/src/features/moderation-linked-data/components/LinkedDataPage.tsx +1 -1
  77. package/src/features/resource-compose/components/ResourceComposePage.tsx +3 -2
  78. package/src/features/resource-discovery/components/ResourceCard.tsx +1 -2
  79. package/src/features/resource-discovery/components/ResourceDiscoveryPage.tsx +3 -4
  80. package/src/features/resource-viewer/__tests__/ResourceViewerPage.test.tsx +4 -5
  81. package/src/features/resource-viewer/components/ResourceViewerPage.tsx +12 -11
  82. package/dist/PdfAnnotationCanvas.client-6ZGFEN2N.mjs.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.