@semiont/react-ui 0.2.33 → 0.2.34-build.89

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/EventBusContext-BmzEcGHZ.d.mts +177 -0
  2. package/dist/{PdfAnnotationCanvas.client-FGV33CWN.mjs → PdfAnnotationCanvas.client-VLNA5O5M.mjs} +7 -7
  3. package/dist/PdfAnnotationCanvas.client-VLNA5O5M.mjs.map +1 -0
  4. package/dist/{chunk-YPYLOBA2.mjs → chunk-C63BARI7.mjs} +3 -2
  5. package/dist/chunk-C63BARI7.mjs.map +1 -0
  6. package/dist/{chunk-FC6SGLLT.mjs → chunk-M7SZRRIE.mjs} +24 -16
  7. package/dist/chunk-M7SZRRIE.mjs.map +1 -0
  8. package/dist/chunk-ULIET3MW.mjs +31 -0
  9. package/dist/chunk-ULIET3MW.mjs.map +1 -0
  10. package/dist/index.d.mts +33 -60
  11. package/dist/index.mjs +171 -363
  12. package/dist/index.mjs.map +1 -1
  13. package/dist/test-utils.d.mts +3 -5
  14. package/dist/test-utils.mjs +2 -2
  15. package/dist/test-utils.mjs.map +1 -1
  16. package/package.json +2 -3
  17. package/src/components/CodeMirrorRenderer.tsx +4 -4
  18. package/src/components/DetectionProgressWidget.tsx +3 -3
  19. package/src/components/LiveRegion.tsx +1 -1
  20. package/src/components/Toolbar.tsx +1 -1
  21. package/src/components/annotation/AnnotateToolbar.tsx +5 -5
  22. package/src/components/annotation/__tests__/AnnotateToolbar.test.tsx +4 -4
  23. package/src/components/annotation-popups/JsonLdView.tsx +1 -1
  24. package/src/components/image-annotation/AnnotationOverlay.tsx +9 -9
  25. package/src/components/image-annotation/SvgDrawingCanvas.tsx +5 -5
  26. package/src/components/navigation/CollapsibleResourceNavigation.tsx +4 -4
  27. package/src/components/navigation/ObservableLink.tsx +1 -1
  28. package/src/components/navigation/SimpleNavigation.tsx +1 -1
  29. package/src/components/pdf-annotation/PdfAnnotationCanvas.tsx +6 -6
  30. package/src/components/pdf-annotation/__tests__/PdfAnnotationCanvas.test.tsx +2 -2
  31. package/src/components/resource/AnnotateView.tsx +5 -4
  32. package/src/components/resource/AnnotationHistory.tsx +1 -1
  33. package/src/components/resource/BrowseView.tsx +5 -4
  34. package/src/components/resource/ResourceViewer.tsx +5 -4
  35. package/src/components/resource/__tests__/BrowseView.test.tsx +11 -22
  36. package/src/components/resource/__tests__/ResourceViewer.mode-switch.test.tsx +1 -1
  37. package/src/components/resource/event-formatting.ts +1 -1
  38. package/src/components/resource/panels/AssessmentEntry.tsx +2 -2
  39. package/src/components/resource/panels/AssessmentPanel.tsx +4 -4
  40. package/src/components/resource/panels/CommentEntry.tsx +2 -2
  41. package/src/components/resource/panels/CommentsPanel.tsx +4 -4
  42. package/src/components/resource/panels/DetectSection.tsx +3 -3
  43. package/src/components/resource/panels/HighlightEntry.tsx +2 -2
  44. package/src/components/resource/panels/HighlightPanel.tsx +2 -2
  45. package/src/components/resource/panels/JsonLdPanel.tsx +1 -1
  46. package/src/components/resource/panels/ReferenceEntry.tsx +6 -6
  47. package/src/components/resource/panels/ReferencesPanel.tsx +5 -5
  48. package/src/components/resource/panels/ResourceInfoPanel.tsx +3 -3
  49. package/src/components/resource/panels/StatisticsPanel.tsx +1 -1
  50. package/src/components/resource/panels/TagEntry.tsx +2 -2
  51. package/src/components/resource/panels/TaggingPanel.tsx +5 -5
  52. package/src/components/resource/panels/UnifiedAnnotationsPanel.tsx +1 -1
  53. package/src/components/resource/panels/__tests__/AssessmentPanel.test.tsx +5 -5
  54. package/src/components/resource/panels/__tests__/CommentEntry.test.tsx +10 -10
  55. package/src/components/resource/panels/__tests__/CommentsPanel.test.tsx +5 -5
  56. package/src/components/resource/panels/__tests__/DetectSection.test.tsx +9 -9
  57. package/src/components/resource/panels/__tests__/HighlightPanel.detectionProgress.test.tsx +1 -1
  58. package/src/components/resource/panels/__tests__/JsonLdPanel.test.tsx +1 -1
  59. package/src/components/resource/panels/__tests__/ReferencesPanel.test.tsx +4 -4
  60. package/src/components/resource/panels/__tests__/ResourceInfoPanel.test.tsx +4 -4
  61. package/src/components/resource/panels/__tests__/TaggingPanel.test.tsx +5 -5
  62. package/src/components/settings/SettingsPanel.tsx +5 -5
  63. package/src/components/viewers/ImageViewer.tsx +1 -1
  64. package/src/features/resource-compose/components/ResourceComposePage.tsx +1 -1
  65. package/src/features/resource-discovery/components/ResourceCard.tsx +1 -1
  66. package/src/features/resource-discovery/components/ResourceDiscoveryPage.tsx +1 -1
  67. package/src/features/resource-viewer/__tests__/AnnotationCreationPending.test.tsx +7 -5
  68. package/src/features/resource-viewer/__tests__/AnnotationDeletionIntegration.test.tsx +5 -4
  69. package/src/features/resource-viewer/__tests__/DetectionFlowBug.test.tsx +5 -5
  70. package/src/features/resource-viewer/__tests__/DetectionFlowIntegration.test.tsx +29 -43
  71. package/src/features/resource-viewer/__tests__/DetectionProgressDismissal.test.tsx +20 -39
  72. package/src/features/resource-viewer/__tests__/GenerationFlowIntegration.test.tsx +38 -46
  73. package/src/features/resource-viewer/__tests__/ResolutionFlowIntegration.test.tsx +36 -43
  74. package/src/features/resource-viewer/__tests__/ResourceMutations.test.tsx +8 -8
  75. package/src/features/resource-viewer/__tests__/detection-progress-flow.test.tsx +14 -21
  76. package/src/features/resource-viewer/components/ResourceViewerPage.tsx +8 -7
  77. package/dist/EventBusContext-CJjL_cCf.d.mts +0 -462
  78. package/dist/PdfAnnotationCanvas.client-FGV33CWN.mjs.map +0 -1
  79. package/dist/chunk-FC6SGLLT.mjs.map +0 -1
  80. package/dist/chunk-XS27QKGP.mjs +0 -55
  81. package/dist/chunk-XS27QKGP.mjs.map +0 -1
  82. package/dist/chunk-YPYLOBA2.mjs.map +0 -1
package/dist/index.d.mts CHANGED
@@ -1,12 +1,13 @@
1
- import * as _semiont_api_client from '@semiont/api-client';
2
- import { components, ResourceUri, Selector, SemiontApiClient, SSEStream, AnnotationUri, ResourceAnnotationUri, ValidationResult, paths, Motivation as Motivation$9, GenerationContext } from '@semiont/api-client';
1
+ import * as _semiont_core from '@semiont/core';
2
+ import { components, ResourceUri, Selector, AnnotationUri, ResourceAnnotationUri, EventBus, ResourceEvent, EventMap, DetectionProgress, StoredEvent, paths, Motivation as Motivation$9, GenerationProgress, GenerationContext } from '@semiont/core';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as React$1 from 'react';
5
- import React__default, { ComponentType, ReactNode, MutableRefObject, KeyboardEvent as KeyboardEvent$1, Component, ErrorInfo } from 'react';
6
- import { D as DetectionProgress, E as EventBus, a as EventMap, O as OpenResourcesManager, S as SessionManager, T as TranslationManager, G as GenerationProgress } from './EventBusContext-CJjL_cCf.mjs';
7
- export { e as EventBusProvider, d as EventBusProviderProps, b as OpenResourceFromManager, c as SessionState, r as resetEventBusForTesting, u as useEventBus } from './EventBusContext-CJjL_cCf.mjs';
5
+ import React__default, { ComponentType, ReactNode, KeyboardEvent as KeyboardEvent$1, Component, ErrorInfo } from 'react';
6
+ import { O as OpenResourcesManager, S as SessionManager, T as TranslationManager } from './EventBusContext-BmzEcGHZ.mjs';
7
+ export { c as EventBusProvider, E as EventBusProviderProps, a as OpenResourceFromManager, b as SessionState, r as resetEventBusForTesting, u as useEventBus } from './EventBusContext-BmzEcGHZ.mjs';
8
8
  import * as _tanstack_react_query from '@tanstack/react-query';
9
9
  import { UseQueryOptions } from '@tanstack/react-query';
10
+ import { SemiontApiClient, ValidationResult } from '@semiont/api-client';
10
11
  import * as _codemirror_state from '@codemirror/state';
11
12
  import { HighlightStyle } from '@codemirror/language';
12
13
  import { WidgetType } from '@codemirror/view';
@@ -15,8 +16,6 @@ import { Root as Root$1 } from 'mdast';
15
16
  import { VFile } from 'vfile';
16
17
  import { TagSchema } from '@semiont/ontology';
17
18
  export { TAG_SCHEMAS, TagCategory, TagSchema, getAllTagSchemas, getSchemaCategory as getTagCategory, getTagSchema, getTagSchemasByDomain, isValidCategory } from '@semiont/ontology';
18
- import { ResourceEvent, StoredEvent } from '@semiont/core';
19
- import { Emitter } from 'mitt';
20
19
 
21
20
  type Annotation$m = components['schemas']['Annotation'];
22
21
  /**
@@ -345,32 +344,6 @@ interface Annotator {
345
344
  * Static annotator definitions - single source of truth
346
345
  */
347
346
  declare const ANNOTATORS: Record<string, Annotator>;
348
- /**
349
- * Generic detection handler factory
350
- * Creates a detection handler for any annotator with detection config
351
- *
352
- * This eliminates the need for motivation-specific detection handlers
353
- * (handleDetectHighlights, handleDetectAssessments, etc.)
354
- */
355
- declare function createDetectionHandler(annotator: Annotator, context: {
356
- client: SemiontApiClient;
357
- rUri: ResourceUri;
358
- setDetectingMotivation: (motivation: Motivation$7 | null) => void;
359
- setMotivationDetectionProgress: (progress: DetectionProgress | null) => void;
360
- detectionStreamRef: MutableRefObject<SSEStream<DetectionProgress, object> | null>;
361
- cacheManager: CacheManager;
362
- showSuccess: (message: string) => void;
363
- showError: (message: string) => void;
364
- }): (...args: unknown[]) => Promise<void>;
365
- /**
366
- * Generic detection cancellation handler
367
- * Cancels any active detection stream
368
- */
369
- declare function createCancelDetectionHandler(context: {
370
- detectionStreamRef: MutableRefObject<SSEStream<DetectionProgress, object> | null>;
371
- setDetectingMotivation: (motivation: Motivation$7 | null) => void;
372
- setMotivationDetectionProgress: (progress: DetectionProgress | null) => void;
373
- }): () => void;
374
347
 
375
348
  /**
376
349
  * Resource operations
@@ -382,7 +355,7 @@ declare function useResources(): {
382
355
  archived?: boolean;
383
356
  query?: string;
384
357
  }) => _tanstack_react_query.UseQueryResult<{
385
- resources: _semiont_api_client.components["schemas"]["ResourceDescriptor"][];
358
+ resources: _semiont_core.components["schemas"]["ResourceDescriptor"][];
386
359
  total: number;
387
360
  offset: number;
388
361
  limit: number;
@@ -398,8 +371,8 @@ declare function useResources(): {
398
371
  };
399
372
  annotations: {
400
373
  useQuery: (rUri: ResourceUri) => _tanstack_react_query.UseQueryResult<{
401
- resource: _semiont_api_client.components["schemas"]["ResourceDescriptor"];
402
- annotations: _semiont_api_client.components["schemas"]["Annotation"][];
374
+ resource: _semiont_core.components["schemas"]["ResourceDescriptor"];
375
+ annotations: _semiont_core.components["schemas"]["Annotation"][];
403
376
  }, Error>;
404
377
  };
405
378
  referencedBy: {
@@ -412,7 +385,7 @@ declare function useResources(): {
412
385
  };
413
386
  search: {
414
387
  useQuery: (query: string, limit: number) => _tanstack_react_query.UseQueryResult<{
415
- resources: _semiont_api_client.components["schemas"]["ResourceDescriptor"][];
388
+ resources: _semiont_core.components["schemas"]["ResourceDescriptor"][];
416
389
  total: number;
417
390
  offset: number;
418
391
  limit: number;
@@ -420,8 +393,8 @@ declare function useResources(): {
420
393
  };
421
394
  create: {
422
395
  useMutation: () => _tanstack_react_query.UseMutationResult<{
423
- resource: _semiont_api_client.components["schemas"]["ResourceDescriptor"];
424
- annotations: _semiont_api_client.components["schemas"]["Annotation"][];
396
+ resource: _semiont_core.components["schemas"]["ResourceDescriptor"];
397
+ annotations: _semiont_core.components["schemas"]["Annotation"][];
425
398
  }, Error, {
426
399
  name: string;
427
400
  file: File | Buffer;
@@ -435,9 +408,9 @@ declare function useResources(): {
435
408
  };
436
409
  update: {
437
410
  useMutation: () => _tanstack_react_query.UseMutationResult<{
438
- resource: _semiont_api_client.components["schemas"]["ResourceDescriptor"];
439
- annotations: _semiont_api_client.components["schemas"]["Annotation"][];
440
- entityReferences: _semiont_api_client.components["schemas"]["Annotation"][];
411
+ resource: _semiont_core.components["schemas"]["ResourceDescriptor"];
412
+ annotations: _semiont_core.components["schemas"]["Annotation"][];
413
+ entityReferences: _semiont_core.components["schemas"]["Annotation"][];
441
414
  }, Error, {
442
415
  rUri: ResourceUri;
443
416
  data: Parameters<SemiontApiClient["updateResource"]>[1];
@@ -447,19 +420,19 @@ declare function useResources(): {
447
420
  useMutation: () => _tanstack_react_query.UseMutationResult<{
448
421
  token: string;
449
422
  expiresAt: string;
450
- resource: _semiont_api_client.components["schemas"]["ResourceDescriptor"];
423
+ resource: _semiont_core.components["schemas"]["ResourceDescriptor"];
451
424
  }, Error, ResourceUri, unknown>;
452
425
  };
453
426
  getByToken: {
454
427
  useQuery: (cloneTokenStr: string) => _tanstack_react_query.UseQueryResult<{
455
- sourceResource: _semiont_api_client.components["schemas"]["ResourceDescriptor"];
428
+ sourceResource: _semiont_core.components["schemas"]["ResourceDescriptor"];
456
429
  expiresAt: string;
457
430
  }, Error>;
458
431
  };
459
432
  createFromToken: {
460
433
  useMutation: () => _tanstack_react_query.UseMutationResult<{
461
- resource: _semiont_api_client.components["schemas"]["ResourceDescriptor"];
462
- annotations: _semiont_api_client.components["schemas"]["Annotation"][];
434
+ resource: _semiont_core.components["schemas"]["ResourceDescriptor"];
435
+ annotations: _semiont_core.components["schemas"]["Annotation"][];
463
436
  }, Error, {
464
437
  token: string;
465
438
  name: string;
@@ -477,9 +450,9 @@ declare function useAnnotations(): {
477
450
  };
478
451
  getResourceAnnotation: {
479
452
  useQuery: (annotationUri: ResourceAnnotationUri) => _tanstack_react_query.UseQueryResult<{
480
- annotation: _semiont_api_client.components["schemas"]["Annotation"];
481
- resource: _semiont_api_client.components["schemas"]["ResourceDescriptor"] | null;
482
- resolvedResource: _semiont_api_client.components["schemas"]["ResourceDescriptor"] | null;
453
+ annotation: _semiont_core.components["schemas"]["Annotation"];
454
+ resource: _semiont_core.components["schemas"]["ResourceDescriptor"] | null;
455
+ resolvedResource: _semiont_core.components["schemas"]["ResourceDescriptor"] | null;
483
456
  }, Error>;
484
457
  };
485
458
  history: {
@@ -492,7 +465,7 @@ declare function useAnnotations(): {
492
465
  resourceId: string;
493
466
  payload: {
494
467
  name: string;
495
- format: _semiont_api_client.components["schemas"]["ContentFormat"];
468
+ format: _semiont_core.components["schemas"]["ContentFormat"];
496
469
  contentChecksum: string;
497
470
  creationMethod: "api" | "upload" | "ui" | "reference" | "clone" | "generated";
498
471
  entityTypes?: string[];
@@ -501,7 +474,7 @@ declare function useAnnotations(): {
501
474
  };
502
475
  } | {
503
476
  name: string;
504
- format: _semiont_api_client.components["schemas"]["ContentFormat"];
477
+ format: _semiont_core.components["schemas"]["ContentFormat"];
505
478
  contentChecksum: string;
506
479
  parentResourceId: string;
507
480
  creationMethod: "api" | "upload" | "ui" | "reference" | "clone" | "generated";
@@ -512,7 +485,7 @@ declare function useAnnotations(): {
512
485
  } | {
513
486
  reason?: string;
514
487
  } | Record<string, never> | {
515
- annotation: _semiont_api_client.components["schemas"]["Annotation"];
488
+ annotation: _semiont_core.components["schemas"]["Annotation"];
516
489
  } | {
517
490
  annotationId: string;
518
491
  } | {
@@ -536,7 +509,7 @@ declare function useAnnotations(): {
536
509
  };
537
510
  create: {
538
511
  useMutation: () => _tanstack_react_query.UseMutationResult<{
539
- annotation: _semiont_api_client.components["schemas"]["Annotation"];
512
+ annotation: _semiont_core.components["schemas"]["Annotation"];
540
513
  }, Error, {
541
514
  rUri: ResourceUri;
542
515
  data: Parameters<SemiontApiClient["createAnnotation"]>[1];
@@ -550,7 +523,7 @@ declare function useAnnotations(): {
550
523
  };
551
524
  updateBody: {
552
525
  useMutation: () => _tanstack_react_query.UseMutationResult<{
553
- annotation: _semiont_api_client.components["schemas"]["Annotation"];
526
+ annotation: _semiont_core.components["schemas"]["Annotation"];
554
527
  }, Error, {
555
528
  annotationUri: ResourceAnnotationUri;
556
529
  data: Parameters<SemiontApiClient["updateAnnotationBody"]>[1];
@@ -560,10 +533,10 @@ declare function useAnnotations(): {
560
533
  useQuery: (resourceUri: ResourceUri, annotationId: string, options?: {
561
534
  contextWindow?: number;
562
535
  }) => _tanstack_react_query.UseQueryResult<{
563
- annotation: _semiont_api_client.components["schemas"]["Annotation"];
564
- sourceResource: _semiont_api_client.components["schemas"]["ResourceDescriptor"];
565
- targetResource?: _semiont_api_client.components["schemas"]["ResourceDescriptor"] | null;
566
- context?: _semiont_api_client.components["schemas"]["GenerationContext"];
536
+ annotation: _semiont_core.components["schemas"]["Annotation"];
537
+ sourceResource: _semiont_core.components["schemas"]["ResourceDescriptor"];
538
+ targetResource?: _semiont_core.components["schemas"]["ResourceDescriptor"] | null;
539
+ context?: _semiont_core.components["schemas"]["GenerationContext"];
567
540
  sourceContext?: {
568
541
  before: string;
569
542
  selected: string;
@@ -3888,7 +3861,7 @@ interface ContextRetrievalFlowState {
3888
3861
  /** The annotationUri for which context was most recently retrieved */
3889
3862
  retrievalAnnotationUri: string | null;
3890
3863
  }
3891
- declare function useContextRetrievalFlow(emitter: Emitter<EventMap>, config: ContextRetrievalFlowConfig): ContextRetrievalFlowState;
3864
+ declare function useContextRetrievalFlow(eventBus: EventBus, config: ContextRetrievalFlowConfig): ContextRetrievalFlowState;
3892
3865
 
3893
3866
  interface ResolutionFlowState {
3894
3867
  searchModalOpen: boolean;
@@ -3911,4 +3884,4 @@ interface ResolutionFlowState {
3911
3884
  */
3912
3885
  declare function useResolutionFlow(rUri: ResourceUri): ResolutionFlowState;
3913
3886
 
3914
- export { ANNOTATORS, AUTH_EVENTS, AVAILABLE_LOCALES, AdminDevOpsPage, type AdminDevOpsPageProps, AdminSecurityPage, type AdminSecurityPageProps, type AdminUser, type AdminUserStats, AdminUsersPage, type AdminUsersPageProps, AnnotateToolbar, AnnotateView, type Annotation$k as Annotation, type AnnotationConfig, type AnnotationCreationHandler, type AnnotationHandlers, AnnotationHistory, type AnnotationManager, AnnotationOverlay, AnnotationProvider, type AnnotationProviderProps, type AnnotationUIState, type AnnotationsCollection, type Annotator, ApiClientProvider, type ApiClientProviderProps, AssessmentEntry, AssessmentPanel, AsyncErrorBoundary, type AttentionFlowState, AuthErrorDisplay, type AuthErrorDisplayProps, type AuthEventDetail, type AuthEventType, AuthTokenProvider, type AuthTokenProviderProps, type AvailableLocale, type BorderRadiusToken, BrowseView, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type CacheManager, CacheProvider, type CacheProviderProps, type ClickAction, CodeMirrorRenderer, CollaborationPanel, CollapsibleResourceNavigation, type CollapsibleResourceNavigationProps, type ColorToken, CommentEntry, CommentsPanel, ComposeLoadingState, type ComposeLoadingStateProps, type ContextRetrievalFlowConfig, type ContextRetrievalFlowState, type CreateAnnotationParams, type CreateConfig, type DeleteAnnotationParams, DetectSection, type DetectionConfig, type DetectionFlowState, DetectionProgress, DetectionProgressWidget, type DevOpsFeature, type DrawingMode, EntityTagsPage, type EntityTagsPageProps, EntityTypeBadges, ErrorBoundary, EventBus, EventMap, Footer, type GenerationFlowState, type GenerationOptions, GenerationProgress, HOVER_DELAY_MS, HighlightEntry, HighlightPanel, HistoryEvent, type HoverEmitterProps, type HoverHandlers, ImageURLSchema, ImageViewer, JsonLdPanel, JsonLdView, type KeyboardShortcut, KeyboardShortcutsHelpModal, LeftSidebar, type LinkComponentProps, LiveRegionProvider, type Motivation$8 as Motivation, type NavigationItem, NavigationMenu, type NavigationMenuHelper, type NavigationProps, type OAuthProvider, type OAuthUser, OAuthUserSchema, ObservableLink, type ObservableLinkProps, type OpenResource, OpenResourcesManager, OpenResourcesProvider, PageLayout, PanelHeader, type PanelNavigationState, PopupContainer, PopupHeader, type PreparedAnnotation, ProposeEntitiesModal, QUERY_KEYS, RecentDocumentsPage, type RecentDocumentsPageProps, ReferenceEntry, ReferenceResolutionWidget, ReferencesPanel, ResizeHandle, type ResolutionFlowState, type ResolvedTheme, ResourceAnnotationsProvider, ResourceCard, type ResourceCardProps, ResourceComposePage, type ResourceComposePageProps, ResourceDiscoveryPage, type ResourceDiscoveryPageProps, ResourceErrorState, type ResourceErrorStateProps, ResourceInfoPanel, ResourceLoadingState, ResourceSearchModal, type ResourceSearchModalProps, ResourceTagsInline, ResourceViewer, ResourceViewerPage, type ResourceViewerPageProps, type RouteBuilder, type SaveResourceParams, SearchModal, type SearchModalProps, SelectedTextDisplay, type SelectionMotivation, type SelectorType, SemiontBranding, SemiontFavicon, type SemiontResource$4 as SemiontResource, SessionExpiryBanner, SessionManager, SessionProvider, SessionTimer, SettingsPanel, type ShadowToken, type ShapeType, SignInForm, type SignInFormProps, SignUpForm, type SignUpFormProps, SimpleNavigation, type SimpleNavigationItem, type SimpleNavigationProps, SkipLinks, SortableResourceTab, type SortableResourceTabProps, type SpacingToken, StatisticsPanel, StatusDisplay, type StreamStatus, SvgDrawingCanvas, TagEntry, TagSchemasPage, type TagSchemasPageProps, TaggingPanel, type TextSegment, type TextSelection, type Theme, ThemeProvider, ToastContainer, type ToastMessage, ToastProvider, type ToastType, Toolbar, type ToolbarPanelType, type TransitionToken, TranslationManager, TranslationProvider, type TranslationProviderProps, type TypographyToken, type UICreateAnnotationParams, UnifiedAnnotationsPanel, UnifiedHeader, type UseResourceContentResult, UserMenuSkeleton, WelcomePage, type WelcomePageProps, buttonStyles, createCancelDetectionHandler, createDetectionHandler, createHoverHandlers, cssVariables, dispatch401Error, dispatch403Error, dispatchAuthEvent, faviconPaths, formatTime, generateCSSVariables, getResourceIcon, getSelectedShapeForSelectorType, getSelectorType, getShortcutDisplay, getSupportedShapes, isShapeSupported, jsonLightHighlightStyle, jsonLightTheme, onAuthEvent, rehypeRenderAnnotations, remarkAnnotations, sanitizeImageURL, saveSelectedShapeForSelectorType, supportsDetection, tokens, useAdmin, useAnnotationManager, useAnnotations, useApiClient, useAttentionFlow, useAuthApi, useAuthToken, useCacheManager, useContextRetrievalFlow, useDebounce, useDebouncedCallback, useDetectionFlow, useDocumentAnnouncements, useDoubleKeyPress, useDropdown, useEntityTypes, useEventSubscription, useEventSubscriptions, useFormAnnouncements, useGenerationFlow, useHealth, useHoverEmitter, useIsTyping, useKeyboardShortcuts, useLanguageChangeAnnouncements, useLineNumbers, useLiveRegion, useLoadingState, useLocalStorage, useObservableExternalNavigation, useObservableRouter, useOpenResources, usePanelNavigation, usePanelWidth, usePreloadTranslations, useResolutionFlow, useResourceAnnotations, useResourceContent, useResourceEvents, useResourceLoadingAnnouncements, useResources, useRovingTabIndex, useSearchAnnouncements, useSessionContext, useSessionExpiry, useTheme, useToast, useTranslations };
3887
+ export { ANNOTATORS, AUTH_EVENTS, AVAILABLE_LOCALES, AdminDevOpsPage, type AdminDevOpsPageProps, AdminSecurityPage, type AdminSecurityPageProps, type AdminUser, type AdminUserStats, AdminUsersPage, type AdminUsersPageProps, AnnotateToolbar, AnnotateView, type Annotation$k as Annotation, type AnnotationConfig, type AnnotationCreationHandler, type AnnotationHandlers, AnnotationHistory, type AnnotationManager, AnnotationOverlay, AnnotationProvider, type AnnotationProviderProps, type AnnotationUIState, type AnnotationsCollection, type Annotator, ApiClientProvider, type ApiClientProviderProps, AssessmentEntry, AssessmentPanel, AsyncErrorBoundary, type AttentionFlowState, AuthErrorDisplay, type AuthErrorDisplayProps, type AuthEventDetail, type AuthEventType, AuthTokenProvider, type AuthTokenProviderProps, type AvailableLocale, type BorderRadiusToken, BrowseView, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type CacheManager, CacheProvider, type CacheProviderProps, type ClickAction, CodeMirrorRenderer, CollaborationPanel, CollapsibleResourceNavigation, type CollapsibleResourceNavigationProps, type ColorToken, CommentEntry, CommentsPanel, ComposeLoadingState, type ComposeLoadingStateProps, type ContextRetrievalFlowConfig, type ContextRetrievalFlowState, type CreateAnnotationParams, type CreateConfig, type DeleteAnnotationParams, DetectSection, type DetectionConfig, type DetectionFlowState, DetectionProgressWidget, type DevOpsFeature, type DrawingMode, EntityTagsPage, type EntityTagsPageProps, EntityTypeBadges, ErrorBoundary, Footer, type GenerationFlowState, type GenerationOptions, HOVER_DELAY_MS, HighlightEntry, HighlightPanel, HistoryEvent, type HoverEmitterProps, type HoverHandlers, ImageURLSchema, ImageViewer, JsonLdPanel, JsonLdView, type KeyboardShortcut, KeyboardShortcutsHelpModal, LeftSidebar, type LinkComponentProps, LiveRegionProvider, type Motivation$8 as Motivation, type NavigationItem, NavigationMenu, type NavigationMenuHelper, type NavigationProps, type OAuthProvider, type OAuthUser, OAuthUserSchema, ObservableLink, type ObservableLinkProps, type OpenResource, OpenResourcesManager, OpenResourcesProvider, PageLayout, PanelHeader, type PanelNavigationState, PopupContainer, PopupHeader, type PreparedAnnotation, ProposeEntitiesModal, QUERY_KEYS, RecentDocumentsPage, type RecentDocumentsPageProps, ReferenceEntry, ReferenceResolutionWidget, ReferencesPanel, ResizeHandle, type ResolutionFlowState, type ResolvedTheme, ResourceAnnotationsProvider, ResourceCard, type ResourceCardProps, ResourceComposePage, type ResourceComposePageProps, ResourceDiscoveryPage, type ResourceDiscoveryPageProps, ResourceErrorState, type ResourceErrorStateProps, ResourceInfoPanel, ResourceLoadingState, ResourceSearchModal, type ResourceSearchModalProps, ResourceTagsInline, ResourceViewer, ResourceViewerPage, type ResourceViewerPageProps, type RouteBuilder, type SaveResourceParams, SearchModal, type SearchModalProps, SelectedTextDisplay, type SelectionMotivation, type SelectorType, SemiontBranding, SemiontFavicon, type SemiontResource$4 as SemiontResource, SessionExpiryBanner, SessionManager, SessionProvider, SessionTimer, SettingsPanel, type ShadowToken, type ShapeType, SignInForm, type SignInFormProps, SignUpForm, type SignUpFormProps, SimpleNavigation, type SimpleNavigationItem, type SimpleNavigationProps, SkipLinks, SortableResourceTab, type SortableResourceTabProps, type SpacingToken, StatisticsPanel, StatusDisplay, type StreamStatus, SvgDrawingCanvas, TagEntry, TagSchemasPage, type TagSchemasPageProps, TaggingPanel, type TextSegment, type TextSelection, type Theme, ThemeProvider, ToastContainer, type ToastMessage, ToastProvider, type ToastType, Toolbar, type ToolbarPanelType, type TransitionToken, TranslationManager, TranslationProvider, type TranslationProviderProps, type TypographyToken, type UICreateAnnotationParams, UnifiedAnnotationsPanel, UnifiedHeader, type UseResourceContentResult, UserMenuSkeleton, WelcomePage, type WelcomePageProps, buttonStyles, createHoverHandlers, cssVariables, dispatch401Error, dispatch403Error, dispatchAuthEvent, faviconPaths, formatTime, generateCSSVariables, getResourceIcon, getSelectedShapeForSelectorType, getSelectorType, getShortcutDisplay, getSupportedShapes, isShapeSupported, jsonLightHighlightStyle, jsonLightTheme, onAuthEvent, rehypeRenderAnnotations, remarkAnnotations, sanitizeImageURL, saveSelectedShapeForSelectorType, supportsDetection, tokens, useAdmin, useAnnotationManager, useAnnotations, useApiClient, useAttentionFlow, useAuthApi, useAuthToken, useCacheManager, useContextRetrievalFlow, useDebounce, useDebouncedCallback, useDetectionFlow, useDocumentAnnouncements, useDoubleKeyPress, useDropdown, useEntityTypes, useEventSubscription, useEventSubscriptions, useFormAnnouncements, useGenerationFlow, useHealth, useHoverEmitter, useIsTyping, useKeyboardShortcuts, useLanguageChangeAnnouncements, useLineNumbers, useLiveRegion, useLoadingState, useLocalStorage, useObservableExternalNavigation, useObservableRouter, useOpenResources, usePanelNavigation, usePanelWidth, usePreloadTranslations, useResolutionFlow, useResourceAnnotations, useResourceContent, useResourceEvents, useResourceLoadingAnnouncements, useResources, useRovingTabIndex, useSearchAnnouncements, useSessionContext, useSessionExpiry, useTheme, useToast, useTranslations };