From fa0935d79db8234bea677e5e4577254614e2628e Mon Sep 17 00:00:00 2001 From: Malin J Date: Fri, 19 Jan 2024 12:16:01 +0100 Subject: [PATCH 1/2] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Change=20order=20of=20?= =?UTF-8?q?component=20list=20#1879?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sanityv3/schemas/documents/page.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/sanityv3/schemas/documents/page.ts b/sanityv3/schemas/documents/page.ts index 799f4df1c..bac76f237 100644 --- a/sanityv3/schemas/documents/page.ts +++ b/sanityv3/schemas/documents/page.ts @@ -52,26 +52,26 @@ export default { of: [ { type: 'textBlock' }, { type: 'teaser' }, - { type: 'fullWidthImage' }, - { type: 'fullWidthVideo' }, { type: 'figure' }, - { type: 'textWithIconArray' }, + { type: 'fullWidthImage' }, { type: 'pullQuote', initialValue: { background: defaultColors[0] } }, { type: 'accordion' }, { type: 'promoTileArray' }, - { type: 'promotion' }, - { type: 'table' }, - { type: 'stockValuesApi' }, { type: 'iframe' }, - { type: 'cookieDeclaration' }, - Flags.HAS_FORMS && { type: 'form' }, - Flags.HAS_NEWS && { type: 'newsList' }, - Flags.HAS_TWITTER_FEED && { type: 'twitterEmbed' }, + { type: 'fullWidthVideo' }, + { type: 'textWithIconArray' }, + { type: 'promotion' }, { type: 'anchorLink' }, { type: 'imageCarousel' }, { type: 'iframeCarousel' }, { type: 'videoPlayer' }, { type: 'videoPlayerCarousel' }, + { type: 'table' }, + Flags.HAS_FORMS && { type: 'form' }, + Flags.HAS_NEWS && { type: 'newsList' }, + { type: 'stockValuesApi' }, + Flags.HAS_TWITTER_FEED && { type: 'twitterEmbed' }, + { type: 'cookieDeclaration' }, ].filter((e) => e), }, ].filter((e) => e), From 3180a2855d8ec1a5432c7ddccd61af74ab5fc010 Mon Sep 17 00:00:00 2001 From: Malin J Date: Sat, 20 Jan 2024 13:41:29 +0100 Subject: [PATCH 2/2] =?UTF-8?q?=E2=9C=A8=20Add=20keynumber=20type=20#1879?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sanityv3/schemas/documents/page.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sanityv3/schemas/documents/page.ts b/sanityv3/schemas/documents/page.ts index bac76f237..0633d3ef4 100644 --- a/sanityv3/schemas/documents/page.ts +++ b/sanityv3/schemas/documents/page.ts @@ -60,6 +60,7 @@ export default { { type: 'iframe' }, { type: 'fullWidthVideo' }, { type: 'textWithIconArray' }, + { type: 'keyNumbers' }, { type: 'promotion' }, { type: 'anchorLink' }, { type: 'imageCarousel' },