sanity 6.6.0-next.29 → 6.6.0-next.31

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.
@@ -4993,6 +4993,9 @@ interface CommentsProviderProps {
4993
4993
  children: ReactNode;
4994
4994
  documentId: string;
4995
4995
  documentType: string;
4996
+ /**
4997
+ * This acts as the scopeId for the document.
4998
+ */
4996
4999
  releaseId?: ReleaseId;
4997
5000
  type: CommentsType;
4998
5001
  sortOrder: 'asc' | 'desc';
@@ -9384,6 +9387,23 @@ declare function getTargetDocument({
9384
9387
  bundle: PerspectiveBundle;
9385
9388
  documentVersions: DocumentPerspectiveState['versions'];
9386
9389
  }): VersionInfoDocumentStub | undefined;
9390
+ /**
9391
+ * Finds the variant-of-published sibling for a variant: the version stub carrying the same
9392
+ * `_system.variant` reference but no `_system.bundleId` (i.e. the published variant document).
9393
+ *
9394
+ * This is the document that publish-state gating must read for variant targets — the base
9395
+ * `published` document says nothing about whether the *variant* is published. `undefined` means
9396
+ * the variant has never been published.
9397
+ *
9398
+ * @internal
9399
+ */
9400
+ declare function getVariantPublishedSibling({
9401
+ documentVersions,
9402
+ variant
9403
+ }: {
9404
+ variant: string;
9405
+ documentVersions: DocumentPerspectiveState['versions'];
9406
+ }): VersionInfoDocumentStub | undefined;
9387
9407
  interface GlobalErrorChannelEvent {
9388
9408
  type: 'error' | 'rejection';
9389
9409
  error?: unknown;
@@ -10593,10 +10613,23 @@ type TargetDocumentState = {
10593
10613
  targetDocument: VersionInfoDocumentStub | undefined;
10594
10614
  scopeId: string | undefined; /** The selected variant when the resolved target is a variant-scoped version. */
10595
10615
  variant: SystemVariant | undefined;
10616
+ /**
10617
+ * The variant-of-published sibling stub (same `_system.variant`, no `_system.bundleId`).
10618
+ * Only set for variant targets; `undefined` means the variant has never been published.
10619
+ * Publish-state gating (already-published, unpublishable, discard copy) must read this
10620
+ * instead of the base `published` document.
10621
+ */
10622
+ publishedSibling: VersionInfoDocumentStub | undefined;
10596
10623
  } | {
10597
10624
  status: 'variant-missing';
10598
10625
  variant: SystemVariant;
10599
10626
  bundle: PerspectiveBundle;
10627
+ /**
10628
+ * The variant-of-published sibling, when the variant is missing in the current bundle but
10629
+ * published. Lets consumers distinguish "never existed" from "exists published, not in
10630
+ * this bundle".
10631
+ */
10632
+ publishedSibling: VersionInfoDocumentStub | undefined;
10600
10633
  } | {
10601
10634
  status: 'variant-definition-document-not-found';
10602
10635
  requestedVariantName: string;
@@ -14347,7 +14380,7 @@ interface OperationsAPI {
14347
14380
  commit: Operation | GuardedOperation;
14348
14381
  delete: Operation<[versions?: string[]], 'NOTHING_TO_DELETE' | 'NOT_READY' | 'TARGET_NOT_FOUND'>;
14349
14382
  del: Operation<[versions?: string[]], 'NOTHING_TO_DELETE' | 'TARGET_NOT_FOUND'> | GuardedOperation;
14350
- publish: Operation<[], 'LIVE_EDIT_ENABLED' | 'ALREADY_PUBLISHED' | 'NO_CHANGES' | 'TARGET_NOT_FOUND'> | GuardedOperation;
14383
+ publish: Operation<[], 'LIVE_EDIT_ENABLED' | 'ALREADY_PUBLISHED' | 'NO_CHANGES' | 'NOT_PUBLISHABLE' | 'TARGET_NOT_FOUND'> | GuardedOperation;
14351
14384
  patch: Operation<[patches: Patch$1[], initialDocument?: Record<string, any>]> | GuardedOperation;
14352
14385
  discardChanges: Operation<[], 'NO_CHANGES' | 'NOT_PUBLISHED' | 'TARGET_NOT_FOUND'> | GuardedOperation;
14353
14386
  unpublish: Operation<[], 'LIVE_EDIT_ENABLED' | 'NOT_PUBLISHED' | 'TARGET_NOT_FOUND'> | GuardedOperation;
@@ -17832,4 +17865,4 @@ interface ActiveWorkspaceMatcherContextValue {
17832
17865
  activeWorkspace: WorkspaceSummary;
17833
17866
  setActiveWorkspace: (workspaceName: string) => void;
17834
17867
  }
17835
- export { NewDocumentCreationContext as $, useOnlyHasVersions as $C, InitialSnapshotEvent as $S, RequestErrorChannel as $T, classifyConfigError as $_, DocumentVersionSnapshots as $a, useValidationStatus as $b, dec as $c, isVariantVersion as $d, useScheduledDraftDocument as $f, buildCommentRangeDecorations as $g, isUnpublishDocumentEvent as $h, TemplatePermissionsOptions as $i, IntentButton as $l, ArrayDiff$1 as $m, ArrayOfPrimitiveOptionsInput as $n, FormBuilderCustomMarkersComponent as $o, emptyValuesByType as $p, FieldPresenceData as $r, BlockStyleProps as $s, useFormBuilder as $t, setAtPath as $u, PartialIndexSettings as $v, getIdPair as $w, Serializeable as $x, matchWorkspace as $y, ComposableOption as A, CommentDisabledIcon as AC, UseListFormatOptions as AS, ConnectingStatus as AT, UpsellDialogViewedInfo as A_, QueryParams$1 as Aa, CommentListBreadcrumbs as Ab, defaultRenderInput as Ac, IncompatibleTypeError as Ad, isArray as Af, useTelemetryConsent as Ag, BaseEvent as Ah, useProject as Ai, BlockPreview as Al, FieldPreviewComponent as Am, SelectInput as An, CommitRequest as Ao, usePerspective as Ap, FormFieldValidation as Ar, PasteData$1 as As, DocumentInspectorProps as At, DEFAULT_ANNOTATIONS as Au, FormPatch as Av, getVersionInlineBadge as Aw, LocaleSource as Ax, SearchResultItemPreview as Ay, DocumentBadgesResolver as B, useTrackerStore as BC, useEditState as BS, getProviderTitle as BT, StudioAnnouncementsCard as B_, InitialValueState as Ba, CommentTextSelection as Bb, useParseErrorForPath as Bc, getDocumentIdForCanvasLink as Bd, createHookFromObservableFactory as Bf, ScrollContextValue as Bg, HistoryClearedEvent as Bh, createPresenceStore as Bi, CompactPreviewProps as Bl, ChangeResolverProps as Bm, ImageUrlBuilder$1 as Bn, SanityDefaultPreview as Bo, getItemKey as Bp, FormFieldHeaderText as Br, RenderInputCallback as Bs, DocumentFieldActionItem as Bt, useDocumentLimitsUpsellContext as Bu, StudioToolMenu as Bv, TargetPerspective as Bw, UserListWithPermissionsOptions as Bx, useColorSchemeInternalValue as By, ActionComponent as C, useDateTimeFormat as CC, useReferringDocuments as CS, CommandListItemContext as CT, useWorkspace as C_, selectUpstreamVersion as Ca, CommentsProvider as Cb, FormProviderProps as Cc, ObjectFormNode as Cd, isCardinalityOneRelease as Cf, FeedbackPayload as Cg, StringSegmentUnchanged$1 as Ch, useHistoryStore as Ci, Resizable as Cl, DiffTooltipWithAnnotationsProps as Cm, TelephoneInput as Cn, Pair as Co, DuplicateActionProps as Cp, useDocumentDivergences as Cr, EditorChange as Cs, ReleaseActionDescription as Ct, PUBLISHED as Cu, SanityClipboardItem as Cv, ObservePathsFn as Cw, LocaleConfigContext as Cx, isPerspectiveRaw as Cy, AsyncConfigPropertyReducer as D, useConnectionState as DC, useNumberFormat as DS, BetaBadgeProps as DT, UpsellDialogLearnMoreCtaClicked as D_, useDocumentType as Da, CommentDocument as Db, defaultRenderBlock as Dc, ArrayItemError as Dd, isString as Df, StudioFeedbackDialogProps as Dg, useEventsStore as Dh, useRenderingContextStore as Di, TemplatePreviewProps as Dl, DiffInspectWrapperProps as Dm, StringInput as Dn, BufferedDocumentEvent as Do, SchedulesContextValue as Dp, FormInput as Dr, ObjectInputProps as Ds, DocumentInspector as Dt, useArchivedReleases as Du, FormIncPatch as Dv, PreviewableType as Dw, LocaleResourceBundle as Dx, SearchSort as Dy, AsyncComposableOption as E, connectionState as EC, UseNumberFormatOptions as ES, BetaBadge as ET, UpsellDialogDismissed as E_, DocumentTypeResolveState as Ea, CommentCreatePayload as Eb, defaultRenderAnnotation as Ec, StringFormNode as Ed, isTruthy as Ef, StudioFeedbackDialog as Eg, getValueError as Eh, useProjectStore as Ei, TemplatePreview as El, DiffInspectWrapper as Em, TagsArrayInputProps as En, checkoutPair as Eo, isSanityDefinedAction as Ep, FormRow as Er, NumberInputProps as Es, FormComponents as Et, useDocumentVersionInfo as Eu, FormDiffMatchPatch as Ev, Previewable as Ew, LocalePluginOptions as Ex, SearchOptions as Ey, DocumentActionsContext as F, ChangeIndicatorTrackerContextValue as FC, FormattedDuration as FS, RetryingStatus as FT, StudioLayoutComponent as F_, InitialValueOptions as Fa, CommentReactionItem as Fb, ReferenceInputOptions as Fc, UndeclaredMembersError as Fd, formatRelativeLocale as Ff, DocumentGroupInventory as Fg, DocumentGroupEvent as Fh, ProjectGrants as Fi, DetailPreview as Fl, DiffCardProps as Fm, PortableTextMemberItem as Fn, getPreviewPaths as Fo, PerspectiveNotWriteableReason as Fp, FormFieldValidationStatusProps as Fr, RenderAnnotationCallback as Fs, defineDocumentFieldAction as Ft, getTargetScopeId as Fu, FormSetPatch as Fv, PerspectiveContextValue as Fw, TFunction$1 as Fx, ColorSchemeCustomProvider as Fy, DocumentLanguageFilterContext as G, ChangeConnectorRoot as GC, useDocumentOperation as GS, RequestFailureDiagnostics as GT, useSource as G_, OperationSuccess as Ga, CommentsTextSelectionItem as Gb, useFormCallbacks as Gc, useVariantDocumentOperations as Gd, LegacyThemeTints as Gf, CollapseMenuButton as Gg, UpdateLiveDocumentEvent as Gh, Status as Gi, PreviewLayoutKey as Gl, useDiffAnnotationColor as Gm, DateTimeInputProps as Gn, isArrayOfObjectsInputProps as Go, normalizeIndexTupleSegment as Gp, PresenceScopeProps as Gr, ItemProps as Gs, DocumentFieldActionsResolver as Gt, ExpandFieldSetOperation as Gu, NavbarAction as Gv, PublishedId as Gw, UseUnitFormatterOptions as Gx, StudioTheme as Gy, DocumentInspectorContext as H, IsEqualFunction as HC, deriveDocumentSyncState as HS, createMockAuthStore as HT, StudioProps as H_, validation$1 as Ha, CommentUpdateOperationOptions as Hb, useReportParseError as Hc, useCanvasCompanionDoc as Hd, defaultTheme as Hf, ScrollContainer as Hg, ScheduleDocumentVersionEvent as Hh, GlobalPresence as Hi, GeneralPreviewLayoutKey as Hl, ChangeListProps as Hm, EmailInputProps as Hn, PreviewLoader as Ho, getValueAtPath as Hp, FormField as Hr, RenderPreviewCallback as Hs, DocumentFieldActionProps as Ht, useDivergenceNavigator as Hu, ActiveToolLayoutProps as Hv, CollatedHit as Hw, useUserListWithPermissions as Hx, useColorSchemeSetValue as Hy, DocumentActionsResolver as I, TrackedArea as IC, UseFormattedDurationOptions as IS, createConnectionStatusStore as IT, isValidAnnouncementAudience as I_, getInitialValueStream as Ia, CommentReactionOption as Ib, ReferenceInputOptionsProvider as Ic, FormFieldGroup as Id, EMPTY_ARRAY as If, DocumentGroupInventoryProps as Ig, DocumentVersionEventType as Ih, ProjectOrganizationData as Ii, DetailPreviewProps as Il, TIMELINE_ITEM_I18N_KEY_MAPPING as Im, UpdateReadOnlyPlugin as In, unstable_useValuePreview as Io, isPerspectiveWriteable as Ip, FieldStatusProps as Ir, RenderArrayOfObjectsItemCallback as Is, DocumentFieldAction as It, useTargetDocumentState as Iu, FormUnsetPatch as Iv, PerspectiveStack as Iw, ValidationLocaleResourceKeys as Ix, ColorSchemeLocalStorageProvider as Iy, DocumentPluginOptions as J, ChangeIndicator as JC, EditStateFor as JS, AuthProbeResult as JT, useRetryCountdown as J_, MapDocument as Ja, Loadable as Jb, PatchMsg as Jc, measureFirstMatch as Jd, TasksContextValue as Jf, AutoCollapseMenu as Jg, isDeleteDocumentGroupEvent as Jh, UserStoreOptions as Ji, PreviewCard as Jl, getAnnotationColor as Jm, CrossDatasetReferencePreview as Jn, isNumberInputProps as Jo, pathToString as Jp, FieldPresence as Jr, PrimitiveItemProps as Js, decodePath as Jt, SetActiveGroupOperation as Ju, StudioComponentsPluginOptions as Jv, collate as Jw, TimeAgoOpts as Jx, AddonDatasetContextValue as Jy, DocumentLanguageFilterResolver as K, ChangeConnectorRootProps as KC, DocumentIdStack as KS, _createAuthStore as KT, useStudioErrorHandler as K_, emitOperation as Ka, CommentsType as Kb, MutationPatchMsg as Kc, isDocumentInSelectedVariant as Kd, useDocumentPreviewValues as Kf, CollapseMenuButtonProps as Kg, isCreateDocumentVersionEvent as Kh, UserSessionPair as Ki, PreviewMediaDimensions as Kl, DiffVisitor as Km, DateInput as Kn, isArrayOfPrimitivesInputProps as Ko, normalizeKeySegment as Kp, PresenceOverlay as Kr, ObjectItem as Ks, DocumentFieldActionsResolverContext as Kt, ExpandOperation as Ku, NavbarProps as Kv, SystemBundle as Kw, useUnitFormatter as Kx, StudioThemeColorSchemeKey as Ky, DocumentActionsVersionType as L, TrackedChange as LC, useFormattedDuration as LS, onRetry as LT, isValidAnnouncementRole as L_, InitialValueErrorMsg as La, CommentReactionShortNames as Lb, TemplateOption as Lc, ProvenanceDiffAnnotation as Ld, EMPTY_OBJECT as Lf, DocumentGroupInventoryPerspectiveList as Lg, EditDocumentVersionEvent as Lh, ProjectStore as Li, DefaultPreview as Ll, ChangeTitleSegment as Lm, ObjectInput as Ln, useValuePreview as Lo, getSelectedVariant as Lp, FormFieldStatus as Lr, RenderArrayOfPrimitivesItemCallback as Ls, DocumentFieldActionDivider as Lt, useAllVariants as Lu, PatchArg as Lv, ReleaseId as Lw, StudioLocaleResourceKeys as Lx, ColorSchemeProvider as Ly, ConfigContext$1 as M, ChangeIndicatorsTracker as MC, GlobalCopyPasteElementHandler as MS, ConnectionStatusStore as MT, StudioProviderProps as M_, ListenQueryOptions as Ma, CommentOperations as Mb, defaultRenderPreview as Mc, MissingKeysError as Md, getTargetDocument as Mf, StudioFeedbackProvider as Mg, CreateLiveDocumentEvent as Mh, getProjectGrants as Mi, BlockImagePreviewProps as Ml, DiffErrorBoundaryProps as Mm, CreateButton as Mn, prepareForPreview as Mo, useExcludedPerspective as Mp, FormFieldValidationInfo as Mr, PrimitiveInputElementProps as Ms, defineDocumentInspector as Mt, ReleaseDocument$1 as Mu, FormPatchJSONValue as Mv, ReleaseAvatar as Mw, LocalesBundlesOption as Mx, SearchPopoverProps as My, ConfigPropertyReducer as N, useChangeIndicatorsReportedValues as NC, useGlobalCopyPasteElementHandler as NS, ConnectionStatusStoreOptions as NT, NavbarContextValue as N_, ListenQueryParams as Na, CommentPath as Nb, EditReferenceLinkComponentProps as Nc, MixedArrayError as Nd, getReferencePaths as Nf, isDev as Ng, DeleteDocumentGroupEvent as Nh, ProjectData as Ni, MediaPreview as Nl, DiffErrorBoundaryState as Nm, CreateReferenceOption as Nn, getPreviewValueWithFallback as No, PerspectiveProvider as Np, FormFieldValidationWarning as Nr, PrimitiveInputProps as Ns, initialDocumentFieldActions as Nt, TargetDocumentState as Nu, FormPatchOrigin as Nv, ReleaseAvatarIcon as Nw, LocalesOption as Nx, SearchHeader as Ny, BaseActionDescription as O, useConditionalToast as OC, UseManageFavoriteProps as OS, CONNECTING as OT, UpsellDialogUpgradeCtaClicked as O_, DocumentStore as Oa, CommentFieldCreatePayload as Ob, defaultRenderField as Oc, DuplicateKeysError as Od, isRecord as Of, FeedbackDialog as Og, EventsProvider as Oh, useUserStore as Oi, InlinePreview as Ol, DiffFromTo as Om, SlugInput as On, BufferedDocumentWrapper as Oo, EditScheduleForm as Op, FormInputAbsolutePathArg as Or, OnPasteFn as Os, DocumentInspectorComponent as Ot, useActiveReleases as Ou, FormInsertPatch as Ov, Selection as Ow, LocaleResourceKey as Ox, SearchTerms as Oy, DefaultPluginsWorkspaceOptions as P, useChangeIndicatorsReporter as PC, FormDocumentValue as PS, ErrorStatus as PT, StudioLayout as P_, listenQuery as Pa, CommentPostPayload as Pb, EditReferenceOptions as Pc, TypeAnnotationMismatchError as Pd, getErrorMessage as Pf, isProd as Pg, DeleteDocumentVersionEvent as Ph, ProjectDatasetData as Pi, MediaPreviewProps as Pl, DiffCard as Pm, PortableTextInput as Pn, getPreviewStateObservable as Po, ReleasesNav as Pp, FormFieldValidationStatus as Pr, StringInputProps as Ps, documentFieldActionsReducer as Pt, getPairTarget as Pu, FormSetIfMissingPatch as Pv, VersionChip as Pw, StaticLocaleResourceBundle as Px, Filters as Py, MissingConfigFile as Q, useVersionOperations as QC, DocumentStoreExtraOptions as QS, LoginComponentProps as QT, RequestErrorClassification as Q_, OperationsAPI as Qa, useVersionRelease as Qb, SANITY_PATCH_TYPE as Qc, isReleaseVersion as Qd, useScheduledDraftsEnabled as Qf, buildRangeDecorationSelectionsFromComments as Qg, isScheduleDocumentVersionEvent as Qh, KeyValueStoreValue as Qi, PopoverDialog as Ql, AnnotationDetails as Qm, ArrayOfPrimitivesFunctions as Qn, ArrayInputFunctionsProps as Qo, useDocumentChange as Qp, FieldPresenceWithOverlay as Qr, BlockProps as Qs, toMutationPatches as Qt, useFormState as Qu, SearchButton as Qv, getDraftId as Qw, RESOLVE_INITIAL_VALUE_TIMEOUT_MS as Qx, MatchWorkspaceResult as Qy, DocumentAskToEditEnabledContext as R, TrackerContextGetSnapshot as RC, useFilteredReleases as RS, isAuthStore as RT, StudioAnnouncementsDialog as R_, InitialValueLoadingMsg as Ra, CommentStatus as Rb, useReferenceInputOptions as Rc, ALL_FIELDS_GROUP as Rd, LoadingTuple as Rf, DocumentGroupInventoryReferencePreviewLinkProps as Rg, EventsStore as Rh, PresenceStore as Ri, DefaultPreviewProps as Rl, ChangesError as Rm, NumberInput as Rn, unstable_useObserveDocument as Ro, FIXME as Rp, FormFieldSet as Rr, RenderBlockCallback as Rs, DocumentFieldActionGroup as Rt, useSetVariant as Ru, ToolLink as Rv, ReleasesNavMenuItemPropsGetter as Rw, Rule as Rx, ColorSchemeProviderProps as Ry, useMiddlewareComponents as S, UseDateTimeFormatOptions as SC, DocumentField as SS, CommandListHandle as ST, WorkspaceProviderProps as S_, useInitialValueResolverContext as Sa, CommentsEnabledProvider as Sb, FormProvider as Sc, ObjectArrayFormNode as Sd, isCardinalityOnePerspective as Sf, DynamicFeedbackTags as Sg, StringSegmentChanged$1 as Sh, useGrantsStore as Si, StatusButtonProps as Sl, DiffTooltipProps as Sm, TextInputProps as Sn, MutationResult as So, DocumentActionProps as Sp, DivergencesProvider as Sr, ComplexElementProps as Ss, ReleaseActionComponent as St, LATEST as Su, PasteOptions as Sv, ObserveDocumentTypeFromIdFn as Sw, Locale as Sx, createSearch as Sy, AssetSourceResolver as T, ConnectionState as TC, useProjectId as TS, CommandListRenderItemCallback as TT, UpsellDescriptionSerializer as T_, useDocumentValues as Ta, CommentContext as Tb, FormBuilderProps as Tc, PrimitiveFormNode as Td, PartialExcept as Tf, TagValue as Tg, FieldValueError as Th, usePresenceStore as Ti, RelativeTimeProps as Tl, DiffStringSegment as Tm, TagsArrayInput as Tn, WithVersion as To, SanityDefinedAction as Tp, FormCell as Tr, InputProps as Ts, ReleaseActionsContext as Tt, ReleasesUpsellContextValue as Tu, FormDecPatch as Tv, PreviewPath as Tw, LocaleNestedResource as Tx, SearchFactoryOptions as Ty, DocumentInspectorsResolver as U, Reported as UC, useDocumentSyncState as US, AuthStoreOptions as UT, SourceProvider as U_, remoteSnapshots as Ua, CommentUpdatePayload as Ub, FormCallbacksProvider as Uc, SANITY_VERSION as Ud, buildLegacyTheme as Uf, ScrollContainerProps as Ug, UnpublishDocumentEvent as Uh, PresenceLocation as Ui, PortableTextPreviewLayoutKey as Ul, ChangeBreadcrumb as Um, getCalendarLabels as Un, Preview as Uo, isEmptyObject as Up, FormFieldProps as Ur, RenderPreviewCallbackProps as Us, DocumentFieldActionStatus as Ut, ParseError as Uu, LayoutProps as Uv, DRAFTS_FOLDER as Uw, FormattableMeasurementUnit as Ux, useColorSchemeValue as Uy, DocumentCommentsEnabledContext as V, useTrackerStoreReporter as VC, DocumentSyncState as VS, MockAuthStoreOptions as VT, Studio as V_, InitialValueSuccessMsg as Va, CommentThreadItem as Vb, useParseErrors as Vc, useNavigateToCanvasDoc as Vd, catchWithCount as Vf, ScrollEventHandler as Vg, PublishDocumentVersionEvent as Vh, DocumentPresence as Vi, GeneralDocumentListLayoutKey as Vl, ChangeList as Vm, EmailInput as Vn, SanityDefaultPreviewProps as Vo, getItemKeySegment as Vp, FormFieldHeaderTextProps as Vr, RenderItemCallback as Vs, DocumentFieldActionNode as Vt, DivergenceNavigator as Vu, StudioNavbar as Vv, SystemVariant as Vw, UserWithPermission as Vx, useColorSchemeOptions as Vy, DocumentLanguageFilterComponent as W, ReporterHook as WC, useDocumentOperationEvent as WS, CreateAuthStoreOptions as WT, SourceProviderProps as W_, OperationError as Wa, CommentsListBreadcrumbItem as Wb, FormCallbacksValue as Wc, getVariantTitle as Wd, LegacyThemeProps as Wf, useOnScroll as Wg, UnscheduleDocumentVersionEvent as Wh, Session as Wi, PreviewComponent as Wl, useAnnotationColor as Wm, DateTimeInput as Wn, isArrayOfBlocksInputProps as Wo, normalizeIndexSegment as Wp, PresenceScope as Wr, BaseItemProps as Ws, DocumentFieldActionTone as Wt, mergeParseErrors as Wu, LogoProps as Wv, DraftId as Ww, UnitFormatter as Wx, StudioColorScheme as Wy, GroupableActionDescription as X, ChangeFieldWrapper as XC, DocumentPairLoadedEvent as XS, AuthStore as XT, passthroughErrorHandler as X_, OperationArgs as Xa, CommentsAuthoringPathProvider as Xb, RebasePatchMsg as Xc, isDraftVersion as Xd, MentionUserContextValue as Xf, CollapseMenuProps as Xg, isEditDocumentVersionEvent as Xh, createKeyValueStore as Xi, ReferenceInputPreviewCard as Xl, visitDiff as Xm, UniversalArrayInput as Xn, isObjectItemProps as Xo, stringToPath as Xp, FieldPresenceInnerProps as Xr, BlockDecoratorProps as Xs, MutationPatch as Xt, FormState as Xu, StudioLogo as Xv, createPublishedFrom as Xw, useTemplates as Xx, useActiveWorkspace as Xy, FormBuilderComponentResolverContext as Y, ChangeIndicatorProps as YC, editState$1 as YS, AuthState as YT, createRequestErrorChannel as Y_, Operation as Ya, CommentsAuthoringPathContextValue as Yb, PatchMsgSubscriber as Yc, VersionType as Yd, TasksNavigationContextValue as Yf, CollapseMenu as Yg, isDeleteDocumentVersionEvent as Yh, createUserStore as Yi, PreviewCardContextValue as Yl, getDiffAtPath as Ym, BooleanInput as Yn, isObjectInputProps as Yo, pathsAreEqual as Yp, FieldPresenceInner as Yr, BlockAnnotationProps as Ys, encodePath as Yt, getExpandOperations as Yu, ToolMenuProps as Yv, createDraftFrom as Yw, useTimeAgo as Yx, AddonDatasetProvider as Yy, MediaLibraryConfig as Z, sortReleases as ZC, DocumentRebaseTelemetryEvent as ZS, HandleCallbackResult as ZT, ConfigErrorClassification as Z_, OperationImpl as Za, useWorkspaceSchemaId as Zb, createPatchChannel as Zc, isPublishedVersion as Zd, DEFAULT_STUDIO_CLIENT_OPTIONS as Zf, buildTextSelectionFromFragment as Zg, isPublishDocumentVersionEvent as Zh, KeyValueStore as Zi, usePreviewCard as Zl, Annotation as Zm, ArrayOfPrimitivesInput as Zn, isStringInputProps as Zo, resolveDiffComponent as Zp, FieldPresenceProps as Zr, BlockListItemProps as Zs, fromMutationPatches as Zt, UseFormStateOptions as Zu, SearchDialog as Zv, documentIdEquals as Zw, DEFAULT_MAX_RECURSION_DEPTH as Zx, MatchWorkspaceOptions as Zy, createDefaultIcon as _, MutationPayload as _C, createSanityMediaLibraryImageSource as _E, useStudioUrl as _S, CommandList as _T, WorkspaceLoaderBoundary as __, Grant as _a, RouterHistory as _b, UploaderResolver as _c, DocumentFormNode as _d, _isCustomDocumentTypeDefinition as _f, useFeedback as _g, NumberDiff$1 as _h, useDocumentPresence as _i, ToastParams$1 as _l, FromToProps as _m, ArrayOfObjectsInputMember as _n, DocumentRemoteMutationVersionEvent as _o, DocumentActionDialogProps as _p, GetFormValueProvider as _r, ArrayOfObjectsInputProps as _s, Workspace as _t, RELEASES_STUDIO_CLIENT_OPTIONS as _u, useCopyPaste as _v, DraftsModelDocumentAvailability as _w, defineLocalesResources as _x, SearchOperatorParams as _y, resolveSchemaTypes as a, IdPair as aC, WorkspacesProvider as aE, defaultTemplatesForSchema as aS, isDraftId as aT, CommentsContextValue as a_, createGrantsStore as aa, useWorkspaces as ab, UploadEvent as ac, ArrayOfPrimitivesItemMember as ad, LoadableState as af, createUserColorManager as ag, ChunkType as ah, RegionWithIntersectionDetails as ai, setIfMissing as al, noop as am, ObjectInputMemberProps as an, DocumentRevision as ao, SchedulesContext as ap, ArrayOfObjectsInput as ar, RenderBlockActionsProps as as, PreparedConfig as at, useCopyErrorDetails as au, getApiErrorCode as av, isReleaseDocument as aw, defaultLocale as ax, defineSearchFilter as ay, ConfigPropertyError as b, StoreRequestErrorHandler as bC, RelativeTimeOptions as bS, CommandListGetItemKeyCallback as bT, ErrorMessageProps as b_, useResolveInitialValueForType as ba, CommentsIntentProvider as bb, StudioCrossDatasetReferenceInput as bc, NodeDiffProps as bd, createSWR as bf, useInStudioFeedback as bg, StringDiff$1 as bh, useDocumentPreviewStore as bi, TextWithToneProps as bl, Event$1 as bm, UrlInputProps as bn, DocumentVersion as bo, DocumentActionModalDialogProps as bp, FormValueProvider as br, BaseInputProps as bs, WorkspaceOptions as bt, getReleaseTone as bu, CopyPasteContextType as bv, InvalidationChannelEvent as bw, LocaleProviderBase as bx, ValuelessSearchOperatorParams as by, createWorkspaceFromConfig as c, ReconnectEvent as cC, AuthProvider as cE, Template as cS, isSystemBundleName as cT, COMMENTS_INSPECTOR_NAME as c_, getDocumentValuePermissions as ca, VisibleWorkspacesContextValue as cb, FileInputProps as cc, FieldMember as cd, asLoadable as cf, HexColor as cg, DiffComponentOptions as ch, DocumentPreviewPresence as ci, useZIndex as cl, RevertChangesConfirmDialog as cm, MemberField as cn, createHistoryStore as co, DocumentBadgeDescription as cp, FormBuilderContextValue as cr, ArrayOfPrimitivesFieldProps as cs, SanityFormConfig as ct, ErrorActionsProps as cu, renderStudio as cv, DocumentPreviewStoreOptions as cw, UseTranslationResponse as cx, operatorDefinitions as cy, flattenConfig as d, WelcomeEvent as dC, AgentVersionDisplay as dE, TemplateItem as dS, removeDupes as dT, CommentInput as d_, DocumentPermission as da, getWorkspaceIdentifier as db, FileLike as dc, ObjectMember as dd, truncateString as df, UserColorManager as dg, FieldChangeNode as dh, useUser as di, UserAvatar as dl, MetaInfo as dm, ArrayOfPrimitivesItem as dn, TimelineController as do, HookCollectionActionHook as dp, useFieldActions as dr, FieldCommentsProps as ds, SingleWorkspace as dt, DocumentStatus as du, GenerateStudioManifestOptions as dv, ApiConfig as dw, useLocale as dx, OperatorButtonValueComponentProps as dy, LatencyReportEvent as eC, RequestErrorClaim as eE, isBuilder as eS, getPublishedId as eT, useCommentsTelemetry as e_, TemplatePermissionsResult as ea, WorkspacesContextValue as eb, MarkdownConfig as ec, StateTree as ed, readVersionType as ef, isUnscheduleDocumentVersionEvent as eg, ArrayItemMetadata as eh, FormNodePresence as ei, diffMatchPatch as el, isAddedItemDiff as em, useDocumentForm as en, snapshotPair as eo, usePausedScheduledDraft as ep, ArrayOfOptionsInput as er, FormBuilderFilterFieldFn as es, NewDocumentOptionsContext as et, InsufficientPermissionsMessage as eu, classifyRequestError as ev, useIsReleaseActive as ew, ValidateDocumentOptions as ex, useSearchMaxFieldDepth as ey, PluginFactory as f, CommitFunction as fC, useAgentVersionDisplay as fE, TemplateParameter as fS, systemBundles as fT, CommentInputHandle as f_, getDocumentPairPermissions as fa, WorkspaceLike as fb, ResolvedUploader as fc, ArrayOfObjectsFormNode as fd, uncaughtErrorHandler as ff, UserId as fg, FieldOperationsAPI as fh, ResourceCache as fi, UserAvatarProps as fl, MetaInfoProps as fm, PrimitiveMemberItemProps as fn, TimelineControllerOptions as fo, useScheduleAction as fp, FieldActionsProps as fr, FieldProps as fs, Source as ft, formatRelativeLocalePublishDate as fu, generateStudioManifest as fv, AvailabilityReason as fw, useGetI18nText as fx, OperatorInputComponentProps as fy, defineConfig as g, DocumentRemoteMutationEvent as gC, createSanityMediaLibraryFileSource as gE, useSyncState as gS, ContextMenuButton as gT, UpsellData as g_, EvaluationParams as ga, ActiveWorkspaceMatcherProps as gb, UploaderDef as gc, ComputeDiff as gd, joinPath as gf, UseFeedbackReturn as gg, NullDiff$1 as gh, useGlobalPresence as gi, ImperativeToast as gl, FromTo as gm, ArrayOfObjectsInputMembersProps as gn, CombinedDocument as go, DocumentActionDescription as gp, FieldActionMenuProps as gr, StringFieldProps as gs, Tool as gt, isReleaseScheduledOrScheduling as gu, CopyPasteProvider as gv, DraftsModelDocument as gw, defineLocaleResourceBundle as gx, SearchOperatorInput as gy, createConfig as h, DocumentRebaseEvent as hC, EditPortal as hE, SyncState as hS, getDocumentVariantType as hT, CommentsUpsellContextValue as h_, DocumentValuePermission as ha, ActiveWorkspaceMatcher as hb, Uploader as hc, BooleanFormNode as hd, fieldNeedsEscape as hf, useStudioFeedbackTags as hg, ItemDiff$1 as hh, useResourceCache as hi, ZIndexContextValue as hl, FromToArrowDirection as hm, ArrayOfObjectsInputMembers as hn, TimelineOptions as ho, DocumentActionCustomDialogComponentProps as hp, FieldActionMenu as hr, PrimitiveFieldProps as hs, TemplateResolver as ht, isPublishedPerspective as hu, StudioWorkspaceManifest as hv, DocumentStackAvailability as hw, defineLocale as hx, SearchOperatorButtonValue as hy, SchemaError as i, DocumentPairTarget as iC, CorsProbeOutcome as iE, defaultTemplateForType as iS, isDraft as iT, useComments as i_, GrantsStoreOptions as ia, validateWorkspaces as ib, ArrayInputMoveItemEvent as ic, ArrayOfObjectsMember as id, ErrorState as if, UserColorManagerOptions as ig, Chunk as ih, Rect as ii, set as il, isUnchangedDiff as im, ObjectInputMember as in, useTimelineStore as io, createSchema as ip, useVirtualizerScrollInstance as ir, RenderBlockActionsCallback as is, PluginOptions as it, serializeError as iu, parseRetryAfter as iv, VersionInfoDocumentStub as iw, TranslationProps as ix, SearchFilterDefinition as iy, Config as j, CommentDeleteDialog as jC, useListFormat as jS, ConnectionStatus as jT, StudioProvider as j_, createDocumentStore as ja, CommentMessage as jb, defaultRenderItem as jc, InvalidItemTypeError as jd, globalScope as jf, ConsentStatus as jg, CreateDocumentVersionEvent as jh, createProjectStore as ji, BlockImagePreview as jl, DiffErrorBoundary as jm, ReferenceAutocomplete as jn, createObservableBufferedDocument as jo, useGetDefaultPerspective as jp, FormFieldValidationError as jr, PortableTextInputProps as js, DocumentInspectorUseMenuItemProps as jt, DEFAULT_DECORATORS as ju, FormPatchBase as jv, ReleaseTitle as jw, LocaleWeekInfo as jx, SearchPopover as jy, BetaFeatures as k, useClient as kC, useManageFavorite as kS, ConnectedStatus as kT, UpsellDialogViewed as k_, DocumentStoreOptions as ka, CommentIntentGetter as kb, defaultRenderInlineBlock as kc, FieldError as kd, isNonNullable as kf, FeedbackDialogProps as kg, useEvents as kh, useProjectDatasets as ki, InlinePreviewProps as kl, DiffFromToProps as km, SlugInputProps as kn, createBufferedDocument as ko, useSetPerspective as kp, FormInputRelativePathArg as kr, OnPathFocusPayload as ks, DocumentInspectorMenuItem as kt, RELEASES_INTENT as ku, FormInsertPatchPosition as kv, VersionInlineBadge as kw, LocaleResourceRecord as kx, compileFieldPath as ky, resolveConfig as l, ResetEvent as lC, CookielessCompatibleLoginMethod as lE, TemplateArrayFieldDefinition as lS, isVersionId as lT, CommentInlineHighlightSpan as l_, useDocumentValuePermissions as la, VisibleWorkspacesProvider as lb, StudioFileInput as lc, FieldSetMember as ld, useLoadable as lf, UserColor as lg, DiffComponentResolver as lh, DocumentPreviewPresenceProps as li, WithReferringDocuments as ll, RevertChangesButton as lm, MemberFieldProps as ln, removeMissingReferences as lo, DocumentBadgeProps as lp, useHoveredField as lr, BaseFieldProps as ls, ScheduledPublishingPluginOptions as lt, DocumentStatusIndicator as lu, uploadSchema as lv, ObserveForPreviewFn as lw, useTranslation as lx, I18nSearchOperatorDescriptionKey as ly, definePlugin as m, DocumentMutationEvent as mC, EnhancedObjectDialog as mE, TypeTarget as mS, DocumentVariantType as mT, CommentsList as m_, useDocumentPairPermissionsFromHookFactory as ma, ConfigErrorGate as mb, UploadProgressEvent as mc, BaseFormNode as md, escapeField as mf, FeedbackContextValue as mg, GroupChangeNode as mh, ResourceCacheProviderProps as mi, ZIndexContextValueKey as ml, FromToArrow as mm, MemberItemProps as mn, Timeline as mo, DocumentActionConfirmDialogProps as mp, FieldActionsProvider as mr, ObjectFieldProps as ms, SourceOptions as mt, isDraftPerspective as mu, StudioManifest as mv, DocumentAvailability as mw, useI18nText as mx, SearchOperatorBuilder as my, getConfigContextFromSource as n, MutationPerformanceEvent as nC, StudioErrorHandler as nE, resolveInitialValue as nS, getVersionId as nT, useCommentsEnabled as n_, useTemplatePermissions as na, validateBasePaths as nb, ArrayInputCopyEvent as nc, FieldsetState as nd, useThrottledCallback as nf, UserColorManagerProvider as ng, ChangeNode as nh, Position as ni, insert as nl, isGroupChange as nm, ObjectMembers as nn, TimelineState as no, useSingleDocRelease as np, VirtualizerScrollInstanceProvider as nr, FormBuilderMarkersComponent as ns, PartialContext as nt, Hotkeys as nu, isNetworkError as nv, useDocumentVersionTypeSortedList as nw, Translate as nx, SearchProvider as ny, CreateWorkspaceFromConfigOptions as o, MutationEvent as oC, WorkspacesProviderProps as oE, prepareTemplates as oS, isPublishedId as oT, hasCommentMessageValue as o_, grantsPermissionOn as oa, evaluateWorkspaceHidden as ob, ImageInputProps as oc, ArrayOfPrimitivesMember as od, LoadedState as of, useUserColor as og, Diff$1 as oh, ReportedRegionWithRect as oi, unset as ol, DocumentChangeContextInstance as om, MemberFieldSet as on, HistoryStore as oo, ScheduledBadge as op, ArrayOfObjectsFunctions as or, RenderCustomMarkers as os, ReleaseActionsResolver as ot, ErrorWithId as ou, isInvalidSessionError as ov, MetadataWrapper as ow, usEnglishLocale as ox, defineSearchFilterOperators as oy, createPlugin as p, CommittedEvent as pC, isAgentBundleName as pE, TemplateReferenceTarget as pS, Chip as pT, CommentInputProps as p_, useDocumentPairPermissions as pa, CorsOriginErrorScreen as pb, UploadOptions as pc, ArrayOfPrimitivesFormNode as pd, supportsTouch as pf, FeedbackContext as pg, FromToIndex as ph, ResourceCacheProvider as pi, LegacyLayerProvider as pl, GroupChange as pm, ArrayOfObjectsItem as pn, ParsedTimeRef as po, DocumentActionComponent as pp, FieldActionsResolver as pr, NumberFieldProps as ps, SourceClientOptions as pt, getDocumentIsInPerspective as pu, ManifestWorkspaceInput as pv, AvailabilityResponse as pw, I18nNode as px, SearchOperatorBase as py, DocumentLayoutProps as q, ConnectorContextValue as qC, useDocumentIdStack as qS, createAuthStore as qT, RequestErrorDialog as q_, operationEvents as qa, CommentsUIMode as qb, PatchChannel as qc, measureFirstEmission as qd, TasksUpsellContextValue as qf, CommonProps as qg, isCreateLiveDocumentEvent as qh, UserStore as qi, PreviewProps as ql, getAnnotationAtPath as qm, DateInputProps as qn, isBooleanInputProps as qo, normalizePathSegment as qp, PresenceOverlayProps as qr, ObjectItemProps as qs, TransformPatches as qt, ExpandPathOperation as qu, StudioComponents as qv, VERSION_FOLDER as qw, useTools as qx, useAddonDataset as qy, useConfigContextFromSource as r, getPairListener as rC, CorsCheckResult as rE, resolveInitialValueForType as rS, idMatchesPerspective as rT, CommentsEnabledContextValue as r_, useTemplatePermissionsFromHookFactory as ra, validateNames as rb, ArrayInputInsertEvent as rc, ArrayOfObjectsItemMember as rd, userHasRole as rf, UserColorManagerProviderProps as rg, ChangeTitlePath as rh, PresentUser as ri, prefixPath as rl, isRemovedItemDiff as rm, ObjectMembersProps as rn, TimelineStore as ro, getSchemaTypeTitle as rp, VirtualizerScrollInstance as rr, PortableTextMarker as rs, Plugin as rt, HotkeysProps$1 as ru, isTimeoutError as rv, useDocumentVersions as rw, TranslateComponentMap as rx, SearchContextValue as ry, createSourceFromConfig as s, PendingMutationsEvent as sC, AuthConfig as sE, InitialValueTemplateItem as sS, isSystemBundle as sT, isTextSelectionComment as s_, DocumentValuePermissionsOptions as sa, useVisibleWorkspaces as sb, StudioImageInput as sc, DecorationMember as sd, LoadingState as sf, useUserColorManager as sg, DiffComponent as sh, Size as si, ZIndexProvider as sl, ValueError as sm, MemberFieldError as sn, HistoryStoreOptions as so, DocumentBadgeComponent as sp, useDidUpdate as sr, ArrayFieldProps as ss, ResolveProductionUrlContext as st, ErrorActions as su, isUnauthorizedError as sv, DocumentPreviewStore as sw, UseTranslationOptions as sx, SearchOperatorType as sy, ActiveWorkspaceMatcherContextValue as t, ListenerEvent as tC, RequestErrorReportOptions as tE, resolveInitialObjectValue as tS, getVersionFromId as tT, useCommentsSelectedPath as t_, getTemplatePermissions as ta, ValidateWorkspaceOptions as tb, PortableTextPluginsProps as tc, FieldsetMembers as td, useUnique as tf, isUpdateLiveDocumentEvent as tg, BooleanDiff$1 as th, Location as ti, inc as tl, isFieldChange as tm, ObjectInputMembers as tn, useTimelineSelector as to, SingleDocReleaseProvider as tp, ArrayOfObjectOptionsInput as tr, FormBuilderInputComponentMap as ts, NewDocumentOptionsResolver as tt, InsufficientPermissionsMessageProps as tu, isClientRequestError as tv, useFormatRelativeLocalePublishDate as tw, validateDocument as tx, useSearchState as ty, prepareConfig as u, WelcomeBackEvent as uC, LoginMethod as uE, TemplateFieldDefinition as uS, newDraftFrom as uT, CommentInputContextValue as u_, DocumentPairPermissionsOptions as ua, getNamelessWorkspaceIdentifier as ub, AssetSourcesResolver as uc, FieldsetRenderMembersCallback as ud, sliceString as uf, UserColorHue as ug, DiffProps as uh, useCurrentUser as ui, AvatarSkeleton as ul, NoChanges as um, MemberItemError as un, SelectionState as uo, GetHookCollectionStateProps as up, HoveredFieldProvider as ur, BooleanFieldProps as us, SchemaPluginOptions as ut, CapabilityGate as uu, LiveManifestRegisterProvider as uv, createDocumentPreviewStore as uw, useCurrentLocale as ux, I18nSearchOperatorNameKey as uy, ConfigResolutionError as v, RemoteSnapshotEvent as vC, useSchema as vS, CommandListElementType as vT, useWorkspaceLoader as v_, GrantsStore as va, CommentsSelectedPath as vb, StudioReferenceInput as vc, HiddenField as vd, _isSanityDocumentTypeDefinition as vf, SendFeedbackOptions as vg, ObjectDiff$1 as vh, useComlinkStore as vi, TooltipOfDisabled as vl, FieldChange as vm, ArrayOfObjectsMemberProps as vn, Transaction as vo, DocumentActionGroup as vp, useGetFormValue as vr, ArrayOfPrimitivesElementType as vs, WorkspaceHiddenContext as vt, isReleasePerspective as vu, BaseOptions as vv, FieldName as vw, removeUndefinedLocaleResources as vx, SearchValueFormatterContext as vy, AppsOptions as w, useDataset as wC, useReconnectingToast as wS, CommandListProps as wT, InterpolationProp as w_, isNewDocument as wa, CommentBaseCreatePayload as wb, FormBuilder as wc, ObjectRenderMembersCallback as wd, isPausedCardinalityOneRelease as wf, Sentiment as wg, TypeChangeDiff$1 as wh, useKeyValueStore as wi, RelativeTime as wl, DiffString as wm, TelephoneInputProps as wn, RemoteSnapshotVersionEvent as wo, DuplicateDocumentActionComponent as wp, FormContainer as wr, InputOnSelectFileFunctionProps as ws, ReleaseActionProps as wt, useReleasesIds as wu, PatchEvent as wv, PreparedSnapshot as ww, LocaleDefinition as wx, getSearchableTypes as wy, ConfigPropertyErrorOptions as x, useDialogStack as xC, useRelativeTime as xS, CommandListGetItemSelectedCallback as xT, WorkspaceProvider as x_, useInitialValue as xa, CommentsIntentProviderProps as xb, StudioCrossDatasetReferenceInputProps as xc, NumberFormNode as xd, CardinalityOneRelease as xf, BaseFeedbackTags as xg, StringDiffSegment as xh, useDocumentStore as xi, StatusButton as xl, DiffTooltip as xm, TextInput as xn, DocumentVersionEvent as xo, DocumentActionPopoverDialogProps as xp, useFormValue as xr, BooleanInputProps as xs, WorkspaceSummary as xt, getReleaseIdFromReleaseDocumentId as xu, DocumentMeta as xv, ObserveDocumentAvailabilityFn as xw, ImplicitLocaleResourceBundle as xx, defineSearchOperator as xy, ConfigResolutionErrorOptions as y, SnapshotEvent as yC, useReviewChanges as yS, CommandListGetItemDisabledCallback as yT, ErrorMessage as y_, PermissionCheckResult as ya, CommentsSelectedPathContextValue as yb, StudioReferenceInputProps as yc, NodeChronologyProps as yd, _isType as yf, UseInStudioFeedbackReturn as yg, ReferenceDiff as yh, useConnectionStatusStore as yi, TextWithTone as yl, FallbackDiff as ym, UrlInput as yn, CommitError as yo, DocumentActionKeys as yp, FormValueContextValue as yr, ArrayOfPrimitivesInputProps as ys, WorkspaceHiddenProperty as yt, isGoingToUnpublish as yu, CopyOptions as yv, Id as yw, LocaleProvider as yx, ValuelessSearchOperatorBuilder as yy, DocumentBadgesContext as z, TrackerContextStore as zC, useFeatureEnabled as zS, isCookielessCompatibleLoginMethod as zT, StudioAnnouncementsContextValue as z_, InitialValueMsg as za, CommentTaskCreatePayload as zb, ParseErrorsProvider as zc, resolveConditionalProperty as zd, ReactHook as zf, DocumentGroupInventoryAction as zg, EventsStoreRevision as zh, SESSION_ID as zi, CompactPreview as zl, ChangeResolver as zm, AssetAccessPolicy as zn, useUnstableObserveDocument as zo, findIndex as zp, FormFieldSetProps as zr, RenderFieldCallback as zs, DocumentFieldActionHook as zt, isDocumentLimitError as zu, ToolLinkProps as zv, SelectedPerspective as zw, UserListWithPermissionsHookValue as zx, useColorScheme as zy };
17868
+ export { NewDocumentCreationContext as $, useVersionOperations as $C, DocumentStoreExtraOptions as $S, LoginComponentProps as $T, RequestErrorClassification as $_, DocumentVersionSnapshots as $a, useVersionRelease as $b, dec as $c, isVariantVersion as $d, useScheduledDraftsEnabled as $f, buildRangeDecorationSelectionsFromComments as $g, isScheduleDocumentVersionEvent as $h, TemplatePermissionsOptions as $i, IntentButton as $l, AnnotationDetails as $m, ArrayOfPrimitiveOptionsInput as $n, FormBuilderCustomMarkersComponent as $o, useDocumentChange as $p, FieldPresenceData as $r, BlockStyleProps as $s, useFormBuilder as $t, setAtPath as $u, SearchButton as $v, getDraftId as $w, RESOLVE_INITIAL_VALUE_TIMEOUT_MS as $x, MatchWorkspaceResult as $y, ComposableOption as A, useClient as AC, useManageFavorite as AS, ConnectedStatus as AT, UpsellDialogViewed as A_, QueryParams$1 as Aa, CommentIntentGetter as Ab, defaultRenderInput as Ac, IncompatibleTypeError as Ad, isArray as Af, FeedbackDialogProps as Ag, useEvents as Ah, useProject as Ai, BlockPreview as Al, DiffFromToProps as Am, SelectInput as An, CommitRequest as Ao, useSetPerspective as Ap, FormFieldValidation as Ar, PasteData$1 as As, DocumentInspectorProps as At, DEFAULT_ANNOTATIONS as Au, FormInsertPatchPosition as Av, VersionInlineBadge as Aw, LocaleResourceRecord as Ax, compileFieldPath as Ay, DocumentBadgesResolver as B, TrackerContextStore as BC, useFeatureEnabled as BS, isCookielessCompatibleLoginMethod as BT, StudioAnnouncementsContextValue as B_, InitialValueState as Ba, CommentTaskCreatePayload as Bb, useParseErrorForPath as Bc, getDocumentIdForCanvasLink as Bd, ReactHook as Bf, DocumentGroupInventoryAction as Bg, EventsStoreRevision as Bh, createPresenceStore as Bi, CompactPreviewProps as Bl, ChangeResolver as Bm, ImageUrlBuilder$1 as Bn, SanityDefaultPreview as Bo, findIndex as Bp, FormFieldHeaderText as Br, RenderInputCallback as Bs, DocumentFieldActionItem as Bt, useDocumentLimitsUpsellContext as Bu, ToolLinkProps as Bv, SelectedPerspective as Bw, UserListWithPermissionsHookValue as Bx, useColorScheme as By, ActionComponent as C, UseDateTimeFormatOptions as CC, DocumentField as CS, CommandListHandle as CT, WorkspaceProviderProps as C_, selectUpstreamVersion as Ca, CommentsEnabledProvider as Cb, FormProviderProps as Cc, ObjectFormNode as Cd, isCardinalityOneRelease as Cf, DynamicFeedbackTags as Cg, StringSegmentChanged$1 as Ch, useHistoryStore as Ci, Resizable as Cl, DiffTooltipProps as Cm, TelephoneInput as Cn, Pair as Co, DocumentActionProps as Cp, useDocumentDivergences as Cr, EditorChange as Cs, ReleaseActionDescription as Ct, PUBLISHED as Cu, PasteOptions as Cv, ObserveDocumentTypeFromIdFn as Cw, Locale as Cx, createSearch as Cy, AsyncConfigPropertyReducer as D, connectionState as DC, UseNumberFormatOptions as DS, BetaBadge as DT, UpsellDialogDismissed as D_, useDocumentType as Da, CommentCreatePayload as Db, defaultRenderBlock as Dc, ArrayItemError as Dd, isString as Df, StudioFeedbackDialog as Dg, getValueError as Dh, useRenderingContextStore as Di, TemplatePreviewProps as Dl, DiffInspectWrapper as Dm, StringInput as Dn, BufferedDocumentEvent as Do, isSanityDefinedAction as Dp, FormInput as Dr, ObjectInputProps as Ds, DocumentInspector as Dt, useArchivedReleases as Du, FormDiffMatchPatch as Dv, Previewable as Dw, LocalePluginOptions as Dx, SearchOptions as Dy, AsyncComposableOption as E, ConnectionState as EC, useProjectId as ES, CommandListRenderItemCallback as ET, UpsellDescriptionSerializer as E_, DocumentTypeResolveState as Ea, CommentContext as Eb, defaultRenderAnnotation as Ec, StringFormNode as Ed, isTruthy as Ef, TagValue as Eg, FieldValueError as Eh, useProjectStore as Ei, TemplatePreview as El, DiffStringSegment as Em, TagsArrayInputProps as En, checkoutPair as Eo, SanityDefinedAction as Ep, FormRow as Er, NumberInputProps as Es, FormComponents as Et, useDocumentVersionInfo as Eu, FormDecPatch as Ev, PreviewPath as Ew, LocaleNestedResource as Ex, SearchFactoryOptions as Ey, DocumentActionsContext as F, useChangeIndicatorsReporter as FC, FormDocumentValue as FS, ErrorStatus as FT, StudioLayout as F_, InitialValueOptions as Fa, CommentPostPayload as Fb, ReferenceInputOptions as Fc, UndeclaredMembersError as Fd, getErrorMessage as Ff, isProd as Fg, DeleteDocumentVersionEvent as Fh, ProjectGrants as Fi, DetailPreview as Fl, DiffCard as Fm, PortableTextMemberItem as Fn, getPreviewPaths as Fo, ReleasesNav as Fp, FormFieldValidationStatusProps as Fr, RenderAnnotationCallback as Fs, defineDocumentFieldAction as Ft, getTargetScopeId as Fu, FormSetIfMissingPatch as Fv, VersionChip as Fw, StaticLocaleResourceBundle as Fx, Filters as Fy, DocumentLanguageFilterContext as G, ReporterHook as GC, useDocumentOperationEvent as GS, CreateAuthStoreOptions as GT, SourceProviderProps as G_, OperationSuccess as Ga, CommentsListBreadcrumbItem as Gb, useFormCallbacks as Gc, useVariantDocumentOperations as Gd, LegacyThemeProps as Gf, useOnScroll as Gg, UnscheduleDocumentVersionEvent as Gh, Status as Gi, PreviewLayoutKey as Gl, useAnnotationColor as Gm, DateTimeInputProps as Gn, isArrayOfObjectsInputProps as Go, normalizeIndexSegment as Gp, PresenceScopeProps as Gr, ItemProps as Gs, DocumentFieldActionsResolver as Gt, ExpandFieldSetOperation as Gu, LogoProps as Gv, DraftId as Gw, UnitFormatter as Gx, StudioColorScheme as Gy, DocumentInspectorContext as H, useTrackerStoreReporter as HC, DocumentSyncState as HS, MockAuthStoreOptions as HT, Studio as H_, validation$1 as Ha, CommentThreadItem as Hb, useReportParseError as Hc, useCanvasCompanionDoc as Hd, catchWithCount as Hf, ScrollEventHandler as Hg, PublishDocumentVersionEvent as Hh, GlobalPresence as Hi, GeneralPreviewLayoutKey as Hl, ChangeList as Hm, EmailInputProps as Hn, PreviewLoader as Ho, getItemKeySegment as Hp, FormField as Hr, RenderPreviewCallback as Hs, DocumentFieldActionProps as Ht, useDivergenceNavigator as Hu, StudioNavbar as Hv, SystemVariant as Hw, UserWithPermission as Hx, useColorSchemeOptions as Hy, DocumentActionsResolver as I, ChangeIndicatorTrackerContextValue as IC, FormattedDuration as IS, RetryingStatus as IT, StudioLayoutComponent as I_, getInitialValueStream as Ia, CommentReactionItem as Ib, ReferenceInputOptionsProvider as Ic, FormFieldGroup as Id, formatRelativeLocale as If, DocumentGroupInventory as Ig, DocumentGroupEvent as Ih, ProjectOrganizationData as Ii, DetailPreviewProps as Il, DiffCardProps as Im, UpdateReadOnlyPlugin as In, unstable_useValuePreview as Io, PerspectiveNotWriteableReason as Ip, FieldStatusProps as Ir, RenderArrayOfObjectsItemCallback as Is, DocumentFieldAction as It, useTargetDocumentState as Iu, FormSetPatch as Iv, PerspectiveContextValue as Iw, TFunction$1 as Ix, ColorSchemeCustomProvider as Iy, DocumentPluginOptions as J, ConnectorContextValue as JC, useDocumentIdStack as JS, createAuthStore as JT, RequestErrorDialog as J_, MapDocument as Ja, CommentsUIMode as Jb, PatchMsg as Jc, measureFirstMatch as Jd, TasksUpsellContextValue as Jf, CommonProps as Jg, isCreateLiveDocumentEvent as Jh, UserStoreOptions as Ji, PreviewCard as Jl, getAnnotationAtPath as Jm, CrossDatasetReferencePreview as Jn, isNumberInputProps as Jo, normalizePathSegment as Jp, FieldPresence as Jr, PrimitiveItemProps as Js, decodePath as Jt, SetActiveGroupOperation as Ju, StudioComponents as Jv, VERSION_FOLDER as Jw, useTools as Jx, useAddonDataset as Jy, DocumentLanguageFilterResolver as K, ChangeConnectorRoot as KC, useDocumentOperation as KS, RequestFailureDiagnostics as KT, useSource as K_, emitOperation as Ka, CommentsTextSelectionItem as Kb, MutationPatchMsg as Kc, isDocumentInSelectedVariant as Kd, LegacyThemeTints as Kf, CollapseMenuButton as Kg, UpdateLiveDocumentEvent as Kh, UserSessionPair as Ki, PreviewMediaDimensions as Kl, useDiffAnnotationColor as Km, DateInput as Kn, isArrayOfPrimitivesInputProps as Ko, normalizeIndexTupleSegment as Kp, PresenceOverlay as Kr, ObjectItem as Ks, DocumentFieldActionsResolverContext as Kt, ExpandOperation as Ku, NavbarAction as Kv, PublishedId as Kw, UseUnitFormatterOptions as Kx, StudioTheme as Ky, DocumentActionsVersionType as L, TrackedArea as LC, UseFormattedDurationOptions as LS, createConnectionStatusStore as LT, isValidAnnouncementAudience as L_, InitialValueErrorMsg as La, CommentReactionOption as Lb, TemplateOption as Lc, ProvenanceDiffAnnotation as Ld, EMPTY_ARRAY as Lf, DocumentGroupInventoryProps as Lg, DocumentVersionEventType as Lh, ProjectStore as Li, DefaultPreview as Ll, TIMELINE_ITEM_I18N_KEY_MAPPING as Lm, ObjectInput as Ln, useValuePreview as Lo, isPerspectiveWriteable as Lp, FormFieldStatus as Lr, RenderArrayOfPrimitivesItemCallback as Ls, DocumentFieldActionDivider as Lt, useAllVariants as Lu, FormUnsetPatch as Lv, PerspectiveStack as Lw, ValidationLocaleResourceKeys as Lx, ColorSchemeLocalStorageProvider as Ly, ConfigContext$1 as M, CommentDeleteDialog as MC, useListFormat as MS, ConnectionStatus as MT, StudioProvider as M_, ListenQueryOptions as Ma, CommentMessage as Mb, defaultRenderPreview as Mc, MissingKeysError as Md, getTargetDocument as Mf, ConsentStatus as Mg, CreateDocumentVersionEvent as Mh, getProjectGrants as Mi, BlockImagePreviewProps as Ml, DiffErrorBoundary as Mm, CreateButton as Mn, prepareForPreview as Mo, useGetDefaultPerspective as Mp, FormFieldValidationInfo as Mr, PrimitiveInputElementProps as Ms, defineDocumentInspector as Mt, ReleaseDocument$1 as Mu, FormPatchBase as Mv, ReleaseTitle as Mw, LocaleWeekInfo as Mx, SearchPopover as My, ConfigPropertyReducer as N, ChangeIndicatorsTracker as NC, GlobalCopyPasteElementHandler as NS, ConnectionStatusStore as NT, StudioProviderProps as N_, ListenQueryParams as Na, CommentOperations as Nb, EditReferenceLinkComponentProps as Nc, MixedArrayError as Nd, getVariantPublishedSibling as Nf, StudioFeedbackProvider as Ng, CreateLiveDocumentEvent as Nh, ProjectData as Ni, MediaPreview as Nl, DiffErrorBoundaryProps as Nm, CreateReferenceOption as Nn, getPreviewValueWithFallback as No, useExcludedPerspective as Np, FormFieldValidationWarning as Nr, PrimitiveInputProps as Ns, initialDocumentFieldActions as Nt, TargetDocumentState as Nu, FormPatchJSONValue as Nv, ReleaseAvatar as Nw, LocalesBundlesOption as Nx, SearchPopoverProps as Ny, BaseActionDescription as O, useConnectionState as OC, useNumberFormat as OS, BetaBadgeProps as OT, UpsellDialogLearnMoreCtaClicked as O_, DocumentStore as Oa, CommentDocument as Ob, defaultRenderField as Oc, DuplicateKeysError as Od, isRecord as Of, StudioFeedbackDialogProps as Og, useEventsStore as Oh, useUserStore as Oi, InlinePreview as Ol, DiffInspectWrapperProps as Om, SlugInput as On, BufferedDocumentWrapper as Oo, SchedulesContextValue as Op, FormInputAbsolutePathArg as Or, OnPasteFn as Os, DocumentInspectorComponent as Ot, useActiveReleases as Ou, FormIncPatch as Ov, PreviewableType as Ow, LocaleResourceBundle as Ox, SearchSort as Oy, DefaultPluginsWorkspaceOptions as P, useChangeIndicatorsReportedValues as PC, useGlobalCopyPasteElementHandler as PS, ConnectionStatusStoreOptions as PT, NavbarContextValue as P_, listenQuery as Pa, CommentPath as Pb, EditReferenceOptions as Pc, TypeAnnotationMismatchError as Pd, getReferencePaths as Pf, isDev as Pg, DeleteDocumentGroupEvent as Ph, ProjectDatasetData as Pi, MediaPreviewProps as Pl, DiffErrorBoundaryState as Pm, PortableTextInput as Pn, getPreviewStateObservable as Po, PerspectiveProvider as Pp, FormFieldValidationStatus as Pr, StringInputProps as Ps, documentFieldActionsReducer as Pt, getPairTarget as Pu, FormPatchOrigin as Pv, ReleaseAvatarIcon as Pw, LocalesOption as Px, SearchHeader as Py, MissingConfigFile as Q, sortReleases as QC, DocumentRebaseTelemetryEvent as QS, HandleCallbackResult as QT, ConfigErrorClassification as Q_, OperationsAPI as Qa, useWorkspaceSchemaId as Qb, SANITY_PATCH_TYPE as Qc, isReleaseVersion as Qd, DEFAULT_STUDIO_CLIENT_OPTIONS as Qf, buildTextSelectionFromFragment as Qg, isPublishDocumentVersionEvent as Qh, KeyValueStoreValue as Qi, PopoverDialog as Ql, Annotation as Qm, ArrayOfPrimitivesFunctions as Qn, ArrayInputFunctionsProps as Qo, resolveDiffComponent as Qp, FieldPresenceWithOverlay as Qr, BlockProps as Qs, toMutationPatches as Qt, useFormState as Qu, SearchDialog as Qv, documentIdEquals as Qw, DEFAULT_MAX_RECURSION_DEPTH as Qx, MatchWorkspaceOptions as Qy, DocumentAskToEditEnabledContext as R, TrackedChange as RC, useFormattedDuration as RS, onRetry as RT, isValidAnnouncementRole as R_, InitialValueLoadingMsg as Ra, CommentReactionShortNames as Rb, useReferenceInputOptions as Rc, ALL_FIELDS_GROUP as Rd, EMPTY_OBJECT as Rf, DocumentGroupInventoryPerspectiveList as Rg, EditDocumentVersionEvent as Rh, PresenceStore as Ri, DefaultPreviewProps as Rl, ChangeTitleSegment as Rm, NumberInput as Rn, unstable_useObserveDocument as Ro, getSelectedVariant as Rp, FormFieldSet as Rr, RenderBlockCallback as Rs, DocumentFieldActionGroup as Rt, useSetVariant as Ru, PatchArg as Rv, ReleaseId as Rw, StudioLocaleResourceKeys as Rx, ColorSchemeProvider as Ry, useMiddlewareComponents as S, useDialogStack as SC, useRelativeTime as SS, CommandListGetItemSelectedCallback as ST, WorkspaceProvider as S_, useInitialValueResolverContext as Sa, CommentsIntentProviderProps as Sb, FormProvider as Sc, ObjectArrayFormNode as Sd, isCardinalityOnePerspective as Sf, BaseFeedbackTags as Sg, StringDiffSegment as Sh, useGrantsStore as Si, StatusButtonProps as Sl, DiffTooltip as Sm, TextInputProps as Sn, MutationResult as So, DocumentActionPopoverDialogProps as Sp, DivergencesProvider as Sr, ComplexElementProps as Ss, ReleaseActionComponent as St, LATEST as Su, DocumentMeta as Sv, ObserveDocumentAvailabilityFn as Sw, ImplicitLocaleResourceBundle as Sx, defineSearchOperator as Sy, AssetSourceResolver as T, useDataset as TC, useReconnectingToast as TS, CommandListProps as TT, InterpolationProp as T_, useDocumentValues as Ta, CommentBaseCreatePayload as Tb, FormBuilderProps as Tc, PrimitiveFormNode as Td, PartialExcept as Tf, Sentiment as Tg, TypeChangeDiff$1 as Th, usePresenceStore as Ti, RelativeTimeProps as Tl, DiffString as Tm, TagsArrayInput as Tn, WithVersion as To, DuplicateDocumentActionComponent as Tp, FormCell as Tr, InputProps as Ts, ReleaseActionsContext as Tt, ReleasesUpsellContextValue as Tu, PatchEvent as Tv, PreparedSnapshot as Tw, LocaleDefinition as Tx, getSearchableTypes as Ty, DocumentInspectorsResolver as U, IsEqualFunction as UC, deriveDocumentSyncState as US, createMockAuthStore as UT, StudioProps as U_, remoteSnapshots as Ua, CommentUpdateOperationOptions as Ub, FormCallbacksProvider as Uc, SANITY_VERSION as Ud, defaultTheme as Uf, ScrollContainer as Ug, ScheduleDocumentVersionEvent as Uh, PresenceLocation as Ui, PortableTextPreviewLayoutKey as Ul, ChangeListProps as Um, getCalendarLabels as Un, Preview as Uo, getValueAtPath as Up, FormFieldProps as Ur, RenderPreviewCallbackProps as Us, DocumentFieldActionStatus as Ut, ParseError as Uu, ActiveToolLayoutProps as Uv, CollatedHit as Uw, useUserListWithPermissions as Ux, useColorSchemeSetValue as Uy, DocumentCommentsEnabledContext as V, useTrackerStore as VC, useEditState as VS, getProviderTitle as VT, StudioAnnouncementsCard as V_, InitialValueSuccessMsg as Va, CommentTextSelection as Vb, useParseErrors as Vc, useNavigateToCanvasDoc as Vd, createHookFromObservableFactory as Vf, ScrollContextValue as Vg, HistoryClearedEvent as Vh, DocumentPresence as Vi, GeneralDocumentListLayoutKey as Vl, ChangeResolverProps as Vm, EmailInput as Vn, SanityDefaultPreviewProps as Vo, getItemKey as Vp, FormFieldHeaderTextProps as Vr, RenderItemCallback as Vs, DocumentFieldActionNode as Vt, DivergenceNavigator as Vu, StudioToolMenu as Vv, TargetPerspective as Vw, UserListWithPermissionsOptions as Vx, useColorSchemeInternalValue as Vy, DocumentLanguageFilterComponent as W, Reported as WC, useDocumentSyncState as WS, AuthStoreOptions as WT, SourceProvider as W_, OperationError as Wa, CommentUpdatePayload as Wb, FormCallbacksValue as Wc, getVariantTitle as Wd, buildLegacyTheme as Wf, ScrollContainerProps as Wg, UnpublishDocumentEvent as Wh, Session as Wi, PreviewComponent as Wl, ChangeBreadcrumb as Wm, DateTimeInput as Wn, isArrayOfBlocksInputProps as Wo, isEmptyObject as Wp, PresenceScope as Wr, BaseItemProps as Ws, DocumentFieldActionTone as Wt, mergeParseErrors as Wu, LayoutProps as Wv, DRAFTS_FOLDER as Ww, FormattableMeasurementUnit as Wx, useColorSchemeValue as Wy, GroupableActionDescription as X, ChangeIndicatorProps as XC, editState$1 as XS, AuthState as XT, createRequestErrorChannel as X_, OperationArgs as Xa, CommentsAuthoringPathContextValue as Xb, RebasePatchMsg as Xc, isDraftVersion as Xd, TasksNavigationContextValue as Xf, CollapseMenu as Xg, isDeleteDocumentVersionEvent as Xh, createKeyValueStore as Xi, ReferenceInputPreviewCard as Xl, getDiffAtPath as Xm, UniversalArrayInput as Xn, isObjectItemProps as Xo, pathsAreEqual as Xp, FieldPresenceInnerProps as Xr, BlockDecoratorProps as Xs, MutationPatch as Xt, FormState as Xu, ToolMenuProps as Xv, createDraftFrom as Xw, useTimeAgo as Xx, AddonDatasetProvider as Xy, FormBuilderComponentResolverContext as Y, ChangeIndicator as YC, EditStateFor as YS, AuthProbeResult as YT, useRetryCountdown as Y_, Operation as Ya, Loadable as Yb, PatchMsgSubscriber as Yc, VersionType as Yd, TasksContextValue as Yf, AutoCollapseMenu as Yg, isDeleteDocumentGroupEvent as Yh, createUserStore as Yi, PreviewCardContextValue as Yl, getAnnotationColor as Ym, BooleanInput as Yn, isObjectInputProps as Yo, pathToString as Yp, FieldPresenceInner as Yr, BlockAnnotationProps as Ys, encodePath as Yt, getExpandOperations as Yu, StudioComponentsPluginOptions as Yv, collate as Yw, TimeAgoOpts as Yx, AddonDatasetContextValue as Yy, MediaLibraryConfig as Z, ChangeFieldWrapper as ZC, DocumentPairLoadedEvent as ZS, AuthStore as ZT, passthroughErrorHandler as Z_, OperationImpl as Za, CommentsAuthoringPathProvider as Zb, createPatchChannel as Zc, isPublishedVersion as Zd, MentionUserContextValue as Zf, CollapseMenuProps as Zg, isEditDocumentVersionEvent as Zh, KeyValueStore as Zi, usePreviewCard as Zl, visitDiff as Zm, ArrayOfPrimitivesInput as Zn, isStringInputProps as Zo, stringToPath as Zp, FieldPresenceProps as Zr, BlockListItemProps as Zs, fromMutationPatches as Zt, UseFormStateOptions as Zu, StudioLogo as Zv, createPublishedFrom as Zw, useTemplates as Zx, useActiveWorkspace as Zy, createDefaultIcon as _, DocumentRemoteMutationEvent as _C, createSanityMediaLibraryFileSource as _E, useSyncState as _S, ContextMenuButton as _T, UpsellData as __, Grant as _a, ActiveWorkspaceMatcherProps as _b, UploaderResolver as _c, DocumentFormNode as _d, _isCustomDocumentTypeDefinition as _f, UseFeedbackReturn as _g, NullDiff$1 as _h, useDocumentPresence as _i, ToastParams$1 as _l, FromTo as _m, ArrayOfObjectsInputMember as _n, DocumentRemoteMutationVersionEvent as _o, DocumentActionDescription as _p, GetFormValueProvider as _r, ArrayOfObjectsInputProps as _s, Workspace as _t, RELEASES_STUDIO_CLIENT_OPTIONS as _u, CopyPasteProvider as _v, DraftsModelDocument as _w, defineLocaleResourceBundle as _x, SearchOperatorInput as _y, resolveSchemaTypes as a, DocumentPairTarget as aC, CorsProbeOutcome as aE, defaultTemplateForType as aS, isDraft as aT, useComments as a_, createGrantsStore as aa, validateWorkspaces as ab, UploadEvent as ac, ArrayOfPrimitivesItemMember as ad, LoadableState as af, UserColorManagerOptions as ag, Chunk as ah, RegionWithIntersectionDetails as ai, setIfMissing as al, isUnchangedDiff as am, ObjectInputMemberProps as an, DocumentRevision as ao, createSchema as ap, ArrayOfObjectsInput as ar, RenderBlockActionsProps as as, PreparedConfig as at, useCopyErrorDetails as au, parseRetryAfter as av, VersionInfoDocumentStub as aw, TranslationProps as ax, SearchFilterDefinition as ay, ConfigPropertyError as b, SnapshotEvent as bC, useReviewChanges as bS, CommandListGetItemDisabledCallback as bT, ErrorMessage as b_, useResolveInitialValueForType as ba, CommentsSelectedPathContextValue as bb, StudioCrossDatasetReferenceInput as bc, NodeDiffProps as bd, createSWR as bf, UseInStudioFeedbackReturn as bg, ReferenceDiff as bh, useDocumentPreviewStore as bi, TextWithToneProps as bl, FallbackDiff as bm, UrlInputProps as bn, DocumentVersion as bo, DocumentActionKeys as bp, FormValueProvider as br, BaseInputProps as bs, WorkspaceOptions as bt, getReleaseTone as bu, CopyOptions as bv, Id as bw, LocaleProvider as bx, ValuelessSearchOperatorBuilder as by, createWorkspaceFromConfig as c, PendingMutationsEvent as cC, AuthConfig as cE, InitialValueTemplateItem as cS, isSystemBundle as cT, isTextSelectionComment as c_, getDocumentValuePermissions as ca, useVisibleWorkspaces as cb, FileInputProps as cc, FieldMember as cd, asLoadable as cf, useUserColorManager as cg, DiffComponent as ch, DocumentPreviewPresence as ci, useZIndex as cl, ValueError as cm, MemberField as cn, createHistoryStore as co, DocumentBadgeComponent as cp, FormBuilderContextValue as cr, ArrayOfPrimitivesFieldProps as cs, SanityFormConfig as ct, ErrorActionsProps as cu, isUnauthorizedError as cv, DocumentPreviewStore as cw, UseTranslationOptions as cx, SearchOperatorType as cy, flattenConfig as d, WelcomeBackEvent as dC, LoginMethod as dE, TemplateFieldDefinition as dS, newDraftFrom as dT, CommentInputContextValue as d_, DocumentPermission as da, getNamelessWorkspaceIdentifier as db, FileLike as dc, ObjectMember as dd, truncateString as df, UserColorHue as dg, DiffProps as dh, useUser as di, UserAvatar as dl, NoChanges as dm, ArrayOfPrimitivesItem as dn, TimelineController as do, GetHookCollectionStateProps as dp, useFieldActions as dr, FieldCommentsProps as ds, SingleWorkspace as dt, DocumentStatus as du, LiveManifestRegisterProvider as dv, createDocumentPreviewStore as dw, useCurrentLocale as dx, I18nSearchOperatorNameKey as dy, InitialSnapshotEvent as eC, RequestErrorChannel as eE, Serializeable as eS, getIdPair as eT, buildCommentRangeDecorations as e_, TemplatePermissionsResult as ea, matchWorkspace as eb, MarkdownConfig as ec, StateTree as ed, readVersionType as ef, isUnpublishDocumentEvent as eg, ArrayDiff$1 as eh, FormNodePresence as ei, diffMatchPatch as el, emptyValuesByType as em, useDocumentForm as en, snapshotPair as eo, useScheduledDraftDocument as ep, ArrayOfOptionsInput as er, FormBuilderFilterFieldFn as es, NewDocumentOptionsContext as et, InsufficientPermissionsMessage as eu, classifyConfigError as ev, useOnlyHasVersions as ew, useValidationStatus as ex, PartialIndexSettings as ey, PluginFactory as f, WelcomeEvent as fC, AgentVersionDisplay as fE, TemplateItem as fS, removeDupes as fT, CommentInput as f_, getDocumentPairPermissions as fa, getWorkspaceIdentifier as fb, ResolvedUploader as fc, ArrayOfObjectsFormNode as fd, uncaughtErrorHandler as ff, UserColorManager as fg, FieldChangeNode as fh, ResourceCache as fi, UserAvatarProps as fl, MetaInfo as fm, PrimitiveMemberItemProps as fn, TimelineControllerOptions as fo, HookCollectionActionHook as fp, FieldActionsProps as fr, FieldProps as fs, Source as ft, formatRelativeLocalePublishDate as fu, GenerateStudioManifestOptions as fv, ApiConfig as fw, useLocale as fx, OperatorButtonValueComponentProps as fy, defineConfig as g, DocumentRebaseEvent as gC, EditPortal as gE, SyncState as gS, getDocumentVariantType as gT, CommentsUpsellContextValue as g_, EvaluationParams as ga, ActiveWorkspaceMatcher as gb, UploaderDef as gc, ComputeDiff as gd, joinPath as gf, useStudioFeedbackTags as gg, ItemDiff$1 as gh, useGlobalPresence as gi, ImperativeToast as gl, FromToArrowDirection as gm, ArrayOfObjectsInputMembersProps as gn, CombinedDocument as go, DocumentActionCustomDialogComponentProps as gp, FieldActionMenuProps as gr, StringFieldProps as gs, Tool as gt, isReleaseScheduledOrScheduling as gu, StudioWorkspaceManifest as gv, DocumentStackAvailability as gw, defineLocale as gx, SearchOperatorButtonValue as gy, createConfig as h, DocumentMutationEvent as hC, EnhancedObjectDialog as hE, TypeTarget as hS, DocumentVariantType as hT, CommentsList as h_, DocumentValuePermission as ha, ConfigErrorGate as hb, Uploader as hc, BooleanFormNode as hd, fieldNeedsEscape as hf, FeedbackContextValue as hg, GroupChangeNode as hh, useResourceCache as hi, ZIndexContextValue as hl, FromToArrow as hm, ArrayOfObjectsInputMembers as hn, TimelineOptions as ho, DocumentActionConfirmDialogProps as hp, FieldActionMenu as hr, PrimitiveFieldProps as hs, TemplateResolver as ht, isPublishedPerspective as hu, StudioManifest as hv, DocumentAvailability as hw, useI18nText as hx, SearchOperatorBuilder as hy, SchemaError as i, getPairListener as iC, CorsCheckResult as iE, resolveInitialValueForType as iS, idMatchesPerspective as iT, CommentsEnabledContextValue as i_, GrantsStoreOptions as ia, validateNames as ib, ArrayInputMoveItemEvent as ic, ArrayOfObjectsMember as id, ErrorState as if, UserColorManagerProviderProps as ig, ChangeTitlePath as ih, Rect as ii, set as il, isRemovedItemDiff as im, ObjectInputMember as in, useTimelineStore as io, getSchemaTypeTitle as ip, useVirtualizerScrollInstance as ir, RenderBlockActionsCallback as is, PluginOptions as it, serializeError as iu, isTimeoutError as iv, useDocumentVersions as iw, TranslateComponentMap as ix, SearchContextValue as iy, Config as j, CommentDisabledIcon as jC, UseListFormatOptions as jS, ConnectingStatus as jT, UpsellDialogViewedInfo as j_, createDocumentStore as ja, CommentListBreadcrumbs as jb, defaultRenderItem as jc, InvalidItemTypeError as jd, globalScope as jf, useTelemetryConsent as jg, BaseEvent as jh, createProjectStore as ji, BlockImagePreview as jl, FieldPreviewComponent as jm, ReferenceAutocomplete as jn, createObservableBufferedDocument as jo, usePerspective as jp, FormFieldValidationError as jr, PortableTextInputProps as js, DocumentInspectorUseMenuItemProps as jt, DEFAULT_DECORATORS as ju, FormPatch as jv, getVersionInlineBadge as jw, LocaleSource as jx, SearchResultItemPreview as jy, BetaFeatures as k, useConditionalToast as kC, UseManageFavoriteProps as kS, CONNECTING as kT, UpsellDialogUpgradeCtaClicked as k_, DocumentStoreOptions as ka, CommentFieldCreatePayload as kb, defaultRenderInlineBlock as kc, FieldError as kd, isNonNullable as kf, FeedbackDialog as kg, EventsProvider as kh, useProjectDatasets as ki, InlinePreviewProps as kl, DiffFromTo as km, SlugInputProps as kn, createBufferedDocument as ko, EditScheduleForm as kp, FormInputRelativePathArg as kr, OnPathFocusPayload as ks, DocumentInspectorMenuItem as kt, RELEASES_INTENT as ku, FormInsertPatch as kv, Selection as kw, LocaleResourceKey as kx, SearchTerms as ky, resolveConfig as l, ReconnectEvent as lC, AuthProvider as lE, Template as lS, isSystemBundleName as lT, COMMENTS_INSPECTOR_NAME as l_, useDocumentValuePermissions as la, VisibleWorkspacesContextValue as lb, StudioFileInput as lc, FieldSetMember as ld, useLoadable as lf, HexColor as lg, DiffComponentOptions as lh, DocumentPreviewPresenceProps as li, WithReferringDocuments as ll, RevertChangesConfirmDialog as lm, MemberFieldProps as ln, removeMissingReferences as lo, DocumentBadgeDescription as lp, useHoveredField as lr, BaseFieldProps as ls, ScheduledPublishingPluginOptions as lt, DocumentStatusIndicator as lu, renderStudio as lv, DocumentPreviewStoreOptions as lw, UseTranslationResponse as lx, operatorDefinitions as ly, definePlugin as m, CommittedEvent as mC, isAgentBundleName as mE, TemplateReferenceTarget as mS, Chip as mT, CommentInputProps as m_, useDocumentPairPermissionsFromHookFactory as ma, CorsOriginErrorScreen as mb, UploadProgressEvent as mc, BaseFormNode as md, escapeField as mf, FeedbackContext as mg, FromToIndex as mh, ResourceCacheProviderProps as mi, ZIndexContextValueKey as ml, GroupChange as mm, MemberItemProps as mn, Timeline as mo, DocumentActionComponent as mp, FieldActionsProvider as mr, ObjectFieldProps as ms, SourceOptions as mt, isDraftPerspective as mu, ManifestWorkspaceInput as mv, AvailabilityResponse as mw, I18nNode as mx, SearchOperatorBase as my, getConfigContextFromSource as n, ListenerEvent as nC, RequestErrorReportOptions as nE, resolveInitialObjectValue as nS, getVersionFromId as nT, useCommentsSelectedPath as n_, useTemplatePermissions as na, ValidateWorkspaceOptions as nb, ArrayInputCopyEvent as nc, FieldsetState as nd, useThrottledCallback as nf, isUpdateLiveDocumentEvent as ng, BooleanDiff$1 as nh, Position as ni, insert as nl, isFieldChange as nm, ObjectMembers as nn, TimelineState as no, SingleDocReleaseProvider as np, VirtualizerScrollInstanceProvider as nr, FormBuilderMarkersComponent as ns, PartialContext as nt, Hotkeys as nu, isClientRequestError as nv, useFormatRelativeLocalePublishDate as nw, validateDocument as nx, useSearchState as ny, CreateWorkspaceFromConfigOptions as o, IdPair as oC, WorkspacesProvider as oE, defaultTemplatesForSchema as oS, isDraftId as oT, CommentsContextValue as o_, grantsPermissionOn as oa, useWorkspaces as ob, ImageInputProps as oc, ArrayOfPrimitivesMember as od, LoadedState as of, createUserColorManager as og, ChunkType as oh, ReportedRegionWithRect as oi, unset as ol, noop as om, MemberFieldSet as on, HistoryStore as oo, SchedulesContext as op, ArrayOfObjectsFunctions as or, RenderCustomMarkers as os, ReleaseActionsResolver as ot, ErrorWithId as ou, getApiErrorCode as ov, isReleaseDocument as ow, defaultLocale as ox, defineSearchFilter as oy, createPlugin as p, CommitFunction as pC, useAgentVersionDisplay as pE, TemplateParameter as pS, systemBundles as pT, CommentInputHandle as p_, useDocumentPairPermissions as pa, WorkspaceLike as pb, UploadOptions as pc, ArrayOfPrimitivesFormNode as pd, supportsTouch as pf, UserId as pg, FieldOperationsAPI as ph, ResourceCacheProvider as pi, LegacyLayerProvider as pl, MetaInfoProps as pm, ArrayOfObjectsItem as pn, ParsedTimeRef as po, useScheduleAction as pp, FieldActionsResolver as pr, NumberFieldProps as ps, SourceClientOptions as pt, getDocumentIsInPerspective as pu, generateStudioManifest as pv, AvailabilityReason as pw, useGetI18nText as px, OperatorInputComponentProps as py, DocumentLayoutProps as q, ChangeConnectorRootProps as qC, DocumentIdStack as qS, _createAuthStore as qT, useStudioErrorHandler as q_, operationEvents as qa, CommentsType as qb, PatchChannel as qc, measureFirstEmission as qd, useDocumentPreviewValues as qf, CollapseMenuButtonProps as qg, isCreateDocumentVersionEvent as qh, UserStore as qi, PreviewProps as ql, DiffVisitor as qm, DateInputProps as qn, isBooleanInputProps as qo, normalizeKeySegment as qp, PresenceOverlayProps as qr, ObjectItemProps as qs, TransformPatches as qt, ExpandPathOperation as qu, NavbarProps as qv, SystemBundle as qw, useUnitFormatter as qx, StudioThemeColorSchemeKey as qy, useConfigContextFromSource as r, MutationPerformanceEvent as rC, StudioErrorHandler as rE, resolveInitialValue as rS, getVersionId as rT, useCommentsEnabled as r_, useTemplatePermissionsFromHookFactory as ra, validateBasePaths as rb, ArrayInputInsertEvent as rc, ArrayOfObjectsItemMember as rd, userHasRole as rf, UserColorManagerProvider as rg, ChangeNode as rh, PresentUser as ri, prefixPath as rl, isGroupChange as rm, ObjectMembersProps as rn, TimelineStore as ro, useSingleDocRelease as rp, VirtualizerScrollInstance as rr, PortableTextMarker as rs, Plugin as rt, HotkeysProps$1 as ru, isNetworkError as rv, useDocumentVersionTypeSortedList as rw, Translate as rx, SearchProvider as ry, createSourceFromConfig as s, MutationEvent as sC, WorkspacesProviderProps as sE, prepareTemplates as sS, isPublishedId as sT, hasCommentMessageValue as s_, DocumentValuePermissionsOptions as sa, evaluateWorkspaceHidden as sb, StudioImageInput as sc, DecorationMember as sd, LoadingState as sf, useUserColor as sg, Diff$1 as sh, Size as si, ZIndexProvider as sl, DocumentChangeContextInstance as sm, MemberFieldError as sn, HistoryStoreOptions as so, ScheduledBadge as sp, useDidUpdate as sr, ArrayFieldProps as ss, ResolveProductionUrlContext as st, ErrorActions as su, isInvalidSessionError as sv, MetadataWrapper as sw, usEnglishLocale as sx, defineSearchFilterOperators as sy, ActiveWorkspaceMatcherContextValue as t, LatencyReportEvent as tC, RequestErrorClaim as tE, isBuilder as tS, getPublishedId as tT, useCommentsTelemetry as t_, getTemplatePermissions as ta, WorkspacesContextValue as tb, PortableTextPluginsProps as tc, FieldsetMembers as td, useUnique as tf, isUnscheduleDocumentVersionEvent as tg, ArrayItemMetadata as th, Location as ti, inc as tl, isAddedItemDiff as tm, ObjectInputMembers as tn, useTimelineSelector as to, usePausedScheduledDraft as tp, ArrayOfObjectOptionsInput as tr, FormBuilderInputComponentMap as ts, NewDocumentOptionsResolver as tt, InsufficientPermissionsMessageProps as tu, classifyRequestError as tv, useIsReleaseActive as tw, ValidateDocumentOptions as tx, useSearchMaxFieldDepth as ty, prepareConfig as u, ResetEvent as uC, CookielessCompatibleLoginMethod as uE, TemplateArrayFieldDefinition as uS, isVersionId as uT, CommentInlineHighlightSpan as u_, DocumentPairPermissionsOptions as ua, VisibleWorkspacesProvider as ub, AssetSourcesResolver as uc, FieldsetRenderMembersCallback as ud, sliceString as uf, UserColor as ug, DiffComponentResolver as uh, useCurrentUser as ui, AvatarSkeleton as ul, RevertChangesButton as um, MemberItemError as un, SelectionState as uo, DocumentBadgeProps as up, HoveredFieldProvider as ur, BooleanFieldProps as us, SchemaPluginOptions as ut, CapabilityGate as uu, uploadSchema as uv, ObserveForPreviewFn as uw, useTranslation as ux, I18nSearchOperatorDescriptionKey as uy, ConfigResolutionError as v, MutationPayload as vC, createSanityMediaLibraryImageSource as vE, useStudioUrl as vS, CommandList as vT, WorkspaceLoaderBoundary as v_, GrantsStore as va, RouterHistory as vb, StudioReferenceInput as vc, HiddenField as vd, _isSanityDocumentTypeDefinition as vf, useFeedback as vg, NumberDiff$1 as vh, useComlinkStore as vi, TooltipOfDisabled as vl, FromToProps as vm, ArrayOfObjectsMemberProps as vn, Transaction as vo, DocumentActionDialogProps as vp, useGetFormValue as vr, ArrayOfPrimitivesElementType as vs, WorkspaceHiddenContext as vt, isReleasePerspective as vu, useCopyPaste as vv, DraftsModelDocumentAvailability as vw, defineLocalesResources as vx, SearchOperatorParams as vy, AppsOptions as w, useDateTimeFormat as wC, useReferringDocuments as wS, CommandListItemContext as wT, useWorkspace as w_, isNewDocument as wa, CommentsProvider as wb, FormBuilder as wc, ObjectRenderMembersCallback as wd, isPausedCardinalityOneRelease as wf, FeedbackPayload as wg, StringSegmentUnchanged$1 as wh, useKeyValueStore as wi, RelativeTime as wl, DiffTooltipWithAnnotationsProps as wm, TelephoneInputProps as wn, RemoteSnapshotVersionEvent as wo, DuplicateActionProps as wp, FormContainer as wr, InputOnSelectFileFunctionProps as ws, ReleaseActionProps as wt, useReleasesIds as wu, SanityClipboardItem as wv, ObservePathsFn as ww, LocaleConfigContext as wx, isPerspectiveRaw as wy, ConfigPropertyErrorOptions as x, StoreRequestErrorHandler as xC, RelativeTimeOptions as xS, CommandListGetItemKeyCallback as xT, ErrorMessageProps as x_, useInitialValue as xa, CommentsIntentProvider as xb, StudioCrossDatasetReferenceInputProps as xc, NumberFormNode as xd, CardinalityOneRelease as xf, useInStudioFeedback as xg, StringDiff$1 as xh, useDocumentStore as xi, StatusButton as xl, Event$1 as xm, TextInput as xn, DocumentVersionEvent as xo, DocumentActionModalDialogProps as xp, useFormValue as xr, BooleanInputProps as xs, WorkspaceSummary as xt, getReleaseIdFromReleaseDocumentId as xu, CopyPasteContextType as xv, InvalidationChannelEvent as xw, LocaleProviderBase as xx, ValuelessSearchOperatorParams as xy, ConfigResolutionErrorOptions as y, RemoteSnapshotEvent as yC, useSchema as yS, CommandListElementType as yT, useWorkspaceLoader as y_, PermissionCheckResult as ya, CommentsSelectedPath as yb, StudioReferenceInputProps as yc, NodeChronologyProps as yd, _isType as yf, SendFeedbackOptions as yg, ObjectDiff$1 as yh, useConnectionStatusStore as yi, TextWithTone as yl, FieldChange as ym, UrlInput as yn, CommitError as yo, DocumentActionGroup as yp, FormValueContextValue as yr, ArrayOfPrimitivesInputProps as ys, WorkspaceHiddenProperty as yt, isGoingToUnpublish as yu, BaseOptions as yv, FieldName as yw, removeUndefinedLocaleResources as yx, SearchValueFormatterContext as yy, DocumentBadgesContext as z, TrackerContextGetSnapshot as zC, useFilteredReleases as zS, isAuthStore as zT, StudioAnnouncementsDialog as z_, InitialValueMsg as za, CommentStatus as zb, ParseErrorsProvider as zc, resolveConditionalProperty as zd, LoadingTuple as zf, DocumentGroupInventoryReferencePreviewLinkProps as zg, EventsStore as zh, SESSION_ID as zi, CompactPreview as zl, ChangesError as zm, AssetAccessPolicy as zn, useUnstableObserveDocument as zo, FIXME as zp, FormFieldSetProps as zr, RenderFieldCallback as zs, DocumentFieldActionHook as zt, isDocumentLimitError as zu, ToolLink as zv, ReleasesNavMenuItemPropsGetter as zw, Rule as zx, ColorSchemeProviderProps as zy };
@@ -379,7 +379,8 @@ declare const structureLocaleStrings: {
379
379
  'action.duplicate.running.label': string; /** Tooltip when publish button is disabled because the document is already published, and published time is unavailable.*/
380
380
  'action.publish.already-published.no-time-ago.tooltip': string; /** Tooltip when publish button is disabled because the document is already published.*/
381
381
  'action.publish.already-published.tooltip': string; /** Tooltip when action is disabled because the studio is not ready.*/
382
- 'action.publish.disabled.not-ready': string; /** Tooltip when action is disabled because the selected release or variant does not contain this document */
382
+ 'action.publish.disabled.not-ready': string; /** Tooltip when action is disabled because the version is published as part of its release */
383
+ 'action.publish.disabled.not-publishable': string; /** Tooltip when action is disabled because the selected release or variant does not contain this document */
383
384
  'action.publish.disabled.target-not-found': string; /** Label for action when there are pending changes.*/
384
385
  'action.publish.draft.label': string; /** Label for the "Publish" document action */
385
386
  'action.publish.label': string; /** Label for the "Publish" document action when the document has live edit enabled.*/
@@ -453,7 +454,8 @@ declare const structureLocaleStrings: {
453
454
  'banners.scheduled-draft-override-banner.text': string; /** The text content for the unpublished document banner when is part of a release */
454
455
  'banners.unpublished-release-banner.text': string; /** The text content for the unpublished document banner letting the user know that the current published version is being shown */
455
456
  'banners.unpublished-release-banner.text-with-published': string; /** The text that appears for the action button to add the current document to the selected variant */
456
- 'banners.variant.action.add-to-variant': string; /** Toast description in case an error occurs when adding a document to a variant */
457
+ 'banners.variant.action.add-to-variant': string; /** The text for the banner that appears when the selected variant matches no variant definition */
458
+ 'banners.variant.definition-not-found': string; /** Toast description in case an error occurs when adding a document to a variant */
457
459
  'banners.variant.error.description': string; /** Toast title in case an error occurs when adding a document to a variant */
458
460
  'banners.variant.error.title': string; /** The text for the banner that appears when a document is not in the selected variant */
459
461
  'banners.variant.not-in-variant': string; /** Description of toast that will appear while the document is added to the variant */
@@ -645,7 +647,8 @@ declare const structureLocaleStrings: {
645
647
  'panes.document-operation-results.operation-success_restore': string; /** The text when an unpublish operation succeeded */
646
648
  'panes.document-operation-results.operation-success_unpublish': string; /** The document title shown when document title is "undefined" in operation message */
647
649
  'panes.document-operation-results.operation-undefined-title': string; /** The loading message for the document not found pane */
648
- 'panes.document-pane.document-not-found.loading': string; /** The text of the document not found pane if the schema is known */
650
+ 'panes.document-pane.document-not-found.loading': string; /** The loading message shown while the document targeted by the selected variant is resolving */
651
+ 'panes.document-pane.variant-target.loading': string; /** The text of the document not found pane if the schema is known */
649
652
  'panes.document-pane.document-not-found.text': string; /** The title of the document not found pane if the schema is known */
650
653
  'panes.document-pane.document-not-found.title': string; /** The text of the document not found pane if the schema is not found */
651
654
  'panes.document-pane.document-unknown-type.text': string; /** The title of the document not found pane if the schema is not found or unknown */
@@ -2,7 +2,7 @@ import { ComponentType, ReactNode } from "react";
2
2
  import { ObjectSchemaType, Path, SanityDocument, SanityDocumentLike, SchemaType, SortOrdering, SortOrderingItem, ValidationMarker } from "@sanity/types";
3
3
  import { Observable } from "rxjs";
4
4
  import { SearchParam } from "sanity/router";
5
- import { ConfigContext, DocumentActionComponent, DocumentBadgeComponent, DocumentFieldAction, DocumentFieldActionNode, DocumentFormNode, DocumentInspector, DocumentLanguageFilterComponent, DocumentStore, DocumentSyncState, EditStateFor, GeneralPreviewLayoutKey, I18nTextRecord as I18nTextRecord$1, InitialValueTemplateItem, LocaleSource, NodeChronologyProps, PatchEvent, PermissionCheckResult, PerspectiveStack, PreviewLayoutKey, ReleaseId, Source, StateTree, TimelineStore } from "sanity";
5
+ import { ConfigContext, DocumentActionComponent, DocumentBadgeComponent, DocumentFieldAction, DocumentFieldActionNode, DocumentFormNode, DocumentInspector, DocumentLanguageFilterComponent, DocumentStore, DocumentSyncState, EditStateFor, GeneralPreviewLayoutKey, I18nTextRecord as I18nTextRecord$1, InitialValueTemplateItem, LocaleSource, NodeChronologyProps, PatchEvent, PermissionCheckResult, PerspectiveStack, PreviewLayoutKey, ReleaseId, Source, StateTree, TargetDocumentState, TimelineStore } from "sanity";
6
6
  /**
7
7
  * Intent parameters (json)
8
8
  *
@@ -2574,6 +2574,11 @@ interface DocumentPaneContextValue extends Pick<NodeChronologyProps, 'hasUpstrea
2574
2574
  timelineMode?: undefined;
2575
2575
  setTimelineRange(since: string | null, rev: string | null): void;
2576
2576
  setIsDeleting: (state: boolean) => void;
2577
+ /**
2578
+ * Resolution state of the document targeted by the selected perspective and variant.
2579
+ * The single source in-pane consumers should read instead of resolving the target themselves.
2580
+ */
2581
+ targetDocumentState: TargetDocumentState;
2577
2582
  isDocumentGroupInventoryActive: boolean;
2578
2583
  setIsDocumentGroupInventoryActive: (active: boolean) => void;
2579
2584
  timelineError: Error | null;
@@ -15,50 +15,25 @@ import "react-i18next";
15
15
  import "@sanity/util/paths";
16
16
  import "react-fast-compare";
17
17
  import "@sanity/id-utils";
18
- import "@sanity/icons/Document";
19
- import "@sanity/icons/Image";
20
- import "@sanity/uuid";
21
- import "rxjs/operators";
22
18
  import "react-rx";
19
+ import "./createAgentBundlesStore.js";
23
20
  import "@sanity/client/csm";
21
+ import "rxjs/operators";
24
22
  import "quick-lru";
25
23
  import "lodash-es/throttle.js";
26
24
  import "lodash-es/isEqual.js";
27
- import "./createAgentBundlesStore.js";
28
25
  import "@portabletext/toolkit";
29
26
  import "@sanity/icons/WarningOutline";
27
+ import "@sanity/telemetry/react";
28
+ import "@sanity/icons/Document";
29
+ import "@sanity/icons/Image";
30
+ import "@sanity/uuid";
30
31
  import "@sanity/color";
31
32
  import "color2k";
32
33
  import "lodash-es/isString.js";
33
34
  import "@sanity/icons/Copy";
34
35
  import "@sanity/icons/Clipboard";
35
- import "@sanity/telemetry/react";
36
- import "./version.js";
37
- import "@sanity/comlink";
38
- import "@sanity/mutator";
39
- import "lodash-es/omit.js";
40
- import "@sanity/client";
41
- import "lodash-es/groupBy.js";
42
- import "@isaacs/ttlcache";
43
- import "lodash-es/partition.js";
44
- import "shallow-equals";
45
- import "@sanity/schema";
46
- import "lodash-es/get.js";
47
36
  import "@sanity/types";
48
- import "lodash-es/isPlainObject.js";
49
- import "@sanity/util/client";
50
- import "@sanity/util/concurrency-limiter";
51
- import "lodash-es/flatten.js";
52
- import "lodash-es/uniqBy.js";
53
- import "json-reduce";
54
- import "rxjs-exhaustmap-with-trailing";
55
- import "@sanity/util/content";
56
- import "dataloader";
57
- import "raf";
58
- import "groq-js";
59
- import "mendoza";
60
- import "@sanity/diff";
61
- import "use-sync-external-store/with-selector";
62
37
  import "@portabletext/editor";
63
38
  import "@sanity/icons/ChevronRight";
64
39
  import "@sanity/icons/Revert";
@@ -82,31 +57,41 @@ import "@sanity/icons/Unpublish";
82
57
  import "@sanity/icons/ArrowDown";
83
58
  import "@sanity/icons/ArrowRight";
84
59
  import "@sanity/util/legacyDateFormat";
60
+ import "./version.js";
85
61
  import "@sanity/diff-patch";
86
62
  import "@sanity/icons/ErrorOutline";
63
+ import "@sanity/diff";
64
+ import "mendoza";
87
65
  import "@sanity/icons/InfoOutline";
88
66
  import "@portabletext/sanity-bridge";
89
67
  import "motion/react";
90
68
  import "lodash-es/pick.js";
69
+ import "lodash-es/get.js";
91
70
  import "@algorithm.ts/lcs";
92
71
  import "lodash-es/intersection.js";
93
72
  import "json-stable-stringify";
73
+ import "shallow-equals";
94
74
  import "scroll-into-view-if-needed";
95
75
  import "@sanity/schema/_internal";
76
+ import "lodash-es/groupBy.js";
96
77
  import "lodash-es/sortBy.js";
97
78
  import "lodash-es/compact.js";
98
79
  import "lodash-es/keyBy.js";
80
+ import "lodash-es/partition.js";
99
81
  import "lodash-es/toLower.js";
100
82
  import "lodash-es/union.js";
101
83
  import "lodash-es/uniq.js";
102
84
  import "lodash-es/words.js";
103
85
  import "lodash-es/isFinite.js";
86
+ import "lodash-es/flatten.js";
104
87
  import "@sanity/icons/Add";
105
88
  import "observable-callback";
89
+ import "@sanity/util/content";
106
90
  import "@sanity/icons/BulbOutline";
107
91
  import "@sanity/icons/Unknown";
108
92
  import "@sanity/client/stega";
109
93
  import "@sanity/icons/ToggleArrowRight";
94
+ import "lodash-es/isPlainObject.js";
110
95
  import "@sanity/icons/Search";
111
96
  import "@sanity/icons/ThLarge";
112
97
  import "@sanity/icons/Ulist";
@@ -131,6 +116,7 @@ import "@sanity/icons/AccessDenied";
131
116
  import "@sanity/icons/HelpCircle";
132
117
  import "@sanity/image-url";
133
118
  import "lodash-es/pickBy.js";
119
+ import "@sanity/client";
134
120
  import "swr";
135
121
  import "@sanity/icons/ChevronDown";
136
122
  import "@sanity/icons/Download";
@@ -145,12 +131,26 @@ import "@sanity/icons/EllipsisHorizontal";
145
131
  import "@sanity/icons/EyeOpen";
146
132
  import "@sanity/icons/Link";
147
133
  import "rxjs-mergemap-array";
134
+ import "@sanity/mutator";
148
135
  import "react-focus-lock";
149
136
  import "lodash-es/memoize.js";
150
137
  import "lodash-es/sortedIndex.js";
151
138
  import "lodash-es/difference.js";
152
139
  import "lodash-es/identity.js";
153
140
  import "lodash-es/values.js";
141
+ import "@sanity/comlink";
142
+ import "lodash-es/omit.js";
143
+ import "@isaacs/ttlcache";
144
+ import "@sanity/schema";
145
+ import "@sanity/util/client";
146
+ import "@sanity/util/concurrency-limiter";
147
+ import "lodash-es/uniqBy.js";
148
+ import "json-reduce";
149
+ import "rxjs-exhaustmap-with-trailing";
150
+ import "dataloader";
151
+ import "raf";
152
+ import "groq-js";
153
+ import "use-sync-external-store/with-selector";
154
154
  import "date-fns/addHours";
155
155
  import "date-fns/startOfHour";
156
156
  import "@sanity/icons/Bolt";