react-iiif-vault 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +129 -13
- package/dist/bundle.global.js +30 -28
- package/dist/canvas-panel.cjs +7 -7
- package/dist/canvas-panel.d.cts +2 -3
- package/dist/canvas-panel.d.ts +2 -3
- package/dist/canvas-panel.js +1 -1
- package/dist/chunk-LXMMN7PH.js +48 -0
- package/dist/chunk-PCXRCBVF.js +1 -0
- package/dist/{index-BAYQ0qVx.d.cts → index-Cs7EchlV.d.cts} +5 -5
- package/dist/{index-CnXzAuQK.d.ts → index-DZK6q9iO.d.ts} +5 -5
- package/dist/index.cjs +9 -9
- package/dist/index.d.cts +124 -15
- package/dist/index.d.ts +124 -15
- package/dist/index.js +1 -1
- package/dist/{useRenderingStrategy-DkjxMKJV.d.cts → useRenderingStrategy-B03X9rQS.d.cts} +7 -1
- package/dist/{useRenderingStrategy-DkjxMKJV.d.ts → useRenderingStrategy-B03X9rQS.d.ts} +7 -1
- package/dist/utils.cjs +1 -1
- package/dist/utils.d.cts +1 -1
- package/dist/utils.d.ts +1 -1
- package/dist/utils.js +1 -1
- package/package.json +4 -5
- package/dist/chunk-7KUFVAUD.js +0 -48
- package/dist/chunk-CCTBCLBV.js +0 -1
package/dist/bundle.d.ts
CHANGED
|
@@ -2,22 +2,23 @@ import * as React$1 from 'react';
|
|
|
2
2
|
import React__default, { ReactNode, FC, ComponentType, RefObject, ForwardRefExoticComponent, RefAttributes, FunctionComponent, Context } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { AtlasProps, Preset, BoxStyle, ViewerMode } from '@atlas-viewer/atlas';
|
|
5
|
-
import { AnnotationPage, ImageService, ExternalWebResource, InternationalString, Reference, ImageSize, AuthProbeService2, Auth2LocationResource, Auth2SubstituteResource, AuthAccessService2, AuthAccessTokenService2, AuthAccessToken2, SearchServiceQueryParams, SearchServiceSearchResponse, SearchService as SearchService$1, SearchServiceAutocomplete, ContentResource, W3CAnnotationTarget, PointSelector, Annotation } from '@iiif/presentation-3';
|
|
5
|
+
import { AnnotationPage, ImageService as ImageService$1, ExternalWebResource, InternationalString, Reference, ImageSize, AuthProbeService2, Auth2LocationResource, Auth2SubstituteResource, AuthAccessService2, AuthAccessTokenService2, AuthAccessToken2, SearchServiceQueryParams, SearchServiceSearchResponse, SearchService as SearchService$1, SearchServiceAutocomplete, ContentResource, W3CAnnotationTarget, PointSelector, Annotation } from '@iiif/presentation-3';
|
|
6
6
|
import { AnnotationPageNormalized, CanvasNormalized, AnnotationNormalized, CollectionNormalized, ManifestNormalized, RangeNormalized } from '@iiif/presentation-3-normalized';
|
|
7
7
|
import * as _iiif_helpers from '@iiif/helpers';
|
|
8
|
-
import { ChoiceDescription, Paintables, SupportedTarget, ComplexChoice, BoxSelector as BoxSelector$1, TemporalBoxSelector as TemporalBoxSelector$1, Vault as Vault$1 } from '@iiif/helpers';
|
|
8
|
+
import { ChoiceDescription, Paintables, SupportedTarget, ComplexChoice, ImageCandidate, BoxSelector as BoxSelector$1, TemporalBoxSelector as TemporalBoxSelector$1, Vault as Vault$1 } from '@iiif/helpers';
|
|
9
9
|
import { BoxSelector, TemporalBoxSelector, TemporalSelector } from '@iiif/helpers/annotation-targets';
|
|
10
10
|
export * from '@iiif/helpers/annotation-targets';
|
|
11
11
|
import * as mitt from 'mitt';
|
|
12
12
|
import { Emitter, EventType, Handler } from 'mitt';
|
|
13
|
-
import { ImageCandidate, RegionParameter, RotationParameter, SizeParameter, ImageServiceLoader, ImageCandidateRequest } from '@atlas-viewer/iiif-image-api';
|
|
14
13
|
import { Vault, VaultOptions, NormalizedEntity, IIIFStore } from '@iiif/helpers/vault';
|
|
14
|
+
import { RegionParameter, RotationParameter, SizeParameter } from '@iiif/parser/image-3';
|
|
15
15
|
import * as polygon_editor from 'polygon-editor';
|
|
16
16
|
import { RenderState, InputShape, SlowState } from 'polygon-editor';
|
|
17
17
|
import * as zustand_vanilla from 'zustand/vanilla';
|
|
18
18
|
import { StoreApi } from 'zustand/vanilla';
|
|
19
19
|
import * as zustand from 'zustand';
|
|
20
20
|
import { StoreApi as StoreApi$1 } from 'zustand';
|
|
21
|
+
import { ImageServiceLoader, ImageCandidateRequest, ImageCandidate as ImageCandidate$1 } from '@iiif/helpers/image-service';
|
|
21
22
|
import * as _iiif_helpers_painting_annotations from '@iiif/helpers/painting-annotations';
|
|
22
23
|
import { Paintables as Paintables$1 } from '@iiif/helpers/painting-annotations';
|
|
23
24
|
import { VaultZustandStore } from '@iiif/helpers/vault/store';
|
|
@@ -53,7 +54,7 @@ type ImageWithOptionalService = {
|
|
|
53
54
|
id: string;
|
|
54
55
|
annotationId: string;
|
|
55
56
|
type: 'Image';
|
|
56
|
-
service?: ImageService;
|
|
57
|
+
service?: ImageService$1;
|
|
57
58
|
width?: number;
|
|
58
59
|
height?: number;
|
|
59
60
|
sizes?: Array<{
|
|
@@ -114,8 +115,14 @@ type AnnotationPageDescription = {
|
|
|
114
115
|
type ImageServiceLoaderType = (imageService: any | undefined, { height, width }: {
|
|
115
116
|
height: number;
|
|
116
117
|
width: number;
|
|
117
|
-
}) => ImageService | undefined;
|
|
118
|
-
declare function useLoadImageService(): readonly [ImageServiceLoaderType, Record<string,
|
|
118
|
+
}) => ImageService$1 | undefined;
|
|
119
|
+
declare function useLoadImageService(): readonly [ImageServiceLoaderType, Record<string, {
|
|
120
|
+
status: "error" | "loading" | "done";
|
|
121
|
+
service: ImageService$1 | null;
|
|
122
|
+
error?: boolean | undefined;
|
|
123
|
+
errorMesage?: string | undefined;
|
|
124
|
+
real?: boolean | undefined;
|
|
125
|
+
}>];
|
|
119
126
|
|
|
120
127
|
type SingleImageStrategy = {
|
|
121
128
|
type: 'images';
|
|
@@ -271,6 +278,7 @@ type CanvasProps = {
|
|
|
271
278
|
viewControlsDeps?: any[];
|
|
272
279
|
renderMediaControls?: (strategy: MediaStrategy) => ReactNode;
|
|
273
280
|
renderComplexTimelineControls?: (strategy: ComplexTimelineStrategy) => ReactNode;
|
|
281
|
+
complexTimelineControlsDeps?: any[];
|
|
274
282
|
mediaControlsDeps?: any[];
|
|
275
283
|
strategies?: Array<RenderingStrategy['type']>;
|
|
276
284
|
backgroundStyle?: BoxStyle;
|
|
@@ -285,7 +293,7 @@ type CanvasProps = {
|
|
|
285
293
|
Audio?: React__default.ComponentType<AudioComponentProps>;
|
|
286
294
|
};
|
|
287
295
|
};
|
|
288
|
-
declare function RenderCanvas({ x, y, onChoiceChange, registerActions, defaultChoices, isStatic, renderViewerControls, renderMediaControls, renderComplexTimelineControls, viewControlsDeps, mediaControlsDeps, strategies, throwOnUnknown, backgroundStyle, alwaysShowBackground, keepCanvasScale, enableSizes, enableYouTube, onClickPaintingAnnotation, components, children, }: CanvasProps): react_jsx_runtime.JSX.Element
|
|
296
|
+
declare function RenderCanvas({ x, y, onChoiceChange, registerActions, defaultChoices, isStatic, renderViewerControls, renderMediaControls, renderComplexTimelineControls, complexTimelineControlsDeps, viewControlsDeps, mediaControlsDeps, strategies, throwOnUnknown, backgroundStyle, alwaysShowBackground, keepCanvasScale, enableSizes, enableYouTube, onClickPaintingAnnotation, components, children, }: CanvasProps): react_jsx_runtime.JSX.Element;
|
|
289
297
|
|
|
290
298
|
declare function RenderImage({ id, image, thumbnail, isStatic, x, y, children, selector, onClick, enableSizes, }: {
|
|
291
299
|
id: string;
|
|
@@ -399,6 +407,81 @@ type CanvasPanelType = ForwardRefExoticComponent<CanvasPanelProps & RefAttribute
|
|
|
399
407
|
};
|
|
400
408
|
declare const CanvasPanel: CanvasPanelType;
|
|
401
409
|
|
|
410
|
+
interface CanvasStrategyProviderProps {
|
|
411
|
+
onChoiceChange?: (choice?: ChoiceDescription) => void;
|
|
412
|
+
strategies?: Array<RenderingStrategy['type']>;
|
|
413
|
+
registerActions?: (actions: StrategyActions) => void;
|
|
414
|
+
defaultChoices?: Array<{
|
|
415
|
+
id: string;
|
|
416
|
+
opacity?: number;
|
|
417
|
+
}>;
|
|
418
|
+
children: ReactNode;
|
|
419
|
+
renderMediaControls?: (strategy: MediaStrategy) => ReactNode;
|
|
420
|
+
viewControlsDeps?: any[];
|
|
421
|
+
renderViewerControls?: (strategy: SingleImageStrategy | EmptyStrategy) => ReactNode;
|
|
422
|
+
renderComplexTimelineControls?: (strategy: ComplexTimelineStrategy) => ReactNode;
|
|
423
|
+
complexTimelineControlsDeps?: any[];
|
|
424
|
+
mediaControlsDeps?: any[];
|
|
425
|
+
throwOnUnknown?: boolean;
|
|
426
|
+
}
|
|
427
|
+
declare function CanvasStrategyProvider({ strategies, registerActions, defaultChoices, onChoiceChange, mediaControlsDeps, renderMediaControls, renderViewerControls, viewControlsDeps, renderComplexTimelineControls, complexTimelineControlsDeps, throwOnUnknown, children, }: CanvasStrategyProviderProps): react_jsx_runtime.JSX.Element;
|
|
428
|
+
|
|
429
|
+
interface CanvasWorldObjectProps {
|
|
430
|
+
x?: number;
|
|
431
|
+
y?: number;
|
|
432
|
+
keepCanvasScale?: boolean;
|
|
433
|
+
children?: ReactNode;
|
|
434
|
+
}
|
|
435
|
+
declare function CanvasWorldObject({ x, y, keepCanvasScale, children }: CanvasWorldObjectProps): react_jsx_runtime.JSX.Element | null;
|
|
436
|
+
|
|
437
|
+
declare function ThumbnailFallbackImage({ x, y }: {
|
|
438
|
+
x?: number;
|
|
439
|
+
y?: number;
|
|
440
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
441
|
+
|
|
442
|
+
interface RenderEmptyStrategyProps {
|
|
443
|
+
backgroundStyle?: BoxStyle;
|
|
444
|
+
alwaysShowBackground?: boolean;
|
|
445
|
+
}
|
|
446
|
+
declare function RenderEmptyStrategy({ backgroundStyle, alwaysShowBackground }: RenderEmptyStrategyProps): react_jsx_runtime.JSX.Element | null;
|
|
447
|
+
|
|
448
|
+
declare function RenderComplexTimelineStrategy(): react_jsx_runtime.JSX.Element | null;
|
|
449
|
+
|
|
450
|
+
interface TextualContextStrategyProps {
|
|
451
|
+
onClickPaintingAnnotation?: (id: string, e: any) => void;
|
|
452
|
+
children?: ReactNode;
|
|
453
|
+
}
|
|
454
|
+
declare function RenderTextualContentStrategy({ onClickPaintingAnnotation, children }: TextualContextStrategyProps): react_jsx_runtime.JSX.Element | null;
|
|
455
|
+
|
|
456
|
+
interface ImageStrategyProps {
|
|
457
|
+
isStatic?: boolean;
|
|
458
|
+
enableSizes?: boolean;
|
|
459
|
+
onClickPaintingAnnotation?: (id: string, image: ImageWithOptionalService, e: any) => void;
|
|
460
|
+
children?: ReactNode;
|
|
461
|
+
}
|
|
462
|
+
declare function RenderImageStrategy({ isStatic, enableSizes, onClickPaintingAnnotation, children, }: ImageStrategyProps): react_jsx_runtime.JSX.Element | null;
|
|
463
|
+
|
|
464
|
+
declare function Render3DModelStrategy(): react_jsx_runtime.JSX.Element | null;
|
|
465
|
+
|
|
466
|
+
interface AnnotationStrategyProps {
|
|
467
|
+
children?: ReactNode;
|
|
468
|
+
}
|
|
469
|
+
declare function RenderAnnotationStrategy({ children }: AnnotationStrategyProps): react_jsx_runtime.JSX.Element | null;
|
|
470
|
+
|
|
471
|
+
interface RenderAudioStrategyProps {
|
|
472
|
+
as?: React.ComponentType<AudioComponentProps>;
|
|
473
|
+
}
|
|
474
|
+
declare function RenderAudioStrategy({ as: CustomAudio }: RenderAudioStrategyProps): react_jsx_runtime.JSX.Element | null;
|
|
475
|
+
|
|
476
|
+
declare function RenderAccompanyingCanvas(): react_jsx_runtime.JSX.Element;
|
|
477
|
+
|
|
478
|
+
interface RenderVideoStrategyProps {
|
|
479
|
+
as?: React__default.ComponentType<VideoComponentProps>;
|
|
480
|
+
}
|
|
481
|
+
declare function RenderVideoStrategy({ as: CustomVideo }: RenderVideoStrategyProps): react_jsx_runtime.JSX.Element | null;
|
|
482
|
+
|
|
483
|
+
declare function RenderYouTubeStrategy(): react_jsx_runtime.JSX.Element | null;
|
|
484
|
+
|
|
402
485
|
declare const CanvasAnnotations: React$1.ForwardRefExoticComponent<{
|
|
403
486
|
canvasId?: string | undefined;
|
|
404
487
|
} & React$1.RefAttributes<{
|
|
@@ -452,7 +535,7 @@ type CombinedMetadataProps = Omit<MetadataProps, 'metadata'>;
|
|
|
452
535
|
declare function CombinedMetadata(props: CombinedMetadataProps): react_jsx_runtime.JSX.Element;
|
|
453
536
|
|
|
454
537
|
interface ImageProps {
|
|
455
|
-
src: string | ImageService;
|
|
538
|
+
src: string | ImageService$1;
|
|
456
539
|
alt?: string;
|
|
457
540
|
size?: Partial<ImageSize>;
|
|
458
541
|
region?: RegionParameter;
|
|
@@ -687,6 +770,21 @@ interface PolygonSelectorProps {
|
|
|
687
770
|
}
|
|
688
771
|
declare function PolygonSelector(props: PolygonSelectorProps): react_jsx_runtime.JSX.Element | null;
|
|
689
772
|
|
|
773
|
+
interface ImageServiceProps {
|
|
774
|
+
src: string;
|
|
775
|
+
atlas?: AtlasProps;
|
|
776
|
+
errorFallback?: React__default.FC;
|
|
777
|
+
interactive?: boolean;
|
|
778
|
+
skipSizes?: boolean;
|
|
779
|
+
renderViewerControls?: (strategy: SingleImageStrategy | EmptyStrategy) => ReactNode;
|
|
780
|
+
viewControlsDeps?: any[];
|
|
781
|
+
fluid?: boolean;
|
|
782
|
+
x?: number;
|
|
783
|
+
y?: number;
|
|
784
|
+
children?: React__default.ReactNode;
|
|
785
|
+
}
|
|
786
|
+
declare function ImageService({ src, errorFallback, interactive, skipSizes, children, renderViewerControls, viewControlsDeps, fluid, x, y, ...atlasProps }: ImageServiceProps & Omit<AtlasProps, 'children'>): react_jsx_runtime.JSX.Element | null;
|
|
787
|
+
|
|
690
788
|
declare function AnnotationContext({ annotation, children }: {
|
|
691
789
|
annotation: string;
|
|
692
790
|
children: ReactNode;
|
|
@@ -1115,6 +1213,24 @@ declare function AnnotationStyleProvider({ theme, children, }: {
|
|
|
1115
1213
|
children: React.ReactNode;
|
|
1116
1214
|
}): react_jsx_runtime.JSX.Element;
|
|
1117
1215
|
|
|
1216
|
+
interface StrategyContext {
|
|
1217
|
+
strategy: RenderingStrategy;
|
|
1218
|
+
choices: ChoiceDescription | null;
|
|
1219
|
+
}
|
|
1220
|
+
declare const StrategyReactContext: React$1.Context<StrategyContext | null>;
|
|
1221
|
+
declare function useStrategy(): StrategyContext;
|
|
1222
|
+
|
|
1223
|
+
interface ControlsContext {
|
|
1224
|
+
renderMediaControls?: (strategy: MediaStrategy) => ReactNode;
|
|
1225
|
+
viewControlsDeps: any[];
|
|
1226
|
+
renderViewerControls?: (strategy: SingleImageStrategy | EmptyStrategy) => ReactNode;
|
|
1227
|
+
mediaControlsDeps: any[];
|
|
1228
|
+
renderComplexTimelineControls?: (strategy: ComplexTimelineStrategy) => ReactNode;
|
|
1229
|
+
complexTimelineControlsDeps: any[];
|
|
1230
|
+
}
|
|
1231
|
+
declare const ControlsReactContext: React$1.Context<ControlsContext | null>;
|
|
1232
|
+
declare function useRenderControls(): ControlsContext;
|
|
1233
|
+
|
|
1118
1234
|
/**
|
|
1119
1235
|
* Parse specific resource.
|
|
1120
1236
|
*
|
|
@@ -1263,7 +1379,7 @@ declare function useExternalManifest(idOrRef: string | {
|
|
|
1263
1379
|
manifest?: ManifestNormalized;
|
|
1264
1380
|
};
|
|
1265
1381
|
|
|
1266
|
-
declare function useImage(service: ImageService | undefined, data?: {
|
|
1382
|
+
declare function useImage(service: ImageService$1 | undefined, data?: {
|
|
1267
1383
|
size?: Partial<ImageSize>;
|
|
1268
1384
|
selector?: RegionParameter;
|
|
1269
1385
|
rotation?: number | RotationParameter;
|
|
@@ -1281,7 +1397,7 @@ interface ImageServiceRequestOptions {
|
|
|
1281
1397
|
* @note It is better to use the hook useRenderingStrategy for rendering.
|
|
1282
1398
|
*/
|
|
1283
1399
|
declare function useImageService({ cacheKey }?: ImageServiceRequestOptions): {
|
|
1284
|
-
data: ImageService | undefined;
|
|
1400
|
+
data: ImageService$1 | undefined;
|
|
1285
1401
|
isFetching: boolean;
|
|
1286
1402
|
status: 'error' | 'success' | 'loading' | 'idle';
|
|
1287
1403
|
};
|
|
@@ -1292,7 +1408,7 @@ declare function useImageTile(): {
|
|
|
1292
1408
|
id: string | undefined;
|
|
1293
1409
|
width: number | null | undefined;
|
|
1294
1410
|
height: number | null | undefined;
|
|
1295
|
-
imageService: ImageService;
|
|
1411
|
+
imageService: ImageService$1;
|
|
1296
1412
|
thumbnail: undefined;
|
|
1297
1413
|
} | null;
|
|
1298
1414
|
};
|
|
@@ -1342,7 +1458,7 @@ declare function useStyles<Style extends Record<string, any>>(resource: undefine
|
|
|
1342
1458
|
declare function useThumbnail(request: ImageCandidateRequest, dereference?: boolean, { canvasId, manifestId }?: {
|
|
1343
1459
|
canvasId?: string;
|
|
1344
1460
|
manifestId?: string;
|
|
1345
|
-
}): ImageCandidate | undefined;
|
|
1461
|
+
}): ImageCandidate$1 | undefined;
|
|
1346
1462
|
|
|
1347
1463
|
declare const useVault: () => Vault;
|
|
1348
1464
|
|
|
@@ -1533,4 +1649,4 @@ declare function findAllCanvasesInRange(vault: Vault, range: RangeNormalized): A
|
|
|
1533
1649
|
declare function findManifestSelectedRange(vault: Vault, manifest: ManifestNormalized, canvasId: string): null | RangeNormalized;
|
|
1534
1650
|
declare function findSelectedRange(vault: Vault, range: RangeNormalized, canvasId: string): null | RangeNormalized;
|
|
1535
1651
|
|
|
1536
|
-
export { AnnotationContext, AnnotationPageContext, type AnnotationPageDescription, AnnotationStyleProvider, type AnnotationStyles, type AnnotationThemeDefinition, type AudioSequence, Auth, type AuthAccessState, type AuthContextActions, type AuthContextCurrentActions, type AuthContextState, AuthProvider, AuthRContext, AuthReactContext, AuthReactContextActions, type AuthState, CanvasAnnotations, CanvasContext, CanvasPanel, type ChoiceEvents, CollectionContext, CombinedMetadata, ComplexTimelineProvider, type ComplexTimelineStrategy, ContextBridge, CreateCustomShape, type CreateCustomShapeProps, CustomContextBridge, CustomContextBridgeProvider, type EmptyStrategy, EventsProvider, Image, type ImageProps, ImageServiceLoaderContext, type ImageServiceLoaderType, type ImageServiceRequestOptions, type ImageWithOptionalService, InnerViewerProvider, LanguageProvider, LanguageString, LocaleString, ManifestContext, ManifestMetadata, type MediaPlayerActions, MediaPlayerProvider, type MediaPlayerState, type MediaStrategy, Metadata, type MetadataProps, PolygonSelector, type PolygonSelectorProps, type ProbeStore, RangeContext, ReactEventContext, ReactVaultContext, RenderSvgEditorControls, type RenderingStrategy, type ResourceContextType, ResourceProvider, ResourceReactContext, type ResourceRequestOptions, SelectorControllerProvider, type SelectorHelperEventTypes, SequenceThumbnails, type SimpleViewerActions, type SimpleViewerActionsType, type SimpleViewerContext, type SimpleViewerProps, SimpleViewerProvider, SimpleViewerReactContext, type SimpleViewerReducerState, type Single3DModelStrategy, type SingleAudio, SingleCanvasThumbnail, type SingleImageStrategy, type SingleVideo, type SingleYouTubeVideo, type StrategyActions, type SvgTheme, type TextContent, type TextualContentStrategy, type TimelineKeyframe, TranslationProvider, TransliterationProvider, type UnknownStrategy, type UseRenderingStrategy, type UseRenderingStrategyOptions, type VaultActivatedAnnotation, VaultProvider, type VideoSequence, ViewerPresetContext, VirtualAnnotationProvider, VisibleCanvasReactContext, authDetailsForResource, createAuthStateStore, createProbe, defaultEmitter, emptyActions, emptyStrategy, findAllCanvasesInRange, findFirstCanvasFromRange, findManifestSelectedRange, findSelectedRange, flattenAnnotationPageIds, formatTime, get3dStrategy, getComplexTimelineStrategy, getDefaultAnnotationStyles, getImageStrategy, getManifestSequence, getParsedTargetSelector, getRenderingStrategy, getTextualContentStrategy, getVideoStrategy, getVisibleCanvasesFromCanvasId, hasAuth, makeAccessServiceRequest, makeAccessTokenRequest, parseSpecificResource, svgThemes, unknownResponse, unsupportedStrategy, useAnnotation, useAnnotationPage, useAnnotationPageManager, useAnnotationStyles, useAnnotationsAtTime, useAuthActions, useAuthService, useAuthStore, useAuthToken, useAuthTokens, useCanvas, useCanvasChoices, useCanvasClock, useCanvasSequence, useCanvasStartTime, useCanvasSubset, useClosestLanguage, useCollection, useComplexTimeline, useContextBridge, useCreateLocaleString, useCurrentAuth, useCustomContextBridge, useDispatch, useEventEmitter, useEventListener, useExistingVault, useExternalCollection, useExternalManifest, useExternalResource, useIIIFLanguage, useImage, useImageService, useImageServiceLoader, useImageTile, useIsAuthEnabled, useLoadImageService, useLocaleString, useManifest, useMediaActions, useMediaElements, useMediaState, usePaintables, usePaintingAnnotations, usePolygonHelper, useRange, useRenderingStrategy, useResourceContext, useResourceEvents, useResources, useSearchService, useSelectorController, useSelectorEmitter, useSelectorEvents, useSelectorHelper, useSimpleMediaPlayer, useSimpleViewer, useStyleHelper, useStyles, useSvgEditor, useThumbnail, useTranslations, useTransliteration, useVault, useVaultEffect, useVaultSelector, useViewerPreset, useVirtualAnnotationPage, useVirtualAnnotationPageContext, useVisibleCanvases };
|
|
1652
|
+
export { AnnotationContext, AnnotationPageContext, type AnnotationPageDescription, type AnnotationStrategyProps, AnnotationStyleProvider, type AnnotationStyles, type AnnotationThemeDefinition, type AudioSequence, Auth, type AuthAccessState, type AuthContextActions, type AuthContextCurrentActions, type AuthContextState, AuthProvider, AuthRContext, AuthReactContext, AuthReactContextActions, type AuthState, CanvasAnnotations, CanvasContext, CanvasPanel, CanvasStrategyProvider, CanvasWorldObject, type ChoiceEvents, CollectionContext, CombinedMetadata, ComplexTimelineProvider, type ComplexTimelineStrategy, ContextBridge, type ControlsContext, ControlsReactContext, CreateCustomShape, type CreateCustomShapeProps, CustomContextBridge, CustomContextBridgeProvider, type EmptyStrategy, EventsProvider, Image, type ImageProps, ImageService, ImageServiceLoaderContext, type ImageServiceLoaderType, type ImageServiceRequestOptions, type ImageStrategyProps, type ImageWithOptionalService, InnerViewerProvider, LanguageProvider, LanguageString, LocaleString, ManifestContext, ManifestMetadata, type MediaPlayerActions, MediaPlayerProvider, type MediaPlayerState, type MediaStrategy, Metadata, type MetadataProps, PolygonSelector, type PolygonSelectorProps, type ProbeStore, RangeContext, ReactEventContext, ReactVaultContext, Render3DModelStrategy, RenderAccompanyingCanvas, RenderAnnotationStrategy, RenderAudioStrategy, RenderComplexTimelineStrategy, RenderEmptyStrategy, RenderImageStrategy, RenderSvgEditorControls, RenderTextualContentStrategy, RenderVideoStrategy, RenderYouTubeStrategy, type RenderingStrategy, type ResourceContextType, ResourceProvider, ResourceReactContext, type ResourceRequestOptions, SelectorControllerProvider, type SelectorHelperEventTypes, SequenceThumbnails, type SimpleViewerActions, type SimpleViewerActionsType, type SimpleViewerContext, type SimpleViewerProps, SimpleViewerProvider, SimpleViewerReactContext, type SimpleViewerReducerState, type Single3DModelStrategy, type SingleAudio, SingleCanvasThumbnail, type SingleImageStrategy, type SingleVideo, type SingleYouTubeVideo, type StrategyActions, type StrategyContext, StrategyReactContext, type SvgTheme, type TextContent, type TextualContentStrategy, ThumbnailFallbackImage, type TimelineKeyframe, TranslationProvider, TransliterationProvider, type UnknownStrategy, type UseRenderingStrategy, type UseRenderingStrategyOptions, type VaultActivatedAnnotation, VaultProvider, type VideoSequence, ViewerPresetContext, VirtualAnnotationProvider, VisibleCanvasReactContext, authDetailsForResource, createAuthStateStore, createProbe, defaultEmitter, emptyActions, emptyStrategy, findAllCanvasesInRange, findFirstCanvasFromRange, findManifestSelectedRange, findSelectedRange, flattenAnnotationPageIds, formatTime, get3dStrategy, getComplexTimelineStrategy, getDefaultAnnotationStyles, getImageStrategy, getManifestSequence, getParsedTargetSelector, getRenderingStrategy, getTextualContentStrategy, getVideoStrategy, getVisibleCanvasesFromCanvasId, hasAuth, makeAccessServiceRequest, makeAccessTokenRequest, parseSpecificResource, svgThemes, unknownResponse, unsupportedStrategy, useAnnotation, useAnnotationPage, useAnnotationPageManager, useAnnotationStyles, useAnnotationsAtTime, useAuthActions, useAuthService, useAuthStore, useAuthToken, useAuthTokens, useCanvas, useCanvasChoices, useCanvasClock, useCanvasSequence, useCanvasStartTime, useCanvasSubset, useClosestLanguage, useCollection, useComplexTimeline, useContextBridge, useCreateLocaleString, useCurrentAuth, useCustomContextBridge, useDispatch, useEventEmitter, useEventListener, useExistingVault, useExternalCollection, useExternalManifest, useExternalResource, useIIIFLanguage, useImage, useImageService, useImageServiceLoader, useImageTile, useIsAuthEnabled, useLoadImageService, useLocaleString, useManifest, useMediaActions, useMediaElements, useMediaState, usePaintables, usePaintingAnnotations, usePolygonHelper, useRange, useRenderControls, useRenderingStrategy, useResourceContext, useResourceEvents, useResources, useSearchService, useSelectorController, useSelectorEmitter, useSelectorEvents, useSelectorHelper, useSimpleMediaPlayer, useSimpleViewer, useStrategy, useStyleHelper, useStyles, useSvgEditor, useThumbnail, useTranslations, useTransliteration, useVault, useVaultEffect, useVaultSelector, useViewerPreset, useVirtualAnnotationPage, useVirtualAnnotationPageContext, useVisibleCanvases };
|