@confed/sanity-types 0.1.3-2511071847 → 0.1.3-2511072024

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/sanity.types.ts +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@confed/sanity-types",
3
- "version": "0.1.3-2511071847",
3
+ "version": "0.1.3-2511072024",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
package/sanity.types.ts CHANGED
@@ -350,6 +350,8 @@ export type RichTextSection = {
350
350
  _key: string
351
351
  }
352
352
  >
353
+ backgroundColor?: 'light' | 'white'
354
+ spacing?: 'default' | 'minimum' | 'none'
353
355
  }
354
356
 
355
357
  export type GallerySection = {
@@ -536,12 +538,14 @@ export type FaqSection = {
536
538
  _key: string
537
539
  }
538
540
  >
539
- layout?: 'accordion' | 'list' | 'twoCols'
540
541
  items?: Array<
541
542
  {
542
543
  _key: string
543
544
  } & FaqItem
544
545
  >
546
+ layout?: 'accordion' | 'list' | 'twoCols'
547
+ backgroundColor?: 'light' | 'white'
548
+ spacing?: 'default' | 'minimum' | 'none'
545
549
  }
546
550
 
547
551
  export type FaqItem = {