sanity 5.23.0-next.21 → 5.23.0-next.22

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.
@@ -102,20 +102,134 @@ interface PopoverProps$2 extends SharedProps {
102
102
  * Non-top dialogs are hidden via CSS while preserving their state.
103
103
  */
104
104
  declare function EnhancedObjectDialog(props: PopoverProps$2 | DialogProps$1): React.JSX.Element;
105
- type JsonObject = { [Key in string]: KeyValueStoreValue } & { [Key in string]?: KeyValueStoreValue | undefined };
106
- type JsonArray = KeyValueStoreValue[] | readonly KeyValueStoreValue[];
107
- type JsonPrimitive = string | number | boolean | null;
108
- /** @internal */
109
- type KeyValueStoreValue = JsonPrimitive | JsonObject | JsonArray;
110
- /** @internal */
111
- interface KeyValueStore {
112
- getKey(key: string): Observable<KeyValueStoreValue | null>;
113
- setKey(key: string, value: KeyValueStoreValue): Promise<KeyValueStoreValue>;
105
+ /**
106
+ * Returns whether the given version name (e.g. from `getVersionFromId`) is an
107
+ * agent bundle name (starts with `agent-`).
108
+ *
109
+ * @internal
110
+ */
111
+ declare function isAgentBundleName(versionName: unknown): boolean;
112
+ /**
113
+ * Display overrides for an agent bundle version chip.
114
+ *
115
+ * @internal
116
+ */
117
+ type AgentVersionDisplay = {
118
+ displayName: string;
119
+ tone: BadgeTone;
120
+ };
121
+ /**
122
+ * Filters a list of version document IDs and provides display metadata for
123
+ * agent bundles.
124
+ *
125
+ * - Other users' `agent-*` versions are removed from the returned list.
126
+ * - The current user's `agent-*` versions are kept and can be resolved to
127
+ * display overrides via `getVersionDisplay`.
128
+ * - Non-agent versions pass through unchanged.
129
+ * - While the SSE connection is loading, only the currently active agent
130
+ * bundle (if any) is kept; all others are hidden until ownership is confirmed.
131
+ *
132
+ * Call this hook once and thread the results down — don't call it per-item.
133
+ *
134
+ * @internal
135
+ */
136
+ declare function useAgentVersionDisplay(versionIds: string[], activeBundleId?: string): {
137
+ /** Version IDs with other users' agent bundles removed. */filteredVersionIds: string[];
138
+ /**
139
+ * Returns display overrides for a version document ID if it's the current
140
+ * user's agent bundle, or `null` for all other versions.
141
+ */
142
+ getVersionDisplay: (versionDocumentId: string) => AgentVersionDisplay | null;
143
+ };
144
+ /**
145
+ * Login methods that may be used for Studio authentication.
146
+ *
147
+ * @public
148
+ */
149
+ type LoginMethod = 'dual' | 'cookie' | 'token';
150
+ /**
151
+ * Login methods that acknowledge cookieless authentication tokens.
152
+ *
153
+ * @internal
154
+ * @hidden
155
+ */
156
+ type CookielessCompatibleLoginMethod = Extract<LoginMethod, 'dual' | 'token'>;
157
+ /**
158
+ * Authentication options
159
+ *
160
+ * @public
161
+ */
162
+ interface AuthConfig {
163
+ /**
164
+ * Login method to use for the studio. Can be one of:
165
+ * - `dual` (default) - attempt to use cookies where possible, falling back to
166
+ * storing authentication token in `localStorage` otherwise
167
+ * - `cookie` - explicitly disable `localStorage` method, relying only on cookies. May fail due
168
+ * to cookies being treated as third-party cookies in some browsers, thus the default is `dual`.
169
+ * - `token` - explicitly disable cookies, relying only on `localStorage` method
170
+ */
171
+ loginMethod?: LoginMethod;
172
+ /**
173
+ * Whether to append the providers specified in `providers` with the default providers from the
174
+ * API, or replace the default providers with the ones specified.
175
+ *
176
+ * @deprecated Use the function form of `providers` instead for more control
177
+ */
178
+ mode?: 'append' | 'replace';
179
+ /**
180
+ * If true, the "Choose login provider" (eg "Google, "GitHub", "E-mail/password") screen
181
+ * will be skipped if only a single provider is configured in the `providers` array -
182
+ * instead it will redirect unauthenticated users straight to the authentication URL.
183
+ */
184
+ redirectOnSingle?: boolean;
185
+ /**
186
+ * Array of authentication providers to use, or a function that takes an array of default
187
+ * authentication providers (fetched from the Sanity API) and should return a new list of
188
+ * providers. This can be used to selectively replace, add or remove providers from the
189
+ * list of choices.
190
+ *
191
+ * @remarks If a static array of providers is provided, the `mode` property is taken into account
192
+ * when determining what to do with it - `append` will append the providers to the default set
193
+ * of providers, while `replace` will replace the default providers with the ones specified.
194
+ *
195
+ * If not set, the default providers will be used.
196
+ */
197
+ providers?: AuthProvider[] | ((prev: AuthProvider[]) => AuthProvider[] | Promise<AuthProvider[]>);
198
+ /**
199
+ * The API hostname for requests. Should usually be left undefined,
200
+ * but can be set if using custom cname for API domain.
201
+ */
202
+ apiHost?: string;
203
+ }
204
+ /**
205
+ * A provider of authentication.
206
+ *
207
+ * By default, a list of providers for a project will be fetched from the
208
+ * {@link https://api.sanity.io/v1/auth/providers | Sanity API}, but you may choose to limit this
209
+ * list by explicitly defining the providers you want to allow, or add additional custom providers
210
+ * that conforms to the authentication provider specification outlined in
211
+ * {@link https://www.sanity.io/docs/third-party-login | the documentation}.
212
+ *
213
+ * @public
214
+ */
215
+ interface AuthProvider {
216
+ /**
217
+ * URL-friendly identifier/name for the provider, eg `github`
218
+ */
219
+ name: string;
220
+ /**
221
+ * Human friendly title for the provider, eg `GitHub`
222
+ */
223
+ title: string;
224
+ /**
225
+ * URL for the authentication endpoint that will trigger the authentication flow
226
+ */
227
+ url: string;
228
+ /**
229
+ * URL for a logo to display next to the provider in the login screen
230
+ */
231
+ logo?: string;
114
232
  }
115
- /** @internal */
116
- declare function createKeyValueStore(options: {
117
- client: SanityClient;
118
- }): KeyValueStore;
119
233
  type AuthProbeResult = {
120
234
  authenticated: false;
121
235
  } | {
@@ -13388,6 +13502,20 @@ declare function useTemplatePermissions({
13388
13502
  templateItems,
13389
13503
  ...rest
13390
13504
  }: PartialExcept<TemplatePermissionsOptions, 'templateItems'>): ReturnType<typeof useTemplatePermissionsFromHookFactory>;
13505
+ type JsonObject = { [Key in string]: KeyValueStoreValue } & { [Key in string]?: KeyValueStoreValue | undefined };
13506
+ type JsonArray = KeyValueStoreValue[] | readonly KeyValueStoreValue[];
13507
+ type JsonPrimitive = string | number | boolean | null;
13508
+ /** @internal */
13509
+ type KeyValueStoreValue = JsonPrimitive | JsonObject | JsonArray;
13510
+ /** @internal */
13511
+ interface KeyValueStore {
13512
+ getKey(key: string): Observable<KeyValueStoreValue | null>;
13513
+ setKey(key: string, value: KeyValueStoreValue): Promise<KeyValueStoreValue>;
13514
+ }
13515
+ /** @internal */
13516
+ declare function createKeyValueStore(options: {
13517
+ client: SanityClient;
13518
+ }): KeyValueStore;
13391
13519
  /** @internal */
13392
13520
  interface UserStoreOptions {
13393
13521
  client: SanityClient;
@@ -13663,45 +13791,6 @@ declare function ResourceCacheProvider({
13663
13791
  }: ResourceCacheProviderProps): _$react.JSX.Element;
13664
13792
  /** @internal */
13665
13793
  declare function useResourceCache(): ResourceCache;
13666
- /**
13667
- * Returns whether the given version name (e.g. from `getVersionFromId`) is an
13668
- * agent bundle name (starts with `agent-`).
13669
- *
13670
- * @internal
13671
- */
13672
- declare function isAgentBundleName(versionName: unknown): boolean;
13673
- /**
13674
- * Display overrides for an agent bundle version chip.
13675
- *
13676
- * @internal
13677
- */
13678
- type AgentVersionDisplay = {
13679
- displayName: string;
13680
- tone: BadgeTone;
13681
- };
13682
- /**
13683
- * Filters a list of version document IDs and provides display metadata for
13684
- * agent bundles.
13685
- *
13686
- * - Other users' `agent-*` versions are removed from the returned list.
13687
- * - The current user's `agent-*` versions are kept and can be resolved to
13688
- * display overrides via `getVersionDisplay`.
13689
- * - Non-agent versions pass through unchanged.
13690
- * - While the SSE connection is loading, only the currently active agent
13691
- * bundle (if any) is kept; all others are hidden until ownership is confirmed.
13692
- *
13693
- * Call this hook once and thread the results down — don't call it per-item.
13694
- *
13695
- * @internal
13696
- */
13697
- declare function useAgentVersionDisplay(versionIds: string[], activeBundleId?: string): {
13698
- /** Version IDs with other users' agent bundles removed. */filteredVersionIds: string[];
13699
- /**
13700
- * Returns display overrides for a version document ID if it's the current
13701
- * user's agent bundle, or `null` for all other versions.
13702
- */
13703
- getVersionDisplay: (versionDocumentId: string) => AgentVersionDisplay | null;
13704
- };
13705
13794
  /** @internal */
13706
13795
  declare function useUser(userId: string): LoadingTuple<User | null | undefined>;
13707
13796
  /**
@@ -14798,95 +14887,6 @@ declare const TransformPatches: _$react.MemoExoticComponent<(props: {
14798
14887
  } & {
14799
14888
  children: ReactNode;
14800
14889
  }) => _$react.JSX.Element>;
14801
- /**
14802
- * Login methods that may be used for Studio authentication.
14803
- *
14804
- * @public
14805
- */
14806
- type LoginMethod = 'dual' | 'cookie' | 'token';
14807
- /**
14808
- * Login methods that acknowledge cookieless authentication tokens.
14809
- *
14810
- * @internal
14811
- * @hidden
14812
- */
14813
- type CookielessCompatibleLoginMethod = Extract<LoginMethod, 'dual' | 'token'>;
14814
- /**
14815
- * Authentication options
14816
- *
14817
- * @public
14818
- */
14819
- interface AuthConfig {
14820
- /**
14821
- * Login method to use for the studio. Can be one of:
14822
- * - `dual` (default) - attempt to use cookies where possible, falling back to
14823
- * storing authentication token in `localStorage` otherwise
14824
- * - `cookie` - explicitly disable `localStorage` method, relying only on cookies. May fail due
14825
- * to cookies being treated as third-party cookies in some browsers, thus the default is `dual`.
14826
- * - `token` - explicitly disable cookies, relying only on `localStorage` method
14827
- */
14828
- loginMethod?: LoginMethod;
14829
- /**
14830
- * Whether to append the providers specified in `providers` with the default providers from the
14831
- * API, or replace the default providers with the ones specified.
14832
- *
14833
- * @deprecated Use the function form of `providers` instead for more control
14834
- */
14835
- mode?: 'append' | 'replace';
14836
- /**
14837
- * If true, the "Choose login provider" (eg "Google, "GitHub", "E-mail/password") screen
14838
- * will be skipped if only a single provider is configured in the `providers` array -
14839
- * instead it will redirect unauthenticated users straight to the authentication URL.
14840
- */
14841
- redirectOnSingle?: boolean;
14842
- /**
14843
- * Array of authentication providers to use, or a function that takes an array of default
14844
- * authentication providers (fetched from the Sanity API) and should return a new list of
14845
- * providers. This can be used to selectively replace, add or remove providers from the
14846
- * list of choices.
14847
- *
14848
- * @remarks If a static array of providers is provided, the `mode` property is taken into account
14849
- * when determining what to do with it - `append` will append the providers to the default set
14850
- * of providers, while `replace` will replace the default providers with the ones specified.
14851
- *
14852
- * If not set, the default providers will be used.
14853
- */
14854
- providers?: AuthProvider[] | ((prev: AuthProvider[]) => AuthProvider[] | Promise<AuthProvider[]>);
14855
- /**
14856
- * The API hostname for requests. Should usually be left undefined,
14857
- * but can be set if using custom cname for API domain.
14858
- */
14859
- apiHost?: string;
14860
- }
14861
- /**
14862
- * A provider of authentication.
14863
- *
14864
- * By default, a list of providers for a project will be fetched from the
14865
- * {@link https://api.sanity.io/v1/auth/providers | Sanity API}, but you may choose to limit this
14866
- * list by explicitly defining the providers you want to allow, or add additional custom providers
14867
- * that conforms to the authentication provider specification outlined in
14868
- * {@link https://www.sanity.io/docs/third-party-login | the documentation}.
14869
- *
14870
- * @public
14871
- */
14872
- interface AuthProvider {
14873
- /**
14874
- * URL-friendly identifier/name for the provider, eg `github`
14875
- */
14876
- name: string;
14877
- /**
14878
- * Human friendly title for the provider, eg `GitHub`
14879
- */
14880
- title: string;
14881
- /**
14882
- * URL for the authentication endpoint that will trigger the authentication flow
14883
- */
14884
- url: string;
14885
- /**
14886
- * URL for a logo to display next to the provider in the login screen
14887
- */
14888
- logo?: string;
14889
- }
14890
14890
  /**
14891
14891
  * @hidden
14892
14892
  * @beta */
@@ -16446,4 +16446,4 @@ interface ActiveWorkspaceMatcherContextValue {
16446
16446
  activeWorkspace: WorkspaceSummary;
16447
16447
  setActiveWorkspace: (workspaceName: string) => void;
16448
16448
  }
16449
- export { MissingConfigFile as $, SelectedPerspective as $C, ChangeIndicatorTrackerContextValue as $S, FormIncPatch as $_, Operation as $a, LocaleResourceKey as $b, SANITY_PATCH_TYPE as $c, LoadedState as $d, SchedulesContext as $f, CommentInput as $g, useUserColorManager as $h, UserSessionPair as $i, PreviewProps as $l, DiffComponent as $m, CrossDatasetReferencePreview as $n, isObjectItemProps as $o, ValueError as $p, FieldPresence as $r, BlockDecoratorProps as $s, decodePath as $t, UseFormStateOptions as $u, SearchSort as $v, isAuthStore as $w, useManageFavorite as $x, CommentDocument as $y, ComposableOption as A, DraftsModelDocument as AC, WelcomeBackEvent as AS, StudioProps as A_, DocumentTypeResolveState as Aa, defaultLocale as Ab, FormBuilderProps as Ac, DuplicateKeysError as Ad, LoadingTuple as Af, ScrollContainerProps as Ag, EventsStore as Ah, useGrantsStore as Ai, LinearProgress as Al, ChangesError as Am, TagsArrayInput as An, BufferedDocumentEvent as Ao, FIXME as Ap, FormCell as Ar, ObjectInputProps as As, DocumentInspectorMenuItem as At, PUBLISHED as Au, SearchFilterDefinition as Av, CommandList as Aw, prepareTemplates as Ax, validateNames as Ay, DocumentBadgesContext as B, Previewable as BC, useDialogStack as BS, StudioManifest as B_, getInitialValueStream as Ba, defineLocale as Bb, ReferenceInputOptions as Bc, ALL_FIELDS_GROUP as Bd, TasksContextValue as Bf, buildCommentRangeDecorations as Bg, isDeleteDocumentGroupEvent as Bh, ProjectData as Bi, MediaPreviewProps as Bl, getAnnotationColor as Bm, PortableTextMemberItem as Bn, useValuePreview as Bo, pathToString as Bp, FormFieldValidationStatusProps as Br, RenderArrayOfPrimitivesItemCallback as Bs, DocumentFieldActionHook as Bt, DEFAULT_ANNOTATIONS as Bu, SearchOperatorBuilder as Bv, BetaBadgeProps as Bw, useSyncState as Bx, ActiveWorkspaceMatcher as By, ActionComponent as C, ObserveForPreviewFn as CC, MutationPerformanceEvent as CS, StudioLayoutComponent as C_, PermissionCheckResult as Ca, useWorkspaceSchemaId as Cb, StudioReferenceInput as Cc, NumberFormNode as Cd, isArray as Cf, ConsentStatus as Cg, CreateDocumentVersionEvent as Ch, useResourceCache as Ci, StatusButtonProps as Cl, DiffErrorBoundary as Cm, ArrayOfObjectsMemberProps as Cn, DocumentVersion as Co, usePerspective as Cp, useGetFormValue as Cr, BaseInputProps as Cs, ReleaseActionComponent as Ct, isReleaseScheduledOrScheduling as Cu, SearchDialog as Cv, newDraftFrom as Cw, Serializeable as Cx, MatchWorkspaceResult as Cy, AsyncConfigPropertyReducer as D, AvailabilityResponse as DC, PendingMutationsEvent as DS, StudioAnnouncementsContextValue as D_, selectUpstreamVersion as Da, Translate as Db, FormProvider as Dc, PrimitiveFormNode as Dd, formatRelativeLocale as Df, ScrollContextValue as Dg, DocumentGroupEvent as Dh, useConnectionStatusStore as Di, Resizable as Dl, DiffCardProps as Dm, TextInputProps as Dn, RemoteSnapshotVersionEvent as Do, ReleasesNav as Dp, DivergencesProvider as Dr, InputOnSelectFileFunctionProps as Ds, FormComponents as Dt, getReleaseTone as Du, useSearchState as Dv, DocumentVariantType as Dw, resolveInitialValueForType as Dx, WorkspacesContextValue as Dy, AsyncComposableOption as E, AvailabilityReason as EC, MutationEvent as ES, StudioAnnouncementsDialog as E_, useInitialValueResolverContext as Ea, validateDocument as Eb, StudioCrossDatasetReferenceInputProps as Ec, ObjectRenderMembersCallback as Ed, getErrorMessage as Ef, isProd as Eg, DeleteDocumentVersionEvent as Eh, useComlinkStore as Ei, RovingFocusProps as El, DiffCard as Em, TextInput as En, Pair as Eo, PerspectiveProvider as Ep, useFormValue as Er, EditorChange as Es, ReleaseActionsContext as Et, isGoingToUnpublish as Eu, useSearchMaxFieldDepth as Ev, Chip as Ew, resolveInitialValue as Ex, WorkspacesProviderProps as Ey, DecisionParametersConfig as F, ObserveDocumentAvailabilityFn as FC, DocumentRebaseEvent as FS, uploadSchema as F_, createDocumentStore as Fa, useCurrentLocale as Fb, defaultRenderInput as Fc, MixedArrayError as Fd, buildLegacyTheme as Ff, AutoCollapseMenu as Fg, UnpublishDocumentEvent as Fh, useRenderingContextStore as Fi, InlinePreviewProps as Fl, ChangeBreadcrumb as Fm, SelectInput as Fn, prepareForPreview as Fo, isEmptyObject as Fp, FormFieldValidation as Fr, PrimitiveInputElementProps as Fs, documentFieldActionsReducer as Ft, useActiveReleases as Fu, I18nSearchOperatorDescriptionKey as Fv, CommandListHandle as Fw, TemplateItem as Fx, VisibleWorkspacesContextValue as Fy, DocumentLanguageFilterComponent as G, ReleaseTitle as GC, useConnectionState as GS, CopyOptions as G_, InitialValueSuccessMsg as Ga, LocaleProviderBase as Gb, FormCallbacksValue as Gc, SANITY_VERSION as Gd, DEFAULT_STUDIO_CLIENT_OPTIONS as Gf, CommentsEnabledContextValue as Gg, isUnpublishDocumentEvent as Gh, PresenceStore as Gi, CompactPreview as Gl, ArrayDiff$1 as Gm, ImageUrlBuilder$1 as Gn, PreviewLoader as Go, emptyValuesByType as Gp, FormFieldHeaderText as Gr, RenderPreviewCallback as Gs, DocumentFieldActionTone as Gt, DivergenceNavigator as Gu, ValuelessSearchOperatorBuilder as Gv, ConnectingStatus as Gw, useRelativeTime as Gx, CommentsSelectedPathProvider as Gy, DocumentCommentsEnabledContext as H, Selection as HC, useDateTimeFormat as HS, CopyPasteProvider as H_, InitialValueLoadingMsg as Ha, defineLocalesResources as Hb, TemplateOption as Hc, getDocumentIdForCanvasLink as Hd, MentionUserContextValue as Hf, useCommentsSelectedPath as Hg, isEditDocumentVersionEvent as Hh, ProjectGrants as Hi, DetailPreviewProps as Hl, visitDiff as Hm, ObjectInput as Hn, useUnstableObserveDocument as Ho, stringToPath as Hp, FormFieldStatus as Hr, RenderFieldCallback as Hs, DocumentFieldActionNode as Ht, ReleaseDocument$1 as Hu, SearchOperatorInput as Hv, CorsOriginErrorOptions as Hw, useSchema as Hx, RouterHistory as Hy, DefaultPluginsWorkspaceOptions as I, ObserveDocumentTypeFromIdFn as IC, DocumentRemoteMutationEvent as IS, LiveManifestRegisterProvider as I_, ListenQueryOptions as Ia, useLocale as Ib, defaultRenderItem as Ic, TypeAnnotationMismatchError as Id, LegacyThemeProps as If, CollapseMenu as Ig, UnscheduleDocumentVersionEvent as Ih, useUserStore as Ii, BlockPreview as Il, useAnnotationColor as Im, ReferenceAutocomplete as In, getPreviewValueWithFallback as Io, normalizeIndexSegment as Ip, FormFieldValidationError as Ir, PrimitiveInputProps as Is, defineDocumentFieldAction as It, VersionInfoDocumentStub as Iu, I18nSearchOperatorNameKey as Iv, CommandListItemContext as Iw, TemplateParameter as Ix, VisibleWorkspacesProvider as Iy, DocumentLayoutProps as J, VersionChip as JC, CommentDisabledIcon as JS, PasteOptions as J_, OperationError as Ja, LocaleConfigContext as Jb, PatchChannel as Jc, useUnique as Jd, usePausedScheduledDraft as Jf, hasCommentMessageValue as Jg, UserColorManagerProvider as Jh, DocumentPresence as Ji, GeneralPreviewLayoutKey as Jl, ChangeNode as Jm, getCalendarLabels as Jn, isArrayOfObjectsInputProps as Jo, isGroupChange as Jp, FormFieldProps as Jr, ItemProps as Js, AuthConfig as Jt, ExpandOperation as Ju, createSearch as Jv, ConnectionStatusStoreOptions as Jw, useReconnectingToast as Jx, CommentsEnabledProvider as Jy, DocumentLanguageFilterContext as K, ReleaseAvatar as KC, useConditionalToast as KS, CopyPasteContextType as K_, validation$1 as Ka, ImplicitLocaleResourceBundle as Kb, useFormCallbacks as Kc, measureFirstEmission as Kd, useScheduledDraftsEnabled as Kf, useComments as Kg, isUnscheduleDocumentVersionEvent as Kh, SESSION_ID as Ki, CompactPreviewProps as Kl, ArrayItemMetadata as Km, EmailInput as Kn, Preview as Ko, isAddedItemDiff as Kp, FormFieldHeaderTextProps as Kr, RenderPreviewCallbackProps as Ks, DocumentFieldActionsResolver as Kt, useDivergenceNavigator as Ku, ValuelessSearchOperatorParams as Kv, ConnectionStatus as Kw, DocumentField as Kx, CommentsIntentProvider as Ky, DocumentActionsContext as L, ObservePathsFn as LC, MutationPayload as LS, GenerateStudioManifestOptions as L_, ListenQueryParams as La, useGetI18nText as Lb, defaultRenderPreview as Lc, UndeclaredMembersError as Ld, LegacyThemeTints as Lf, CollapseMenuProps as Lg, UpdateLiveDocumentEvent as Lh, useProjectDatasets as Li, BlockImagePreview as Ll, useDiffAnnotationColor as Lm, CreateButton as Ln, getPreviewStateObservable as Lo, normalizeIndexTupleSegment as Lp, FormFieldValidationInfo as Lr, StringInputProps as Ls, DocumentFieldAction as Lt, isReleaseDocument as Lu, OperatorButtonValueComponentProps as Lv, CommandListProps as Lw, TemplateReferenceTarget as Lx, getNamelessWorkspaceIdentifier as Ly, ConfigContext$1 as M, FieldName as MC, CommitFunction as MS, SourceProviderProps as M_, DocumentStore as Ma, UseTranslationOptions as Mb, defaultRenderBlock as Mc, IncompatibleTypeError as Md, createHookFromObservableFactory as Mf, CollapseMenuButton as Mg, HistoryClearedEvent as Mh, useKeyValueStore as Mi, TemplatePreview as Ml, ChangeResolverProps as Mm, StringInput as Mn, createBufferedDocument as Mo, getItemKey as Mp, FormInput as Mr, OnPathFocusPayload as Ms, DocumentInspectorUseMenuItemProps as Mt, ReleasesUpsellContextValue as Mu, defineSearchFilterOperators as Mv, CommandListGetItemDisabledCallback as Mw, Template as Mx, useWorkspaces as My, ConfigPropertyReducer as N, Id as NC, CommittedEvent as NS, useSource as N_, DocumentStoreOptions as Na, UseTranslationResponse as Nb, defaultRenderField as Nc, InvalidItemTypeError as Nd, catchWithCount as Nf, CollapseMenuButtonProps as Ng, PublishDocumentVersionEvent as Nh, usePresenceStore as Ni, TemplatePreviewProps as Nl, ChangeList as Nm, SlugInput as Nn, CommitRequest as No, getItemKeySegment as Np, FormInputAbsolutePathArg as Nr, PasteData$1 as Ns, defineDocumentInspector as Nt, useDocumentVersionInfo as Nu, SearchOperatorType as Nv, CommandListGetItemKeyCallback as Nw, TemplateArrayFieldDefinition as Nx, evaluateWorkspaceHidden as Ny, BaseActionDescription as O, DocumentAvailability as OC, ReconnectEvent as OS, StudioAnnouncementsCard as O_, isNewDocument as Oa, TranslateComponentMap as Ob, FormProviderProps as Oc, StringFormNode as Od, EMPTY_ARRAY as Of, ScrollEventHandler as Og, DocumentVersionEventType as Oh, useDocumentPreviewStore as Oi, RelativeTime as Ol, TIMELINE_ITEM_I18N_KEY_MAPPING as Om, TelephoneInput as On, WithVersion as Oo, PerspectiveNotWriteableReason as Op, useDocumentDivergences as Or, InputProps as Os, DocumentInspector as Ot, getReleaseIdFromReleaseDocumentId as Ou, SearchProvider as Ov, getDocumentVariantType as Ow, defaultTemplateForType as Ox, ValidateWorkspaceOptions as Oy, DECISION_PARAMETERS_SCHEMA as P, InvalidationChannelEvent as PC, DocumentMutationEvent as PS, renderStudio as P_, QueryParams$1 as Pa, useTranslation as Pb, defaultRenderInlineBlock as Pc, MissingKeysError as Pd, defaultTheme as Pf, CommonProps as Pg, ScheduleDocumentVersionEvent as Ph, useProjectStore as Pi, InlinePreview as Pl, ChangeListProps as Pm, SlugInputProps as Pn, createObservableBufferedDocument as Po, getValueAtPath as Pp, FormInputRelativePathArg as Pr, PortableTextInputProps as Ps, initialDocumentFieldActions as Pt, useArchivedReleases as Pu, operatorDefinitions as Pv, CommandListGetItemSelectedCallback as Pw, TemplateFieldDefinition as Px, useVisibleWorkspaces as Py, MediaLibraryConfig as Q, ReleasesNavMenuItemPropsGetter as QC, useChangeIndicatorsReporter as QS, FormDiffMatchPatch as Q_, MapDocument as Qa, LocaleResourceBundle as Qb, createPatchChannel as Qc, LoadableState as Qd, createSchema as Qf, CommentInputContextValue as Qg, useUserColor as Qh, Status as Qi, PreviewMediaDimensions as Ql, Diff$1 as Qm, DateInputProps as Qn, isObjectInputProps as Qo, DocumentChangeContextInstance as Qp, PresenceOverlayProps as Qr, BlockAnnotationProps as Qs, TransformPatches as Qt, FormState as Qu, SearchOptions as Qv, onRetry as Qw, UseManageFavoriteProps as Qx, CommentCreatePayload as Qy, DocumentActionsResolver as R, PreparedSnapshot as RC, RemoteSnapshotEvent as RS, generateStudioManifest as R_, listenQuery as Ra, I18nNode as Rb, EditReferenceLinkComponentProps as Rc, FormFieldGroup as Rd, useDocumentPreviewValues as Rf, buildTextSelectionFromFragment as Rg, isCreateDocumentVersionEvent as Rh, useProject as Ri, BlockImagePreviewProps as Rl, DiffVisitor as Rm, CreateReferenceOption as Rn, getPreviewPaths as Ro, normalizeKeySegment as Rp, FormFieldValidationWarning as Rr, RenderAnnotationCallback as Rs, DocumentFieldActionDivider as Rt, MetadataWrapper as Ru, OperatorInputComponentProps as Rv, CommandListRenderItemCallback as Rw, TypeTarget as Rx, getWorkspaceIdentifier as Ry, useMiddlewareComponents as S, DocumentPreviewStoreOptions as SC, ListenerEvent as SS, StudioLayout as S_, GrantsStore as Sa, CommentsAuthoringPathProvider as Sb, UploaderResolver as Sc, NodeDiffProps as Sd, isNonNullable as Sf, useTelemetryConsent as Sg, BaseEvent as Sh, ResourceCacheProviderProps as Si, StatusButton as Sl, FieldPreviewComponent as Sm, ArrayOfObjectsInputMember as Sn, Transaction as So, useSetPerspective as Sp, GetFormValueProvider as Sr, ArrayOfPrimitivesInputProps as Ss, WorkspaceSummary as St, isPublishedPerspective as Su, StudioLogo as Sv, isVersionId as Sw, DEFAULT_MAX_RECURSION_DEPTH as Sx, MatchWorkspaceOptions as Sy, AssetSourceResolver as T, ApiConfig as TC, IdPair as TS, isValidAnnouncementRole as T_, useInitialValue as Ta, ValidateDocumentOptions as Tb, StudioCrossDatasetReferenceInput as Tc, ObjectFormNode as Td, getReferencePaths as Tf, isDev as Tg, DeleteDocumentGroupEvent as Th, useDocumentPresence as Ti, RovingFocusNavigationType as Tl, DiffErrorBoundaryState as Tm, UrlInputProps as Tn, MutationResult as To, useExcludedPerspective as Tp, FormValueProvider as Tr, ComplexElementProps as Ts, ReleaseActionProps as Tt, isReleasePerspective as Tu, PartialIndexSettings as Tv, systemBundles as Tw, resolveInitialObjectValue as Tx, WorkspacesProvider as Ty, DocumentInspectorContext as U, VersionInlineBadge as UC, useDataset as US, useCopyPaste as U_, InitialValueMsg as Ua, removeUndefinedLocaleResources as Ub, useReferenceInputOptions as Uc, useNavigateToCanvasDoc as Ud, IsLastPaneProvider as Uf, CommentsOnboardingContextValue as Ug, isPublishDocumentVersionEvent as Uh, ProjectOrganizationData as Ui, DefaultPreview as Ul, Annotation as Um, NumberInput as Un, SanityDefaultPreview as Uo, resolveDiffComponent as Up, FormFieldSet as Ur, RenderInputCallback as Us, DocumentFieldActionProps as Ut, isDocumentLimitError as Uu, SearchOperatorParams as Uv, CONNECTING as Uw, useReviewChanges as Ux, CommentsSelectedPath as Uy, DocumentBadgesResolver as V, PreviewableType as VC, UseDateTimeFormatOptions as VS, StudioWorkspaceManifest as V_, InitialValueErrorMsg as Va, defineLocaleResourceBundle as Vb, ReferenceInputOptionsProvider as Vc, resolveConditionalProperty as Vd, TasksNavigationContextValue as Vf, useCommentsTelemetry as Vg, isDeleteDocumentVersionEvent as Vh, ProjectDatasetData as Vi, DetailPreview as Vl, getDiffAtPath as Vm, UpdateReadOnlyPlugin as Vn, unstable_useObserveDocument as Vo, pathsAreEqual as Vp, FieldStatusProps as Vr, RenderBlockCallback as Vs, DocumentFieldActionItem as Vt, DEFAULT_DECORATORS as Vu, SearchOperatorButtonValue as Vv, CorsOriginError as Vw, useStudioUrl as Vx, ActiveWorkspaceMatcherProps as Vy, DocumentInspectorsResolver as W, getVersionInlineBadge as WC, ConnectionState as WS, BaseOptions as W_, InitialValueState as Wa, LocaleProvider as Wb, FormCallbacksProvider as Wc, useCanvasCompanionDoc as Wd, TasksEnabledContextValue as Wf, useCommentsEnabled as Wg, isScheduleDocumentVersionEvent as Wh, ProjectStore as Wi, DefaultPreviewProps as Wl, AnnotationDetails as Wm, AssetAccessPolicy as Wn, SanityDefaultPreviewProps as Wo, useDocumentChange as Wp, FormFieldSetProps as Wr, RenderItemCallback as Ws, DocumentFieldActionStatus as Wt, useDocumentLimitsUpsellContext as Wu, SearchValueFormatterContext as Wv, ConnectedStatus as Ww, RelativeTimeOptions as Wx, CommentsSelectedPathContextValue as Wy, FormBuilderComponentResolverContext as X, PerspectiveStack as XC, ChangeIndicatorsTracker as XS, PatchEvent as X_, emitOperation as Xa, LocaleNestedResource as Xb, PatchMsgSubscriber as Xc, userHasRole as Xd, useSingleDocRelease as Xf, COMMENTS_INSPECTOR_NAME as Xg, UserColorManagerOptions as Xh, PresenceLocation as Xi, PreviewComponent as Xl, Chunk as Xm, DateTimeInputProps as Xn, isBooleanInputProps as Xo, isUnchangedDiff as Xp, PresenceScopeProps as Xr, ObjectItemProps as Xs, CookielessCompatibleLoginMethod as Xt, SetActiveGroupOperation as Xu, getSearchableTypes as Xv, RetryingStatus as Xw, UseNumberFormatOptions as Xx, CommentBaseCreatePayload as Xy, DocumentPluginOptions as Y, PerspectiveContextValue as YC, CommentDeleteDialog as YS, SanityClipboardItem as Y_, OperationSuccess as Ya, LocaleDefinition as Yb, PatchMsg as Yc, useThrottledCallback as Yd, SingleDocReleaseProvider as Yf, isTextSelectionComment as Yg, UserColorManagerProviderProps as Yh, GlobalPresence as Yi, PortableTextPreviewLayoutKey as Yl, ChangeTitlePath as Ym, DateTimeInput as Yn, isArrayOfPrimitivesInputProps as Yo, isRemovedItemDiff as Yp, PresenceScope as Yr, ObjectItem as Ys, AuthProvider as Yt, ExpandPathOperation as Yu, isPerspectiveRaw as Yv, ErrorStatus as Yw, useProjectId as Yx, CommentsProvider as Yy, GroupableActionDescription as Z, ReleaseId as ZC, useChangeIndicatorsReportedValues as ZS, FormDecPatch as Z_, operationEvents as Za, LocalePluginOptions as Zb, RebasePatchMsg as Zc, ErrorState as Zd, getSchemaTypeTitle as Zf, CommentInlineHighlightSpan as Zg, createUserColorManager as Zh, Session as Zi, PreviewLayoutKey as Zl, ChunkType as Zm, DateInput as Zn, isNumberInputProps as Zo, noop as Zp, PresenceOverlay as Zr, PrimitiveItemProps as Zs, LoginMethod as Zt, getExpandOperations as Zu, SearchFactoryOptions as Zv, createConnectionStatusStore as Zw, useNumberFormat as Zx, CommentContext as Zy, createDefaultIcon as _, useOnlyHasVersions as _C, DocumentPairLoadedEvent as _S, EditPortal as _T, UpsellDialogViewed as __, useDocumentPairPermissions as _a, CommentsTextSelectionItem as _b, ResolvedUploader as _c, BooleanFormNode as _d, isPausedCardinalityOneRelease as _f, TagValue as _g, FieldValueError as _h, AgentVersionDisplay as _i, ImperativeToast as _l, DiffStringSegment as _m, PrimitiveMemberItemProps as _n, ParsedTimeRef as _o, DuplicateActionProps as _p, FieldActionsProps as _r, ObjectFieldProps as _s, Tool as _t, CapabilityGate as _u, NavbarAction as _v, isDraft as _w, useUnitFormatter as _x, StudioThemeColorSchemeKey as _y, resolveSchemaTypes as a, useTrackerStoreReporter as aC, FormattedDuration as aS, CreateAuthStoreOptions as aT, WorkspaceLoaderBoundary as a_, getTemplatePermissions as aa, CommentPath as ab, ArrayInputCopyEvent as ac, ArrayOfObjectsItemMember as ad, uncaughtErrorHandler as af, FeedbackContext as ag, FromToIndex as ah, FormNodePresence as ai, set as al, GroupChange as am, useDocumentForm as an, useTimelineSelector as ao, GetHookCollectionStateProps as ap, ArrayOfOptionsInput as ar, FormBuilderMarkersComponent as as, PluginOptions as at, LoadingBlock as au, FormPatchOrigin as av, SystemBundle as aw, StaticLocaleResourceBundle as ax, Filters as ay, ConfigPropertyError as b, useDocumentVersions as bC, InitialSnapshotEvent as bS, StudioProviderProps as b_, EvaluationParams as ba, Loadable as bb, Uploader as bc, HiddenField as bd, isString as bf, FeedbackDialog as bg, EventsProvider as bh, ResourceCache as bi, TextWithTone as bl, DiffFromTo as bm, ArrayOfObjectsInputMembers as bn, CombinedDocument as bo, SchedulesContextValue as bp, FieldActionMenu as br, ArrayOfObjectsInputProps as bs, WorkspaceHiddenProperty as bt, getDocumentIsInPerspective as bu, StudioComponentsPluginOptions as bv, isSystemBundle as bw, useTimeAgo as bx, AddonDatasetProvider as by, createWorkspaceFromConfig as c, ReporterHook as cC, useFilteredReleases as cS, AuthProbeResult as cT, ErrorMessageProps as c_, GrantsStoreOptions as ca, CommentReactionOption as cb, UploadEvent as cc, ArrayOfPrimitivesMember as cd, fieldNeedsEscape as cf, UseFeedbackReturn as cg, NullDiff$1 as ch, PresentUser as ci, ZIndexProvider as cl, FromTo as cm, ObjectMembersProps as cn, useTimelineStore as co, DocumentActionComponent as cp, VirtualizerScrollInstance as cr, RenderBlockActionsProps as cs, ResolveProductionUrlContext as ct, InsufficientPermissionsMessageProps as cu, FormUnsetPatch as cv, createDraftFrom as cw, StudioLocaleResourceKeys as cx, ColorSchemeProvider as cy, flattenConfig as d, ConnectorContextValue as dC, useDocumentOperationEvent as dS, HandleCallbackResult as dT, useWorkspace as d_, DocumentValuePermissionsOptions as da, CommentTaskCreatePayload as db, ImageInputProps as dc, FieldSetMember as dd, _isSanityDocumentTypeDefinition as df, UseInStudioFeedbackReturn as dg, ReferenceDiff as dh, ReportedRegionWithRect as di, AvatarSkeleton as dl, FallbackDiff as dm, MemberFieldSet as dn, HistoryStoreOptions as do, DocumentActionDescription as dp, ArrayOfObjectsFunctions as dr, ArrayOfPrimitivesFieldProps as ds, SchemaPluginOptions as dt, serializeError as du, ToolLinkProps as dv, getDraftId as dw, UserListWithPermissionsOptions as dx, useColorSchemeInternalValue as dy, TrackedArea as eC, UseListFormatOptions as eS, isCookielessCompatibleLoginMethod as eT, CommentInputHandle as e_, UserStore as ea, CommentFieldCreatePayload as eb, BlockListItemProps as ec, useFormState as ed, LoadingState as ef, HexColor as eg, DiffComponentOptions as eh, FieldPresenceInner as ei, dec as el, RevertChangesConfirmDialog as em, encodePath as en, OperationArgs as eo, ScheduledBadge as ep, BooleanInput as er, isStringInputProps as es, NewDocumentCreationContext as et, PreviewCard as eu, FormInsertPatch as ev, TargetPerspective as ew, LocaleResourceRecord as ex, SearchTerms as ey, PluginFactory as f, ChangeIndicator as fC, useDocumentOperation as fS, LoginComponentProps as fT, InterpolationProp as f_, getDocumentValuePermissions as fa, CommentTextSelection as fb, StudioImageInput as fc, FieldsetRenderMembersCallback as fd, _isType as ff, useInStudioFeedback as fg, StringDiff$1 as fh, Size as fi, UserAvatar as fl, Event$1 as fm, MemberFieldError as fn, createHistoryStore as fo, DocumentActionDialogProps as fp, useDidUpdate as fr, BaseFieldProps as fs, SingleWorkspace as ft, useCopyErrorDetails as fu, StudioToolMenu as fv, getIdPair as fw, UserWithPermission as fx, useColorSchemeOptions as fy, defineConfig as g, useVersionOperations as gC, editState$1 as gS, EnhancedObjectDialog as gT, UpsellDialogUpgradeCtaClicked as g_, getDocumentPairPermissions as ga, CommentsListBreadcrumbItem as gb, FileLike as gc, BaseFormNode as gd, isCardinalityOneRelease as gf, Sentiment as gg, TypeChangeDiff$1 as gh, useUser as gi, ZIndexContextValue as gl, DiffString as gm, ArrayOfPrimitivesItem as gn, TimelineControllerOptions as go, DocumentActionProps as gp, useFieldActions as gr, NumberFieldProps as gs, TemplateResolver as gt, DocumentStatusIndicator as gu, LogoProps as gv, idMatchesPerspective as gw, UseUnitFormatterOptions as gx, StudioTheme as gy, createConfig as h, sortReleases as hC, EditStateFor as hS, KeyValueStoreValue as hT, UpsellDialogLearnMoreCtaClicked as h_, DocumentPermission as ha, CommentUpdatePayload as hb, AssetSourcesResolver as hc, ArrayOfPrimitivesFormNode as hd, isCardinalityOnePerspective as hf, FeedbackPayload as hg, StringSegmentUnchanged$1 as hh, useCurrentUser as hi, ZIndexContextValueKey as hl, DiffTooltipWithAnnotationsProps as hm, MemberItemError as hn, TimelineController as ho, DocumentActionPopoverDialogProps as hp, HoveredFieldProvider as hr, FieldProps as hs, SourceOptions as ht, ErrorActionsProps as hu, LayoutProps as hv, getVersionId as hw, UnitFormatter as hx, StudioColorScheme as hy, SchemaError as i, useTrackerStore as iC, FormDocumentValue as iS, AuthStoreOptions as iT, UpsellData as i_, TemplatePermissionsResult as ia, CommentOperations as ib, PortableTextPluginsProps as ic, FieldsetState as id, truncateString as if, UserId as ig, FieldOperationsAPI as ih, FieldPresenceData as ii, prefixPath as il, MetaInfoProps as im, useFormBuilder as in, snapshotPair as io, GetHookCollectionState as ip, ArrayOfPrimitiveOptionsInput as ir, FormBuilderInputComponentMap as is, Plugin as it, PopoverDialog as iu, FormPatchJSONValue as iv, PublishedId as iw, LocalesOption as ix, SearchHeader as iy, Config as j, DraftsModelDocumentAvailability as jC, WelcomeEvent as jS, SourceProvider as j_, useDocumentType as ja, usEnglishLocale as jb, defaultRenderAnnotation as jc, FieldError as jd, ReactHook as jf, useOnScroll as jg, EventsStoreRevision as jh, useHistoryStore as ji, CircularProgress as jl, ChangeResolver as jm, TagsArrayInputProps as jn, BufferedDocumentWrapper as jo, findIndex as jp, FormRow as jr, OnPasteFn as js, DocumentInspectorProps as jt, useReleasesIds as ju, defineSearchFilter as jv, CommandListElementType as jw, InitialValueTemplateItem as jx, validateWorkspaces as jy, BetaFeatures as k, DocumentStackAvailability as kC, ResetEvent as kS, Studio as k_, useDocumentValues as ka, TranslationProps as kb, FormBuilder as kc, ArrayItemError as kd, EMPTY_OBJECT as kf, ScrollContainer as kg, EditDocumentVersionEvent as kh, useDocumentStore as ki, RelativeTimeProps as kl, ChangeTitleSegment as km, TelephoneInputProps as kn, checkoutPair as ko, isPerspectiveWriteable as kp, FormContainer as kr, NumberInputProps as ks, DocumentInspectorComponent as kt, LATEST as ku, SearchContextValue as kv, ContextMenuButton as kw, defaultTemplatesForSchema as kx, validateBasePaths as ky, resolveConfig as l, ChangeConnectorRoot as lC, useFeatureEnabled as lS, AuthState as lT, WorkspaceProvider as l_, createGrantsStore as la, CommentReactionShortNames as lb, EnhancedObjectDialogContextValue as lc, DecorationMember as ld, joinPath as lf, useFeedback as lg, NumberDiff$1 as lh, Rect as li, useZIndex as ll, FromToProps as lm, ObjectInputMember as ln, DocumentRevision as lo, DocumentActionConfirmDialogProps as lp, useVirtualizerScrollInstance as lr, RenderCustomMarkers as ls, SanityFormConfig as lt, Hotkeys as lu, PatchArg as lv, createPublishedFrom as lw, Rule as lx, ColorSchemeProviderProps as ly, definePlugin as m, ChangeFieldWrapper as mC, useDocumentIdStack as mS, KeyValueStore as mT, UpsellDialogDismissed as m_, DocumentPairPermissionsOptions as ma, CommentUpdateOperationOptions as mb, StudioFileInput as mc, ArrayOfObjectsFormNode as md, CardinalityOneRelease as mf, DynamicFeedbackTags as mg, StringSegmentChanged$1 as mh, DocumentPreviewPresenceProps as mi, LegacyLayerProvider as ml, DiffTooltipProps as mm, MemberFieldProps as mn, SelectionState as mo, DocumentActionModalDialogProps as mp, useHoveredField as mr, FieldCommentsProps as ms, SourceClientOptions as mt, ErrorActions as mu, ActiveToolLayoutProps as mv, getVersionFromId as mw, FormattableMeasurementUnit as mx, useColorSchemeValue as my, getConfigContextFromSource as n, TrackerContextGetSnapshot as nC, GlobalCopyPasteElementHandler as nS, MockAuthStoreOptions as nT, CommentsList as n_, createUserStore as na, CommentListBreadcrumbs as nb, BlockStyleProps as nc, StateTree as nd, useLoadable as nf, UserColorHue as ng, DiffProps as nh, FieldPresenceProps as ni, inc as nl, NoChanges as nm, fromMutationPatches as nn, OperationsAPI as no, DocumentBadgeDescription as np, ArrayOfPrimitivesInput as nr, FormBuilderCustomMarkersComponent as ns, NewDocumentOptionsResolver as nt, ReferenceInputPreviewCard as nu, FormPatch as nv, DRAFTS_FOLDER as nw, LocaleWeekInfo as nx, SearchPopover as ny, CreateWorkspaceFromConfigOptions as o, IsEqualFunction as oC, UseFormattedDurationOptions as oS, _createAuthStore as oT, useWorkspaceLoader as o_, useTemplatePermissions as oa, CommentPostPayload as ob, ArrayInputInsertEvent as oc, ArrayOfObjectsMember as od, supportsTouch as of, FeedbackContextValue as og, GroupChangeNode as oh, Location as oi, setIfMissing as ol, FromToArrow as om, ObjectInputMembers as on, TimelineState as oo, HookCollectionActionHook as op, ArrayOfObjectOptionsInput as or, PortableTextMarker as os, PreparedConfig as ot, IntentButton as ou, FormSetIfMissingPatch as ov, VERSION_FOLDER as ow, TFunction$1 as ox, ColorSchemeCustomProvider as oy, createPlugin as p, ChangeIndicatorProps as pC, DocumentIdStack as pS, createKeyValueStore as pT, UpsellDescriptionSerializer as p_, useDocumentValuePermissions as pa, CommentThreadItem as pb, FileInputProps as pc, ObjectMember as pd, createSWR as pf, BaseFeedbackTags as pg, StringDiffSegment as ph, DocumentPreviewPresence as pi, UserAvatarProps as pl, DiffTooltip as pm, MemberField as pn, removeMissingReferences as po, DocumentActionGroup as pp, FormBuilderContextValue as pr, BooleanFieldProps as ps, Source as pt, ErrorWithId as pu, StudioNavbar as pv, getPublishedId as pw, useUserListWithPermissions as px, useColorSchemeSetValue as py, DocumentLanguageFilterResolver as q, ReleaseAvatarIcon as qC, useClient as qS, DocumentMeta as q_, remoteSnapshots as qa, Locale as qb, MutationPatchMsg as qc, measureFirstMatch as qd, useScheduledDraftDocument as qf, CommentsContextValue as qg, isUpdateLiveDocumentEvent as qh, createPresenceStore as qi, GeneralDocumentListLayoutKey as ql, BooleanDiff$1 as qm, EmailInputProps as qn, isArrayOfBlocksInputProps as qo, isFieldChange as qp, FormField as qr, BaseItemProps as qs, DocumentFieldActionsResolverContext as qt, ExpandFieldSetOperation as qu, defineSearchOperator as qv, ConnectionStatusStore as qw, useReferringDocuments as qx, CommentsIntentProviderProps as qy, useConfigContextFromSource as r, TrackerContextStore as rC, useGlobalCopyPasteElementHandler as rS, createMockAuthStore as rT, CommentsUpsellContextValue as r_, TemplatePermissionsOptions as ra, CommentMessage as rb, MarkdownConfig as rc, FieldsetMembers as rd, sliceString as rf, UserColorManager as rg, FieldChangeNode as rh, FieldPresenceWithOverlay as ri, insert as rl, MetaInfo as rm, toMutationPatches as rn, DocumentVersionSnapshots as ro, DocumentBadgeProps as rp, ArrayOfPrimitivesFunctions as rr, FormBuilderFilterFieldFn as rs, PartialContext as rt, usePreviewCard as ru, FormPatchBase as rv, DraftId as rw, LocalesBundlesOption as rx, SearchPopoverProps as ry, createSourceFromConfig as s, Reported as sC, useFormattedDuration as sS, createAuthStore as sT, ErrorMessage as s_, useTemplatePermissionsFromHookFactory as sa, CommentReactionItem as sb, ArrayInputMoveItemEvent as sc, ArrayOfPrimitivesItemMember as sd, escapeField as sf, useStudioFeedbackTags as sg, ItemDiff$1 as sh, Position as si, unset as sl, FromToArrowDirection as sm, ObjectMembers as sn, TimelineStore as so, useScheduleAction as sp, VirtualizerScrollInstanceProvider as sr, RenderBlockActionsCallback as ss, ReleaseActionsResolver as st, InsufficientPermissionsMessage as su, FormSetPatch as sv, collate as sw, ValidationLocaleResourceKeys as sx, ColorSchemeLocalStorageProvider as sy, ActiveWorkspaceMatcherContextValue as t, TrackedChange as tC, useListFormat as tS, getProviderTitle as tT, CommentInputProps as t_, UserStoreOptions as ta, CommentIntentGetter as tb, BlockProps as tc, setAtPath as td, asLoadable as tf, UserColor as tg, DiffComponentResolver as th, FieldPresenceInnerProps as ti, diffMatchPatch as tl, RevertChangesButton as tm, MutationPatch as tn, OperationImpl as to, DocumentBadgeComponent as tp, UniversalArrayInput as tr, ArrayInputFunctionsProps as ts, NewDocumentOptionsContext as tt, PreviewCardContextValue as tu, FormInsertPatchPosition as tv, CollatedHit as tw, LocaleSource as tx, SearchResultItemPreview as ty, prepareConfig as u, ChangeConnectorRootProps as uC, useEditState as uS, AuthStore as uT, WorkspaceProviderProps as u_, grantsPermissionOn as ua, CommentStatus as ub, useEnhancedObjectDialog as uc, FieldMember as ud, _isCustomDocumentTypeDefinition as uf, SendFeedbackOptions as ug, ObjectDiff$1 as uh, RegionWithIntersectionDetails as ui, WithReferringDocuments as ul, FieldChange as um, ObjectInputMemberProps as un, HistoryStore as uo, DocumentActionCustomDialogComponentProps as up, ArrayOfObjectsInput as ur, ArrayFieldProps as us, ScheduledPublishingPluginOptions as ut, HotkeysProps$1 as uu, ToolLink as uv, documentIdEquals as uw, UserListWithPermissionsHookValue as ux, useColorScheme as uy, ConfigResolutionError as v, useIsReleaseActive as vC, DocumentRebaseTelemetryEvent as vS, createSanityMediaLibraryFileSource as vT, UpsellDialogViewedInfo as v_, useDocumentPairPermissionsFromHookFactory as va, CommentsType as vb, UploadOptions as vc, ComputeDiff as vd, PartialExcept as vf, StudioFeedbackDialog as vg, getValueError as vh, useAgentVersionDisplay as vi, ToastParams$1 as vl, DiffInspectWrapper as vm, ArrayOfObjectsItem as vn, Timeline as vo, DuplicateDocumentActionComponent as vp, FieldActionsResolver as vr, PrimitiveFieldProps as vs, Workspace as vt, DocumentStatus as vu, NavbarProps as vv, isDraftId as vw, useTools as vx, useAddonDataset as vy, AppsOptions as w, createDocumentPreviewStore as wC, getPairListener as wS, isValidAnnouncementAudience as w_, useResolveInitialValueForType as wa, useValidationStatus as wb, StudioReferenceInputProps as wc, ObjectArrayFormNode as wd, globalScope as wf, StudioFeedbackProvider as wg, CreateLiveDocumentEvent as wh, useGlobalPresence as wi, useRovingFocus as wl, DiffErrorBoundaryProps as wm, UrlInput as wn, DocumentVersionEvent as wo, useGetDefaultPerspective as wp, FormValueContextValue as wr, BooleanInputProps as ws, ReleaseActionDescription as wt, RELEASES_STUDIO_CLIENT_OPTIONS as wu, SearchButton as wv, removeDupes as ww, isBuilder as wx, matchWorkspace as wy, ConfigPropertyErrorOptions as x, DocumentPreviewStore as xC, LatencyReportEvent as xS, NavbarContextValue as x_, Grant as xa, CommentsAuthoringPathContextValue as xb, UploaderDef as xc, NodeChronologyProps as xd, isRecord as xf, FeedbackDialogProps as xg, useEvents as xh, ResourceCacheProvider as xi, TextWithToneProps as xl, DiffFromToProps as xm, ArrayOfObjectsInputMembersProps as xn, DocumentRemoteMutationVersionEvent as xo, EditScheduleForm as xp, FieldActionMenuProps as xr, ArrayOfPrimitivesElementType as xs, WorkspaceOptions as xt, isDraftPerspective as xu, ToolMenuProps as xv, isSystemBundleName as xw, useTemplates as xx, useActiveWorkspace as xy, ConfigResolutionErrorOptions as y, useDocumentVersionTypeSortedList as yC, DocumentStoreExtraOptions as yS, createSanityMediaLibraryImageSource as yT, StudioProvider as y_, DocumentValuePermission as ya, CommentsUIMode as yb, UploadProgressEvent as yc, DocumentFormNode as yd, isTruthy as yf, StudioFeedbackDialogProps as yg, useEventsStore as yh, isAgentBundleName as yi, TooltipOfDisabled as yl, DiffInspectWrapperProps as ym, MemberItemProps as yn, TimelineOptions as yo, isSanityDefinedAction as yp, FieldActionsProvider as yr, StringFieldProps as ys, WorkspaceHiddenContext as yt, formatRelativeLocalePublishDate as yu, StudioComponents as yv, isPublishedId as yw, TimeAgoOpts as yx, AddonDatasetContextValue as yy, DocumentActionsVersionType as z, PreviewPath as zC, SnapshotEvent as zS, ManifestWorkspaceInput as z_, InitialValueOptions as za, useI18nText as zb, EditReferenceOptions as zc, ProvenanceDiffAnnotation as zd, TasksUpsellContextValue as zf, buildRangeDecorationSelectionsFromComments as zg, isCreateLiveDocumentEvent as zh, createProjectStore as zi, MediaPreview as zl, getAnnotationAtPath as zm, PortableTextInput as zn, unstable_useValuePreview as zo, normalizePathSegment as zp, FormFieldValidationStatus as zr, RenderArrayOfObjectsItemCallback as zs, DocumentFieldActionGroup as zt, RELEASES_INTENT as zu, SearchOperatorBase as zv, BetaBadge as zw, SyncState as zx, WorkspaceLike as zy };
16449
+ export { MissingConfigFile as $, DraftId as $C, TrackerContextStore as $S, FormPatchBase as $_, DocumentVersionSnapshots as $a, LocalesBundlesOption as $b, insert as $c, sliceString as $d, DocumentBadgeProps as $f, CommentsUpsellContextValue as $g, UserColorManager as $h, TemplatePermissionsOptions as $i, usePreviewCard as $l, FieldChangeNode as $m, ArrayOfPrimitivesFunctions as $n, FormBuilderFilterFieldFn as $o, MetaInfo as $p, FieldPresenceWithOverlay as $r, MarkdownConfig as $s, toMutationPatches as $t, FieldsetMembers as $u, SearchPopoverProps as $v, createMockAuthStore as $w, useGlobalCopyPasteElementHandler as $x, CommentMessage as $y, ComposableOption as A, InvalidationChannelEvent as AC, DocumentMutationEvent as AS, renderStudio as A_, QueryParams$1 as Aa, useTranslation as Ab, defaultRenderInlineBlock as Ac, MissingKeysError as Ad, defaultTheme as Af, CommonProps as Ag, ScheduleDocumentVersionEvent as Ah, useProjectDatasets as Ai, InlinePreview as Al, ChangeListProps as Am, SlugInputProps as An, createObservableBufferedDocument as Ao, getValueAtPath as Ap, FormInputRelativePathArg as Ar, PortableTextInputProps as As, DocumentInspectorMenuItem as At, useArchivedReleases as Au, operatorDefinitions as Av, CommandListGetItemSelectedCallback as Aw, TemplateFieldDefinition as Ax, useVisibleWorkspaces as Ay, DocumentBadgesContext as B, getVersionInlineBadge as BC, ConnectionState as BS, BaseOptions as B_, InitialValueState as Ba, LocaleProvider as Bb, FormCallbacksProvider as Bc, useCanvasCompanionDoc as Bd, TasksEnabledContextValue as Bf, useCommentsEnabled as Bg, isScheduleDocumentVersionEvent as Bh, createPresenceStore as Bi, DefaultPreviewProps as Bl, AnnotationDetails as Bm, AssetAccessPolicy as Bn, SanityDefaultPreviewProps as Bo, useDocumentChange as Bp, FormFieldSetProps as Br, RenderItemCallback as Bs, DocumentFieldActionHook as Bt, useDocumentLimitsUpsellContext as Bu, SearchValueFormatterContext as Bv, ConnectedStatus as Bw, RelativeTimeOptions as Bx, CommentsSelectedPathContextValue as By, ActionComponent as C, AvailabilityResponse as CC, PendingMutationsEvent as CS, StudioAnnouncementsContextValue as C_, selectUpstreamVersion as Ca, Translate as Cb, FormProvider as Cc, PrimitiveFormNode as Cd, formatRelativeLocale as Cf, ScrollContextValue as Cg, DocumentGroupEvent as Ch, useGrantsStore as Ci, Resizable as Cl, DiffCardProps as Cm, TextInputProps as Cn, RemoteSnapshotVersionEvent as Co, ReleasesNav as Cp, DivergencesProvider as Cr, InputOnSelectFileFunctionProps as Cs, ReleaseActionComponent as Ct, getReleaseTone as Cu, useSearchState as Cv, DocumentVariantType as Cw, resolveInitialValueForType as Cx, WorkspacesContextValue as Cy, AsyncConfigPropertyReducer as D, DraftsModelDocumentAvailability as DC, WelcomeEvent as DS, SourceProvider as D_, useDocumentType as Da, usEnglishLocale as Db, defaultRenderAnnotation as Dc, FieldError as Dd, ReactHook as Df, useOnScroll as Dg, EventsStoreRevision as Dh, useProjectStore as Di, CircularProgress as Dl, ChangeResolver as Dm, TagsArrayInputProps as Dn, BufferedDocumentWrapper as Do, findIndex as Dp, FormRow as Dr, OnPasteFn as Ds, FormComponents as Dt, useReleasesIds as Du, defineSearchFilter as Dv, CommandListElementType as Dw, InitialValueTemplateItem as Dx, validateWorkspaces as Dy, AsyncComposableOption as E, DraftsModelDocument as EC, WelcomeBackEvent as ES, StudioProps as E_, DocumentTypeResolveState as Ea, defaultLocale as Eb, FormBuilderProps as Ec, DuplicateKeysError as Ed, LoadingTuple as Ef, ScrollContainerProps as Eg, EventsStore as Eh, usePresenceStore as Ei, LinearProgress as El, ChangesError as Em, TagsArrayInput as En, BufferedDocumentEvent as Eo, FIXME as Ep, FormCell as Er, ObjectInputProps as Es, ReleaseActionsContext as Et, PUBLISHED as Eu, SearchFilterDefinition as Ev, CommandList as Ew, prepareTemplates as Ex, validateNames as Ey, DecisionParametersConfig as F, PreviewPath as FC, SnapshotEvent as FS, ManifestWorkspaceInput as F_, InitialValueOptions as Fa, useI18nText as Fb, EditReferenceOptions as Fc, ProvenanceDiffAnnotation as Fd, TasksUpsellContextValue as Ff, buildRangeDecorationSelectionsFromComments as Fg, isCreateLiveDocumentEvent as Fh, ProjectGrants as Fi, MediaPreview as Fl, getAnnotationAtPath as Fm, PortableTextInput as Fn, unstable_useValuePreview as Fo, normalizePathSegment as Fp, FormFieldValidationStatus as Fr, RenderArrayOfObjectsItemCallback as Fs, documentFieldActionsReducer as Ft, RELEASES_INTENT as Fu, SearchOperatorBase as Fv, BetaBadge as Fw, SyncState as Fx, WorkspaceLike as Fy, DocumentLanguageFilterComponent as G, PerspectiveContextValue as GC, CommentDeleteDialog as GS, SanityClipboardItem as G_, OperationSuccess as Ga, LocaleDefinition as Gb, PatchMsg as Gc, useThrottledCallback as Gd, SingleDocReleaseProvider as Gf, isTextSelectionComment as Gg, UserColorManagerProviderProps as Gh, Status as Gi, PortableTextPreviewLayoutKey as Gl, ChangeTitlePath as Gm, DateTimeInput as Gn, isArrayOfPrimitivesInputProps as Go, isRemovedItemDiff as Gp, PresenceScope as Gr, ObjectItem as Gs, DocumentFieldActionTone as Gt, ExpandPathOperation as Gu, isPerspectiveRaw as Gv, ErrorStatus as Gw, useProjectId as Gx, CommentsProvider as Gy, DocumentCommentsEnabledContext as H, ReleaseAvatar as HC, useConditionalToast as HS, CopyPasteContextType as H_, validation$1 as Ha, ImplicitLocaleResourceBundle as Hb, useFormCallbacks as Hc, measureFirstEmission as Hd, useScheduledDraftsEnabled as Hf, useComments as Hg, isUnscheduleDocumentVersionEvent as Hh, GlobalPresence as Hi, CompactPreviewProps as Hl, ArrayItemMetadata as Hm, EmailInput as Hn, Preview as Ho, isAddedItemDiff as Hp, FormFieldHeaderTextProps as Hr, RenderPreviewCallbackProps as Hs, DocumentFieldActionNode as Ht, useDivergenceNavigator as Hu, ValuelessSearchOperatorParams as Hv, ConnectionStatus as Hw, DocumentField as Hx, CommentsIntentProvider as Hy, DefaultPluginsWorkspaceOptions as I, Previewable as IC, useDialogStack as IS, StudioManifest as I_, getInitialValueStream as Ia, defineLocale as Ib, ReferenceInputOptions as Ic, ALL_FIELDS_GROUP as Id, TasksContextValue as If, buildCommentRangeDecorations as Ig, isDeleteDocumentGroupEvent as Ih, ProjectOrganizationData as Ii, MediaPreviewProps as Il, getAnnotationColor as Im, PortableTextMemberItem as In, useValuePreview as Io, pathToString as Ip, FormFieldValidationStatusProps as Ir, RenderArrayOfPrimitivesItemCallback as Is, defineDocumentFieldAction as It, DEFAULT_ANNOTATIONS as Iu, SearchOperatorBuilder as Iv, BetaBadgeProps as Iw, useSyncState as Ix, ActiveWorkspaceMatcher as Iy, DocumentLayoutProps as J, ReleasesNavMenuItemPropsGetter as JC, useChangeIndicatorsReporter as JS, FormDiffMatchPatch as J_, MapDocument as Ja, LocaleResourceBundle as Jb, createPatchChannel as Jc, LoadableState as Jd, createSchema as Jf, CommentInputContextValue as Jg, useUserColor as Jh, UserStoreOptions as Ji, PreviewMediaDimensions as Jl, Diff$1 as Jm, DateInputProps as Jn, isObjectInputProps as Jo, DocumentChangeContextInstance as Jp, PresenceOverlayProps as Jr, BlockAnnotationProps as Js, TransformPatches as Jt, FormState as Ju, SearchOptions as Jv, onRetry as Jw, UseManageFavoriteProps as Jx, CommentCreatePayload as Jy, DocumentLanguageFilterContext as K, PerspectiveStack as KC, ChangeIndicatorsTracker as KS, PatchEvent as K_, emitOperation as Ka, LocaleNestedResource as Kb, PatchMsgSubscriber as Kc, userHasRole as Kd, useSingleDocRelease as Kf, COMMENTS_INSPECTOR_NAME as Kg, UserColorManagerOptions as Kh, UserSessionPair as Ki, PreviewComponent as Kl, Chunk as Km, DateTimeInputProps as Kn, isBooleanInputProps as Ko, isUnchangedDiff as Kp, PresenceScopeProps as Kr, ObjectItemProps as Ks, DocumentFieldActionsResolver as Kt, SetActiveGroupOperation as Ku, getSearchableTypes as Kv, RetryingStatus as Kw, UseNumberFormatOptions as Kx, CommentBaseCreatePayload as Ky, DocumentActionsContext as L, PreviewableType as LC, UseDateTimeFormatOptions as LS, StudioWorkspaceManifest as L_, InitialValueErrorMsg as La, defineLocaleResourceBundle as Lb, ReferenceInputOptionsProvider as Lc, resolveConditionalProperty as Ld, TasksNavigationContextValue as Lf, useCommentsTelemetry as Lg, isDeleteDocumentVersionEvent as Lh, ProjectStore as Li, DetailPreview as Ll, getDiffAtPath as Lm, UpdateReadOnlyPlugin as Ln, unstable_useObserveDocument as Lo, pathsAreEqual as Lp, FieldStatusProps as Lr, RenderBlockCallback as Ls, DocumentFieldAction as Lt, DEFAULT_DECORATORS as Lu, SearchOperatorButtonValue as Lv, CorsOriginError as Lw, useStudioUrl as Lx, ActiveWorkspaceMatcherProps as Ly, ConfigContext$1 as M, ObserveDocumentTypeFromIdFn as MC, DocumentRemoteMutationEvent as MS, LiveManifestRegisterProvider as M_, ListenQueryOptions as Ma, useLocale as Mb, defaultRenderItem as Mc, TypeAnnotationMismatchError as Md, LegacyThemeProps as Mf, CollapseMenu as Mg, UnscheduleDocumentVersionEvent as Mh, createProjectStore as Mi, BlockPreview as Ml, useAnnotationColor as Mm, ReferenceAutocomplete as Mn, getPreviewValueWithFallback as Mo, normalizeIndexSegment as Mp, FormFieldValidationError as Mr, PrimitiveInputProps as Ms, DocumentInspectorUseMenuItemProps as Mt, VersionInfoDocumentStub as Mu, I18nSearchOperatorNameKey as Mv, CommandListItemContext as Mw, TemplateParameter as Mx, VisibleWorkspacesProvider as My, ConfigPropertyReducer as N, ObservePathsFn as NC, MutationPayload as NS, GenerateStudioManifestOptions as N_, ListenQueryParams as Na, useGetI18nText as Nb, defaultRenderPreview as Nc, UndeclaredMembersError as Nd, LegacyThemeTints as Nf, CollapseMenuProps as Ng, UpdateLiveDocumentEvent as Nh, ProjectData as Ni, BlockImagePreview as Nl, useDiffAnnotationColor as Nm, CreateButton as Nn, getPreviewStateObservable as No, normalizeIndexTupleSegment as Np, FormFieldValidationInfo as Nr, StringInputProps as Ns, defineDocumentInspector as Nt, isReleaseDocument as Nu, OperatorButtonValueComponentProps as Nv, CommandListProps as Nw, TemplateReferenceTarget as Nx, getNamelessWorkspaceIdentifier as Ny, BaseActionDescription as O, FieldName as OC, CommitFunction as OS, SourceProviderProps as O_, DocumentStore as Oa, UseTranslationOptions as Ob, defaultRenderBlock as Oc, IncompatibleTypeError as Od, createHookFromObservableFactory as Of, CollapseMenuButton as Og, HistoryClearedEvent as Oh, useRenderingContextStore as Oi, TemplatePreview as Ol, ChangeResolverProps as Om, StringInput as On, createBufferedDocument as Oo, getItemKey as Op, FormInput as Or, OnPathFocusPayload as Os, DocumentInspector as Ot, ReleasesUpsellContextValue as Ou, defineSearchFilterOperators as Ov, CommandListGetItemDisabledCallback as Ow, Template as Ox, useWorkspaces as Oy, DECISION_PARAMETERS_SCHEMA as P, PreparedSnapshot as PC, RemoteSnapshotEvent as PS, generateStudioManifest as P_, listenQuery as Pa, I18nNode as Pb, EditReferenceLinkComponentProps as Pc, FormFieldGroup as Pd, useDocumentPreviewValues as Pf, buildTextSelectionFromFragment as Pg, isCreateDocumentVersionEvent as Ph, ProjectDatasetData as Pi, BlockImagePreviewProps as Pl, DiffVisitor as Pm, CreateReferenceOption as Pn, getPreviewPaths as Po, normalizeKeySegment as Pp, FormFieldValidationWarning as Pr, RenderAnnotationCallback as Ps, initialDocumentFieldActions as Pt, MetadataWrapper as Pu, OperatorInputComponentProps as Pv, CommandListRenderItemCallback as Pw, TypeTarget as Px, getWorkspaceIdentifier as Py, MediaLibraryConfig as Q, DRAFTS_FOLDER as QC, TrackerContextGetSnapshot as QS, FormPatch as Q_, OperationsAPI as Qa, LocaleWeekInfo as Qb, inc as Qc, useLoadable as Qd, DocumentBadgeDescription as Qf, CommentsList as Qg, UserColorHue as Qh, KeyValueStoreValue as Qi, ReferenceInputPreviewCard as Ql, DiffProps as Qm, ArrayOfPrimitivesInput as Qn, FormBuilderCustomMarkersComponent as Qo, NoChanges as Qp, FieldPresenceProps as Qr, BlockStyleProps as Qs, fromMutationPatches as Qt, StateTree as Qu, SearchPopover as Qv, MockAuthStoreOptions as Qw, GlobalCopyPasteElementHandler as Qx, CommentListBreadcrumbs as Qy, DocumentActionsResolver as R, Selection as RC, useDateTimeFormat as RS, CopyPasteProvider as R_, InitialValueLoadingMsg as Ra, defineLocalesResources as Rb, TemplateOption as Rc, getDocumentIdForCanvasLink as Rd, MentionUserContextValue as Rf, useCommentsSelectedPath as Rg, isEditDocumentVersionEvent as Rh, PresenceStore as Ri, DetailPreviewProps as Rl, visitDiff as Rm, ObjectInput as Rn, useUnstableObserveDocument as Ro, stringToPath as Rp, FormFieldStatus as Rr, RenderFieldCallback as Rs, DocumentFieldActionDivider as Rt, ReleaseDocument$1 as Ru, SearchOperatorInput as Rv, CorsOriginErrorOptions as Rw, useSchema as Rx, RouterHistory as Ry, useMiddlewareComponents as S, AvailabilityReason as SC, MutationEvent as SS, StudioAnnouncementsDialog as S_, useInitialValueResolverContext as Sa, validateDocument as Sb, StudioCrossDatasetReferenceInputProps as Sc, ObjectRenderMembersCallback as Sd, getErrorMessage as Sf, isProd as Sg, DeleteDocumentVersionEvent as Sh, useDocumentStore as Si, RovingFocusProps as Sl, DiffCard as Sm, TextInput as Sn, Pair as So, PerspectiveProvider as Sp, useFormValue as Sr, EditorChange as Ss, WorkspaceSummary as St, isGoingToUnpublish as Su, useSearchMaxFieldDepth as Sv, Chip as Sw, resolveInitialValue as Sx, WorkspacesProviderProps as Sy, AssetSourceResolver as T, DocumentStackAvailability as TC, ResetEvent as TS, Studio as T_, useDocumentValues as Ta, TranslationProps as Tb, FormBuilder as Tc, ArrayItemError as Td, EMPTY_OBJECT as Tf, ScrollContainer as Tg, EditDocumentVersionEvent as Th, useKeyValueStore as Ti, RelativeTimeProps as Tl, ChangeTitleSegment as Tm, TelephoneInputProps as Tn, checkoutPair as To, isPerspectiveWriteable as Tp, FormContainer as Tr, NumberInputProps as Ts, ReleaseActionProps as Tt, LATEST as Tu, SearchContextValue as Tv, ContextMenuButton as Tw, defaultTemplatesForSchema as Tx, validateBasePaths as Ty, DocumentInspectorContext as U, ReleaseAvatarIcon as UC, useClient as US, DocumentMeta as U_, remoteSnapshots as Ua, Locale as Ub, MutationPatchMsg as Uc, measureFirstMatch as Ud, useScheduledDraftDocument as Uf, CommentsContextValue as Ug, isUpdateLiveDocumentEvent as Uh, PresenceLocation as Ui, GeneralDocumentListLayoutKey as Ul, BooleanDiff$1 as Um, EmailInputProps as Un, isArrayOfBlocksInputProps as Uo, isFieldChange as Up, FormField as Ur, BaseItemProps as Us, DocumentFieldActionProps as Ut, ExpandFieldSetOperation as Uu, defineSearchOperator as Uv, ConnectionStatusStore as Uw, useReferringDocuments as Ux, CommentsIntentProviderProps as Uy, DocumentBadgesResolver as V, ReleaseTitle as VC, useConnectionState as VS, CopyOptions as V_, InitialValueSuccessMsg as Va, LocaleProviderBase as Vb, FormCallbacksValue as Vc, SANITY_VERSION as Vd, DEFAULT_STUDIO_CLIENT_OPTIONS as Vf, CommentsEnabledContextValue as Vg, isUnpublishDocumentEvent as Vh, DocumentPresence as Vi, CompactPreview as Vl, ArrayDiff$1 as Vm, ImageUrlBuilder$1 as Vn, PreviewLoader as Vo, emptyValuesByType as Vp, FormFieldHeaderText as Vr, RenderPreviewCallback as Vs, DocumentFieldActionItem as Vt, DivergenceNavigator as Vu, ValuelessSearchOperatorBuilder as Vv, ConnectingStatus as Vw, useRelativeTime as Vx, CommentsSelectedPathProvider as Vy, DocumentInspectorsResolver as W, VersionChip as WC, CommentDisabledIcon as WS, PasteOptions as W_, OperationError as Wa, LocaleConfigContext as Wb, PatchChannel as Wc, useUnique as Wd, usePausedScheduledDraft as Wf, hasCommentMessageValue as Wg, UserColorManagerProvider as Wh, Session as Wi, GeneralPreviewLayoutKey as Wl, ChangeNode as Wm, getCalendarLabels as Wn, isArrayOfObjectsInputProps as Wo, isGroupChange as Wp, FormFieldProps as Wr, ItemProps as Ws, DocumentFieldActionStatus as Wt, ExpandOperation as Wu, createSearch as Wv, ConnectionStatusStoreOptions as Ww, useReconnectingToast as Wx, CommentsEnabledProvider as Wy, FormBuilderComponentResolverContext as X, TargetPerspective as XC, TrackedArea as XS, FormInsertPatch as X_, OperationArgs as Xa, LocaleResourceRecord as Xb, dec as Xc, LoadingState as Xd, ScheduledBadge as Xf, CommentInputHandle as Xg, HexColor as Xh, createKeyValueStore as Xi, PreviewCard as Xl, DiffComponentOptions as Xm, BooleanInput as Xn, isStringInputProps as Xo, RevertChangesConfirmDialog as Xp, FieldPresenceInner as Xr, BlockListItemProps as Xs, encodePath as Xt, useFormState as Xu, SearchTerms as Xv, isCookielessCompatibleLoginMethod as Xw, UseListFormatOptions as Xx, CommentFieldCreatePayload as Xy, DocumentPluginOptions as Y, SelectedPerspective as YC, ChangeIndicatorTrackerContextValue as YS, FormIncPatch as Y_, Operation as Ya, LocaleResourceKey as Yb, SANITY_PATCH_TYPE as Yc, LoadedState as Yd, SchedulesContext as Yf, CommentInput as Yg, useUserColorManager as Yh, createUserStore as Yi, PreviewProps as Yl, DiffComponent as Ym, CrossDatasetReferencePreview as Yn, isObjectItemProps as Yo, ValueError as Yp, FieldPresence as Yr, BlockDecoratorProps as Ys, decodePath as Yt, UseFormStateOptions as Yu, SearchSort as Yv, isAuthStore as Yw, useManageFavorite as Yx, CommentDocument as Yy, GroupableActionDescription as Z, CollatedHit as ZC, TrackedChange as ZS, FormInsertPatchPosition as Z_, OperationImpl as Za, LocaleSource as Zb, diffMatchPatch as Zc, asLoadable as Zd, DocumentBadgeComponent as Zf, CommentInputProps as Zg, UserColor as Zh, KeyValueStore as Zi, PreviewCardContextValue as Zl, DiffComponentResolver as Zm, UniversalArrayInput as Zn, ArrayInputFunctionsProps as Zo, RevertChangesButton as Zp, FieldPresenceInnerProps as Zr, BlockProps as Zs, MutationPatch as Zt, setAtPath as Zu, SearchResultItemPreview as Zv, getProviderTitle as Zw, useListFormat as Zx, CommentIntentGetter as Zy, createDefaultIcon as _, DocumentPreviewStore as _C, LatencyReportEvent as _S, EditPortal as _T, NavbarContextValue as __, Grant as _a, CommentsAuthoringPathContextValue as _b, UploaderDef as _c, NodeChronologyProps as _d, isRecord as _f, FeedbackDialogProps as _g, useEvents as _h, useGlobalPresence as _i, TextWithToneProps as _l, DiffFromToProps as _m, ArrayOfObjectsInputMembersProps as _n, DocumentRemoteMutationVersionEvent as _o, EditScheduleForm as _p, FieldActionMenuProps as _r, ArrayOfPrimitivesElementType as _s, Tool as _t, isDraftPerspective as _u, ToolMenuProps as _v, isSystemBundleName as _w, useTemplates as _x, useActiveWorkspace as _y, resolveSchemaTypes as a, ChangeConnectorRoot as aC, useFeatureEnabled as aS, AuthState as aT, WorkspaceProvider as a_, createGrantsStore as aa, CommentReactionShortNames as ab, EnhancedObjectDialogContextValue as ac, DecorationMember as ad, joinPath as af, useFeedback as ag, NumberDiff$1 as ah, Rect as ai, useZIndex as al, FromToProps as am, ObjectInputMember as an, DocumentRevision as ao, DocumentActionConfirmDialogProps as ap, useVirtualizerScrollInstance as ar, RenderCustomMarkers as as, PluginOptions as at, Hotkeys as au, PatchArg as av, createPublishedFrom as aw, Rule as ax, ColorSchemeProviderProps as ay, ConfigPropertyError as b, createDocumentPreviewStore as bC, getPairListener as bS, isValidAnnouncementAudience as b_, useResolveInitialValueForType as ba, useValidationStatus as bb, StudioReferenceInputProps as bc, ObjectArrayFormNode as bd, globalScope as bf, StudioFeedbackProvider as bg, CreateLiveDocumentEvent as bh, useConnectionStatusStore as bi, useRovingFocus as bl, DiffErrorBoundaryProps as bm, UrlInput as bn, DocumentVersionEvent as bo, useGetDefaultPerspective as bp, FormValueContextValue as br, BooleanInputProps as bs, WorkspaceHiddenProperty as bt, RELEASES_STUDIO_CLIENT_OPTIONS as bu, SearchButton as bv, removeDupes as bw, isBuilder as bx, matchWorkspace as by, createWorkspaceFromConfig as c, ChangeIndicator as cC, useDocumentOperation as cS, LoginComponentProps as cT, InterpolationProp as c_, getDocumentValuePermissions as ca, CommentTextSelection as cb, StudioImageInput as cc, FieldsetRenderMembersCallback as cd, _isType as cf, useInStudioFeedback as cg, StringDiff$1 as ch, Size as ci, UserAvatar as cl, Event$1 as cm, MemberFieldError as cn, createHistoryStore as co, DocumentActionDialogProps as cp, useDidUpdate as cr, BaseFieldProps as cs, ResolveProductionUrlContext as ct, useCopyErrorDetails as cu, StudioToolMenu as cv, getIdPair as cw, UserWithPermission as cx, useColorSchemeOptions as cy, flattenConfig as d, sortReleases as dC, EditStateFor as dS, CookielessCompatibleLoginMethod as dT, UpsellDialogLearnMoreCtaClicked as d_, DocumentPermission as da, CommentUpdatePayload as db, AssetSourcesResolver as dc, ArrayOfPrimitivesFormNode as dd, isCardinalityOnePerspective as df, FeedbackPayload as dg, StringSegmentUnchanged$1 as dh, useCurrentUser as di, ZIndexContextValueKey as dl, DiffTooltipWithAnnotationsProps as dm, MemberItemError as dn, TimelineController as do, DocumentActionPopoverDialogProps as dp, HoveredFieldProvider as dr, FieldProps as ds, SchemaPluginOptions as dt, ErrorActionsProps as du, LayoutProps as dv, getVersionId as dw, UnitFormatter as dx, StudioColorScheme as dy, useTrackerStore as eC, FormDocumentValue as eS, AuthStoreOptions as eT, UpsellData as e_, TemplatePermissionsResult as ea, CommentOperations as eb, PortableTextPluginsProps as ec, FieldsetState as ed, truncateString as ef, UserId as eg, FieldOperationsAPI as eh, FieldPresenceData as ei, prefixPath as el, MetaInfoProps as em, useFormBuilder as en, snapshotPair as eo, GetHookCollectionState as ep, ArrayOfPrimitiveOptionsInput as er, FormBuilderInputComponentMap as es, NewDocumentCreationContext as et, PopoverDialog as eu, FormPatchJSONValue as ev, PublishedId as ew, LocalesOption as ex, SearchHeader as ey, PluginFactory as f, useVersionOperations as fC, editState$1 as fS, LoginMethod as fT, UpsellDialogUpgradeCtaClicked as f_, getDocumentPairPermissions as fa, CommentsListBreadcrumbItem as fb, FileLike as fc, BaseFormNode as fd, isCardinalityOneRelease as ff, Sentiment as fg, TypeChangeDiff$1 as fh, useUser as fi, ZIndexContextValue as fl, DiffString as fm, ArrayOfPrimitivesItem as fn, TimelineControllerOptions as fo, DocumentActionProps as fp, useFieldActions as fr, NumberFieldProps as fs, SingleWorkspace as ft, DocumentStatusIndicator as fu, LogoProps as fv, idMatchesPerspective as fw, UseUnitFormatterOptions as fx, StudioTheme as fy, defineConfig as g, useDocumentVersions as gC, InitialSnapshotEvent as gS, EnhancedObjectDialog as gT, StudioProviderProps as g_, EvaluationParams as ga, Loadable as gb, Uploader as gc, HiddenField as gd, isString as gf, FeedbackDialog as gg, EventsProvider as gh, useResourceCache as gi, TextWithTone as gl, DiffFromTo as gm, ArrayOfObjectsInputMembers as gn, CombinedDocument as go, SchedulesContextValue as gp, FieldActionMenu as gr, ArrayOfObjectsInputProps as gs, TemplateResolver as gt, getDocumentIsInPerspective as gu, StudioComponentsPluginOptions as gv, isSystemBundle as gw, useTimeAgo as gx, AddonDatasetProvider as gy, createConfig as h, useDocumentVersionTypeSortedList as hC, DocumentStoreExtraOptions as hS, isAgentBundleName as hT, StudioProvider as h_, DocumentValuePermission as ha, CommentsUIMode as hb, UploadProgressEvent as hc, DocumentFormNode as hd, isTruthy as hf, StudioFeedbackDialogProps as hg, useEventsStore as hh, ResourceCacheProviderProps as hi, TooltipOfDisabled as hl, DiffInspectWrapperProps as hm, MemberItemProps as hn, TimelineOptions as ho, isSanityDefinedAction as hp, FieldActionsProvider as hr, StringFieldProps as hs, SourceOptions as ht, formatRelativeLocalePublishDate as hu, StudioComponents as hv, isPublishedId as hw, TimeAgoOpts as hx, AddonDatasetContextValue as hy, SchemaError as i, ReporterHook as iC, useFilteredReleases as iS, AuthProbeResult as iT, ErrorMessageProps as i_, GrantsStoreOptions as ia, CommentReactionOption as ib, UploadEvent as ic, ArrayOfPrimitivesMember as id, fieldNeedsEscape as if, UseFeedbackReturn as ig, NullDiff$1 as ih, PresentUser as ii, ZIndexProvider as il, FromTo as im, ObjectMembersProps as in, useTimelineStore as io, DocumentActionComponent as ip, VirtualizerScrollInstance as ir, RenderBlockActionsProps as is, Plugin as it, InsufficientPermissionsMessageProps as iu, FormUnsetPatch as iv, createDraftFrom as iw, StudioLocaleResourceKeys as ix, ColorSchemeProvider as iy, Config as j, ObserveDocumentAvailabilityFn as jC, DocumentRebaseEvent as jS, uploadSchema as j_, createDocumentStore as ja, useCurrentLocale as jb, defaultRenderInput as jc, MixedArrayError as jd, buildLegacyTheme as jf, AutoCollapseMenu as jg, UnpublishDocumentEvent as jh, useProject as ji, InlinePreviewProps as jl, ChangeBreadcrumb as jm, SelectInput as jn, prepareForPreview as jo, isEmptyObject as jp, FormFieldValidation as jr, PrimitiveInputElementProps as js, DocumentInspectorProps as jt, useActiveReleases as ju, I18nSearchOperatorDescriptionKey as jv, CommandListHandle as jw, TemplateItem as jx, VisibleWorkspacesContextValue as jy, BetaFeatures as k, Id as kC, CommittedEvent as kS, useSource as k_, DocumentStoreOptions as ka, UseTranslationResponse as kb, defaultRenderField as kc, InvalidItemTypeError as kd, catchWithCount as kf, CollapseMenuButtonProps as kg, PublishDocumentVersionEvent as kh, useUserStore as ki, TemplatePreviewProps as kl, ChangeList as km, SlugInput as kn, CommitRequest as ko, getItemKeySegment as kp, FormInputAbsolutePathArg as kr, PasteData$1 as ks, DocumentInspectorComponent as kt, useDocumentVersionInfo as ku, SearchOperatorType as kv, CommandListGetItemKeyCallback as kw, TemplateArrayFieldDefinition as kx, evaluateWorkspaceHidden as ky, resolveConfig as l, ChangeIndicatorProps as lC, DocumentIdStack as lS, AuthConfig as lT, UpsellDescriptionSerializer as l_, useDocumentValuePermissions as la, CommentThreadItem as lb, FileInputProps as lc, ObjectMember as ld, createSWR as lf, BaseFeedbackTags as lg, StringDiffSegment as lh, DocumentPreviewPresence as li, UserAvatarProps as ll, DiffTooltip as lm, MemberField as ln, removeMissingReferences as lo, DocumentActionGroup as lp, FormBuilderContextValue as lr, BooleanFieldProps as ls, SanityFormConfig as lt, ErrorWithId as lu, StudioNavbar as lv, getPublishedId as lw, useUserListWithPermissions as lx, useColorSchemeSetValue as ly, definePlugin as m, useIsReleaseActive as mC, DocumentRebaseTelemetryEvent as mS, useAgentVersionDisplay as mT, UpsellDialogViewedInfo as m_, useDocumentPairPermissionsFromHookFactory as ma, CommentsType as mb, UploadOptions as mc, ComputeDiff as md, PartialExcept as mf, StudioFeedbackDialog as mg, getValueError as mh, ResourceCacheProvider as mi, ToastParams$1 as ml, DiffInspectWrapper as mm, ArrayOfObjectsItem as mn, Timeline as mo, DuplicateDocumentActionComponent as mp, FieldActionsResolver as mr, PrimitiveFieldProps as ms, SourceClientOptions as mt, DocumentStatus as mu, NavbarProps as mv, isDraftId as mw, useTools as mx, useAddonDataset as my, getConfigContextFromSource as n, IsEqualFunction as nC, UseFormattedDurationOptions as nS, _createAuthStore as nT, useWorkspaceLoader as n_, useTemplatePermissions as na, CommentPostPayload as nb, ArrayInputInsertEvent as nc, ArrayOfObjectsMember as nd, supportsTouch as nf, FeedbackContextValue as ng, GroupChangeNode as nh, Location as ni, setIfMissing as nl, FromToArrow as nm, ObjectInputMembers as nn, TimelineState as no, HookCollectionActionHook as np, ArrayOfObjectOptionsInput as nr, PortableTextMarker as ns, NewDocumentOptionsResolver as nt, IntentButton as nu, FormSetIfMissingPatch as nv, VERSION_FOLDER as nw, TFunction$1 as nx, ColorSchemeCustomProvider as ny, CreateWorkspaceFromConfigOptions as o, ChangeConnectorRootProps as oC, useEditState as oS, AuthStore as oT, WorkspaceProviderProps as o_, grantsPermissionOn as oa, CommentStatus as ob, useEnhancedObjectDialog as oc, FieldMember as od, _isCustomDocumentTypeDefinition as of, SendFeedbackOptions as og, ObjectDiff$1 as oh, RegionWithIntersectionDetails as oi, WithReferringDocuments as ol, FieldChange as om, ObjectInputMemberProps as on, HistoryStore as oo, DocumentActionCustomDialogComponentProps as op, ArrayOfObjectsInput as or, ArrayFieldProps as os, PreparedConfig as ot, HotkeysProps$1 as ou, ToolLink as ov, documentIdEquals as ow, UserListWithPermissionsHookValue as ox, useColorScheme as oy, createPlugin as p, useOnlyHasVersions as pC, DocumentPairLoadedEvent as pS, AgentVersionDisplay as pT, UpsellDialogViewed as p_, useDocumentPairPermissions as pa, CommentsTextSelectionItem as pb, ResolvedUploader as pc, BooleanFormNode as pd, isPausedCardinalityOneRelease as pf, TagValue as pg, FieldValueError as ph, ResourceCache as pi, ImperativeToast as pl, DiffStringSegment as pm, PrimitiveMemberItemProps as pn, ParsedTimeRef as po, DuplicateActionProps as pp, FieldActionsProps as pr, ObjectFieldProps as ps, Source as pt, CapabilityGate as pu, NavbarAction as pv, isDraft as pw, useUnitFormatter as px, StudioThemeColorSchemeKey as py, DocumentLanguageFilterResolver as q, ReleaseId as qC, useChangeIndicatorsReportedValues as qS, FormDecPatch as q_, operationEvents as qa, LocalePluginOptions as qb, RebasePatchMsg as qc, ErrorState as qd, getSchemaTypeTitle as qf, CommentInlineHighlightSpan as qg, createUserColorManager as qh, UserStore as qi, PreviewLayoutKey as ql, ChunkType as qm, DateInput as qn, isNumberInputProps as qo, noop as qp, PresenceOverlay as qr, PrimitiveItemProps as qs, DocumentFieldActionsResolverContext as qt, getExpandOperations as qu, SearchFactoryOptions as qv, createConnectionStatusStore as qw, useNumberFormat as qx, CommentContext as qy, useConfigContextFromSource as r, Reported as rC, useFormattedDuration as rS, createAuthStore as rT, ErrorMessage as r_, useTemplatePermissionsFromHookFactory as ra, CommentReactionItem as rb, ArrayInputMoveItemEvent as rc, ArrayOfPrimitivesItemMember as rd, escapeField as rf, useStudioFeedbackTags as rg, ItemDiff$1 as rh, Position as ri, unset as rl, FromToArrowDirection as rm, ObjectMembers as rn, TimelineStore as ro, useScheduleAction as rp, VirtualizerScrollInstanceProvider as rr, RenderBlockActionsCallback as rs, PartialContext as rt, InsufficientPermissionsMessage as ru, FormSetPatch as rv, collate as rw, ValidationLocaleResourceKeys as rx, ColorSchemeLocalStorageProvider as ry, createSourceFromConfig as s, ConnectorContextValue as sC, useDocumentOperationEvent as sS, HandleCallbackResult as sT, useWorkspace as s_, DocumentValuePermissionsOptions as sa, CommentTaskCreatePayload as sb, ImageInputProps as sc, FieldSetMember as sd, _isSanityDocumentTypeDefinition as sf, UseInStudioFeedbackReturn as sg, ReferenceDiff as sh, ReportedRegionWithRect as si, AvatarSkeleton as sl, FallbackDiff as sm, MemberFieldSet as sn, HistoryStoreOptions as so, DocumentActionDescription as sp, ArrayOfObjectsFunctions as sr, ArrayOfPrimitivesFieldProps as ss, ReleaseActionsResolver as st, serializeError as su, ToolLinkProps as sv, getDraftId as sw, UserListWithPermissionsOptions as sx, useColorSchemeInternalValue as sy, ActiveWorkspaceMatcherContextValue as t, useTrackerStoreReporter as tC, FormattedDuration as tS, CreateAuthStoreOptions as tT, WorkspaceLoaderBoundary as t_, getTemplatePermissions as ta, CommentPath as tb, ArrayInputCopyEvent as tc, ArrayOfObjectsItemMember as td, uncaughtErrorHandler as tf, FeedbackContext as tg, FromToIndex as th, FormNodePresence as ti, set as tl, GroupChange as tm, useDocumentForm as tn, useTimelineSelector as to, GetHookCollectionStateProps as tp, ArrayOfOptionsInput as tr, FormBuilderMarkersComponent as ts, NewDocumentOptionsContext as tt, LoadingBlock as tu, FormPatchOrigin as tv, SystemBundle as tw, StaticLocaleResourceBundle as tx, Filters as ty, prepareConfig as u, ChangeFieldWrapper as uC, useDocumentIdStack as uS, AuthProvider as uT, UpsellDialogDismissed as u_, DocumentPairPermissionsOptions as ua, CommentUpdateOperationOptions as ub, StudioFileInput as uc, ArrayOfObjectsFormNode as ud, CardinalityOneRelease as uf, DynamicFeedbackTags as ug, StringSegmentChanged$1 as uh, DocumentPreviewPresenceProps as ui, LegacyLayerProvider as ul, DiffTooltipProps as um, MemberFieldProps as un, SelectionState as uo, DocumentActionModalDialogProps as up, useHoveredField as ur, FieldCommentsProps as us, ScheduledPublishingPluginOptions as ut, ErrorActions as uu, ActiveToolLayoutProps as uv, getVersionFromId as uw, FormattableMeasurementUnit as ux, useColorSchemeValue as uy, ConfigResolutionError as v, DocumentPreviewStoreOptions as vC, ListenerEvent as vS, createSanityMediaLibraryFileSource as vT, StudioLayout as v_, GrantsStore as va, CommentsAuthoringPathProvider as vb, UploaderResolver as vc, NodeDiffProps as vd, isNonNullable as vf, useTelemetryConsent as vg, BaseEvent as vh, useDocumentPresence as vi, StatusButton as vl, FieldPreviewComponent as vm, ArrayOfObjectsInputMember as vn, Transaction as vo, useSetPerspective as vp, GetFormValueProvider as vr, ArrayOfPrimitivesInputProps as vs, Workspace as vt, isPublishedPerspective as vu, StudioLogo as vv, isVersionId as vw, DEFAULT_MAX_RECURSION_DEPTH as vx, MatchWorkspaceOptions as vy, AppsOptions as w, DocumentAvailability as wC, ReconnectEvent as wS, StudioAnnouncementsCard as w_, isNewDocument as wa, TranslateComponentMap as wb, FormProviderProps as wc, StringFormNode as wd, EMPTY_ARRAY as wf, ScrollEventHandler as wg, DocumentVersionEventType as wh, useHistoryStore as wi, RelativeTime as wl, TIMELINE_ITEM_I18N_KEY_MAPPING as wm, TelephoneInput as wn, WithVersion as wo, PerspectiveNotWriteableReason as wp, useDocumentDivergences as wr, InputProps as ws, ReleaseActionDescription as wt, getReleaseIdFromReleaseDocumentId as wu, SearchProvider as wv, getDocumentVariantType as ww, defaultTemplateForType as wx, ValidateWorkspaceOptions as wy, ConfigPropertyErrorOptions as x, ApiConfig as xC, IdPair as xS, isValidAnnouncementRole as x_, useInitialValue as xa, ValidateDocumentOptions as xb, StudioCrossDatasetReferenceInput as xc, ObjectFormNode as xd, getReferencePaths as xf, isDev as xg, DeleteDocumentGroupEvent as xh, useDocumentPreviewStore as xi, RovingFocusNavigationType as xl, DiffErrorBoundaryState as xm, UrlInputProps as xn, MutationResult as xo, useExcludedPerspective as xp, FormValueProvider as xr, ComplexElementProps as xs, WorkspaceOptions as xt, isReleasePerspective as xu, PartialIndexSettings as xv, systemBundles as xw, resolveInitialObjectValue as xx, WorkspacesProvider as xy, ConfigResolutionErrorOptions as y, ObserveForPreviewFn as yC, MutationPerformanceEvent as yS, createSanityMediaLibraryImageSource as yT, StudioLayoutComponent as y_, PermissionCheckResult as ya, useWorkspaceSchemaId as yb, StudioReferenceInput as yc, NumberFormNode as yd, isArray as yf, ConsentStatus as yg, CreateDocumentVersionEvent as yh, useComlinkStore as yi, StatusButtonProps as yl, DiffErrorBoundary as ym, ArrayOfObjectsMemberProps as yn, DocumentVersion as yo, usePerspective as yp, useGetFormValue as yr, BaseInputProps as ys, WorkspaceHiddenContext as yt, isReleaseScheduledOrScheduling as yu, SearchDialog as yv, newDraftFrom as yw, Serializeable as yx, MatchWorkspaceResult as yy, DocumentActionsVersionType as z, VersionInlineBadge as zC, useDataset as zS, useCopyPaste as z_, InitialValueMsg as za, removeUndefinedLocaleResources as zb, useReferenceInputOptions as zc, useNavigateToCanvasDoc as zd, IsLastPaneProvider as zf, CommentsOnboardingContextValue as zg, isPublishDocumentVersionEvent as zh, SESSION_ID as zi, DefaultPreview as zl, Annotation as zm, NumberInput as zn, SanityDefaultPreview as zo, resolveDiffComponent as zp, FormFieldSet as zr, RenderInputCallback as zs, DocumentFieldActionGroup as zt, isDocumentLimitError as zu, SearchOperatorParams as zv, CONNECTING as zw, useReviewChanges as zx, CommentsSelectedPath as zy };
@@ -22,18 +22,7 @@ import "@sanity/color";
22
22
  import "color2k";
23
23
  import "styled-components";
24
24
  import "lodash-es/isString.js";
25
- import "dataloader";
26
- import "./version.js";
27
25
  import "@sanity/telemetry/react";
28
- import "date-fns/differenceInDays";
29
- import "date-fns/differenceInHours";
30
- import "date-fns/differenceInMinutes";
31
- import "date-fns/differenceInMonths";
32
- import "date-fns/differenceInSeconds";
33
- import "date-fns/differenceInWeeks";
34
- import "date-fns/differenceInYears";
35
- import "lodash-es/sortBy.js";
36
- import "@sanity/schema/_internal";
37
26
  import "@portabletext/editor";
38
27
  import "@sanity/util/paths";
39
28
  import "./index.js";
@@ -44,6 +33,7 @@ import "lodash-es/orderBy.js";
44
33
  import "lodash-es/uniq.js";
45
34
  import "lodash-es/xor.js";
46
35
  import "@sanity/diff-patch";
36
+ import "./version.js";
47
37
  import "@sanity/id-utils";
48
38
  import "sanity/router";
49
39
  import "date-fns/addHours";
@@ -56,6 +46,13 @@ import "react-fast-compare";
56
46
  import "lodash-es/startCase.js";
57
47
  import "react-focus-lock";
58
48
  import "lodash-es/debounce.js";
49
+ import "date-fns/differenceInDays";
50
+ import "date-fns/differenceInHours";
51
+ import "date-fns/differenceInMinutes";
52
+ import "date-fns/differenceInMonths";
53
+ import "date-fns/differenceInSeconds";
54
+ import "date-fns/differenceInWeeks";
55
+ import "date-fns/differenceInYears";
59
56
  import "@sanity/diff";
60
57
  import "mendoza";
61
58
  import "@portabletext/sanity-bridge";
@@ -66,7 +63,9 @@ import "lodash-es/intersection.js";
66
63
  import "json-stable-stringify";
67
64
  import "shallow-equals";
68
65
  import "scroll-into-view-if-needed";
66
+ import "@sanity/schema/_internal";
69
67
  import "lodash-es/groupBy.js";
68
+ import "lodash-es/sortBy.js";
70
69
  import "lodash-es/compact.js";
71
70
  import "lodash-es/keyBy.js";
72
71
  import "lodash-es/partition.js";
@@ -110,9 +109,10 @@ import "lodash-es/values.js";
110
109
  import "@sanity/comlink";
111
110
  import "lodash-es/omit.js";
112
111
  import "@isaacs/ttlcache";
112
+ import "dataloader";
113
+ import "raf";
113
114
  import "groq-js";
114
115
  import "use-sync-external-store/with-selector";
115
- import "raf";
116
116
  import "lodash-es/escapeRegExp.js";
117
117
  import "lodash-es/isEmpty.js";
118
118
  import "react-dom/server";
@@ -22,18 +22,7 @@ import "@sanity/color";
22
22
  import "color2k";
23
23
  import "styled-components";
24
24
  import "lodash-es/isString.js";
25
- import "dataloader";
26
- import "./version.js";
27
25
  import "@sanity/telemetry/react";
28
- import "date-fns/differenceInDays";
29
- import "date-fns/differenceInHours";
30
- import "date-fns/differenceInMinutes";
31
- import "date-fns/differenceInMonths";
32
- import "date-fns/differenceInSeconds";
33
- import "date-fns/differenceInWeeks";
34
- import "date-fns/differenceInYears";
35
- import "lodash-es/sortBy.js";
36
- import "@sanity/schema/_internal";
37
26
  import "@portabletext/editor";
38
27
  import "@sanity/util/paths";
39
28
  import "./index.js";
@@ -44,6 +33,7 @@ import "lodash-es/orderBy.js";
44
33
  import "lodash-es/uniq.js";
45
34
  import "lodash-es/xor.js";
46
35
  import "@sanity/diff-patch";
36
+ import "./version.js";
47
37
  import "@sanity/id-utils";
48
38
  import "sanity/router";
49
39
  import "date-fns/addHours";
@@ -56,6 +46,13 @@ import "react-fast-compare";
56
46
  import "lodash-es/startCase.js";
57
47
  import "react-focus-lock";
58
48
  import "lodash-es/debounce.js";
49
+ import "date-fns/differenceInDays";
50
+ import "date-fns/differenceInHours";
51
+ import "date-fns/differenceInMinutes";
52
+ import "date-fns/differenceInMonths";
53
+ import "date-fns/differenceInSeconds";
54
+ import "date-fns/differenceInWeeks";
55
+ import "date-fns/differenceInYears";
59
56
  import "@sanity/diff";
60
57
  import "mendoza";
61
58
  import "@portabletext/sanity-bridge";
@@ -66,7 +63,9 @@ import "lodash-es/intersection.js";
66
63
  import "json-stable-stringify";
67
64
  import "shallow-equals";
68
65
  import "scroll-into-view-if-needed";
66
+ import "@sanity/schema/_internal";
69
67
  import "lodash-es/groupBy.js";
68
+ import "lodash-es/sortBy.js";
70
69
  import "lodash-es/compact.js";
71
70
  import "lodash-es/keyBy.js";
72
71
  import "lodash-es/partition.js";
@@ -110,9 +109,10 @@ import "lodash-es/values.js";
110
109
  import "@sanity/comlink";
111
110
  import "lodash-es/omit.js";
112
111
  import "@isaacs/ttlcache";
112
+ import "dataloader";
113
+ import "raf";
113
114
  import "groq-js";
114
115
  import "use-sync-external-store/with-selector";
115
- import "raf";
116
116
  import "lodash-es/escapeRegExp.js";
117
117
  import "lodash-es/isEmpty.js";
118
118
  import "react-dom/server";
@@ -22,18 +22,7 @@ import "@sanity/color";
22
22
  import "color2k";
23
23
  import "styled-components";
24
24
  import "lodash-es/isString.js";
25
- import "dataloader";
26
- import "./version.js";
27
25
  import "@sanity/telemetry/react";
28
- import "date-fns/differenceInDays";
29
- import "date-fns/differenceInHours";
30
- import "date-fns/differenceInMinutes";
31
- import "date-fns/differenceInMonths";
32
- import "date-fns/differenceInSeconds";
33
- import "date-fns/differenceInWeeks";
34
- import "date-fns/differenceInYears";
35
- import "lodash-es/sortBy.js";
36
- import "@sanity/schema/_internal";
37
26
  import "@portabletext/editor";
38
27
  import "@sanity/util/paths";
39
28
  import "./index.js";
@@ -44,6 +33,7 @@ import "lodash-es/orderBy.js";
44
33
  import "lodash-es/uniq.js";
45
34
  import "lodash-es/xor.js";
46
35
  import "@sanity/diff-patch";
36
+ import "./version.js";
47
37
  import "@sanity/id-utils";
48
38
  import "sanity/router";
49
39
  import "date-fns/addHours";
@@ -56,6 +46,13 @@ import "react-fast-compare";
56
46
  import "lodash-es/startCase.js";
57
47
  import "react-focus-lock";
58
48
  import "lodash-es/debounce.js";
49
+ import "date-fns/differenceInDays";
50
+ import "date-fns/differenceInHours";
51
+ import "date-fns/differenceInMinutes";
52
+ import "date-fns/differenceInMonths";
53
+ import "date-fns/differenceInSeconds";
54
+ import "date-fns/differenceInWeeks";
55
+ import "date-fns/differenceInYears";
59
56
  import "@sanity/diff";
60
57
  import "mendoza";
61
58
  import "@portabletext/sanity-bridge";
@@ -66,7 +63,9 @@ import "lodash-es/intersection.js";
66
63
  import "json-stable-stringify";
67
64
  import "shallow-equals";
68
65
  import "scroll-into-view-if-needed";
66
+ import "@sanity/schema/_internal";
69
67
  import "lodash-es/groupBy.js";
68
+ import "lodash-es/sortBy.js";
70
69
  import "lodash-es/compact.js";
71
70
  import "lodash-es/keyBy.js";
72
71
  import "lodash-es/partition.js";
@@ -110,9 +109,10 @@ import "lodash-es/values.js";
110
109
  import "@sanity/comlink";
111
110
  import "lodash-es/omit.js";
112
111
  import "@isaacs/ttlcache";
112
+ import "dataloader";
113
+ import "raf";
113
114
  import "groq-js";
114
115
  import "use-sync-external-store/with-selector";
115
- import "raf";
116
116
  import "lodash-es/escapeRegExp.js";
117
117
  import "lodash-es/isEmpty.js";
118
118
  import "react-dom/server";