@sanity/ailf-studio 0.1.12 → 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -113,8 +113,8 @@ interface SyncStatusBadgeProps {
113
113
  lastSyncedAt: string;
114
114
  /** Optional: show the commit SHA alongside the badge */
115
115
  commitSha?: string;
116
- /** Font size (default: 0 for compact list view) */
117
- fontSize?: 0 | 1;
116
+ /** Font size (default: 1 for compact list view) */
117
+ fontSize?: 1 | 2;
118
118
  }
119
119
  declare function SyncStatusBadge({ lastSyncedAt, commitSha, fontSize, }: SyncStatusBadgeProps): react_jsx_runtime.JSX.Element;
120
120