sanity 6.6.0-next.73 → 6.6.0-next.74

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.
@@ -6,6 +6,7 @@ import { AvatarPosition, AvatarProps, AvatarSize, AvatarStatus, BadgeProps, Badg
6
6
  import { FlatNamespace, KeyPrefix, Namespace, TFunction, TFunction as TFunction$1, i18n as i18n$1 } from "i18next";
7
7
  import { MonoTypeOperatorFunction, Observable, OperatorFunction, Subject } from "rxjs";
8
8
  import { IntentLinkProps, IntentParameters, Router, RouterState, SearchParam } from "sanity/router";
9
+ import "quick-lru";
9
10
  import { ScrollToOptions } from "@tanstack/react-virtual";
10
11
  import { DRAFTS_FOLDER, DraftId, PublishedId, VERSION_FOLDER, getDraftId, getPublishedId, getVersionFromId, getVersionId, isDraftId, isPublishedId, isVersionId } from "@sanity/client/csm";
11
12
  import { Mutation } from "@sanity/mutator";
@@ -13,13 +14,16 @@ import { CanvasResource, FrameMessages, MediaResource, StudioResource, WindowMes
13
14
  import { DocumentHandle } from "@sanity/sdk";
14
15
  import { DocumentDivergencesContextValue, DocumentLimitUpsellContextValue, FeedbackContext, FeedbackContextValue, FieldActionsContextValue, HoveredFieldContextValue, LocaleContextValue, SchedulesContext, SingleDocReleaseContextValue } from "sanity/_singletons";
15
16
  import { FallbackNs } from "react-i18next";
17
+ import "@sanity/util/concurrency-limiter";
16
18
  import { BrowserHistory, HashHistory, History, MemoryHistory } from "history";
17
19
  import { RootTheme, ThemeColorSchemeKey as ThemeColorSchemeKey$1 } from "@sanity/ui/theme";
18
20
  import { EditorSelection, HotkeyOptions, InvalidValueResolution, OnCopyFn, OnPasteResultOrPromise, PasteData, Patch, PortableTextEditor, RangeDecoration, RangeDecorationOnMovedDetails, RenderBlockFunction } from "@portabletext/editor";
19
21
  import { ColorHueKey, ColorTintKey, ColorTints } from "@sanity/color";
20
22
  import { Subscriber } from "nano-pubsub";
21
23
  import { ArrayDiff, BooleanDiff, Diff, ItemDiff, NullDiff, NumberDiff, ObjectDiff, StringDiff, StringSegmentChanged, StringSegmentUnchanged, TypeChangeDiff } from "@sanity/diff";
24
+ import "@sanity/icons";
22
25
  import { CSSProperties as CSSProperties$1, ExecutionProps } from "styled-components";
26
+ import "@sanity/schema/_internal";
23
27
  import { ThrottleSettings } from "lodash-es/throttle.js";
24
28
  import { DEFAULT_ANNOTATIONS, DEFAULT_DECORATORS } from "@sanity/schema";
25
29
  import { SanityImageSource } from "@sanity/asset-utils";
@@ -128,7 +132,8 @@ type AgentVersionDisplay = {
128
132
  * @internal
129
133
  */
130
134
  declare function useAgentVersionDisplay(versionIds: string[], activeBundleId?: string): {
131
- /** Version IDs with other users' agent bundles removed. */filteredVersionIds: string[];
135
+ /** Version IDs with other users' agent bundles removed. */
136
+ filteredVersionIds: string[];
132
137
  /**
133
138
  * Returns display overrides for a version document ID if it's the current
134
139
  * user's agent bundle, or `null` for all other versions.
@@ -263,13 +268,7 @@ type CorsCheckResult = {
263
268
  */
264
269
  type CorsProbeOutcome = CorsCheckResult | 'project-not-found';
265
270
  /** @internal */
266
- declare function WorkspacesProvider({
267
- config,
268
- children,
269
- basePath,
270
- LoadingComponent,
271
- primaryProjectId
272
- }: WorkspacesProviderProps): import("react").JSX.Element;
271
+ declare function WorkspacesProvider({ config, children, basePath, LoadingComponent, primaryProjectId }: WorkspacesProviderProps): import("react").JSX.Element;
273
272
  /**
274
273
  * A diagnosed request failure — the reason a request the studio can't recover
275
274
  * from locally failed. Produced by {@link RequestFailureProbe} from an
@@ -533,7 +532,8 @@ interface AuthState {
533
532
  * @hidden
534
533
  */
535
534
  type LoginComponentProps = {
536
- projectId: string; /** @deprecated use redirectPath instead */
535
+ projectId: string;
536
+ /** @deprecated use redirectPath instead */
537
537
  basePath: string;
538
538
  redirectPath?: string;
539
539
  /**
@@ -544,7 +544,8 @@ type LoginComponentProps = {
544
544
  onChooseAnotherWorkspace?: () => void;
545
545
  } | {
546
546
  projectId: string;
547
- redirectPath: string; /** @deprecated use redirectPath instead */
547
+ redirectPath: string;
548
+ /** @deprecated use redirectPath instead */
548
549
  basePath?: string;
549
550
  /**
550
551
  * Invoked when the user chooses to switch workspaces from the login screen
@@ -675,20 +676,7 @@ interface RequestFailureDiagnostics {
675
676
  /**
676
677
  * @internal
677
678
  */
678
- declare function _createAuthStore({
679
- clientFactory: clientFactoryOption,
680
- projectId,
681
- dataset,
682
- apiHost,
683
- loginMethod,
684
- getSessionId,
685
- consumeHashToken,
686
- observeWorkbenchToken,
687
- refreshWorkbenchToken,
688
- getRequestErrorHandler,
689
- getRequestFailureDiagnostics,
690
- ...providerOptions
691
- }: AuthStoreOptions): AuthStore;
679
+ declare function _createAuthStore({ clientFactory: clientFactoryOption, projectId, dataset, apiHost, loginMethod, getSessionId, consumeHashToken, observeWorkbenchToken, refreshWorkbenchToken, getRequestErrorHandler, getRequestFailureDiagnostics, ...providerOptions }: AuthStoreOptions): AuthStore;
692
680
  /**
693
681
  * Public options for `createAuthStore`. The `getSessionId`, `consumeHashToken`,
694
682
  * `observeWorkbenchToken` and `refreshWorkbenchToken` dependencies are wired
@@ -711,10 +699,7 @@ interface MockAuthStoreOptions {
711
699
  *
712
700
  * @internal
713
701
  */
714
- declare function createMockAuthStore({
715
- client,
716
- currentUser
717
- }: MockAuthStoreOptions): AuthStore;
702
+ declare function createMockAuthStore({ client, currentUser }: MockAuthStoreOptions): AuthStore;
718
703
  /** @internal */
719
704
  declare function getProviderTitle(provider?: string): string | undefined;
720
705
  /**
@@ -772,9 +757,7 @@ interface ConnectionStatusStoreOptions {
772
757
  *
773
758
  * @internal
774
759
  */
775
- declare function createConnectionStatusStore({
776
- bifur
777
- }: ConnectionStatusStoreOptions): ConnectionStatusStore;
760
+ declare function createConnectionStatusStore({ bifur }: ConnectionStatusStoreOptions): ConnectionStatusStore;
778
761
  /** @internal */
779
762
  type BetaBadgeProps = Omit<BadgeProps, 'mode' | 'tone'>;
780
763
  /** @internal */
@@ -964,9 +947,7 @@ declare function isDraft(document: SanityDocumentLike): boolean;
964
947
  *
965
948
  * @internal
966
949
  */
967
- declare function getIdPair(id: string, {
968
- version
969
- }?: {
950
+ declare function getIdPair(id: string, { version }?: {
970
951
  version?: string;
971
952
  }): {
972
953
  draftId: DraftId;
@@ -1188,16 +1169,8 @@ type ReleaseAvatarIconProps = {
1188
1169
  release?: never;
1189
1170
  releaseType?: never;
1190
1171
  };
1191
- declare const ReleaseAvatarIcon: ({
1192
- tone,
1193
- release,
1194
- releaseType
1195
- }: ReleaseAvatarIconProps) => import("react").JSX.Element;
1196
- declare function ReleaseAvatar({
1197
- fontSize,
1198
- padding,
1199
- ...iconProps
1200
- }: ReleaseAvatarIconProps & {
1172
+ declare const ReleaseAvatarIcon: ({ tone, release, releaseType }: ReleaseAvatarIconProps) => import("react").JSX.Element;
1173
+ declare function ReleaseAvatar({ fontSize, padding, ...iconProps }: ReleaseAvatarIconProps & {
1201
1174
  fontSize?: number;
1202
1175
  padding?: number;
1203
1176
  }): React.JSX.Element;
@@ -1223,10 +1196,7 @@ declare function ReleaseTitle(props: ReleaseTitleProps): ReactNode;
1223
1196
  /**
1224
1197
  * @internal
1225
1198
  */
1226
- declare const VersionInlineBadge: ({
1227
- children,
1228
- $tone
1229
- }: PropsWithChildren<{
1199
+ declare const VersionInlineBadge: ({ children, $tone }: PropsWithChildren<{
1230
1200
  $tone?: BadgeTone;
1231
1201
  }>) => import("react").JSX.Element;
1232
1202
  /**
@@ -1500,9 +1470,7 @@ interface DocumentPreviewStoreOptions {
1500
1470
  client: SanityClient;
1501
1471
  }
1502
1472
  /** @internal */
1503
- declare function createDocumentPreviewStore({
1504
- client
1505
- }: DocumentPreviewStoreOptions): DocumentPreviewStore;
1473
+ declare function createDocumentPreviewStore({ client }: DocumentPreviewStoreOptions): DocumentPreviewStore;
1506
1474
  interface ReleasesMetadata {
1507
1475
  /**
1508
1476
  * The number of documents with the release version as a prefix
@@ -1585,9 +1553,7 @@ interface useDocumentVersionTypeSortedListState {
1585
1553
  *
1586
1554
  * @beta
1587
1555
  */
1588
- declare const useDocumentVersionTypeSortedList: ({
1589
- documentId
1590
- }: {
1556
+ declare const useDocumentVersionTypeSortedList: ({ documentId }: {
1591
1557
  documentId: string;
1592
1558
  }) => useDocumentVersionTypeSortedListState;
1593
1559
  /**
@@ -1608,9 +1574,7 @@ declare const useIsReleaseActive: () => boolean;
1608
1574
  *
1609
1575
  * @beta
1610
1576
  */
1611
- declare const useOnlyHasVersions: ({
1612
- documentId
1613
- }: {
1577
+ declare const useOnlyHasVersions: ({ documentId }: {
1614
1578
  documentId: string;
1615
1579
  }) => boolean;
1616
1580
  interface VersionOperationsValue {
@@ -1661,14 +1625,7 @@ interface ChangeConnectorRootProps {
1661
1625
  onSetFocus: (path: Path) => void;
1662
1626
  }
1663
1627
  /** @internal */
1664
- declare function ChangeConnectorRoot({
1665
- children,
1666
- className,
1667
- isReviewChangesOpen,
1668
- onOpenReviewChanges,
1669
- onSetFocus,
1670
- ...restProps
1671
- }: ChangeConnectorRootProps): import("react").JSX.Element;
1628
+ declare function ChangeConnectorRoot({ children, className, isReviewChangesOpen, onOpenReviewChanges, onSetFocus, ...restProps }: ChangeConnectorRootProps): import("react").JSX.Element;
1672
1629
  /** @internal */
1673
1630
  type Reported<Value> = [string, Value];
1674
1631
  /** @internal */
@@ -1838,18 +1795,22 @@ declare function useDateTimeFormat(options?: UseDateTimeFormatOptions): Intl.Dat
1838
1795
  *
1839
1796
  * @beta
1840
1797
  */
1841
- declare function useDialogStack({
1842
- path
1843
- }?: {
1798
+ declare function useDialogStack({ path }?: {
1844
1799
  path?: Path;
1845
1800
  }): {
1846
- /** Unique ID for this dialog instance */dialogId: string; /** The current top dialog entry */
1847
- topEntry: import("sanity/_singletons").DialogStackEntry | null; /** The full stack of dialog entries (each has id and path) */
1848
- stack: import("sanity/_singletons").DialogStackEntry[]; /** Check if this dialog is on top */
1849
- isTop: boolean; /** Close dialogs */
1801
+ /** Unique ID for this dialog instance */
1802
+ dialogId: string;
1803
+ /** The current top dialog entry */
1804
+ topEntry: import("sanity/_singletons").DialogStackEntry | null;
1805
+ /** The full stack of dialog entries (each has id and path) */
1806
+ stack: import("sanity/_singletons").DialogStackEntry[];
1807
+ /** Check if this dialog is on top */
1808
+ isTop: boolean;
1809
+ /** Close dialogs */
1850
1810
  close: (options?: {
1851
1811
  toParent?: boolean;
1852
- }) => void; /** Navigate to a specific path, updating the form path and cleaning up the stack */
1812
+ }) => void;
1813
+ /** Navigate to a specific path, updating the form path and cleaning up the stack */
1853
1814
  navigateTo: (path: Path) => void;
1854
1815
  };
1855
1816
  /**
@@ -2024,16 +1985,6 @@ interface ListenerSequenceState {
2024
1985
  */
2025
1986
  buffer: MutationEvent[];
2026
1987
  }
2027
- /**
2028
- * Takes an input observable of listener events that might arrive out of order, and emits them in sequence
2029
- * If we receive mutation events that doesn't line up in [previousRev, resultRev] pairs we'll put them in a buffer and
2030
- * check if we have an unbroken chain every time we receive a new event
2031
- *
2032
- * If the buffer grows beyond `maxBufferSize`, or if `resolveChainDeadline` milliseconds passes before the chain resolves
2033
- * an OutOfSyncError will be thrown on the stream
2034
- *
2035
- * @internal
2036
- */
2037
1988
  declare class OutOfSyncError extends Error {
2038
1989
  /**
2039
1990
  * Attach state to the error for debugging/reporting
@@ -2188,12 +2139,7 @@ interface DocumentIdStack {
2188
2139
  *
2189
2140
  * @internal
2190
2141
  */
2191
- declare function useDocumentIdStack({
2192
- displayed,
2193
- documentId,
2194
- editState,
2195
- strict
2196
- }: Options$2): DocumentIdStack;
2142
+ declare function useDocumentIdStack({ displayed, documentId, editState, strict }: Options$2): DocumentIdStack;
2197
2143
  /**
2198
2144
  * @internal
2199
2145
  * `version` accepts either a plain version name (release/bundle) or a {@link DocumentPairTarget}
@@ -2276,12 +2222,7 @@ interface Options$1 extends StrictVersionLayeringOptions {
2276
2222
  /**
2277
2223
  * @internal
2278
2224
  */
2279
- declare function useFilteredReleases({
2280
- displayed,
2281
- documentId,
2282
- strict,
2283
- historyVersion
2284
- }: Options$1): FilterReleases;
2225
+ declare function useFilteredReleases({ displayed, documentId, strict, historyVersion }: Options$1): FilterReleases;
2285
2226
  /**
2286
2227
  * Options for the duration formatter
2287
2228
  *
@@ -2347,11 +2288,7 @@ interface GlobalCopyPasteElementHandler {
2347
2288
  focusPath?: Path;
2348
2289
  }
2349
2290
  /** @internal */
2350
- declare function useGlobalCopyPasteElementHandler({
2351
- value,
2352
- element,
2353
- focusPath
2354
- }: GlobalCopyPasteElementHandler): void;
2291
+ declare function useGlobalCopyPasteElementHandler({ value, element, focusPath }: GlobalCopyPasteElementHandler): void;
2355
2292
  /**
2356
2293
  * Options for the `useListFormat` hook
2357
2294
  *
@@ -2419,15 +2356,7 @@ interface UseManageFavoriteProps extends DocumentHandle {
2419
2356
  *
2420
2357
  * @internal
2421
2358
  */
2422
- declare function useManageFavorite({
2423
- documentId,
2424
- documentType,
2425
- projectId,
2426
- dataset,
2427
- resourceId: paramResourceId,
2428
- resourceType,
2429
- schemaName
2430
- }: UseManageFavoriteProps): ManageFavorite;
2359
+ declare function useManageFavorite({ documentId, documentType, projectId, dataset, resourceId: paramResourceId, resourceType, schemaName }: UseManageFavoriteProps): ManageFavorite;
2431
2360
  /**
2432
2361
  * Options for the `useNumberFormat` hook
2433
2362
  *
@@ -2651,7 +2580,8 @@ interface TemplateFieldDefinition {
2651
2580
  }
2652
2581
  /** @public */
2653
2582
  type TemplateArrayFieldDefinition = TemplateFieldDefinition & {
2654
- type: 'array'; /** Defines items that are definition of. See {@link TemplateReferenceTarget} and {@link TypeTarget} */
2583
+ type: 'array';
2584
+ /** Defines items that are definition of. See {@link TemplateReferenceTarget} and {@link TypeTarget} */
2655
2585
  of: (TemplateReferenceTarget | TypeTarget)[];
2656
2586
  };
2657
2587
  /**
@@ -2755,21 +2685,16 @@ declare const DEFAULT_MAX_RECURSION_DEPTH = 10;
2755
2685
  * @internal
2756
2686
  */
2757
2687
  declare const RESOLVE_INITIAL_VALUE_TIMEOUT_MS = 10000;
2758
- type ResolveInitialValueForType = <TParams extends Record<string, unknown>>(
2759
- /**
2688
+ type ResolveInitialValueForType = <TParams extends Record<string, unknown>>( /**
2760
2689
  * This is the name of the document.
2761
- */
2762
-
2763
- type: SchemaType,
2690
+ */ type: SchemaType,
2764
2691
  /**
2765
2692
  * Params is a sanity context object passed to every initial value function.
2766
2693
  */
2767
-
2768
2694
  params: TParams,
2769
2695
  /**
2770
2696
  * Maximum recursion depth (default 9).
2771
2697
  */
2772
-
2773
2698
  maxDepth: number, context: InitialValueResolverContext, options?: Options) => Promise<any>;
2774
2699
  /**
2775
2700
  * Resolve initial value for the given schema type (recursively)
@@ -2912,66 +2837,121 @@ declare const Rule: RuleClass;
2912
2837
  * @hidden
2913
2838
  */
2914
2839
  declare const studioLocaleStrings: {
2915
- /** "Configuration issue" header */'about-dialog.configuration-issue.header': string; /** Message shown if sanity.cli.ts is missing deployment.appId */
2916
- 'about-dialog.configuration-issue.missing-appid': string; /** "View documentation" link for auto-updating studios */
2917
- 'about-dialog.configuration-issue.missing-appid.view-documentation': string; /** "Disabled" status for auto-updates in About-dialog */
2918
- 'about-dialog.version-info.auto-updates.disabled': string; /** "Enabled" status for auto-updates in About-dialog */
2919
- 'about-dialog.version-info.auto-updates.enabled': string; /** @deprecated "Auto Updates" status header in About-dialog */
2920
- 'about-dialog.version-info.auto-updates.header': string; /** "How to enable" next to Disabled state for Auto updates in version info dialog */
2921
- 'about-dialog.version-info.auto-updates.how-to-enable': string; /** "Manage version" link text */
2922
- 'about-dialog.version-info.auto-updates.manage-version': string; /** Text displayed on the "Copy to clipboard"-button after clicked */
2923
- 'about-dialog.version-info.copy-to-clipboard-button.copied-text': string; /** "Copy to Clipboard" button text for copying version details from About-dialog */
2924
- 'about-dialog.version-info.copy-to-clipboard-button.text': string; /** "Current version" header in version info dialog */
2925
- 'about-dialog.version-info.current-version.header': string; /** @deprecated "How to upgrade" link text */
2926
- 'about-dialog.version-info.how-to-upgrade': string; /** "Latest version" header in version info dialog */
2927
- 'about-dialog.version-info.latest-version.header': string; /** Info text when auto updates is enabled and a new version is available */
2840
+ /** "Configuration issue" header */
2841
+ 'about-dialog.configuration-issue.header': string;
2842
+ /** Message shown if sanity.cli.ts is missing deployment.appId */
2843
+ 'about-dialog.configuration-issue.missing-appid': string;
2844
+ /** "View documentation" link for auto-updating studios */
2845
+ 'about-dialog.configuration-issue.missing-appid.view-documentation': string;
2846
+ /** "Disabled" status for auto-updates in About-dialog */
2847
+ 'about-dialog.version-info.auto-updates.disabled': string;
2848
+ /** "Enabled" status for auto-updates in About-dialog */
2849
+ 'about-dialog.version-info.auto-updates.enabled': string;
2850
+ /** @deprecated "Auto Updates" status header in About-dialog */
2851
+ 'about-dialog.version-info.auto-updates.header': string;
2852
+ /** "How to enable" next to Disabled state for Auto updates in version info dialog */
2853
+ 'about-dialog.version-info.auto-updates.how-to-enable': string;
2854
+ /** "Manage version" link text */
2855
+ 'about-dialog.version-info.auto-updates.manage-version': string;
2856
+ /** Text displayed on the "Copy to clipboard"-button after clicked */
2857
+ 'about-dialog.version-info.copy-to-clipboard-button.copied-text': string;
2858
+ /** "Copy to Clipboard" button text for copying version details from About-dialog */
2859
+ 'about-dialog.version-info.copy-to-clipboard-button.text': string;
2860
+ /** "Current version" header in version info dialog */
2861
+ 'about-dialog.version-info.current-version.header': string;
2862
+ /** @deprecated "How to upgrade" link text */
2863
+ 'about-dialog.version-info.how-to-upgrade': string;
2864
+ /** "Latest version" header in version info dialog */
2865
+ 'about-dialog.version-info.latest-version.header': string;
2866
+ /** Info text when auto updates is enabled and a new version is available */
2928
2867
  'about-dialog.version-info.new-auto-update-version-available': string;
2929
2868
  /** "New version" header in version info dialog - Note that this is not necessary a *higher* version compared to current:
2930
2869
  * It's a new version configured for auto updates which in some cases could even be a version below current */
2931
- 'about-dialog.version-info.new-version.text': string; /** "Reload"-button when auto updates is enabled and a new version is available */
2932
- 'about-dialog.version-info.reload': string; /** "Reload to update"-tooltip when auto updates is enabled and a new version is available */
2933
- 'about-dialog.version-info.reload-to-update': string; /** "Development" tooltip in About-dialog */
2934
- 'about-dialog.version-info.tooltip.development': string; /** "New version available" tooltip in About-dialog */
2935
- 'about-dialog.version-info.tooltip.new-version-available': string; /** "Prerelease" tooltip in About-dialog */
2936
- 'about-dialog.version-info.tooltip.prerelease': string; /** "Up to date" tooltip in About-dialog */
2937
- 'about-dialog.version-info.tooltip.up-to-date': string; /** @deprecated "Up to date" status in About-dialog */
2938
- 'about-dialog.version-info.up-to-date': string; /** "Upgrade"-button text */
2939
- 'about-dialog.version-info.update-button.text': string; /** "Upgrade"-button tooltip text */
2940
- 'about-dialog.version-info.update-button.tooltip': string; /** "User agent" header in About-dialog */
2941
- 'about-dialog.version-info.user-agent.header': string; /** "View on GitHub" link from version info dialog */
2942
- 'about-dialog.version-info.view-on-github': string; /** The text used in the tooltip shown in the dialog close button */
2943
- 'announcement.dialog.close': string; /** Aria label to be used in the dialog close button */
2944
- 'announcement.dialog.close-label': string; /**Text to be used in the tooltip in the button in the studio announcement card */
2945
- 'announcement.floating-button.dismiss': string; /**Aria label to be used in the floating button in the studio announcement card, to dismiss the card */
2946
- 'announcement.floating-button.dismiss-label': string; /**Aria label to be used in the floating button in the studio announcement card */
2947
- 'announcement.floating-button.open-label': string; /** Menu item for deleting the asset */
2948
- 'asset-source.asset-list.menu.delete': string; /** Menu item for showing where a particular asset is used */
2949
- 'asset-source.asset-list.menu.show-usage': string; /** Header in usage dialog for file assets */
2950
- 'asset-source.asset-usage-dialog.header_file': string; /** Header in usage dialog for image assets */
2951
- 'asset-source.asset-usage-dialog.header_image': string; /** Text shown in usage dialog when loading documents using the selected asset */
2952
- 'asset-source.asset-usage-dialog.loading': string; /** Browse button text */
2953
- 'asset-source.browse-button.text': string; /** Text for cancel action in delete-asset dialog */
2954
- 'asset-source.delete-dialog.action.cancel': string; /** Text for "confirm delete" action in delete-asset dialog */
2955
- 'asset-source.delete-dialog.action.delete': string; /** Dialog header for delete-asset dialog when deleting a file */
2956
- 'asset-source.delete-dialog.header_file': string; /** Dialog header for delete-asset dialog when deleting an image */
2957
- 'asset-source.delete-dialog.header_image': string; /** Text shown in delete dialog when loading documents using the selected asset */
2958
- 'asset-source.delete-dialog.loading': string; /** Message confirming to delete *named* file */
2959
- 'asset-source.delete-dialog.usage-list.confirm-delete-file_named': string; /** Message confirming to delete *unnamed* file */
2960
- 'asset-source.delete-dialog.usage-list.confirm-delete-file_unnamed': string; /** Message confirming to delete *named* image */
2961
- 'asset-source.delete-dialog.usage-list.confirm-delete-image_named': string; /** Message confirming to delete *unnamed* image */
2962
- 'asset-source.delete-dialog.usage-list.confirm-delete-image_unnamed': string; /** Alt text showing on image preview in delete asset dialog */
2963
- 'asset-source.delete-dialog.usage-list.image-preview-alt': string; /** Warning message showing when *named* file can't be deleted because it is in use */
2964
- 'asset-source.delete-dialog.usage-list.warning-file-is-in-use_named': string; /** Warning message showing when *unnamed* file can't be deleted because it is in use */
2965
- 'asset-source.delete-dialog.usage-list.warning-file-is-in-use_unnamed': string; /** Warning message showing when *named* image can't be deleted because it is in use */
2966
- 'asset-source.delete-dialog.usage-list.warning-image-is-in-use_named': string; /** Warning message showing when *unnamed* image can't be deleted because it is in use */
2967
- 'asset-source.delete-dialog.usage-list.warning-image-is-in-use_unnamed': string; /** Text shown when the list of assets only include a specific set of types */
2968
- 'asset-source.dialog.accept-message': string; /** Select asset dialog cancel-button */
2969
- 'asset-source.dialog.button.cancel': string; /** Select asset dialog select-button */
2870
+ 'about-dialog.version-info.new-version.text': string;
2871
+ /** "Reload"-button when auto updates is enabled and a new version is available */
2872
+ 'about-dialog.version-info.reload': string;
2873
+ /** "Reload to update"-tooltip when auto updates is enabled and a new version is available */
2874
+ 'about-dialog.version-info.reload-to-update': string;
2875
+ /** "Development" tooltip in About-dialog */
2876
+ 'about-dialog.version-info.tooltip.development': string;
2877
+ /** "New version available" tooltip in About-dialog */
2878
+ 'about-dialog.version-info.tooltip.new-version-available': string;
2879
+ /** "Prerelease" tooltip in About-dialog */
2880
+ 'about-dialog.version-info.tooltip.prerelease': string;
2881
+ /** "Up to date" tooltip in About-dialog */
2882
+ 'about-dialog.version-info.tooltip.up-to-date': string;
2883
+ /** @deprecated "Up to date" status in About-dialog */
2884
+ 'about-dialog.version-info.up-to-date': string;
2885
+ /** "Upgrade"-button text */
2886
+ 'about-dialog.version-info.update-button.text': string;
2887
+ /** "Upgrade"-button tooltip text */
2888
+ 'about-dialog.version-info.update-button.tooltip': string;
2889
+ /** "User agent" header in About-dialog */
2890
+ 'about-dialog.version-info.user-agent.header': string;
2891
+ /** "View on GitHub" link from version info dialog */
2892
+ 'about-dialog.version-info.view-on-github': string;
2893
+ /** The text used in the tooltip shown in the dialog close button */
2894
+ 'announcement.dialog.close': string;
2895
+ /** Aria label to be used in the dialog close button */
2896
+ 'announcement.dialog.close-label': string;
2897
+ /**Text to be used in the tooltip in the button in the studio announcement card */
2898
+ 'announcement.floating-button.dismiss': string;
2899
+ /**Aria label to be used in the floating button in the studio announcement card, to dismiss the card */
2900
+ 'announcement.floating-button.dismiss-label': string;
2901
+ /**Aria label to be used in the floating button in the studio announcement card */
2902
+ 'announcement.floating-button.open-label': string;
2903
+ /** Menu item for deleting the asset */
2904
+ 'asset-source.asset-list.menu.delete': string;
2905
+ /** Menu item for showing where a particular asset is used */
2906
+ 'asset-source.asset-list.menu.show-usage': string;
2907
+ /** Header in usage dialog for file assets */
2908
+ 'asset-source.asset-usage-dialog.header_file': string;
2909
+ /** Header in usage dialog for image assets */
2910
+ 'asset-source.asset-usage-dialog.header_image': string;
2911
+ /** Text shown in usage dialog when loading documents using the selected asset */
2912
+ 'asset-source.asset-usage-dialog.loading': string;
2913
+ /** Browse button text */
2914
+ 'asset-source.browse-button.text': string;
2915
+ /** Text for cancel action in delete-asset dialog */
2916
+ 'asset-source.delete-dialog.action.cancel': string;
2917
+ /** Text for "confirm delete" action in delete-asset dialog */
2918
+ 'asset-source.delete-dialog.action.delete': string;
2919
+ /** Dialog header for delete-asset dialog when deleting a file */
2920
+ 'asset-source.delete-dialog.header_file': string;
2921
+ /** Dialog header for delete-asset dialog when deleting an image */
2922
+ 'asset-source.delete-dialog.header_image': string;
2923
+ /** Text shown in delete dialog when loading documents using the selected asset */
2924
+ 'asset-source.delete-dialog.loading': string;
2925
+ /** Message confirming to delete *named* file */
2926
+ 'asset-source.delete-dialog.usage-list.confirm-delete-file_named': string;
2927
+ /** Message confirming to delete *unnamed* file */
2928
+ 'asset-source.delete-dialog.usage-list.confirm-delete-file_unnamed': string;
2929
+ /** Message confirming to delete *named* image */
2930
+ 'asset-source.delete-dialog.usage-list.confirm-delete-image_named': string;
2931
+ /** Message confirming to delete *unnamed* image */
2932
+ 'asset-source.delete-dialog.usage-list.confirm-delete-image_unnamed': string;
2933
+ /** Alt text showing on image preview in delete asset dialog */
2934
+ 'asset-source.delete-dialog.usage-list.image-preview-alt': string;
2935
+ /** Warning message showing when *named* file can't be deleted because it is in use */
2936
+ 'asset-source.delete-dialog.usage-list.warning-file-is-in-use_named': string;
2937
+ /** Warning message showing when *unnamed* file can't be deleted because it is in use */
2938
+ 'asset-source.delete-dialog.usage-list.warning-file-is-in-use_unnamed': string;
2939
+ /** Warning message showing when *named* image can't be deleted because it is in use */
2940
+ 'asset-source.delete-dialog.usage-list.warning-image-is-in-use_named': string;
2941
+ /** Warning message showing when *unnamed* image can't be deleted because it is in use */
2942
+ 'asset-source.delete-dialog.usage-list.warning-image-is-in-use_unnamed': string;
2943
+ /** Text shown when the list of assets only include a specific set of types */
2944
+ 'asset-source.dialog.accept-message': string;
2945
+ /** Select asset dialog cancel-button */
2946
+ 'asset-source.dialog.button.cancel': string;
2947
+ /** Select asset dialog select-button */
2970
2948
  'asset-source.dialog.button.select': string;
2971
2949
  /** Keys shared between both image asset source and file asset source */
2972
2950
  /** Insert asset error */
2973
- 'asset-source.dialog.insert-asset-error': string; /** Toast title shown when the list of assets failed to load */
2974
- 'asset-source.dialog.load-error': string; /** Select asset dialog load more items */
2951
+ 'asset-source.dialog.insert-asset-error': string;
2952
+ /** Toast title shown when the list of assets failed to load */
2953
+ 'asset-source.dialog.load-error': string;
2954
+ /** Select asset dialog load more items */
2975
2955
  'asset-source.dialog.load-more': string;
2976
2956
  /** Text shown when selecting a file but there's no files to select from
2977
2957
  * @deprecated no longer in use
@@ -2988,86 +2968,147 @@ declare const studioLocaleStrings: {
2988
2968
  'asset-source.file.asset-list.action.show-usage.title': string;
2989
2969
  'asset-source.file.asset-list.delete-failed': string;
2990
2970
  'asset-source.file.asset-list.delete-successful': string;
2991
- 'asset-source.file.asset-list.header.date-added': string; /** File asset source */
2971
+ 'asset-source.file.asset-list.header.date-added': string;
2972
+ /** File asset source */
2992
2973
  'asset-source.file.asset-list.header.filename': string;
2993
2974
  'asset-source.file.asset-list.header.size': string;
2994
- 'asset-source.file.asset-list.header.type': string; /** Text displayed on button or menu invoking the file asset source */
2975
+ 'asset-source.file.asset-list.header.type': string;
2976
+ /** Text displayed on button or menu invoking the file asset source */
2995
2977
  'asset-source.file.title': string;
2996
- 'asset-source.image.asset-list.delete-failed': string; /** Image asset source */
2997
- 'asset-source.image.asset-list.delete-successful': string; /** Text displayed on button or menu invoking the image asset source */
2998
- 'asset-source.image.title': string; /** Built in asset source usage texts */
2978
+ 'asset-source.image.asset-list.delete-failed': string;
2979
+ /** Image asset source */
2980
+ 'asset-source.image.asset-list.delete-successful': string;
2981
+ /** Text displayed on button or menu invoking the image asset source */
2982
+ 'asset-source.image.title': string;
2983
+ /** Built in asset source usage texts */
2999
2984
  'asset-source.usage-list.documents-using-file_named_one': string;
3000
- 'asset-source.usage-list.documents-using-file_named_other': string; /** Text shown in usage dialog for a file asset when there are zero, one or more documents using the *named* file **/
2985
+ 'asset-source.usage-list.documents-using-file_named_other': string;
2986
+ /** Text shown in usage dialog for a file asset when there are zero, one or more documents using the *named* file **/
3001
2987
  'asset-source.usage-list.documents-using-file_named_zero': string;
3002
2988
  'asset-source.usage-list.documents-using-file_unnamed_one': string;
3003
- 'asset-source.usage-list.documents-using-file_unnamed_other': string; /** Text shown in usage dialog for a file asset when there are zero, one or more documents using the *unnamed* file **/
2989
+ 'asset-source.usage-list.documents-using-file_unnamed_other': string;
2990
+ /** Text shown in usage dialog for a file asset when there are zero, one or more documents using the *unnamed* file **/
3004
2991
  'asset-source.usage-list.documents-using-file_unnamed_zero': string;
3005
2992
  'asset-source.usage-list.documents-using-image_named_one': string;
3006
- 'asset-source.usage-list.documents-using-image_named_other': string; /** Text shown in usage dialog for an image asset when there are zero, one or more documents using the *named* image **/
2993
+ 'asset-source.usage-list.documents-using-image_named_other': string;
2994
+ /** Text shown in usage dialog for an image asset when there are zero, one or more documents using the *named* image **/
3007
2995
  'asset-source.usage-list.documents-using-image_named_zero': string;
3008
2996
  'asset-source.usage-list.documents-using-image_unnamed_one': string;
3009
- 'asset-source.usage-list.documents-using-image_unnamed_other': string; /** Text shown in usage dialog for an image asset when there are zero, one or more documents using the *unnamed* image **/
3010
- 'asset-source.usage-list.documents-using-image_unnamed_zero': string; /** Common (all) Asset Source texts. Note that all translation keys starting with 'asset-source.' is for the built in asset source. */
2997
+ 'asset-source.usage-list.documents-using-image_unnamed_other': string;
2998
+ /** Text shown in usage dialog for an image asset when there are zero, one or more documents using the *unnamed* image **/
2999
+ 'asset-source.usage-list.documents-using-image_unnamed_zero': string;
3000
+ /** Common (all) Asset Source texts. Note that all translation keys starting with 'asset-source.' is for the built in asset source. */
3011
3001
  'asset-sources.common.uploader.upload-failed.description': string;
3012
- 'asset-sources.common.uploader.upload-failed.title': string; /** Menu Items for Dataset Asset Source (will be replaced with workspace name by default) */
3002
+ 'asset-sources.common.uploader.upload-failed.title': string;
3003
+ /** Menu Items for Dataset Asset Source (will be replaced with workspace name by default) */
3013
3004
  'asset-sources.dataset.file.title': string;
3014
- 'asset-sources.dataset.image.title': string; /** Error messages for the Media Library Asset Source */
3015
- 'asset-sources.media-library.error.library-could-not-be-resolved': string; /** Error message shown when no media library has been provisioned for the current organization */
3016
- 'asset-sources.media-library.error.no-media-library-provisioned': string; /** Menu Items for Media Library Asset Source */
3005
+ 'asset-sources.dataset.image.title': string;
3006
+ /** Error messages for the Media Library Asset Source */
3007
+ 'asset-sources.media-library.error.library-could-not-be-resolved': string;
3008
+ /** Error message shown when no media library has been provisioned for the current organization */
3009
+ 'asset-sources.media-library.error.no-media-library-provisioned': string;
3010
+ /** Menu Items for Media Library Asset Source */
3017
3011
  'asset-sources.media-library.file.title': string;
3018
- 'asset-sources.media-library.image.title': string; /** Done button text */
3019
- 'asset-sources.media-library.open-in-source-dialog.button.done': string; /** Select new asset button text with target title */
3012
+ 'asset-sources.media-library.image.title': string;
3013
+ /** Done button text */
3014
+ 'asset-sources.media-library.open-in-source-dialog.button.done': string;
3015
+ /** Select new asset button text with target title */
3020
3016
  'asset-sources.media-library.open-in-source-dialog.button.select-new-asset': string;
3021
- 'asset-sources.media-library.open-in-source-dialog.button.select-new-asset-fallback': string; /** Title for the open in source dialog */
3022
- 'asset-sources.media-library.open-in-source-dialog.title': string; /** Title for the upload dialog (component mode) */
3023
- 'asset-sources.media-library.upload-dialog.title': string; /** Warning message shown when uploading already existing files to the Media Library Asset Source */
3017
+ 'asset-sources.media-library.open-in-source-dialog.button.select-new-asset-fallback': string;
3018
+ /** Title for the open in source dialog */
3019
+ 'asset-sources.media-library.open-in-source-dialog.title': string;
3020
+ /** Title for the upload dialog (component mode) */
3021
+ 'asset-sources.media-library.upload-dialog.title': string;
3022
+ /** Warning message shown when uploading already existing files to the Media Library Asset Source */
3024
3023
  'asset-sources.media-library.warning.file-already-exist.description': string;
3025
- 'asset-sources.media-library.warning.file-already-exist.title': string; /** Label when a release has been deleted by a different user */
3026
- 'banners.deleted-bundle-banner.text': string; /** Action message for navigating to next month */
3027
- 'calendar.action.go-to-next-month': string; /** Action message for navigating to next year */
3028
- 'calendar.action.go-to-next-year': string; /** Action message for navigating to previous month */
3029
- 'calendar.action.go-to-previous-month': string; /** Action message for navigating to previous year */
3024
+ 'asset-sources.media-library.warning.file-already-exist.title': string;
3025
+ /** Label when a release has been deleted by a different user */
3026
+ 'banners.deleted-bundle-banner.text': string;
3027
+ /** Action message for navigating to next month */
3028
+ 'calendar.action.go-to-next-month': string;
3029
+ /** Action message for navigating to next year */
3030
+ 'calendar.action.go-to-next-year': string;
3031
+ /** Action message for navigating to previous month */
3032
+ 'calendar.action.go-to-previous-month': string;
3033
+ /** Action message for navigating to previous year */
3030
3034
  'calendar.action.go-to-previous-year': string;
3031
3035
  'calendar.action.go-to-today': string;
3032
3036
  'calendar.action.go-to-today-aria-label': string;
3033
3037
  'calendar.action.go-to-tomorrow': string;
3034
- 'calendar.action.go-to-yesterday': string; /** Label for switch that controls whether or not to include time in given timestamp */
3035
- 'calendar.action.include-time-label': string; /** Action message for selecting the time */
3036
- 'calendar.action.select-time': string; /** Action message for setting to the current time */
3037
- 'calendar.action.set-to-current-time': string; /** Label for selecting an hour preset. Receives a `time` param as a string on hh:mm format and a `date` param as a Date instance denoting the preset date */
3038
- 'calendar.action.set-to-time-preset': string; /** Aria label for button to open date picker */
3039
- 'calendar.button.aria-label': string; /** Tooltip content for button to open datetime input */
3040
- 'calendar.button.tooltip-text': string; /** Error message displayed in calendar when entered date is not the correct format */
3041
- 'calendar.error.must-be-in-format': string; /** Month name for April */
3042
- 'calendar.month-names.april': string; /** Month name for August */
3043
- 'calendar.month-names.august': string; /** Month name for December */
3044
- 'calendar.month-names.december': string; /** Month name for February */
3045
- 'calendar.month-names.february': string; /** Month name for January */
3046
- 'calendar.month-names.january': string; /** Month name for July */
3047
- 'calendar.month-names.july': string; /** Month name for June */
3048
- 'calendar.month-names.june': string; /** Month name for March */
3049
- 'calendar.month-names.march': string; /** Month name for May */
3050
- 'calendar.month-names.may': string; /** Month name for November */
3051
- 'calendar.month-names.november': string; /** Month name for October */
3052
- 'calendar.month-names.october': string; /** Month name for September */
3053
- 'calendar.month-names.september': string; /** Short weekday name for Friday */
3054
- 'calendar.weekday-names.short.friday': string; /** Short weekday name for Monday */
3055
- 'calendar.weekday-names.short.monday': string; /** Short weekday name for Saturdayday */
3056
- 'calendar.weekday-names.short.saturday': string; /** Short weekday name for Sunday */
3057
- 'calendar.weekday-names.short.sunday': string; /** Short weekday name for Thursday */
3058
- 'calendar.weekday-names.short.thursday': string; /** Short weekday name for Tuesday */
3059
- 'calendar.weekday-names.short.tuesday': string; /** Short weekday name for Wednesday */
3060
- 'calendar.weekday-names.short.wednesday': string; /** The name of Content Agent, the product. */
3061
- 'content-agent': string; /** Label for the close button label in Review Changes pane */
3062
- 'changes.action.close-label': string; /** Cancel label for revert button prompt action */
3063
- 'changes.action.revert-all-cancel': string; /** Revert all confirm label for revert button action - used on prompt button + review changes pane */
3064
- 'changes.action.revert-all-confirm': string; /** Prompt for reverting all changes in document in Review Changes pane. Includes a count of changes. */
3065
- 'changes.action.revert-all-description': string; /** Prompt for confirming revert change (singular) label for field change action */
3066
- 'changes.action.revert-changes-confirm-change_one': string; /** Revert for confirming revert (plural) label for field change action */
3067
- 'changes.action.revert-changes-confirm-change_other': string; /** Prompt for reverting changes for a field change */
3068
- 'changes.action.revert-changes-description': string; /** Prompt for reverting changes for a group change, eg multiple changes */
3069
- 'changes.action.revert-changes-description_one': string; /** Label for when the action of the change was to set something that was previously empty, eg a field was given a value, an array item was added, an asset was selected or similar */
3070
- 'changes.added-label': string; /** Array diff: An item was added in a given position (`{{position}}`) */
3038
+ 'calendar.action.go-to-yesterday': string;
3039
+ /** Label for switch that controls whether or not to include time in given timestamp */
3040
+ 'calendar.action.include-time-label': string;
3041
+ /** Action message for selecting the time */
3042
+ 'calendar.action.select-time': string;
3043
+ /** Action message for setting to the current time */
3044
+ 'calendar.action.set-to-current-time': string;
3045
+ /** Label for selecting an hour preset. Receives a `time` param as a string on hh:mm format and a `date` param as a Date instance denoting the preset date */
3046
+ 'calendar.action.set-to-time-preset': string;
3047
+ /** Aria label for button to open date picker */
3048
+ 'calendar.button.aria-label': string;
3049
+ /** Tooltip content for button to open datetime input */
3050
+ 'calendar.button.tooltip-text': string;
3051
+ /** Error message displayed in calendar when entered date is not the correct format */
3052
+ 'calendar.error.must-be-in-format': string;
3053
+ /** Month name for April */
3054
+ 'calendar.month-names.april': string;
3055
+ /** Month name for August */
3056
+ 'calendar.month-names.august': string;
3057
+ /** Month name for December */
3058
+ 'calendar.month-names.december': string;
3059
+ /** Month name for February */
3060
+ 'calendar.month-names.february': string;
3061
+ /** Month name for January */
3062
+ 'calendar.month-names.january': string;
3063
+ /** Month name for July */
3064
+ 'calendar.month-names.july': string;
3065
+ /** Month name for June */
3066
+ 'calendar.month-names.june': string;
3067
+ /** Month name for March */
3068
+ 'calendar.month-names.march': string;
3069
+ /** Month name for May */
3070
+ 'calendar.month-names.may': string;
3071
+ /** Month name for November */
3072
+ 'calendar.month-names.november': string;
3073
+ /** Month name for October */
3074
+ 'calendar.month-names.october': string;
3075
+ /** Month name for September */
3076
+ 'calendar.month-names.september': string;
3077
+ /** Short weekday name for Friday */
3078
+ 'calendar.weekday-names.short.friday': string;
3079
+ /** Short weekday name for Monday */
3080
+ 'calendar.weekday-names.short.monday': string;
3081
+ /** Short weekday name for Saturdayday */
3082
+ 'calendar.weekday-names.short.saturday': string;
3083
+ /** Short weekday name for Sunday */
3084
+ 'calendar.weekday-names.short.sunday': string;
3085
+ /** Short weekday name for Thursday */
3086
+ 'calendar.weekday-names.short.thursday': string;
3087
+ /** Short weekday name for Tuesday */
3088
+ 'calendar.weekday-names.short.tuesday': string;
3089
+ /** Short weekday name for Wednesday */
3090
+ 'calendar.weekday-names.short.wednesday': string;
3091
+ /** The name of Content Agent, the product. */
3092
+ 'content-agent': string;
3093
+ /** Label for the close button label in Review Changes pane */
3094
+ 'changes.action.close-label': string;
3095
+ /** Cancel label for revert button prompt action */
3096
+ 'changes.action.revert-all-cancel': string;
3097
+ /** Revert all confirm label for revert button action - used on prompt button + review changes pane */
3098
+ 'changes.action.revert-all-confirm': string;
3099
+ /** Prompt for reverting all changes in document in Review Changes pane. Includes a count of changes. */
3100
+ 'changes.action.revert-all-description': string;
3101
+ /** Prompt for confirming revert change (singular) label for field change action */
3102
+ 'changes.action.revert-changes-confirm-change_one': string;
3103
+ /** Revert for confirming revert (plural) label for field change action */
3104
+ 'changes.action.revert-changes-confirm-change_other': string;
3105
+ /** Prompt for reverting changes for a field change */
3106
+ 'changes.action.revert-changes-description': string;
3107
+ /** Prompt for reverting changes for a group change, eg multiple changes */
3108
+ 'changes.action.revert-changes-description_one': string;
3109
+ /** Label for when the action of the change was to set something that was previously empty, eg a field was given a value, an array item was added, an asset was selected or similar */
3110
+ 'changes.added-label': string;
3111
+ /** Array diff: An item was added in a given position (`{{position}}`) */
3071
3112
  'changes.array.item-added-in-position': string;
3072
3113
  'changes.array.item-moved_down_one': string;
3073
3114
  'changes.array.item-moved_down_other': string;
@@ -3077,182 +3118,336 @@ declare const studioLocaleStrings: {
3077
3118
  * Context is the direction of the move, either `up` or `down`.
3078
3119
  */
3079
3120
  'changes.array.item-moved_up_one': string;
3080
- 'changes.array.item-moved_up_other': string; /** Array diff: An item was removed from a given position (`{{position}}`) */
3081
- 'changes.array.item-removed-from-position': string; /** Accessibility label for the "change bar" shown when there are edits on a field-level */
3082
- 'changes.change-bar.aria-label': string; /** Label for when the action of the change was _not_ an add/remove, eg a text field changed value, an image was changed from one asset to another or similar */
3083
- 'changes.changed-label': string; /** Label and text for tooltip that indicates the authors of the changes */
3084
- 'changes.changes-by-author': string; /** Additional text shown in development mode when a diff component crashes during rendering */
3085
- 'changes.error-boundary.developer-info': string; /** Text shown when a diff component crashes during rendering, triggering the error boundary */
3121
+ 'changes.array.item-moved_up_other': string;
3122
+ /** Array diff: An item was removed from a given position (`{{position}}`) */
3123
+ 'changes.array.item-removed-from-position': string;
3124
+ /** Accessibility label for the "change bar" shown when there are edits on a field-level */
3125
+ 'changes.change-bar.aria-label': string;
3126
+ /** Label for when the action of the change was _not_ an add/remove, eg a text field changed value, an image was changed from one asset to another or similar */
3127
+ 'changes.changed-label': string;
3128
+ /** Label and text for tooltip that indicates the authors of the changes */
3129
+ 'changes.changes-by-author': string;
3130
+ /** Additional text shown in development mode when a diff component crashes during rendering */
3131
+ 'changes.error-boundary.developer-info': string;
3132
+ /** Text shown when a diff component crashes during rendering, triggering the error boundary */
3086
3133
  'changes.error-boundary.title': string;
3087
- 'changes.error-description': string; /** Error title when changes could not be loaded */
3088
- 'changes.error-title': string; /** Error message shown when the value of a field is not the expected one */
3089
- 'changes.error.incorrect-type-message': string; /** File diff: Fallback title for the meta info section when there is no original filename to use */
3090
- 'changes.file.meta-info-fallback-title': string; /** Image diff: Text shown in tooltip when hovering hotspot that has changed in diff view */
3091
- 'changes.image.crop-changed': string; /** Image diff: Text shown if the previous image asset was deleted (shouldn't theoretically happen) */
3092
- 'changes.image.deleted': string; /** Image diff: Text shown if the image failed to be loaded when previewing it */
3093
- 'changes.image.error-loading-image': string; /** Image diff: Text shown in tooltip when hovering hotspot that has changed in diff view */
3094
- 'changes.image.hotspot-changed': string; /** Image diff: Fallback title for the meta info section when there is no original filename to use */
3095
- 'changes.image.meta-info-fallback-title': string; /** Image diff: Text shown if no asset has been set for the field (but has metadata changes) */
3096
- 'changes.image.no-asset-set': string; /** Image diff: Text shown when the from/to state has/had no image */
3097
- 'changes.image.no-image-placeholder': string; /** Label for the "from" value in the change inspector */
3098
- 'changes.inspector.from-label': string; /** Label for the "meta" (field path, action etc) information in the change inspector */
3099
- 'changes.inspector.meta-label': string; /** Label for the "to" value in the change inspector */
3100
- 'changes.inspector.to-label': string; /** Loading author of change in the differences tooltip in the review changes pane */
3101
- 'changes.loading-author': string; /** Loading changes in Review Changes Pane */
3102
- 'changes.loading-changes': string; /** Error message shown when the document revision could not be found */
3103
- 'changes.missing-since-document-error': string; /** No Changes description in the Review Changes pane */
3104
- 'changes.no-changes-description': string; /** No Changes title in the Review Changes pane */
3134
+ 'changes.error-description': string;
3135
+ /** Error title when changes could not be loaded */
3136
+ 'changes.error-title': string;
3137
+ /** Error message shown when the value of a field is not the expected one */
3138
+ 'changes.error.incorrect-type-message': string;
3139
+ /** File diff: Fallback title for the meta info section when there is no original filename to use */
3140
+ 'changes.file.meta-info-fallback-title': string;
3141
+ /** Image diff: Text shown in tooltip when hovering hotspot that has changed in diff view */
3142
+ 'changes.image.crop-changed': string;
3143
+ /** Image diff: Text shown if the previous image asset was deleted (shouldn't theoretically happen) */
3144
+ 'changes.image.deleted': string;
3145
+ /** Image diff: Text shown if the image failed to be loaded when previewing it */
3146
+ 'changes.image.error-loading-image': string;
3147
+ /** Image diff: Text shown in tooltip when hovering hotspot that has changed in diff view */
3148
+ 'changes.image.hotspot-changed': string;
3149
+ /** Image diff: Fallback title for the meta info section when there is no original filename to use */
3150
+ 'changes.image.meta-info-fallback-title': string;
3151
+ /** Image diff: Text shown if no asset has been set for the field (but has metadata changes) */
3152
+ 'changes.image.no-asset-set': string;
3153
+ /** Image diff: Text shown when the from/to state has/had no image */
3154
+ 'changes.image.no-image-placeholder': string;
3155
+ /** Label for the "from" value in the change inspector */
3156
+ 'changes.inspector.from-label': string;
3157
+ /** Label for the "meta" (field path, action etc) information in the change inspector */
3158
+ 'changes.inspector.meta-label': string;
3159
+ /** Label for the "to" value in the change inspector */
3160
+ 'changes.inspector.to-label': string;
3161
+ /** Loading author of change in the differences tooltip in the review changes pane */
3162
+ 'changes.loading-author': string;
3163
+ /** Loading changes in Review Changes Pane */
3164
+ 'changes.loading-changes': string;
3165
+ /** Error message shown when the document revision could not be found */
3166
+ 'changes.missing-since-document-error': string;
3167
+ /** No Changes description in the Review Changes pane */
3168
+ 'changes.no-changes-description': string;
3169
+ /** No Changes title in the Review Changes pane */
3105
3170
  'changes.no-changes-title': string;
3106
- 'changes.not-selectable': string; /** Portable Text diff: An annotation was added */
3107
- 'changes.portable-text.annotation_added': string; /** Portable Text diff: An annotation was changed */
3108
- 'changes.portable-text.annotation_changed': string; /** Portable Text diff: An annotation was removed */
3109
- 'changes.portable-text.annotation_removed': string; /** Portable Text diff: An annotation was left unchanged */
3110
- 'changes.portable-text.annotation_unchanged': string; /** Portable Text diff: A block changed from one style to another (eg `normal` to `h1` or similar) */
3111
- 'changes.portable-text.block-style-changed': string; /** Portable Text diff: Change formatting of text (setting/unsetting marks, eg bold/italic etc) */
3112
- 'changes.portable-text.changed-formatting': string; /** Portable Text diff: An empty inline object is part of a change */
3113
- 'changes.portable-text.empty-inline-object': string; /** Portable Text diff: An empty object is the result of adding/removing an annotation */
3114
- 'changes.portable-text.empty-object-annotation': string; /** Portable Text diff: Added a block containing no text (eg empty block) */
3115
- 'changes.portable-text.empty-text_added': string; /** Portable Text diff: Changed a block that contained no text (eg empty block) */
3116
- 'changes.portable-text.empty-text_changed': string; /** Portable Text diff: Removed a block containing no text (eg empty block) */
3117
- 'changes.portable-text.empty-text_removed': string; /** Portable Text diff: An inline object was added */
3118
- 'changes.portable-text.inline-object_added': string; /** Portable Text diff: An inline object was changed */
3119
- 'changes.portable-text.inline-object_changed': string; /** Portable Text diff: An inline object was removed */
3120
- 'changes.portable-text.inline-object_removed': string; /** Portable Text diff: An inline object was left unchanged */
3121
- 'changes.portable-text.inline-object_unchanged': string; /** Portable Text diff: Added a chunk of text */
3122
- 'changes.portable-text.text_added': string; /** Portable Text diff: Removed a chunk of text */
3123
- 'changes.portable-text.text_removed': string; /** Portable Text diff: Annotation has an unknown schema type */
3124
- 'changes.portable-text.unknown-annotation-schema-type': string; /** Portable Text diff: Inline object has an unknown schema type */
3125
- 'changes.portable-text.unknown-inline-object-schema-type': string; /** Label for when the action of the change was a removal, eg a field was cleared, an array item was removed, an asset was deselected or similar */
3126
- 'changes.removed-label': string; /** Same Revision Selected description in the Review Changes pane */
3127
- 'changes.same-revision-selected-description': string; /** Same Revision Selected title in the Review Changes pane */
3128
- 'changes.same-revision-selected-title': string; /** Title for the Review Changes pane */
3129
- 'changes.title': string; /** Shown above raw JSON diff for document fields that are not defined in the schema */
3130
- 'changes.unknown-schema-field.description': string; /**The title that will be shown in the badge inside the events when the item is a draft */
3171
+ 'changes.not-selectable': string;
3172
+ /** Portable Text diff: An annotation was added */
3173
+ 'changes.portable-text.annotation_added': string;
3174
+ /** Portable Text diff: An annotation was changed */
3175
+ 'changes.portable-text.annotation_changed': string;
3176
+ /** Portable Text diff: An annotation was removed */
3177
+ 'changes.portable-text.annotation_removed': string;
3178
+ /** Portable Text diff: An annotation was left unchanged */
3179
+ 'changes.portable-text.annotation_unchanged': string;
3180
+ /** Portable Text diff: A block changed from one style to another (eg `normal` to `h1` or similar) */
3181
+ 'changes.portable-text.block-style-changed': string;
3182
+ /** Portable Text diff: Change formatting of text (setting/unsetting marks, eg bold/italic etc) */
3183
+ 'changes.portable-text.changed-formatting': string;
3184
+ /** Portable Text diff: An empty inline object is part of a change */
3185
+ 'changes.portable-text.empty-inline-object': string;
3186
+ /** Portable Text diff: An empty object is the result of adding/removing an annotation */
3187
+ 'changes.portable-text.empty-object-annotation': string;
3188
+ /** Portable Text diff: Added a block containing no text (eg empty block) */
3189
+ 'changes.portable-text.empty-text_added': string;
3190
+ /** Portable Text diff: Changed a block that contained no text (eg empty block) */
3191
+ 'changes.portable-text.empty-text_changed': string;
3192
+ /** Portable Text diff: Removed a block containing no text (eg empty block) */
3193
+ 'changes.portable-text.empty-text_removed': string;
3194
+ /** Portable Text diff: An inline object was added */
3195
+ 'changes.portable-text.inline-object_added': string;
3196
+ /** Portable Text diff: An inline object was changed */
3197
+ 'changes.portable-text.inline-object_changed': string;
3198
+ /** Portable Text diff: An inline object was removed */
3199
+ 'changes.portable-text.inline-object_removed': string;
3200
+ /** Portable Text diff: An inline object was left unchanged */
3201
+ 'changes.portable-text.inline-object_unchanged': string;
3202
+ /** Portable Text diff: Added a chunk of text */
3203
+ 'changes.portable-text.text_added': string;
3204
+ /** Portable Text diff: Removed a chunk of text */
3205
+ 'changes.portable-text.text_removed': string;
3206
+ /** Portable Text diff: Annotation has an unknown schema type */
3207
+ 'changes.portable-text.unknown-annotation-schema-type': string;
3208
+ /** Portable Text diff: Inline object has an unknown schema type */
3209
+ 'changes.portable-text.unknown-inline-object-schema-type': string;
3210
+ /** Label for when the action of the change was a removal, eg a field was cleared, an array item was removed, an asset was deselected or similar */
3211
+ 'changes.removed-label': string;
3212
+ /** Same Revision Selected description in the Review Changes pane */
3213
+ 'changes.same-revision-selected-description': string;
3214
+ /** Same Revision Selected title in the Review Changes pane */
3215
+ 'changes.same-revision-selected-title': string;
3216
+ /** Title for the Review Changes pane */
3217
+ 'changes.title': string;
3218
+ /** Shown above raw JSON diff for document fields that are not defined in the schema */
3219
+ 'changes.unknown-schema-field.description': string;
3220
+ /**The title that will be shown in the badge inside the events when the item is a draft */
3131
3221
  'changes.versions.draft': string;
3132
3222
  /** --- Common components --- */
3133
3223
  /** Tooltip text for context menu buttons */
3134
- 'common.context-menu-button.tooltip': string; /** Default text for dialog cancel button */
3135
- 'common.dialog.cancel-button.text': string; /** Default text for dialog confirm button */
3136
- 'common.dialog.confirm-button.text': string; /** Default text in shared loader text / spinner lockup */
3137
- 'common.loading': string; /** The title of the reconnecting toast */
3224
+ 'common.context-menu-button.tooltip': string;
3225
+ /** Default text for dialog cancel button */
3226
+ 'common.dialog.cancel-button.text': string;
3227
+ /** Default text for dialog confirm button */
3228
+ 'common.dialog.confirm-button.text': string;
3229
+ /** Default text in shared loader text / spinner lockup */
3230
+ 'common.loading': string;
3231
+ /** The title of the reconnecting toast */
3138
3232
  'common.reconnecting.toast.title': string;
3139
3233
  /** --- Configuration issues --- */
3140
3234
  /** Default label text on configuration issues button */
3141
- 'configuration-issues.button.label': string; /** Tooltip displayed on configuration issues button */
3142
- 'configuration-issues.button.tooltip': string; /** The fallback title for an ordering menu item if no localized titles are provided. */
3143
- 'default-menu-item.fallback-title': string; /** Title for the default ordering/SortOrder if no orderings are provided and the caption field is found */
3144
- 'default-orderings.caption': string; /** Title for the default ordering/SortOrder if no orderings are provided and the description field is found */
3145
- 'default-orderings.description': string; /** Title for the default ordering/SortOrder if no orderings are provided and the header field is found */
3146
- 'default-orderings.header': string; /** Title for the default ordering/SortOrder if no orderings are provided and the heading field is found */
3147
- 'default-orderings.heading': string; /** Title for the default ordering/SortOrder if no orderings are provided and the label field is found */
3148
- 'default-orderings.label': string; /** Title for the default ordering/SortOrder if no orderings are provided and the name field is found */
3149
- 'default-orderings.name': string; /** Title for the default ordering/SortOrder if no orderings are provided and the title field is found */
3150
- 'default-orderings.title': string; /** Label for action that closes divergence inspector */
3151
- 'divergence.action.close.label': string; /** Label for action that marks divergence as resolved */
3152
- 'divergence.action.markResolved.label': string; /** Label for action that moves inspector to the next divergence in the document */
3153
- 'divergence.action.next.label': string; /** Label for action that moves inspector to the previous divergence in the document */
3154
- 'divergence.action.previous.label': string; /** Label for action that replaces the node's value in the current version with its latest value in the upstream version */
3155
- 'divergence.action.takeFromUpstream.label': string; /** Verb to describe the node's value changed */
3156
- 'divergence.effect.changed': string; /** Summary of the change that occurred */
3157
- 'divergence.effect.summary': string; /** Description of the position of the current divergence being inspected, compared to the total count of divergences */
3158
- 'divergence.pagination': string; /** Label for divergence in a single node */
3159
- 'divergence.unresolved-divergence_one': string; /** Label for divergences in multiple nodes */
3235
+ 'configuration-issues.button.label': string;
3236
+ /** Tooltip displayed on configuration issues button */
3237
+ 'configuration-issues.button.tooltip': string;
3238
+ /** The fallback title for an ordering menu item if no localized titles are provided. */
3239
+ 'default-menu-item.fallback-title': string;
3240
+ /** Title for the default ordering/SortOrder if no orderings are provided and the caption field is found */
3241
+ 'default-orderings.caption': string;
3242
+ /** Title for the default ordering/SortOrder if no orderings are provided and the description field is found */
3243
+ 'default-orderings.description': string;
3244
+ /** Title for the default ordering/SortOrder if no orderings are provided and the header field is found */
3245
+ 'default-orderings.header': string;
3246
+ /** Title for the default ordering/SortOrder if no orderings are provided and the heading field is found */
3247
+ 'default-orderings.heading': string;
3248
+ /** Title for the default ordering/SortOrder if no orderings are provided and the label field is found */
3249
+ 'default-orderings.label': string;
3250
+ /** Title for the default ordering/SortOrder if no orderings are provided and the name field is found */
3251
+ 'default-orderings.name': string;
3252
+ /** Title for the default ordering/SortOrder if no orderings are provided and the title field is found */
3253
+ 'default-orderings.title': string;
3254
+ /** Label for action that closes divergence inspector */
3255
+ 'divergence.action.close.label': string;
3256
+ /** Label for action that marks divergence as resolved */
3257
+ 'divergence.action.markResolved.label': string;
3258
+ /** Label for action that moves inspector to the next divergence in the document */
3259
+ 'divergence.action.next.label': string;
3260
+ /** Label for action that moves inspector to the previous divergence in the document */
3261
+ 'divergence.action.previous.label': string;
3262
+ /** Label for action that replaces the node's value in the current version with its latest value in the upstream version */
3263
+ 'divergence.action.takeFromUpstream.label': string;
3264
+ /** Verb to describe the node's value changed */
3265
+ 'divergence.effect.changed': string;
3266
+ /** Summary of the change that occurred */
3267
+ 'divergence.effect.summary': string;
3268
+ /** Description of the position of the current divergence being inspected, compared to the total count of divergences */
3269
+ 'divergence.pagination': string;
3270
+ /** Label for divergence in a single node */
3271
+ 'divergence.unresolved-divergence_one': string;
3272
+ /** Label for divergences in multiple nodes */
3160
3273
  'divergence.unresolved-divergence_other': string;
3161
3274
  /** --- Document inventory --- */
3162
3275
  /** The label used in the feedback dialog asking how easy the document group inventory is to use */
3163
- 'document-group-inventory.feedback.sentiment-label': string; /** The label for the input that filters the variants in the document group inventory */
3164
- 'document-group-inventory.filter-string.label': string; /** The document inventory title (singular) */
3165
- 'document-group-inventory.title': string; /** The document inventory title (plural) */
3166
- 'document-group-inventory.title_one': string; /** The document inventory title (plural) */
3167
- 'document-group-inventory.title_other': string; /** The label text that indicates an item in the document group inventory is currently being viewed */
3276
+ 'document-group-inventory.feedback.sentiment-label': string;
3277
+ /** The label for the input that filters the variants in the document group inventory */
3278
+ 'document-group-inventory.filter-string.label': string;
3279
+ /** The document inventory title (singular) */
3280
+ 'document-group-inventory.title': string;
3281
+ /** The document inventory title (plural) */
3282
+ 'document-group-inventory.title_one': string;
3283
+ /** The document inventory title (plural) */
3284
+ 'document-group-inventory.title_other': string;
3285
+ /** The label text that indicates an item in the document group inventory is currently being viewed */
3168
3286
  'document-group-inventory.viewing-item-label': string;
3169
3287
  /** --- Document group --- */
3170
3288
  /** The label given to a document group's base variant */
3171
- 'document-group.base-variant': string; /** The text in the "Cancel" button in the confirm delete dialog that cancels the action */
3172
- 'document-group.delete.cancel-button.text': string; /** Used in `document-group.delete.cdr-summary.title` */
3173
- 'document-group.delete.cdr-summary.document-count_one': string; /** Used in `document-group.delete.cdr-summary.title` */
3174
- 'document-group.delete.cdr-summary.document-count_other': string; /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
3175
- 'document-group.delete.cdr-summary.subtitle_one': string; /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
3176
- 'document-group.delete.cdr-summary.subtitle_other': string; /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
3177
- 'document-group.delete.cdr-summary.subtitle_unavailable_one': string; /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
3178
- 'document-group.delete.cdr-summary.subtitle_unavailable_other': string; /** The text that appears in the title `<summary>` that includes the list of CDRs (singular) */
3179
- 'document-group.delete.cdr-summary.title_one': string; /** The text that appears in the title `<summary>` that includes the list of CDRs (plural) */
3180
- 'document-group.delete.cdr-summary.title_other': string; /** Appears when hovering over the copy button to copy */
3181
- 'document-group.delete.cdr-table.copy-id-button.tooltip': string; /** The header for the dataset column in the list of cross-dataset references found */
3182
- 'document-group.delete.cdr-table.dataset.label': string; /** The header for the document ID column in the list of cross-dataset references found */
3183
- 'document-group.delete.cdr-table.document-id.label': string; /** The toast title when the copy button has been clicked but copying failed */
3184
- 'document-group.delete.cdr-table.id-copied-toast.title-failed': string; /** The header for the project ID column in the list of cross-dataset references found */
3185
- 'document-group.delete.cdr-table.project-id.label': string; /** The text in the "Delete now" button in the confirm delete dialog that confirms the action (singular) */
3186
- 'document-group.delete.confirm-button.text_one': string; /** The text in the "Delete now" button in the confirm delete dialog that confirms the action (plural) */
3187
- 'document-group.delete.confirm-button.text_other': string; /** The message shown after deletion fails */
3188
- 'document-group.delete.error.message': string; /** Shown if there are references to other documents but the user does not have the permission to see the relevant document IDs */
3189
- 'document-group.delete.other-reference-count.title_one': string; /** Shown if there are references to other documents but the user does not have the permission to see the relevant document IDs */
3190
- 'document-group.delete.other-reference-count.title_other': string; /** Text in the tooltip of this component if hovering over the info icon */
3191
- 'document-group.delete.other-reference-count.tooltip': string; /** Appears when unable to render a document preview in the referring document list */
3192
- 'document-group.delete.preview-item.preview-unavailable.subtitle': string; /** Appears when unable to render a document preview in the referring document list */
3193
- 'document-group.delete.preview-item.preview-unavailable.title': string; /** Tells the user the count of how many other referring documents there are before listing them. (singular) */
3194
- 'document-group.delete.referring-document-count.text_one': string; /** Tells the user the count of how many other referring documents there are before listing them. (plural) */
3195
- 'document-group.delete.referring-document-count.text_other': string; /** Describes the list of documents that refer to the one trying to be deleted (delete) */
3196
- 'document-group.delete.referring-documents-descriptor.text': string; /** Header of the delete dialog. `count` controls pluralization; `subject` is a translated noun (see `document-group.subject.*`) (singular) */
3197
- 'document-group.delete.title_one': string; /** Header of the delete dialog. `count` controls pluralization; `subject` is a translated noun (see `document-group.subject.*`) (plural) */
3198
- 'document-group.delete.title_other': string; /** Translated noun used as the `{{subject}}` value in document group strings such as `document-group.delete.title` (singular) */
3199
- 'document-group.subject.variant_one': string; /** Translated noun used as the `{{subject}}` value in document group strings such as `document-group.delete.title` (plural) */
3200
- 'document-group.subject.variant_other': string; /** Translated noun used as the `{{subject}}` value in document group strings such as `document-group.delete.title` (singular) */
3201
- 'document-group.subject.version_one': string; /** Translated noun used as the `{{subject}}` value in document group strings such as `document-group.delete.title` (plural) */
3202
- 'document-group.subject.version_other': string; /** Label to show in the document footer indicating the creation date of the document */
3203
- 'document-status.created': string; /** Label to show in the document status indicating the date of the status */
3204
- 'document-status.date': string; /** Label to show in the document footer indicating the last edited date of the document */
3205
- 'document-status.edited': string; /** Label to show in the document footer status line when a document was last published */
3206
- 'document-status.last-published': string; /** Label to show in the document footer indicating the document is not published*/
3207
- 'document-status.not-published': string; /** Label to show in the document footer indicating the published date of the document */
3208
- 'document-status.published': string; /** Label to show in the document footer indicating the revision from date of the document */
3209
- 'document-status.revision-from': string; /** Label to show in the document footer indicating that the revision was not found */
3210
- 'document-status.revision-not-found': string; /** Toast description shown when saving changes is taking longer than expected */
3211
- 'document-store.slow-commit.description': string; /** Toast title shown when saving changes is taking longer than expected */
3212
- 'document-store.slow-commit.title': string; /** Toast title shown when a document's initial value could not be resolved */
3289
+ 'document-group.base-variant': string;
3290
+ /** The text in the "Cancel" button in the confirm delete dialog that cancels the action */
3291
+ 'document-group.delete.cancel-button.text': string;
3292
+ /** Used in `document-group.delete.cdr-summary.title` */
3293
+ 'document-group.delete.cdr-summary.document-count_one': string;
3294
+ /** Used in `document-group.delete.cdr-summary.title` */
3295
+ 'document-group.delete.cdr-summary.document-count_other': string;
3296
+ /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
3297
+ 'document-group.delete.cdr-summary.subtitle_one': string;
3298
+ /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
3299
+ 'document-group.delete.cdr-summary.subtitle_other': string;
3300
+ /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
3301
+ 'document-group.delete.cdr-summary.subtitle_unavailable_one': string;
3302
+ /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
3303
+ 'document-group.delete.cdr-summary.subtitle_unavailable_other': string;
3304
+ /** The text that appears in the title `<summary>` that includes the list of CDRs (singular) */
3305
+ 'document-group.delete.cdr-summary.title_one': string;
3306
+ /** The text that appears in the title `<summary>` that includes the list of CDRs (plural) */
3307
+ 'document-group.delete.cdr-summary.title_other': string;
3308
+ /** Appears when hovering over the copy button to copy */
3309
+ 'document-group.delete.cdr-table.copy-id-button.tooltip': string;
3310
+ /** The header for the dataset column in the list of cross-dataset references found */
3311
+ 'document-group.delete.cdr-table.dataset.label': string;
3312
+ /** The header for the document ID column in the list of cross-dataset references found */
3313
+ 'document-group.delete.cdr-table.document-id.label': string;
3314
+ /** The toast title when the copy button has been clicked but copying failed */
3315
+ 'document-group.delete.cdr-table.id-copied-toast.title-failed': string;
3316
+ /** The header for the project ID column in the list of cross-dataset references found */
3317
+ 'document-group.delete.cdr-table.project-id.label': string;
3318
+ /** The text in the "Delete now" button in the confirm delete dialog that confirms the action (singular) */
3319
+ 'document-group.delete.confirm-button.text_one': string;
3320
+ /** The text in the "Delete now" button in the confirm delete dialog that confirms the action (plural) */
3321
+ 'document-group.delete.confirm-button.text_other': string;
3322
+ /** The message shown after deletion fails */
3323
+ 'document-group.delete.error.message': string;
3324
+ /** Shown if there are references to other documents but the user does not have the permission to see the relevant document IDs */
3325
+ 'document-group.delete.other-reference-count.title_one': string;
3326
+ /** Shown if there are references to other documents but the user does not have the permission to see the relevant document IDs */
3327
+ 'document-group.delete.other-reference-count.title_other': string;
3328
+ /** Text in the tooltip of this component if hovering over the info icon */
3329
+ 'document-group.delete.other-reference-count.tooltip': string;
3330
+ /** Appears when unable to render a document preview in the referring document list */
3331
+ 'document-group.delete.preview-item.preview-unavailable.subtitle': string;
3332
+ /** Appears when unable to render a document preview in the referring document list */
3333
+ 'document-group.delete.preview-item.preview-unavailable.title': string;
3334
+ /** Tells the user the count of how many other referring documents there are before listing them. (singular) */
3335
+ 'document-group.delete.referring-document-count.text_one': string;
3336
+ /** Tells the user the count of how many other referring documents there are before listing them. (plural) */
3337
+ 'document-group.delete.referring-document-count.text_other': string;
3338
+ /** Describes the list of documents that refer to the one trying to be deleted (delete) */
3339
+ 'document-group.delete.referring-documents-descriptor.text': string;
3340
+ /** Header of the delete dialog. `count` controls pluralization; `subject` is a translated noun (see `document-group.subject.*`) (singular) */
3341
+ 'document-group.delete.title_one': string;
3342
+ /** Header of the delete dialog. `count` controls pluralization; `subject` is a translated noun (see `document-group.subject.*`) (plural) */
3343
+ 'document-group.delete.title_other': string;
3344
+ /** Translated noun used as the `{{subject}}` value in document group strings such as `document-group.delete.title` (singular) */
3345
+ 'document-group.subject.variant_one': string;
3346
+ /** Translated noun used as the `{{subject}}` value in document group strings such as `document-group.delete.title` (plural) */
3347
+ 'document-group.subject.variant_other': string;
3348
+ /** Translated noun used as the `{{subject}}` value in document group strings such as `document-group.delete.title` (singular) */
3349
+ 'document-group.subject.version_one': string;
3350
+ /** Translated noun used as the `{{subject}}` value in document group strings such as `document-group.delete.title` (plural) */
3351
+ 'document-group.subject.version_other': string;
3352
+ /** Label to show in the document footer indicating the creation date of the document */
3353
+ 'document-status.created': string;
3354
+ /** Label to show in the document status indicating the date of the status */
3355
+ 'document-status.date': string;
3356
+ /** Label to show in the document footer indicating the last edited date of the document */
3357
+ 'document-status.edited': string;
3358
+ /** Label to show in the document footer status line when a document was last published */
3359
+ 'document-status.last-published': string;
3360
+ /** Label to show in the document footer indicating the document is not published*/
3361
+ 'document-status.not-published': string;
3362
+ /** Label to show in the document footer indicating the published date of the document */
3363
+ 'document-status.published': string;
3364
+ /** Label to show in the document footer indicating the revision from date of the document */
3365
+ 'document-status.revision-from': string;
3366
+ /** Label to show in the document footer indicating that the revision was not found */
3367
+ 'document-status.revision-not-found': string;
3368
+ /** Toast description shown when saving changes is taking longer than expected */
3369
+ 'document-store.slow-commit.description': string;
3370
+ /** Toast title shown when saving changes is taking longer than expected */
3371
+ 'document-store.slow-commit.title': string;
3372
+ /** Toast title shown when a document's initial value could not be resolved */
3213
3373
  'document.initial-value.error.title': string;
3214
3374
  /**
3215
3375
  * Toast description shown when a document's initial value could not be
3216
3376
  * resolved. Includes the underlying error message.
3217
3377
  */
3218
- 'document.initial-value.error.description': string; /** Label to indicate that a document type was not found */
3219
- 'document.type.not-found': string; /** Error message shown when an action cannot be performed */
3220
- 'errors.unable-to-perform-action': string; /** The value of the <code>_key</code> property must be a unique string. */
3221
- 'form.error.duplicate-keys-alert.details.additional-description': string; /** This usually happens when items are created using an API client, and the <code>_key</code> property of each elements has been generated non-uniquely. */
3222
- 'form.error.duplicate-keys-alert.details.description': string; /** Developer info */
3223
- 'form.error.duplicate-keys-alert.details.title': string; /** Generate unique keys */
3224
- 'form.error.duplicate-keys-alert.generate-button.text': string; /** Several items in this list share the same identifier (key). Every item must have an unique identifier. */
3225
- 'form.error.duplicate-keys-alert.summary': string; /** Non-unique keys */
3226
- 'form.error.duplicate-keys-alert.title': string; /** Error text shown when a field with a given name cannot be found in the schema or is conditionally hidden but explicitly told to render */
3227
- 'form.error.field-not-found': string; /** Add missing keys */
3228
- 'form.error.missing-keys-alert.add-button.text': string; /** The value of the <code>_key</code> property must be a unique string. */
3229
- 'form.error.missing-keys-alert.details.additional-description': string; /** This usually happens when items are created using an API client, and the <code>_key</code> property has not been included. */
3230
- 'form.error.missing-keys-alert.details.description': string; /** Developer info */
3231
- 'form.error.missing-keys-alert.details.title': string; /** Some items in the list are missing their keys. This must be fixed in order to edit the list. */
3232
- 'form.error.missing-keys-alert.summary': string; /** Missing keys */
3233
- 'form.error.missing-keys-alert.title': string; /** This usually happens when items are created using an API client, or when a custom input component has added invalid data to the list. */
3234
- 'form.error.mixed-array-alert.details.description': string; /** Developer info */
3235
- 'form.error.mixed-array-alert.details.title': string; /** Remove non-object values */
3236
- 'form.error.mixed-array-alert.remove-button.text': string; /** Some items in this list are not objects. This must be fixed in order to edit the list. */
3237
- 'form.error.mixed-array-alert.summary': string; /** Invalid list values */
3238
- 'form.error.mixed-array-alert.title': string; /** Error text shown when form is unable to find an array item at a given indexed path */
3239
- 'form.error.no-array-item-at-index': string; /** Error text shown when form is unable to find an array item at a given keyed path */
3240
- 'form.error.no-array-item-at-key': string; /** The title above the error call stack output related to the crash */
3241
- 'form.error.unhandled-runtime-error.call-stack.title': string; /** The title above the error component stack provided by React's underlying ErrorBoundary component */
3242
- 'form.error.unhandled-runtime-error.component-stack.title': string; /** The error message for the unhandled error that crashed the Input component during render */
3243
- 'form.error.unhandled-runtime-error.error-message': string; /** The title for the error card rendered inside a field in place of a crashing input */
3244
- 'form.error.unhandled-runtime-error.title': string; /** Form field deprecated label */
3245
- 'form.field.deprecated-label': string; /** Fallback title shown above field if it has no defined title */
3246
- 'form.field.untitled-field-label': string; /** Accessibility label for the icon that indicates the field has a validation error */
3247
- 'form.validation.has-error-aria-label': string; /** Accessibility label for the icon that indicates the field has validation information */
3248
- 'form.validation.has-info-aria-label': string; /** Accessibility label for the icon that indicates the field has a validation warning */
3249
- 'form.validation.has-warning-aria-label': string; /** Text shown when summarizing validation information, when the field has one or more errors */
3378
+ 'document.initial-value.error.description': string;
3379
+ /** Label to indicate that a document type was not found */
3380
+ 'document.type.not-found': string;
3381
+ /** Error message shown when an action cannot be performed */
3382
+ 'errors.unable-to-perform-action': string;
3383
+ /** The value of the <code>_key</code> property must be a unique string. */
3384
+ 'form.error.duplicate-keys-alert.details.additional-description': string;
3385
+ /** This usually happens when items are created using an API client, and the <code>_key</code> property of each elements has been generated non-uniquely. */
3386
+ 'form.error.duplicate-keys-alert.details.description': string;
3387
+ /** Developer info */
3388
+ 'form.error.duplicate-keys-alert.details.title': string;
3389
+ /** Generate unique keys */
3390
+ 'form.error.duplicate-keys-alert.generate-button.text': string;
3391
+ /** Several items in this list share the same identifier (key). Every item must have an unique identifier. */
3392
+ 'form.error.duplicate-keys-alert.summary': string;
3393
+ /** Non-unique keys */
3394
+ 'form.error.duplicate-keys-alert.title': string;
3395
+ /** Error text shown when a field with a given name cannot be found in the schema or is conditionally hidden but explicitly told to render */
3396
+ 'form.error.field-not-found': string;
3397
+ /** Add missing keys */
3398
+ 'form.error.missing-keys-alert.add-button.text': string;
3399
+ /** The value of the <code>_key</code> property must be a unique string. */
3400
+ 'form.error.missing-keys-alert.details.additional-description': string;
3401
+ /** This usually happens when items are created using an API client, and the <code>_key</code> property has not been included. */
3402
+ 'form.error.missing-keys-alert.details.description': string;
3403
+ /** Developer info */
3404
+ 'form.error.missing-keys-alert.details.title': string;
3405
+ /** Some items in the list are missing their keys. This must be fixed in order to edit the list. */
3406
+ 'form.error.missing-keys-alert.summary': string;
3407
+ /** Missing keys */
3408
+ 'form.error.missing-keys-alert.title': string;
3409
+ /** This usually happens when items are created using an API client, or when a custom input component has added invalid data to the list. */
3410
+ 'form.error.mixed-array-alert.details.description': string;
3411
+ /** Developer info */
3412
+ 'form.error.mixed-array-alert.details.title': string;
3413
+ /** Remove non-object values */
3414
+ 'form.error.mixed-array-alert.remove-button.text': string;
3415
+ /** Some items in this list are not objects. This must be fixed in order to edit the list. */
3416
+ 'form.error.mixed-array-alert.summary': string;
3417
+ /** Invalid list values */
3418
+ 'form.error.mixed-array-alert.title': string;
3419
+ /** Error text shown when form is unable to find an array item at a given indexed path */
3420
+ 'form.error.no-array-item-at-index': string;
3421
+ /** Error text shown when form is unable to find an array item at a given keyed path */
3422
+ 'form.error.no-array-item-at-key': string;
3423
+ /** The title above the error call stack output related to the crash */
3424
+ 'form.error.unhandled-runtime-error.call-stack.title': string;
3425
+ /** The title above the error component stack provided by React's underlying ErrorBoundary component */
3426
+ 'form.error.unhandled-runtime-error.component-stack.title': string;
3427
+ /** The error message for the unhandled error that crashed the Input component during render */
3428
+ 'form.error.unhandled-runtime-error.error-message': string;
3429
+ /** The title for the error card rendered inside a field in place of a crashing input */
3430
+ 'form.error.unhandled-runtime-error.title': string;
3431
+ /** Form field deprecated label */
3432
+ 'form.field.deprecated-label': string;
3433
+ /** Fallback title shown above field if it has no defined title */
3434
+ 'form.field.untitled-field-label': string;
3435
+ /** Accessibility label for the icon that indicates the field has a validation error */
3436
+ 'form.validation.has-error-aria-label': string;
3437
+ /** Accessibility label for the icon that indicates the field has validation information */
3438
+ 'form.validation.has-info-aria-label': string;
3439
+ /** Accessibility label for the icon that indicates the field has a validation warning */
3440
+ 'form.validation.has-warning-aria-label': string;
3441
+ /** Text shown when summarizing validation information, when the field has one or more errors */
3250
3442
  'form.validation.summary.errors-count_one': string;
3251
- 'form.validation.summary.errors-count_other': string; /** Text shown when summarizing validation information, when the field has one or more warnings */
3443
+ 'form.validation.summary.errors-count_other': string;
3444
+ /** Text shown when summarizing validation information, when the field has one or more warnings */
3252
3445
  'form.validation.summary.warnings-count_one': string;
3253
- 'form.validation.summary.warnings-count_other': string; /** Tooltip for free trial navbar button indicating remaining days */
3446
+ 'form.validation.summary.warnings-count_other': string;
3447
+ /** Tooltip for free trial navbar button indicating remaining days */
3254
3448
  'free-trial.tooltip.days-count_one': string;
3255
- 'free-trial.tooltip.days-count_other': string; /** Tooltip for free trial navbar button, once trial has ended */
3449
+ 'free-trial.tooltip.days-count_other': string;
3450
+ /** Tooltip for free trial navbar button, once trial has ended */
3256
3451
  'free-trial.tooltip.trial-finished': string;
3257
3452
  /**
3258
3453
  * Label for "contact sales" call to action
@@ -3268,431 +3463,828 @@ declare const studioLocaleStrings: {
3268
3463
  * Label for "join our community" call to action
3269
3464
  * These are titles for fallback links in the event the help & resources endpoint isn't able to be fetched
3270
3465
  */
3271
- 'help-resources.action.join-our-community': string; /** Information for what the latest sanity version is */
3272
- 'help-resources.latest-sanity-version': string; /** Text for link to register a studio */
3273
- 'help-resources.register-studio': string; /** Name of the sanity studio */
3274
- 'help-resources.studio': string; /** Menu item for registered studios (i.e. copies app id) */
3275
- 'help-resources.studio-app-id': string; /** Menu item for reloading Studio to update */
3276
- 'help-resources.studio-auto-update-now': string; /** Information for what studio version the current studio is running */
3277
- 'help-resources.studio-version': string; /** Title for help and resources menus */
3278
- 'help-resources.title': string; /** Label for studio's which are up to date */
3279
- 'help-resources.up-to-date': string; /** Version text */
3280
- 'help-resources.version': string; /**Incoming references inspector title */
3281
- 'incoming-references.title': string; /** Text for button to cancel an ongoing upload */
3282
- 'input.files.common.cancel-upload': string; /** Text for menuitem upload button default asset source */
3283
- 'input.files.common.upload-placeholder.file-input-button.default-source.badge': string; /** Text for file input button in upload placeholder */
3284
- 'input.files.common.upload-placeholder.file-input-button.text': string; /** Uploading <FileName/> */
3285
- 'input.files.common.upload-progress': string; /** The referenced document cannot be opened, because the URL failed to be resolved */
3286
- 'input.reference.document-cannot-be-opened.failed-to-resolve-url': string; /** Label for adding item after a specific array item */
3287
- 'inputs.array.action.add-after': string; /** Label for adding item before a specific array item */
3288
- 'inputs.array.action.add-before': string; /** Label for adding array item action when the schema allows for only one schema type */
3466
+ 'help-resources.action.join-our-community': string;
3467
+ /** Information for what the latest sanity version is */
3468
+ 'help-resources.latest-sanity-version': string;
3469
+ /** Text for link to register a studio */
3470
+ 'help-resources.register-studio': string;
3471
+ /** Name of the sanity studio */
3472
+ 'help-resources.studio': string;
3473
+ /** Menu item for registered studios (i.e. copies app id) */
3474
+ 'help-resources.studio-app-id': string;
3475
+ /** Menu item for reloading Studio to update */
3476
+ 'help-resources.studio-auto-update-now': string;
3477
+ /** Information for what studio version the current studio is running */
3478
+ 'help-resources.studio-version': string;
3479
+ /** Title for help and resources menus */
3480
+ 'help-resources.title': string;
3481
+ /** Label for studio's which are up to date */
3482
+ 'help-resources.up-to-date': string;
3483
+ /** Version text */
3484
+ 'help-resources.version': string;
3485
+ /**Incoming references inspector title */
3486
+ 'incoming-references.title': string;
3487
+ /** Text for button to cancel an ongoing upload */
3488
+ 'input.files.common.cancel-upload': string;
3489
+ /** Text for menuitem upload button default asset source */
3490
+ 'input.files.common.upload-placeholder.file-input-button.default-source.badge': string;
3491
+ /** Text for file input button in upload placeholder */
3492
+ 'input.files.common.upload-placeholder.file-input-button.text': string;
3493
+ /** Uploading <FileName/> */
3494
+ 'input.files.common.upload-progress': string;
3495
+ /** The referenced document cannot be opened, because the URL failed to be resolved */
3496
+ 'input.reference.document-cannot-be-opened.failed-to-resolve-url': string;
3497
+ /** Label for adding item after a specific array item */
3498
+ 'inputs.array.action.add-after': string;
3499
+ /** Label for adding item before a specific array item */
3500
+ 'inputs.array.action.add-before': string;
3501
+ /** Label for adding array item action when the schema allows for only one schema type */
3289
3502
  'inputs.array.action.add-item': string;
3290
3503
  /**
3291
3504
  * Label for adding one array item action when the schema allows for multiple schema types,
3292
3505
  * eg. will prompt the user to select a type once triggered
3293
3506
  */
3294
- 'inputs.array.action.add-item-select-type': string; /** Label for copying an array item */
3295
- 'inputs.array.action.copy': string; /** Array drag handle button tooltip */
3296
- 'inputs.array.action.drag.tooltip': string; /** Label for duplicating an array item */
3297
- 'inputs.array.action.duplicate': string; /** Label for editing the item of a specific type, eg "Edit Person" */
3298
- 'inputs.array.action.edit': string; /** Tooltip text explaining why adding items is disabled when array max is reached */
3299
- 'inputs.array.action.max-reached': string; /** Label for removing an array item action */
3300
- 'inputs.array.action.remove': string; /** Label for removing action when an array item has an error */
3301
- 'inputs.array.action.remove-invalid-item': string; /** Label for viewing the item of a specific type, eg "View Person" */
3302
- 'inputs.array.action.view': string; /** Error description for the array item tooltip that explains that the current item can still be moved or deleted but not edited since the schema definition is not found */
3303
- 'inputs.array.error.can-delete-but-no-edit-description': string; /** Error label for toast when array could not resolve the initial value */
3304
- 'inputs.array.error.cannot-resolve-initial-value-title': string; /** Error label for toast when trying to upload one array item of a type that cannot be converted to array */
3305
- 'inputs.array.error.cannot-upload-unable-to-convert_one': string; /** Error label for toast when trying to upload multiple array items of a type that cannot be converted to array */
3306
- 'inputs.array.error.cannot-upload-unable-to-convert_other': string; /** Error description for the array item tooltip that explains that the current type item is not valid for the list */
3307
- 'inputs.array.error.current-schema-not-declare-description': string; /** Error description to show how the item is being represented in the json format */
3308
- 'inputs.array.error.json-representation-description': string; /** Error description for the array item tooltip that explains what the error means with more context */
3309
- 'inputs.array.error.type-is-incompatible-prompt': string; /** Error title for when an item type within an array input is incompatible, used in the tooltip */
3310
- 'inputs.array.error.type-is-incompatible-title': string; /** Error label for unexpected errors in the Array Input */
3311
- 'inputs.array.error.unexpected-error': string; /** Label for the array insert menu all items filter */
3312
- 'inputs.array.insert-menu.filter.all-items': string; /** Label for when the array insert menu search shows no items */
3313
- 'inputs.array.insert-menu.search.no-results': string; /** Placeholder for the array insert menu search field */
3314
- 'inputs.array.insert-menu.search.placeholder': string; /** Tooltip for the array insert menu grid view toggle */
3315
- 'inputs.array.insert-menu.toggle-grid-view.tooltip': string; /** Tooltip for the array insert menu list view toggle */
3316
- 'inputs.array.insert-menu.toggle-list-view.tooltip': string; /** Label for when the array input doesn't have any items */
3317
- 'inputs.array.no-items-label': string; /** Label for read only array fields */
3318
- 'inputs.array.read-only-label': string; /** Label for when the array input is resolving the initial value for the item */
3319
- 'inputs.array.resolving-initial-value': string; /** Tooltip content when boolean input is disabled */
3320
- 'inputs.boolean.disabled': string; /** Warning label when selected datetime is in the past */
3321
- 'inputs.dateTime.past-date-warning': string; /** Placeholder value for datetime input */
3322
- 'inputs.datetime.placeholder': string; /** Acessibility label for button to open file options menu */
3323
- 'inputs.file.actions-menu.file-options.aria-label': string; /** Unknown member kind: `{{kind}}` */
3324
- 'inputs.file.error.unknown-member-kind': string; /** The value of this field is not a valid file. Resetting this field will let you choose a new file. */
3325
- 'inputs.file.invalid-file-warning.description': string; /** Reset value */
3326
- 'inputs.file.invalid-file-warning.reset-button.text': string; /** Invalid file value */
3327
- 'inputs.file.invalid-file-warning.title': string; /** The upload could not be completed at this time. */
3328
- 'inputs.file.upload-failed.description': string; /** Upload failed */
3329
- 'inputs.file.upload-failed.title': string; /** Private access policy badge label */
3330
- 'inputs.files.common.access-policy.private.label': string; /** Private access policy badge tooltip */
3331
- 'inputs.files.common.access-policy.private.tooltip': string; /** Clear field */
3332
- 'inputs.files.common.actions-menu.clear-field.label': string; /** Copy URL */
3333
- 'inputs.files.common.actions-menu.copy-url.label': string; /** Download */
3334
- 'inputs.files.common.actions-menu.download.label': string; /** The URL is copied to the clipboard */
3335
- 'inputs.files.common.actions-menu.notification.url-copied': string; /** Open in source */
3336
- 'inputs.files.common.actions-menu.open-in-source.label': string; /** Replace */
3337
- 'inputs.files.common.actions-menu.replace.label': string; /** Upload */
3338
- 'inputs.files.common.actions-menu.upload.label': string; /** Drop to upload */
3339
- 'inputs.files.common.drop-message.drop-to-upload': string; /** Drop to upload `{{count}}` file */
3340
- 'inputs.files.common.drop-message.drop-to-upload-multi_one': string; /** Drop to upload `{{count}}` files */
3341
- 'inputs.files.common.drop-message.drop-to-upload-multi_other': string; /** Can't upload this file here */
3342
- 'inputs.files.common.drop-message.drop-to-upload.no-accepted-file-message_one': string; /** Can't upload any of these files here */
3343
- 'inputs.files.common.drop-message.drop-to-upload.no-accepted-file-message_other': string; /** `{{count}}` file can't be uploaded here */
3344
- 'inputs.files.common.drop-message.drop-to-upload.rejected-file-message_one': string; /** `{{count}}` files can't be uploaded here */
3345
- 'inputs.files.common.drop-message.drop-to-upload.rejected-file-message_other': string; /** Cannot upload `{{count}}` files */
3507
+ 'inputs.array.action.add-item-select-type': string;
3508
+ /** Label for copying an array item */
3509
+ 'inputs.array.action.copy': string;
3510
+ /** Array drag handle button tooltip */
3511
+ 'inputs.array.action.drag.tooltip': string;
3512
+ /** Label for duplicating an array item */
3513
+ 'inputs.array.action.duplicate': string;
3514
+ /** Label for editing the item of a specific type, eg "Edit Person" */
3515
+ 'inputs.array.action.edit': string;
3516
+ /** Tooltip text explaining why adding items is disabled when array max is reached */
3517
+ 'inputs.array.action.max-reached': string;
3518
+ /** Label for removing an array item action */
3519
+ 'inputs.array.action.remove': string;
3520
+ /** Label for removing action when an array item has an error */
3521
+ 'inputs.array.action.remove-invalid-item': string;
3522
+ /** Label for viewing the item of a specific type, eg "View Person" */
3523
+ 'inputs.array.action.view': string;
3524
+ /** Error description for the array item tooltip that explains that the current item can still be moved or deleted but not edited since the schema definition is not found */
3525
+ 'inputs.array.error.can-delete-but-no-edit-description': string;
3526
+ /** Error label for toast when array could not resolve the initial value */
3527
+ 'inputs.array.error.cannot-resolve-initial-value-title': string;
3528
+ /** Error label for toast when trying to upload one array item of a type that cannot be converted to array */
3529
+ 'inputs.array.error.cannot-upload-unable-to-convert_one': string;
3530
+ /** Error label for toast when trying to upload multiple array items of a type that cannot be converted to array */
3531
+ 'inputs.array.error.cannot-upload-unable-to-convert_other': string;
3532
+ /** Error description for the array item tooltip that explains that the current type item is not valid for the list */
3533
+ 'inputs.array.error.current-schema-not-declare-description': string;
3534
+ /** Error description to show how the item is being represented in the json format */
3535
+ 'inputs.array.error.json-representation-description': string;
3536
+ /** Error description for the array item tooltip that explains what the error means with more context */
3537
+ 'inputs.array.error.type-is-incompatible-prompt': string;
3538
+ /** Error title for when an item type within an array input is incompatible, used in the tooltip */
3539
+ 'inputs.array.error.type-is-incompatible-title': string;
3540
+ /** Error label for unexpected errors in the Array Input */
3541
+ 'inputs.array.error.unexpected-error': string;
3542
+ /** Label for the array insert menu all items filter */
3543
+ 'inputs.array.insert-menu.filter.all-items': string;
3544
+ /** Label for when the array insert menu search shows no items */
3545
+ 'inputs.array.insert-menu.search.no-results': string;
3546
+ /** Placeholder for the array insert menu search field */
3547
+ 'inputs.array.insert-menu.search.placeholder': string;
3548
+ /** Tooltip for the array insert menu grid view toggle */
3549
+ 'inputs.array.insert-menu.toggle-grid-view.tooltip': string;
3550
+ /** Tooltip for the array insert menu list view toggle */
3551
+ 'inputs.array.insert-menu.toggle-list-view.tooltip': string;
3552
+ /** Label for when the array input doesn't have any items */
3553
+ 'inputs.array.no-items-label': string;
3554
+ /** Label for read only array fields */
3555
+ 'inputs.array.read-only-label': string;
3556
+ /** Label for when the array input is resolving the initial value for the item */
3557
+ 'inputs.array.resolving-initial-value': string;
3558
+ /** Tooltip content when boolean input is disabled */
3559
+ 'inputs.boolean.disabled': string;
3560
+ /** Warning label when selected datetime is in the past */
3561
+ 'inputs.dateTime.past-date-warning': string;
3562
+ /** Placeholder value for datetime input */
3563
+ 'inputs.datetime.placeholder': string;
3564
+ /** Acessibility label for button to open file options menu */
3565
+ 'inputs.file.actions-menu.file-options.aria-label': string;
3566
+ /** Unknown member kind: `{{kind}}` */
3567
+ 'inputs.file.error.unknown-member-kind': string;
3568
+ /** The value of this field is not a valid file. Resetting this field will let you choose a new file. */
3569
+ 'inputs.file.invalid-file-warning.description': string;
3570
+ /** Reset value */
3571
+ 'inputs.file.invalid-file-warning.reset-button.text': string;
3572
+ /** Invalid file value */
3573
+ 'inputs.file.invalid-file-warning.title': string;
3574
+ /** The upload could not be completed at this time. */
3575
+ 'inputs.file.upload-failed.description': string;
3576
+ /** Upload failed */
3577
+ 'inputs.file.upload-failed.title': string;
3578
+ /** Private access policy badge label */
3579
+ 'inputs.files.common.access-policy.private.label': string;
3580
+ /** Private access policy badge tooltip */
3581
+ 'inputs.files.common.access-policy.private.tooltip': string;
3582
+ /** Clear field */
3583
+ 'inputs.files.common.actions-menu.clear-field.label': string;
3584
+ /** Copy URL */
3585
+ 'inputs.files.common.actions-menu.copy-url.label': string;
3586
+ /** Download */
3587
+ 'inputs.files.common.actions-menu.download.label': string;
3588
+ /** The URL is copied to the clipboard */
3589
+ 'inputs.files.common.actions-menu.notification.url-copied': string;
3590
+ /** Open in source */
3591
+ 'inputs.files.common.actions-menu.open-in-source.label': string;
3592
+ /** Replace */
3593
+ 'inputs.files.common.actions-menu.replace.label': string;
3594
+ /** Upload */
3595
+ 'inputs.files.common.actions-menu.upload.label': string;
3596
+ /** Drop to upload */
3597
+ 'inputs.files.common.drop-message.drop-to-upload': string;
3598
+ /** Drop to upload `{{count}}` file */
3599
+ 'inputs.files.common.drop-message.drop-to-upload-multi_one': string;
3600
+ /** Drop to upload `{{count}}` files */
3601
+ 'inputs.files.common.drop-message.drop-to-upload-multi_other': string;
3602
+ /** Can't upload this file here */
3603
+ 'inputs.files.common.drop-message.drop-to-upload.no-accepted-file-message_one': string;
3604
+ /** Can't upload any of these files here */
3605
+ 'inputs.files.common.drop-message.drop-to-upload.no-accepted-file-message_other': string;
3606
+ /** `{{count}}` file can't be uploaded here */
3607
+ 'inputs.files.common.drop-message.drop-to-upload.rejected-file-message_one': string;
3608
+ /** `{{count}}` files can't be uploaded here */
3609
+ 'inputs.files.common.drop-message.drop-to-upload.rejected-file-message_other': string;
3610
+ /** Cannot upload `{{count}}` files */
3346
3611
  'inputs.files.common.placeholder.cannot-upload-some-files_one': string;
3347
- 'inputs.files.common.placeholder.cannot-upload-some-files_other': string; /** Drag or paste type here */
3348
- 'inputs.files.common.placeholder.drag-or-paste-to-upload_file': string; /** Drag or paste image here */
3349
- 'inputs.files.common.placeholder.drag-or-paste-to-upload_image': string; /** Drop to upload file */
3350
- 'inputs.files.common.placeholder.drop-to-upload_file': string; /** Drop to upload image */
3351
- 'inputs.files.common.placeholder.drop-to-upload_image': string; /** Read only */
3352
- 'inputs.files.common.placeholder.read-only': string; /** Select asset source destination for files to upload */
3353
- 'inputs.files.common.placeholder.select-asset-source-upload-destination': string; /** Can't upload files here */
3354
- 'inputs.files.common.placeholder.upload-not-supported': string; /** Clear upload */
3355
- 'inputs.files.common.stale-upload-warning.clear': string; /** An upload has made no progress for at least `{{staleThresholdMinutes}}` minutes and likely got interrupted. You can safely clear the incomplete upload and try uploading again. */
3356
- 'inputs.files.common.stale-upload-warning.description': string; /** Incomplete upload */
3357
- 'inputs.files.common.stale-upload-warning.title': string; /** Select file */
3358
- 'inputs.files.select-dialog.title': string; /** Tooltip text for action to crop image */
3359
- 'inputs.image.actions-menu.crop-image-tooltip': string; /** Accessibility label for button to open image edit dialog */
3360
- 'inputs.image.actions-menu.edit-details.aria-label': string; /** Accessibility label for button to open image options menu */
3361
- 'inputs.image.actions-menu.options.aria-label': string; /** Cannot upload this file here */
3362
- 'inputs.image.drag-overlay.cannot-upload-here': string; /** Drop image to upload */
3363
- 'inputs.image.drag-overlay.drop-to-upload-image': string; /** This field is read only */
3364
- 'inputs.image.drag-overlay.this-field-is-read-only': string; /** Image could not be loaded due to possible access restrictions */
3365
- 'inputs.image.error.possible-access-restriction': string; /** Unknown member kind: `{{kind}}` */
3366
- 'inputs.image.error.unknown-member-kind': string; /** Edit hotspot and crop */
3367
- 'inputs.image.hotspot-dialog.title': string; /** The value of this field is not a valid image. Resetting this field will let you choose a new image. */
3368
- 'inputs.image.invalid-image-warning.description': string; /** Reset value */
3369
- 'inputs.image.invalid-image-warning.reset-button.text': string; /** Invalid image value */
3370
- 'inputs.image.invalid-image-warning.title': string; /** Preview of uploaded image */
3371
- 'inputs.image.preview-uploaded-image': string; /** Select image */
3372
- 'inputs.image.select-dialog.title': string; /** The upload could not be completed at this time. */
3373
- 'inputs.image.upload-error.description': string; /** Upload failed */
3374
- 'inputs.image.upload-error.title': string; /** Adjust the rectangle to crop image. Adjust the circle to specify the area that should always be visible. */
3375
- 'inputs.imagetool.description': string; /** Error: `{{errorMessage}}` */
3376
- 'inputs.imagetool.load-error': string; /** Hotspot & Crop */
3377
- 'inputs.imagetool.title': string; /** Warnings displayed to developers when using the crop/hotspot tool on vector images, notifying them that crops/hotspot are not respected when serving the image in vector format. For the crop/hotspot to apply, images must be served in a raster format such as JPG or PNG, by appending eg `fm=jpg` to the image url, or calling `format('jpg')` if using `@sanity/image-url` */
3378
- 'inputs.imagetool.vector-warning.developer-info': string; /** See developer info */
3379
- 'inputs.imagetool.vector-warning.expand-developer-info': string; /** Gotcha: Serving vector images with hotspot and crop from the Sanity Image API */
3380
- 'inputs.imagetool.vector-warning.title': string; /** Convert to `{{targetType}}` */
3381
- 'inputs.invalid-value.convert-button.text': string; /** The current value (<code>`{{actualType}}`</code>) */
3382
- 'inputs.invalid-value.current-type': string; /** The property value is stored as a value type that does not match the expected type. */
3383
- 'inputs.invalid-value.description': string; /** The value of this property must be of type <code>`{{validType}}`</code> according to the schema. */
3384
- 'inputs.invalid-value.details.description': string; /** Only the following types are valid here according to schema: */
3385
- 'inputs.invalid-value.details.multi-type-description': string; /** Mismatching value types typically occur when the schema has recently been changed. */
3386
- 'inputs.invalid-value.details.possible-reason': string; /** Developer info */
3612
+ 'inputs.files.common.placeholder.cannot-upload-some-files_other': string;
3613
+ /** Drag or paste type here */
3614
+ 'inputs.files.common.placeholder.drag-or-paste-to-upload_file': string;
3615
+ /** Drag or paste image here */
3616
+ 'inputs.files.common.placeholder.drag-or-paste-to-upload_image': string;
3617
+ /** Drop to upload file */
3618
+ 'inputs.files.common.placeholder.drop-to-upload_file': string;
3619
+ /** Drop to upload image */
3620
+ 'inputs.files.common.placeholder.drop-to-upload_image': string;
3621
+ /** Read only */
3622
+ 'inputs.files.common.placeholder.read-only': string;
3623
+ /** Select asset source destination for files to upload */
3624
+ 'inputs.files.common.placeholder.select-asset-source-upload-destination': string;
3625
+ /** Can't upload files here */
3626
+ 'inputs.files.common.placeholder.upload-not-supported': string;
3627
+ /** Clear upload */
3628
+ 'inputs.files.common.stale-upload-warning.clear': string;
3629
+ /** An upload has made no progress for at least `{{staleThresholdMinutes}}` minutes and likely got interrupted. You can safely clear the incomplete upload and try uploading again. */
3630
+ 'inputs.files.common.stale-upload-warning.description': string;
3631
+ /** Incomplete upload */
3632
+ 'inputs.files.common.stale-upload-warning.title': string;
3633
+ /** Select file */
3634
+ 'inputs.files.select-dialog.title': string;
3635
+ /** Tooltip text for action to crop image */
3636
+ 'inputs.image.actions-menu.crop-image-tooltip': string;
3637
+ /** Accessibility label for button to open image edit dialog */
3638
+ 'inputs.image.actions-menu.edit-details.aria-label': string;
3639
+ /** Accessibility label for button to open image options menu */
3640
+ 'inputs.image.actions-menu.options.aria-label': string;
3641
+ /** Cannot upload this file here */
3642
+ 'inputs.image.drag-overlay.cannot-upload-here': string;
3643
+ /** Drop image to upload */
3644
+ 'inputs.image.drag-overlay.drop-to-upload-image': string;
3645
+ /** This field is read only */
3646
+ 'inputs.image.drag-overlay.this-field-is-read-only': string;
3647
+ /** Image could not be loaded due to possible access restrictions */
3648
+ 'inputs.image.error.possible-access-restriction': string;
3649
+ /** Unknown member kind: `{{kind}}` */
3650
+ 'inputs.image.error.unknown-member-kind': string;
3651
+ /** Edit hotspot and crop */
3652
+ 'inputs.image.hotspot-dialog.title': string;
3653
+ /** The value of this field is not a valid image. Resetting this field will let you choose a new image. */
3654
+ 'inputs.image.invalid-image-warning.description': string;
3655
+ /** Reset value */
3656
+ 'inputs.image.invalid-image-warning.reset-button.text': string;
3657
+ /** Invalid image value */
3658
+ 'inputs.image.invalid-image-warning.title': string;
3659
+ /** Preview of uploaded image */
3660
+ 'inputs.image.preview-uploaded-image': string;
3661
+ /** Select image */
3662
+ 'inputs.image.select-dialog.title': string;
3663
+ /** The upload could not be completed at this time. */
3664
+ 'inputs.image.upload-error.description': string;
3665
+ /** Upload failed */
3666
+ 'inputs.image.upload-error.title': string;
3667
+ /** Adjust the rectangle to crop image. Adjust the circle to specify the area that should always be visible. */
3668
+ 'inputs.imagetool.description': string;
3669
+ /** Error: `{{errorMessage}}` */
3670
+ 'inputs.imagetool.load-error': string;
3671
+ /** Hotspot & Crop */
3672
+ 'inputs.imagetool.title': string;
3673
+ /** Warnings displayed to developers when using the crop/hotspot tool on vector images, notifying them that crops/hotspot are not respected when serving the image in vector format. For the crop/hotspot to apply, images must be served in a raster format such as JPG or PNG, by appending eg `fm=jpg` to the image url, or calling `format('jpg')` if using `@sanity/image-url` */
3674
+ 'inputs.imagetool.vector-warning.developer-info': string;
3675
+ /** See developer info */
3676
+ 'inputs.imagetool.vector-warning.expand-developer-info': string;
3677
+ /** Gotcha: Serving vector images with hotspot and crop from the Sanity Image API */
3678
+ 'inputs.imagetool.vector-warning.title': string;
3679
+ /** Convert to `{{targetType}}` */
3680
+ 'inputs.invalid-value.convert-button.text': string;
3681
+ /** The current value (<code>`{{actualType}}`</code>) */
3682
+ 'inputs.invalid-value.current-type': string;
3683
+ /** The property value is stored as a value type that does not match the expected type. */
3684
+ 'inputs.invalid-value.description': string;
3685
+ /** The value of this property must be of type <code>`{{validType}}`</code> according to the schema. */
3686
+ 'inputs.invalid-value.details.description': string;
3687
+ /** Only the following types are valid here according to schema: */
3688
+ 'inputs.invalid-value.details.multi-type-description': string;
3689
+ /** Mismatching value types typically occur when the schema has recently been changed. */
3690
+ 'inputs.invalid-value.details.possible-reason': string;
3691
+ /** Developer info */
3387
3692
  'inputs.invalid-value.details.title': string;
3388
3693
  /** -- Invalid Value Input -- */
3389
3694
  /** Reset value */
3390
- 'inputs.invalid-value.reset-button.text': string; /** Invalid property value */
3391
- 'inputs.invalid-value.title': string; /** Title for the "All fields" field group */
3392
- 'inputs.object.field-group-tabs.all-fields-title': string; /** Aria label for the "Field groups" select control on smaller screens */
3393
- 'inputs.object.field-group-tabs.aria-label': string; /** Text shown in field group select for a group with error validation */
3394
- 'inputs.object.field-group-tabs.validation-error': string; /** Text shown in field group select for a group with info validation */
3395
- 'inputs.object.field-group-tabs.validation-info': string; /** Text shown in field group select for a group with warning validation */
3396
- 'inputs.object.field-group-tabs.validation-warning': string; /** Read-only field description */
3397
- 'inputs.object.unknown-fields.read-only.description': string; /** Fallback description shown when the unknown reference preview cannot be loaded */
3398
- 'inputs.object.unknown-fields.reference.preview.unavailable': string; /** Remove field */
3399
- 'inputs.object.unknown-fields.remove-field-button.text': string; /** Encountered `{{count}}` fields that are not defined in the schema. */
3695
+ 'inputs.invalid-value.reset-button.text': string;
3696
+ /** Invalid property value */
3697
+ 'inputs.invalid-value.title': string;
3698
+ /** Title for the "All fields" field group */
3699
+ 'inputs.object.field-group-tabs.all-fields-title': string;
3700
+ /** Aria label for the "Field groups" select control on smaller screens */
3701
+ 'inputs.object.field-group-tabs.aria-label': string;
3702
+ /** Text shown in field group select for a group with error validation */
3703
+ 'inputs.object.field-group-tabs.validation-error': string;
3704
+ /** Text shown in field group select for a group with info validation */
3705
+ 'inputs.object.field-group-tabs.validation-info': string;
3706
+ /** Text shown in field group select for a group with warning validation */
3707
+ 'inputs.object.field-group-tabs.validation-warning': string;
3708
+ /** Read-only field description */
3709
+ 'inputs.object.unknown-fields.read-only.description': string;
3710
+ /** Fallback description shown when the unknown reference preview cannot be loaded */
3711
+ 'inputs.object.unknown-fields.reference.preview.unavailable': string;
3712
+ /** Remove field */
3713
+ 'inputs.object.unknown-fields.remove-field-button.text': string;
3714
+ /** Encountered `{{count}}` fields that are not defined in the schema. */
3400
3715
  'inputs.object.unknown-fields.warning.description_one': string;
3401
- 'inputs.object.unknown-fields.warning.description_other': string; /** Detailed description of unknown field warning */
3716
+ 'inputs.object.unknown-fields.warning.description_other': string;
3717
+ /** Detailed description of unknown field warning */
3402
3718
  'inputs.object.unknown-fields.warning.details.description_one': string;
3403
- 'inputs.object.unknown-fields.warning.details.description_other': string; /** Developer info */
3404
- 'inputs.object.unknown-fields.warning.details.title': string; /** Unknown field found */
3719
+ 'inputs.object.unknown-fields.warning.details.description_other': string;
3720
+ /** Developer info */
3721
+ 'inputs.object.unknown-fields.warning.details.title': string;
3722
+ /** Unknown field found */
3405
3723
  'inputs.object.unknown-fields.warning.title_one': string;
3406
- 'inputs.object.unknown-fields.warning.title_other': string; /** Collapse the editor to save screen space */
3407
- 'inputs.portable-text.action.collapse-editor': string; /** Aria label for action to edit an existing annotation */
3408
- 'inputs.portable-text.action.edit-annotation-aria-label': string; /** Expand the editor to give more editing space */
3409
- 'inputs.portable-text.action.expand-editor': string; /** Label label for action to insert a block of a given type (`{{typeName}}`) */
3410
- 'inputs.portable-text.action.insert-block': string; /** Accessibility label for action to insert a block of a given type (`{{typeName}}`) */
3411
- 'inputs.portable-text.action.insert-block-aria-label': string; /** Label for action to insert an inline object of a given type (`{{typeName}}`) */
3412
- 'inputs.portable-text.action.insert-inline-object': string; /** Accessibility label for action to insert an inline object of a given type (`{{typeName}}`) */
3413
- 'inputs.portable-text.action.insert-inline-object-aria-label': string; /** Aria label for action to remove an annotation */
3414
- 'inputs.portable-text.action.remove-annotation-aria-label': string; /** Label for activate on focus with context of click and not focused */
3415
- 'inputs.portable-text.activate-on-focus-message_click': string; /** Label for activate on focus with context of click and focused */
3416
- 'inputs.portable-text.activate-on-focus-message_click-focused': string; /** Label for activate on focus with context of tap and not focused */
3417
- 'inputs.portable-text.activate-on-focus-message_tap': string; /** Aria label for the annotation object */
3418
- 'inputs.portable-text.annotation-aria-label': string; /** Title for dialog that allows editing an annotation */
3419
- 'inputs.portable-text.annotation-editor.title': string; /** Title of the default "link" annotation */
3420
- 'inputs.portable-text.annotation.link': string; /** Aria label for the block object */
3421
- 'inputs.portable-text.block.aria-label': string; /** Label for action to edit a block item, in the case where it is editable */
3422
- 'inputs.portable-text.block.edit': string; /** Accessibility label for the button that opens the actions menu on blocks */
3423
- 'inputs.portable-text.block.open-menu-aria-label': string; /** Label for action to open a reference, in the case of block-level reference types */
3424
- 'inputs.portable-text.block.open-reference': string; /** Label for action to remove a block item */
3425
- 'inputs.portable-text.block.remove': string; /** Label for action to view a block item, in the case where it is read-only and thus cannot be edited */
3426
- 'inputs.portable-text.block.view': string; /** Title of the "code" decorator */
3427
- 'inputs.portable-text.decorator.code': string; /** Title of the "em" (emphasis) decorator */
3428
- 'inputs.portable-text.decorator.emphasis': string; /** Title of the "strike-through" decorator */
3429
- 'inputs.portable-text.decorator.strike-through': string; /** Title of the "strong" decorator */
3430
- 'inputs.portable-text.decorator.strong': string; /** Title of the "underline" decorator */
3431
- 'inputs.portable-text.decorator.underline': string; /** Placeholder text for when the editor is empty */
3432
- 'inputs.portable-text.empty-placeholder': string; /** Aria label for the block object */
3433
- 'inputs.portable-text.inline-block.aria-label': string; /** Label for action to edit an inline object item */
3434
- 'inputs.portable-text.inline-object.edit': string; /** Aria label for icon for action to edit an inline object item */
3435
- 'inputs.portable-text.inline-object.edit-aria-label': string; /** Label for action to remove an inline object item */
3436
- 'inputs.portable-text.inline-object.remove': string; /** Aria label for icon for action to remove an inline object item */
3437
- 'inputs.portable-text.inline-object.remove-aria-label': string; /** Disclaimer text shown on invalid Portable Text value, when an action is available to unblock the user, but it is not guaranteed to be safe */
3438
- 'inputs.portable-text.invalid-value.action-disclaimer': string; /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` has a child with key `{{childKey}}` of type `{{childType}}` which is not allowed by the schema definition */
3439
- 'inputs.portable-text.invalid-value.disallowed-child-type.action': string; /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a child with key `{{childKey}}` of type `{{childType}}` which is not allowed by the schema definition */
3440
- 'inputs.portable-text.invalid-value.disallowed-child-type.description': string; /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` has a type (`{{typeName}}`) that is not an allowed block type for this field */
3441
- 'inputs.portable-text.invalid-value.disallowed-type.action': string; /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` has a type (`{{typeName}}`) that is not an allowed block type for this field */
3442
- 'inputs.portable-text.invalid-value.disallowed-type.description': string; /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` contains no children */
3443
- 'inputs.portable-text.invalid-value.empty-children.action': string; /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` contains no children */
3444
- 'inputs.portable-text.invalid-value.empty-children.description': string; /** Label for the button to ignore invalid values in the Portable Text editor */
3445
- 'inputs.portable-text.invalid-value.ignore-button.text': string; /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` has a `_type` property that is set to `block`, but the block type defined in schema has a different name (`{{expectedTypeName}}`) */
3446
- 'inputs.portable-text.invalid-value.incorrect-block-type.action': string; /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` has a `_type` property that is set to `block`, but the block type defined in schema has a different name (`{{expectedTypeName}}`) */
3447
- 'inputs.portable-text.invalid-value.incorrect-block-type.description': string; /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` has a span with key `{{childKey}}` that has a missing or invalid `text` property */
3448
- 'inputs.portable-text.invalid-value.invalid-span-text.action': string; /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a span with key `{{childKey}}` that has a missing or invalid `text` property */
3449
- 'inputs.portable-text.invalid-value.invalid-span-text.description': string; /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property, but seems to be a block of type `{{expectedTypeName}}` */
3450
- 'inputs.portable-text.invalid-value.missing-block-type.action': string; /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property, but seems to be a block of type `{{expectedTypeName}}` */
3451
- 'inputs.portable-text.invalid-value.missing-block-type.description': string; /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` has a child at `{{index}}` which is missing `_key` property */
3452
- 'inputs.portable-text.invalid-value.missing-child-key.action': string; /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a child at `{{index}}` which is missing `_key` property */
3453
- 'inputs.portable-text.invalid-value.missing-child-key.description': string; /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` has a child with key `{{childKey}}` which is missing a `_type` property */
3454
- 'inputs.portable-text.invalid-value.missing-child-type.action': string; /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a child with key `{{childKey}}` which is missing a `_type` property */
3455
- 'inputs.portable-text.invalid-value.missing-child-type.description': string; /** Action presented when the Portable Text field value is invalid, when child at `{{index}}` is missing the required `_key` property */
3456
- 'inputs.portable-text.invalid-value.missing-key.action': string; /** Text explaining that the Portable Text field value is invalid, when child at `{{index}}` is missing the required `_key` property */
3457
- 'inputs.portable-text.invalid-value.missing-key.description': string; /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `children` property */
3458
- 'inputs.portable-text.invalid-value.missing-or-invalid-children.action': string; /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `children` property */
3459
- 'inputs.portable-text.invalid-value.missing-or-invalid-children.description': string; /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `markDefs` property */
3460
- 'inputs.portable-text.invalid-value.missing-or-invalid-markdefs.action': string; /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `markDefs` property */
3461
- 'inputs.portable-text.invalid-value.missing-or-invalid-markdefs.description': string; /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property */
3462
- 'inputs.portable-text.invalid-value.missing-type.action': string; /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property */
3463
- 'inputs.portable-text.invalid-value.missing-type.description': string; /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` contains a non-object child at index `{{index}}` */
3464
- 'inputs.portable-text.invalid-value.non-object-child.action': string; /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` contains a non-object child at index `{{index}}` */
3465
- 'inputs.portable-text.invalid-value.non-object-child.description': string; /** Action presented when the Portable Text field value is invalid, when the Portable Text field is not an array, or the array is empty */
3466
- 'inputs.portable-text.invalid-value.not-an-array.action': string; /** Text explaining that the Portable Text field value is invalid, when the Portable Text field is not an array, or the array is empty */
3467
- 'inputs.portable-text.invalid-value.not-an-array.description': string; /** Action presented when the Portable Text field value is invalid, when child at `{{index}}` is not an object */
3468
- 'inputs.portable-text.invalid-value.not-an-object.action': string; /** Text explaining that the Portable Text field value is invalid, when child at `{{index}}` is not an object */
3469
- 'inputs.portable-text.invalid-value.not-an-object.description': string; /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` contains marks (`{{orphanedMarks}}`) that are not supported by the current schema */
3470
- 'inputs.portable-text.invalid-value.orphaned-marks.action': string; /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` contains marks (`{{orphanedMarks}}`) that are not supported by the current schema */
3471
- 'inputs.portable-text.invalid-value.orphaned-marks.description': string; /** Title for the alert indicating that the Portable Text field has an invalid value */
3472
- 'inputs.portable-text.invalid-value.title': string; /** Title of "bulleted" list type */
3473
- 'inputs.portable-text.list-type.bullet': string; /** Title of numbered list type */
3474
- 'inputs.portable-text.list-type.number': string; /** Title of the "h1" block style */
3475
- 'inputs.portable-text.style.h1': string; /** Title of the "h2" block style */
3476
- 'inputs.portable-text.style.h2': string; /** Title of the "h3" block style */
3477
- 'inputs.portable-text.style.h3': string; /** Title of the "h4" block style */
3478
- 'inputs.portable-text.style.h4': string; /** Title of the "h5" block style */
3479
- 'inputs.portable-text.style.h5': string; /** Title of the "h6" block style */
3480
- 'inputs.portable-text.style.h6': string; /** Title shown when multiple blocks of varying styles is selected */
3481
- 'inputs.portable-text.style.multiple': string; /** Title of fallback when no style is given for a block */
3482
- 'inputs.portable-text.style.none': string; /** Title of the "normal" block style */
3483
- 'inputs.portable-text.style.normal': string; /** Title of the "quote" block style */
3484
- 'inputs.portable-text.style.quote': string; /** Label for the table lane that appends a column */
3485
- 'inputs.portable-text.table.add-column': string; /** Label for the table lane that appends a row */
3486
- 'inputs.portable-text.table.add-row': string; /** Aria label for a table column's drag/select handle */
3487
- 'inputs.portable-text.table.column-handle': string; /** Label for the trash chip that deletes the selected column */
3488
- 'inputs.portable-text.table.delete-column': string; /** Label for the trash chip that deletes the selected row */
3489
- 'inputs.portable-text.table.delete-row': string; /** Label for the table menu item that deletes the table */
3490
- 'inputs.portable-text.table.delete-table': string; /** Label for the table menu's header row toggle */
3491
- 'inputs.portable-text.table.header-row': string; /** Aria label for the dots that insert a row or column at a boundary */
3492
- 'inputs.portable-text.table.insert-here': string; /** Aria label for the table menu button */
3493
- 'inputs.portable-text.table.menu-aria-label': string; /** Aria label for a table row's drag/select handle */
3494
- 'inputs.portable-text.table.row-handle': string; /** Label for the table menu item that selects the whole table */
3495
- 'inputs.portable-text.table.select-table': string; /** Label for action to clear the current value of the reference field */
3496
- 'inputs.reference.action.clear': string; /** Label for action to copy the current item (used within arrays) */
3497
- 'inputs.reference.action.copy': string; /** Label for action to create a new document from the reference input */
3498
- 'inputs.reference.action.create-new-document': string; /** Label for action to create a new document from the reference input, when there are multiple templates or document types to choose from */
3499
- 'inputs.reference.action.create-new-document-select': string; /** Label for action to duplicate the current item to a new item (used within arrays) */
3500
- 'inputs.reference.action.duplicate': string; /** Label for action that opens the referenced document in a new tab */
3501
- 'inputs.reference.action.open-in-new-tab': string; /** Label for action to remove the reference from an array */
3502
- 'inputs.reference.action.remove': string; /** Label for action to replace the current value of the field */
3503
- 'inputs.reference.action.replace': string; /** Label for action to cancel a previously initiated replace action */
3504
- 'inputs.reference.action.replace-cancel': string; /** The cross-dataset reference field currently has a reference, but the feature has been disabled since it was created. This explains what can/cannot be done in its current state. */
3505
- 'inputs.reference.cross-dataset.feature-disabled-actions': string; /** A cross-dataset reference field exists but the feature has been disabled. A <DocumentationLink> component is available. */
3506
- 'inputs.reference.cross-dataset.feature-disabled-description': string; /** Title for a warning telling the user that the current project does not have the "cross dataset references" feature */
3507
- 'inputs.reference.cross-dataset.feature-unavailable-title': string; /** The cross-dataset reference points to a document with an invalid type */
3508
- 'inputs.reference.cross-dataset.invalid-type': string; /** The referenced document will open in a new tab (due to external studio) */
3509
- 'inputs.reference.document-opens-in-new-tab': string; /** Error title for when the document is unavailable (for any possible reason) */
3510
- 'inputs.reference.error.document-unavailable-title': string; /** Error title for when the referenced document failed to be loaded */
3511
- 'inputs.reference.error.failed-to-load-document-title': string; /** Error title for when the reference search returned a document that is not an allowed type for the field */
3512
- 'inputs.reference.error.invalid-search-result-type-title': string; /** Error description for when the document referenced is not one of the types declared as allowed target types in schema */
3513
- 'inputs.reference.error.invalid-type-description': string; /** Error title for when the document referenced is not one of the types declared as allowed target types in schema */
3514
- 'inputs.reference.error.invalid-type-title': string; /** Error description for when the user does not have permissions to read the referenced document */
3515
- 'inputs.reference.error.missing-read-permissions-description': string; /** Error title for when the user does not have permissions to read the referenced document */
3516
- 'inputs.reference.error.missing-read-permissions-title': string; /** Error description for when the current reference value points to a document that does not exist (on weak references) */
3517
- 'inputs.reference.error.nonexistent-document-description': string; /** Error title for when the current reference value points to a document that does not exist (on weak references) */
3518
- 'inputs.reference.error.nonexistent-document-title': string; /** Label for button that clears the reference when it points to a document that does not exist (on weak references) */
3519
- 'inputs.reference.error.nonexistent-document.clear-button-label': string; /** Error title for when the search for a reference failed. Note that the message sent by the backend may not be localized. */
3520
- 'inputs.reference.error.search-failed-title': string; /** Label for when the GDR points to an invalid type */
3521
- 'inputs.reference.global.invalid-type': string; /** Alternative text for the image shown in cross-dataset reference input */
3522
- 'inputs.reference.image-preview-alt-text': string; /** Description for alert shown when a reference in a live-edit document is marked as being weak, the referenced document exists, AND the reference is supposed to be have been strengthened on publish */
3523
- 'inputs.reference.incomplete-reference.finalize-action-description': string; /** Title for alert shown when a reference in a live-edit document is marked as being weak, the referenced document exists, AND the reference is supposed to be have been strengthened on publish */
3524
- 'inputs.reference.incomplete-reference.finalize-action-title': string; /** Description for alert shown when a reference in a live-edit document points to a document that exists and has been published, but the reference is still marked as weak */
3525
- 'inputs.reference.incomplete-reference.strengthen-action-description': string; /** Title for alert shown when a reference in a live-edit document points to a document that exists and has been published, but the reference is still marked as weak */
3526
- 'inputs.reference.incomplete-reference.strengthen-action-title': string; /** Label for button that triggers the action that strengthen a reference */
3527
- 'inputs.reference.incomplete-reference.strengthen-button-label': string; /** Label for button that triggers a retry attempt for reference metadata */
3528
- 'inputs.reference.metadata-error.retry-button-label': string; /** Title for alert shown when reference metadata fails to be loaded */
3529
- 'inputs.reference.metadata-error.title': string; /** Message shown when no documents were found that matched the given search string */
3530
- 'inputs.reference.no-results-for-query': string; /** Text for tooltip showing when a document was edited, using relative time (eg "how long ago was it edited?") */
3531
- 'inputs.reference.preview.edited-at-time': string; /** Accessibility label for icon indicating that document does _not_ have any unpublished changes */
3532
- 'inputs.reference.preview.has-no-unpublished-changes-aria-label': string; /** Accessibility label for icon indicating that document has unpublished changes */
3533
- 'inputs.reference.preview.has-unpublished-changes-aria-label': string; /** Accessibility label for icon indicating that document does _not_ have a published version */
3534
- 'inputs.reference.preview.is-not-published-aria-label': string; /** Accessibility label for icon indicating that document has a published version */
3535
- 'inputs.reference.preview.is-published-aria-label': string; /** Text for tooltip indicating that a document has no unpublished edits */
3536
- 'inputs.reference.preview.no-unpublished-edits': string; /** Text for tooltip indicating that a document has not yet been published */
3537
- 'inputs.reference.preview.not-published': string; /** Text for tooltip showing when a document was published, using relative time (eg "how long ago was it published?") */
3538
- 'inputs.reference.preview.published-at-time': string; /** The referenced document no longer exist and might have been deleted (for weak references) */
3539
- 'inputs.reference.referenced-document-does-not-exist': string; /** The referenced document could not be displayed to the user because of insufficient permissions */
3540
- 'inputs.reference.referenced-document-insufficient-permissions': string; /** Label for when the reference input is resolving the initial value for an item */
3541
- 'inputs.reference.resolving-initial-value': string; /** Placeholder shown in a reference input with no current value */
3542
- 'inputs.reference.search-placeholder': string; /** Explanation of the consequences of leaving the reference as strong instead of weak */
3543
- 'inputs.reference.strength-mismatch.is-strong-consquences': string; /** Description for alert shown when a reference is supposed to be weak, but the actual value is strong */
3544
- 'inputs.reference.strength-mismatch.is-strong-description': string; /** Explanation of the consequences of leaving the reference as weak instead of strong */
3545
- 'inputs.reference.strength-mismatch.is-weak-consquences': string; /** Description for alert shown when a reference is supposed to be strong, but the actual value is weak */
3546
- 'inputs.reference.strength-mismatch.is-weak-description': string; /** Label for button that triggers the action that strengthens a reference on strength mismatch */
3547
- 'inputs.reference.strength-mismatch.strengthen-button-label': string; /** Title for alert shown when a reference is supposed to be weak/strong, but the actual value is the opposite of what it is supposed to be */
3548
- 'inputs.reference.strength-mismatch.title': string; /** Label for button that triggers the action that weakens a reference on strength mismatch */
3549
- 'inputs.reference.strength-mismatch.weaken-button-label': string; /** Label for action to clear the current value of the select field */
3550
- 'inputs.select.action.clear': string; /** Action message for generating the slug */
3551
- 'inputs.slug.action.generate': string; /** Loading message for when the input is actively generating a slug */
3552
- 'inputs.slug.action.generating': string; /** Error message for when the source to generate a slug from is missing */
3553
- 'inputs.slug.error.missing-source': string; /** Placeholder for an empty tag input */
3554
- 'inputs.tags.placeholder': string; /** Placeholder for an empty tag input on touch devices */
3555
- 'inputs.tags.placeholder_touch': string; /** Convert to `{{targetType}}` */
3556
- 'inputs.untyped-value.convert-button.text': string; /** Encountered an object value without a <code>_type</code> property. */
3557
- 'inputs.untyped-value.description': string; /** Either remove the <code>name</code> property of the object declaration, or set <code>_type</code> property on items. */
3558
- 'inputs.untyped-value.details.description': string; /** Current value (<code>object</code>): */
3559
- 'inputs.untyped-value.details.json-dump-prefix': string; /** The following types are valid here according to schema: */
3560
- 'inputs.untyped-value.details.multi-type-description': string; /** Developer info */
3561
- 'inputs.untyped-value.details.title': string; /** Property value missing <code>_type</code> */
3562
- 'inputs.untyped-value.title': string; /** Unset value */
3563
- 'inputs.untyped-value.unset-item-button.text': string; /** Select video */
3564
- 'inputs.video.select-dialog.title': string; /** The fallback explanation if no context is provided */
3565
- 'insufficient-permissions-message.not-authorized-explanation': string; /** The explanation when unable to create any document at all */
3566
- 'insufficient-permissions-message.not-authorized-explanation_create-any-document': string; /** The explanation when unable to create a particular document */
3567
- 'insufficient-permissions-message.not-authorized-explanation_create-document': string; /** The explanation when unable to create a particular type of document */
3568
- 'insufficient-permissions-message.not-authorized-explanation_create-document-type': string; /** The explanation when unable to create a new reference in a document */
3569
- 'insufficient-permissions-message.not-authorized-explanation_create-new-reference': string; /** The explanation when unable to delete a particular document */
3570
- 'insufficient-permissions-message.not-authorized-explanation_delete-document': string; /** The explanation when unable to delete a schedule on scheduled publishing */
3571
- 'insufficient-permissions-message.not-authorized-explanation_delete-schedules': string; /** The explanation when unable to discard changes in a particular document */
3572
- 'insufficient-permissions-message.not-authorized-explanation_discard-changes': string; /** The explanation when unable to duplicate a particular document */
3573
- 'insufficient-permissions-message.not-authorized-explanation_duplicate-document': string; /** The explanation when unable to edit a schedule on scheduled publishing */
3574
- 'insufficient-permissions-message.not-authorized-explanation_edit-schedules': string; /** The explanation when unable to execute a schedule on scheduled publishing */
3575
- 'insufficient-permissions-message.not-authorized-explanation_execute-schedules': string; /** The explanation when unable to publish a particular document */
3576
- 'insufficient-permissions-message.not-authorized-explanation_publish-document': string; /** The explanation when unable to unpublish a particular document */
3577
- 'insufficient-permissions-message.not-authorized-explanation_unpublish-document': string; /** Appears after the not-authorized message. Lists the current roles. */
3578
- 'insufficient-permissions-message.roles': string; /** The title for the insufficient permissions message component */
3579
- 'insufficient-permissions-message.title': string; /** Body of the logged-out banner shown above the login form for an unknown reason */
3580
- 'login.logged-out.generic': string; /** Body of the logged-out banner shown above the login form when the session expired */
3581
- 'login.logged-out.session-expired': string; /** Title of the banner shown above the login form after the studio logs the user out */
3582
- 'login.logged-out.title': string; /** Unexpected error: `{{error}}` */
3583
- 'member-field-error.unexpected-error': string; /** Text shown in warning when browser is using HTTP1 to communicate with the Sanity API */
3584
- 'network-check.slow-protocol-warning.description': string; /** Text for link that takes the user to the Sanity documentation to learn more about the HTTP1 issue */
3585
- 'network-check.slow-protocol-warning.learn-more-button.text': string; /** Text for link that takes the user to the Sanity documentation to learn more about the HTTP1 issue */
3586
- 'network-check.slow-protocol-warning.snooze-button.text': string; /** Title text for the warning dialog when browser is using HTTP1 to communicate with the Sanity API */
3587
- 'network-check.slow-protocol-warning.title': string; /** Button label for "Create new document" button */
3724
+ 'inputs.object.unknown-fields.warning.title_other': string;
3725
+ /** Collapse the editor to save screen space */
3726
+ 'inputs.portable-text.action.collapse-editor': string;
3727
+ /** Aria label for action to edit an existing annotation */
3728
+ 'inputs.portable-text.action.edit-annotation-aria-label': string;
3729
+ /** Expand the editor to give more editing space */
3730
+ 'inputs.portable-text.action.expand-editor': string;
3731
+ /** Label label for action to insert a block of a given type (`{{typeName}}`) */
3732
+ 'inputs.portable-text.action.insert-block': string;
3733
+ /** Accessibility label for action to insert a block of a given type (`{{typeName}}`) */
3734
+ 'inputs.portable-text.action.insert-block-aria-label': string;
3735
+ /** Label for action to insert an inline object of a given type (`{{typeName}}`) */
3736
+ 'inputs.portable-text.action.insert-inline-object': string;
3737
+ /** Accessibility label for action to insert an inline object of a given type (`{{typeName}}`) */
3738
+ 'inputs.portable-text.action.insert-inline-object-aria-label': string;
3739
+ /** Aria label for action to remove an annotation */
3740
+ 'inputs.portable-text.action.remove-annotation-aria-label': string;
3741
+ /** Label for activate on focus with context of click and not focused */
3742
+ 'inputs.portable-text.activate-on-focus-message_click': string;
3743
+ /** Label for activate on focus with context of click and focused */
3744
+ 'inputs.portable-text.activate-on-focus-message_click-focused': string;
3745
+ /** Label for activate on focus with context of tap and not focused */
3746
+ 'inputs.portable-text.activate-on-focus-message_tap': string;
3747
+ /** Aria label for the annotation object */
3748
+ 'inputs.portable-text.annotation-aria-label': string;
3749
+ /** Title for dialog that allows editing an annotation */
3750
+ 'inputs.portable-text.annotation-editor.title': string;
3751
+ /** Title of the default "link" annotation */
3752
+ 'inputs.portable-text.annotation.link': string;
3753
+ /** Aria label for the block object */
3754
+ 'inputs.portable-text.block.aria-label': string;
3755
+ /** Label for action to edit a block item, in the case where it is editable */
3756
+ 'inputs.portable-text.block.edit': string;
3757
+ /** Accessibility label for the button that opens the actions menu on blocks */
3758
+ 'inputs.portable-text.block.open-menu-aria-label': string;
3759
+ /** Label for action to open a reference, in the case of block-level reference types */
3760
+ 'inputs.portable-text.block.open-reference': string;
3761
+ /** Label for action to remove a block item */
3762
+ 'inputs.portable-text.block.remove': string;
3763
+ /** Label for action to view a block item, in the case where it is read-only and thus cannot be edited */
3764
+ 'inputs.portable-text.block.view': string;
3765
+ /** Title of the "code" decorator */
3766
+ 'inputs.portable-text.decorator.code': string;
3767
+ /** Title of the "em" (emphasis) decorator */
3768
+ 'inputs.portable-text.decorator.emphasis': string;
3769
+ /** Title of the "strike-through" decorator */
3770
+ 'inputs.portable-text.decorator.strike-through': string;
3771
+ /** Title of the "strong" decorator */
3772
+ 'inputs.portable-text.decorator.strong': string;
3773
+ /** Title of the "underline" decorator */
3774
+ 'inputs.portable-text.decorator.underline': string;
3775
+ /** Placeholder text for when the editor is empty */
3776
+ 'inputs.portable-text.empty-placeholder': string;
3777
+ /** Aria label for the block object */
3778
+ 'inputs.portable-text.inline-block.aria-label': string;
3779
+ /** Label for action to edit an inline object item */
3780
+ 'inputs.portable-text.inline-object.edit': string;
3781
+ /** Aria label for icon for action to edit an inline object item */
3782
+ 'inputs.portable-text.inline-object.edit-aria-label': string;
3783
+ /** Label for action to remove an inline object item */
3784
+ 'inputs.portable-text.inline-object.remove': string;
3785
+ /** Aria label for icon for action to remove an inline object item */
3786
+ 'inputs.portable-text.inline-object.remove-aria-label': string;
3787
+ /** Disclaimer text shown on invalid Portable Text value, when an action is available to unblock the user, but it is not guaranteed to be safe */
3788
+ 'inputs.portable-text.invalid-value.action-disclaimer': string;
3789
+ /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` has a child with key `{{childKey}}` of type `{{childType}}` which is not allowed by the schema definition */
3790
+ 'inputs.portable-text.invalid-value.disallowed-child-type.action': string;
3791
+ /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a child with key `{{childKey}}` of type `{{childType}}` which is not allowed by the schema definition */
3792
+ 'inputs.portable-text.invalid-value.disallowed-child-type.description': string;
3793
+ /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` has a type (`{{typeName}}`) that is not an allowed block type for this field */
3794
+ 'inputs.portable-text.invalid-value.disallowed-type.action': string;
3795
+ /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` has a type (`{{typeName}}`) that is not an allowed block type for this field */
3796
+ 'inputs.portable-text.invalid-value.disallowed-type.description': string;
3797
+ /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` contains no children */
3798
+ 'inputs.portable-text.invalid-value.empty-children.action': string;
3799
+ /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` contains no children */
3800
+ 'inputs.portable-text.invalid-value.empty-children.description': string;
3801
+ /** Label for the button to ignore invalid values in the Portable Text editor */
3802
+ 'inputs.portable-text.invalid-value.ignore-button.text': string;
3803
+ /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` has a `_type` property that is set to `block`, but the block type defined in schema has a different name (`{{expectedTypeName}}`) */
3804
+ 'inputs.portable-text.invalid-value.incorrect-block-type.action': string;
3805
+ /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` has a `_type` property that is set to `block`, but the block type defined in schema has a different name (`{{expectedTypeName}}`) */
3806
+ 'inputs.portable-text.invalid-value.incorrect-block-type.description': string;
3807
+ /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` has a span with key `{{childKey}}` that has a missing or invalid `text` property */
3808
+ 'inputs.portable-text.invalid-value.invalid-span-text.action': string;
3809
+ /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a span with key `{{childKey}}` that has a missing or invalid `text` property */
3810
+ 'inputs.portable-text.invalid-value.invalid-span-text.description': string;
3811
+ /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property, but seems to be a block of type `{{expectedTypeName}}` */
3812
+ 'inputs.portable-text.invalid-value.missing-block-type.action': string;
3813
+ /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property, but seems to be a block of type `{{expectedTypeName}}` */
3814
+ 'inputs.portable-text.invalid-value.missing-block-type.description': string;
3815
+ /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` has a child at `{{index}}` which is missing `_key` property */
3816
+ 'inputs.portable-text.invalid-value.missing-child-key.action': string;
3817
+ /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a child at `{{index}}` which is missing `_key` property */
3818
+ 'inputs.portable-text.invalid-value.missing-child-key.description': string;
3819
+ /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` has a child with key `{{childKey}}` which is missing a `_type` property */
3820
+ 'inputs.portable-text.invalid-value.missing-child-type.action': string;
3821
+ /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a child with key `{{childKey}}` which is missing a `_type` property */
3822
+ 'inputs.portable-text.invalid-value.missing-child-type.description': string;
3823
+ /** Action presented when the Portable Text field value is invalid, when child at `{{index}}` is missing the required `_key` property */
3824
+ 'inputs.portable-text.invalid-value.missing-key.action': string;
3825
+ /** Text explaining that the Portable Text field value is invalid, when child at `{{index}}` is missing the required `_key` property */
3826
+ 'inputs.portable-text.invalid-value.missing-key.description': string;
3827
+ /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `children` property */
3828
+ 'inputs.portable-text.invalid-value.missing-or-invalid-children.action': string;
3829
+ /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `children` property */
3830
+ 'inputs.portable-text.invalid-value.missing-or-invalid-children.description': string;
3831
+ /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `markDefs` property */
3832
+ 'inputs.portable-text.invalid-value.missing-or-invalid-markdefs.action': string;
3833
+ /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `markDefs` property */
3834
+ 'inputs.portable-text.invalid-value.missing-or-invalid-markdefs.description': string;
3835
+ /** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property */
3836
+ 'inputs.portable-text.invalid-value.missing-type.action': string;
3837
+ /** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property */
3838
+ 'inputs.portable-text.invalid-value.missing-type.description': string;
3839
+ /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` contains a non-object child at index `{{index}}` */
3840
+ 'inputs.portable-text.invalid-value.non-object-child.action': string;
3841
+ /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` contains a non-object child at index `{{index}}` */
3842
+ 'inputs.portable-text.invalid-value.non-object-child.description': string;
3843
+ /** Action presented when the Portable Text field value is invalid, when the Portable Text field is not an array, or the array is empty */
3844
+ 'inputs.portable-text.invalid-value.not-an-array.action': string;
3845
+ /** Text explaining that the Portable Text field value is invalid, when the Portable Text field is not an array, or the array is empty */
3846
+ 'inputs.portable-text.invalid-value.not-an-array.description': string;
3847
+ /** Action presented when the Portable Text field value is invalid, when child at `{{index}}` is not an object */
3848
+ 'inputs.portable-text.invalid-value.not-an-object.action': string;
3849
+ /** Text explaining that the Portable Text field value is invalid, when child at `{{index}}` is not an object */
3850
+ 'inputs.portable-text.invalid-value.not-an-object.description': string;
3851
+ /** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` contains marks (`{{orphanedMarks}}`) that are not supported by the current schema */
3852
+ 'inputs.portable-text.invalid-value.orphaned-marks.action': string;
3853
+ /** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` contains marks (`{{orphanedMarks}}`) that are not supported by the current schema */
3854
+ 'inputs.portable-text.invalid-value.orphaned-marks.description': string;
3855
+ /** Title for the alert indicating that the Portable Text field has an invalid value */
3856
+ 'inputs.portable-text.invalid-value.title': string;
3857
+ /** Title of "bulleted" list type */
3858
+ 'inputs.portable-text.list-type.bullet': string;
3859
+ /** Title of numbered list type */
3860
+ 'inputs.portable-text.list-type.number': string;
3861
+ /** Title of the "h1" block style */
3862
+ 'inputs.portable-text.style.h1': string;
3863
+ /** Title of the "h2" block style */
3864
+ 'inputs.portable-text.style.h2': string;
3865
+ /** Title of the "h3" block style */
3866
+ 'inputs.portable-text.style.h3': string;
3867
+ /** Title of the "h4" block style */
3868
+ 'inputs.portable-text.style.h4': string;
3869
+ /** Title of the "h5" block style */
3870
+ 'inputs.portable-text.style.h5': string;
3871
+ /** Title of the "h6" block style */
3872
+ 'inputs.portable-text.style.h6': string;
3873
+ /** Title shown when multiple blocks of varying styles is selected */
3874
+ 'inputs.portable-text.style.multiple': string;
3875
+ /** Title of fallback when no style is given for a block */
3876
+ 'inputs.portable-text.style.none': string;
3877
+ /** Title of the "normal" block style */
3878
+ 'inputs.portable-text.style.normal': string;
3879
+ /** Title of the "quote" block style */
3880
+ 'inputs.portable-text.style.quote': string;
3881
+ /** Label for the table lane that appends a column */
3882
+ 'inputs.portable-text.table.add-column': string;
3883
+ /** Label for the table lane that appends a row */
3884
+ 'inputs.portable-text.table.add-row': string;
3885
+ /** Aria label for a table column's drag/select handle */
3886
+ 'inputs.portable-text.table.column-handle': string;
3887
+ /** Label for the trash chip that deletes the selected column */
3888
+ 'inputs.portable-text.table.delete-column': string;
3889
+ /** Label for the trash chip that deletes the selected row */
3890
+ 'inputs.portable-text.table.delete-row': string;
3891
+ /** Label for the table menu item that deletes the table */
3892
+ 'inputs.portable-text.table.delete-table': string;
3893
+ /** Label for the table menu's header row toggle */
3894
+ 'inputs.portable-text.table.header-row': string;
3895
+ /** Aria label for the dots that insert a row or column at a boundary */
3896
+ 'inputs.portable-text.table.insert-here': string;
3897
+ /** Aria label for the table menu button */
3898
+ 'inputs.portable-text.table.menu-aria-label': string;
3899
+ /** Aria label for a table row's drag/select handle */
3900
+ 'inputs.portable-text.table.row-handle': string;
3901
+ /** Label for the table menu item that selects the whole table */
3902
+ 'inputs.portable-text.table.select-table': string;
3903
+ /** Label for action to clear the current value of the reference field */
3904
+ 'inputs.reference.action.clear': string;
3905
+ /** Label for action to copy the current item (used within arrays) */
3906
+ 'inputs.reference.action.copy': string;
3907
+ /** Label for action to create a new document from the reference input */
3908
+ 'inputs.reference.action.create-new-document': string;
3909
+ /** Label for action to create a new document from the reference input, when there are multiple templates or document types to choose from */
3910
+ 'inputs.reference.action.create-new-document-select': string;
3911
+ /** Label for action to duplicate the current item to a new item (used within arrays) */
3912
+ 'inputs.reference.action.duplicate': string;
3913
+ /** Label for action that opens the referenced document in a new tab */
3914
+ 'inputs.reference.action.open-in-new-tab': string;
3915
+ /** Label for action to remove the reference from an array */
3916
+ 'inputs.reference.action.remove': string;
3917
+ /** Label for action to replace the current value of the field */
3918
+ 'inputs.reference.action.replace': string;
3919
+ /** Label for action to cancel a previously initiated replace action */
3920
+ 'inputs.reference.action.replace-cancel': string;
3921
+ /** The cross-dataset reference field currently has a reference, but the feature has been disabled since it was created. This explains what can/cannot be done in its current state. */
3922
+ 'inputs.reference.cross-dataset.feature-disabled-actions': string;
3923
+ /** A cross-dataset reference field exists but the feature has been disabled. A <DocumentationLink> component is available. */
3924
+ 'inputs.reference.cross-dataset.feature-disabled-description': string;
3925
+ /** Title for a warning telling the user that the current project does not have the "cross dataset references" feature */
3926
+ 'inputs.reference.cross-dataset.feature-unavailable-title': string;
3927
+ /** The cross-dataset reference points to a document with an invalid type */
3928
+ 'inputs.reference.cross-dataset.invalid-type': string;
3929
+ /** The referenced document will open in a new tab (due to external studio) */
3930
+ 'inputs.reference.document-opens-in-new-tab': string;
3931
+ /** Error title for when the document is unavailable (for any possible reason) */
3932
+ 'inputs.reference.error.document-unavailable-title': string;
3933
+ /** Error title for when the referenced document failed to be loaded */
3934
+ 'inputs.reference.error.failed-to-load-document-title': string;
3935
+ /** Error title for when the reference search returned a document that is not an allowed type for the field */
3936
+ 'inputs.reference.error.invalid-search-result-type-title': string;
3937
+ /** Error description for when the document referenced is not one of the types declared as allowed target types in schema */
3938
+ 'inputs.reference.error.invalid-type-description': string;
3939
+ /** Error title for when the document referenced is not one of the types declared as allowed target types in schema */
3940
+ 'inputs.reference.error.invalid-type-title': string;
3941
+ /** Error description for when the user does not have permissions to read the referenced document */
3942
+ 'inputs.reference.error.missing-read-permissions-description': string;
3943
+ /** Error title for when the user does not have permissions to read the referenced document */
3944
+ 'inputs.reference.error.missing-read-permissions-title': string;
3945
+ /** Error description for when the current reference value points to a document that does not exist (on weak references) */
3946
+ 'inputs.reference.error.nonexistent-document-description': string;
3947
+ /** Error title for when the current reference value points to a document that does not exist (on weak references) */
3948
+ 'inputs.reference.error.nonexistent-document-title': string;
3949
+ /** Label for button that clears the reference when it points to a document that does not exist (on weak references) */
3950
+ 'inputs.reference.error.nonexistent-document.clear-button-label': string;
3951
+ /** Error title for when the search for a reference failed. Note that the message sent by the backend may not be localized. */
3952
+ 'inputs.reference.error.search-failed-title': string;
3953
+ /** Label for when the GDR points to an invalid type */
3954
+ 'inputs.reference.global.invalid-type': string;
3955
+ /** Alternative text for the image shown in cross-dataset reference input */
3956
+ 'inputs.reference.image-preview-alt-text': string;
3957
+ /** Description for alert shown when a reference in a live-edit document is marked as being weak, the referenced document exists, AND the reference is supposed to be have been strengthened on publish */
3958
+ 'inputs.reference.incomplete-reference.finalize-action-description': string;
3959
+ /** Title for alert shown when a reference in a live-edit document is marked as being weak, the referenced document exists, AND the reference is supposed to be have been strengthened on publish */
3960
+ 'inputs.reference.incomplete-reference.finalize-action-title': string;
3961
+ /** Description for alert shown when a reference in a live-edit document points to a document that exists and has been published, but the reference is still marked as weak */
3962
+ 'inputs.reference.incomplete-reference.strengthen-action-description': string;
3963
+ /** Title for alert shown when a reference in a live-edit document points to a document that exists and has been published, but the reference is still marked as weak */
3964
+ 'inputs.reference.incomplete-reference.strengthen-action-title': string;
3965
+ /** Label for button that triggers the action that strengthen a reference */
3966
+ 'inputs.reference.incomplete-reference.strengthen-button-label': string;
3967
+ /** Label for button that triggers a retry attempt for reference metadata */
3968
+ 'inputs.reference.metadata-error.retry-button-label': string;
3969
+ /** Title for alert shown when reference metadata fails to be loaded */
3970
+ 'inputs.reference.metadata-error.title': string;
3971
+ /** Message shown when no documents were found that matched the given search string */
3972
+ 'inputs.reference.no-results-for-query': string;
3973
+ /** Text for tooltip showing when a document was edited, using relative time (eg "how long ago was it edited?") */
3974
+ 'inputs.reference.preview.edited-at-time': string;
3975
+ /** Accessibility label for icon indicating that document does _not_ have any unpublished changes */
3976
+ 'inputs.reference.preview.has-no-unpublished-changes-aria-label': string;
3977
+ /** Accessibility label for icon indicating that document has unpublished changes */
3978
+ 'inputs.reference.preview.has-unpublished-changes-aria-label': string;
3979
+ /** Accessibility label for icon indicating that document does _not_ have a published version */
3980
+ 'inputs.reference.preview.is-not-published-aria-label': string;
3981
+ /** Accessibility label for icon indicating that document has a published version */
3982
+ 'inputs.reference.preview.is-published-aria-label': string;
3983
+ /** Text for tooltip indicating that a document has no unpublished edits */
3984
+ 'inputs.reference.preview.no-unpublished-edits': string;
3985
+ /** Text for tooltip indicating that a document has not yet been published */
3986
+ 'inputs.reference.preview.not-published': string;
3987
+ /** Text for tooltip showing when a document was published, using relative time (eg "how long ago was it published?") */
3988
+ 'inputs.reference.preview.published-at-time': string;
3989
+ /** The referenced document no longer exist and might have been deleted (for weak references) */
3990
+ 'inputs.reference.referenced-document-does-not-exist': string;
3991
+ /** The referenced document could not be displayed to the user because of insufficient permissions */
3992
+ 'inputs.reference.referenced-document-insufficient-permissions': string;
3993
+ /** Label for when the reference input is resolving the initial value for an item */
3994
+ 'inputs.reference.resolving-initial-value': string;
3995
+ /** Placeholder shown in a reference input with no current value */
3996
+ 'inputs.reference.search-placeholder': string;
3997
+ /** Explanation of the consequences of leaving the reference as strong instead of weak */
3998
+ 'inputs.reference.strength-mismatch.is-strong-consquences': string;
3999
+ /** Description for alert shown when a reference is supposed to be weak, but the actual value is strong */
4000
+ 'inputs.reference.strength-mismatch.is-strong-description': string;
4001
+ /** Explanation of the consequences of leaving the reference as weak instead of strong */
4002
+ 'inputs.reference.strength-mismatch.is-weak-consquences': string;
4003
+ /** Description for alert shown when a reference is supposed to be strong, but the actual value is weak */
4004
+ 'inputs.reference.strength-mismatch.is-weak-description': string;
4005
+ /** Label for button that triggers the action that strengthens a reference on strength mismatch */
4006
+ 'inputs.reference.strength-mismatch.strengthen-button-label': string;
4007
+ /** Title for alert shown when a reference is supposed to be weak/strong, but the actual value is the opposite of what it is supposed to be */
4008
+ 'inputs.reference.strength-mismatch.title': string;
4009
+ /** Label for button that triggers the action that weakens a reference on strength mismatch */
4010
+ 'inputs.reference.strength-mismatch.weaken-button-label': string;
4011
+ /** Label for action to clear the current value of the select field */
4012
+ 'inputs.select.action.clear': string;
4013
+ /** Action message for generating the slug */
4014
+ 'inputs.slug.action.generate': string;
4015
+ /** Loading message for when the input is actively generating a slug */
4016
+ 'inputs.slug.action.generating': string;
4017
+ /** Error message for when the source to generate a slug from is missing */
4018
+ 'inputs.slug.error.missing-source': string;
4019
+ /** Placeholder for an empty tag input */
4020
+ 'inputs.tags.placeholder': string;
4021
+ /** Placeholder for an empty tag input on touch devices */
4022
+ 'inputs.tags.placeholder_touch': string;
4023
+ /** Convert to `{{targetType}}` */
4024
+ 'inputs.untyped-value.convert-button.text': string;
4025
+ /** Encountered an object value without a <code>_type</code> property. */
4026
+ 'inputs.untyped-value.description': string;
4027
+ /** Either remove the <code>name</code> property of the object declaration, or set <code>_type</code> property on items. */
4028
+ 'inputs.untyped-value.details.description': string;
4029
+ /** Current value (<code>object</code>): */
4030
+ 'inputs.untyped-value.details.json-dump-prefix': string;
4031
+ /** The following types are valid here according to schema: */
4032
+ 'inputs.untyped-value.details.multi-type-description': string;
4033
+ /** Developer info */
4034
+ 'inputs.untyped-value.details.title': string;
4035
+ /** Property value missing <code>_type</code> */
4036
+ 'inputs.untyped-value.title': string;
4037
+ /** Unset value */
4038
+ 'inputs.untyped-value.unset-item-button.text': string;
4039
+ /** Select video */
4040
+ 'inputs.video.select-dialog.title': string;
4041
+ /** The fallback explanation if no context is provided */
4042
+ 'insufficient-permissions-message.not-authorized-explanation': string;
4043
+ /** The explanation when unable to create any document at all */
4044
+ 'insufficient-permissions-message.not-authorized-explanation_create-any-document': string;
4045
+ /** The explanation when unable to create a particular document */
4046
+ 'insufficient-permissions-message.not-authorized-explanation_create-document': string;
4047
+ /** The explanation when unable to create a particular type of document */
4048
+ 'insufficient-permissions-message.not-authorized-explanation_create-document-type': string;
4049
+ /** The explanation when unable to create a new reference in a document */
4050
+ 'insufficient-permissions-message.not-authorized-explanation_create-new-reference': string;
4051
+ /** The explanation when unable to delete a particular document */
4052
+ 'insufficient-permissions-message.not-authorized-explanation_delete-document': string;
4053
+ /** The explanation when unable to delete a schedule on scheduled publishing */
4054
+ 'insufficient-permissions-message.not-authorized-explanation_delete-schedules': string;
4055
+ /** The explanation when unable to discard changes in a particular document */
4056
+ 'insufficient-permissions-message.not-authorized-explanation_discard-changes': string;
4057
+ /** The explanation when unable to duplicate a particular document */
4058
+ 'insufficient-permissions-message.not-authorized-explanation_duplicate-document': string;
4059
+ /** The explanation when unable to edit a schedule on scheduled publishing */
4060
+ 'insufficient-permissions-message.not-authorized-explanation_edit-schedules': string;
4061
+ /** The explanation when unable to execute a schedule on scheduled publishing */
4062
+ 'insufficient-permissions-message.not-authorized-explanation_execute-schedules': string;
4063
+ /** The explanation when unable to publish a particular document */
4064
+ 'insufficient-permissions-message.not-authorized-explanation_publish-document': string;
4065
+ /** The explanation when unable to unpublish a particular document */
4066
+ 'insufficient-permissions-message.not-authorized-explanation_unpublish-document': string;
4067
+ /** Appears after the not-authorized message. Lists the current roles. */
4068
+ 'insufficient-permissions-message.roles': string;
4069
+ /** The title for the insufficient permissions message component */
4070
+ 'insufficient-permissions-message.title': string;
4071
+ /** Body of the logged-out banner shown above the login form for an unknown reason */
4072
+ 'login.logged-out.generic': string;
4073
+ /** Body of the logged-out banner shown above the login form when the session expired */
4074
+ 'login.logged-out.session-expired': string;
4075
+ /** Title of the banner shown above the login form after the studio logs the user out */
4076
+ 'login.logged-out.title': string;
4077
+ /** Unexpected error: `{{error}}` */
4078
+ 'member-field-error.unexpected-error': string;
4079
+ /** Text shown in warning when browser is using HTTP1 to communicate with the Sanity API */
4080
+ 'network-check.slow-protocol-warning.description': string;
4081
+ /** Text for link that takes the user to the Sanity documentation to learn more about the HTTP1 issue */
4082
+ 'network-check.slow-protocol-warning.learn-more-button.text': string;
4083
+ /** Text for link that takes the user to the Sanity documentation to learn more about the HTTP1 issue */
4084
+ 'network-check.slow-protocol-warning.snooze-button.text': string;
4085
+ /** Title text for the warning dialog when browser is using HTTP1 to communicate with the Sanity API */
4086
+ 'network-check.slow-protocol-warning.title': string;
4087
+ /** Button label for "Create new document" button */
3588
4088
  'new-document.button': string;
3589
4089
  /**
3590
4090
  * Tooltip message displayed when hovering/activating the "Create new document" action,
3591
4091
  * when there are templates/types available for creation
3592
4092
  */
3593
- 'new-document.create-new-document-label': string; /** Placeholder for the "filter" input within the new document menu */
3594
- 'new-document.filter-placeholder': string; /** Loading indicator text within the new document menu */
3595
- 'new-document.loading': string; /** Accessibility label for the list displaying options in the new document menu */
3596
- 'new-document.new-document-aria-label': string; /** Message for when there are no document type options in the new document menu */
4093
+ 'new-document.create-new-document-label': string;
4094
+ /** Placeholder for the "filter" input within the new document menu */
4095
+ 'new-document.filter-placeholder': string;
4096
+ /** Loading indicator text within the new document menu */
4097
+ 'new-document.loading': string;
4098
+ /** Accessibility label for the list displaying options in the new document menu */
4099
+ 'new-document.new-document-aria-label': string;
4100
+ /** Message for when there are no document type options in the new document menu */
3597
4101
  'new-document.no-document-types-found': string;
3598
4102
  /**
3599
4103
  * Tooltip message displayed when hovering/activating the "Create new document" action,
3600
4104
  * when there are no templates/types to create from
3601
4105
  */
3602
- 'new-document.no-document-types-label': string; /** Message for when no results are found for a specific search query in the new document menu */
3603
- 'new-document.no-results': string; /** Aria label for the button that opens the "Create new document" popover/dialog */
3604
- 'new-document.open-dialog-aria-label': string; /** Title for "Create new document" dialog */
3605
- 'new-document.title': string; /** @deprecated Label for button that will make the browser reload when users' studio version is out-of-date */
3606
- 'package-version.new-package-available.reload-button': string; /** @deprecated Title of the alert for studio users when packages in their studio are out-of-date */
3607
- 'package-version.new-package-available.title': string; /** Label for action to invite members to the current studio project */
3608
- 'presence.action.manage-members': string; /** Accessibility label for presence menu button */
3609
- 'presence.aria-label': string; /** Message description for when no one else is currently present */
3610
- 'presence.no-one-else-description': string; /** Message title for when no one else is currently present */
3611
- 'presence.no-one-else-title': string; /** Message for when a user is not in a document (displayed in the global presence menu) */
3612
- 'presence.not-in-a-document': string; /** Tooltip content text for presence menu button */
3613
- 'presence.tooltip-content': string; /** Fallback title shown when a preview does not provide a title */
3614
- 'preview.default.title-fallback': string; /** Fallback preview value for types that have "no value" (eg null, undefined) */
3615
- 'preview.fallback.no-value': string; /** Alternative text for image being shown while image is being uploaded, in previews */
4106
+ 'new-document.no-document-types-label': string;
4107
+ /** Message for when no results are found for a specific search query in the new document menu */
4108
+ 'new-document.no-results': string;
4109
+ /** Aria label for the button that opens the "Create new document" popover/dialog */
4110
+ 'new-document.open-dialog-aria-label': string;
4111
+ /** Title for "Create new document" dialog */
4112
+ 'new-document.title': string;
4113
+ /** @deprecated Label for button that will make the browser reload when users' studio version is out-of-date */
4114
+ 'package-version.new-package-available.reload-button': string;
4115
+ /** @deprecated Title of the alert for studio users when packages in their studio are out-of-date */
4116
+ 'package-version.new-package-available.title': string;
4117
+ /** Label for action to invite members to the current studio project */
4118
+ 'presence.action.manage-members': string;
4119
+ /** Accessibility label for presence menu button */
4120
+ 'presence.aria-label': string;
4121
+ /** Message description for when no one else is currently present */
4122
+ 'presence.no-one-else-description': string;
4123
+ /** Message title for when no one else is currently present */
4124
+ 'presence.no-one-else-title': string;
4125
+ /** Message for when a user is not in a document (displayed in the global presence menu) */
4126
+ 'presence.not-in-a-document': string;
4127
+ /** Tooltip content text for presence menu button */
4128
+ 'presence.tooltip-content': string;
4129
+ /** Fallback title shown when a preview does not provide a title */
4130
+ 'preview.default.title-fallback': string;
4131
+ /** Fallback preview value for types that have "no value" (eg null, undefined) */
4132
+ 'preview.fallback.no-value': string;
4133
+ /** Alternative text for image being shown while image is being uploaded, in previews */
3616
4134
  'preview.image.file-is-being-uploaded.alt-text': string;
3617
- 'relative-time.just-now': string; /** Action message to add document to new release */
3618
- 'release.action.add-to-new-release': string; /** Action message to add document to release */
3619
- 'release.action.add-to-release': string; /** Tooltip message for document that is already added to release */
3620
- 'release.action.already-exists-in-release': string; /** Action message for when document is already in release */
3621
- 'release.action.already-in-release': string; /** Action message for when you click to view all versions you can copy the current document to */
3622
- 'release.action.copy-to': string; /** Action message for creating new releases */
3623
- 'release.action.create-new': string; /** Description for toast when version creation failed */
3624
- 'release.action.create-version.failure': string; /** Action message for deleting a scheduled publish */
3625
- 'release.action.delete-schedule': string; /** Action message for when document is already in release */
3626
- 'release.action.discard-version': string; /** Description for toast when version discarding failed */
3627
- 'release.action.discard-version.failure': string; /** Action message for editing the schedule of a scheduled publish */
3628
- 'release.action.edit-schedule': string; /** Action message for when a new release is created off an existing version, draft or published document */
3629
- 'release.action.new-release': string; /** Explanation provided when releases can't be created because the workspace release limit has been reached */
4135
+ 'relative-time.just-now': string;
4136
+ /** Action message to add document to new release */
4137
+ 'release.action.add-to-new-release': string;
4138
+ /** Action message to add document to release */
4139
+ 'release.action.add-to-release': string;
4140
+ /** Tooltip message for document that is already added to release */
4141
+ 'release.action.already-exists-in-release': string;
4142
+ /** Action message for when document is already in release */
4143
+ 'release.action.already-in-release': string;
4144
+ /** Action message for when you click to view all versions you can copy the current document to */
4145
+ 'release.action.copy-to': string;
4146
+ /** Action message for creating new releases */
4147
+ 'release.action.create-new': string;
4148
+ /** Description for toast when version creation failed */
4149
+ 'release.action.create-version.failure': string;
4150
+ /** Action message for deleting a scheduled publish */
4151
+ 'release.action.delete-schedule': string;
4152
+ /** Action message for when document is already in release */
4153
+ 'release.action.discard-version': string;
4154
+ /** Description for toast when version discarding failed */
4155
+ 'release.action.discard-version.failure': string;
4156
+ /** Action message for editing the schedule of a scheduled publish */
4157
+ 'release.action.edit-schedule': string;
4158
+ /** Action message for when a new release is created off an existing version, draft or published document */
4159
+ 'release.action.new-release': string;
4160
+ /** Explanation provided when releases can't be created because the workspace release limit has been reached */
3630
4161
  'release.action.new-release.limit-reached': string;
3631
- 'release.action.new-release.limit-reached_other': string; /** Tooltip message for not having permissions for creating new releases */
3632
- 'release.action.permission.error': string; /** Action message for running a scheduled draft immediately */
3633
- 'release.action.publish-now': string; /** Error message description for when a version is reverted from being unpublished */
3634
- 'release.action.revert-unpublish-version.failure.description': string; /** Error message title for when a version is reverted from being unpublished */
3635
- 'release.action.revert-unpublish-version.failure.title': string; /** Action message description for when a version is reverted from being unpublished */
3636
- 'release.action.revert-unpublish-version.success.description': string; /** Action message title for when a version is reverted from being unpublished */
3637
- 'release.action.revert-unpublish-version.success.title': string; /** Action message for scheduling a paused draft */
3638
- 'release.action.schedule-publish': string; /** Error message for when a version is set to be unpublished */
3639
- 'release.action.unpublish-version.failure': string; /** Action message for when a version is set to be unpublished successfully */
3640
- 'release.action.unpublish-version.success': string; /** Action message for when the view release is pressed */
3641
- 'release.action.view-release': string; /** Action message for when the view scheduled drafts is pressed */
3642
- 'release.action.view-scheduled-drafts': string; /** Label for banner when release is scheduled */
3643
- 'release.banner.scheduled-for-publishing-on': string; /** Label for button to show other variants in the document perspective list */
3644
- 'release.chip.button.other-variants_one': string; /** Label for button to show other variants in the document perspective list */
3645
- 'release.chip.button.other-variants_other': string; /** Label for button to show other versions in the document perspective list*/
3646
- 'release.chip.button.other-versions_one': string; /** Label for button to show other versions in the document perspective list */
3647
- 'release.chip.button.other-versions_other': string; /** Label for Draft chip in document header */
3648
- 'release.chip.draft': string; /** Label for Draft chip in global header */
3649
- 'release.chip.global.drafts': string; /** Label for Published chip in document header */
3650
- 'release.chip.published': string; /** Label for tooltip in chip when document is in an archived release */
3651
- 'release.chip.tooltip.archived': string; /** Label for tooltip in chip with the created date */
3652
- 'release.chip.tooltip.created-date': string; /** Label for tooltip in draft chip when it's a live edit document */
3653
- 'release.chip.tooltip.draft-disabled.live-edit': string; /** Label for tooltip in chip with the lasted edited date */
3654
- 'release.chip.tooltip.edited-date': string; /** Label for tooltip in chip when document is intended for a future release that hasn't been scheduled */
3655
- 'release.chip.tooltip.intended-for-date': string; /** Label for tooltip in chip when there is no recent draft edits */
3656
- 'release.chip.tooltip.no-edits': string; /** Label for tooltip in chip when document isn't published */
4162
+ 'release.action.new-release.limit-reached_other': string;
4163
+ /** Tooltip message for not having permissions for creating new releases */
4164
+ 'release.action.permission.error': string;
4165
+ /** Action message for running a scheduled draft immediately */
4166
+ 'release.action.publish-now': string;
4167
+ /** Error message description for when a version is reverted from being unpublished */
4168
+ 'release.action.revert-unpublish-version.failure.description': string;
4169
+ /** Error message title for when a version is reverted from being unpublished */
4170
+ 'release.action.revert-unpublish-version.failure.title': string;
4171
+ /** Action message description for when a version is reverted from being unpublished */
4172
+ 'release.action.revert-unpublish-version.success.description': string;
4173
+ /** Action message title for when a version is reverted from being unpublished */
4174
+ 'release.action.revert-unpublish-version.success.title': string;
4175
+ /** Action message for scheduling a paused draft */
4176
+ 'release.action.schedule-publish': string;
4177
+ /** Error message for when a version is set to be unpublished */
4178
+ 'release.action.unpublish-version.failure': string;
4179
+ /** Action message for when a version is set to be unpublished successfully */
4180
+ 'release.action.unpublish-version.success': string;
4181
+ /** Action message for when the view release is pressed */
4182
+ 'release.action.view-release': string;
4183
+ /** Action message for when the view scheduled drafts is pressed */
4184
+ 'release.action.view-scheduled-drafts': string;
4185
+ /** Label for banner when release is scheduled */
4186
+ 'release.banner.scheduled-for-publishing-on': string;
4187
+ /** Label for button to show other variants in the document perspective list */
4188
+ 'release.chip.button.other-variants_one': string;
4189
+ /** Label for button to show other variants in the document perspective list */
4190
+ 'release.chip.button.other-variants_other': string;
4191
+ /** Label for button to show other versions in the document perspective list*/
4192
+ 'release.chip.button.other-versions_one': string;
4193
+ /** Label for button to show other versions in the document perspective list */
4194
+ 'release.chip.button.other-versions_other': string;
4195
+ /** Label for Draft chip in document header */
4196
+ 'release.chip.draft': string;
4197
+ /** Label for Draft chip in global header */
4198
+ 'release.chip.global.drafts': string;
4199
+ /** Label for Published chip in document header */
4200
+ 'release.chip.published': string;
4201
+ /** Label for tooltip in chip when document is in an archived release */
4202
+ 'release.chip.tooltip.archived': string;
4203
+ /** Label for tooltip in chip with the created date */
4204
+ 'release.chip.tooltip.created-date': string;
4205
+ /** Label for tooltip in draft chip when it's a live edit document */
4206
+ 'release.chip.tooltip.draft-disabled.live-edit': string;
4207
+ /** Label for tooltip in chip with the lasted edited date */
4208
+ 'release.chip.tooltip.edited-date': string;
4209
+ /** Label for tooltip in chip when document is intended for a future release that hasn't been scheduled */
4210
+ 'release.chip.tooltip.intended-for-date': string;
4211
+ /** Label for tooltip in chip when there is no recent draft edits */
4212
+ 'release.chip.tooltip.no-edits': string;
4213
+ /** Label for tooltip in chip when document isn't published */
3657
4214
  'release.chip.tooltip.not-published': string;
3658
4215
  'release.chip.tooltip.other-variants_one': string;
3659
4216
  'release.chip.tooltip.other-variants_other': string;
3660
4217
  'release.chip.tooltip.other-versions_one': string;
3661
- 'release.chip.tooltip.other-versions_other': string; /** Label for tooltip in chip with the published date */
3662
- 'release.chip.tooltip.published-date': string; /** Label for tooltip in chip when document is in a release that has been scheduled */
3663
- 'release.chip.tooltip.scheduled-for-date': string; /** Label for tooltip in scheduled chip without a known date */
3664
- 'release.chip.tooltip.unknown-date': string; /** Label for tooltip on deleted release */
3665
- 'release.deleted-tooltip': string; /** Title for copying version to a new release dialog */
3666
- 'release.dialog.copy-to-release.title': string; /** Title for action create a release */
3667
- 'release.dialog.create.confirm': string; /** Title for creating releases dialog */
3668
- 'release.dialog.create.title': string; /** Body text when deleting scheduled draft and draft is already up to date */
3669
- 'release.dialog.delete-schedule-draft.body-already-current': string; /** Body text when deleting scheduled draft and changes will be saved to draft */
3670
- 'release.dialog.delete-schedule-draft.body-will-save-to-draft': string; /** Body text when deleting scheduled draft with checkbox shown for user choice */
3671
- 'release.dialog.delete-schedule-draft.body-with-choice': string; /** Confirm button text for deleting a scheduled draft */
3672
- 'release.dialog.delete-schedule-draft.confirm': string; /** Checkbox label for copying scheduled draft to draft before deletion */
3673
- 'release.dialog.delete-schedule-draft.copy-checkbox': string; /** Explanation text shown when scheduled draft has different changes than current draft */
3674
- 'release.dialog.delete-schedule-draft.different-changes-explanation': string; /** Header for the dialog confirming deletion of a scheduled draft */
3675
- 'release.dialog.delete-schedule-draft.header': string; /** Body text for change schedule dialog */
3676
- 'release.dialog.edit-schedule.body': string; /** Confirm button text for change schedule dialog */
3677
- 'release.dialog.edit-schedule.confirm': string; /** Header for change schedule dialog */
3678
- 'release.dialog.edit-schedule.header': string; /** Body text for the dialog confirming running a scheduled draft immediately */
3679
- 'release.dialog.publish-scheduled-draft.body': string; /** Confirm button text for running a scheduled draft immediately */
3680
- 'release.dialog.publish-scheduled-draft.confirm': string; /** Header for the dialog confirming running a scheduled draft immediately */
3681
- 'release.dialog.publish-scheduled-draft.header': string; /** Label for description in tooltip to explain release types */
3682
- 'release.dialog.tooltip.description': string; /** Label for noting that a release time is not final */
3683
- 'release.dialog.tooltip.note': string; /** Title for tooltip to explain release time */
3684
- 'release.dialog.tooltip.title': string; /** The placeholder text when the release doesn't have a description */
3685
- 'release.form.placeholder-describe-release': string; /** Tooltip for button to hide release visibility */
3686
- 'release.layer.hide': string; /** Label for the release menu */
3687
- 'release.menu.label': string; /** Menu item label for scheduled drafts */
3688
- 'release.menu.scheduled-drafts': string; /** Tooltip for the release menu */
3689
- 'release.menu.tooltip': string; /** Menu item label for viewing content releases */
3690
- 'release.menu.view-releases': string; /** Label for draft perspective in navbar */
3691
- 'release.navbar.drafts': string; /** Label for published releases in navbar */
3692
- 'release.navbar.published': string; /** Tooltip for releases navigation in navbar */
3693
- 'release.navbar.tooltip': string; /** The placeholder text when the release doesn't have a title */
3694
- 'release.placeholder-untitled-release': string; /** Description for warning that the published schedule time is in the past */
3695
- 'release.schedule-dialog.publish-date-in-past-warning': string; /** Label for date picker when scheduling a release */
4218
+ 'release.chip.tooltip.other-versions_other': string;
4219
+ /** Label for tooltip in chip with the published date */
4220
+ 'release.chip.tooltip.published-date': string;
4221
+ /** Label for tooltip in chip when document is in a release that has been scheduled */
4222
+ 'release.chip.tooltip.scheduled-for-date': string;
4223
+ /** Label for tooltip in scheduled chip without a known date */
4224
+ 'release.chip.tooltip.unknown-date': string;
4225
+ /** Label for tooltip on deleted release */
4226
+ 'release.deleted-tooltip': string;
4227
+ /** Title for copying version to a new release dialog */
4228
+ 'release.dialog.copy-to-release.title': string;
4229
+ /** Title for action create a release */
4230
+ 'release.dialog.create.confirm': string;
4231
+ /** Title for creating releases dialog */
4232
+ 'release.dialog.create.title': string;
4233
+ /** Body text when deleting scheduled draft and draft is already up to date */
4234
+ 'release.dialog.delete-schedule-draft.body-already-current': string;
4235
+ /** Body text when deleting scheduled draft and changes will be saved to draft */
4236
+ 'release.dialog.delete-schedule-draft.body-will-save-to-draft': string;
4237
+ /** Body text when deleting scheduled draft with checkbox shown for user choice */
4238
+ 'release.dialog.delete-schedule-draft.body-with-choice': string;
4239
+ /** Confirm button text for deleting a scheduled draft */
4240
+ 'release.dialog.delete-schedule-draft.confirm': string;
4241
+ /** Checkbox label for copying scheduled draft to draft before deletion */
4242
+ 'release.dialog.delete-schedule-draft.copy-checkbox': string;
4243
+ /** Explanation text shown when scheduled draft has different changes than current draft */
4244
+ 'release.dialog.delete-schedule-draft.different-changes-explanation': string;
4245
+ /** Header for the dialog confirming deletion of a scheduled draft */
4246
+ 'release.dialog.delete-schedule-draft.header': string;
4247
+ /** Body text for change schedule dialog */
4248
+ 'release.dialog.edit-schedule.body': string;
4249
+ /** Confirm button text for change schedule dialog */
4250
+ 'release.dialog.edit-schedule.confirm': string;
4251
+ /** Header for change schedule dialog */
4252
+ 'release.dialog.edit-schedule.header': string;
4253
+ /** Body text for the dialog confirming running a scheduled draft immediately */
4254
+ 'release.dialog.publish-scheduled-draft.body': string;
4255
+ /** Confirm button text for running a scheduled draft immediately */
4256
+ 'release.dialog.publish-scheduled-draft.confirm': string;
4257
+ /** Header for the dialog confirming running a scheduled draft immediately */
4258
+ 'release.dialog.publish-scheduled-draft.header': string;
4259
+ /** Label for description in tooltip to explain release types */
4260
+ 'release.dialog.tooltip.description': string;
4261
+ /** Label for noting that a release time is not final */
4262
+ 'release.dialog.tooltip.note': string;
4263
+ /** Title for tooltip to explain release time */
4264
+ 'release.dialog.tooltip.title': string;
4265
+ /** The placeholder text when the release doesn't have a description */
4266
+ 'release.form.placeholder-describe-release': string;
4267
+ /** Tooltip for button to hide release visibility */
4268
+ 'release.layer.hide': string;
4269
+ /** Label for the release menu */
4270
+ 'release.menu.label': string;
4271
+ /** Menu item label for scheduled drafts */
4272
+ 'release.menu.scheduled-drafts': string;
4273
+ /** Tooltip for the release menu */
4274
+ 'release.menu.tooltip': string;
4275
+ /** Menu item label for viewing content releases */
4276
+ 'release.menu.view-releases': string;
4277
+ /** Label for draft perspective in navbar */
4278
+ 'release.navbar.drafts': string;
4279
+ /** Label for published releases in navbar */
4280
+ 'release.navbar.published': string;
4281
+ /** Tooltip for releases navigation in navbar */
4282
+ 'release.navbar.tooltip': string;
4283
+ /** The placeholder text when the release doesn't have a title */
4284
+ 'release.placeholder-untitled-release': string;
4285
+ /** Description for warning that the published schedule time is in the past */
4286
+ 'release.schedule-dialog.publish-date-in-past-warning': string;
4287
+ /** Label for date picker when scheduling a release */
3696
4288
  'release.schedule-dialog.select-publish-date-label': string;
3697
4289
  /** The toast description that will be shown when the user has a release perspective which is now archived
3698
4290
  * @deprecated – no longer needed
@@ -3701,16 +4293,22 @@ declare const studioLocaleStrings: {
3701
4293
  /** The toast title that will be shown when the user has a release perspective which is now archived
3702
4294
  * @deprecated – no longer needed
3703
4295
  * */
3704
- 'release.toast.archived-release.title': string; /** The toast title that will be shown the creating a release fails */
3705
- 'release.toast.create-release-error.title': string; /** Error toast for deleting a scheduled draft */
3706
- 'release.toast.delete-schedule-draft.error': string; /** Success toast for deleting a scheduled draft */
4296
+ 'release.toast.archived-release.title': string;
4297
+ /** The toast title that will be shown the creating a release fails */
4298
+ 'release.toast.create-release-error.title': string;
4299
+ /** Error toast for deleting a scheduled draft */
4300
+ 'release.toast.delete-schedule-draft.error': string;
4301
+ /** Success toast for deleting a scheduled draft */
3707
4302
  'release.toast.delete-schedule-draft.success': string;
3708
4303
  /** The toast title that will be shown when the user has a release perspective which is now deleted
3709
4304
  * @deprecated – no longer needed
3710
4305
  * */
3711
- 'release.toast.not-found-release.title': string; /** Error toast for pausing a scheduled draft */
3712
- 'release.toast.pause-scheduled-draft.error': string; /** Error toast for running a scheduled publish immediately */
3713
- 'release.toast.publish-scheduled-draft.error': string; /** Success toast for running a scheduled publish immediately */
4306
+ 'release.toast.not-found-release.title': string;
4307
+ /** Error toast for pausing a scheduled draft */
4308
+ 'release.toast.pause-scheduled-draft.error': string;
4309
+ /** Error toast for running a scheduled publish immediately */
4310
+ 'release.toast.publish-scheduled-draft.error': string;
4311
+ /** Success toast for running a scheduled publish immediately */
3714
4312
  'release.toast.publish-scheduled-draft.success': string;
3715
4313
  /** The toast description that will be shown when the user has a release perspective which is now published
3716
4314
  * @deprecated – no longer needed
@@ -3719,36 +4317,62 @@ declare const studioLocaleStrings: {
3719
4317
  /** The toast title that will be shown when the user has a release perspective which is now deleted
3720
4318
  * @deprecated – no longer needed
3721
4319
  **/
3722
- 'release.toast.published-release.title': string; /** Error toast for rescheduling a draft */
3723
- 'release.toast.reschedule-scheduled-draft.error': string; /** Success toast for rescheduling a draft */
3724
- 'release.toast.reschedule-scheduled-draft.success': string; /** Error toast for scheduling a paused draft */
3725
- 'release.toast.schedule-publish.error': string; /** Success toast for scheduling a paused draft */
4320
+ 'release.toast.published-release.title': string;
4321
+ /** Error toast for rescheduling a draft */
4322
+ 'release.toast.reschedule-scheduled-draft.error': string;
4323
+ /** Success toast for rescheduling a draft */
4324
+ 'release.toast.reschedule-scheduled-draft.success': string;
4325
+ /** Error toast for scheduling a paused draft */
4326
+ 'release.toast.schedule-publish.error': string;
4327
+ /** Success toast for scheduling a paused draft */
3726
4328
  'release.toast.schedule-publish.success': string;
3727
4329
  /** The toast title that will be shown when the user has a scheduled draft perspective which is now published
3728
4330
  * @deprecated – no longer needed
3729
4331
  * */
3730
- 'release.toast.scheduled-draft-published.title': string; /** Label for when a version of a document has already been added to the release */
3731
- 'release.tooltip.already-added': string; /** Label for when a release is scheduled / scheduling and a user can't add a document version to it */
3732
- 'release.tooltip.locked': string; /** Label for the release type 'as soon as possible' */
3733
- 'release.type.asap': string; /** Label for the release type 'at time', meaning it's a release with a scheduled date */
3734
- 'release.type.scheduled': string; /** Label for the release type 'undecided' */
3735
- 'release.type.undecided': string; /** Tooltip for the dropdown to show all versions of document */
3736
- 'release.version-list.tooltip': string; /** Button text for contacting support in the releases misconfiguration dialog */
3737
- 'releases.upsell.misconfiguration.contact-support': string; /** Header for the releases misconfiguration dialog */
3738
- 'releases.upsell.misconfiguration.header': string; /** Message shown in the releases misconfiguration dialog */
3739
- 'releases.upsell.misconfiguration.message': string; /** Confirm button text for the schedule publish dialog */
3740
- 'schedule-publish-dialog.confirm': string; /** Description for the schedule publish dialog */
3741
- 'schedule-publish-dialog.description': string; /** Header for the schedule publish dialog */
3742
- 'schedule-publish-dialog.header': string; /** Title for a scheduled draft release */
3743
- 'scheduled-drafts.release.title': string; /** Accessibility label to open search action when the search would go fullscreen (eg on narrower screens) */
3744
- 'search.action-open-aria-label': string; /** Action label for adding a search filter */
3745
- 'search.action.add-filter': string; /** Action label for clearing search filters */
3746
- 'search.action.clear-filters': string; /** Label for action to clear recent searches */
3747
- 'search.action.clear-recent-searches': string; /** Accessibility label for action to clear all currently applied document type filters */
3748
- 'search.action.clear-type-filters-aria-label': string; /** Label for action to clear all currently applied document type filters */
3749
- 'search.action.clear-type-filters-label': string; /** Accessibility label for when the search is full screen (on narrow screens) and you want to close the search */
3750
- 'search.action.close-search-aria-label': string; /** Accessibility label for filtering by document type */
3751
- 'search.action.filter-by-document-type-aria-label': string; /** Accessibility action label for removing an already applied search filter */
4332
+ 'release.toast.scheduled-draft-published.title': string;
4333
+ /** Label for when a version of a document has already been added to the release */
4334
+ 'release.tooltip.already-added': string;
4335
+ /** Label for when a release is scheduled / scheduling and a user can't add a document version to it */
4336
+ 'release.tooltip.locked': string;
4337
+ /** Label for the release type 'as soon as possible' */
4338
+ 'release.type.asap': string;
4339
+ /** Label for the release type 'at time', meaning it's a release with a scheduled date */
4340
+ 'release.type.scheduled': string;
4341
+ /** Label for the release type 'undecided' */
4342
+ 'release.type.undecided': string;
4343
+ /** Tooltip for the dropdown to show all versions of document */
4344
+ 'release.version-list.tooltip': string;
4345
+ /** Button text for contacting support in the releases misconfiguration dialog */
4346
+ 'releases.upsell.misconfiguration.contact-support': string;
4347
+ /** Header for the releases misconfiguration dialog */
4348
+ 'releases.upsell.misconfiguration.header': string;
4349
+ /** Message shown in the releases misconfiguration dialog */
4350
+ 'releases.upsell.misconfiguration.message': string;
4351
+ /** Confirm button text for the schedule publish dialog */
4352
+ 'schedule-publish-dialog.confirm': string;
4353
+ /** Description for the schedule publish dialog */
4354
+ 'schedule-publish-dialog.description': string;
4355
+ /** Header for the schedule publish dialog */
4356
+ 'schedule-publish-dialog.header': string;
4357
+ /** Title for a scheduled draft release */
4358
+ 'scheduled-drafts.release.title': string;
4359
+ /** Accessibility label to open search action when the search would go fullscreen (eg on narrower screens) */
4360
+ 'search.action-open-aria-label': string;
4361
+ /** Action label for adding a search filter */
4362
+ 'search.action.add-filter': string;
4363
+ /** Action label for clearing search filters */
4364
+ 'search.action.clear-filters': string;
4365
+ /** Label for action to clear recent searches */
4366
+ 'search.action.clear-recent-searches': string;
4367
+ /** Accessibility label for action to clear all currently applied document type filters */
4368
+ 'search.action.clear-type-filters-aria-label': string;
4369
+ /** Label for action to clear all currently applied document type filters */
4370
+ 'search.action.clear-type-filters-label': string;
4371
+ /** Accessibility label for when the search is full screen (on narrow screens) and you want to close the search */
4372
+ 'search.action.close-search-aria-label': string;
4373
+ /** Accessibility label for filtering by document type */
4374
+ 'search.action.filter-by-document-type-aria-label': string;
4375
+ /** Accessibility action label for removing an already applied search filter */
3752
4376
  'search.action.remove-filter-aria-label': string;
3753
4377
  /**
3754
4378
  * Text displayed when either no document type(s) have been selected, or we need a fallback,
@@ -3765,14 +4389,22 @@ declare const studioLocaleStrings: {
3765
4389
  * searching, but cannot list them all within the space assigned by the design, so we need an
3766
4390
  * additional "and X more" suffix. Allows using pluralization suffixes, eg `_one`, `_other` etc.
3767
4391
  */
3768
- 'search.action.search-specific-types-truncated': string; /** Dialog title for action to select an asset of unknown type */
3769
- 'search.action.select-asset': string; /** Dialog title for action to select a file asset */
3770
- 'search.action.select-asset_file': string; /** Dialog title for action to select an image asset */
3771
- 'search.action.select-asset_image': string; /** Accessibility label for when the search is full screen (on narrow screens) and you want to hide filters */
3772
- 'search.action.toggle-filters-aria-label_hide': string; /** Accessibility label for when the search is full screen (on narrow screens) and you want to show filters */
3773
- 'search.action.toggle-filters-aria-label_show': string; /** Label for when the search is full screen (on narrow screens) and you want to hide filters */
3774
- 'search.action.toggle-filters-label_hide': string; /** Label for when the search is full screen (on narrow screens) and you want to show filters */
3775
- 'search.action.toggle-filters-label_show': string; /** Tooltip text for the global search button */
4392
+ 'search.action.search-specific-types-truncated': string;
4393
+ /** Dialog title for action to select an asset of unknown type */
4394
+ 'search.action.select-asset': string;
4395
+ /** Dialog title for action to select a file asset */
4396
+ 'search.action.select-asset_file': string;
4397
+ /** Dialog title for action to select an image asset */
4398
+ 'search.action.select-asset_image': string;
4399
+ /** Accessibility label for when the search is full screen (on narrow screens) and you want to hide filters */
4400
+ 'search.action.toggle-filters-aria-label_hide': string;
4401
+ /** Accessibility label for when the search is full screen (on narrow screens) and you want to show filters */
4402
+ 'search.action.toggle-filters-aria-label_show': string;
4403
+ /** Label for when the search is full screen (on narrow screens) and you want to hide filters */
4404
+ 'search.action.toggle-filters-label_hide': string;
4405
+ /** Label for when the search is full screen (on narrow screens) and you want to show filters */
4406
+ 'search.action.toggle-filters-label_show': string;
4407
+ /** Tooltip text for the global search button */
3776
4408
  'search.button.tooltip': string;
3777
4409
  /**
3778
4410
  * A list of provided types (use `list` formatter preferably).
@@ -3788,33 +4420,54 @@ declare const studioLocaleStrings: {
3788
4420
  * thus we need to indicate that there are more. Allows using pluralization suffixes,
3789
4421
  * eg `_one`, `_other` etc.
3790
4422
  */
3791
- 'search.document-type-list-truncated': string; /** Accessibility label for list displaying the available document types */
3792
- 'search.document-types-aria-label': string; /** Label for when no document types matching the filter are found */
3793
- 'search.document-types-no-matches-found': string; /** Description for error when a filter cannot be displayed, describes that you should check the schema */
3794
- 'search.error.display-filter-description': string; /** Title for error when a filter cannot be displayed (mainly a developer-oriented error) */
3795
- 'search.error.display-filter-title': string; /** Description for error when no valid asset source is found, describes that you should check the the current studio config */
3796
- 'search.error.no-valid-asset-source-check-config-description': string; /** Description for error when no valid asset source is found, describes that only the default asset is supported */
3797
- 'search.error.no-valid-asset-source-only-default-description': string; /** Title for error when no valid asset sources found */
3798
- 'search.error.no-valid-asset-source-title': string; /** Helpful description for when search returned an error that we are not able to describe in detail */
3799
- 'search.error.unspecified-error-help-description': string; /** Title label for when search returned an error that we are not able to describe in detail */
4423
+ 'search.document-type-list-truncated': string;
4424
+ /** Accessibility label for list displaying the available document types */
4425
+ 'search.document-types-aria-label': string;
4426
+ /** Label for when no document types matching the filter are found */
4427
+ 'search.document-types-no-matches-found': string;
4428
+ /** Description for error when a filter cannot be displayed, describes that you should check the schema */
4429
+ 'search.error.display-filter-description': string;
4430
+ /** Title for error when a filter cannot be displayed (mainly a developer-oriented error) */
4431
+ 'search.error.display-filter-title': string;
4432
+ /** Description for error when no valid asset source is found, describes that you should check the the current studio config */
4433
+ 'search.error.no-valid-asset-source-check-config-description': string;
4434
+ /** Description for error when no valid asset source is found, describes that only the default asset is supported */
4435
+ 'search.error.no-valid-asset-source-only-default-description': string;
4436
+ /** Title for error when no valid asset sources found */
4437
+ 'search.error.no-valid-asset-source-title': string;
4438
+ /** Helpful description for when search returned an error that we are not able to describe in detail */
4439
+ 'search.error.unspecified-error-help-description': string;
4440
+ /** Title label for when search returned an error that we are not able to describe in detail */
3800
4441
  'search.error.unspecified-error-title': string;
3801
4442
  /**
3802
4443
  * Label for "All fields", a label that appears above the list of available fields when filtering.
3803
4444
  * If one or more document type has been chosen as filter, this label is replaced with a group of
3804
4445
  * fields per selected document type
3805
4446
  */
3806
- 'search.filter-all-fields-header': string; /** Label for the action of changing from one file to a different file in asset search filter */
3807
- 'search.filter-asset-change_file': string; /** Label for the action of changing from one image to a different image in asset search filter */
3808
- 'search.filter-asset-change_image': string; /** Label for the action of clearing the currently selected asset in an image/file filter */
3809
- 'search.filter-asset-clear': string; /** Label for the action of selecting a file in asset search filter */
3810
- 'search.filter-asset-select_file': string; /** Label for the action of selecting an image in asset search filter */
3811
- 'search.filter-asset-select_image': string; /** Label for boolean filter - false */
3812
- 'search.filter-boolean-false': string; /** Label for boolean filter - true */
3813
- 'search.filter-boolean-true': string; /** Accessibility label for list that lets you filter fields by title, when adding a new filter in search */
3814
- 'search.filter-by-title-aria-label': string; /** Accessibility label for date filter input */
3815
- 'search.filter-date-aria-label': string; /** Accessibility label for selecting end date on the date range search filter */
3816
- 'search.filter-date-range-end-date-aria-label': string; /** Accessibility label for selecting start date on the date range search filter */
3817
- 'search.filter-date-range-start-date-aria-label': string; /** Accessibility label for selecting the unit (day/month/year) when adding "X days ago" search filter */
4447
+ 'search.filter-all-fields-header': string;
4448
+ /** Label for the action of changing from one file to a different file in asset search filter */
4449
+ 'search.filter-asset-change_file': string;
4450
+ /** Label for the action of changing from one image to a different image in asset search filter */
4451
+ 'search.filter-asset-change_image': string;
4452
+ /** Label for the action of clearing the currently selected asset in an image/file filter */
4453
+ 'search.filter-asset-clear': string;
4454
+ /** Label for the action of selecting a file in asset search filter */
4455
+ 'search.filter-asset-select_file': string;
4456
+ /** Label for the action of selecting an image in asset search filter */
4457
+ 'search.filter-asset-select_image': string;
4458
+ /** Label for boolean filter - false */
4459
+ 'search.filter-boolean-false': string;
4460
+ /** Label for boolean filter - true */
4461
+ 'search.filter-boolean-true': string;
4462
+ /** Accessibility label for list that lets you filter fields by title, when adding a new filter in search */
4463
+ 'search.filter-by-title-aria-label': string;
4464
+ /** Accessibility label for date filter input */
4465
+ 'search.filter-date-aria-label': string;
4466
+ /** Accessibility label for selecting end date on the date range search filter */
4467
+ 'search.filter-date-range-end-date-aria-label': string;
4468
+ /** Accessibility label for selecting start date on the date range search filter */
4469
+ 'search.filter-date-range-start-date-aria-label': string;
4470
+ /** Accessibility label for selecting the unit (day/month/year) when adding "X days ago" search filter */
3818
4471
  'search.filter-date-unit-aria-label': string;
3819
4472
  /**
3820
4473
  * Label for "Days"/"Months"/"Years" when selecting it as unit in "X days ago" search filter.
@@ -3822,29 +4475,46 @@ declare const studioLocaleStrings: {
3822
4475
  */
3823
4476
  'search.filter-date-unit_days': string;
3824
4477
  'search.filter-date-unit_months': string;
3825
- 'search.filter-date-unit_years': string; /** Accessibility label for the input value (days/months/years) when adding "X days ago" search filter */
3826
- 'search.filter-date-value-aria-label': string; /** Label for "field description" shown in tooltip when navigating list of possible fields to filter */
3827
- 'search.filter-field-tooltip-description': string; /** Label for "field name" shown in tooltip when navigating list of possible fields to filter */
3828
- 'search.filter-field-tooltip-name': string; /** Label for "Used in document types", a list of the document types a field appears in. Shown in tooltip when navigating list of possible fields to filter */
3829
- 'search.filter-field-tooltip-used-in-document-types': string; /** Label for when no fields/filters are found for the given term */
3830
- 'search.filter-no-matches-found': string; /** Placeholder value for maximum numeric value filter */
3831
- 'search.filter-number-max-value-placeholder': string; /** Placeholder value for minimum numeric value filter */
3832
- 'search.filter-number-min-value-placeholder': string; /** Placeholder value for the number filter */
3833
- 'search.filter-number-value-placeholder': string; /** Placeholder for the "Filter" input, when narrowing possible fields/filters */
3834
- 'search.filter-placeholder': string; /** Label for the action of clearing the currently selected document in a reference filter */
4478
+ 'search.filter-date-unit_years': string;
4479
+ /** Accessibility label for the input value (days/months/years) when adding "X days ago" search filter */
4480
+ 'search.filter-date-value-aria-label': string;
4481
+ /** Label for "field description" shown in tooltip when navigating list of possible fields to filter */
4482
+ 'search.filter-field-tooltip-description': string;
4483
+ /** Label for "field name" shown in tooltip when navigating list of possible fields to filter */
4484
+ 'search.filter-field-tooltip-name': string;
4485
+ /** Label for "Used in document types", a list of the document types a field appears in. Shown in tooltip when navigating list of possible fields to filter */
4486
+ 'search.filter-field-tooltip-used-in-document-types': string;
4487
+ /** Label for when no fields/filters are found for the given term */
4488
+ 'search.filter-no-matches-found': string;
4489
+ /** Placeholder value for maximum numeric value filter */
4490
+ 'search.filter-number-max-value-placeholder': string;
4491
+ /** Placeholder value for minimum numeric value filter */
4492
+ 'search.filter-number-min-value-placeholder': string;
4493
+ /** Placeholder value for the number filter */
4494
+ 'search.filter-number-value-placeholder': string;
4495
+ /** Placeholder for the "Filter" input, when narrowing possible fields/filters */
4496
+ 'search.filter-placeholder': string;
4497
+ /** Label for the action of clearing the currently selected document in a reference filter */
3835
4498
  'search.filter-reference-clear': string;
3836
4499
  /**
3837
4500
  * Label for "shared fields", a label that appears above a list of fields that all filtered types
3838
4501
  * have in common, when adding a new filter. For instance, if "book" and "employee" both have a
3839
4502
  * "title" field, this field would be listed under "shared fields".
3840
4503
  * */
3841
- 'search.filter-shared-fields-header': string; /** Placeholder value for the string filter */
3842
- 'search.filter-string-value-placeholder': string; /** Label/placeholder prompting user to select one of the predefined, allowed values for a string field */
3843
- 'search.filter-string-value-select-predefined-value': string; /** Accessibility label for the "Filters" list, that is shown when using "Add filter" in search (singular) */
3844
- 'search.filters-aria-label_one': string; /** Accessibility label for the "Filters" list, that is shown when using "Add filter" in search (plural) */
3845
- 'search.filters-aria-label_other': string; /** Label for instructions on how to use the search - displayed when no recent searches are available */
3846
- 'search.instructions': string; /** Helpful description for when no search results are found */
3847
- 'search.no-results-help-description': string; /** Title label for when no search results are found */
4504
+ 'search.filter-shared-fields-header': string;
4505
+ /** Placeholder value for the string filter */
4506
+ 'search.filter-string-value-placeholder': string;
4507
+ /** Label/placeholder prompting user to select one of the predefined, allowed values for a string field */
4508
+ 'search.filter-string-value-select-predefined-value': string;
4509
+ /** Accessibility label for the "Filters" list, that is shown when using "Add filter" in search (singular) */
4510
+ 'search.filters-aria-label_one': string;
4511
+ /** Accessibility label for the "Filters" list, that is shown when using "Add filter" in search (plural) */
4512
+ 'search.filters-aria-label_other': string;
4513
+ /** Label for instructions on how to use the search - displayed when no recent searches are available */
4514
+ 'search.instructions': string;
4515
+ /** Helpful description for when no search results are found */
4516
+ 'search.no-results-help-description': string;
4517
+ /** Title label for when no search results are found */
3848
4518
  'search.no-results-title': string;
3849
4519
  /**
3850
4520
  * Individual search operators.
@@ -3997,16 +4667,26 @@ declare const studioLocaleStrings: {
3997
4667
  'search.operator.string-not-contains.description': string;
3998
4668
  'search.operator.string-not-contains.name': string;
3999
4669
  'search.operator.string-not-equal.description': string;
4000
- 'search.operator.string-not-equal.name': string; /** Label for the "Best match" search ordering type */
4001
- 'search.ordering.best-match-label': string; /** Label for the "Created: Oldest first" search ordering type */
4002
- 'search.ordering.created-ascending-label': string; /** Label for the "Created: Newest first" search ordering type */
4003
- 'search.ordering.created-descending-label': string; /** Label for the "Updated: Oldest first" search ordering type */
4004
- 'search.ordering.updated-ascending-label': string; /** Label for the "Updated: Newest first" search ordering type */
4005
- 'search.ordering.updated-descending-label': string; /** Placeholder text for the global search input field */
4006
- 'search.placeholder': string; /** Accessibility label for the recent searches section, shown when no valid search terms has been given */
4007
- 'search.recent-searches-aria-label': string; /** Label/heading shown for the recent searches section */
4008
- 'search.recent-searches-label': string; /** Accessibility label for the search results section, shown when the user has typed valid terms */
4009
- 'search.search-results-aria-label': string; /** Accessibility label for the navbar status button */
4670
+ 'search.operator.string-not-equal.name': string;
4671
+ /** Label for the "Best match" search ordering type */
4672
+ 'search.ordering.best-match-label': string;
4673
+ /** Label for the "Created: Oldest first" search ordering type */
4674
+ 'search.ordering.created-ascending-label': string;
4675
+ /** Label for the "Created: Newest first" search ordering type */
4676
+ 'search.ordering.created-descending-label': string;
4677
+ /** Label for the "Updated: Oldest first" search ordering type */
4678
+ 'search.ordering.updated-ascending-label': string;
4679
+ /** Label for the "Updated: Newest first" search ordering type */
4680
+ 'search.ordering.updated-descending-label': string;
4681
+ /** Placeholder text for the global search input field */
4682
+ 'search.placeholder': string;
4683
+ /** Accessibility label for the recent searches section, shown when no valid search terms has been given */
4684
+ 'search.recent-searches-aria-label': string;
4685
+ /** Label/heading shown for the recent searches section */
4686
+ 'search.recent-searches-label': string;
4687
+ /** Accessibility label for the search results section, shown when the user has typed valid terms */
4688
+ 'search.search-results-aria-label': string;
4689
+ /** Accessibility label for the navbar status button */
4010
4690
  'status-button.aria-label': string;
4011
4691
  'time-zone.action.search-for-timezone-placeholder': string;
4012
4692
  'time-zone.action.select-local-time-zone': string;
@@ -4017,86 +4697,154 @@ declare const studioLocaleStrings: {
4017
4697
  'time-zone.time-zone': string;
4018
4698
  'time-zone.time-zone-tooltip-content-releases': string;
4019
4699
  'time-zone.time-zone-tooltip-input': string;
4020
- 'time-zone.time-zone-tooltip-scheduled-publishing': string; /** Title for the changes tooltip in the history inspector*/
4021
- 'timeline.changes.title': string; /** Description for error when the timeline for the given document can't be loaded */
4022
- 'timeline.error.load-document-changes-description': string; /** Title for error when the timeline for the given document can't be loaded */
4023
- 'timeline.error.load-document-changes-title': string; /** Description for error when the timeline for the given document can't be loaded */
4024
- 'timeline.error.load-document-changes-version-description': string; /** Title for error when the timeline for the given version document can't be loaded */
4025
- 'timeline.error.load-document-changes-version-title': string; /** Error description for when the document doesn't have history */
4026
- 'timeline.error.no-document-history-description': string; /** Error title for when the document doesn't have history */
4027
- 'timeline.error.no-document-history-title': string; /** Error prompt when revision cannot be loaded */
4028
- 'timeline.error.unable-to-load-revision': string; /** Label for when the timeline item is the latest in the history */
4029
- 'timeline.latest': string; /** Label for latest revision for timeline menu dropdown */
4700
+ 'time-zone.time-zone-tooltip-scheduled-publishing': string;
4701
+ /** Title for the changes tooltip in the history inspector*/
4702
+ 'timeline.changes.title': string;
4703
+ /** Description for error when the timeline for the given document can't be loaded */
4704
+ 'timeline.error.load-document-changes-description': string;
4705
+ /** Title for error when the timeline for the given document can't be loaded */
4706
+ 'timeline.error.load-document-changes-title': string;
4707
+ /** Description for error when the timeline for the given document can't be loaded */
4708
+ 'timeline.error.load-document-changes-version-description': string;
4709
+ /** Title for error when the timeline for the given version document can't be loaded */
4710
+ 'timeline.error.load-document-changes-version-title': string;
4711
+ /** Error description for when the document doesn't have history */
4712
+ 'timeline.error.no-document-history-description': string;
4713
+ /** Error title for when the document doesn't have history */
4714
+ 'timeline.error.no-document-history-title': string;
4715
+ /** Error prompt when revision cannot be loaded */
4716
+ 'timeline.error.unable-to-load-revision': string;
4717
+ /** Label for when the timeline item is the latest in the history */
4718
+ 'timeline.latest': string;
4719
+ /** Label for latest revision for timeline menu dropdown */
4030
4720
  'timeline.latest-revision': string;
4031
4721
  /**
4032
4722
  * Label for latest revision for timeline menu dropdown
4033
4723
  * @deprecated as of `v3.47.0` `timeline.latest-revision` should be used instead. Note: _usage_ of this key is deprecated, but Studios on `< v3.47.0` still require this key to be _defined_
4034
4724
  * */
4035
- 'timeline.latest-version': string; /** The aria-label for the list of revisions in the timeline */
4036
- 'timeline.list.aria-label': string; /** Label for loading history */
4725
+ 'timeline.latest-version': string;
4726
+ /** The aria-label for the list of revisions in the timeline */
4727
+ 'timeline.list.aria-label': string;
4728
+ /** Label for loading history */
4037
4729
  'timeline.loading-history': string;
4038
- 'timeline.no-previous-events': string; /** Label shown in review changes timeline when a document has been created */
4039
- 'timeline.operation.created': string; /** Label shown in review changes timeline when a document was initially created */
4040
- 'timeline.operation.created-initial': string; /** Label shown in review changes timeline when a document was initially created, with a timestamp */
4041
- 'timeline.operation.created-initial_timestamp': string; /** Label shown in review changes timeline when a document has been created, with a timestamp */
4042
- 'timeline.operation.created_timestamp': string; /** Label shown in review changes timeline when a document has been deleted */
4043
- 'timeline.operation.deleted': string; /** Label shown in review changes timeline when a document has been deleted, with a timestamp */
4044
- 'timeline.operation.deleted_timestamp': string; /** Label shown in review changes timeline when a draft document has been created*/
4045
- 'timeline.operation.draft-created': string; /** Label shown in review changes timeline when a draft document has been created, with a timestamp */
4046
- 'timeline.operation.draft-created_timestamp': string; /** Label shown in review changes timeline when a draft has been discarded */
4047
- 'timeline.operation.draft-discarded': string; /** Label shown in review changes timeline when a draft has been discarded, with a timestamp */
4048
- 'timeline.operation.draft-discarded_timestamp': string; /** Label shown in review changes timeline when a draft has been edited */
4049
- 'timeline.operation.edited-draft': string; /** Label shown in review changes timeline when a draft has been edited, with a timestamp */
4050
- 'timeline.operation.edited-draft_timestamp': string; /** Label shown in review changes timeline when a document has been edited live */
4051
- 'timeline.operation.edited-live': string; /** Label shown in review changes timeline when a document has been edited live, with a timestamp */
4052
- 'timeline.operation.edited-live_timestamp': string; /** Label shown in review changes timeline event when transactions have been deleted by retention policy */
4053
- 'timeline.operation.history-cleared': string; /** Label shown in review changes timeline when a document was published */
4054
- 'timeline.operation.published': string; /** Label shown in review changes timeline when a document was published, with a timestamp */
4055
- 'timeline.operation.published_timestamp': string; /** Label shown in review changes timeline when a document was unpublished */
4056
- 'timeline.operation.unpublished': string; /** Label shown in review changes timeline when a document was unpublished, with a timestamp */
4057
- 'timeline.operation.unpublished_timestamp': string; /** Label shown in review changes timeline when a document version has been created */
4058
- 'timeline.operation.version-created': string; /** Label shown in review changes timeline when a document version has been created, with a timestamp */
4059
- 'timeline.operation.version-created_timestamp': string; /** Label shown in review changes timeline when a document version has been discarded */
4060
- 'timeline.operation.version-discarded': string; /** Label shown in review changes timeline when a document version has been discarded, with a timestamp */
4730
+ 'timeline.no-previous-events': string;
4731
+ /** Label shown in review changes timeline when a document has been created */
4732
+ 'timeline.operation.created': string;
4733
+ /** Label shown in review changes timeline when a document was initially created */
4734
+ 'timeline.operation.created-initial': string;
4735
+ /** Label shown in review changes timeline when a document was initially created, with a timestamp */
4736
+ 'timeline.operation.created-initial_timestamp': string;
4737
+ /** Label shown in review changes timeline when a document has been created, with a timestamp */
4738
+ 'timeline.operation.created_timestamp': string;
4739
+ /** Label shown in review changes timeline when a document has been deleted */
4740
+ 'timeline.operation.deleted': string;
4741
+ /** Label shown in review changes timeline when a document has been deleted, with a timestamp */
4742
+ 'timeline.operation.deleted_timestamp': string;
4743
+ /** Label shown in review changes timeline when a draft document has been created*/
4744
+ 'timeline.operation.draft-created': string;
4745
+ /** Label shown in review changes timeline when a draft document has been created, with a timestamp */
4746
+ 'timeline.operation.draft-created_timestamp': string;
4747
+ /** Label shown in review changes timeline when a draft has been discarded */
4748
+ 'timeline.operation.draft-discarded': string;
4749
+ /** Label shown in review changes timeline when a draft has been discarded, with a timestamp */
4750
+ 'timeline.operation.draft-discarded_timestamp': string;
4751
+ /** Label shown in review changes timeline when a draft has been edited */
4752
+ 'timeline.operation.edited-draft': string;
4753
+ /** Label shown in review changes timeline when a draft has been edited, with a timestamp */
4754
+ 'timeline.operation.edited-draft_timestamp': string;
4755
+ /** Label shown in review changes timeline when a document has been edited live */
4756
+ 'timeline.operation.edited-live': string;
4757
+ /** Label shown in review changes timeline when a document has been edited live, with a timestamp */
4758
+ 'timeline.operation.edited-live_timestamp': string;
4759
+ /** Label shown in review changes timeline event when transactions have been deleted by retention policy */
4760
+ 'timeline.operation.history-cleared': string;
4761
+ /** Label shown in review changes timeline when a document was published */
4762
+ 'timeline.operation.published': string;
4763
+ /** Label shown in review changes timeline when a document was published, with a timestamp */
4764
+ 'timeline.operation.published_timestamp': string;
4765
+ /** Label shown in review changes timeline when a document was unpublished */
4766
+ 'timeline.operation.unpublished': string;
4767
+ /** Label shown in review changes timeline when a document was unpublished, with a timestamp */
4768
+ 'timeline.operation.unpublished_timestamp': string;
4769
+ /** Label shown in review changes timeline when a document version has been created */
4770
+ 'timeline.operation.version-created': string;
4771
+ /** Label shown in review changes timeline when a document version has been created, with a timestamp */
4772
+ 'timeline.operation.version-created_timestamp': string;
4773
+ /** Label shown in review changes timeline when a document version has been discarded */
4774
+ 'timeline.operation.version-discarded': string;
4775
+ /** Label shown in review changes timeline when a document version has been discarded, with a timestamp */
4061
4776
  'timeline.operation.version-discarded_timestamp': string;
4062
4777
  /**
4063
4778
  * Label for determining since which version the changes for timeline menu dropdown are showing.
4064
4779
  * Receives the time label as a parameter (`timestamp`).
4065
4780
  */
4066
- 'timeline.since': string; /** Label for missing change version for timeline menu dropdown are showing */
4067
- 'timeline.since-version-missing': string; /** Aria label for the action buttons in the PTE toolbar */
4068
- 'toolbar.portable-text.action-button-aria-label': string; /** Accessibility label for the breadcrumb menu */
4069
- 'tree-editing-dialog.breadcrumbs.menu': string; /** Title placeholder for search input in array of objects */
4070
- 'tree-editing-dialog.search-placeholder': string; /** Menu aria label for the search menu */
4071
- 'tree-editing-dialog.search.menu-label': string; /** Title label for when no search results are found on the tree of objects */
4072
- 'tree-editing-dialog.search.no-results-title': string; /** Label to close the sidebar */
4073
- 'tree-editing-dialog.sidebar.action.close': string; /** Collapse label the menu item in the sidebar */
4074
- 'tree-editing-dialog.sidebar.action.collapse': string; /** Label to close the dialog */
4075
- 'tree-editing-dialog.sidebar.action.done': string; /** Exapnd label the menu item in the sidebar */
4076
- 'tree-editing-dialog.sidebar.action.expand': string; /** Label to open the sidebar */
4077
- 'tree-editing-dialog.sidebar.action.open': string; /** Label for the button showed after trial ended */
4078
- 'user-menu.action.free-trial-finished': string; /** Label for button showing the free trial days left */
4781
+ 'timeline.since': string;
4782
+ /** Label for missing change version for timeline menu dropdown are showing */
4783
+ 'timeline.since-version-missing': string;
4784
+ /** Aria label for the action buttons in the PTE toolbar */
4785
+ 'toolbar.portable-text.action-button-aria-label': string;
4786
+ /** Accessibility label for the breadcrumb menu */
4787
+ 'tree-editing-dialog.breadcrumbs.menu': string;
4788
+ /** Title placeholder for search input in array of objects */
4789
+ 'tree-editing-dialog.search-placeholder': string;
4790
+ /** Menu aria label for the search menu */
4791
+ 'tree-editing-dialog.search.menu-label': string;
4792
+ /** Title label for when no search results are found on the tree of objects */
4793
+ 'tree-editing-dialog.search.no-results-title': string;
4794
+ /** Label to close the sidebar */
4795
+ 'tree-editing-dialog.sidebar.action.close': string;
4796
+ /** Collapse label the menu item in the sidebar */
4797
+ 'tree-editing-dialog.sidebar.action.collapse': string;
4798
+ /** Label to close the dialog */
4799
+ 'tree-editing-dialog.sidebar.action.done': string;
4800
+ /** Exapnd label the menu item in the sidebar */
4801
+ 'tree-editing-dialog.sidebar.action.expand': string;
4802
+ /** Label to open the sidebar */
4803
+ 'tree-editing-dialog.sidebar.action.open': string;
4804
+ /** Label for the button showed after trial ended */
4805
+ 'user-menu.action.free-trial-finished': string;
4806
+ /** Label for button showing the free trial days left */
4079
4807
  'user-menu.action.free-trial_one': string;
4080
- 'user-menu.action.free-trial_other': string; /** Label for action to invite members to the current sanity project */
4081
- 'user-menu.action.invite-members': string; /** Accessibility label for action to invite members to the current sanity project */
4082
- 'user-menu.action.invite-members-aria-label': string; /** Label for action to manage the current sanity project */
4083
- 'user-menu.action.manage-project': string; /** Accessibility label for the action to manage the current project */
4084
- 'user-menu.action.manage-project-aria-label': string; /** Tooltip helper text when portable text annotation is disabled for empty block*/
4085
- 'user-menu.action.portable-text.annotation-disabled_empty-block': string; /** Tooltip helper text when portable text annotation is disabled for multiple blocks */
4086
- 'user-menu.action.portable-text.annotation-disabled_multiple-blocks': string; /** Label for action to sign out of the current sanity project */
4087
- 'user-menu.action.sign-out': string; /** Title for appearance section for the current studio (dark / light / system scheme) */
4088
- 'user-menu.appearance-title': string; /** Label for close menu button for user menu */
4089
- 'user-menu.close-menu': string; /** Description for using the "dark theme" in the appearance user menu */
4090
- 'user-menu.color-scheme.dark-description': string; /** Title for using the "dark theme" in the appearance user menu */
4091
- 'user-menu.color-scheme.dark-title': string; /** Description for using the "light theme" in the appearance user menu */
4092
- 'user-menu.color-scheme.light-description': string; /** Title for using the "light theme" in the appearance user menu */
4093
- 'user-menu.color-scheme.light-title': string; /** Description for using "system apparence" in the appearance user menu */
4094
- 'user-menu.color-scheme.system-description': string; /** Title for using system apparence in the appearance user menu */
4095
- 'user-menu.color-scheme.system-title': string; /** Title for locale section for the current studio */
4096
- 'user-menu.locale-title': string; /** Label for tooltip to show which provider the currently logged in user is using */
4097
- 'user-menu.login-provider': string; /** Label for open menu button for user menu */
4098
- 'user-menu.open-menu': string; /** Label for other users' agent bundle versions */
4099
- 'version.agent-bundle.agent-changes': string; /** Label for the current user's agent bundle versions */
4808
+ 'user-menu.action.free-trial_other': string;
4809
+ /** Label for action to invite members to the current sanity project */
4810
+ 'user-menu.action.invite-members': string;
4811
+ /** Accessibility label for action to invite members to the current sanity project */
4812
+ 'user-menu.action.invite-members-aria-label': string;
4813
+ /** Label for action to manage the current sanity project */
4814
+ 'user-menu.action.manage-project': string;
4815
+ /** Accessibility label for the action to manage the current project */
4816
+ 'user-menu.action.manage-project-aria-label': string;
4817
+ /** Tooltip helper text when portable text annotation is disabled for empty block*/
4818
+ 'user-menu.action.portable-text.annotation-disabled_empty-block': string;
4819
+ /** Tooltip helper text when portable text annotation is disabled for multiple blocks */
4820
+ 'user-menu.action.portable-text.annotation-disabled_multiple-blocks': string;
4821
+ /** Label for action to sign out of the current sanity project */
4822
+ 'user-menu.action.sign-out': string;
4823
+ /** Title for appearance section for the current studio (dark / light / system scheme) */
4824
+ 'user-menu.appearance-title': string;
4825
+ /** Label for close menu button for user menu */
4826
+ 'user-menu.close-menu': string;
4827
+ /** Description for using the "dark theme" in the appearance user menu */
4828
+ 'user-menu.color-scheme.dark-description': string;
4829
+ /** Title for using the "dark theme" in the appearance user menu */
4830
+ 'user-menu.color-scheme.dark-title': string;
4831
+ /** Description for using the "light theme" in the appearance user menu */
4832
+ 'user-menu.color-scheme.light-description': string;
4833
+ /** Title for using the "light theme" in the appearance user menu */
4834
+ 'user-menu.color-scheme.light-title': string;
4835
+ /** Description for using "system apparence" in the appearance user menu */
4836
+ 'user-menu.color-scheme.system-description': string;
4837
+ /** Title for using system apparence in the appearance user menu */
4838
+ 'user-menu.color-scheme.system-title': string;
4839
+ /** Title for locale section for the current studio */
4840
+ 'user-menu.locale-title': string;
4841
+ /** Label for tooltip to show which provider the currently logged in user is using */
4842
+ 'user-menu.login-provider': string;
4843
+ /** Label for open menu button for user menu */
4844
+ 'user-menu.open-menu': string;
4845
+ /** Label for other users' agent bundle versions */
4846
+ 'version.agent-bundle.agent-changes': string;
4847
+ /** Label for the current user's agent bundle versions */
4100
4848
  'version.agent-bundle.proposed-changes': string;
4101
4849
  /**
4102
4850
  * Label for action to add a workspace (currently a developer-oriented action, as this will
@@ -4109,12 +4857,18 @@ declare const studioLocaleStrings: {
4109
4857
  * workspace. In other words, label for the action shown when you have reconsidered which
4110
4858
  * workspace to authenticate in.
4111
4859
  */
4112
- 'workspaces.action.choose-another-workspace': string; /** Label for title to switch workspace before workspaces are listed */
4113
- 'workspaces.action.switch-workspace': string; /** Label for heading that indicates that you can choose your workspace */
4114
- 'workspaces.choose-your-workspace-label': string; /** Label for the workspace menu */
4115
- 'workspaces.select-workspace-aria-label': string; /** Button label for opening the workspace switcher */
4116
- 'workspaces.select-workspace-label': string; /** Tooltip for the workspace menu */
4117
- 'workspaces.select-workspace-tooltip': string; /** Title for Workplaces dropdown menu */
4860
+ 'workspaces.action.choose-another-workspace': string;
4861
+ /** Label for title to switch workspace before workspaces are listed */
4862
+ 'workspaces.action.switch-workspace': string;
4863
+ /** Label for heading that indicates that you can choose your workspace */
4864
+ 'workspaces.choose-your-workspace-label': string;
4865
+ /** Label for the workspace menu */
4866
+ 'workspaces.select-workspace-aria-label': string;
4867
+ /** Button label for opening the workspace switcher */
4868
+ 'workspaces.select-workspace-label': string;
4869
+ /** Tooltip for the workspace menu */
4870
+ 'workspaces.select-workspace-tooltip': string;
4871
+ /** Title for Workplaces dropdown menu */
4118
4872
  'workspaces.title': string;
4119
4873
  };
4120
4874
  /**
@@ -4131,52 +4885,99 @@ type StudioLocaleResourceKeys = keyof typeof studioLocaleStrings;
4131
4885
  * @hidden
4132
4886
  */
4133
4887
  declare const validationLocaleStrings: {
4134
- /** Array must have exactly "$wantedLength" items, but has more/less */readonly 'array.exact-length': 'Must have exactly {{wantedLength}} items'; /** Portable Text array must have exactly "$wantedLength" blocks, but has more/less */
4135
- readonly 'array.exact-length_blocks': 'Must have exactly {{wantedLength}} blocks'; /** Array item is a duplicate, but array wants only unique items */
4136
- readonly 'array.item-duplicate': "Can't be a duplicate"; /** Array has more than the maximum of "$maxLength" items */
4137
- readonly 'array.maximum-length': 'Must have at most {{maxLength}} items'; /** Portable Text array has more than the maximum of "$maxLength" items */
4138
- readonly 'array.maximum-length_blocks': 'Must have at most {{maxLength}} blocks'; /** Array has less than the minimum of "$minLength" items */
4139
- readonly 'array.minimum-length': 'Must have at least {{minLength}} items'; /** Portable Text array has less than the minimum of "$minLength" blocks */
4140
- readonly 'array.minimum-length_blocks': 'Must have at least {{minLength}} blocks'; /** Date is not valid or not in the correct format (ISO-8601) */
4141
- readonly 'date.invalid-format': 'Must be a valid ISO-8601 formatted date string'; /** Date is later than the given maximum date "$maxDate" */
4142
- readonly 'date.maximum': 'Must be at or before {{maxDate}}'; /** Date is earlier than the given minimum date "$minDate" */
4143
- readonly 'date.minimum': 'Must be at or after {{minDate}}'; /** A value of incorrect type is found, eg found `number` instead of `string` */
4144
- readonly 'generic.incorrect-type': 'Expected type "{{expectedType}}", got "{{actualType}}"'; /** Value is not one of the values specifically allowed */
4145
- readonly 'generic.not-allowed': 'Value did not match any allowed values'; /** Value "$givenValue" is not one of the values specifically allowed */
4146
- readonly 'generic.not-allowed_hint': 'Value "{{hint}}" did not match any allowed values'; /** A value is expected, but none is provided */
4147
- readonly 'generic.required': 'Required'; /** Number is less than the given minimum threshold value "$threshold" */
4148
- readonly 'number.greater-than': 'Must be greater than {{threshold}}'; /** Number is greater than the given maximum threshold value "$threshold" */
4149
- readonly 'number.less-than': 'Must be less than {{threshold}}'; /** Number is higher than the given maximum value "$maxNumber" */
4150
- readonly 'number.maximum': 'Must be lower than or equal to {{maxNumber}}'; /** Number has more precision (decimals) than the allowed "$limit" */
4151
- readonly 'number.maximum-precision': 'Max precision is {{limit}}'; /** Number is lower than the given minimum value "$minNumber" */
4152
- readonly 'number.minimum': 'Must be greater than or equal to {{minNumber}}'; /** Number is not an integer ("whole number") */
4153
- readonly 'number.non-integer': 'Must be an integer'; /** Object is missing a reference to an asset document in its `asset` field */
4154
- readonly 'object.asset-required': 'Asset is required'; /** Object is missing a reference to a file asset document in its `asset` field */
4155
- readonly 'object.asset-required_file': 'File is required'; /** Object is missing a reference to an image asset document in its `asset` field */
4156
- readonly 'object.asset-required_image': 'Image is required'; /** Media can't be found in the Media Library */
4157
- readonly 'object.media-not-found': 'The asset could not be found in the Media Library'; /** Media object is missing a reference to a document in its `_ref` field */
4158
- readonly 'object.not-media-library-asset': 'Must be a reference to a Media Library asset'; /** Object is not a reference to a document (eg `{_ref: 'documentId'}`) */
4159
- readonly 'object.not-reference': 'Must be a reference to a document'; /** Object references a document which is not published */
4160
- readonly 'object.reference-not-published': 'Referenced document must be published'; /** Accessibility label for closing the validation panel */
4161
- readonly 'panel.close-button-aria-label': 'Close validation'; /** Message shown when the validation panel is opened but there are no errors/warnings */
4162
- readonly 'panel.no-errors-message': 'No validation errors'; /** Title for the actual "Validation" panel/feature */
4163
- readonly 'panel.title': 'Validation'; /** Message shown when the validation panel is opened but the document is going to unpublish */
4164
- readonly 'panel.unpublish-message': 'Document is going to unpublish, no validation errors are shown'; /** Slug is an object, but is missing a `current` string property */
4165
- readonly 'slug.missing-current': 'Slug must have a value'; /** Slug is not an object (eg `{current: 'some-slug'}`) */
4166
- readonly 'slug.not-object': 'Slug must be an object'; /** Slug is already in use somewhere else, but needs to be unique */
4167
- readonly 'slug.not-unique': 'Slug is already in use'; /** String is not a valid email address */
4168
- readonly 'string.email': 'Must be a valid email address'; /** String has a different character length than the exact number "$wantedLength" */
4169
- readonly 'string.exact-length': 'Must be exactly {{wantedLength}} characters long'; /** String contains characters that are not in lowercase */
4170
- readonly 'string.lowercase': 'Must be all lowercase characters'; /** String is longer than the limit of "$maxLength" characters */
4171
- readonly 'string.maximum-length': 'Must be at most {{maxLength}} characters long'; /** String is shorter than the limit of "$minLength" characters */
4172
- readonly 'string.minimum-length': 'Must be at least {{minLength}} characters long'; /** String does not match the given regular expression, but should */
4173
- readonly 'string.regex-does-not-match': 'Does not match "{{name}}"-pattern'; /** String matches the given regular expression, but should not */
4174
- readonly 'string.regex-match': 'Should not match "{{name}}"-pattern'; /** String contains characters that are not in uppercase */
4175
- readonly 'string.uppercase': 'Must be all uppercase characters'; /** String contains a protocol/scheme that is not allowed, eg (`ftp`, `mailto`…) */
4176
- readonly 'string.url.disallowed-scheme': 'Does not match allowed protocols/schemes'; /** String contains a URL with a username or password specified before the host */
4177
- readonly 'string.url.includes-credentials': 'Username/password not allowed'; /** String is not a valid URL */
4178
- readonly 'string.url.invalid': 'Not a valid URL'; /** String is not an absolute URL (eg it is missing a protocol/host) */
4179
- readonly 'string.url.not-absolute': 'Relative URLs are not allowed'; /** String is not a relative URL (eg it contains a protocol/host) */
4888
+ /** Array must have exactly "$wantedLength" items, but has more/less */
4889
+ readonly 'array.exact-length': 'Must have exactly {{wantedLength}} items';
4890
+ /** Portable Text array must have exactly "$wantedLength" blocks, but has more/less */
4891
+ readonly 'array.exact-length_blocks': 'Must have exactly {{wantedLength}} blocks';
4892
+ /** Array item is a duplicate, but array wants only unique items */
4893
+ readonly 'array.item-duplicate': "Can't be a duplicate";
4894
+ /** Array has more than the maximum of "$maxLength" items */
4895
+ readonly 'array.maximum-length': 'Must have at most {{maxLength}} items';
4896
+ /** Portable Text array has more than the maximum of "$maxLength" items */
4897
+ readonly 'array.maximum-length_blocks': 'Must have at most {{maxLength}} blocks';
4898
+ /** Array has less than the minimum of "$minLength" items */
4899
+ readonly 'array.minimum-length': 'Must have at least {{minLength}} items';
4900
+ /** Portable Text array has less than the minimum of "$minLength" blocks */
4901
+ readonly 'array.minimum-length_blocks': 'Must have at least {{minLength}} blocks';
4902
+ /** Date is not valid or not in the correct format (ISO-8601) */
4903
+ readonly 'date.invalid-format': 'Must be a valid ISO-8601 formatted date string';
4904
+ /** Date is later than the given maximum date "$maxDate" */
4905
+ readonly 'date.maximum': 'Must be at or before {{maxDate}}';
4906
+ /** Date is earlier than the given minimum date "$minDate" */
4907
+ readonly 'date.minimum': 'Must be at or after {{minDate}}';
4908
+ /** A value of incorrect type is found, eg found `number` instead of `string` */
4909
+ readonly 'generic.incorrect-type': 'Expected type "{{expectedType}}", got "{{actualType}}"';
4910
+ /** Value is not one of the values specifically allowed */
4911
+ readonly 'generic.not-allowed': 'Value did not match any allowed values';
4912
+ /** Value "$givenValue" is not one of the values specifically allowed */
4913
+ readonly 'generic.not-allowed_hint': 'Value "{{hint}}" did not match any allowed values';
4914
+ /** A value is expected, but none is provided */
4915
+ readonly 'generic.required': 'Required';
4916
+ /** Number is less than the given minimum threshold value "$threshold" */
4917
+ readonly 'number.greater-than': 'Must be greater than {{threshold}}';
4918
+ /** Number is greater than the given maximum threshold value "$threshold" */
4919
+ readonly 'number.less-than': 'Must be less than {{threshold}}';
4920
+ /** Number is higher than the given maximum value "$maxNumber" */
4921
+ readonly 'number.maximum': 'Must be lower than or equal to {{maxNumber}}';
4922
+ /** Number has more precision (decimals) than the allowed "$limit" */
4923
+ readonly 'number.maximum-precision': 'Max precision is {{limit}}';
4924
+ /** Number is lower than the given minimum value "$minNumber" */
4925
+ readonly 'number.minimum': 'Must be greater than or equal to {{minNumber}}';
4926
+ /** Number is not an integer ("whole number") */
4927
+ readonly 'number.non-integer': 'Must be an integer';
4928
+ /** Object is missing a reference to an asset document in its `asset` field */
4929
+ readonly 'object.asset-required': 'Asset is required';
4930
+ /** Object is missing a reference to a file asset document in its `asset` field */
4931
+ readonly 'object.asset-required_file': 'File is required';
4932
+ /** Object is missing a reference to an image asset document in its `asset` field */
4933
+ readonly 'object.asset-required_image': 'Image is required';
4934
+ /** Media can't be found in the Media Library */
4935
+ readonly 'object.media-not-found': 'The asset could not be found in the Media Library';
4936
+ /** Media object is missing a reference to a document in its `_ref` field */
4937
+ readonly 'object.not-media-library-asset': 'Must be a reference to a Media Library asset';
4938
+ /** Object is not a reference to a document (eg `{_ref: 'documentId'}`) */
4939
+ readonly 'object.not-reference': 'Must be a reference to a document';
4940
+ /** Object references a document which is not published */
4941
+ readonly 'object.reference-not-published': 'Referenced document must be published';
4942
+ /** Accessibility label for closing the validation panel */
4943
+ readonly 'panel.close-button-aria-label': 'Close validation';
4944
+ /** Message shown when the validation panel is opened but there are no errors/warnings */
4945
+ readonly 'panel.no-errors-message': 'No validation errors';
4946
+ /** Title for the actual "Validation" panel/feature */
4947
+ readonly 'panel.title': 'Validation';
4948
+ /** Message shown when the validation panel is opened but the document is going to unpublish */
4949
+ readonly 'panel.unpublish-message': 'Document is going to unpublish, no validation errors are shown';
4950
+ /** Slug is an object, but is missing a `current` string property */
4951
+ readonly 'slug.missing-current': 'Slug must have a value';
4952
+ /** Slug is not an object (eg `{current: 'some-slug'}`) */
4953
+ readonly 'slug.not-object': 'Slug must be an object';
4954
+ /** Slug is already in use somewhere else, but needs to be unique */
4955
+ readonly 'slug.not-unique': 'Slug is already in use';
4956
+ /** String is not a valid email address */
4957
+ readonly 'string.email': 'Must be a valid email address';
4958
+ /** String has a different character length than the exact number "$wantedLength" */
4959
+ readonly 'string.exact-length': 'Must be exactly {{wantedLength}} characters long';
4960
+ /** String contains characters that are not in lowercase */
4961
+ readonly 'string.lowercase': 'Must be all lowercase characters';
4962
+ /** String is longer than the limit of "$maxLength" characters */
4963
+ readonly 'string.maximum-length': 'Must be at most {{maxLength}} characters long';
4964
+ /** String is shorter than the limit of "$minLength" characters */
4965
+ readonly 'string.minimum-length': 'Must be at least {{minLength}} characters long';
4966
+ /** String does not match the given regular expression, but should */
4967
+ readonly 'string.regex-does-not-match': 'Does not match "{{name}}"-pattern';
4968
+ /** String matches the given regular expression, but should not */
4969
+ readonly 'string.regex-match': 'Should not match "{{name}}"-pattern';
4970
+ /** String contains characters that are not in uppercase */
4971
+ readonly 'string.uppercase': 'Must be all uppercase characters';
4972
+ /** String contains a protocol/scheme that is not allowed, eg (`ftp`, `mailto`…) */
4973
+ readonly 'string.url.disallowed-scheme': 'Does not match allowed protocols/schemes';
4974
+ /** String contains a URL with a username or password specified before the host */
4975
+ readonly 'string.url.includes-credentials': 'Username/password not allowed';
4976
+ /** String is not a valid URL */
4977
+ readonly 'string.url.invalid': 'Not a valid URL';
4978
+ /** String is not an absolute URL (eg it is missing a protocol/host) */
4979
+ readonly 'string.url.not-absolute': 'Relative URLs are not allowed';
4980
+ /** String is not a relative URL (eg it contains a protocol/host) */
4180
4981
  readonly 'string.url.not-relative': 'Only relative URLs are allowed';
4181
4982
  };
4182
4983
  /**
@@ -4394,13 +5195,7 @@ declare function LocaleProvider(props: PropsWithChildren): import("react").JSX.E
4394
5195
  * @internal
4395
5196
  * @hidden
4396
5197
  */
4397
- declare function LocaleProviderBase({
4398
- projectId,
4399
- sourceId,
4400
- locales,
4401
- i18next,
4402
- children
4403
- }: PropsWithChildren<{
5198
+ declare function LocaleProviderBase({ projectId, sourceId, locales, i18next, children }: PropsWithChildren<{
4404
5199
  projectId: string;
4405
5200
  sourceId: string;
4406
5201
  locales: Locale[];
@@ -4448,7 +5243,7 @@ declare function defineLocalesResources<R extends Record<string, string>>(namesp
4448
5243
  */
4449
5244
  declare function removeUndefinedLocaleResources<T extends {
4450
5245
  [key: string]: string | undefined;
4451
- }>(resources: T): { [K in keyof T]: Exclude<T[K], undefined> };
5246
+ }>(resources: T): { [K in keyof T]: Exclude<T[K], undefined>; };
4452
5247
  /**
4453
5248
  * Enforces the shape of an object allowed to be passed into `useI18nText`.
4454
5249
  * @internal
@@ -4457,13 +5252,13 @@ type I18nNode<TNode extends {
4457
5252
  i18n?: { [TProp in string]: {
4458
5253
  key: string;
4459
5254
  ns: string;
4460
- } };
5255
+ }; };
4461
5256
  }> = {
4462
5257
  i18n?: { [K in keyof TNode['i18n']]: {
4463
5258
  key: string;
4464
5259
  ns: string;
4465
- } };
4466
- } & { [K in keyof TNode['i18n']]: string };
5260
+ }; };
5261
+ } & { [K in keyof TNode['i18n']]: string; };
4467
5262
  /**
4468
5263
  * A React hook for localizing strings in a given object (`node`) using the
4469
5264
  * `useTranslation` hook.
@@ -4704,14 +5499,7 @@ interface ValidateDocumentOptions {
4704
5499
  *
4705
5500
  * @beta
4706
5501
  */
4707
- declare function validateDocument({
4708
- document,
4709
- workspace,
4710
- environment,
4711
- maxFetchConcurrency,
4712
- currentUser,
4713
- ...options
4714
- }: ValidateDocumentOptions): Promise<ValidationMarker[]>;
5502
+ declare function validateDocument({ document, workspace, environment, maxFetchConcurrency, currentUser, ...options }: ValidateDocumentOptions): Promise<ValidationMarker[]>;
4715
5503
  /**
4716
5504
  * @hidden
4717
5505
  * @beta */
@@ -5113,12 +5901,7 @@ interface ActiveWorkspaceMatcherProps {
5113
5901
  LoadingComponent: ComponentType;
5114
5902
  }
5115
5903
  /** @internal */
5116
- declare function ActiveWorkspaceMatcher({
5117
- children,
5118
- LoadingComponent,
5119
- NotFoundComponent,
5120
- unstable_history: historyProp
5121
- }: ActiveWorkspaceMatcherProps): import("react").JSX.Element;
5904
+ declare function ActiveWorkspaceMatcher({ children, LoadingComponent, NotFoundComponent, unstable_history: historyProp }: ActiveWorkspaceMatcherProps): import("react").JSX.Element;
5122
5905
  type WorkspaceAuthStates = Record<string, AuthState | undefined>;
5123
5906
  /**
5124
5907
  * Renders the config-error takeover ({@link ConfigErrorScreen}) when
@@ -5138,9 +5921,7 @@ type WorkspaceAuthStates = Record<string, AuthState | undefined>;
5138
5921
  *
5139
5922
  * @internal
5140
5923
  */
5141
- declare function ConfigErrorGate({
5142
- children
5143
- }: {
5924
+ declare function ConfigErrorGate({ children }: {
5144
5925
  children: ReactNode;
5145
5926
  }): ReactNode;
5146
5927
  interface CorsOriginErrorScreenProps {
@@ -5189,10 +5970,7 @@ interface WorkspaceLike {
5189
5970
  * @returns Printable string (eg `intranet`, or `at index 5 (titled "Intranet")`)
5190
5971
  * @internal
5191
5972
  */
5192
- declare function getWorkspaceIdentifier({
5193
- name,
5194
- title
5195
- }: WorkspaceLike, index: number): string;
5973
+ declare function getWorkspaceIdentifier({ name, title }: WorkspaceLike, index: number): string;
5196
5974
  /** @internal */
5197
5975
  declare function getNamelessWorkspaceIdentifier(title: string | undefined, index: number): string;
5198
5976
  /** @internal */
@@ -5201,9 +5979,7 @@ interface VisibleWorkspacesContextValue {
5201
5979
  workspaceAuthStates: WorkspaceAuthStates;
5202
5980
  }
5203
5981
  /** @internal */
5204
- declare function VisibleWorkspacesProvider({
5205
- children
5206
- }: {
5982
+ declare function VisibleWorkspacesProvider({ children }: {
5207
5983
  children: ReactNode;
5208
5984
  }): import("react").JSX.Element;
5209
5985
  /**
@@ -5235,9 +6011,7 @@ interface ValidateWorkspaceOptions {
5235
6011
  *
5236
6012
  * @internal
5237
6013
  */
5238
- declare function validateWorkspaces({
5239
- workspaces
5240
- }: ValidateWorkspaceOptions): void;
6014
+ declare function validateWorkspaces({ workspaces }: ValidateWorkspaceOptions): void;
5241
6015
  /**
5242
6016
  * Validates the workspace names of every workspace
5243
6017
  * Only exported for testing purposes
@@ -5295,12 +6069,7 @@ type MatchWorkspaceResult = {
5295
6069
  *
5296
6070
  * @internal
5297
6071
  */
5298
- declare function matchWorkspace({
5299
- pathname,
5300
- workspaces,
5301
- basePathRegex,
5302
- workspaceAuthStates
5303
- }: MatchWorkspaceOptions): MatchWorkspaceResult;
6072
+ declare function matchWorkspace({ pathname, workspaces, basePathRegex, workspaceAuthStates }: MatchWorkspaceOptions): MatchWorkspaceResult;
5304
6073
  /** @internal */
5305
6074
  declare function useActiveWorkspace(): ActiveWorkspaceMatcherContextValue;
5306
6075
  interface AddonDatasetSetupProviderProps {
@@ -5410,28 +6179,17 @@ interface ColorSchemeProviderProps {
5410
6179
  scheme?: StudioThemeColorSchemeKey;
5411
6180
  }
5412
6181
  /** @internal */
5413
- declare function ColorSchemeProvider({
5414
- children,
5415
- onSchemeChange,
5416
- scheme: schemeProp
5417
- }: ColorSchemeProviderProps): import("react").JSX.Element;
6182
+ declare function ColorSchemeProvider({ children, onSchemeChange, scheme: schemeProp }: ColorSchemeProviderProps): import("react").JSX.Element;
5418
6183
  /**
5419
6184
  * Uses useSyncExternalStore to ensure that localStorage is accessed in a SSR hydration compatible way
5420
6185
  * @internal
5421
6186
  */
5422
- declare function ColorSchemeLocalStorageProvider({
5423
- children,
5424
- onSchemeChange
5425
- }: Pick<ColorSchemeProviderProps, 'children' | 'onSchemeChange'>): import("react").JSX.Element;
6187
+ declare function ColorSchemeLocalStorageProvider({ children, onSchemeChange }: Pick<ColorSchemeProviderProps, 'children' | 'onSchemeChange'>): import("react").JSX.Element;
5426
6188
  /**
5427
6189
  * If the `scheme` prop is provided we don't need to setup any logic to handle localStorage
5428
6190
  * @internal
5429
6191
  */
5430
- declare function ColorSchemeCustomProvider({
5431
- children,
5432
- onSchemeChange,
5433
- scheme
5434
- }: Pick<ColorSchemeProviderProps, 'children' | 'onSchemeChange'> & {
6192
+ declare function ColorSchemeCustomProvider({ children, onSchemeChange, scheme }: Pick<ColorSchemeProviderProps, 'children' | 'onSchemeChange'> & {
5435
6193
  scheme: StudioThemeColorSchemeKey;
5436
6194
  }): React.JSX.Element;
5437
6195
  /** @alpha */
@@ -5463,9 +6221,7 @@ declare function useColorSchemeOptions(setScheme: (nextScheme: StudioThemeColorS
5463
6221
  /**
5464
6222
  * @internal
5465
6223
  */
5466
- declare function Filters({
5467
- showTypeFilter
5468
- }: {
6224
+ declare function Filters({ showTypeFilter }: {
5469
6225
  showTypeFilter?: boolean;
5470
6226
  }): import("react").JSX.Element;
5471
6227
  interface SearchHeaderProps {
@@ -5495,15 +6251,7 @@ interface SearchPopoverProps {
5495
6251
  /**
5496
6252
  * @internal
5497
6253
  */
5498
- declare function SearchPopover({
5499
- disableFocusLock,
5500
- disableIntentLink,
5501
- onClose,
5502
- onItemSelect,
5503
- onOpen,
5504
- previewPerspective,
5505
- open
5506
- }: SearchPopoverProps): import("react").JSX.Element;
6254
+ declare function SearchPopover({ disableFocusLock, disableIntentLink, onClose, onItemSelect, onOpen, previewPerspective, open }: SearchPopoverProps): import("react").JSX.Element;
5507
6255
  interface SearchResultItemPreviewProps {
5508
6256
  documentId: string;
5509
6257
  documentType: string;
@@ -5516,15 +6264,7 @@ interface SearchResultItemPreviewProps {
5516
6264
  /**
5517
6265
  * @internal
5518
6266
  */
5519
- declare function SearchResultItemPreview({
5520
- documentId,
5521
- documentType,
5522
- layout,
5523
- presence,
5524
- schemaType,
5525
- showBadge,
5526
- perspective
5527
- }: SearchResultItemPreviewProps): import("react").JSX.Element;
6267
+ declare function SearchResultItemPreview({ documentId, documentType, layout, presence, schemaType, showBadge, perspective }: SearchResultItemPreviewProps): import("react").JSX.Element;
5528
6268
  /**
5529
6269
  * @internal
5530
6270
  *
@@ -6150,12 +6890,7 @@ interface SearchProviderProps {
6150
6890
  /**
6151
6891
  * @internal
6152
6892
  */
6153
- declare function SearchProvider({
6154
- children,
6155
- fullscreen,
6156
- disabledDocumentIds,
6157
- canDisableAction
6158
- }: SearchProviderProps): import("react").JSX.Element;
6893
+ declare function SearchProvider({ children, fullscreen, disabledDocumentIds, canDisableAction }: SearchProviderProps): import("react").JSX.Element;
6159
6894
  /**
6160
6895
  * @internal
6161
6896
  */
@@ -6189,11 +6924,7 @@ interface SearchDialogProps {
6189
6924
  /**
6190
6925
  * @internal
6191
6926
  */
6192
- declare function SearchDialog({
6193
- onClose,
6194
- onOpen,
6195
- open
6196
- }: SearchDialogProps): import("react").JSX.Element;
6927
+ declare function SearchDialog({ onClose, onOpen, open }: SearchDialogProps): import("react").JSX.Element;
6197
6928
  /**
6198
6929
  * @hidden
6199
6930
  * @beta */
@@ -6828,10 +7559,7 @@ type SourceProviderProps = {
6828
7559
  children?: ReactNode;
6829
7560
  };
6830
7561
  /** @internal */
6831
- declare function SourceProvider({
6832
- children,
6833
- ...props
6834
- }: SourceProviderProps): import("react").JSX.Element;
7562
+ declare function SourceProvider({ children, ...props }: SourceProviderProps): import("react").JSX.Element;
6835
7563
  /**
6836
7564
  * @internal
6837
7565
  * @deprecated INTERNAL USE ONLY
@@ -6935,15 +7663,7 @@ interface StudioAnnouncementCardProps {
6935
7663
  * @internal
6936
7664
  * @hidden
6937
7665
  */
6938
- declare function StudioAnnouncementsCard({
6939
- title,
6940
- id,
6941
- isOpen,
6942
- name,
6943
- preHeader,
6944
- onCardClick,
6945
- onCardDismiss
6946
- }: StudioAnnouncementCardProps): import("react").JSX.Element;
7666
+ declare function StudioAnnouncementsCard({ title, id, isOpen, name, preHeader, onCardClick, onCardDismiss }: StudioAnnouncementCardProps): import("react").JSX.Element;
6947
7667
  declare const audienceRoles: readonly ['administrator', 'editor', 'viewer', 'contributor', 'developer', 'custom'];
6948
7668
  type AudienceRole = (typeof audienceRoles)[number];
6949
7669
  interface StudioAnnouncementDocument {
@@ -6979,11 +7699,7 @@ interface StudioAnnouncementDialogProps {
6979
7699
  * @internal
6980
7700
  * @hidden
6981
7701
  */
6982
- declare function StudioAnnouncementsDialog({
6983
- announcements,
6984
- onClose,
6985
- mode
6986
- }: StudioAnnouncementDialogProps): import("react").JSX.Element;
7702
+ declare function StudioAnnouncementsDialog({ announcements, onClose, mode }: StudioAnnouncementDialogProps): import("react").JSX.Element;
6987
7703
  /**
6988
7704
  * @internal
6989
7705
  * @hidden
@@ -7041,15 +7757,7 @@ interface StudioProviderProps extends StudioProps {
7041
7757
  /**
7042
7758
  * @hidden
7043
7759
  * @beta */
7044
- declare function StudioProvider({
7045
- children,
7046
- config,
7047
- basePath,
7048
- onSchemeChange,
7049
- scheme,
7050
- unstable_history: history,
7051
- unstable_noAuthBoundary: noAuthBoundary
7052
- }: StudioProviderProps): import("react").JSX.Element;
7760
+ declare function StudioProvider({ children, config, basePath, onSchemeChange, scheme, unstable_history: history, unstable_noAuthBoundary: noAuthBoundary }: StudioProviderProps): import("react").JSX.Element;
7053
7761
  interface UpsellDialogActionsInfo {
7054
7762
  feature: 'comments' | 'scheduled_publishing' | 'ai_assist' | 'tasks';
7055
7763
  type: 'modal' | 'inspector';
@@ -7080,10 +7788,7 @@ type InterpolationProp = {
7080
7788
  };
7081
7789
  interface DescriptionSerializerProps {
7082
7790
  blocks: PortableTextBlock[];
7083
- onLinkClick?: ({
7084
- url,
7085
- linkTitle
7086
- }: {
7791
+ onLinkClick?: ({ url, linkTitle }: {
7087
7792
  url: string;
7088
7793
  linkTitle: string;
7089
7794
  }) => void;
@@ -7101,10 +7806,7 @@ interface WorkspaceProviderProps {
7101
7806
  children: React.ReactNode;
7102
7807
  }
7103
7808
  /** @internal */
7104
- declare function WorkspaceProvider({
7105
- children,
7106
- workspace
7107
- }: WorkspaceProviderProps): React.JSX.Element;
7809
+ declare function WorkspaceProvider({ children, workspace }: WorkspaceProviderProps): React.JSX.Element;
7108
7810
  /**
7109
7811
  * @hidden
7110
7812
  * @beta */
@@ -7124,12 +7826,7 @@ interface ErrorMessageProps {
7124
7826
  /**
7125
7827
  * @internal
7126
7828
  */
7127
- declare function ErrorMessage({
7128
- error,
7129
- message,
7130
- path,
7131
- stack
7132
- }: ErrorMessageProps): import("react").JSX.Element;
7829
+ declare function ErrorMessage({ error, message, path, stack }: ErrorMessageProps): import("react").JSX.Element;
7133
7830
  interface WorkspaceLoaderProps {
7134
7831
  children: ReactNode;
7135
7832
  ConfigErrorsComponent: ComponentType;
@@ -7142,10 +7839,7 @@ declare function useWorkspaceLoader(activeWorkspace: WorkspaceSummary): Workspac
7142
7839
  /**
7143
7840
  * @internal
7144
7841
  */
7145
- declare function WorkspaceLoaderBoundary({
7146
- ConfigErrorsComponent,
7147
- ...props
7148
- }: WorkspaceLoaderProps): import("react").JSX.Element;
7842
+ declare function WorkspaceLoaderBoundary({ ConfigErrorsComponent, ...props }: WorkspaceLoaderProps): import("react").JSX.Element;
7149
7843
  /**
7150
7844
  * @beta
7151
7845
  * @hidden
@@ -7606,9 +8300,7 @@ declare const isDev: boolean;
7606
8300
  /** @internal */
7607
8301
  declare const isProd: boolean;
7608
8302
  /** @internal */
7609
- declare function StudioFeedbackProvider({
7610
- children
7611
- }: {
8303
+ declare function StudioFeedbackProvider({ children }: {
7612
8304
  children: ReactNode;
7613
8305
  }): import("react").JSX.Element;
7614
8306
  /** @internal */
@@ -7867,10 +8559,7 @@ interface UserColorManagerProviderProps {
7867
8559
  manager?: UserColorManager;
7868
8560
  }
7869
8561
  /** @internal */
7870
- declare function UserColorManagerProvider({
7871
- children,
7872
- manager: managerFromProps
7873
- }: UserColorManagerProviderProps): React.JSX.Element;
8562
+ declare function UserColorManagerProvider({ children, manager: managerFromProps }: UserColorManagerProviderProps): React.JSX.Element;
7874
8563
  /**
7875
8564
  * Events relevant for the whole document group.
7876
8565
  * @hidden
@@ -8152,10 +8841,7 @@ interface EventsProviderProps {
8152
8841
  /**
8153
8842
  * @internal
8154
8843
  */
8155
- declare function EventsProvider({
8156
- value,
8157
- children
8158
- }: EventsProviderProps): import("react").JSX.Element;
8844
+ declare function EventsProvider({ value, children }: EventsProviderProps): import("react").JSX.Element;
8159
8845
  /**
8160
8846
  * @internal
8161
8847
  */
@@ -8163,12 +8849,7 @@ declare function useEvents(): EventsStore;
8163
8849
  /**
8164
8850
  * @internal
8165
8851
  */
8166
- declare function useEventsStore({
8167
- documentId,
8168
- documentType,
8169
- rev,
8170
- since
8171
- }: {
8852
+ declare function useEventsStore({ documentId, documentType, rev, since }: {
8172
8853
  documentId: string;
8173
8854
  documentType: string;
8174
8855
  rev?: string | '@lastEdited' | '@lastPublished';
@@ -8381,11 +9062,7 @@ interface ChangeListProps {
8381
9062
  fields?: string[];
8382
9063
  }
8383
9064
  /** @internal */
8384
- declare function ChangeList({
8385
- diff,
8386
- fields,
8387
- schemaType
8388
- }: ChangeListProps): React.JSX.Element | null;
9065
+ declare function ChangeList({ diff, fields, schemaType }: ChangeListProps): React.JSX.Element | null;
8389
9066
  /** @internal */
8390
9067
  interface ChangeResolverProps {
8391
9068
  change: ChangeNode;
@@ -8398,9 +9075,7 @@ declare function ChangeResolver(props: ChangeResolverProps): import("react").JSX
8398
9075
  /**
8399
9076
  * @internal
8400
9077
  * */
8401
- declare function ChangesError({
8402
- error
8403
- }: {
9078
+ declare function ChangesError({ error }: {
8404
9079
  error?: Error | null;
8405
9080
  }): import("react").JSX.Element;
8406
9081
  /** @internal */
@@ -8500,10 +9175,7 @@ interface TimelineItemProps {
8500
9175
  /**
8501
9176
  * @internal
8502
9177
  */
8503
- declare function Event$1({
8504
- event,
8505
- showChangesBy
8506
- }: TimelineItemProps): import("react").JSX.Element;
9178
+ declare function Event$1({ event, showChangesBy }: TimelineItemProps): import("react").JSX.Element;
8507
9179
  /** @internal */
8508
9180
  declare const FallbackDiff: DiffComponent<Diff$1<unknown, Record<string, unknown>>>;
8509
9181
  /** @internal */
@@ -8560,17 +9232,9 @@ interface RevertChangesConfirmDialogProps {
8560
9232
  /**
8561
9233
  * @internal
8562
9234
  */
8563
- declare function RevertChangesConfirmDialog({
8564
- open,
8565
- onConfirm,
8566
- onCancel,
8567
- changeCount,
8568
- referenceElement
8569
- }: RevertChangesConfirmDialogProps): import("react").JSX.Element;
9235
+ declare function RevertChangesConfirmDialog({ open, onConfirm, onCancel, changeCount, referenceElement }: RevertChangesConfirmDialogProps): import("react").JSX.Element;
8570
9236
  /** @internal */
8571
- declare function ValueError({
8572
- error
8573
- }: {
9237
+ declare function ValueError({ error }: {
8574
9238
  error: FieldValueError;
8575
9239
  }): import("react").JSX.Element;
8576
9240
  /** @internal */
@@ -8678,11 +9342,7 @@ type PerspectiveNotWriteableReason = 'INSUFFICIENT_DATA' | 'RELEASE_NOT_ACTIVE'
8678
9342
  *
8679
9343
  * @internal
8680
9344
  */
8681
- declare function isPerspectiveWriteable({
8682
- selectedPerspective,
8683
- isDraftModelEnabled,
8684
- schemaType
8685
- }: {
9345
+ declare function isPerspectiveWriteable({ selectedPerspective, isDraftModelEnabled, schemaType }: {
8686
9346
  selectedPerspective: TargetPerspective;
8687
9347
  isDraftModelEnabled: boolean;
8688
9348
  schemaType?: ObjectSchemaType;
@@ -8704,12 +9364,7 @@ declare const ReleasesNav: ComponentType<Props$5>;
8704
9364
  /**
8705
9365
  * @internal
8706
9366
  */
8707
- declare function PerspectiveProvider({
8708
- children,
8709
- selectedPerspectiveName,
8710
- selectedVariantName,
8711
- excludedPerspectives
8712
- }: {
9367
+ declare function PerspectiveProvider({ children, selectedPerspectiveName, selectedVariantName, excludedPerspectives }: {
8713
9368
  children: React.ReactNode;
8714
9369
  selectedPerspectiveName: 'published' | ReleaseId | undefined;
8715
9370
  selectedVariantName?: string;
@@ -8722,7 +9377,6 @@ interface ExcludedPerspectiveValue {
8722
9377
  }
8723
9378
  /**
8724
9379
  * Gets the excluded perspectives.
8725
-
8726
9380
  * @internal
8727
9381
  */
8728
9382
  declare function useExcludedPerspective(): ExcludedPerspectiveValue;
@@ -9060,10 +9714,7 @@ interface SingleDocReleaseProviderProps {
9060
9714
  * Provider for the single doc release context.
9061
9715
  * @internal
9062
9716
  */
9063
- declare function SingleDocReleaseProvider({
9064
- children,
9065
- onSetScheduledDraftPerspective
9066
- }: SingleDocReleaseProviderProps): import("react").JSX.Element;
9717
+ declare function SingleDocReleaseProvider({ children, onSetScheduledDraftPerspective }: SingleDocReleaseProviderProps): import("react").JSX.Element;
9067
9718
  /**
9068
9719
  * Hook to get the single doc release context
9069
9720
  * @internal
@@ -9269,7 +9920,7 @@ declare function useDocumentPreviewValues(options: PreviewHookOptions): PreviewH
9269
9920
  * @internal
9270
9921
  * @deprecated – Will be removed in upcoming major version
9271
9922
  */
9272
- type LegacyThemeTints = { [key in ColorTintKey]: string };
9923
+ type LegacyThemeTints = { [key in ColorTintKey]: string; };
9273
9924
  /**
9274
9925
  * Properties that can be used to override the default theme.
9275
9926
  *
@@ -9419,11 +10070,7 @@ declare function getReferencePaths(document: SanityDocument, referenceToId: stri
9419
10070
  *
9420
10071
  * @internal
9421
10072
  */
9422
- declare function getTargetDocument({
9423
- bundle,
9424
- documentVersions,
9425
- variant
9426
- }: {
10073
+ declare function getTargetDocument({ bundle, documentVersions, variant }: {
9427
10074
  variant: string | undefined;
9428
10075
  bundle: PerspectiveBundle;
9429
10076
  documentVersions: DocumentPerspectiveState['versions'];
@@ -9438,10 +10085,7 @@ declare function getTargetDocument({
9438
10085
  *
9439
10086
  * @internal
9440
10087
  */
9441
- declare function getVariantPublishedSibling({
9442
- documentVersions,
9443
- variant
9444
- }: {
10088
+ declare function getVariantPublishedSibling({ documentVersions, variant }: {
9445
10089
  variant: string;
9446
10090
  documentVersions: DocumentPerspectiveState['versions'];
9447
10091
  }): VersionInfoDocumentStub | undefined;
@@ -9751,11 +10395,7 @@ interface IsDocumentInSelectedVariantOptions {
9751
10395
  *
9752
10396
  * @internal
9753
10397
  */
9754
- declare function isDocumentInSelectedVariant({
9755
- selectedVariant,
9756
- bundle,
9757
- documentVersions
9758
- }: IsDocumentInSelectedVariantOptions): boolean;
10398
+ declare function isDocumentInSelectedVariant({ selectedVariant, bundle, documentVersions }: IsDocumentInSelectedVariantOptions): boolean;
9759
10399
  /**
9760
10400
  * @internal
9761
10401
  */
@@ -10084,7 +10724,7 @@ interface HiddenField {
10084
10724
  * @public */
10085
10725
  type ObjectRenderMembersCallback = (members: ObjectMember[]) => ObjectMember[];
10086
10726
  /** @public */
10087
- interface ObjectFormNode<T = { [key in string]: unknown }, S extends ObjectSchemaType = ObjectSchemaType> extends BaseFormNode<T, S & {
10727
+ interface ObjectFormNode<T = { [key in string]: unknown; }, S extends ObjectSchemaType = ObjectSchemaType> extends BaseFormNode<T, S & {
10088
10728
  renderMembers?: ObjectRenderMembersCallback;
10089
10729
  }> {
10090
10730
  /** The focus path of the form node. */
@@ -10118,7 +10758,7 @@ interface ObjectArrayFormNode<T extends ObjectItem = ObjectItem, S extends Objec
10118
10758
  changesOpen?: boolean;
10119
10759
  }
10120
10760
  /** @internal */
10121
- type DocumentFormNode<T extends { [key in string]: unknown } = { [key in string]: unknown }, S extends ObjectSchemaType = ObjectSchemaType> = ObjectFormNode<T, S>;
10761
+ type DocumentFormNode<T extends { [key in string]: unknown; } = { [key in string]: unknown; }, S extends ObjectSchemaType = ObjectSchemaType> = ObjectFormNode<T, S>;
10122
10762
  /** @public */
10123
10763
  interface ArrayOfObjectsFormNode<T extends any[] = KeyedObject[], S extends ArraySchemaType = ArraySchemaType> extends BaseFormNode<T, S> {
10124
10764
  /** The focus path of the form node. */
@@ -10301,7 +10941,7 @@ interface StateTree<T> {
10301
10941
  /** @internal */
10302
10942
  declare function setAtPath<T>(currentTree: StateTree<T> | undefined, path: Path, value: T): StateTree<T>;
10303
10943
  /** @internal */
10304
- type FormState<T extends { [key in string]: unknown } = { [key in string]: unknown }, S extends ObjectSchemaType = ObjectSchemaType> = ObjectFormNode<T, S>;
10944
+ type FormState<T extends { [key in string]: unknown; } = { [key in string]: unknown; }, S extends ObjectSchemaType = ObjectSchemaType> = ObjectFormNode<T, S>;
10305
10945
  /** @internal */
10306
10946
  interface UseFormStateOptions extends Pick<NodeChronologyProps, 'hasUpstreamVersion'> {
10307
10947
  schemaType: ObjectSchemaType;
@@ -10320,23 +10960,7 @@ interface UseFormStateOptions extends Pick<NodeChronologyProps, 'hasUpstreamVers
10320
10960
  displayInlineChanges?: boolean;
10321
10961
  }
10322
10962
  /** @internal */
10323
- declare function useFormState<T extends { [key in string]: unknown } = { [key in string]: unknown }, S extends ObjectSchemaType = ObjectSchemaType>({
10324
- comparisonValue,
10325
- documentValue,
10326
- fieldGroupState,
10327
- collapsedFieldSets,
10328
- collapsedPaths,
10329
- focusPath,
10330
- openPath,
10331
- presence,
10332
- validation,
10333
- readOnly: inputReadOnly,
10334
- changesOpen,
10335
- schemaType,
10336
- perspective,
10337
- hasUpstreamVersion,
10338
- displayInlineChanges
10339
- }: UseFormStateOptions): FormState<T, S> | null;
10963
+ declare function useFormState<T extends { [key in string]: unknown; } = { [key in string]: unknown; }, S extends ObjectSchemaType = ObjectSchemaType>({ comparisonValue, documentValue, fieldGroupState, collapsedFieldSets, collapsedPaths, focusPath, openPath, presence, validation, readOnly: inputReadOnly, changesOpen, schemaType, perspective, hasUpstreamVersion, displayInlineChanges }: UseFormStateOptions): FormState<T, S> | null;
10340
10964
  /** @internal */
10341
10965
  interface ExpandPathOperation {
10342
10966
  type: 'expandPath';
@@ -10583,11 +11207,7 @@ interface DivergenceNavigatorContext {
10583
11207
  *
10584
11208
  * @internal
10585
11209
  */
10586
- declare function useDivergenceNavigator({
10587
- divergences,
10588
- schemaType,
10589
- formState
10590
- }: DivergenceNavigatorContext): DivergenceNavigator;
11210
+ declare function useDivergenceNavigator({ divergences, schemaType, formState }: DivergenceNavigatorContext): DivergenceNavigator;
10591
11211
  /**
10592
11212
  * @internal
10593
11213
  */
@@ -10652,7 +11272,8 @@ type TargetDocumentState = {
10652
11272
  } | {
10653
11273
  status: 'ready';
10654
11274
  targetDocument: VersionInfoDocumentStub | undefined;
10655
- scopeId: string | undefined; /** The selected variant when the resolved target is a variant-scoped version. */
11275
+ scopeId: string | undefined;
11276
+ /** The selected variant when the resolved target is a variant-scoped version. */
10656
11277
  variant: SystemVariant | undefined;
10657
11278
  /**
10658
11279
  * The variant-of-published sibling stub (same `_system.variant`, no `_system.bundleId`).
@@ -10878,12 +11499,7 @@ interface DocumentStatusProps$1 {
10878
11499
  *
10879
11500
  * @internal
10880
11501
  */
10881
- declare function DocumentStatus({
10882
- draft,
10883
- published,
10884
- versions,
10885
- singleLine
10886
- }: DocumentStatusProps$1): import("react").JSX.Element;
11502
+ declare function DocumentStatus({ draft, published, versions, singleLine }: DocumentStatusProps$1): import("react").JSX.Element;
10887
11503
  /**
10888
11504
  * @internal
10889
11505
  */
@@ -10949,11 +11565,7 @@ interface DocumentStatusProps {
10949
11565
  *
10950
11566
  * @internal
10951
11567
  */
10952
- declare function DocumentStatusIndicator({
10953
- draft,
10954
- published,
10955
- versions
10956
- }: DocumentStatusProps): import("react").JSX.Element;
11568
+ declare function DocumentStatusIndicator({ draft, published, versions }: DocumentStatusProps): import("react").JSX.Element;
10957
11569
  /**
10958
11570
  * @internal
10959
11571
  */
@@ -11005,21 +11617,14 @@ type HotkeysProps$1 = HotkeysProps & {
11005
11617
  * @returns React element
11006
11618
  * @public
11007
11619
  */
11008
- declare function Hotkeys({
11009
- makePlatformAware,
11010
- keys: hotKeys,
11011
- ...props
11012
- }: HotkeysProps$1): import("react").JSX.Element;
11620
+ declare function Hotkeys({ makePlatformAware, keys: hotKeys, ...props }: HotkeysProps$1): import("react").JSX.Element;
11013
11621
  /** @internal */
11014
11622
  interface InsufficientPermissionsMessageProps {
11015
11623
  currentUser?: CurrentUser | null;
11016
11624
  context: 'create-new-reference' | 'create-document-type' | 'create-any-document' | 'create-document' | 'delete-document' | 'delete-schedules' | 'discard-changes' | 'duplicate-document' | 'edit-schedules' | 'execute-schedules' | 'publish-document' | 'unpublish-document';
11017
11625
  }
11018
11626
  /** @internal */
11019
- declare function InsufficientPermissionsMessage({
11020
- currentUser,
11021
- context
11022
- }: InsufficientPermissionsMessageProps): import("react").JSX.Element;
11627
+ declare function InsufficientPermissionsMessage({ currentUser, context }: InsufficientPermissionsMessageProps): import("react").JSX.Element;
11023
11628
  /**
11024
11629
  *
11025
11630
  * @hidden
@@ -11242,10 +11847,7 @@ interface RelativeTimeProps extends RelativeTimeOptions {
11242
11847
  /**
11243
11848
  * @internal
11244
11849
  */
11245
- declare function RelativeTime({
11246
- time,
11247
- ...options
11248
- }: RelativeTimeProps): import("react").JSX.Element;
11850
+ declare function RelativeTime({ time, ...options }: RelativeTimeProps): import("react").JSX.Element;
11249
11851
  interface ResizableProps {
11250
11852
  minWidth: number;
11251
11853
  maxWidth: number;
@@ -11343,10 +11945,7 @@ type ZIndexContextValueKey = keyof ZIndexContextValue;
11343
11945
  * This component should only be used by core Sanity packages.
11344
11946
  * @internal
11345
11947
  */
11346
- declare function LegacyLayerProvider({
11347
- children,
11348
- zOffset: zOffsetKey
11349
- }: {
11948
+ declare function LegacyLayerProvider({ children, zOffset: zOffsetKey }: {
11350
11949
  children: ReactNode;
11351
11950
  zOffset: ZIndexContextValueKey;
11352
11951
  }): import("react").JSX.Element;
@@ -11379,10 +11978,7 @@ declare function UserAvatar(props: UserAvatarProps): import("react").JSX.Element
11379
11978
  * @internal
11380
11979
  * @deprecated - Will be removed in 4.0.0, use the `useReferringDocuments(<documentId>)` hook instead
11381
11980
  */
11382
- declare function WithReferringDocuments({
11383
- children,
11384
- id
11385
- }: {
11981
+ declare function WithReferringDocuments({ children, id }: {
11386
11982
  children: (props: {
11387
11983
  isLoading: boolean;
11388
11984
  referringDocuments: SanityDocument[];
@@ -11404,9 +12000,7 @@ declare function useZIndex(): ZIndexContextValue;
11404
12000
  *
11405
12001
  * @internal
11406
12002
  */
11407
- declare function ZIndexProvider({
11408
- children
11409
- }: {
12003
+ declare function ZIndexProvider({ children }: {
11410
12004
  children?: ReactNode;
11411
12005
  }): React.JSX.Element;
11412
12006
  /** @internal */
@@ -13997,11 +14591,7 @@ type Sources = {
13997
14591
  *
13998
14592
  * @internal
13999
14593
  */
14000
- declare function getPreviewValueWithFallback({
14001
- snapshot,
14002
- original,
14003
- fallback
14004
- }: Sources): Partial<SanityDocument> | PreviewValue | {
14594
+ declare function getPreviewValueWithFallback({ snapshot, original, fallback }: Sources): Partial<SanityDocument> | PreviewValue | {
14005
14595
  title: import("react").JSX.Element;
14006
14596
  subtitle: import("react").JSX.Element;
14007
14597
  media: () => import("react").JSX.Element;
@@ -14108,7 +14698,8 @@ type CommitError = {
14108
14698
  * @hidden
14109
14699
  * @beta */
14110
14700
  type Pair = {
14111
- /** @internal */transactionsPendingEvents$: Observable<PendingMutationsEvent>;
14701
+ /** @internal */
14702
+ transactionsPendingEvents$: Observable<PendingMutationsEvent>;
14112
14703
  /**
14113
14704
  * The error from the most recent commit attempt while it failed and is
14114
14705
  * being retried by the mutator, or `undefined` while commits are healthy.
@@ -14130,7 +14721,6 @@ declare function checkoutPair(client: SanityClient, idPair: IdPair,
14130
14721
  * @deprecated does nothing Preserved to avoid breaking changes
14131
14722
  * Will be removed in the next major version.
14132
14723
  */
14133
-
14134
14724
  _serverActionsEnabled: Observable<boolean> | undefined, options?: DocumentStoreExtraOptions): Pair;
14135
14725
  /**
14136
14726
  * @hidden
@@ -14347,9 +14937,7 @@ interface HistoryStoreOptions {
14347
14937
  client: SanityClient;
14348
14938
  }
14349
14939
  /** @internal */
14350
- declare function createHistoryStore({
14351
- client
14352
- }: HistoryStoreOptions): HistoryStore;
14940
+ declare function createHistoryStore({ client }: HistoryStoreOptions): HistoryStore;
14353
14941
  interface UseTimelineControllerOpts {
14354
14942
  documentId: string;
14355
14943
  documentType: string;
@@ -14398,13 +14986,7 @@ interface TimelineStore {
14398
14986
  * @deprecated Use events store instead, this will be removed in a future release
14399
14987
  * @internal
14400
14988
  * */
14401
- declare function useTimelineStore({
14402
- documentId,
14403
- documentType,
14404
- onError,
14405
- rev,
14406
- since
14407
- }: UseTimelineControllerOpts): TimelineStore;
14989
+ declare function useTimelineStore({ documentId, documentType, onError, rev, since }: UseTimelineControllerOpts): TimelineStore;
14408
14990
  /**
14409
14991
  * Custom hook which wraps around `useSyncExternalStore`.
14410
14992
  * Accepts a selector function which can be used to opt-in to specific timelineStore updates.
@@ -14548,11 +15130,7 @@ declare const validation$1: (ctx: {
14548
15130
  serverActionsEnabled?: Observable<boolean>;
14549
15131
  pairListenerOptions?: DocumentStoreExtraOptions;
14550
15132
  currentUser?: Omit<CurrentUser, 'role'> | null;
14551
- }, {
14552
- draftId,
14553
- publishedId,
14554
- versionId
14555
- }: IdPair, typeName: string, validationTarget: DocumentVariantType, validatePublishedReferences: boolean) => Observable<ValidationStatus>;
15133
+ }, { draftId, publishedId, versionId }: IdPair, typeName: string, validationTarget: DocumentVariantType, validatePublishedReferences: boolean) => Observable<ValidationStatus>;
14556
15134
  /**
14557
15135
  * @hidden
14558
15136
  * @beta */
@@ -14636,8 +15214,10 @@ interface DocumentStore {
14636
15214
  }, params: QueryParams$1, options: ListenQueryOptions) => Observable<any>;
14637
15215
  resolveTypeForDocument: (id: string, specifiedType?: string) => Observable<string>;
14638
15216
  pair: {
14639
- /** @internal */commitErrorStatus: (publishedId: string, type: string, version?: string) => Observable<CommitError | undefined>;
14640
- consistencyStatus: (publishedId: string, type: string, version?: string) => Observable<boolean>; /** @internal */
15217
+ /** @internal */
15218
+ commitErrorStatus: (publishedId: string, type: string, version?: string) => Observable<CommitError | undefined>;
15219
+ consistencyStatus: (publishedId: string, type: string, version?: string) => Observable<boolean>;
15220
+ /** @internal */
14641
15221
  documentEvents: (publishedId: string, type: string, version?: string) => Observable<DocumentVersionEvent>;
14642
15222
  /**
14643
15223
  * @internal
@@ -14669,16 +15249,7 @@ interface DocumentStoreOptions {
14669
15249
  currentUser?: Omit<CurrentUser, 'role'> | null;
14670
15250
  }
14671
15251
  /** @internal */
14672
- declare function createDocumentStore({
14673
- getClient,
14674
- documentPreviewStore,
14675
- historyStore,
14676
- initialValueTemplates,
14677
- schema,
14678
- i18n,
14679
- extraOptions,
14680
- currentUser
14681
- }: DocumentStoreOptions): DocumentStore;
15252
+ declare function createDocumentStore({ getClient, documentPreviewStore, historyStore, initialValueTemplates, schema, i18n, extraOptions, currentUser }: DocumentStoreOptions): DocumentStore;
14682
15253
  /** @internal */
14683
15254
  interface DocumentTypeResolveState {
14684
15255
  isLoaded: boolean;
@@ -14734,12 +15305,10 @@ declare function useResolveInitialValueForType<Params extends Record<string, unk
14734
15305
  /**
14735
15306
  * This is the name of the document.
14736
15307
  */
14737
-
14738
15308
  type: SchemaType,
14739
15309
  /**
14740
15310
  * Params is a sanity context object passed to every initial value function.
14741
15311
  */
14742
-
14743
15312
  params: Params) => Promise<any>;
14744
15313
  /**
14745
15314
  * @hidden
@@ -14828,16 +15397,7 @@ declare const getDocumentPairPermissions: (options: DocumentPairPermissionsOptio
14828
15397
  */
14829
15398
  declare const useDocumentPairPermissionsFromHookFactory: ReactHook<DocumentPairPermissionsOptions, LoadingTuple<PermissionCheckResult | undefined>>;
14830
15399
  /** @internal */
14831
- declare function useDocumentPairPermissions({
14832
- id,
14833
- type,
14834
- version,
14835
- permission,
14836
- client: overrideClient,
14837
- schema: overrideSchema,
14838
- grantsStore: overrideGrantsStore,
14839
- pairListenerOptions
14840
- }: PartialExcept<DocumentPairPermissionsOptions, 'id' | 'type' | 'permission'>): ReturnType<typeof useDocumentPairPermissionsFromHookFactory>;
15400
+ declare function useDocumentPairPermissions({ id, type, version, permission, client: overrideClient, schema: overrideSchema, grantsStore: overrideGrantsStore, pairListenerOptions }: PartialExcept<DocumentPairPermissionsOptions, 'id' | 'type' | 'permission'>): ReturnType<typeof useDocumentPairPermissionsFromHookFactory>;
14841
15401
  /** @internal */
14842
15402
  interface DocumentValuePermissionsOptions {
14843
15403
  grantsStore: GrantsStore;
@@ -14865,17 +15425,9 @@ interface DocumentValuePermissionsOptions {
14865
15425
  *
14866
15426
  * @internal
14867
15427
  */
14868
- declare function getDocumentValuePermissions({
14869
- grantsStore,
14870
- document,
14871
- permission
14872
- }: DocumentValuePermissionsOptions): Observable<PermissionCheckResult>;
15428
+ declare function getDocumentValuePermissions({ grantsStore, document, permission }: DocumentValuePermissionsOptions): Observable<PermissionCheckResult>;
14873
15429
  /** @internal */
14874
- declare function useDocumentValuePermissions({
14875
- document,
14876
- permission,
14877
- grantsStore: specifiedGrantsStore
14878
- }: PartialExcept<DocumentValuePermissionsOptions, 'permission' | 'document'>): LoadingTuple<PermissionCheckResult | undefined>;
15430
+ declare function useDocumentValuePermissions({ document, permission, grantsStore: specifiedGrantsStore }: PartialExcept<DocumentValuePermissionsOptions, 'permission' | 'document'>): LoadingTuple<PermissionCheckResult | undefined>;
14879
15431
  interface GrantsStoreOptionsCurrentUser {
14880
15432
  client: SanityClient;
14881
15433
  /**
@@ -14928,13 +15480,7 @@ interface TemplatePermissionsOptions {
14928
15480
  *
14929
15481
  * @internal
14930
15482
  */
14931
- declare function getTemplatePermissions({
14932
- grantsStore,
14933
- templateItems,
14934
- templates,
14935
- schema,
14936
- context
14937
- }: TemplatePermissionsOptions): Observable<Array<TemplatePermissionsResult>>;
15483
+ declare function getTemplatePermissions({ grantsStore, templateItems, templates, schema, context }: TemplatePermissionsOptions): Observable<Array<TemplatePermissionsResult>>;
14938
15484
  /**
14939
15485
  * Takes in an array of initial template values and returns an object of
14940
15486
  * `TemplatePermissionsResult` keyed by the IDs of the initial template values
@@ -14954,11 +15500,8 @@ declare function getTemplatePermissions({
14954
15500
  */
14955
15501
  declare const useTemplatePermissionsFromHookFactory: ReactHook<TemplatePermissionsOptions, LoadingTuple<TemplatePermissionsResult<Record<string, unknown>>[] | undefined>>;
14956
15502
  /** @internal */
14957
- declare function useTemplatePermissions({
14958
- templateItems,
14959
- ...rest
14960
- }: PartialExcept<TemplatePermissionsOptions, 'templateItems'>): ReturnType<typeof useTemplatePermissionsFromHookFactory>;
14961
- type JsonObject = { [Key in string]: KeyValueStoreValue } & { [Key in string]?: KeyValueStoreValue | undefined };
15503
+ declare function useTemplatePermissions({ templateItems, ...rest }: PartialExcept<TemplatePermissionsOptions, 'templateItems'>): ReturnType<typeof useTemplatePermissionsFromHookFactory>;
15504
+ type JsonObject = { [Key in string]: KeyValueStoreValue; } & { [Key in string]?: KeyValueStoreValue | undefined; };
14962
15505
  type JsonArray = KeyValueStoreValue[] | readonly KeyValueStoreValue[];
14963
15506
  type JsonPrimitive = string | number | boolean | null;
14964
15507
  /** @internal */
@@ -14990,10 +15533,7 @@ interface UserStore {
14990
15533
  *
14991
15534
  * @internal
14992
15535
  */
14993
- declare function createUserStore({
14994
- client: _client,
14995
- currentUser
14996
- }: UserStoreOptions): UserStore;
15536
+ declare function createUserStore({ client: _client, currentUser }: UserStoreOptions): UserStore;
14997
15537
  /** @internal */
14998
15538
  type Status = 'online' | 'editing' | 'inactive';
14999
15539
  /** @internal */
@@ -15255,9 +15795,7 @@ interface ResourceCacheProviderProps {
15255
15795
  children: ReactNode;
15256
15796
  }
15257
15797
  /** @internal */
15258
- declare function ResourceCacheProvider({
15259
- children
15260
- }: ResourceCacheProviderProps): import("react").JSX.Element;
15798
+ declare function ResourceCacheProvider({ children }: ResourceCacheProviderProps): import("react").JSX.Element;
15261
15799
  /** @internal */
15262
15800
  declare function useResourceCache(): ResourceCache;
15263
15801
  /** @internal */
@@ -15345,13 +15883,7 @@ interface FieldPresenceInnerProps {
15345
15883
  animateArrowFrom?: AvatarPosition;
15346
15884
  }
15347
15885
  /** @internal */
15348
- declare const FieldPresenceInner: import("react").MemoExoticComponent<({
15349
- presence,
15350
- position,
15351
- animateArrowFrom,
15352
- maxAvatars,
15353
- stack
15354
- }: FieldPresenceInnerProps) => import("react").JSX.Element>;
15886
+ declare const FieldPresenceInner: import("react").MemoExoticComponent<({ presence, position, animateArrowFrom, maxAvatars, stack }: FieldPresenceInnerProps) => import("react").JSX.Element>;
15355
15887
  /** @internal */
15356
15888
  interface FieldPresenceProps {
15357
15889
  presence: FormNodePresence[];
@@ -15372,10 +15904,7 @@ interface PresenceOverlayProps {
15372
15904
  margins?: [number, number, number, number];
15373
15905
  }
15374
15906
  /** @internal */
15375
- declare function PresenceOverlay({
15376
- children,
15377
- margins
15378
- }: PresenceOverlayProps): import("react").JSX.Element;
15907
+ declare function PresenceOverlay({ children, margins }: PresenceOverlayProps): import("react").JSX.Element;
15379
15908
  /** @internal */
15380
15909
  interface PresenceScopeProps {
15381
15910
  readOnly?: boolean;
@@ -15491,11 +16020,7 @@ interface FieldStatusProps {
15491
16020
  position?: 'top' | 'bottom';
15492
16021
  }
15493
16022
  /** @internal */
15494
- declare function FormFieldStatus({
15495
- children,
15496
- maxAvatars,
15497
- position
15498
- }: FieldStatusProps): import("react").JSX.Element;
16023
+ declare function FormFieldStatus({ children, maxAvatars, position }: FieldStatusProps): import("react").JSX.Element;
15499
16024
  /** @internal */
15500
16025
  interface FormFieldValidationStatusProps {
15501
16026
  /**
@@ -15663,7 +16188,8 @@ interface FieldActionMenuProps {
15663
16188
  /** @internal */
15664
16189
  declare const FieldActionMenu: import("react").MemoExoticComponent<(props: FieldActionMenuProps) => import("react").JSX.Element>;
15665
16190
  type FieldActionsProviderProps = PropsWithChildren<{
15666
- actions: DocumentFieldActionNode[]; /** @internal @deprecated DO NOT USE */
16191
+ actions: DocumentFieldActionNode[];
16192
+ /** @internal @deprecated DO NOT USE */
15667
16193
  __internal_comments?: FieldCommentsProps;
15668
16194
  __internal_slot?: ReactNode;
15669
16195
  focused?: boolean;
@@ -15766,10 +16292,10 @@ interface FormBuilderContextValue {
15766
16292
  * @beta
15767
16293
  * @hidden
15768
16294
  */
15769
- declare function useDidUpdate<T>(/** The value you want to respond to changes in. */
15770
-
15771
- current: T, /** Callback to run when the value changes. */
15772
-
16295
+ declare function useDidUpdate<T>(
16296
+ /** The value you want to respond to changes in. */
16297
+ current: T,
16298
+ /** Callback to run when the value changes. */
15773
16299
  didUpdate: (previous: T | undefined, current: T) => void, compare?: (previous: T | undefined, current: T) => boolean): void;
15774
16300
  /**
15775
16301
  * @hidden
@@ -17301,7 +17827,8 @@ interface Source {
17301
17827
  * - Outside a release if they support live-edit.
17302
17828
  */
17303
17829
  enabled: boolean;
17304
- }; /** @internal */
17830
+ };
17831
+ /** @internal */
17305
17832
  unstable_fieldActions: (props: PartialContext<DocumentFieldActionsResolverContext>) => DocumentFieldAction[];
17306
17833
  /**
17307
17834
  * Resolves the production URL for the document.
@@ -17314,19 +17841,23 @@ interface Source {
17314
17841
  * @hidden
17315
17842
  * @beta
17316
17843
  */
17317
- resolveNewDocumentOptions: (context: NewDocumentCreationContext) => InitialValueTemplateItem[]; /** @alpha */
17844
+ resolveNewDocumentOptions: (context: NewDocumentCreationContext) => InitialValueTemplateItem[];
17845
+ /** @alpha */
17318
17846
  unstable_languageFilter: (props: PartialContext<DocumentLanguageFilterContext>) => DocumentLanguageFilterComponent[];
17319
17847
  /**
17320
17848
  * @hidden
17321
17849
  * @beta
17322
17850
  */
17323
- inspectors: (props: PartialContext<DocumentInspectorContext>) => DocumentInspector[]; /** @deprecated Use `comments` instead */
17851
+ inspectors: (props: PartialContext<DocumentInspectorContext>) => DocumentInspector[];
17852
+ /** @deprecated Use `comments` instead */
17324
17853
  unstable_comments: {
17325
17854
  enabled: (props: DocumentCommentsEnabledContext) => boolean;
17326
- }; /** @internal */
17855
+ };
17856
+ /** @internal */
17327
17857
  comments: {
17328
17858
  enabled: (props: DocumentCommentsEnabledContext) => boolean;
17329
- }; /** @hidden @beta */
17859
+ };
17860
+ /** @hidden @beta */
17330
17861
  askToEdit: {
17331
17862
  enabled: (props: DocumentAskToEditEnabledContext) => boolean;
17332
17863
  };
@@ -17347,7 +17878,9 @@ interface Source {
17347
17878
  * @beta
17348
17879
  */
17349
17880
  file: {
17350
- /** The asset sources. */assetSources: AssetSource[]; /** Whether direct uploads are enabled. */
17881
+ /** The asset sources. */
17882
+ assetSources: AssetSource[];
17883
+ /** Whether direct uploads are enabled. */
17351
17884
  directUploads: boolean;
17352
17885
  };
17353
17886
  /**
@@ -17356,7 +17889,9 @@ interface Source {
17356
17889
  * @beta
17357
17890
  */
17358
17891
  image: {
17359
- /** The asset sources. */assetSources: AssetSource[]; /** Whether direct uploads are enabled. */
17892
+ /** The asset sources. */
17893
+ assetSources: AssetSource[];
17894
+ /** Whether direct uploads are enabled. */
17360
17895
  directUploads: boolean;
17361
17896
  };
17362
17897
  /**
@@ -17401,8 +17936,11 @@ interface Source {
17401
17936
  i18n: LocaleSource;
17402
17937
  /** @internal */
17403
17938
  __internal: {
17404
- /** @internal */bifur: BifurClient; /** @internal */
17405
- staticInitialValueTemplateItems: InitialValueTemplateItem[]; /** @internal */
17939
+ /** @internal */
17940
+ bifur: BifurClient;
17941
+ /** @internal */
17942
+ staticInitialValueTemplateItems: InitialValueTemplateItem[];
17943
+ /** @internal */
17406
17944
  options: SourceOptions;
17407
17945
  /**
17408
17946
  * _VERY_ internal, likely to change at any point.
@@ -17660,7 +18198,8 @@ interface MediaLibraryConfig {
17660
18198
  * */
17661
18199
  interface BetaFeatures {
17662
18200
  form?: {
17663
- /** @deprecated `enhancedObjectDialog` has been removed. The enhanced object dialog is now always enabled and is considered the default studio experience. */enhancedObjectDialog?: never;
18201
+ /** @deprecated `enhancedObjectDialog` has been removed. The enhanced object dialog is now always enabled and is considered the default studio experience. */
18202
+ enhancedObjectDialog?: never;
17664
18203
  };
17665
18204
  /**
17666
18205
  * @deprecated - The Start in Create flow has been removed and will be updated in an upcoming studio release.
@@ -17764,11 +18303,7 @@ declare class ConfigPropertyError extends Error {
17764
18303
  propertyName: string;
17765
18304
  path: string[];
17766
18305
  cause: unknown;
17767
- constructor({
17768
- propertyName,
17769
- path,
17770
- cause
17771
- }: ConfigPropertyErrorOptions);
18306
+ constructor({ propertyName, path, cause }: ConfigPropertyErrorOptions);
17772
18307
  }
17773
18308
  /** @internal */
17774
18309
  interface ConfigResolutionErrorOptions {
@@ -17781,11 +18316,7 @@ declare class ConfigResolutionError extends Error {
17781
18316
  name: string;
17782
18317
  type: string;
17783
18318
  causes: unknown[];
17784
- constructor({
17785
- causes,
17786
- name,
17787
- type
17788
- }: ConfigResolutionErrorOptions);
18319
+ constructor({ causes, name, type }: ConfigResolutionErrorOptions);
17789
18320
  }
17790
18321
  /**
17791
18322
  * Creates an icon element based on the input title
@@ -17823,10 +18354,7 @@ declare function createPlugin<TOptions = void>(arg: PluginFactory<TOptions> | Pl
17823
18354
  *
17824
18355
  * This function flattens the config tree into a list of configs in the order they should be applied.
17825
18356
  */
17826
- declare const flattenConfig: ({
17827
- plugins,
17828
- ...currentConfig
17829
- }: PluginOptions, path: string[]) => Array<{
18357
+ declare const flattenConfig: ({ plugins, ...currentConfig }: PluginOptions, path: string[]) => Array<{
17830
18358
  config: PluginOptions;
17831
18359
  path: string[];
17832
18360
  }>;
@@ -17896,10 +18424,7 @@ interface ResolveSchemaTypesOptions {
17896
18424
  * @internal
17897
18425
  * @hidden
17898
18426
  */
17899
- declare function resolveSchemaTypes({
17900
- config,
17901
- context
17902
- }: ResolveSchemaTypesOptions): SchemaTypeDefinition[];
18427
+ declare function resolveSchemaTypes({ config, context }: ResolveSchemaTypesOptions): SchemaTypeDefinition[];
17903
18428
  /** @internal */
17904
18429
  declare class SchemaError extends Error {
17905
18430
  schema: Schema;