sanity 6.5.1-next.7 → 6.6.0-next.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/lib/_chunks-dts/ActiveWorkspaceMatcherContext.d.ts +222 -27
  2. package/lib/_chunks-dts/index.d.ts +10 -5
  3. package/lib/_chunks-es/CommentsInspector.js +3 -3
  4. package/lib/_chunks-es/ReleasesStudioLayout.js +3 -3
  5. package/lib/_chunks-es/ReleasesTool.js +3 -3
  6. package/lib/_chunks-es/TasksDocumentInputLayout.js +3 -3
  7. package/lib/_chunks-es/TasksFooterOpenTasks.js +3 -3
  8. package/lib/_chunks-es/TasksStudioActiveToolLayout.js +3 -3
  9. package/lib/_chunks-es/TasksStudioLayout.js +2 -2
  10. package/lib/_chunks-es/TasksStudioNavbar.js +3 -3
  11. package/lib/_chunks-es/VariantsStudioNavbar.js +9 -5
  12. package/lib/_chunks-es/VariantsStudioNavbar.js.map +1 -1
  13. package/lib/_chunks-es/VariantsTool.js +6 -2
  14. package/lib/_chunks-es/VariantsTool.js.map +1 -1
  15. package/lib/_chunks-es/index2.js +846 -477
  16. package/lib/_chunks-es/index2.js.map +1 -1
  17. package/lib/_chunks-es/index3.js +3 -3
  18. package/lib/_chunks-es/index6.js +2 -2
  19. package/lib/_chunks-es/index7.js +3 -3
  20. package/lib/_chunks-es/index8.js +3 -3
  21. package/lib/_chunks-es/resources.js +10 -0
  22. package/lib/_chunks-es/resources.js.map +1 -1
  23. package/lib/_chunks-es/resources2.js +3 -3
  24. package/lib/_chunks-es/resources3.js +3 -3
  25. package/lib/_chunks-es/resources4.js +3 -3
  26. package/lib/_chunks-es/resources5.js +3 -3
  27. package/lib/_chunks-es/resources6.js +3 -3
  28. package/lib/_chunks-es/resources7.js +3 -3
  29. package/lib/_chunks-es/structureTool.js +94 -82
  30. package/lib/_chunks-es/structureTool.js.map +1 -1
  31. package/lib/_chunks-es/version.js +2 -2
  32. package/lib/_singletons.d.ts +26 -2
  33. package/lib/_singletons.js +2 -1
  34. package/lib/_singletons.js.map +1 -1
  35. package/lib/index.d.ts +2 -2
  36. package/lib/index.js +5 -1
  37. package/package.json +15 -15
@@ -1031,9 +1031,13 @@ declare function collate<T extends {
1031
1031
  declare function removeDupes(documents: SanityDocumentLike[]): SanityDocumentLike[];
1032
1032
  declare const VARIANT_DOCUMENT_TYPE: 'system.variant';
1033
1033
  declare const VARIANT_DOCUMENTS_PATH: '_.variants';
1034
+ /**
1035
+ * @internal
1036
+ */
1037
+ type VariantId = `${typeof VARIANT_DOCUMENTS_PATH}.${string}`;
1034
1038
  interface SystemVariant extends SanityDocument {
1035
1039
  _type: typeof VARIANT_DOCUMENT_TYPE;
1036
- _id: `${typeof VARIANT_DOCUMENTS_PATH}.${string}`;
1040
+ _id: VariantId;
1037
1041
  name?: string;
1038
1042
  conditions: Record<string, string>;
1039
1043
  priority: number;
@@ -1082,7 +1086,17 @@ interface PerspectiveContextValue {
1082
1086
  perspectiveStack: PerspectiveStack;
1083
1087
  excludedPerspectives: string[];
1084
1088
  /**
1085
- * Resolved variant definition; undefined = default (all users) or still loading
1089
+ * The raw variant name requested via the router sticky param, available synchronously and
1090
+ * regardless of whether it has resolved to a variant definition yet.
1091
+ * Undefined when no variant is requested.
1092
+ * @beta
1093
+ * @internal
1094
+ */
1095
+ selectedVariantName: string | undefined;
1096
+ /**
1097
+ * Resolved variant definition; undefined when no variant is requested, while definitions are
1098
+ * still loading (see `useAllVariants().loading`), or when `selectedVariantName` matches no
1099
+ * definition.
1086
1100
  * @beta
1087
1101
  * @internal
1088
1102
  */
@@ -1923,6 +1937,42 @@ interface IdPair {
1923
1937
  publishedId: string;
1924
1938
  versionId?: string;
1925
1939
  }
1940
+ /**
1941
+ * The document targeted by the selected perspective and variant, as declared by a caller of the
1942
+ * document pair APIs. Callers resolve targets asynchronously (variant scope ids are opaque,
1943
+ * server-generated hashes discoverable only by lookup), so the union carries the unresolved and
1944
+ * missing states explicitly — the store must guard operations in those states instead of falling
1945
+ * back to the base draft/published pair.
1946
+ *
1947
+ * `scopeId` is the second segment of a version document id (`versions.<scopeId>.<groupId>`),
1948
+ * matching `_system.scopeId` on the document itself: a release name (or agent/anonymous bundle
1949
+ * name) for plain versions today, an opaque server-generated hash for variant-scoped versions.
1950
+ *
1951
+ * - `version` — a plain version (release, agent or anonymous bundle): the pair checks out
1952
+ * `versions.<scopeId>.<groupId>`. Passing a bare `string` is shorthand for this kind.
1953
+ * - `variant` — a resolved variant-scoped version: the pair checks out
1954
+ * `versions.<scopeId>.<groupId>` via the variant's scope id.
1955
+ * - `target-missing` — a variant is selected but the document has no variant-scoped version for
1956
+ * the current bundle (or the variant selection is invalid). Operations are disabled with
1957
+ * `TARGET_NOT_FOUND` and throw if executed.
1958
+ * - `unresolved` — target resolution is still in flight. Operations stay guarded (`NOT_READY`)
1959
+ * and throw if executed.
1960
+ *
1961
+ * @internal
1962
+ */
1963
+ type DocumentPairTarget = {
1964
+ kind: 'version';
1965
+ scopeId: string;
1966
+ } | {
1967
+ kind: 'variant';
1968
+ scopeId: string;
1969
+ variantId: string;
1970
+ } | {
1971
+ kind: 'target-missing';
1972
+ variantId?: string;
1973
+ } | {
1974
+ kind: 'unresolved';
1975
+ };
1926
1976
  interface ListenerSequenceState {
1927
1977
  /**
1928
1978
  * Tracks the latest revision from the server that can be applied locally
@@ -2049,9 +2099,20 @@ interface EditStateFor {
2049
2099
  liveEditSchemaType: boolean;
2050
2100
  ready: boolean;
2051
2101
  /**
2052
- * When editing a version, the name of the release the document belongs to.
2102
+ * When editing a version, the short name of the release the document belongs to (or an agent /
2103
+ * anonymous bundle name), matched by consumers against active release names. Never an opaque
2104
+ * variant scope hash: documents carrying full `_system` metadata are classified from
2105
+ * `_system.release` (normalized from the `_.releases.<name>` reference), so drafts- and
2106
+ * published-scoped variants report `undefined` while release-scoped versions — variant or not —
2107
+ * report their release. Until the first snapshot arrives, the bundle segment is reported as-is.
2053
2108
  */
2054
2109
  release: string | undefined;
2110
+ /**
2111
+ * When editing a version, the bundle segment of the version document id
2112
+ * (`versions.<scopeId>.<groupId>`): a release id, an agent/anonymous bundle name, or an opaque
2113
+ * variant scope hash. `undefined` when editing the base draft/published pair.
2114
+ */
2115
+ scopeId: string | undefined;
2055
2116
  }
2056
2117
  /** @internal */
2057
2118
  declare const editState$1: (ctx: {
@@ -2103,8 +2164,14 @@ declare function useDocumentIdStack({
2103
2164
  editState,
2104
2165
  strict
2105
2166
  }: Options$2): DocumentIdStack;
2106
- /** @internal */
2107
- declare function useDocumentOperation(publishedDocId: string, docTypeName: string, version?: string): OperationsAPI;
2167
+ /**
2168
+ * @internal
2169
+ * `version` accepts either a plain version name (release/bundle) or a {@link DocumentPairTarget}
2170
+ * declaring the resolved target of the selected perspective/variant. With the guarded target
2171
+ * kinds (`unresolved`, `target-missing`) the returned operations are disabled and throw if
2172
+ * executed, instead of silently operating on the base draft/published pair.
2173
+ */
2174
+ declare function useDocumentOperation(publishedDocId: string, docTypeName: string, version?: string | DocumentPairTarget): OperationsAPI;
2108
2175
  /** @internal */
2109
2176
  declare function useDocumentOperationEvent(publishedDocId: string, docTypeName: string): OperationError | OperationSuccess | undefined;
2110
2177
  /**
@@ -2960,7 +3027,8 @@ declare const studioLocaleStrings: {
2960
3027
  'calendar.weekday-names.short.sunday': string; /** Short weekday name for Thursday */
2961
3028
  'calendar.weekday-names.short.thursday': string; /** Short weekday name for Tuesday */
2962
3029
  'calendar.weekday-names.short.tuesday': string; /** Short weekday name for Wednesday */
2963
- 'calendar.weekday-names.short.wednesday': string; /** Label for the close button label in Review Changes pane */
3030
+ 'calendar.weekday-names.short.wednesday': string; /** The name of Content Agent, the product. */
3031
+ 'content-agent': string; /** Label for the close button label in Review Changes pane */
2964
3032
  'changes.action.close-label': string; /** Cancel label for revert button prompt action */
2965
3033
  'changes.action.revert-all-cancel': string; /** Revert all confirm label for revert button action - used on prompt button + review changes pane */
2966
3034
  'changes.action.revert-all-confirm': string; /** Prompt for reverting all changes in document in Review Changes pane. Includes a count of changes. */
@@ -3069,7 +3137,8 @@ declare const studioLocaleStrings: {
3069
3137
  'document-group-inventory.title_other': string; /** The label text that indicates an item in the document group inventory is currently being viewed */
3070
3138
  'document-group-inventory.viewing-item-label': string;
3071
3139
  /** --- Document group --- */
3072
- /** The text in the "Cancel" button in the confirm delete dialog that cancels the action */
3140
+ /** The label given to a document group's base variant */
3141
+ 'document-group.base-variant': string; /** The text in the "Cancel" button in the confirm delete dialog that cancels the action */
3073
3142
  'document-group.delete.cancel-button.text': string; /** Used in `document-group.delete.cdr-summary.title` */
3074
3143
  'document-group.delete.cdr-summary.document-count_one': string; /** Used in `document-group.delete.cdr-summary.title` */
3075
3144
  'document-group.delete.cdr-summary.document-count_other': string; /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
@@ -7462,10 +7531,6 @@ interface DocumentGroupInventoryProps {
7462
7531
  * the document panel portal provided by the structure tool).
7463
7532
  */
7464
7533
  portalElementName: string;
7465
- /**
7466
- * Navigate to the provided perspective.
7467
- */
7468
- navigatePerspective: (perspective: TargetPerspective) => void;
7469
7534
  /**
7470
7535
  * Derived perspective list state for the inventory document.
7471
7536
  */
@@ -9520,16 +9585,54 @@ declare function useThrottledCallback(callback: (...args: any[]) => any, wait: n
9520
9585
  * @internal
9521
9586
  */
9522
9587
  declare function useUnique<ValueType>(value: ValueType): ValueType;
9588
+ type VariantConstraint = {
9589
+ /**
9590
+ * Match only the provided variant id.
9591
+ *
9592
+ * This value **must** be the bare variant id ("x", rather than "_.variants.x").
9593
+ */
9594
+ variant: string;
9595
+ baseVariant?: never;
9596
+ anyVariant?: never;
9597
+ } | {
9598
+ variant?: never;
9599
+ /**
9600
+ * Match only the base variant.
9601
+ */
9602
+ baseVariant: true;
9603
+ anyVariant?: never;
9604
+ } | {
9605
+ variant?: never;
9606
+ baseVariant?: never;
9607
+ /**
9608
+ * Match any variant.
9609
+ */
9610
+ anyVariant: true;
9611
+ };
9612
+ /** @beta */
9613
+ type VersionType = 'draft' | 'published' | 'release' | 'agent';
9523
9614
  /**
9524
- * Uses the _system field to check if a version is a published version
9615
+ * Uses the `_system` field to check if a version is a published version.
9616
+ *
9617
+ * By default, any published variant will match. Use the constraint options to
9618
+ * limit matching to the base variant, or to a particular variant id.
9619
+ *
9525
9620
  * @beta
9526
9621
  */
9527
- declare function isPublishedVersion(version: VersionInfoDocumentStub): boolean;
9622
+ declare function isPublishedVersion(version: VersionInfoDocumentStub, options?: {
9623
+ constraint: VariantConstraint;
9624
+ }): boolean;
9528
9625
  /**
9529
- * Uses the _system field to check if a version is a draft version
9626
+ * Uses the `_system` field to check if a version is a draft version.
9627
+ *
9628
+ * By default, any draft variant will match. Use the constraint options to
9629
+ * limit matching to the base variant, or to a particular variant id.
9630
+ *
9530
9631
  * @beta
9531
9632
  */
9532
- declare function isDraftVersion(version: VersionInfoDocumentStub): boolean;
9633
+ declare function isDraftVersion(version: VersionInfoDocumentStub, options?: {
9634
+ constraint: VariantConstraint;
9635
+ }): boolean;
9533
9636
  /**
9534
9637
  * Uses the _system field to check if a version is a variant version
9535
9638
  * @beta
@@ -9540,6 +9643,11 @@ declare function isVariantVersion(version: VersionInfoDocumentStub): boolean;
9540
9643
  * @beta
9541
9644
  */
9542
9645
  declare function isReleaseVersion(version: VersionInfoDocumentStub): boolean;
9646
+ /**
9647
+ * Uses the _system field to determine the version type of a document.
9648
+ * @beta
9649
+ */
9650
+ declare function readVersionType(version: VersionInfoDocumentStub | undefined): VersionType | undefined;
9543
9651
  /**
9544
9652
  * RxJS operator that measures the time from subscription to the first emission.
9545
9653
  * Calls `onMeasured` once with the elapsed duration in milliseconds and the emitted value.
@@ -10427,6 +10535,16 @@ declare const useDocumentLimitsUpsellContext: () => DocumentLimitUpsellContextVa
10427
10535
  * @internal
10428
10536
  */
10429
10537
  declare const isDocumentLimitError: (error: unknown) => boolean;
10538
+ /**
10539
+ * @internal
10540
+ */
10541
+ type SetVariant = (options: {
10542
+ variantId: SystemVariant['_id'] | undefined;
10543
+ perspective?: SystemBundle | ReleaseId;
10544
+ } | {
10545
+ variantId?: SystemVariant['_id'];
10546
+ perspective: SystemBundle | ReleaseId;
10547
+ }) => void;
10430
10548
  /**
10431
10549
  * React hook to set the variant in the router.
10432
10550
  * Optionally sets the perspective in the same navigation, so both sticky params
@@ -10435,9 +10553,7 @@ declare const isDocumentLimitError: (error: unknown) => boolean;
10435
10553
  * @internal
10436
10554
  * @beta
10437
10555
  */
10438
- declare function useSetVariant(): (variantId: SystemVariant['_id'] | undefined, options?: {
10439
- perspective?: SystemBundle | ReleaseId;
10440
- }) => void;
10556
+ declare function useSetVariant(): SetVariant;
10441
10557
  /**
10442
10558
  * Gets all variants.
10443
10559
  * @internal
@@ -10448,6 +10564,78 @@ declare function useAllVariants(): {
10448
10564
  error?: Error;
10449
10565
  loading: boolean;
10450
10566
  };
10567
+ /**
10568
+ * The resolution state of the document targeted by the selected perspective (bundle) and variant.
10569
+ *
10570
+ * The union is shaped by what consumers must do, not just by what was observed:
10571
+ *
10572
+ * - `resolving` — a lookup (variant definitions or version stubs) is still in flight. Consumers
10573
+ * must not fall back to the base draft/published pair; treat the target as not ready.
10574
+ * - `ready` — resolution finished. `targetDocument` is the version stub matching the current
10575
+ * bundle (and variant, when one is selected); it is `undefined` only when no variant is
10576
+ * selected and no stub exists for the bundle, in which case base draft/published semantics
10577
+ * legitimately apply. `scopeId` is the bundle segment to thread into version-aware hooks
10578
+ * (release id for release stubs, opaque scope hash for variant stubs, `undefined` for the
10579
+ * base pair).
10580
+ * - `variant-missing` — a variant is selected but the document has no variant-scoped version
10581
+ * for the current bundle. Consumers must treat the document as read-only and offer creation;
10582
+ * never fall back to the base pair.
10583
+ * - `variant-definition-document-not-found` — the requested variant name matches no
10584
+ * `system.variant` definition. An error state, never silently treated as "no variant".
10585
+ *
10586
+ * @internal
10587
+ * @beta
10588
+ */
10589
+ type TargetDocumentState = {
10590
+ status: 'resolving';
10591
+ } | {
10592
+ status: 'ready';
10593
+ targetDocument: VersionInfoDocumentStub | undefined;
10594
+ scopeId: string | undefined; /** The selected variant when the resolved target is a variant-scoped version. */
10595
+ variant: SystemVariant | undefined;
10596
+ } | {
10597
+ status: 'variant-missing';
10598
+ variant: SystemVariant;
10599
+ bundle: PerspectiveBundle;
10600
+ } | {
10601
+ status: 'variant-definition-document-not-found';
10602
+ requestedVariantName: string;
10603
+ };
10604
+ /**
10605
+ * Returns the scope id to thread into version-aware hooks (`useEditState`,
10606
+ * `useDocumentOperation`, etc.) for a resolved target, or `undefined` when the target is not
10607
+ * ready or the base draft/published pair applies.
10608
+ *
10609
+ * @internal
10610
+ * @beta
10611
+ */
10612
+ declare function getTargetScopeId(state: TargetDocumentState): string | undefined;
10613
+ /**
10614
+ * Maps a {@link TargetDocumentState} to the `target` parameter of `useDocumentOperation` /
10615
+ * `pair.editOperations`, preserving the guarded states: `resolving` yields `unresolved`
10616
+ * (operations stay `NOT_READY`), and `variant-missing` / `variant-definition-document-not-found`
10617
+ * yield `target-missing` (operations disabled with `TARGET_NOT_FOUND`). Both throw if executed,
10618
+ * so operations can never silently fall back to the base draft/published pair.
10619
+ *
10620
+ * @internal
10621
+ * @beta
10622
+ */
10623
+ declare function getPairTarget(state: TargetDocumentState): DocumentPairTarget | string | undefined;
10624
+ /**
10625
+ * Resolves the document targeted by the selected perspective and variant for a document group,
10626
+ * as an explicit {@link TargetDocumentState}.
10627
+ *
10628
+ * Unlike a plain "target document or undefined" lookup, the returned state distinguishes the
10629
+ * in-flight lookups (`resolving`), the definitive absence of a variant-scoped version
10630
+ * (`variant-missing`), and an invalid variant selection
10631
+ * (`variant-definition-document-not-found`) from the legitimate base draft/published fallback
10632
+ * (`ready` without a target document). Consumers must switch on `status` instead of treating
10633
+ * `undefined` as "no variant".
10634
+ *
10635
+ * @internal
10636
+ * @beta
10637
+ */
10638
+ declare function useTargetDocumentState(documentGroupId: string): TargetDocumentState;
10451
10639
  /**
10452
10640
  * @internal
10453
10641
  */
@@ -14157,15 +14345,15 @@ type Patch$1 = any;
14157
14345
  /** @internal */
14158
14346
  interface OperationsAPI {
14159
14347
  commit: Operation | GuardedOperation;
14160
- delete: Operation<[versions?: string[]], 'NOTHING_TO_DELETE' | 'NOT_READY'>;
14161
- del: Operation<[versions?: string[]], 'NOTHING_TO_DELETE'> | GuardedOperation;
14162
- publish: Operation<[], 'LIVE_EDIT_ENABLED' | 'ALREADY_PUBLISHED' | 'NO_CHANGES'> | GuardedOperation;
14348
+ delete: Operation<[versions?: string[]], 'NOTHING_TO_DELETE' | 'NOT_READY' | 'TARGET_NOT_FOUND'>;
14349
+ 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;
14163
14351
  patch: Operation<[patches: Patch$1[], initialDocument?: Record<string, any>]> | GuardedOperation;
14164
- discardChanges: Operation<[], 'NO_CHANGES' | 'NOT_PUBLISHED'> | GuardedOperation;
14165
- unpublish: Operation<[], 'LIVE_EDIT_ENABLED' | 'NOT_PUBLISHED'> | GuardedOperation;
14352
+ discardChanges: Operation<[], 'NO_CHANGES' | 'NOT_PUBLISHED' | 'TARGET_NOT_FOUND'> | GuardedOperation;
14353
+ unpublish: Operation<[], 'LIVE_EDIT_ENABLED' | 'NOT_PUBLISHED' | 'TARGET_NOT_FOUND'> | GuardedOperation;
14166
14354
  duplicate: Operation<[documentId: string, options?: {
14167
14355
  mapDocument?: MapDocument;
14168
- }], 'NOTHING_TO_DUPLICATE'> | GuardedOperation;
14356
+ }], 'NOTHING_TO_DUPLICATE' | 'TARGET_NOT_FOUND'> | GuardedOperation;
14169
14357
  restore: Operation<[revision: DocumentRevision]> | GuardedOperation;
14170
14358
  }
14171
14359
  /** @internal */
@@ -14346,8 +14534,15 @@ interface DocumentStore {
14346
14534
  pair: {
14347
14535
  /** @internal */commitErrorStatus: (publishedId: string, type: string, version?: string) => Observable<CommitError | undefined>;
14348
14536
  consistencyStatus: (publishedId: string, type: string, version?: string) => Observable<boolean>; /** @internal */
14349
- documentEvents: (publishedId: string, type: string, version?: string) => Observable<DocumentVersionEvent>; /** @internal */
14350
- editOperations: (publishedId: string, type: string, version?: string) => Observable<OperationsAPI>;
14537
+ documentEvents: (publishedId: string, type: string, version?: string) => Observable<DocumentVersionEvent>;
14538
+ /**
14539
+ * @internal
14540
+ * `version` accepts either a plain version name (release/bundle) or a
14541
+ * {@link DocumentPairTarget}. The guarded target kinds (`unresolved`, `target-missing`) emit
14542
+ * a disabled operations API without checking out a pair, so operations can never reach the
14543
+ * base draft/published pair while a selected target is unresolved or has no document.
14544
+ */
14545
+ editOperations: (publishedId: string, type: string, version?: string | DocumentPairTarget) => Observable<OperationsAPI>;
14351
14546
  editState: (publishedId: string, type: string, version?: string) => Observable<EditStateFor>;
14352
14547
  operationEvents: (publishedId: string, type: string) => Observable<OperationSuccess | OperationError>;
14353
14548
  validation: (validationTargetId: string, type: string, validatePublishedReferences: boolean) => Observable<ValidationStatus>;
@@ -17637,4 +17832,4 @@ interface ActiveWorkspaceMatcherContextValue {
17637
17832
  activeWorkspace: WorkspaceSummary;
17638
17833
  setActiveWorkspace: (workspaceName: string) => void;
17639
17834
  }
17640
- export { NewDocumentCreationContext as $, MetadataWrapper as $C, MutationEvent as $S, WorkspacesProviderProps as $T, getApiErrorCode as $_, DocumentVersionSnapshots as $a, defaultLocale as $b, dec as $c, LoadableState as $d, SchedulesContext as $f, CommentsContextValue as $g, createUserColorManager as $h, TemplatePermissionsOptions as $i, IntentButton as $l, ChunkType as $m, ArrayOfPrimitiveOptionsInput as $n, FormBuilderCustomMarkersComponent as $o, noop as $p, FieldPresenceData as $r, BlockStyleProps as $s, useFormBuilder as $t, ArrayOfObjectsItemMember as $u, defineSearchFilter as $v, isPublishedId as $w, defaultTemplatesForSchema as $x, useWorkspaces as $y, ComposableOption as A, TrackedChange as AC, UseFormattedDurationOptions as AS, onRetry as AT, isValidAnnouncementAudience as A_, QueryParams$1 as Aa, CommentReactionOption as Ab, defaultRenderInput as Ac, TypeAnnotationMismatchError as Ad, EMPTY_ARRAY as Af, DocumentGroupInventoryProps as Ag, DocumentVersionEventType as Ah, useProject as Ai, BlockPreview as Al, TIMELINE_ITEM_I18N_KEY_MAPPING as Am, SelectInput as An, CommitRequest as Ao, isPerspectiveWriteable as Ap, FormFieldValidation as Ar, PasteData$1 as As, DocumentInspectorProps as At, DEFAULT_ANNOTATIONS as Au, FormUnsetPatch as Av, ReleaseId as Aw, ValidationLocaleResourceKeys as Ax, ColorSchemeLocalStorageProvider as Ay, DocumentBadgesResolver as B, ConnectorContextValue as BC, DocumentIdStack as BS, createAuthStore as BT, useStudioErrorHandler as B_, InitialValueState as Ba, CommentsType as Bb, useParseErrorForPath as Bc, getVariantTitle as Bd, useDocumentPreviewValues as Bf, CollapseMenuButtonProps as Bg, isCreateDocumentVersionEvent as Bh, createPresenceStore as Bi, CompactPreviewProps as Bl, DiffVisitor as Bm, ImageUrlBuilder$1 as Bn, SanityDefaultPreview as Bo, normalizeKeySegment as Bp, FormFieldHeaderText as Br, RenderInputCallback as Bs, DocumentFieldActionItem as Bt, mergeParseErrors as Bu, NavbarProps as Bv, VERSION_FOLDER as Bw, useUnitFormatter as Bx, StudioThemeColorSchemeKey as By, ActionComponent as C, CommentDisabledIcon as CC, useManageFavorite as CS, ConnectingStatus as CT, UpsellDialogViewed as C_, selectUpstreamVersion as Ca, CommentIntentGetter as Cb, FormProviderProps as Cc, ArrayItemError as Cd, isNonNullable as Cf, FeedbackDialogProps as Cg, useEvents as Ch, useHistoryStore as Ci, Resizable as Cl, DiffFromToProps as Cm, TelephoneInput as Cn, Pair as Co, useSetPerspective as Cp, useDocumentDivergences as Cr, EditorChange as Cs, ReleaseActionDescription as Ct, PUBLISHED as Cu, FormInsertPatchPosition as Cv, getVersionInlineBadge as Cw, LocaleResourceRecord as Cx, compileFieldPath as Cy, AsyncConfigPropertyReducer as D, useChangeIndicatorsReporter as DC, useGlobalCopyPasteElementHandler as DS, ErrorStatus as DT, NavbarContextValue as D_, useDocumentType as Da, CommentPath as Db, defaultRenderBlock as Dc, InvalidItemTypeError as Dd, getReferencePaths as Df, isDev as Dg, DeleteDocumentGroupEvent as Dh, useRenderingContextStore as Di, TemplatePreviewProps as Dl, DiffErrorBoundaryState as Dm, StringInput as Dn, BufferedDocumentEvent as Do, PerspectiveProvider as Dp, FormInput as Dr, ObjectInputProps as Ds, DocumentInspector as Dt, useArchivedReleases as Du, FormPatchOrigin as Dv, VersionChip as Dw, LocalesOption as Dx, SearchHeader as Dy, AsyncComposableOption as E, useChangeIndicatorsReportedValues as EC, GlobalCopyPasteElementHandler as ES, ConnectionStatusStoreOptions as ET, StudioProviderProps as E_, DocumentTypeResolveState as Ea, CommentOperations as Eb, defaultRenderAnnotation as Ec, IncompatibleTypeError as Ed, getTargetDocument as Ef, StudioFeedbackProvider as Eg, CreateLiveDocumentEvent as Eh, useProjectStore as Ei, TemplatePreview as El, DiffErrorBoundaryProps as Em, TagsArrayInputProps as En, checkoutPair as Eo, useExcludedPerspective as Ep, FormRow as Er, NumberInputProps as Es, FormComponents as Et, useDocumentVersionInfo as Eu, FormPatchJSONValue as Ev, ReleaseAvatarIcon as Ew, LocalesBundlesOption as Ex, SearchPopoverProps as Ey, DocumentActionsContext as F, IsEqualFunction as FC, DocumentSyncState as FS, createMockAuthStore as FT, Studio as F_, InitialValueOptions as Fa, CommentThreadItem as Fb, ReferenceInputOptions as Fc, resolveConditionalProperty as Fd, catchWithCount as Ff, ScrollEventHandler as Fg, PublishDocumentVersionEvent as Fh, ProjectGrants as Fi, DetailPreview as Fl, ChangeList as Fm, PortableTextMemberItem as Fn, getPreviewPaths as Fo, getItemKeySegment as Fp, FormFieldValidationStatusProps as Fr, RenderAnnotationCallback as Fs, defineDocumentFieldAction as Ft, isDocumentLimitError as Fu, StudioNavbar as Fv, CollatedHit as Fw, UserWithPermission as Fx, useColorSchemeOptions as Fy, DocumentLanguageFilterContext as G, useVersionOperations as GC, DocumentRebaseTelemetryEvent as GS, LoginComponentProps as GT, ConfigErrorClassification as G_, OperationSuccess as Ga, useWorkspaceSchemaId as Gb, useFormCallbacks as Gc, isDraftVersion as Gd, DEFAULT_STUDIO_CLIENT_OPTIONS as Gf, buildTextSelectionFromFragment as Gg, isPublishDocumentVersionEvent as Gh, Status as Gi, PreviewLayoutKey as Gl, Annotation as Gm, DateTimeInputProps as Gn, isArrayOfObjectsInputProps as Go, resolveDiffComponent as Gp, PresenceScopeProps as Gr, ItemProps as Gs, DocumentFieldActionsResolver as Gt, getExpandOperations as Gu, SearchDialog as Gv, getDraftId as Gw, DEFAULT_MAX_RECURSION_DEPTH as Gx, MatchWorkspaceOptions as Gy, DocumentInspectorContext as H, ChangeIndicatorProps as HC, EditStateFor as HS, AuthState as HT, useRetryCountdown as H_, validation$1 as Ha, Loadable as Hb, useReportParseError as Hc, isDocumentInSelectedVariant as Hd, TasksContextValue as Hf, AutoCollapseMenu as Hg, isDeleteDocumentGroupEvent as Hh, GlobalPresence as Hi, GeneralPreviewLayoutKey as Hl, getAnnotationColor as Hm, EmailInputProps as Hn, PreviewLoader as Ho, pathToString as Hp, FormField as Hr, RenderPreviewCallback as Hs, DocumentFieldActionProps as Ht, ExpandOperation as Hu, StudioComponentsPluginOptions as Hv, createDraftFrom as Hw, TimeAgoOpts as Hx, AddonDatasetContextValue as Hy, DocumentActionsResolver as I, Reported as IC, deriveDocumentSyncState as IS, AuthStoreOptions as IT, StudioProps as I_, getInitialValueStream as Ia, CommentUpdateOperationOptions as Ib, ReferenceInputOptionsProvider as Ic, getDocumentIdForCanvasLink as Id, defaultTheme as If, ScrollContainer as Ig, ScheduleDocumentVersionEvent as Ih, ProjectOrganizationData as Ii, DetailPreviewProps as Il, ChangeListProps as Im, UpdateReadOnlyPlugin as In, unstable_useValuePreview as Io, getValueAtPath as Ip, FieldStatusProps as Ir, RenderArrayOfObjectsItemCallback as Is, DocumentFieldAction as It, useDocumentLimitsUpsellContext as Iu, ActiveToolLayoutProps as Iv, DRAFTS_FOLDER as Iw, useUserListWithPermissions as Ix, useColorSchemeSetValue as Iy, DocumentPluginOptions as J, useFormatRelativeLocalePublishDate as JC, LatencyReportEvent as JS, RequestErrorReportOptions as JT, classifyRequestError as J_, MapDocument as Ja, ValidateDocumentOptions as Jb, PatchMsg as Jc, isVariantVersion as Jd, usePausedScheduledDraft as Jf, useCommentsTelemetry as Jg, isUnscheduleDocumentVersionEvent as Jh, UserStoreOptions as Ji, PreviewCard as Jl, ArrayItemMetadata as Jm, CrossDatasetReferencePreview as Jn, isNumberInputProps as Jo, isAddedItemDiff as Jp, FieldPresence as Jr, PrimitiveItemProps as Js, decodePath as Jt, useFormState as Ju, useSearchMaxFieldDepth as Jv, getVersionFromId as Jw, isBuilder as Jx, WorkspacesContextValue as Jy, DocumentLanguageFilterResolver as K, useOnlyHasVersions as KC, DocumentStoreExtraOptions as KS, RequestErrorChannel as KT, RequestErrorClassification as K_, emitOperation as Ka, useVersionRelease as Kb, MutationPatchMsg as Kc, isPublishedVersion as Kd, useScheduledDraftsEnabled as Kf, buildRangeDecorationSelectionsFromComments as Kg, isScheduleDocumentVersionEvent as Kh, UserSessionPair as Ki, PreviewMediaDimensions as Kl, AnnotationDetails as Km, DateInput as Kn, isArrayOfPrimitivesInputProps as Ko, useDocumentChange as Kp, PresenceOverlay as Kr, ObjectItem as Ks, DocumentFieldActionsResolverContext as Kt, FormState as Ku, SearchButton as Kv, getIdPair as Kw, RESOLVE_INITIAL_VALUE_TIMEOUT_MS as Kx, MatchWorkspaceResult as Ky, DocumentActionsVersionType as L, ReporterHook as LC, useDocumentSyncState as LS, CreateAuthStoreOptions as LT, SourceProvider as L_, InitialValueErrorMsg as La, CommentUpdatePayload as Lb, TemplateOption as Lc, useNavigateToCanvasDoc as Ld, buildLegacyTheme as Lf, ScrollContainerProps as Lg, UnpublishDocumentEvent as Lh, ProjectStore as Li, DefaultPreview as Ll, ChangeBreadcrumb as Lm, ObjectInput as Ln, useValuePreview as Lo, isEmptyObject as Lp, FormFieldStatus as Lr, RenderArrayOfPrimitivesItemCallback as Ls, DocumentFieldActionDivider as Lt, DivergenceNavigator as Lu, LayoutProps as Lv, DraftId as Lw, FormattableMeasurementUnit as Lx, useColorSchemeValue as Ly, ConfigContext$1 as M, TrackerContextStore as MC, useFilteredReleases as MS, isCookielessCompatibleLoginMethod as MT, StudioAnnouncementsDialog as M_, ListenQueryOptions as Ma, CommentStatus as Mb, defaultRenderPreview as Mc, FormFieldGroup as Md, LoadingTuple as Mf, DocumentGroupInventoryReferencePreviewLinkProps as Mg, EventsStore as Mh, getProjectGrants as Mi, BlockImagePreviewProps as Ml, ChangesError as Mm, CreateButton as Mn, prepareForPreview as Mo, FIXME as Mp, FormFieldValidationInfo as Mr, PrimitiveInputElementProps as Ms, defineDocumentInspector as Mt, ReleaseDocument$1 as Mu, ToolLink as Mv, SelectedPerspective as Mw, Rule as Mx, ColorSchemeProviderProps as My, ConfigPropertyReducer as N, useTrackerStore as NC, useFeatureEnabled as NS, getProviderTitle as NT, StudioAnnouncementsContextValue as N_, ListenQueryParams as Na, CommentTaskCreatePayload as Nb, EditReferenceLinkComponentProps as Nc, ProvenanceDiffAnnotation as Nd, ReactHook as Nf, DocumentGroupInventoryAction as Ng, EventsStoreRevision as Nh, ProjectData as Ni, MediaPreview as Nl, ChangeResolver as Nm, CreateReferenceOption as Nn, getPreviewValueWithFallback as No, findIndex as Np, FormFieldValidationWarning as Nr, PrimitiveInputProps as Ns, initialDocumentFieldActions as Nt, useAllVariants as Nu, ToolLinkProps as Nv, TargetPerspective as Nw, UserListWithPermissionsHookValue as Nx, useColorScheme as Ny, BaseActionDescription as O, ChangeIndicatorTrackerContextValue as OC, FormDocumentValue as OS, RetryingStatus as OT, StudioLayout as O_, DocumentStore as Oa, CommentPostPayload as Ob, defaultRenderField as Oc, MissingKeysError as Od, getErrorMessage as Of, isProd as Og, DeleteDocumentVersionEvent as Oh, useUserStore as Oi, InlinePreview as Ol, DiffCard as Om, SlugInput as On, BufferedDocumentWrapper as Oo, ReleasesNav as Op, FormInputAbsolutePathArg as Or, OnPasteFn as Os, DocumentInspectorComponent as Ot, useActiveReleases as Ou, FormSetIfMissingPatch as Ov, PerspectiveContextValue as Ow, StaticLocaleResourceBundle as Ox, Filters as Oy, DefaultPluginsWorkspaceOptions as P, useTrackerStoreReporter as PC, useEditState as PS, MockAuthStoreOptions as PT, StudioAnnouncementsCard as P_, listenQuery as Pa, CommentTextSelection as Pb, EditReferenceOptions as Pc, ALL_FIELDS_GROUP as Pd, createHookFromObservableFactory as Pf, ScrollContextValue as Pg, HistoryClearedEvent as Ph, ProjectDatasetData as Pi, MediaPreviewProps as Pl, ChangeResolverProps as Pm, PortableTextInput as Pn, getPreviewStateObservable as Po, getItemKey as Pp, FormFieldValidationStatus as Pr, StringInputProps as Ps, documentFieldActionsReducer as Pt, useSetVariant as Pu, StudioToolMenu as Pv, SystemVariant as Pw, UserListWithPermissionsOptions as Px, useColorSchemeInternalValue as Py, MissingConfigFile as Q, isReleaseDocument as QC, IdPair as QS, WorkspacesProvider as QT, parseRetryAfter as Q_, OperationsAPI as Qa, TranslationProps as Qb, SANITY_PATCH_TYPE as Qc, ErrorState as Qd, createSchema as Qf, useComments as Qg, UserColorManagerOptions as Qh, KeyValueStoreValue as Qi, PopoverDialog as Ql, Chunk as Qm, ArrayOfPrimitivesFunctions as Qn, ArrayInputFunctionsProps as Qo, isUnchangedDiff as Qp, FieldPresenceWithOverlay as Qr, BlockProps as Qs, toMutationPatches as Qt, FieldsetState as Qu, SearchFilterDefinition as Qv, isDraftId as Qw, defaultTemplateForType as Qx, validateWorkspaces as Qy, DocumentAskToEditEnabledContext as R, ChangeConnectorRoot as RC, useDocumentOperationEvent as RS, RequestFailureDiagnostics as RT, SourceProviderProps as R_, InitialValueLoadingMsg as Ra, CommentsListBreadcrumbItem as Rb, useReferenceInputOptions as Rc, useCanvasCompanionDoc as Rd, LegacyThemeProps as Rf, useOnScroll as Rg, UnscheduleDocumentVersionEvent as Rh, PresenceStore as Ri, DefaultPreviewProps as Rl, useAnnotationColor as Rm, NumberInput as Rn, unstable_useObserveDocument as Ro, normalizeIndexSegment as Rp, FormFieldSet as Rr, RenderBlockCallback as Rs, DocumentFieldActionGroup as Rt, useDivergenceNavigator as Ru, LogoProps as Rv, PublishedId as Rw, UnitFormatter as Rx, StudioColorScheme as Ry, useMiddlewareComponents as S, useClient as SC, UseManageFavoriteProps as SS, ConnectedStatus as ST, UpsellDialogUpgradeCtaClicked as S_, useInitialValueResolverContext as Sa, CommentFieldCreatePayload as Sb, FormProvider as Sc, StringFormNode as Sd, isRecord as Sf, FeedbackDialog as Sg, EventsProvider as Sh, useGrantsStore as Si, StatusButtonProps as Sl, DiffFromTo as Sm, TextInputProps as Sn, MutationResult as So, EditScheduleForm as Sp, DivergencesProvider as Sr, ComplexElementProps as Ss, ReleaseActionComponent as St, LATEST as Su, FormInsertPatch as Sv, VersionInlineBadge as Sw, LocaleResourceKey as Sx, SearchTerms as Sy, AssetSourceResolver as T, ChangeIndicatorsTracker as TC, useListFormat as TS, ConnectionStatusStore as TT, StudioProvider as T_, useDocumentValues as Ta, CommentMessage as Tb, FormBuilderProps as Tc, FieldError as Td, globalScope as Tf, ConsentStatus as Tg, CreateDocumentVersionEvent as Th, usePresenceStore as Ti, RelativeTimeProps as Tl, DiffErrorBoundary as Tm, TagsArrayInput as Tn, WithVersion as To, useGetDefaultPerspective as Tp, FormCell as Tr, InputProps as Ts, ReleaseActionsContext as Tt, ReleasesUpsellContextValue as Tu, FormPatchBase as Tv, ReleaseAvatar as Tw, LocaleWeekInfo as Tx, SearchPopover as Ty, DocumentInspectorsResolver as U, ChangeFieldWrapper as UC, editState$1 as US, AuthStore as UT, createRequestErrorChannel as U_, remoteSnapshots as Ua, CommentsAuthoringPathContextValue as Ub, FormCallbacksProvider as Uc, measureFirstEmission as Ud, TasksNavigationContextValue as Uf, CollapseMenu as Ug, isDeleteDocumentVersionEvent as Uh, PresenceLocation as Ui, PortableTextPreviewLayoutKey as Ul, getDiffAtPath as Um, getCalendarLabels as Un, Preview as Uo, pathsAreEqual as Up, FormFieldProps as Ur, RenderPreviewCallbackProps as Us, DocumentFieldActionStatus as Ut, ExpandPathOperation as Uu, ToolMenuProps as Uv, createPublishedFrom as Uw, useTimeAgo as Ux, AddonDatasetProvider as Uy, DocumentCommentsEnabledContext as V, ChangeIndicator as VC, useDocumentIdStack as VS, AuthProbeResult as VT, RequestErrorDialog as V_, InitialValueSuccessMsg as Va, CommentsUIMode as Vb, useParseErrors as Vc, useVariantDocumentOperations as Vd, TasksUpsellContextValue as Vf, CommonProps as Vg, isCreateLiveDocumentEvent as Vh, DocumentPresence as Vi, GeneralDocumentListLayoutKey as Vl, getAnnotationAtPath as Vm, EmailInput as Vn, SanityDefaultPreviewProps as Vo, normalizePathSegment as Vp, FormFieldHeaderTextProps as Vr, RenderItemCallback as Vs, DocumentFieldActionNode as Vt, ExpandFieldSetOperation as Vu, StudioComponents as Vv, collate as Vw, useTools as Vx, useAddonDataset as Vy, DocumentLanguageFilterComponent as W, sortReleases as WC, DocumentPairLoadedEvent as WS, HandleCallbackResult as WT, passthroughErrorHandler as W_, OperationError as Wa, CommentsAuthoringPathProvider as Wb, FormCallbacksValue as Wc, measureFirstMatch as Wd, MentionUserContextValue as Wf, CollapseMenuProps as Wg, isEditDocumentVersionEvent as Wh, Session as Wi, PreviewComponent as Wl, visitDiff as Wm, DateTimeInput as Wn, isArrayOfBlocksInputProps as Wo, stringToPath as Wp, PresenceScope as Wr, BaseItemProps as Ws, DocumentFieldActionTone as Wt, SetActiveGroupOperation as Wu, StudioLogo as Wv, documentIdEquals as Ww, useTemplates as Wx, useActiveWorkspace as Wy, GroupableActionDescription as X, useDocumentVersions as XC, MutationPerformanceEvent as XS, CorsCheckResult as XT, isNetworkError as X_, OperationArgs as Xa, Translate as Xb, RebasePatchMsg as Xc, useThrottledCallback as Xd, useSingleDocRelease as Xf, useCommentsEnabled as Xg, UserColorManagerProvider as Xh, createKeyValueStore as Xi, ReferenceInputPreviewCard as Xl, ChangeNode as Xm, UniversalArrayInput as Xn, isObjectItemProps as Xo, isGroupChange as Xp, FieldPresenceInnerProps as Xr, BlockDecoratorProps as Xs, MutationPatch as Xt, StateTree as Xu, SearchProvider as Xv, idMatchesPerspective as Xw, resolveInitialValue as Xx, validateBasePaths as Xy, FormBuilderComponentResolverContext as Y, useDocumentVersionTypeSortedList as YC, ListenerEvent as YS, StudioErrorHandler as YT, isClientRequestError as Y_, Operation as Ya, validateDocument as Yb, PatchMsgSubscriber as Yc, useUnique as Yd, SingleDocReleaseProvider as Yf, useCommentsSelectedPath as Yg, isUpdateLiveDocumentEvent as Yh, createUserStore as Yi, PreviewCardContextValue as Yl, BooleanDiff$1 as Ym, BooleanInput as Yn, isObjectInputProps as Yo, isFieldChange as Yp, FieldPresenceInner as Yr, BlockAnnotationProps as Ys, encodePath as Yt, setAtPath as Yu, useSearchState as Yv, getVersionId as Yw, resolveInitialObjectValue as Yx, ValidateWorkspaceOptions as Yy, MediaLibraryConfig as Z, VersionInfoDocumentStub as ZC, getPairListener as ZS, CorsProbeOutcome as ZT, isTimeoutError as Z_, OperationImpl as Za, TranslateComponentMap as Zb, createPatchChannel as Zc, userHasRole as Zd, getSchemaTypeTitle as Zf, CommentsEnabledContextValue as Zg, UserColorManagerProviderProps as Zh, KeyValueStore as Zi, usePreviewCard as Zl, ChangeTitlePath as Zm, ArrayOfPrimitivesInput as Zn, isStringInputProps as Zo, isRemovedItemDiff as Zp, FieldPresenceProps as Zr, BlockListItemProps as Zs, fromMutationPatches as Zt, FieldsetMembers as Zu, SearchContextValue as Zv, isDraft as Zw, resolveInitialValueForType as Zx, validateNames as Zy, createDefaultIcon as _, useDataset as _C, useReferringDocuments as _S, CommandListProps as _T, useWorkspace as __, Grant as _a, CommentsProvider as _b, UploaderResolver as _c, NumberFormNode as _d, isCardinalityOneRelease as _f, FeedbackPayload as _g, StringSegmentUnchanged$1 as _h, useDocumentPresence as _i, ToastParams$1 as _l, DiffTooltipWithAnnotationsProps as _m, ArrayOfObjectsInputMember as _n, DocumentRemoteMutationVersionEvent as _o, DuplicateActionProps as _p, GetFormValueProvider as _r, ArrayOfObjectsInputProps as _s, Workspace as _t, RELEASES_STUDIO_CLIENT_OPTIONS as _u, SanityClipboardItem as _v, PreparedSnapshot as _w, LocaleConfigContext as _x, isPerspectiveRaw as _y, resolveSchemaTypes as a, CommitFunction as aC, useAgentVersionDisplay as aE, TemplateItem as aS, systemBundles as aT, CommentInput as a_, createGrantsStore as aa, getWorkspaceIdentifier as ab, UploadEvent as ac, FieldSetMember as ad, truncateString as af, UserColorManager as ag, FieldChangeNode as ah, RegionWithIntersectionDetails as ai, setIfMissing as al, MetaInfo as am, ObjectInputMemberProps as an, DocumentRevision as ao, HookCollectionActionHook as ap, ArrayOfObjectsInput as ar, RenderBlockActionsProps as as, PreparedConfig as at, useCopyErrorDetails as au, GenerateStudioManifestOptions as av, AvailabilityReason as aw, useLocale as ax, OperatorButtonValueComponentProps as ay, ConfigPropertyError as b, useConnectionState as bC, UseNumberFormatOptions as bS, BetaBadgeProps as bT, UpsellDialogDismissed as b_, useResolveInitialValueForType as ba, CommentCreatePayload as bb, StudioCrossDatasetReferenceInput as bc, ObjectRenderMembersCallback as bd, isTruthy as bf, StudioFeedbackDialog as bg, getValueError as bh, useDocumentPreviewStore as bi, TextWithToneProps as bl, DiffInspectWrapper as bm, UrlInputProps as bn, DocumentVersion as bo, isSanityDefinedAction as bp, FormValueProvider as br, BaseInputProps as bs, WorkspaceOptions as bt, getReleaseTone as bu, FormDiffMatchPatch as bv, PreviewableType as bw, LocalePluginOptions as bx, SearchOptions as by, createWorkspaceFromConfig as c, DocumentRebaseEvent as cC, EditPortal as cE, TypeTarget as cS, getDocumentVariantType as cT, CommentsList as c_, getDocumentValuePermissions as ca, ConfigErrorGate as cb, FileInputProps as cc, ArrayOfObjectsFormNode as cd, escapeField as cf, FeedbackContextValue as cg, GroupChangeNode as ch, DocumentPreviewPresence as ci, useZIndex as cl, FromToArrow as cm, MemberField as cn, createHistoryStore as co, DocumentActionConfirmDialogProps as cp, FormBuilderContextValue as cr, ArrayOfPrimitivesFieldProps as cs, SanityFormConfig as ct, ErrorActionsProps as cu, StudioManifest as cv, DocumentStackAvailability as cw, useI18nText as cx, SearchOperatorBuilder as cy, flattenConfig as d, RemoteSnapshotEvent as dC, useStudioUrl as dS, CommandListElementType as dT, WorkspaceLoaderBoundary as d_, DocumentPermission as da, RouterHistory as db, FileLike as dc, BooleanFormNode as dd, _isCustomDocumentTypeDefinition as df, useFeedback as dg, NumberDiff$1 as dh, useUser as di, UserAvatar as dl, FromToProps as dm, ArrayOfPrimitivesItem as dn, TimelineController as do, DocumentActionDialogProps as dp, useFieldActions as dr, FieldCommentsProps as ds, SingleWorkspace as dt, DocumentStatus as du, useCopyPaste as dv, FieldName as dw, defineLocalesResources as dx, SearchOperatorParams as dy, PendingMutationsEvent as eC, AuthConfig as eE, prepareTemplates as eS, isSystemBundle as eT, hasCommentMessageValue as e_, TemplatePermissionsResult as ea, evaluateWorkspaceHidden as eb, MarkdownConfig as ec, ArrayOfObjectsMember as ed, LoadedState as ef, useUserColor as eg, Diff$1 as eh, FormNodePresence as ei, diffMatchPatch as el, DocumentChangeContextInstance as em, useDocumentForm as en, snapshotPair as eo, ScheduledBadge as ep, ArrayOfOptionsInput as er, FormBuilderFilterFieldFn as es, NewDocumentOptionsContext as et, InsufficientPermissionsMessage as eu, isInvalidSessionError as ev, DocumentPreviewStore as ew, usEnglishLocale as ex, defineSearchFilterOperators as ey, PluginFactory as f, SnapshotEvent as fC, useSchema as fS, CommandListGetItemDisabledCallback as fT, useWorkspaceLoader as f_, getDocumentPairPermissions as fa, CommentsSelectedPath as fb, ResolvedUploader as fc, ComputeDiff as fd, _isSanityDocumentTypeDefinition as ff, SendFeedbackOptions as fg, ObjectDiff$1 as fh, ResourceCache as fi, UserAvatarProps as fl, FieldChange as fm, PrimitiveMemberItemProps as fn, TimelineControllerOptions as fo, DocumentActionGroup as fp, FieldActionsProps as fr, FieldProps as fs, Source as ft, formatRelativeLocalePublishDate as fu, BaseOptions as fv, Id as fw, removeUndefinedLocaleResources as fx, SearchValueFormatterContext as fy, defineConfig as g, useDateTimeFormat as gC, DocumentField as gS, CommandListItemContext as gT, WorkspaceProviderProps as g_, EvaluationParams as ga, CommentsEnabledProvider as gb, UploaderDef as gc, NodeDiffProps as gd, isCardinalityOnePerspective as gf, DynamicFeedbackTags as gg, StringSegmentChanged$1 as gh, useGlobalPresence as gi, ImperativeToast as gl, DiffTooltipProps as gm, ArrayOfObjectsInputMembersProps as gn, CombinedDocument as go, DocumentActionProps as gp, FieldActionMenuProps as gr, StringFieldProps as gs, Tool as gt, isReleaseScheduledOrScheduling as gu, PasteOptions as gv, ObservePathsFn as gw, Locale as gx, createSearch as gy, createConfig as h, UseDateTimeFormatOptions as hC, useRelativeTime as hS, CommandListHandle as hT, WorkspaceProvider as h_, DocumentValuePermission as ha, CommentsIntentProviderProps as hb, Uploader as hc, NodeChronologyProps as hd, CardinalityOneRelease as hf, BaseFeedbackTags as hg, StringDiffSegment as hh, useResourceCache as hi, ZIndexContextValue as hl, DiffTooltip as hm, ArrayOfObjectsInputMembers as hn, TimelineOptions as ho, DocumentActionPopoverDialogProps as hp, FieldActionMenu as hr, PrimitiveFieldProps as hs, TemplateResolver as ht, isPublishedPerspective as hu, DocumentMeta as hv, ObserveDocumentTypeFromIdFn as hw, ImplicitLocaleResourceBundle as hx, defineSearchOperator as hy, SchemaError as i, WelcomeEvent as iC, AgentVersionDisplay as iE, TemplateFieldDefinition as iS, removeDupes as iT, CommentInputContextValue as i_, GrantsStoreOptions as ia, getNamelessWorkspaceIdentifier as ib, ArrayInputMoveItemEvent as ic, FieldMember as id, sliceString as if, UserColorHue as ig, DiffProps as ih, Rect as ii, set as il, NoChanges as im, ObjectInputMember as in, useTimelineStore as io, GetHookCollectionStateProps as ip, useVirtualizerScrollInstance as ir, RenderBlockActionsCallback as is, PluginOptions as it, serializeError as iu, LiveManifestRegisterProvider as iv, ApiConfig as iw, useCurrentLocale as ix, I18nSearchOperatorNameKey as iy, Config as j, TrackerContextGetSnapshot as jC, useFormattedDuration as jS, isAuthStore as jT, isValidAnnouncementRole as j_, createDocumentStore as ja, CommentReactionShortNames as jb, defaultRenderItem as jc, UndeclaredMembersError as jd, EMPTY_OBJECT as jf, DocumentGroupInventoryPerspectiveList as jg, EditDocumentVersionEvent as jh, createProjectStore as ji, BlockImagePreview as jl, ChangeTitleSegment as jm, ReferenceAutocomplete as jn, createObservableBufferedDocument as jo, getSelectedVariant as jp, FormFieldValidationError as jr, PortableTextInputProps as js, DocumentInspectorUseMenuItemProps as jt, DEFAULT_DECORATORS as ju, PatchArg as jv, ReleasesNavMenuItemPropsGetter as jw, StudioLocaleResourceKeys as jx, ColorSchemeProvider as jy, BetaFeatures as k, TrackedArea as kC, FormattedDuration as kS, createConnectionStatusStore as kT, StudioLayoutComponent as k_, DocumentStoreOptions as ka, CommentReactionItem as kb, defaultRenderInlineBlock as kc, MixedArrayError as kd, formatRelativeLocale as kf, DocumentGroupInventory as kg, DocumentGroupEvent as kh, useProjectDatasets as ki, InlinePreviewProps as kl, DiffCardProps as km, SlugInputProps as kn, createBufferedDocument as ko, PerspectiveNotWriteableReason as kp, FormInputRelativePathArg as kr, OnPathFocusPayload as ks, DocumentInspectorMenuItem as kt, RELEASES_INTENT as ku, FormSetPatch as kv, PerspectiveStack as kw, TFunction$1 as kx, ColorSchemeCustomProvider as ky, resolveConfig as l, DocumentRemoteMutationEvent as lC, createSanityMediaLibraryFileSource as lE, SyncState as lS, ContextMenuButton as lT, CommentsUpsellContextValue as l_, useDocumentValuePermissions as la, ActiveWorkspaceMatcher as lb, StudioFileInput as lc, ArrayOfPrimitivesFormNode as ld, fieldNeedsEscape as lf, useStudioFeedbackTags as lg, ItemDiff$1 as lh, DocumentPreviewPresenceProps as li, WithReferringDocuments as ll, FromToArrowDirection as lm, MemberFieldProps as ln, removeMissingReferences as lo, DocumentActionCustomDialogComponentProps as lp, useHoveredField as lr, BaseFieldProps as ls, ScheduledPublishingPluginOptions as lt, DocumentStatusIndicator as lu, StudioWorkspaceManifest as lv, DraftsModelDocument as lw, defineLocale as lx, SearchOperatorButtonValue as ly, definePlugin as m, useDialogStack as mC, RelativeTimeOptions as mS, CommandListGetItemSelectedCallback as mT, ErrorMessageProps as m_, useDocumentPairPermissionsFromHookFactory as ma, CommentsIntentProvider as mb, UploadProgressEvent as mc, HiddenField as md, createSWR as mf, useInStudioFeedback as mg, StringDiff$1 as mh, ResourceCacheProviderProps as mi, ZIndexContextValueKey as ml, Event$1 as mm, MemberItemProps as mn, Timeline as mo, DocumentActionModalDialogProps as mp, FieldActionsProvider as mr, ObjectFieldProps as ms, SourceOptions as mt, isDraftPerspective as mu, CopyPasteContextType as mv, ObserveDocumentAvailabilityFn as mw, LocaleProviderBase as mx, ValuelessSearchOperatorParams as my, getConfigContextFromSource as n, ResetEvent as nC, CookielessCompatibleLoginMethod as nE, Template as nS, isVersionId as nT, COMMENTS_INSPECTOR_NAME as n_, useTemplatePermissions as na, VisibleWorkspacesContextValue as nb, ArrayInputCopyEvent as nc, ArrayOfPrimitivesMember as nd, asLoadable as nf, HexColor as ng, DiffComponentOptions as nh, Position as ni, insert as nl, RevertChangesConfirmDialog as nm, ObjectMembers as nn, TimelineState as no, DocumentBadgeDescription as np, VirtualizerScrollInstanceProvider as nr, FormBuilderMarkersComponent as ns, PartialContext as nt, Hotkeys as nu, renderStudio as nv, ObserveForPreviewFn as nw, UseTranslationResponse as nx, operatorDefinitions as ny, CreateWorkspaceFromConfigOptions as o, CommittedEvent as oC, isAgentBundleName as oE, TemplateParameter as oS, Chip as oT, CommentInputHandle as o_, grantsPermissionOn as oa, WorkspaceLike as ob, ImageInputProps as oc, FieldsetRenderMembersCallback as od, uncaughtErrorHandler as of, UserId as og, FieldOperationsAPI as oh, ReportedRegionWithRect as oi, unset as ol, MetaInfoProps as om, MemberFieldSet as on, HistoryStore as oo, useScheduleAction as op, ArrayOfObjectsFunctions as or, RenderCustomMarkers as os, ReleaseActionsResolver as ot, ErrorWithId as ou, generateStudioManifest as ov, AvailabilityResponse as ow, useGetI18nText as ox, OperatorInputComponentProps as oy, createPlugin as p, StoreRequestErrorHandler as pC, useReviewChanges as pS, CommandListGetItemKeyCallback as pT, ErrorMessage as p_, useDocumentPairPermissions as pa, CommentsSelectedPathContextValue as pb, UploadOptions as pc, DocumentFormNode as pd, _isType as pf, UseInStudioFeedbackReturn as pg, ReferenceDiff as ph, ResourceCacheProvider as pi, LegacyLayerProvider as pl, FallbackDiff as pm, ArrayOfObjectsItem as pn, ParsedTimeRef as po, DocumentActionKeys as pp, FieldActionsResolver as pr, NumberFieldProps as ps, SourceClientOptions as pt, getDocumentIsInPerspective as pu, CopyOptions as pv, InvalidationChannelEvent as pw, LocaleProvider as px, ValuelessSearchOperatorBuilder as py, DocumentLayoutProps as q, useIsReleaseActive as qC, InitialSnapshotEvent as qS, RequestErrorClaim as qT, classifyConfigError as q_, operationEvents as qa, useValidationStatus as qb, PatchChannel as qc, isReleaseVersion as qd, useScheduledDraftDocument as qf, buildCommentRangeDecorations as qg, isUnpublishDocumentEvent as qh, UserStore as qi, PreviewProps as ql, ArrayDiff$1 as qm, DateInputProps as qn, isBooleanInputProps as qo, emptyValuesByType as qp, PresenceOverlayProps as qr, ObjectItemProps as qs, TransformPatches as qt, UseFormStateOptions as qu, PartialIndexSettings as qv, getPublishedId as qw, Serializeable as qx, matchWorkspace as qy, useConfigContextFromSource as r, WelcomeBackEvent as rC, LoginMethod as rE, TemplateArrayFieldDefinition as rS, newDraftFrom as rT, CommentInlineHighlightSpan as r_, useTemplatePermissionsFromHookFactory as ra, VisibleWorkspacesProvider as rb, ArrayInputInsertEvent as rc, DecorationMember as rd, useLoadable as rf, UserColor as rg, DiffComponentResolver as rh, PresentUser as ri, prefixPath as rl, RevertChangesButton as rm, ObjectMembersProps as rn, TimelineStore as ro, DocumentBadgeProps as rp, VirtualizerScrollInstance as rr, PortableTextMarker as rs, Plugin as rt, HotkeysProps$1 as ru, uploadSchema as rv, createDocumentPreviewStore as rw, useTranslation as rx, I18nSearchOperatorDescriptionKey as ry, createSourceFromConfig as s, DocumentMutationEvent as sC, EnhancedObjectDialog as sE, TemplateReferenceTarget as sS, DocumentVariantType as sT, CommentInputProps as s_, DocumentValuePermissionsOptions as sa, CorsOriginErrorScreen as sb, StudioImageInput as sc, ObjectMember as sd, supportsTouch as sf, FeedbackContext as sg, FromToIndex as sh, Size as si, ZIndexProvider as sl, GroupChange as sm, MemberFieldError as sn, HistoryStoreOptions as so, DocumentActionComponent as sp, useDidUpdate as sr, ArrayFieldProps as ss, ResolveProductionUrlContext as st, ErrorActions as su, ManifestWorkspaceInput as sv, DocumentAvailability as sw, I18nNode as sx, SearchOperatorBase as sy, ActiveWorkspaceMatcherContextValue as t, ReconnectEvent as tC, AuthProvider as tE, InitialValueTemplateItem as tS, isSystemBundleName as tT, isTextSelectionComment as t_, getTemplatePermissions as ta, useVisibleWorkspaces as tb, PortableTextPluginsProps as tc, ArrayOfPrimitivesItemMember as td, LoadingState as tf, useUserColorManager as tg, DiffComponent as th, Location as ti, inc as tl, ValueError as tm, ObjectInputMembers as tn, useTimelineSelector as to, DocumentBadgeComponent as tp, ArrayOfObjectOptionsInput as tr, FormBuilderInputComponentMap as ts, NewDocumentOptionsResolver as tt, InsufficientPermissionsMessageProps as tu, isUnauthorizedError as tv, DocumentPreviewStoreOptions as tw, UseTranslationOptions as tx, SearchOperatorType as ty, prepareConfig as u, MutationPayload as uC, createSanityMediaLibraryImageSource as uE, useSyncState as uS, CommandList as uT, UpsellData as u_, DocumentPairPermissionsOptions as ua, ActiveWorkspaceMatcherProps as ub, AssetSourcesResolver as uc, BaseFormNode as ud, joinPath as uf, UseFeedbackReturn as ug, NullDiff$1 as uh, useCurrentUser as ui, AvatarSkeleton as ul, FromTo as um, MemberItemError as un, SelectionState as uo, DocumentActionDescription as up, HoveredFieldProvider as ur, BooleanFieldProps as us, SchemaPluginOptions as ut, CapabilityGate as uu, CopyPasteProvider as uv, DraftsModelDocumentAvailability as uw, defineLocaleResourceBundle as ux, SearchOperatorInput as uy, ConfigResolutionError as v, ConnectionState as vC, useReconnectingToast as vS, CommandListRenderItemCallback as vT, InterpolationProp as v_, GrantsStore as va, CommentBaseCreatePayload as vb, StudioReferenceInput as vc, ObjectArrayFormNode as vd, isPausedCardinalityOneRelease as vf, Sentiment as vg, TypeChangeDiff$1 as vh, useComlinkStore as vi, TooltipOfDisabled as vl, DiffString as vm, ArrayOfObjectsMemberProps as vn, Transaction as vo, DuplicateDocumentActionComponent as vp, useGetFormValue as vr, ArrayOfPrimitivesElementType as vs, WorkspaceHiddenContext as vt, isReleasePerspective as vu, PatchEvent as vv, PreviewPath as vw, LocaleDefinition as vx, getSearchableTypes as vy, AppsOptions as w, CommentDeleteDialog as wC, UseListFormatOptions as wS, ConnectionStatus as wT, UpsellDialogViewedInfo as w_, isNewDocument as wa, CommentListBreadcrumbs as wb, FormBuilder as wc, DuplicateKeysError as wd, isArray as wf, useTelemetryConsent as wg, BaseEvent as wh, useKeyValueStore as wi, RelativeTime as wl, FieldPreviewComponent as wm, TelephoneInputProps as wn, RemoteSnapshotVersionEvent as wo, usePerspective as wp, FormContainer as wr, InputOnSelectFileFunctionProps as ws, ReleaseActionProps as wt, useReleasesIds as wu, FormPatch as wv, ReleaseTitle as ww, LocaleSource as wx, SearchResultItemPreview as wy, ConfigPropertyErrorOptions as x, useConditionalToast as xC, useNumberFormat as xS, CONNECTING as xT, UpsellDialogLearnMoreCtaClicked as x_, useInitialValue as xa, CommentDocument as xb, StudioCrossDatasetReferenceInputProps as xc, PrimitiveFormNode as xd, isString as xf, StudioFeedbackDialogProps as xg, useEventsStore as xh, useDocumentStore as xi, StatusButton as xl, DiffInspectWrapperProps as xm, TextInput as xn, DocumentVersionEvent as xo, SchedulesContextValue as xp, useFormValue as xr, BooleanInputProps as xs, WorkspaceSummary as xt, getReleaseIdFromReleaseDocumentId as xu, FormIncPatch as xv, Selection as xw, LocaleResourceBundle as xx, SearchSort as xy, ConfigResolutionErrorOptions as y, connectionState as yC, useProjectId as yS, BetaBadge as yT, UpsellDescriptionSerializer as y_, PermissionCheckResult as ya, CommentContext as yb, StudioReferenceInputProps as yc, ObjectFormNode as yd, PartialExcept as yf, TagValue as yg, FieldValueError as yh, useConnectionStatusStore as yi, TextWithTone as yl, DiffStringSegment as ym, UrlInput as yn, CommitError as yo, SanityDefinedAction as yp, FormValueContextValue as yr, ArrayOfPrimitivesInputProps as ys, WorkspaceHiddenProperty as yt, isGoingToUnpublish as yu, FormDecPatch as yv, Previewable as yw, LocaleNestedResource as yx, SearchFactoryOptions as yy, DocumentBadgesContext as z, ChangeConnectorRootProps as zC, useDocumentOperation as zS, _createAuthStore as zT, useSource as z_, InitialValueMsg as za, CommentsTextSelectionItem as zb, ParseErrorsProvider as zc, SANITY_VERSION as zd, LegacyThemeTints as zf, CollapseMenuButton as zg, UpdateLiveDocumentEvent as zh, SESSION_ID as zi, CompactPreview as zl, useDiffAnnotationColor as zm, AssetAccessPolicy as zn, useUnstableObserveDocument as zo, normalizeIndexTupleSegment as zp, FormFieldSetProps as zr, RenderFieldCallback as zs, DocumentFieldActionHook as zt, ParseError as zu, NavbarAction as zv, SystemBundle as zw, UseUnitFormatterOptions as zx, StudioTheme as zy };
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 };
@@ -358,7 +358,8 @@ declare const structureLocaleStrings: {
358
358
  'action.copy-document-url.label': string; /** Label for the "Copy document URL" menu item */
359
359
  'action.copy-link-to-document.label': string; /** Tooltip when action button is disabled because the operation is not ready */
360
360
  'action.delete.disabled.not-ready': string; /** Tooltip when action button is disabled because the document does not exist */
361
- 'action.delete.disabled.nothing-to-delete': string; /** Tooltip when action button is disabled because the document exists in scheduled releases */
361
+ 'action.delete.disabled.nothing-to-delete': string; /** Tooltip when action button is disabled because the selected release or variant does not contain this document */
362
+ 'action.delete.disabled.target-not-found': string; /** Tooltip when action button is disabled because the document exists in scheduled releases */
362
363
  'action.delete.disabled.scheduled-release': string; /** Label for the "Delete" document action button */
363
364
  'action.delete.label': string; /** Label for the "Delete" document action while the document is being deleted */
364
365
  'action.delete.running.label': string; /** Tooltip when action is disabled because the document is linked to Canvas */
@@ -368,15 +369,18 @@ declare const structureLocaleStrings: {
368
369
  'action.discard-changes.confirm-dialog.header.text': string; /** Tooltip when action is disabled because the document has no unpublished changes */
369
370
  'action.discard-changes.disabled.no-change': string; /** Tooltip when action is disabled because the document is not published */
370
371
  'action.discard-changes.disabled.not-published': string; /** Tooltip when action button is disabled because the operation is not ready */
371
- 'action.discard-changes.disabled.not-ready': string; /** Label for the "Discard changes" document action */
372
+ 'action.discard-changes.disabled.not-ready': string; /** Tooltip when action is disabled because the selected release or variant does not contain this document */
373
+ 'action.discard-changes.disabled.target-not-found': string; /** Label for the "Discard changes" document action */
372
374
  'action.discard-changes.label': string; /** Tooltip when action is disabled because the operation is not ready */
373
375
  'action.duplicate.disabled.not-ready': string; /** Tooltip when action is disabled because the document doesn't exist */
374
- 'action.duplicate.disabled.nothing-to-duplicate': string; /** Label for the "Duplicate" document action */
376
+ 'action.duplicate.disabled.nothing-to-duplicate': string; /** Tooltip when action is disabled because the selected release or variant does not contain this document */
377
+ 'action.duplicate.disabled.target-not-found': string; /** Label for the "Duplicate" document action */
375
378
  'action.duplicate.label': string; /** Label for the "Duplicate" document action while the document is being duplicated */
376
379
  'action.duplicate.running.label': string; /** Tooltip when publish button is disabled because the document is already published, and published time is unavailable.*/
377
380
  'action.publish.already-published.no-time-ago.tooltip': string; /** Tooltip when publish button is disabled because the document is already published.*/
378
381
  'action.publish.already-published.tooltip': string; /** Tooltip when action is disabled because the studio is not ready.*/
379
- 'action.publish.disabled.not-ready': string; /** Label for action when there are pending changes.*/
382
+ 'action.publish.disabled.not-ready': string; /** Tooltip when action is disabled because the selected release or variant does not contain this document */
383
+ 'action.publish.disabled.target-not-found': string; /** Label for action when there are pending changes.*/
380
384
  'action.publish.draft.label': string; /** Label for the "Publish" document action */
381
385
  'action.publish.label': string; /** Label for the "Publish" document action when the document has live edit enabled.*/
382
386
  'action.publish.live-edit.label': string; /** Fallback tooltip for the "Publish" document action when publish is invoked for a document with live edit enabled.*/
@@ -395,7 +399,8 @@ declare const structureLocaleStrings: {
395
399
  'action.restore.label': string; /** Default tooltip for the action */
396
400
  'action.restore.tooltip': string; /** Tooltip when action is disabled because the document is not already published */
397
401
  'action.unpublish.disabled.not-published': string; /** Tooltip when action is disabled because the operation is not ready */
398
- 'action.unpublish.disabled.not-ready': string; /** Label for the "Unpublish" document action */
402
+ 'action.unpublish.disabled.not-ready': string; /** Tooltip when action is disabled because the selected release or variant does not contain this document */
403
+ 'action.unpublish.disabled.target-not-found': string; /** Label for the "Unpublish" document action */
399
404
  'action.unpublish.label': string; /** Fallback tooltip for the Unpublish document action when publish is invoked for a document with live edit enabled.*/
400
405
  'action.unpublish.live-edit.disabled': string; /** Description for the archived release banner, rendered when viewing the history of a version document from the publihed view */
401
406
  'banners.archived-release.description': string; /** Description for the archived scheduled draft banner, rendered when viewing the history of a cardinality one release document */
@@ -25,6 +25,9 @@ import "@sanity/client/csm";
25
25
  import "quick-lru";
26
26
  import "lodash-es/throttle.js";
27
27
  import "lodash-es/isEqual.js";
28
+ import "./createAgentBundlesStore.js";
29
+ import "@portabletext/toolkit";
30
+ import "@sanity/icons/WarningOutline";
28
31
  import "@sanity/icons/Document";
29
32
  import "@sanity/icons/Image";
30
33
  import "@sanity/uuid";
@@ -33,7 +36,6 @@ import "color2k";
33
36
  import "lodash-es/isString.js";
34
37
  import "@sanity/icons/Copy";
35
38
  import "@sanity/icons/Clipboard";
36
- import "./createAgentBundlesStore.js";
37
39
  import "@sanity/telemetry/react";
38
40
  import "@portabletext/editor";
39
41
  import "@sanity/types";
@@ -63,7 +65,6 @@ import "@sanity/icons/ErrorOutline";
63
65
  import "@sanity/diff";
64
66
  import "mendoza";
65
67
  import "@sanity/icons/InfoOutline";
66
- import "@sanity/icons/WarningOutline";
67
68
  import "@portabletext/sanity-bridge";
68
69
  import "@sanity/id-utils";
69
70
  import "sanity/router";
@@ -189,7 +190,6 @@ import "@sanity/icons/Refresh";
189
190
  import "@sanity/icons/Leave";
190
191
  import "lodash-es/last.js";
191
192
  import "react-dom/client";
192
- import "@portabletext/toolkit";
193
193
  import "date-fns/addWeeks";
194
194
  import "date-fns/isAfter";
195
195
  import "date-fns/isBefore";