@semiont/react-ui 0.5.19 → 0.5.21

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 (36) hide show
  1. package/dist/{PdfAnnotationCanvas.client-75GY2EDR.js → PdfAnnotationCanvas.client-V7Q3BEEQ.js} +42 -45
  2. package/dist/PdfAnnotationCanvas.client-V7Q3BEEQ.js.map +1 -0
  3. package/dist/index.css +9 -1
  4. package/dist/index.css.map +1 -1
  5. package/dist/index.d.ts +231 -55
  6. package/dist/index.js +2115 -2161
  7. package/dist/index.js.map +1 -1
  8. package/package.json +6 -6
  9. package/src/components/AssistProgress.tsx +170 -0
  10. package/src/components/__tests__/AssistProgress.test.tsx +164 -0
  11. package/src/components/annotation/__tests__/AnnotateToolbar.display.test.tsx +11 -1
  12. package/src/components/pdf-annotation/PdfAnnotationCanvas.tsx +23 -54
  13. package/src/components/pdf-annotation/__tests__/rects-for-page.test.ts +96 -0
  14. package/src/components/pdf-annotation/rects-for-page.ts +47 -0
  15. package/src/components/resource/ResourceViewer.tsx +23 -55
  16. package/src/components/resource/panels/AssessmentPanel.tsx +1 -1
  17. package/src/components/resource/panels/AssistSection.tsx +111 -180
  18. package/src/components/resource/panels/AssistShell.tsx +77 -0
  19. package/src/components/resource/panels/CommentsPanel.tsx +1 -1
  20. package/src/components/resource/panels/HighlightPanel.tsx +1 -1
  21. package/src/components/resource/panels/ReferenceEntry.tsx +8 -1
  22. package/src/components/resource/panels/ReferencesPanel.tsx +101 -132
  23. package/src/components/resource/panels/TaggingPanel.tsx +23 -86
  24. package/src/components/resource/panels/UnifiedAnnotationsPanel.tsx +6 -14
  25. package/src/components/resource/panels/__tests__/AssistShell.test.tsx +59 -0
  26. package/src/components/resource/panels/__tests__/ReferenceEntry.test.tsx +20 -0
  27. package/src/components/resource/panels/__tests__/ReferencesPanel.observable-flow.test.tsx +0 -1
  28. package/src/components/resource/panels/__tests__/ReferencesPanel.test.tsx +14 -20
  29. package/src/components/toolbar/Toolbar.css +13 -1
  30. package/src/features/resource-compose/__tests__/ResourceComposePage.test.tsx +30 -0
  31. package/src/features/resource-compose/components/ResourceComposePage.tsx +19 -1
  32. package/src/features/resource-viewer/components/ResourceViewerPage.tsx +24 -64
  33. package/src/styles/features/compose.css +15 -0
  34. package/dist/PdfAnnotationCanvas.client-75GY2EDR.js.map +0 -1
  35. package/src/components/AnnotateReferencesProgressWidget.tsx +0 -125
  36. package/src/components/__tests__/AnnotateReferencesProgressWidget.test.tsx +0 -101
package/dist/index.d.ts CHANGED
@@ -215,7 +215,7 @@ interface TranslationManager {
215
215
  */
216
216
 
217
217
  type SemiontResource$1 = ResourceDescriptor;
218
- type Motivation$8 = components['schemas']['Motivation'];
218
+ type Motivation$7 = components['schemas']['Motivation'];
219
219
  /**
220
220
  * Selection for creating annotations
221
221
  */
@@ -242,7 +242,7 @@ interface TextSelection {
242
242
  * No aliasing, wrappers, or compatibility layers elsewhere.
243
243
  */
244
244
 
245
- type Motivation$7 = components['schemas']['Motivation'];
245
+ type Motivation$6 = components['schemas']['Motivation'];
246
246
  /**
247
247
  * Detection configuration for SSE-based annotation detection
248
248
  */
@@ -269,7 +269,7 @@ interface CreateConfig {
269
269
  * Handles clicks, hovers, detection, and other operations for one annotation type
270
270
  */
271
271
  interface Annotator {
272
- motivation: Motivation$7;
272
+ motivation: Motivation$6;
273
273
  internalType: string;
274
274
  displayName: string;
275
275
  description: string;
@@ -286,7 +286,155 @@ interface Annotator {
286
286
  /**
287
287
  * Static annotator definitions - single source of truth
288
288
  */
289
- declare const ANNOTATORS: Record<string, Annotator>;
289
+ declare const ANNOTATORS: {
290
+ highlight: {
291
+ motivation: "highlighting";
292
+ internalType: string;
293
+ displayName: string;
294
+ description: string;
295
+ className: string;
296
+ iconEmoji: string;
297
+ isClickable: true;
298
+ hasHoverInteraction: true;
299
+ hasSidePanel: true;
300
+ matchesAnnotation: (ann: Annotation) => boolean;
301
+ announceOnCreate: string;
302
+ create: {
303
+ bodyBuilder: "empty";
304
+ refetchAfter: false;
305
+ };
306
+ detection: {
307
+ sseMethod: "detectHighlights";
308
+ countField: "createdCount";
309
+ displayNamePlural: string;
310
+ displayNameSingular: string;
311
+ formatRequestParams: (args: unknown[]) => {
312
+ label: string;
313
+ value: string;
314
+ }[];
315
+ };
316
+ };
317
+ comment: {
318
+ motivation: "commenting";
319
+ internalType: string;
320
+ displayName: string;
321
+ description: string;
322
+ className: string;
323
+ iconEmoji: string;
324
+ isClickable: true;
325
+ hasHoverInteraction: true;
326
+ hasSidePanel: true;
327
+ matchesAnnotation: (ann: Annotation) => boolean;
328
+ announceOnCreate: string;
329
+ create: {
330
+ bodyBuilder: "text";
331
+ refetchAfter: false;
332
+ };
333
+ detection: {
334
+ sseMethod: "detectComments";
335
+ countField: "createdCount";
336
+ displayNamePlural: string;
337
+ displayNameSingular: string;
338
+ formatRequestParams: (args: unknown[]) => {
339
+ label: string;
340
+ value: string;
341
+ }[];
342
+ };
343
+ };
344
+ assessment: {
345
+ motivation: "assessing";
346
+ internalType: string;
347
+ displayName: string;
348
+ description: string;
349
+ className: string;
350
+ iconEmoji: string;
351
+ isClickable: true;
352
+ hasHoverInteraction: true;
353
+ hasSidePanel: true;
354
+ matchesAnnotation: (ann: Annotation) => boolean;
355
+ announceOnCreate: string;
356
+ create: {
357
+ bodyBuilder: "text";
358
+ refetchAfter: false;
359
+ };
360
+ detection: {
361
+ sseMethod: "detectAssessments";
362
+ countField: "createdCount";
363
+ displayNamePlural: string;
364
+ displayNameSingular: string;
365
+ formatRequestParams: (args: unknown[]) => {
366
+ label: string;
367
+ value: string;
368
+ }[];
369
+ };
370
+ };
371
+ reference: {
372
+ motivation: "linking";
373
+ internalType: string;
374
+ displayName: string;
375
+ description: string;
376
+ className: string;
377
+ iconEmoji: string;
378
+ isClickable: true;
379
+ hasHoverInteraction: true;
380
+ hasSidePanel: true;
381
+ matchesAnnotation: (ann: Annotation) => boolean;
382
+ announceOnCreate: string;
383
+ create: {
384
+ bodyBuilder: "entityTag";
385
+ refetchAfter: true;
386
+ };
387
+ detection: {
388
+ sseMethod: "detectReferences";
389
+ countField: "foundCount";
390
+ displayNamePlural: string;
391
+ displayNameSingular: string;
392
+ formatRequestParams: (args: unknown[]) => {
393
+ label: string;
394
+ value: string;
395
+ }[];
396
+ };
397
+ };
398
+ tag: {
399
+ motivation: "tagging";
400
+ internalType: string;
401
+ displayName: string;
402
+ description: string;
403
+ className: string;
404
+ iconEmoji: string;
405
+ isClickable: true;
406
+ hasHoverInteraction: true;
407
+ hasSidePanel: true;
408
+ matchesAnnotation: (ann: Annotation) => boolean;
409
+ announceOnCreate: string;
410
+ create: {
411
+ bodyBuilder: "dualTag";
412
+ refetchAfter: false;
413
+ successMessage: string;
414
+ };
415
+ detection: {
416
+ sseMethod: "detectTags";
417
+ countField: "tagsCreated";
418
+ displayNamePlural: string;
419
+ displayNameSingular: string;
420
+ formatRequestParams: (args: unknown[]) => {
421
+ label: string;
422
+ value: string;
423
+ }[];
424
+ };
425
+ };
426
+ };
427
+ /** Keys of the annotator registry — also the annotations panel's tab keys. */
428
+ type AnnotatorKey = keyof typeof ANNOTATORS;
429
+ /**
430
+ * Annotator key (= panel tab key) for a motivation — derived from
431
+ * {@link ANNOTATORS}, the single motivation↔annotator source, so no second
432
+ * hand-written map can drift. Takes `string`, not `Motivation`: the schemas
433
+ * type motivation properly (`BrowsePanelOpenEvent.motivation` is a `Motivation`
434
+ * `$ref`), but `panel:open` is not wire-validated at runtime, so loose strings
435
+ * can still arrive — callers at that boundary must handle `undefined`.
436
+ */
437
+ declare function annotatorKeyForMotivation(motivation: string): AnnotatorKey | undefined;
290
438
 
291
439
  /**
292
440
  * Centralized button styles matching Figma design
@@ -1286,39 +1434,77 @@ interface Props$b {
1286
1434
  }
1287
1435
  declare function CodeMirrorRenderer({ content, segments, onChange, editable, newAnnotationIds, hoveredAnnotationId, scrollToAnnotationId, sourceView, showLineNumbers, enableWidgets, session, getTargetResourceName, generatingReferenceId, hoverDelayMs }: Props$b): React$1.JSX.Element;
1288
1436
 
1289
- type Motivation$6 = components['schemas']['Motivation'];
1290
- type JobProgress$7 = components['schemas']['JobProgress'];
1291
- interface JobProgressWidgetTranslations {
1292
- /** Header title (e.g. "Annotating Entity References" / "Generating Resource"). */
1293
- title: string;
1437
+ type JobProgress$8 = components['schemas']['JobProgress'];
1438
+ interface AssistProgressTranslations {
1439
+ /** Header title (e.g. "Annotating Entity References" / "Generating Resource"). Omit for the headerless inline style. */
1440
+ title?: string;
1294
1441
  /** Cancel-button title attribute. */
1295
- cancel: string;
1442
+ cancel?: string;
1296
1443
  /** Default in-progress status message (used when the job sends no `message`). */
1297
- inProgress: string;
1298
- complete: string;
1299
- failed: string;
1300
- /** Completed entity-type log line (annotation flow only). */
1444
+ inProgress?: string;
1445
+ /** Status copy for the terminal 'complete' stage. */
1446
+ complete?: string;
1447
+ /** Fallback status copy for the terminal 'error' stage. */
1448
+ failed?: string;
1449
+ /** Completed entity-type log line (reference flow). */
1301
1450
  found?: (count: number) => string;
1302
- /** Current entity-type status (annotation flow only). */
1303
- current?: (entityType: string) => string;
1451
+ /** Current-work detail line (reference flow). */
1452
+ current?: (label: string) => string;
1453
+ /** Dismiss-button label. */
1454
+ close?: string;
1455
+ }
1456
+ interface AssistProgressProps {
1457
+ progress: JobProgress$8;
1458
+ /** CSS `data-type` hook ('highlight' | 'comment' | … | 'reference' | 'tag' | 'generation'). */
1459
+ dataType: string;
1460
+ /** Cancel the underlying job — rendered while running when provided. Caller wires `client.job.cancelRequest(...)`. */
1461
+ onCancel?: () => void;
1462
+ /**
1463
+ * Dismiss the display — rendered whenever provided. WHEN dismissal is
1464
+ * offered is the caller's policy (AssistShell withholds the callback while
1465
+ * the assist is still running). Caller wires `client.mark.dismissProgress()`.
1466
+ */
1467
+ onDismiss?: () => void;
1468
+ /** Render the percentage bar (tag flow's visual; percentage itself comes from `progress`). */
1469
+ showPercentBar?: boolean;
1470
+ translations?: AssistProgressTranslations;
1304
1471
  }
1305
- interface AnnotateReferencesProgressWidgetProps {
1306
- progress: JobProgress$7 | null;
1307
- /** CSS `data-type` hook. */
1308
- annotationType?: Motivation$6 | 'reference' | 'generation';
1309
- /** Job type the cancel button requests. */
1310
- cancelJobType: 'annotation' | 'generation';
1311
- translations: JobProgressWidgetTranslations;
1472
+ /**
1473
+ * The one job-progress renderer (#7) unifies the three previous shapes
1474
+ * (AssistSection's inline block, the reference/generation widget, TaggingPanel's
1475
+ * inline block). Presentational and provider-free: no session, no context —
1476
+ * cancel/dismiss arrive as callbacks, so it renders identically on the page and
1477
+ * in embeddable (bring-your-own-session) hosts. Feature blocks are
1478
+ * data-presence-driven: each call site keeps its established visuals by passing
1479
+ * the data and translations it always had.
1480
+ */
1481
+ declare function AssistProgress({ progress, dataType, onCancel, onDismiss, showPercentBar, translations: tr, }: AssistProgressProps): React$1.JSX.Element;
1482
+
1483
+ type JobProgress$7 = components['schemas']['JobProgress'];
1484
+ interface AssistShellProps {
1485
+ /** localStorage persist-key suffix and CSS `data-type` ('highlight' | 'comment' | 'assessment' | 'reference' | 'tag'). */
1486
+ assistType: string;
1487
+ /** Collapsible section title (already translated). */
1488
+ title: string;
1489
+ isAssisting: boolean;
1490
+ progress: JobProgress$7 | null | undefined;
1491
+ /** The per-motivation form (fields + submit) — shown when no progress is displayed. */
1492
+ form: ReactNode;
1493
+ /**
1494
+ * Pass-through config for the progress renderer (cancel/dismiss wiring,
1495
+ * translations, percent bar). Dismiss policy lives HERE: the shell forwards
1496
+ * `onDismiss` only once the assist is no longer running.
1497
+ */
1498
+ progressProps?: Omit<AssistProgressProps, 'progress' | 'dataType'>;
1312
1499
  }
1313
1500
  /**
1314
- * Job-progress widget (header + cancel + status). Shared by the annotation
1315
- * (reference) flow and the resource-generate flow the title, status copy, and
1316
- * cancel job type are supplied by the caller so neither flow's wording leaks into
1317
- * the other.
1318
- *
1319
- * @emits job:cancel-requested - User requested to cancel the job. Payload: { jobType: string }
1501
+ * The one assist-section chrome (#7): collapsible header with persisted expand
1502
+ * state, the assisting wrapper, and the form-vs-progress switch. Every
1503
+ * motivation's panel composes this shell with its own fields the fields
1504
+ * differ per motivation by design (instructions/tone/density vs entity chips
1505
+ * vs schema+categories), so the shell owns only what is genuinely shared.
1320
1506
  */
1321
- declare function AnnotateReferencesProgressWidget({ progress, annotationType, cancelJobType, translations: tr }: AnnotateReferencesProgressWidgetProps): React$1.JSX.Element | null;
1507
+ declare function AssistShell({ assistType, title, isAssisting, progress, form, progressProps }: AssistShellProps): React$1.JSX.Element;
1322
1508
 
1323
1509
  interface Props$a {
1324
1510
  children: ReactNode;
@@ -1782,9 +1968,6 @@ declare function HistoryEvent({ event, annotations, allEvents, isRelated, t, Lin
1782
1968
  *
1783
1969
  * Event flow:
1784
1970
  * make-meaning → EventLog → SSE → EventBus → ResourceViewer → Cache invalidation
1785
- *
1786
- * Phase 2 complete: Event-based cache invalidation replaces manual refetch
1787
- * Phase 3 complete: Fully event-driven - all user interactions use unified event bus
1788
1971
  */
1789
1972
  interface Props$4 {
1790
1973
  resource: ResourceDescriptor & {
@@ -1838,13 +2021,14 @@ interface Props$4 {
1838
2021
  showToolbar?: boolean;
1839
2022
  }
1840
2023
  /**
1841
- * @emits mark:delete - User requested to delete annotation. Payload: { annotationId: string }
1842
- * @emits panel:open - Request to open panel with annotation. Payload: { panel: string, scrollToAnnotationId?: string, motivation?: Motivation }
2024
+ * Deletion calls `session.client.mark.delete(...)` directly (no bus emit);
2025
+ * panel opening invokes the host's `onOpenPanel` callback the host owns
2026
+ * the panel and any `panel:open` emission.
1843
2027
  *
1844
2028
  * @subscribes mark:added - New annotation was added. Payload: { annotation: Annotation }
1845
2029
  * @subscribes mark:removed - Annotation was removed. Payload: { annotationId: string }
1846
2030
  * @subscribes mark:body-updated - Annotation was updated. Payload: { annotation: Annotation }
1847
- * @subscribes browse:click - User clicked on annotation. Payload: { annotationId: string }
2031
+ * @subscribes browse:click - User clicked on annotation. Payload: { annotationId: string, motivation, anchorRect? }
1848
2032
  */
1849
2033
  declare function ResourceViewer({ resource, annotations, session, onOpenResource, onOpenPanel, onLinkClick, onReferenceHover, inline, newAnnotationIds, generatingReferenceId, showLineNumbers, hoverDelayMs, hoveredAnnotationId: hoveredAnnotationIdProp, annotateMode: annotateModeProp, onAnnotateModeChange, clickAction: clickActionProp, onClickActionChange, selectionMotivation: selectionMotivationProp, onSelectionMotivationChange, shape: shapeProp, onShapeChange, showToolbar, }: Props$4): React__default.JSX.Element;
1850
2034
 
@@ -1971,13 +2155,10 @@ interface AssistSectionProps {
1971
2155
  progress?: JobProgress$4 | null | undefined;
1972
2156
  }
1973
2157
  /**
1974
- * Shared assist section for Highlight, Assessment, and Comment panels
1975
- *
1976
- * Provides:
1977
- * - Optional instructions textarea
1978
- * - Optional tone selector (for comments)
1979
- * - Assist button with sparkle animation
1980
- * - Progress display during annotation assist
2158
+ * Assist fields for the text motivations (highlight, assessment, comment):
2159
+ * instructions, tone (comment/assessment), density — composed into the shared
2160
+ * AssistShell chrome. Reference and tag panels compose the same shell with
2161
+ * their own fields (entity chips; schema + categories).
1981
2162
  *
1982
2163
  * @emits mark:assist-request - Start assist for annotation type. Payload: { motivation: Motivation, options: { instructions?: string, tone?: string, density?: number } }
1983
2164
  * @emits mark:progress-dismiss - Dismiss the annotation progress display
@@ -3983,20 +4164,15 @@ interface ResourceViewerPageProps {
3983
4164
  * @subscribes mark:unarchive - Unarchive the current resource
3984
4165
  * @subscribes yield:clone - Clone the current resource
3985
4166
  * @subscribes beckon:sparkle - Trigger sparkle animation
3986
- * @subscribes mark:added - Annotation was created
3987
- * @subscribes mark:removed - Annotation was deleted
3988
- * @subscribes mark:create-failed - Annotation creation failed
3989
- * @subscribes mark:delete-failed - Annotation deletion failed
3990
- * @subscribes mark:body-updated - Annotation body was updated
3991
- * @subscribes annotate:body-update-failed - Annotation body update failed
4167
+ * @subscribes mark:added - Annotation was created (sparkle)
3992
4168
  * @subscribes settings:theme-changed - UI theme changed
3993
4169
  * @subscribes settings:line-numbers-toggled - Line numbers display toggled
3994
- * @subscribes detection:complete - Detection completed
3995
- * @subscribes detection:failed - Detection failed
3996
- * @subscribes generation:complete - Generation completed
3997
- * @subscribes generation:failed - Generation failed
3998
4170
  * @subscribes browse:reference-navigate - Navigate to a referenced document
3999
4171
  * @subscribes browse:entity-type-clicked - Navigate filtered by entity type
4172
+ *
4173
+ * Outcome-notification channels (mark:create-error, mark:delete-error,
4174
+ * bind:body-error, job:complete, job:fail, mark:assist-timeout) are
4175
+ * subscribed by useOutcomeToasts.
4000
4176
  */
4001
4177
  declare function ResourceViewerPage({ resource, rUri, locale, Link, routes, ToolbarPanels, refetchDocument, streamStatus, knowledgeBaseName, }: ResourceViewerPageProps): React__default.JSX.Element;
4002
4178
 
@@ -4146,5 +4322,5 @@ declare function useShellStateUnit(): ShellStateUnit;
4146
4322
  */
4147
4323
  declare function useObservable<T>(obs$: Observable<T> | null | undefined): T | undefined;
4148
4324
 
4149
- export { ANNOTATORS, AVAILABLE_LOCALES, AdminDevOpsPage, AdminExchangePage, AdminSecurityPage, AdminUsersPage, AnnotateReferencesProgressWidget, AnnotateToolbar, AnnotateView, AnnotationHistory, AnnotationOverlay, AnnotationProvider, AssessmentEntry, AssessmentPanel, AssistSection, AsyncErrorBoundary, AuthErrorDisplay, BrowseView, Button, ButtonGroup, COMMON_PANELS, CodeMirrorRenderer, CollaborationPanel, CollapsibleResourceNavigation, CommentEntry, CommentsPanel, ComposeLoadingState, EntityTagsPage, EntityTypeBadges, ErrorBoundary, ExportCard, Footer, HighlightEntry, HighlightPanel, HistoryEvent, ImageBrowseRenderer, ImageURLSchema, ImageViewer, ImportCard, ImportProgress, JsonLdPanel, JsonLdView, KeyboardShortcutsHelpModal, LeftSidebar, LinkedDataPage, LiveRegionProvider, NavigationMenu, OAuthUserSchema, ObservableLink, PageLayout, PanelHeader, PdfBrowseRenderer, PermissionDeniedModal, PopupContainer, PopupHeader, ProtectedErrorBoundary, RESOURCE_PANELS, RecentDocumentsPage, ReferenceEntry, ReferenceResolutionWidget, ReferenceWizardModal, ReferencesPanel, ResizeHandle, ResourceAnnotationsProvider, ResourceCard, ResourceComposePage, ResourceDiscoveryPage, ResourceErrorState, ResourceGenerateModal, ResourceInfoPanel, ResourceLoadingState, ResourceSearchModal, ResourceTagsInline, ResourceViewer, ResourceViewerPage, SearchModal, SelectedTextDisplay, SemiontBranding, SemiontFavicon, SemiontProvider, SessionExpiredModal, SessionExpiryBanner, SessionTimer, SettingsPanel, SignInForm, SignUpForm, SimpleNavigation, SkipLinks, SortableResourceTab, StatisticsPanel, StatusDisplay, SvgDrawingCanvas, TagEntry, TagSchemasPage, TaggingPanel, TextBrowseRenderer, ThemeProvider, ToastContainer, ToastProvider, Toolbar, TranslationProvider, UnifiedAnnotationsPanel, UnifiedHeader, UploadProgressBar, UserMenuSkeleton, WebBrowserStorage, WelcomePage, applyHighlights, buildSourceToRenderedMap, buildTextNodeIndex, buttonStyles, clearHighlights, createAdminSecurityStateUnit, createAdminUsersStateUnit, createComposePageStateUnit, createDiscoverStateUnit, createEntityTagsStateUnit, createExchangeStateUnit, createResourceLoaderStateUnit, createResourceViewerPageStateUnit, createSessionStateUnit, createShellStateUnit, createWelcomeStateUnit, cssVariables, defaultBrowseRenderers, faviconPaths, formatTime, generateCSSVariables, getResourceIcon, getSelectedShapeForSelectorType, getSelectorType, getShortcutDisplay, getSupportedShapes, hideWidgetPreview, isShapeSupported, jsonLightHighlightStyle, jsonLightTheme, resolveAnnotationRanges, sanitizeImageURL, saveSelectedShapeForSelectorType, setPdfWorkerSrc, showWidgetPreview, supportsDetection, toOverlayAnnotations, tokens, useAnnotationManager, useDebounce, useDebouncedCallback, useDocumentAnnouncements, useDoubleKeyPress, useDropdown, useEventSubscription, useEventSubscriptions, useFormAnnouncements, useHoverDelay, useHoverEmitter, useIsTyping, useKBDiscovery, useKeyboardShortcuts, useLanguageChangeAnnouncements, useLineNumbers, useLiveRegion, useLoadingState, useLocalStorage, useMediaToken, useObservable, useObservableExternalNavigation, useObservableRouter, usePanelWidth, usePendingCreation, usePreloadTranslations, useResourceAnnotations, useResourceContent, useResourceGather, useResourceLoader, useResourceLoadingAnnouncements, useRovingTabIndex, useSearchAnnouncements, useSemiont, useSessionEventSubscriptions, useSessionExpiry, useShellStateUnit, useStateUnit, useTheme, useToast, useToolbarPrefs, useTranslations };
4150
- export type { AdminDevOpsPageProps, AdminExchangePageProps, AdminExchangePageTranslations, AdminSecurityPageProps, AdminSecurityStateUnit, AdminUser, AdminUserStats, AdminUsersPageProps, AdminUsersStateUnit, AnnotationConfig, AnnotationCreationHandler, AnnotationGroups, AnnotationHandlers, AnnotationManager, AnnotationProviderProps, AnnotationUIState, AnnotationsCollection, Annotator, AuthErrorDisplayProps, AvailableLocale, BorderRadiusToken, BrowseMediaRenderers, ButtonGroupProps, ButtonProps, ClickAction, CloneData, CollapsibleResourceNavigationProps, ColorToken, ComposeLoadingStateProps, ComposeMode, ComposePageStateUnit, ComposeParams, CreateAnnotationParams, CreateConfig, DeleteAnnotationParams, DetectionConfig, DevOpsFeature, DiscoverStateUnit, DrawingMode, EntityTagsPageProps, EntityTagsStateUnit, ExchangeStateUnit, ExportCardProps, ExportCardTranslations, HoverEmitterProps, ImportCardProps, ImportCardTranslations, ImportPreview, ImportProgressProps, ImportProgressTranslations, JobProgressWidgetTranslations, KBDiscoveryOptions, KBDiscoveryResult, KeyboardShortcut, LinkComponentProps, LinkedDataPageProps, LinkedDataPageTranslations, MediaRendererProps, Motivation$8 as Motivation, NavigationItem, NavigationMenuHelper, NavigationProps, OAuthProvider, OAuthUser, ObservableLinkProps, OverlayAnnotation, PendingCreation, RecentDocumentsPageProps, ReferenceData, ReferenceHover, ReferenceWizardModalProps, ResolvedTheme, ResourceCardProps, ResourceComposePageProps, ResourceDiscoveryPageProps, ResourceErrorStateProps, ResourceGatherOptions, ResourceGenerateModalProps, ResourceGenerateModalTranslations, ResourceLoaderStateUnit, ResourceSearchModalProps, ResourceViewerPageProps, ResourceViewerPageStateUnit, RouteBuilder, SaveResourceParams$1 as SaveResourceParams, SearchModalProps, SelectionMotivation, SelectorType, SemiontProviderProps, SemiontResource$1 as SemiontResource, SessionStateUnit, ShadowToken, ShapeType, ShellStateUnit, ShellStateUnitOptions, SignInFormProps, SignUpFormProps, SimpleNavigationItem, SimpleNavigationProps, SortableResourceTabProps, SpacingToken, TagSchemasPageProps, TextSegment, TextSelection, Theme, ToastMessage, ToastType, ToolbarPanelType, ToolbarPart, ToolbarPrefs, TransitionToken, TranslationManager, TranslationProviderProps, TypographyToken, UICreateAnnotationParams, UploadProgressBarProps, UseMediaTokenResult, UseResourceContentResult, UseResourceGatherResult, UseResourceLoaderResult, WelcomePageProps, WelcomeStateUnit, WizardState };
4325
+ export { ANNOTATORS, AVAILABLE_LOCALES, AdminDevOpsPage, AdminExchangePage, AdminSecurityPage, AdminUsersPage, AnnotateToolbar, AnnotateView, AnnotationHistory, AnnotationOverlay, AnnotationProvider, AssessmentEntry, AssessmentPanel, AssistProgress, AssistSection, AssistShell, AsyncErrorBoundary, AuthErrorDisplay, BrowseView, Button, ButtonGroup, COMMON_PANELS, CodeMirrorRenderer, CollaborationPanel, CollapsibleResourceNavigation, CommentEntry, CommentsPanel, ComposeLoadingState, EntityTagsPage, EntityTypeBadges, ErrorBoundary, ExportCard, Footer, HighlightEntry, HighlightPanel, HistoryEvent, ImageBrowseRenderer, ImageURLSchema, ImageViewer, ImportCard, ImportProgress, JsonLdPanel, JsonLdView, KeyboardShortcutsHelpModal, LeftSidebar, LinkedDataPage, LiveRegionProvider, NavigationMenu, OAuthUserSchema, ObservableLink, PageLayout, PanelHeader, PdfBrowseRenderer, PermissionDeniedModal, PopupContainer, PopupHeader, ProtectedErrorBoundary, RESOURCE_PANELS, RecentDocumentsPage, ReferenceEntry, ReferenceResolutionWidget, ReferenceWizardModal, ReferencesPanel, ResizeHandle, ResourceAnnotationsProvider, ResourceCard, ResourceComposePage, ResourceDiscoveryPage, ResourceErrorState, ResourceGenerateModal, ResourceInfoPanel, ResourceLoadingState, ResourceSearchModal, ResourceTagsInline, ResourceViewer, ResourceViewerPage, SearchModal, SelectedTextDisplay, SemiontBranding, SemiontFavicon, SemiontProvider, SessionExpiredModal, SessionExpiryBanner, SessionTimer, SettingsPanel, SignInForm, SignUpForm, SimpleNavigation, SkipLinks, SortableResourceTab, StatisticsPanel, StatusDisplay, SvgDrawingCanvas, TagEntry, TagSchemasPage, TaggingPanel, TextBrowseRenderer, ThemeProvider, ToastContainer, ToastProvider, Toolbar, TranslationProvider, UnifiedAnnotationsPanel, UnifiedHeader, UploadProgressBar, UserMenuSkeleton, WebBrowserStorage, WelcomePage, annotatorKeyForMotivation, applyHighlights, buildSourceToRenderedMap, buildTextNodeIndex, buttonStyles, clearHighlights, createAdminSecurityStateUnit, createAdminUsersStateUnit, createComposePageStateUnit, createDiscoverStateUnit, createEntityTagsStateUnit, createExchangeStateUnit, createResourceLoaderStateUnit, createResourceViewerPageStateUnit, createSessionStateUnit, createShellStateUnit, createWelcomeStateUnit, cssVariables, defaultBrowseRenderers, faviconPaths, formatTime, generateCSSVariables, getResourceIcon, getSelectedShapeForSelectorType, getSelectorType, getShortcutDisplay, getSupportedShapes, hideWidgetPreview, isShapeSupported, jsonLightHighlightStyle, jsonLightTheme, resolveAnnotationRanges, sanitizeImageURL, saveSelectedShapeForSelectorType, setPdfWorkerSrc, showWidgetPreview, supportsDetection, toOverlayAnnotations, tokens, useAnnotationManager, useDebounce, useDebouncedCallback, useDocumentAnnouncements, useDoubleKeyPress, useDropdown, useEventSubscription, useEventSubscriptions, useFormAnnouncements, useHoverDelay, useHoverEmitter, useIsTyping, useKBDiscovery, useKeyboardShortcuts, useLanguageChangeAnnouncements, useLineNumbers, useLiveRegion, useLoadingState, useLocalStorage, useMediaToken, useObservable, useObservableExternalNavigation, useObservableRouter, usePanelWidth, usePendingCreation, usePreloadTranslations, useResourceAnnotations, useResourceContent, useResourceGather, useResourceLoader, useResourceLoadingAnnouncements, useRovingTabIndex, useSearchAnnouncements, useSemiont, useSessionEventSubscriptions, useSessionExpiry, useShellStateUnit, useStateUnit, useTheme, useToast, useToolbarPrefs, useTranslations };
4326
+ export type { AdminDevOpsPageProps, AdminExchangePageProps, AdminExchangePageTranslations, AdminSecurityPageProps, AdminSecurityStateUnit, AdminUser, AdminUserStats, AdminUsersPageProps, AdminUsersStateUnit, AnnotationConfig, AnnotationCreationHandler, AnnotationGroups, AnnotationHandlers, AnnotationManager, AnnotationProviderProps, AnnotationUIState, AnnotationsCollection, Annotator, AnnotatorKey, AssistProgressProps, AssistProgressTranslations, AssistShellProps, AuthErrorDisplayProps, AvailableLocale, BorderRadiusToken, BrowseMediaRenderers, ButtonGroupProps, ButtonProps, ClickAction, CloneData, CollapsibleResourceNavigationProps, ColorToken, ComposeLoadingStateProps, ComposeMode, ComposePageStateUnit, ComposeParams, CreateAnnotationParams, CreateConfig, DeleteAnnotationParams, DetectionConfig, DevOpsFeature, DiscoverStateUnit, DrawingMode, EntityTagsPageProps, EntityTagsStateUnit, ExchangeStateUnit, ExportCardProps, ExportCardTranslations, HoverEmitterProps, ImportCardProps, ImportCardTranslations, ImportPreview, ImportProgressProps, ImportProgressTranslations, KBDiscoveryOptions, KBDiscoveryResult, KeyboardShortcut, LinkComponentProps, LinkedDataPageProps, LinkedDataPageTranslations, MediaRendererProps, Motivation$7 as Motivation, NavigationItem, NavigationMenuHelper, NavigationProps, OAuthProvider, OAuthUser, ObservableLinkProps, OverlayAnnotation, PendingCreation, RecentDocumentsPageProps, ReferenceData, ReferenceHover, ReferenceWizardModalProps, ResolvedTheme, ResourceCardProps, ResourceComposePageProps, ResourceDiscoveryPageProps, ResourceErrorStateProps, ResourceGatherOptions, ResourceGenerateModalProps, ResourceGenerateModalTranslations, ResourceLoaderStateUnit, ResourceSearchModalProps, ResourceViewerPageProps, ResourceViewerPageStateUnit, RouteBuilder, SaveResourceParams$1 as SaveResourceParams, SearchModalProps, SelectionMotivation, SelectorType, SemiontProviderProps, SemiontResource$1 as SemiontResource, SessionStateUnit, ShadowToken, ShapeType, ShellStateUnit, ShellStateUnitOptions, SignInFormProps, SignUpFormProps, SimpleNavigationItem, SimpleNavigationProps, SortableResourceTabProps, SpacingToken, TagSchemasPageProps, TextSegment, TextSelection, Theme, ToastMessage, ToastType, ToolbarPanelType, ToolbarPart, ToolbarPrefs, TransitionToken, TranslationManager, TranslationProviderProps, TypographyToken, UICreateAnnotationParams, UploadProgressBarProps, UseMediaTokenResult, UseResourceContentResult, UseResourceGatherResult, UseResourceLoaderResult, WelcomePageProps, WelcomeStateUnit, WizardState };