@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 +2 -2
- package/dist/index.js +460 -429
- package/package.json +1 -1
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:
|
|
117
|
-
fontSize?:
|
|
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
|
|