@semiont/react-ui 0.5.27 → 0.5.28
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/dist/{PdfAnnotationCanvas.client-EVUPTUWZ.js → PdfAnnotationCanvas.client-C2IGG4SW.js} +31 -4
- package/dist/{ar-OU3DQGC6.js → ar-FABPTJVB.js} +39 -23
- package/dist/{bn-PHWCR6AZ.js → bn-LKP6BDMH.js} +39 -23
- package/dist/{chunk-PCRRBU7H.js → chunk-2GOHTTHW.js} +39 -23
- package/dist/{chunk-5VDTWRXJ.js → chunk-2YHEE63S.js} +31 -31
- package/dist/{cs-NEXYZ62I.js → cs-YQYNWHRG.js} +39 -23
- package/dist/{da-FAT43YCU.js → da-QHZOYKRY.js} +39 -23
- package/dist/{de-KRQ3WBCU.js → de-GKA7RD7J.js} +39 -23
- package/dist/{el-Q4IU3EKC.js → el-45T257AL.js} +39 -23
- package/dist/{en-2KADE7N4.js → en-RVW5EQ66.js} +2 -2
- package/dist/{es-2IO3R2MK.js → es-AVER7RU4.js} +39 -23
- package/dist/{fa-Q5GOQFXX.js → fa-K3VPK3O2.js} +39 -23
- package/dist/{fi-R6NMRWBE.js → fi-5NEKF7EB.js} +39 -23
- package/dist/{fr-QY4D5E6J.js → fr-FUMNDLBZ.js} +39 -23
- package/dist/{he-X6Y77XHY.js → he-3JGNA3PR.js} +39 -23
- package/dist/{hi-XL7IOEQM.js → hi-IJY375DF.js} +39 -23
- package/dist/{id-QZ4ZZS67.js → id-LWHKJ7ZD.js} +39 -23
- package/dist/index.css +279 -74
- package/dist/index.d.ts +170 -145
- package/dist/index.js +2743 -2365
- package/dist/{it-ME2Q7OB6.js → it-EBVOV4RW.js} +39 -23
- package/dist/{ja-HX7QASRI.js → ja-KWRIX2NF.js} +39 -23
- package/dist/{ko-EQO5AHAV.js → ko-L5CJMFDS.js} +39 -23
- package/dist/{ms-UILFSF3I.js → ms-LSNMJDR2.js} +39 -23
- package/dist/{nl-NNI45PMK.js → nl-ZB32MB7U.js} +39 -23
- package/dist/{no-MAL5F6P6.js → no-4GTNY7M5.js} +39 -23
- package/dist/{pl-4RMY6JAJ.js → pl-LUHBLTHB.js} +39 -23
- package/dist/{pt-VQH2X3QQ.js → pt-C4H3UNQ6.js} +39 -23
- package/dist/{ro-XXCQO2OG.js → ro-GGITS5V4.js} +39 -23
- package/dist/{sv-7Z6EJ6U4.js → sv-T56RTLBP.js} +39 -23
- package/dist/test-utils.js +2 -2
- package/dist/{th-L3DXXYVQ.js → th-22X2IWCB.js} +39 -23
- package/dist/{tr-P3DFVLFJ.js → tr-77TFG62H.js} +39 -23
- package/dist/{uk-7C5D3PXS.js → uk-MIIL6NXT.js} +39 -23
- package/dist/{vi-ZLTLEO7P.js → vi-7JYOIGNV.js} +39 -23
- package/dist/{zh-5FHVWDIN.js → zh-ID6DRYU4.js} +39 -23
- package/package.json +9 -8
- package/src/components/AssistProgress.tsx +36 -2
- package/src/components/CodeMirrorRenderer.tsx +8 -8
- package/src/components/__tests__/AssistProgress.test.tsx +59 -0
- package/src/components/modals/ComposeStep.tsx +218 -0
- package/src/components/modals/ConfigureGatherStep.tsx +10 -18
- package/src/components/modals/ConfigureGenerationStep.tsx +35 -19
- package/src/components/modals/ConfigureSearchStep.tsx +19 -0
- package/src/components/modals/ContextSummary.tsx +185 -72
- package/src/components/modals/CorpusPane.tsx +75 -0
- package/src/components/modals/DiscardPrompt.tsx +38 -0
- package/src/components/modals/GatherContextStep.tsx +237 -107
- package/src/components/modals/ReferenceWizardModal.tsx +238 -50
- package/src/components/modals/ResourceGenerateModal.tsx +216 -108
- package/src/components/modals/SearchModal.css +337 -101
- package/src/components/modals/SearchResultsStep.tsx +61 -68
- package/src/components/modals/WizardFooter.tsx +7 -1
- package/src/components/modals/__tests__/ComposeStep.test.tsx +152 -0
- package/src/components/modals/__tests__/ConfigureGatherStep.test.tsx +14 -26
- package/src/components/modals/__tests__/ConfigureGenerationStep.test.tsx +35 -0
- package/src/components/modals/__tests__/ConfigureSearchStep.test.tsx +24 -1
- package/src/components/modals/__tests__/GatherContextStep.resource.test.tsx +463 -25
- package/src/components/modals/__tests__/ReferenceWizardModal.test.tsx +417 -38
- package/src/components/modals/__tests__/ResourceGenerateModal.test.tsx +276 -85
- package/src/components/modals/__tests__/SearchResultsStep.test.tsx +61 -0
- package/src/components/modals/__tests__/WizardFooter.test.tsx +113 -4
- package/src/components/pdf-annotation/PdfAnnotationCanvas.tsx +34 -1
- package/src/components/pdf-annotation/__tests__/PdfAnnotationCanvas.test.tsx +38 -1
- package/src/components/resource/AnnotateView.tsx +3 -3
- package/src/components/resource/BrowseView.tsx +5 -5
- package/src/components/resource/ResourceViewer.tsx +4 -4
- package/src/components/resource/__tests__/AnnotateView.embeddable.test.tsx +1 -1
- package/src/components/resource/__tests__/BrowseView.embeddable.test.tsx +1 -1
- package/src/components/resource/__tests__/BrowseView.test.tsx +9 -9
- package/src/components/resource/annotate-renderers.tsx +3 -3
- package/src/components/resource/panels/AssistSection.css +35 -0
- package/src/components/resource/panels/ReferenceEntry.tsx +9 -2
- package/src/components/resource/panels/ReferencesPanel.tsx +4 -0
- package/src/components/resource/panels/ResourceInfoPanel.tsx +89 -20
- package/src/components/resource/panels/UnifiedAnnotationsPanel.tsx +7 -2
- package/src/components/resource/panels/__tests__/ReferenceEntry.test.tsx +41 -0
- package/src/components/resource/panels/__tests__/ReferencesPanel.test.tsx +33 -1
- package/src/components/resource/panels/__tests__/ResourceInfoPanel.test.tsx +148 -6
- package/src/features/resource-compose/__tests__/ResourceComposePage.test.tsx +0 -65
- package/src/features/resource-compose/components/ResourceComposePage.tsx +17 -130
- package/src/features/resource-compose/state/__tests__/compose-page-state-unit.test.ts +1 -100
- package/src/features/resource-compose/state/compose-page-state-unit.ts +5 -57
- package/src/features/resource-viewer/__tests__/ResourceViewerPage.test.tsx +71 -15
- package/src/features/resource-viewer/components/ResourceViewerPage.tsx +133 -59
- package/src/styles/core/forms.css +35 -8
- package/src/styles/features/resource-viewer.css +0 -22
- package/src/styles/features/resource.css +0 -4
- package/translations/ar.json +38 -22
- package/translations/bn.json +38 -22
- package/translations/cs.json +38 -22
- package/translations/da.json +38 -22
- package/translations/de.json +38 -22
- package/translations/el.json +38 -22
- package/translations/en.json +38 -22
- package/translations/es.json +38 -22
- package/translations/fa.json +38 -22
- package/translations/fi.json +38 -22
- package/translations/fr.json +38 -22
- package/translations/he.json +38 -22
- package/translations/hi.json +38 -22
- package/translations/id.json +38 -22
- package/translations/it.json +38 -22
- package/translations/ja.json +38 -22
- package/translations/ko.json +38 -22
- package/translations/ms.json +38 -22
- package/translations/nl.json +38 -22
- package/translations/no.json +38 -22
- package/translations/pl.json +38 -22
- package/translations/pt.json +38 -22
- package/translations/ro.json +38 -22
- package/translations/sv.json +38 -22
- package/translations/th.json +38 -22
- package/translations/tr.json +38 -22
- package/translations/uk.json +38 -22
- package/translations/vi.json +38 -22
- package/translations/zh.json +38 -22
- package/dist/PdfAnnotationCanvas.client-EVUPTUWZ.js.map +0 -1
- package/dist/PdfAnnotationCanvas.client-TGDPPGXJ.css.map +0 -1
- package/dist/ar-OU3DQGC6.js.map +0 -1
- package/dist/bn-PHWCR6AZ.js.map +0 -1
- package/dist/chunk-5VDTWRXJ.js.map +0 -1
- package/dist/chunk-BTUG3VJJ.js.map +0 -1
- package/dist/chunk-O23TLLXW.js.map +0 -1
- package/dist/chunk-PCRRBU7H.js.map +0 -1
- package/dist/chunk-QT7LYM72.js.map +0 -1
- package/dist/chunk-VXASXU4K.js.map +0 -1
- package/dist/cs-NEXYZ62I.js.map +0 -1
- package/dist/da-FAT43YCU.js.map +0 -1
- package/dist/de-KRQ3WBCU.js.map +0 -1
- package/dist/el-Q4IU3EKC.js.map +0 -1
- package/dist/en-2KADE7N4.js.map +0 -1
- package/dist/es-2IO3R2MK.js.map +0 -1
- package/dist/fa-Q5GOQFXX.js.map +0 -1
- package/dist/fi-R6NMRWBE.js.map +0 -1
- package/dist/fr-QY4D5E6J.js.map +0 -1
- package/dist/he-X6Y77XHY.js.map +0 -1
- package/dist/hi-XL7IOEQM.js.map +0 -1
- package/dist/id-QZ4ZZS67.js.map +0 -1
- package/dist/index.css.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/integrations/css-modules-helper.js.map +0 -1
- package/dist/integrations/styled-components-theme.js.map +0 -1
- package/dist/it-ME2Q7OB6.js.map +0 -1
- package/dist/ja-HX7QASRI.js.map +0 -1
- package/dist/ko-EQO5AHAV.js.map +0 -1
- package/dist/ms-UILFSF3I.js.map +0 -1
- package/dist/nl-NNI45PMK.js.map +0 -1
- package/dist/no-MAL5F6P6.js.map +0 -1
- package/dist/pl-4RMY6JAJ.js.map +0 -1
- package/dist/pt-VQH2X3QQ.js.map +0 -1
- package/dist/ro-XXCQO2OG.js.map +0 -1
- package/dist/sv-7Z6EJ6U4.js.map +0 -1
- package/dist/test-utils.css.map +0 -1
- package/dist/test-utils.js.map +0 -1
- package/dist/th-L3DXXYVQ.js.map +0 -1
- package/dist/tr-P3DFVLFJ.js.map +0 -1
- package/dist/uk-7C5D3PXS.js.map +0 -1
- package/dist/vi-ZLTLEO7P.js.map +0 -1
- package/dist/zh-5FHVWDIN.js.map +0 -1
- package/src/components/modals/ResourceSearchModal.tsx +0 -224
- package/src/components/modals/__tests__/ResourceSearchModal.test.tsx +0 -163
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as _semiont_react_ui from '@semiont/react-ui';
|
|
2
2
|
import { BrowseMediaRenderers as BrowseMediaRenderers$1, AnnotateMediaRenderers as AnnotateMediaRenderers$1 } from '@semiont/react-ui';
|
|
3
|
-
import { Annotation, ResourceId, Selector, components, ResourceDescriptor, ValidationResult, StateUnit,
|
|
3
|
+
import { Annotation, ResourceId, Selector, components, ResourceDescriptor, ValidationResult, StateUnit, CollaboratorEntry, EventMap, DiscoveredKB, AnnotationId, AnchorStrategy, AnchorConfidence, StoredEventLike, ConnectionState, GatheredContext, BackendDownload, ProgressEvent, AccessToken } from '@semiont/core';
|
|
4
4
|
export { Annotation } from '@semiont/core';
|
|
5
5
|
import * as React$1 from 'react';
|
|
6
6
|
import React__default, { ComponentType, ReactNode, KeyboardEvent as KeyboardEvent$1, Component, ErrorInfo, MouseEvent, Ref } from 'react';
|
|
7
7
|
import * as _codemirror_state from '@codemirror/state';
|
|
8
8
|
import { HighlightStyle } from '@codemirror/language';
|
|
9
9
|
import { WidgetType } from '@codemirror/view';
|
|
10
|
-
import { SemiontClient, SemiontSession, DiscoveryTransport, DiscoveryState, SemiontBrowser, SessionStorage, SessionFactory, OpenResource, TagSchema, UploadProgress, BeckonStateUnit, MarkStateUnit, GatherStateUnit, YieldStateUnit, ReferencedByEntry } from '@semiont/sdk';
|
|
10
|
+
import { SemiontClient, SemiontSession, DiscoveryTransport, DiscoveryState, SemiontBrowser, SessionStorage, SessionFactory, YieldOutcome, OpenResource, ResourceGatherOptions, TagSchema, UploadProgress, BeckonStateUnit, MarkStateUnit, GatherStateUnit, YieldStateUnit, ReferencedByEntry } from '@semiont/sdk';
|
|
11
11
|
export { BeckonStateUnit, GatherStateUnit, GenerateDocumentOptions, HOVER_DELAY_MS, HoverHandlers, MarkStateUnit, MatchStateUnit, PendingAnnotation, SearchPipeline, SearchPipelineOptions, SearchState, TagSchema, YieldStateUnit, createBeckonStateUnit, createGatherStateUnit, createHoverHandlers, createMarkStateUnit, createMatchStateUnit, createSearchPipeline, createYieldStateUnit } from '@semiont/sdk';
|
|
12
12
|
import { Observable } from 'rxjs';
|
|
13
13
|
|
|
@@ -1072,28 +1072,6 @@ interface UseResourceContentResult {
|
|
|
1072
1072
|
*/
|
|
1073
1073
|
declare function useResourceContent(client: SemiontClient | null, rUri: ResourceId, resource: ResourceDescriptor, enabled?: boolean): UseResourceContentResult;
|
|
1074
1074
|
|
|
1075
|
-
interface ResourceGatherOptions {
|
|
1076
|
-
depth?: number;
|
|
1077
|
-
maxResources?: number;
|
|
1078
|
-
includeContent?: boolean;
|
|
1079
|
-
includeSummary?: boolean;
|
|
1080
|
-
/** Entity types to exclude from the gather's semantic recall (e.g. ['Question']). */
|
|
1081
|
-
excludeEntityTypes?: string[];
|
|
1082
|
-
}
|
|
1083
|
-
interface UseResourceGatherResult {
|
|
1084
|
-
context: GatheredContext | null;
|
|
1085
|
-
loading: boolean;
|
|
1086
|
-
error: Error | null;
|
|
1087
|
-
/** Run a resource gather (`gather.resource`) and store the result. */
|
|
1088
|
-
gather: (resourceId: string, options?: ResourceGatherOptions) => Promise<void>;
|
|
1089
|
-
reset: () => void;
|
|
1090
|
-
}
|
|
1091
|
-
/**
|
|
1092
|
-
* Drives a whole-resource gather (`client.gather.resource`, a Promise — no progress
|
|
1093
|
-
* stream) into React state. The home for the GENERATE-FROM-BUTTON resource-gather flow.
|
|
1094
|
-
*/
|
|
1095
|
-
declare function useResourceGather(): UseResourceGatherResult;
|
|
1096
|
-
|
|
1097
1075
|
interface UseResourceLoaderResult {
|
|
1098
1076
|
resource: ResourceDescriptor | undefined;
|
|
1099
1077
|
annotations: AnnotationsCollection;
|
|
@@ -1354,9 +1332,9 @@ declare function useEventSubscriptions(subscriptions: {
|
|
|
1354
1332
|
}): void;
|
|
1355
1333
|
|
|
1356
1334
|
interface ResourceAnnotationsContextType {
|
|
1357
|
-
|
|
1335
|
+
sparkleAnnotationIds: Set<string>;
|
|
1358
1336
|
markAnnotation: (rUri: ResourceId, motivation: 'highlighting' | 'linking' | 'assessing' | 'commenting' | 'tagging', selector: Selector | Selector[], body?: any[]) => Promise<string | undefined>;
|
|
1359
|
-
|
|
1337
|
+
clearSparkle: (id: AnnotationId) => void;
|
|
1360
1338
|
triggerSparkleAnimation: (annotationId: string) => void;
|
|
1361
1339
|
}
|
|
1362
1340
|
declare function ResourceAnnotationsProvider({ children }: {
|
|
@@ -1501,7 +1479,7 @@ interface Props$c {
|
|
|
1501
1479
|
}) => void;
|
|
1502
1480
|
onChange?: (content: string) => void;
|
|
1503
1481
|
editable?: boolean;
|
|
1504
|
-
|
|
1482
|
+
sparkleAnnotationIds?: Set<string>;
|
|
1505
1483
|
hoveredAnnotationId?: string | null;
|
|
1506
1484
|
scrollToAnnotationId?: string | null;
|
|
1507
1485
|
sourceView?: boolean;
|
|
@@ -1512,9 +1490,9 @@ interface Props$c {
|
|
|
1512
1490
|
generatingReferenceId?: string | null;
|
|
1513
1491
|
hoverDelayMs: number;
|
|
1514
1492
|
}
|
|
1515
|
-
declare function CodeMirrorRenderer({ content, segments, onChange, editable,
|
|
1493
|
+
declare function CodeMirrorRenderer({ content, segments, onChange, editable, sparkleAnnotationIds, hoveredAnnotationId, scrollToAnnotationId, sourceView, showLineNumbers, enableWidgets, session, getTargetResourceName, generatingReferenceId, hoverDelayMs }: Props$c): React$1.JSX.Element;
|
|
1516
1494
|
|
|
1517
|
-
type JobProgress$
|
|
1495
|
+
type JobProgress$9 = components['schemas']['JobProgress'];
|
|
1518
1496
|
type JobProgressMessage = components['schemas']['JobProgressMessage'];
|
|
1519
1497
|
/**
|
|
1520
1498
|
* Every string this component renders. Required by default and with NO English
|
|
@@ -1545,7 +1523,7 @@ interface AssistProgressTranslations {
|
|
|
1545
1523
|
* Takes the wire's `{ kind, value }` — the localized name for `kind` is the
|
|
1546
1524
|
* translation layer's business, not this component's.
|
|
1547
1525
|
*/
|
|
1548
|
-
subject: (current: NonNullable<JobProgress$
|
|
1526
|
+
subject: (current: NonNullable<JobProgress$9['current']>, done?: number, total?: number) => string;
|
|
1549
1527
|
/**
|
|
1550
1528
|
* Localized NAME for an echoed request parameter. The wire sends a code
|
|
1551
1529
|
* (`instructions`, `tone`, …); the VALUE beside it is the user's own words
|
|
@@ -1562,8 +1540,27 @@ interface AssistProgressTranslations {
|
|
|
1562
1540
|
*/
|
|
1563
1541
|
type AssistDataType = 'highlight' | 'comment' | 'assessment' | 'reference' | 'tag' | 'generation';
|
|
1564
1542
|
interface AssistProgressProps {
|
|
1565
|
-
progress: JobProgress$
|
|
1543
|
+
progress: JobProgress$9;
|
|
1566
1544
|
dataType: AssistDataType;
|
|
1545
|
+
/**
|
|
1546
|
+
* What the finished run produced, offered as a link in the ended frame
|
|
1547
|
+
* (GENERATE-FROM-RESOURCE D8). The label is the artifact's own name — user
|
|
1548
|
+
* content, never translated. Rendered only once `ended`: mid-run there is no
|
|
1549
|
+
* outcome to offer, whatever the caller has wired.
|
|
1550
|
+
*/
|
|
1551
|
+
outcome?: {
|
|
1552
|
+
label: string;
|
|
1553
|
+
onOpen: () => void;
|
|
1554
|
+
} | undefined;
|
|
1555
|
+
/**
|
|
1556
|
+
* The owner's terminal sentence, rendered in place of the payload message
|
|
1557
|
+
* once `ended` (GENERATION-ARRIVAL P1). The producer's final frame is a
|
|
1558
|
+
* fire-and-forget emit that can lose the race with `job:complete`, so an
|
|
1559
|
+
* ended frame must not trust the last payload to describe the ending —
|
|
1560
|
+
* the owner, which signalled `ended`, supplies the words too. Inert while
|
|
1561
|
+
* the run is live.
|
|
1562
|
+
*/
|
|
1563
|
+
endedMessage?: string;
|
|
1567
1564
|
/**
|
|
1568
1565
|
* The run has ENDED. The owner's fact, not the payload's
|
|
1569
1566
|
* (ASSIST-PROGRESS-CONSOLIDATION D7): terminality is signalled on
|
|
@@ -1598,16 +1595,16 @@ interface AssistProgressProps {
|
|
|
1598
1595
|
* opt-ins produced four unrelated layouts from one component, which is what
|
|
1599
1596
|
* generated the duplicate renders and doubled chrome this replaces.
|
|
1600
1597
|
*/
|
|
1601
|
-
declare function AssistProgress({ progress, dataType, ended, onCancel, onDismiss, translations: tr, }: AssistProgressProps): React$1.JSX.Element;
|
|
1598
|
+
declare function AssistProgress({ progress, dataType, ended, outcome, endedMessage, onCancel, onDismiss, translations: tr, }: AssistProgressProps): React$1.JSX.Element;
|
|
1602
1599
|
|
|
1603
|
-
type JobProgress$
|
|
1600
|
+
type JobProgress$8 = components['schemas']['JobProgress'];
|
|
1604
1601
|
interface AssistShellProps {
|
|
1605
1602
|
/** localStorage persist-key suffix and CSS `data-type`. */
|
|
1606
1603
|
assistType: AssistDataType;
|
|
1607
1604
|
/** Collapsible section title (already translated). */
|
|
1608
1605
|
title: string;
|
|
1609
1606
|
isAssisting: boolean;
|
|
1610
|
-
progress: JobProgress$
|
|
1607
|
+
progress: JobProgress$8 | null | undefined;
|
|
1611
1608
|
/** The per-motivation form (fields + submit) — shown when no progress is displayed. */
|
|
1612
1609
|
form: ReactNode;
|
|
1613
1610
|
/**
|
|
@@ -1956,7 +1953,7 @@ interface AnnotateMediaRendererProps {
|
|
|
1956
1953
|
selectedMotivation: SelectionMotivation | null;
|
|
1957
1954
|
hoveredAnnotationId?: string | null;
|
|
1958
1955
|
hoverDelayMs?: number;
|
|
1959
|
-
|
|
1956
|
+
sparkleAnnotationIds?: Set<string>;
|
|
1960
1957
|
scrollToAnnotationId?: string | null;
|
|
1961
1958
|
showLineNumbers?: boolean;
|
|
1962
1959
|
enableWidgets?: boolean;
|
|
@@ -1965,7 +1962,7 @@ interface AnnotateMediaRendererProps {
|
|
|
1965
1962
|
}
|
|
1966
1963
|
/** Annotating media dispatch, keyed by the registry render mode. */
|
|
1967
1964
|
type AnnotateMediaRenderers = Partial<Record<string, ComponentType<AnnotateMediaRendererProps>>>;
|
|
1968
|
-
declare function TextAnnotateRenderer({ content, annotations, session,
|
|
1965
|
+
declare function TextAnnotateRenderer({ content, annotations, session, sparkleAnnotationIds, hoveredAnnotationId, scrollToAnnotationId, showLineNumbers, hoverDelayMs, enableWidgets, getTargetResourceName, generatingReferenceId, }: AnnotateMediaRendererProps): React$1.JSX.Element;
|
|
1969
1966
|
declare function ImageAnnotateRenderer({ content, resourceUri, annotations, session, drawingMode, selectedMotivation, hoveredAnnotationId, hoverDelayMs, }: AnnotateMediaRendererProps): React$1.JSX.Element | null;
|
|
1970
1967
|
declare function PdfAnnotateRenderer({ content, resourceUri, annotations, session, drawingMode, selectedMotivation, hoveredAnnotationId, hoverDelayMs, }: AnnotateMediaRendererProps): React$1.JSX.Element | null;
|
|
1971
1968
|
/**
|
|
@@ -1994,7 +1991,7 @@ interface Props$9 {
|
|
|
1994
1991
|
/** Session for the shown resource — its client emits mark:* / mark.request; its bus feeds toolbar + beckon events. */
|
|
1995
1992
|
session: SemiontSession | null;
|
|
1996
1993
|
/** Recently-created annotation ids to sparkle (host-provided; was ResourceAnnotationsContext). */
|
|
1997
|
-
|
|
1994
|
+
sparkleAnnotationIds?: Set<string>;
|
|
1998
1995
|
/** The bar's Mode control reports the chosen mode here (the owner applies it). */
|
|
1999
1996
|
onModeChange?: (mode: boolean) => void;
|
|
2000
1997
|
/** Render the built-in bar (default). false → no bar; selection capture and drawing stay live. */
|
|
@@ -2009,7 +2006,7 @@ interface Props$9 {
|
|
|
2009
2006
|
* @subscribes beckon:hover - Annotation hovered. Payload: { annotationId: string | null }
|
|
2010
2007
|
* @subscribes beckon:focus - Scroll to and highlight annotation, unless `resourceId` names a different resource (D7). Payload: { annotationId: string, resourceId?: string }
|
|
2011
2008
|
*/
|
|
2012
|
-
declare function AnnotateView({ content, mimeType, resourceUri, annotations, uiState, onUIStateChange, enableWidgets, getTargetResourceName, generatingReferenceId, showLineNumbers, hoverDelayMs, annotateMode, session,
|
|
2009
|
+
declare function AnnotateView({ content, mimeType, resourceUri, annotations, uiState, onUIStateChange, enableWidgets, getTargetResourceName, generatingReferenceId, showLineNumbers, hoverDelayMs, annotateMode, session, sparkleAnnotationIds, onModeChange, showToolbar, renderers, }: Props$9): React$1.JSX.Element;
|
|
2013
2010
|
|
|
2014
2011
|
interface Props$8 {
|
|
2015
2012
|
/**
|
|
@@ -2076,7 +2073,7 @@ interface Props$7 {
|
|
|
2076
2073
|
/** Session for the shown resource — emits browse:click / beckon:hover; its bus feeds beckon events. */
|
|
2077
2074
|
session: SemiontSession | null;
|
|
2078
2075
|
/** Recently-created annotation ids to sparkle (host-provided; was ResourceAnnotationsContext). */
|
|
2079
|
-
|
|
2076
|
+
sparkleAnnotationIds?: Set<string>;
|
|
2080
2077
|
/** Override the read-only media renderers (render mode → renderer); merged over the defaults. */
|
|
2081
2078
|
renderers?: BrowseMediaRenderers;
|
|
2082
2079
|
/** A content link (`<a href>` in the rendered content) was clicked. The viewer preventDefaults and
|
|
@@ -2117,7 +2114,7 @@ interface ReferenceHover {
|
|
|
2117
2114
|
* @subscribes beckon:hover - Highlight annotation on hover. Payload: { annotationId: string | null }
|
|
2118
2115
|
* @subscribes beckon:focus - Scroll to and highlight annotation. Payload: { annotationId: string }
|
|
2119
2116
|
*/
|
|
2120
|
-
declare const BrowseView: React$1.MemoExoticComponent<({ content, mimeType, resourceUri, annotations, selectedClick, onModeChange, onClickActionChange, showToolbar, annotateMode, hoverDelayMs, session,
|
|
2117
|
+
declare const BrowseView: React$1.MemoExoticComponent<({ content, mimeType, resourceUri, annotations, selectedClick, onModeChange, onClickActionChange, showToolbar, annotateMode, hoverDelayMs, session, sparkleAnnotationIds, renderers, onLinkClick, onReferenceHover, inline, }: Props$7) => React$1.JSX.Element>;
|
|
2121
2118
|
|
|
2122
2119
|
interface Props$6 {
|
|
2123
2120
|
/** The '@id' of the resource whose bytes to offer. */
|
|
@@ -2198,7 +2195,7 @@ interface Props$4 {
|
|
|
2198
2195
|
/** Inline display variant: auto-height, no inner scroll, no pane chrome (browse path). Default: fill-the-pane. */
|
|
2199
2196
|
inline?: boolean;
|
|
2200
2197
|
/** Recently-created annotation ids to sparkle (threaded to the browse/annotate subtree). */
|
|
2201
|
-
|
|
2198
|
+
sparkleAnnotationIds?: Set<string>;
|
|
2202
2199
|
generatingReferenceId?: string | null;
|
|
2203
2200
|
showLineNumbers?: boolean;
|
|
2204
2201
|
hoverDelayMs?: number;
|
|
@@ -2254,7 +2251,7 @@ interface Props$4 {
|
|
|
2254
2251
|
* the motivation is derived from the annotation the id names, and an id this
|
|
2255
2252
|
* viewer has not loaded is a no-op.
|
|
2256
2253
|
*/
|
|
2257
|
-
declare function ResourceViewer({ resource, annotations, session, onOpenResource, onOpenPanel, onLinkClick, onReferenceHover, inline,
|
|
2254
|
+
declare function ResourceViewer({ resource, annotations, session, onOpenResource, onOpenPanel, onLinkClick, onReferenceHover, inline, sparkleAnnotationIds, generatingReferenceId, showLineNumbers, hoverDelayMs, hoveredAnnotationId: hoveredAnnotationIdProp, annotateMode: annotateModeProp, onAnnotateModeChange, clickAction: clickActionProp, onClickActionChange, selectionMotivation: selectionMotivationProp, onSelectionMotivationChange, shape: shapeProp, onShapeChange, showToolbar, browseRenderers, annotateRenderers, }: Props$4): React__default.JSX.Element;
|
|
2258
2255
|
|
|
2259
2256
|
interface AssessmentEntryProps {
|
|
2260
2257
|
/** Session for interaction routing (browse.click etc.); the panel threads it. */
|
|
@@ -2267,7 +2264,7 @@ interface AssessmentEntryProps {
|
|
|
2267
2264
|
declare function AssessmentEntry({ session, assessment, isFocused, isHovered, ref, }: AssessmentEntryProps): React$1.JSX.Element;
|
|
2268
2265
|
|
|
2269
2266
|
type Motivation$5 = components['schemas']['Motivation'];
|
|
2270
|
-
type JobProgress$
|
|
2267
|
+
type JobProgress$7 = components['schemas']['JobProgress'];
|
|
2271
2268
|
interface PendingAnnotation$5 {
|
|
2272
2269
|
selector: Selector | Selector[];
|
|
2273
2270
|
motivation: Motivation$5;
|
|
@@ -2280,7 +2277,7 @@ interface AssessmentPanelProps {
|
|
|
2280
2277
|
annotations: Annotation[];
|
|
2281
2278
|
pendingAnnotation: PendingAnnotation$5 | null;
|
|
2282
2279
|
isAssisting?: boolean;
|
|
2283
|
-
progress?: JobProgress$
|
|
2280
|
+
progress?: JobProgress$7 | null;
|
|
2284
2281
|
locale?: string;
|
|
2285
2282
|
/** BCP-47 tag of the resource being analyzed — forwarded to the assist call. */
|
|
2286
2283
|
sourceLanguage?: string;
|
|
@@ -2345,7 +2342,7 @@ interface CommentEntryProps {
|
|
|
2345
2342
|
declare function CommentEntry({ session, comment, isFocused, isHovered, annotateMode, ref, }: CommentEntryProps): React$1.JSX.Element;
|
|
2346
2343
|
|
|
2347
2344
|
type Motivation$4 = components['schemas']['Motivation'];
|
|
2348
|
-
type JobProgress$
|
|
2345
|
+
type JobProgress$6 = components['schemas']['JobProgress'];
|
|
2349
2346
|
interface PendingAnnotation$4 {
|
|
2350
2347
|
selector: Selector | Selector[];
|
|
2351
2348
|
motivation: Motivation$4;
|
|
@@ -2359,7 +2356,7 @@ interface CommentsPanelProps {
|
|
|
2359
2356
|
pendingAnnotation: PendingAnnotation$4 | null;
|
|
2360
2357
|
annotateMode?: boolean;
|
|
2361
2358
|
isAssisting?: boolean;
|
|
2362
|
-
progress?: JobProgress$
|
|
2359
|
+
progress?: JobProgress$6 | null;
|
|
2363
2360
|
locale?: string;
|
|
2364
2361
|
/** BCP-47 tag of the resource being analyzed — forwarded to the assist call. */
|
|
2365
2362
|
sourceLanguage?: string;
|
|
@@ -2376,7 +2373,7 @@ interface CommentsPanelProps {
|
|
|
2376
2373
|
*/
|
|
2377
2374
|
declare function CommentsPanel({ session, resourceId, annotations, pendingAnnotation, annotateMode, isAssisting, progress, locale, sourceLanguage, scrollToAnnotationId, onScrollCompleted, hoveredAnnotationId, }: CommentsPanelProps): React$1.JSX.Element;
|
|
2378
2375
|
|
|
2379
|
-
type JobProgress$
|
|
2376
|
+
type JobProgress$5 = components['schemas']['JobProgress'];
|
|
2380
2377
|
interface AssistSectionProps {
|
|
2381
2378
|
/** Session carrying the client and event bus; null renders inert. */
|
|
2382
2379
|
session: SemiontSession | null;
|
|
@@ -2386,7 +2383,7 @@ interface AssistSectionProps {
|
|
|
2386
2383
|
locale?: string;
|
|
2387
2384
|
/** BCP-47 tag of the resource being analyzed. Forwarded to the prompt so the LLM analyzes non-English source correctly. */
|
|
2388
2385
|
sourceLanguage?: string;
|
|
2389
|
-
progress?: JobProgress$
|
|
2386
|
+
progress?: JobProgress$5 | null | undefined;
|
|
2390
2387
|
}
|
|
2391
2388
|
/**
|
|
2392
2389
|
* Assist fields for the text motivations (highlight, assessment, comment):
|
|
@@ -2410,7 +2407,7 @@ interface HighlightEntryProps {
|
|
|
2410
2407
|
declare function HighlightEntry({ session, highlight, isFocused, isHovered, ref, }: HighlightEntryProps): React$1.JSX.Element;
|
|
2411
2408
|
|
|
2412
2409
|
type Motivation$3 = components['schemas']['Motivation'];
|
|
2413
|
-
type JobProgress$
|
|
2410
|
+
type JobProgress$4 = components['schemas']['JobProgress'];
|
|
2414
2411
|
interface PendingAnnotation$3 {
|
|
2415
2412
|
selector: Selector | Selector[];
|
|
2416
2413
|
motivation: Motivation$3;
|
|
@@ -2423,7 +2420,7 @@ interface HighlightPanelProps {
|
|
|
2423
2420
|
annotations: Annotation[];
|
|
2424
2421
|
pendingAnnotation: PendingAnnotation$3 | null;
|
|
2425
2422
|
isAssisting?: boolean;
|
|
2426
|
-
progress?: JobProgress$
|
|
2423
|
+
progress?: JobProgress$4 | null;
|
|
2427
2424
|
annotateMode?: boolean;
|
|
2428
2425
|
scrollToAnnotationId?: string | null;
|
|
2429
2426
|
onScrollCompleted?: () => void;
|
|
@@ -2474,11 +2471,13 @@ interface ReferenceEntryProps {
|
|
|
2474
2471
|
onOpenResource?: (resourceId: string) => void;
|
|
2475
2472
|
annotateMode?: boolean;
|
|
2476
2473
|
isGenerating?: boolean;
|
|
2474
|
+
/** The reference just got attention-worthy (created or resolved) — glow the icon (RESOLUTION-SPARKLE D6). */
|
|
2475
|
+
sparkle?: boolean;
|
|
2477
2476
|
ref?: Ref<HTMLDivElement>;
|
|
2478
2477
|
}
|
|
2479
|
-
declare function ReferenceEntry({ session, reference, isFocused, isHovered, onOpenResource, annotateMode, isGenerating, ref, }: ReferenceEntryProps): React$1.JSX.Element;
|
|
2478
|
+
declare function ReferenceEntry({ session, reference, isFocused, isHovered, onOpenResource, annotateMode, isGenerating, sparkle, ref, }: ReferenceEntryProps): React$1.JSX.Element;
|
|
2480
2479
|
|
|
2481
|
-
type JobProgress$
|
|
2480
|
+
type JobProgress$3 = components['schemas']['JobProgress'];
|
|
2482
2481
|
|
|
2483
2482
|
type Motivation$2 = components['schemas']['Motivation'];
|
|
2484
2483
|
type ReferencedBy = components['schemas']['GetReferencedByResponse']['referencedBy'][number];
|
|
@@ -2495,7 +2494,7 @@ interface Props$1 {
|
|
|
2495
2494
|
resourceId: string;
|
|
2496
2495
|
annotations?: Annotation[];
|
|
2497
2496
|
isAssisting: boolean;
|
|
2498
|
-
progress: JobProgress$
|
|
2497
|
+
progress: JobProgress$3 | null;
|
|
2499
2498
|
annotateMode?: boolean;
|
|
2500
2499
|
Link: React__default.ComponentType<LinkComponentProps>;
|
|
2501
2500
|
routes: RouteBuilder;
|
|
@@ -2523,6 +2522,8 @@ interface Props$1 {
|
|
|
2523
2522
|
scrollToAnnotationId?: string | null;
|
|
2524
2523
|
onScrollCompleted?: () => void;
|
|
2525
2524
|
hoveredAnnotationId?: string | null;
|
|
2525
|
+
/** Annotations currently sparkling (recently created or resolved) — entries in the set glow their icon (RESOLUTION-SPARKLE D6). */
|
|
2526
|
+
sparkleAnnotationIds?: Set<string>;
|
|
2526
2527
|
/** User UI locale — stamped on the unresolved-reference body's `language` field. */
|
|
2527
2528
|
locale?: string;
|
|
2528
2529
|
/** BCP-47 tag of the resource being analyzed — fed into the prompt for source-aware analysis. */
|
|
@@ -2536,9 +2537,10 @@ interface Props$1 {
|
|
|
2536
2537
|
* @emits mark:cancel-pending - Cancel pending reference annotation. Payload: undefined
|
|
2537
2538
|
* @subscribes browse:click - Annotation clicked. Payload: { annotationId: string }
|
|
2538
2539
|
*/
|
|
2539
|
-
declare function ReferencesPanel({ session, onOpenResource, resourceId, annotations, isAssisting, progress, annotateMode, Link, routes, allEntityTypes, entityTypesError, generatingReferenceId, referencedBy, referencedByLoading, referencedByError, onRetryReferencedBy, pendingAnnotation, scrollToAnnotationId, onScrollCompleted, hoveredAnnotationId, locale, sourceLanguage, }: Props$1): React__default.JSX.Element;
|
|
2540
|
+
declare function ReferencesPanel({ session, onOpenResource, resourceId, annotations, isAssisting, progress, annotateMode, Link, routes, allEntityTypes, entityTypesError, generatingReferenceId, referencedBy, referencedByLoading, referencedByError, onRetryReferencedBy, pendingAnnotation, scrollToAnnotationId, onScrollCompleted, hoveredAnnotationId, sparkleAnnotationIds, locale, sourceLanguage, }: Props$1): React__default.JSX.Element;
|
|
2540
2541
|
|
|
2541
2542
|
type Agent = components['schemas']['Agent'];
|
|
2543
|
+
type JobProgress$2 = components['schemas']['JobProgress'];
|
|
2542
2544
|
interface Props {
|
|
2543
2545
|
/** Session carrying the client and event bus; null renders inert. */
|
|
2544
2546
|
session: SemiontSession | null;
|
|
@@ -2560,6 +2562,17 @@ interface Props {
|
|
|
2560
2562
|
* to a verb). Omit to hide the Generate action.
|
|
2561
2563
|
*/
|
|
2562
2564
|
onGenerate?: () => void;
|
|
2565
|
+
/**
|
|
2566
|
+
* Generation lifecycle, page-held (`yield.isGenerating$` / `yield.progress$`
|
|
2567
|
+
* / `yield.outcome$`): this panel is generation's progress surface
|
|
2568
|
+
* (GENERATE-FROM-RESOURCE D7) — the run reports where it was started.
|
|
2569
|
+
*/
|
|
2570
|
+
isGenerating?: boolean;
|
|
2571
|
+
generationProgress?: JobProgress$2 | null;
|
|
2572
|
+
/** The finished run's result; the ended frame links it by name (D8). */
|
|
2573
|
+
generationOutcome?: YieldOutcome | null;
|
|
2574
|
+
/** Clear the finished display — wires `yield.dismissProgress()`. */
|
|
2575
|
+
onDismissProgress?: () => void;
|
|
2563
2576
|
}
|
|
2564
2577
|
/**
|
|
2565
2578
|
* Panel for displaying resource metadata and management actions
|
|
@@ -2568,7 +2581,7 @@ interface Props {
|
|
|
2568
2581
|
* @emits mark:unarchive - Unarchive this resource
|
|
2569
2582
|
* @emits mark:archive - Archive this resource
|
|
2570
2583
|
*/
|
|
2571
|
-
declare function ResourceInfoPanel({ session, resourceId, documentEntityTypes, documentLocale, primaryMediaType, primaryByteSize, storageUri, isArchived, dateCreated, dateModified, wasAttributedTo, wasDerivedFrom, generator, onGenerate, }: Props): React$1.JSX.Element;
|
|
2584
|
+
declare function ResourceInfoPanel({ session, resourceId, documentEntityTypes, documentLocale, primaryMediaType, primaryByteSize, storageUri, isArchived, dateCreated, dateModified, wasAttributedTo, wasDerivedFrom, generator, onGenerate, isGenerating, generationProgress, generationOutcome, onDismissProgress, }: Props): React$1.JSX.Element;
|
|
2572
2585
|
|
|
2573
2586
|
interface StatisticsPanelProps {
|
|
2574
2587
|
highlights: Annotation[];
|
|
@@ -2626,7 +2639,7 @@ declare function TaggingPanel({ session, resourceId, annotations, annotateMode,
|
|
|
2626
2639
|
type JobProgress = components['schemas']['JobProgress'];
|
|
2627
2640
|
|
|
2628
2641
|
type Motivation = components['schemas']['Motivation'];
|
|
2629
|
-
type TabKey = 'statistics' |
|
|
2642
|
+
type TabKey = 'statistics' | AnnotatorKey;
|
|
2630
2643
|
interface PendingAnnotation {
|
|
2631
2644
|
selector: Selector | Selector[];
|
|
2632
2645
|
motivation: Motivation;
|
|
@@ -2666,6 +2679,8 @@ interface UnifiedAnnotationsPanelProps {
|
|
|
2666
2679
|
entityTypesError?: Error | null;
|
|
2667
2680
|
referencedByError?: Error | null;
|
|
2668
2681
|
onRetryReferencedBy?: () => void;
|
|
2682
|
+
/** Annotations currently sparkling (recently created or resolved) — RESOLUTION-SPARKLE D6. */
|
|
2683
|
+
sparkleAnnotationIds?: Set<string>;
|
|
2669
2684
|
resourceId: string;
|
|
2670
2685
|
initialTab?: TabKey;
|
|
2671
2686
|
initialTabGeneration?: number;
|
|
@@ -2904,6 +2919,15 @@ interface GenerationConfig {
|
|
|
2904
2919
|
context: GatheredContext;
|
|
2905
2920
|
}
|
|
2906
2921
|
|
|
2922
|
+
interface ComposeParams$1 {
|
|
2923
|
+
name: string;
|
|
2924
|
+
/** Full file:// URI. */
|
|
2925
|
+
storagePath: string;
|
|
2926
|
+
content: string;
|
|
2927
|
+
entityTypes: string[];
|
|
2928
|
+
language: string;
|
|
2929
|
+
}
|
|
2930
|
+
|
|
2907
2931
|
interface ReferenceWizardModalProps {
|
|
2908
2932
|
/**
|
|
2909
2933
|
* Roster entry serving `generation`, forwarded to ConfigureGenerationStep so
|
|
@@ -2921,6 +2945,12 @@ interface ReferenceWizardModalProps {
|
|
|
2921
2945
|
defaultTitle: string;
|
|
2922
2946
|
/** Entity types from the annotation */
|
|
2923
2947
|
entityTypes: string[];
|
|
2948
|
+
/**
|
|
2949
|
+
* The source resource's display name — a page fact (the wizard opens FROM
|
|
2950
|
+
* that resource), shown in the gather skeleton's source line before the
|
|
2951
|
+
* gathered context can say it itself.
|
|
2952
|
+
*/
|
|
2953
|
+
resourceName?: string;
|
|
2924
2954
|
/** Current locale for generation defaults */
|
|
2925
2955
|
locale: string;
|
|
2926
2956
|
/** Gathered context state */
|
|
@@ -2930,21 +2960,36 @@ interface ReferenceWizardModalProps {
|
|
|
2930
2960
|
/** Callbacks */
|
|
2931
2961
|
onGenerateSubmit: (referenceId: string, config: GenerationConfig) => void;
|
|
2932
2962
|
onLinkResource: (referenceId: string, targetResourceId: string) => void;
|
|
2933
|
-
|
|
2963
|
+
/**
|
|
2964
|
+
* Create-and-link (COMPOSE-IN-MODAL): the host runs `yield.resource` then
|
|
2965
|
+
* `bind.body` and settles the promise; rejection keeps the modal open with
|
|
2966
|
+
* the compose footer re-enabled. Replaces the old navigate-to-page flow.
|
|
2967
|
+
*/
|
|
2968
|
+
onComposeSubmit: (referenceId: string, params: ComposeParams$1) => Promise<void>;
|
|
2969
|
+
/** Picker vocabulary for compose when the reference fixed no entity types. */
|
|
2970
|
+
entityTypeOptions?: string[];
|
|
2971
|
+
/** Editor hover delay for the compose step's CodeMirror. */
|
|
2972
|
+
hoverDelayMs?: number;
|
|
2934
2973
|
/** Translation strings */
|
|
2935
2974
|
translations: {
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
searchResultsTitle: string;
|
|
2975
|
+
/** The ONE title, all steps — the flow is resolving a reference; the
|
|
2976
|
+
strategy band below says where in it you are. */
|
|
2977
|
+
resolveTitle: string;
|
|
2940
2978
|
sourceContextLabel: string;
|
|
2941
2979
|
connectionsLabel: string;
|
|
2942
2980
|
citedByLabel: string;
|
|
2981
|
+
graphPaneTitle: string;
|
|
2982
|
+
graphEmpty: string;
|
|
2983
|
+
resourceLinkLabel: string;
|
|
2984
|
+
corpusPaneTitle: string;
|
|
2985
|
+
corpusEmpty: string;
|
|
2986
|
+
excludedReceipt: string;
|
|
2987
|
+
machineRead: string;
|
|
2943
2988
|
userHintLabel: string;
|
|
2989
|
+
userHintEffect: string;
|
|
2944
2990
|
userHintPlaceholder: string;
|
|
2945
2991
|
loadingContext: string;
|
|
2946
2992
|
failedContext: string;
|
|
2947
|
-
cancel: string;
|
|
2948
2993
|
search: string;
|
|
2949
2994
|
searching: string;
|
|
2950
2995
|
generate: string;
|
|
@@ -2956,6 +3001,7 @@ interface ReferenceWizardModalProps {
|
|
|
2956
3001
|
noResults: string;
|
|
2957
3002
|
resourceTitle: string;
|
|
2958
3003
|
resourceTitlePlaceholder: string;
|
|
3004
|
+
saveLocation: string;
|
|
2959
3005
|
additionalInstructions: string;
|
|
2960
3006
|
additionalInstructionsPlaceholder: string;
|
|
2961
3007
|
language: string;
|
|
@@ -2969,38 +3015,47 @@ interface ReferenceWizardModalProps {
|
|
|
2969
3015
|
maxResults: string;
|
|
2970
3016
|
semanticScoring: string;
|
|
2971
3017
|
semanticScoringHelp: string;
|
|
3018
|
+
searchFailed: string;
|
|
3019
|
+
entityTypes: string;
|
|
3020
|
+
contentLabel: string;
|
|
3021
|
+
createAndLink: string;
|
|
3022
|
+
creatingAndLinking: string;
|
|
3023
|
+
discardDraftPrompt: string;
|
|
3024
|
+
discardDraft: string;
|
|
3025
|
+
keepEditing: string;
|
|
2972
3026
|
};
|
|
2973
3027
|
}
|
|
2974
|
-
declare function ReferenceWizardModal({ isOpen, onClose, annotationId, resourceId, defaultTitle, entityTypes, locale, context, contextLoading, contextError, onGenerateSubmit, onLinkResource,
|
|
2975
|
-
|
|
2976
|
-
interface ResourceGatherConfig {
|
|
2977
|
-
depth: number;
|
|
2978
|
-
maxResources: number;
|
|
2979
|
-
includeContent: boolean;
|
|
2980
|
-
includeSummary: boolean;
|
|
2981
|
-
}
|
|
3028
|
+
declare function ReferenceWizardModal({ isOpen, onClose, annotationId, resourceId, defaultTitle, entityTypes, resourceName, locale, context, contextLoading, contextError, onGenerateSubmit, onLinkResource, onComposeSubmit, entityTypeOptions, hoverDelayMs, translations: t, generationAgent, }: ReferenceWizardModalProps): React$1.JSX.Element;
|
|
2982
3029
|
|
|
2983
3030
|
interface ResourceGenerateModalTranslations {
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
configureTitle: string;
|
|
2987
|
-
next: string;
|
|
2988
|
-
back: string;
|
|
2989
|
-
cancel: string;
|
|
3031
|
+
/** The ONE modal title — names the flow, not a step. */
|
|
3032
|
+
title: string;
|
|
2990
3033
|
gatherIntro: string;
|
|
2991
3034
|
includeContent: string;
|
|
2992
3035
|
includeSummary: string;
|
|
2993
3036
|
gatherDepth: string;
|
|
2994
3037
|
gatherMaxResources: string;
|
|
2995
3038
|
gatherButton: string;
|
|
2996
|
-
|
|
3039
|
+
/** Labels the recall chips: every type included until deselected. */
|
|
3040
|
+
recallLabel: string;
|
|
3041
|
+
/** Affordance on the post-gather receipt row (title/tooltip). */
|
|
3042
|
+
editGather: string;
|
|
2997
3043
|
loadingContext: string;
|
|
2998
3044
|
failedContext: string;
|
|
2999
3045
|
sourceContextLabel: string;
|
|
3000
3046
|
connectionsLabel: string;
|
|
3001
3047
|
citedByLabel: string;
|
|
3048
|
+
graphPaneTitle: string;
|
|
3049
|
+
graphEmpty: string;
|
|
3050
|
+
resourceLinkLabel: string;
|
|
3051
|
+
corpusPaneTitle: string;
|
|
3052
|
+
corpusEmpty: string;
|
|
3053
|
+
excludedReceipt: string;
|
|
3054
|
+
machineRead: string;
|
|
3055
|
+
score: string;
|
|
3002
3056
|
resourceTitle: string;
|
|
3003
3057
|
resourceTitlePlaceholder: string;
|
|
3058
|
+
saveLocation: string;
|
|
3004
3059
|
additionalInstructions: string;
|
|
3005
3060
|
additionalInstructionsPlaceholder: string;
|
|
3006
3061
|
language: string;
|
|
@@ -3012,6 +3067,9 @@ interface ResourceGenerateModalTranslations {
|
|
|
3012
3067
|
maxLengthHelp: string;
|
|
3013
3068
|
maxLengthCeiling: string;
|
|
3014
3069
|
generate: string;
|
|
3070
|
+
discardDraftPrompt: string;
|
|
3071
|
+
discardDraft: string;
|
|
3072
|
+
keepEditing: string;
|
|
3015
3073
|
}
|
|
3016
3074
|
interface ResourceGenerateModalProps {
|
|
3017
3075
|
/**
|
|
@@ -3025,7 +3083,6 @@ interface ResourceGenerateModalProps {
|
|
|
3025
3083
|
resourceId: string;
|
|
3026
3084
|
defaultTitle: string;
|
|
3027
3085
|
locale: string;
|
|
3028
|
-
gatherDefaults?: Partial<ResourceGatherConfig>;
|
|
3029
3086
|
/**
|
|
3030
3087
|
* Entity types offered in the exclusion picker. Owner-supplied so the
|
|
3031
3088
|
* modal cannot present a failed load as an empty vocabulary.
|
|
@@ -3037,14 +3094,35 @@ interface ResourceGenerateModalProps {
|
|
|
3037
3094
|
* annotation wizard delegates generation to its parent.
|
|
3038
3095
|
*/
|
|
3039
3096
|
onGenerateSubmit: (resourceId: string, config: GenerationConfig) => void;
|
|
3097
|
+
/**
|
|
3098
|
+
* Resource-gather state, verbatim from the SDK's gather unit slots
|
|
3099
|
+
* (`gather.resourceContext$` / `resourceLoading$` / `resourceError$`) — the
|
|
3100
|
+
* page reads the observables and threads them here, the same shape the
|
|
3101
|
+
* reference wizard has always had (FLOW-LIFECYCLE-CONVERGENCE D3/A6). The
|
|
3102
|
+
* modal renders this state; it never owns it.
|
|
3103
|
+
*/
|
|
3104
|
+
gatherContext: GatheredContext | null;
|
|
3105
|
+
gatherLoading: boolean;
|
|
3106
|
+
gatherError: Error | null;
|
|
3107
|
+
/**
|
|
3108
|
+
* Run the gather — the page wires `gather.gatherResource(resourceId, …)`.
|
|
3109
|
+
* No resourceId in the payload: the owner already holds it. `gatherResource`
|
|
3110
|
+
* clears its slots at start, so no reset threading is needed.
|
|
3111
|
+
*/
|
|
3112
|
+
onGather: (options: ResourceGatherOptions) => void;
|
|
3040
3113
|
translations: ResourceGenerateModalTranslations;
|
|
3041
3114
|
}
|
|
3042
3115
|
/**
|
|
3043
|
-
* Resource-generate flow (GENERATE-FROM-BUTTON
|
|
3044
|
-
*
|
|
3045
|
-
*
|
|
3116
|
+
* Resource-generate flow (GENERATE-FROM-BUTTON, folded by GATHER-AT-THE-TOP):
|
|
3117
|
+
* one composite stack in a single scroll pane — the gather controls at the
|
|
3118
|
+
* top, the gathered `GatheredContext` below them once gather fires, and the
|
|
3119
|
+
* generation params beneath the evidence once context arrives. Re-gathering
|
|
3120
|
+
* is scroll-up → tweak → Gather; `gatherResource` clears its slots at start,
|
|
3121
|
+
* so the evidence refreshes in place. [gather zone] → [evidence] → [act
|
|
3122
|
+
* zone]: the same grammar the resolve wizard expresses, whose gather zone
|
|
3123
|
+
* happens to be automatic and whose act zone has a strategy choice.
|
|
3046
3124
|
*/
|
|
3047
|
-
declare function ResourceGenerateModal({ isOpen, onClose, resourceId, defaultTitle, locale,
|
|
3125
|
+
declare function ResourceGenerateModal({ isOpen, onClose, resourceId, defaultTitle, locale, entityTypeOptions, onGenerateSubmit, gatherContext, gatherLoading, gatherError, onGather, translations: t, generationAgent, }: ResourceGenerateModalProps): React$1.JSX.Element;
|
|
3048
3126
|
|
|
3049
3127
|
interface SearchModalProps$1 {
|
|
3050
3128
|
isOpen: boolean;
|
|
@@ -3064,21 +3142,6 @@ interface SearchModalProps$1 {
|
|
|
3064
3142
|
}
|
|
3065
3143
|
declare function SearchModal({ isOpen, onClose, onNavigate, translations }: SearchModalProps$1): React__default.JSX.Element;
|
|
3066
3144
|
|
|
3067
|
-
interface ResourceSearchModalProps$1 {
|
|
3068
|
-
isOpen: boolean;
|
|
3069
|
-
onClose: () => void;
|
|
3070
|
-
onSelect: (resourceId: string) => void;
|
|
3071
|
-
searchTerm?: string;
|
|
3072
|
-
translations?: {
|
|
3073
|
-
title?: string;
|
|
3074
|
-
placeholder?: string;
|
|
3075
|
-
searching?: string;
|
|
3076
|
-
noResults?: string;
|
|
3077
|
-
close?: string;
|
|
3078
|
-
};
|
|
3079
|
-
}
|
|
3080
|
-
declare function ResourceSearchModal({ isOpen, onClose, onSelect, searchTerm, translations }: ResourceSearchModalProps$1): React$1.JSX.Element;
|
|
3081
|
-
|
|
3082
3145
|
/**
|
|
3083
3146
|
* Base modal props that all modals share
|
|
3084
3147
|
*/
|
|
@@ -3112,22 +3175,6 @@ interface SearchModalProps extends BaseModalProps, NavigableModalProps {
|
|
|
3112
3175
|
close?: string;
|
|
3113
3176
|
};
|
|
3114
3177
|
}
|
|
3115
|
-
/**
|
|
3116
|
-
* Resource search modal props
|
|
3117
|
-
*/
|
|
3118
|
-
interface ResourceSearchModalProps extends BaseModalProps {
|
|
3119
|
-
/** Callback when a resource is selected */
|
|
3120
|
-
onSelect: (resourceId: string) => void;
|
|
3121
|
-
/** Initial search term */
|
|
3122
|
-
searchTerm?: string;
|
|
3123
|
-
/** Optional translation support */
|
|
3124
|
-
translations?: {
|
|
3125
|
-
title?: string;
|
|
3126
|
-
placeholder?: string;
|
|
3127
|
-
searching?: string;
|
|
3128
|
-
noResults?: string;
|
|
3129
|
-
};
|
|
3130
|
-
}
|
|
3131
3178
|
|
|
3132
3179
|
/**
|
|
3133
3180
|
* Skip links for keyboard navigation accessibility
|
|
@@ -3578,7 +3625,7 @@ interface ShellStateUnit extends StateUnit {
|
|
|
3578
3625
|
activePanel$: Observable<ToolbarPanelType | null>;
|
|
3579
3626
|
scrollToAnnotationId$: Observable<string | null>;
|
|
3580
3627
|
panelInitialTab$: Observable<{
|
|
3581
|
-
tab:
|
|
3628
|
+
tab: AnnotatorKey;
|
|
3582
3629
|
generation: number;
|
|
3583
3630
|
} | null>;
|
|
3584
3631
|
openPanel(panel: string): void;
|
|
@@ -4198,26 +4245,15 @@ interface ListState<T> {
|
|
|
4198
4245
|
retry(): void;
|
|
4199
4246
|
}
|
|
4200
4247
|
|
|
4201
|
-
type ComposeMode = 'new' | 'clone'
|
|
4248
|
+
type ComposeMode = 'new' | 'clone';
|
|
4202
4249
|
interface ComposeParams {
|
|
4203
4250
|
mode?: string | undefined;
|
|
4204
4251
|
token?: string | undefined;
|
|
4205
|
-
annotationUri?: string | undefined;
|
|
4206
|
-
sourceDocumentId?: string | undefined;
|
|
4207
|
-
name?: string | undefined;
|
|
4208
|
-
entityTypes?: string | undefined;
|
|
4209
|
-
storedContext?: string | undefined;
|
|
4210
4252
|
}
|
|
4211
4253
|
interface CloneData {
|
|
4212
4254
|
sourceResource: ResourceDescriptor;
|
|
4213
4255
|
sourceContent: string;
|
|
4214
4256
|
}
|
|
4215
|
-
interface ReferenceData {
|
|
4216
|
-
annotationUri: string;
|
|
4217
|
-
sourceDocumentId: string;
|
|
4218
|
-
name: string;
|
|
4219
|
-
entityTypes: string[];
|
|
4220
|
-
}
|
|
4221
4257
|
interface SaveResourceParams$1 {
|
|
4222
4258
|
mode: ComposeMode;
|
|
4223
4259
|
name: string;
|
|
@@ -4229,16 +4265,12 @@ interface SaveResourceParams$1 {
|
|
|
4229
4265
|
entityTypes?: string[];
|
|
4230
4266
|
language: string;
|
|
4231
4267
|
archiveOriginal?: boolean;
|
|
4232
|
-
annotationUri?: string;
|
|
4233
|
-
sourceDocumentId?: string;
|
|
4234
4268
|
}
|
|
4235
4269
|
interface ComposePageStateUnit extends StateUnit {
|
|
4236
4270
|
browse: ShellStateUnit;
|
|
4237
4271
|
mode$: Observable<ComposeMode>;
|
|
4238
4272
|
loading$: Observable<boolean>;
|
|
4239
4273
|
cloneData$: Observable<CloneData | null>;
|
|
4240
|
-
referenceData$: Observable<ReferenceData | null>;
|
|
4241
|
-
gatheredContext$: Observable<GatheredContext | null>;
|
|
4242
4274
|
entityTypes: ListState<string[]>;
|
|
4243
4275
|
/**
|
|
4244
4276
|
* Live upload-progress for the in-flight `save(...)` call. Emits the
|
|
@@ -4255,15 +4287,14 @@ declare function createComposePageStateUnit(session: SemiontSession, browse: She
|
|
|
4255
4287
|
* ResourceComposePage Component
|
|
4256
4288
|
*
|
|
4257
4289
|
* Pure React component for creating and editing resources.
|
|
4258
|
-
* Supports
|
|
4290
|
+
* Supports two modes: new resource and clone. (Reference completion moved
|
|
4291
|
+
* into the resolve wizard — COMPOSE-IN-MODAL.)
|
|
4259
4292
|
* All dependencies passed as props - no Next.js hooks!
|
|
4260
4293
|
*/
|
|
4261
4294
|
|
|
4262
4295
|
interface ResourceComposePageProps {
|
|
4263
|
-
mode: 'new' | 'clone'
|
|
4296
|
+
mode: 'new' | 'clone';
|
|
4264
4297
|
cloneData?: CloneData | null;
|
|
4265
|
-
referenceData?: ReferenceData | null;
|
|
4266
|
-
gatheredContext?: GatheredContext | null;
|
|
4267
4298
|
availableEntityTypes: string[];
|
|
4268
4299
|
initialLocale: string;
|
|
4269
4300
|
theme: 'light' | 'dark';
|
|
@@ -4281,10 +4312,7 @@ interface ResourceComposePageProps {
|
|
|
4281
4312
|
translations: {
|
|
4282
4313
|
title: string;
|
|
4283
4314
|
titleEditClone: string;
|
|
4284
|
-
titleCompleteReference: string;
|
|
4285
4315
|
subtitleClone: string;
|
|
4286
|
-
subtitleReference: string;
|
|
4287
|
-
linkedNoticePrefix: string;
|
|
4288
4316
|
resourceName: string;
|
|
4289
4317
|
resourceNamePlaceholder: string;
|
|
4290
4318
|
entityTypes: string;
|
|
@@ -4306,16 +4334,14 @@ interface ResourceComposePageProps {
|
|
|
4306
4334
|
cancel: string;
|
|
4307
4335
|
saving: string;
|
|
4308
4336
|
creating: string;
|
|
4309
|
-
creatingAndLinking: string;
|
|
4310
4337
|
saveClonedResource: string;
|
|
4311
|
-
createAndLinkResource: string;
|
|
4312
4338
|
createResource: string;
|
|
4313
4339
|
};
|
|
4314
4340
|
ToolbarPanels: React__default.ComponentType<any>;
|
|
4315
4341
|
Toolbar: React__default.ComponentType<any>;
|
|
4316
4342
|
}
|
|
4317
4343
|
interface SaveResourceParams {
|
|
4318
|
-
mode: 'new' | 'clone'
|
|
4344
|
+
mode: 'new' | 'clone';
|
|
4319
4345
|
name: string;
|
|
4320
4346
|
storageUri: string;
|
|
4321
4347
|
content?: string;
|
|
@@ -4325,10 +4351,8 @@ interface SaveResourceParams {
|
|
|
4325
4351
|
entityTypes?: string[];
|
|
4326
4352
|
language: string;
|
|
4327
4353
|
archiveOriginal?: boolean;
|
|
4328
|
-
annotationUri?: string;
|
|
4329
|
-
sourceDocumentId?: string;
|
|
4330
4354
|
}
|
|
4331
|
-
declare function ResourceComposePage({ mode, cloneData,
|
|
4355
|
+
declare function ResourceComposePage({ mode, cloneData, availableEntityTypes, initialLocale, theme, hoverDelayMs, activePanel, onSaveResource, onCancel, uploadProgress, translations: t, ToolbarPanels, Toolbar, }: ResourceComposePageProps): React__default.JSX.Element;
|
|
4332
4356
|
|
|
4333
4357
|
/**
|
|
4334
4358
|
* Inline upload-progress affordance for the compose page.
|
|
@@ -4499,6 +4523,7 @@ interface ResourceViewerPageProps {
|
|
|
4499
4523
|
* @subscribes yield:clone - Clone the current resource
|
|
4500
4524
|
* @subscribes beckon:sparkle - Trigger sparkle animation
|
|
4501
4525
|
* @subscribes mark:added - Annotation was created (sparkle)
|
|
4526
|
+
* @subscribes mark:body-updated - Reference resolved via a linking-add operation (sparkle, both loci)
|
|
4502
4527
|
* @subscribes browse:resource-open - Open a resource in the viewer (local links + the launcher's tour verbs)
|
|
4503
4528
|
* @subscribes browse:entity-type-clicked - Navigate filtered by entity type
|
|
4504
4529
|
*
|
|
@@ -4684,5 +4709,5 @@ declare function useShellStateUnit(): ShellStateUnit;
|
|
|
4684
4709
|
*/
|
|
4685
4710
|
declare function useObservable<T>(obs$: Observable<T> | null | undefined): T | undefined;
|
|
4686
4711
|
|
|
4687
|
-
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, DownloadFileLink, EntityTagsPage, EntityTypeBadges, ErrorBoundary, ExportCard, Footer, HighlightEntry, HighlightPanel, HistoryEvent, ImageAnnotateRenderer, ImageBrowseRenderer, ImageURLSchema, ImageViewer, ImportCard, ImportProgress, JsonLdPanel, JsonLdView, KeyboardShortcutsHelpModal, LeftSidebar, LineNumbersProvider, LinkedDataPage, LiveRegionProvider, NavigationMenu, OAuthUserSchema, ObservableLink, PageLayout, PanelHeader, PdfAnnotateRenderer, PdfBrowseRenderer, PermissionDeniedModal, PopupContainer, PopupHeader, ProtectedErrorBoundary, RESOURCE_PANELS, RecentDocumentsPage, ReferenceEntry, ReferenceResolutionWidget, ReferenceWizardModal, ReferencesPanel, ResizeHandle, ResourceAnnotationsProvider, ResourceCard, ResourceComposePage, ResourceDiscoveryPage, ResourceErrorState, ResourceGenerateModal, ResourceInfoPanel, ResourceLoadingState,
|
|
4688
|
-
export type { AdminDevOpsPageProps, AdminExchangePageProps, AdminExchangePageTranslations, AdminSecurityPageProps, AdminSecurityStateUnit, AdminUser, AdminUserStats, AdminUsersPageProps, AdminUsersStateUnit, AnnotateMediaRendererProps, AnnotateMediaRenderers, AnnotationConfig, AnnotationCreationHandler, AnnotationGroups, AnnotationHandlers, AnnotationManager, AnnotationProviderProps, AnnotationUIState, AnnotationsCollection, Annotator, AnnotatorKey, AssistDataType, 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,
|
|
4712
|
+
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, DownloadFileLink, EntityTagsPage, EntityTypeBadges, ErrorBoundary, ExportCard, Footer, HighlightEntry, HighlightPanel, HistoryEvent, ImageAnnotateRenderer, ImageBrowseRenderer, ImageURLSchema, ImageViewer, ImportCard, ImportProgress, JsonLdPanel, JsonLdView, KeyboardShortcutsHelpModal, LeftSidebar, LineNumbersProvider, LinkedDataPage, LiveRegionProvider, NavigationMenu, OAuthUserSchema, ObservableLink, PageLayout, PanelHeader, PdfAnnotateRenderer, PdfBrowseRenderer, PermissionDeniedModal, PopupContainer, PopupHeader, ProtectedErrorBoundary, RESOURCE_PANELS, RecentDocumentsPage, ReferenceEntry, ReferenceResolutionWidget, ReferenceWizardModal, ReferencesPanel, ResizeHandle, ResourceAnnotationsProvider, ResourceCard, ResourceComposePage, ResourceDiscoveryPage, ResourceErrorState, ResourceGenerateModal, ResourceInfoPanel, ResourceLoadingState, ResourceTagsInline, ResourceViewer, ResourceViewerPage, SearchModal, SelectedTextDisplay, SemiontBranding, SemiontFavicon, SemiontProvider, SessionExpiredModal, SessionExpiryBanner, SessionTimer, SettingsPanel, SignInForm, SignUpForm, SimpleNavigation, SkipLinks, SortableResourceTab, StatisticsPanel, StatusDisplay, SvgDrawingCanvas, TagEntry, TagSchemasPage, TaggingPanel, TextAnnotateRenderer, 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, defaultAnnotateRenderers, defaultBrowseRenderers, faviconPaths, formatTime, generateCSSVariables, getResourceIcon, getSelectedShapeForSelectorType, getSelectorType, getShortcutDisplay, getSupportedShapes, hideWidgetPreview, isShapeSupported, jsonLightHighlightStyle, jsonLightTheme, mediaUrl, resolveAnnotationRanges, sanitizeImageURL, saveSelectedShapeForSelectorType, setPdfWorkerSrc, showWidgetPreview, supportsDetection, toOverlayAnnotations, tokens, useAnnotationManager, useCollaborators, 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, useResourceLoader, useResourceLoadingAnnouncements, useRovingTabIndex, useSearchAnnouncements, useSemiont, useSessionEventSubscriptions, useSessionExpiry, useSessionStateUnit, useShellStateUnit, useStateUnit, useTheme, useToast, useToolbarPrefs, useTranslations };
|
|
4713
|
+
export type { AdminDevOpsPageProps, AdminExchangePageProps, AdminExchangePageTranslations, AdminSecurityPageProps, AdminSecurityStateUnit, AdminUser, AdminUserStats, AdminUsersPageProps, AdminUsersStateUnit, AnnotateMediaRendererProps, AnnotateMediaRenderers, AnnotationConfig, AnnotationCreationHandler, AnnotationGroups, AnnotationHandlers, AnnotationManager, AnnotationProviderProps, AnnotationUIState, AnnotationsCollection, Annotator, AnnotatorKey, AssistDataType, 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, ReferenceHover, ReferenceWizardModalProps, ResolvedTheme, ResourceCardProps, ResourceComposePageProps, ResourceDiscoveryPageProps, ResourceErrorStateProps, ResourceGenerateModalProps, ResourceGenerateModalTranslations, ResourceLoaderStateUnit, 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, UseCollaboratorsResult, UseMediaTokenResult, UseResourceContentResult, UseResourceLoaderResult, WelcomePageProps, WelcomeStateUnit, WizardState };
|