From a28add0653e550f039e958bcf2e6f364636cd7fd Mon Sep 17 00:00:00 2001 From: Cody Olsen Date: Mon, 8 Apr 2024 17:04:40 +0200 Subject: [PATCH] chore: upgrade to styled-components v6 --- apps/v1/components/CodeSnippet.tsx | 2 +- apps/v1/components/ColorTintsPreview.tsx | 2 +- apps/v1/components/ExportTheme.styles.tsx | 2 +- apps/v1/components/HeaderCard.tsx | 2 +- apps/v1/components/HueColorInput.tsx | 2 +- apps/v1/components/HuesFields.tsx | 2 +- apps/v1/components/ImageColorPaletteGrid.tsx | 2 +- apps/v1/components/ImportFromImage.styles.tsx | 2 +- .../components/ImportFromSanityImageAsset.tsx | 2 +- apps/v1/components/Logo.tsx | 2 +- apps/v1/components/PresetsMenu.tsx | 2 +- apps/v1/components/ShareTab.tsx | 2 +- apps/v1/components/Sidebar.styles.tsx | 2 +- apps/v1/components/StudioViewer.tsx | 2 +- apps/v1/components/Themer.tsx | 2 +- apps/v1/package.json | 3 +- apps/v2/package.json | 3 +- apps/v2/src/Logo.tsx | 2 +- apps/v2/src/index.tsx | 2 +- examples/advanced/package.json | 2 +- examples/basic/package.json | 2 +- examples/next-dynamic/package.json | 2 +- examples/next-static/package.json | 2 +- pnpm-lock.yaml | 252 +++++++++--------- 24 files changed, 142 insertions(+), 158 deletions(-) diff --git a/apps/v1/components/CodeSnippet.tsx b/apps/v1/components/CodeSnippet.tsx index c23c67cf..4aed7665 100644 --- a/apps/v1/components/CodeSnippet.tsx +++ b/apps/v1/components/CodeSnippet.tsx @@ -2,7 +2,7 @@ import { ClipboardIcon } from '@sanity/icons' import { Box, Button, Card, Code, type CodeProps } from '@sanity/ui' import { useToast } from '@sanity/ui' import { memo } from 'react' -import styled from 'styled-components' +import {styled} from 'styled-components' const StyledCode = styled(Code)` padding-right: 2rem; diff --git a/apps/v1/components/ColorTintsPreview.tsx b/apps/v1/components/ColorTintsPreview.tsx index 3363b0ef..ec59809f 100644 --- a/apps/v1/components/ColorTintsPreview.tsx +++ b/apps/v1/components/ColorTintsPreview.tsx @@ -1,6 +1,6 @@ import { Box, Card, Stack, Text, Tooltip, useToast } from '@sanity/ui' import { memo } from 'react' -import styled from 'styled-components' +import { styled } from 'styled-components' import { createTintsFromHue } from 'utils/createTonesFromHues' import type { Hue } from 'utils/types' diff --git a/apps/v1/components/ExportTheme.styles.tsx b/apps/v1/components/ExportTheme.styles.tsx index 19734939..5ea25828 100644 --- a/apps/v1/components/ExportTheme.styles.tsx +++ b/apps/v1/components/ExportTheme.styles.tsx @@ -15,7 +15,7 @@ import { useState, } from 'react' import scrollIntoView from 'scroll-into-view-if-needed' -import styled from 'styled-components' +import { styled } from 'styled-components' interface QuizRowProps { children: ReactNode diff --git a/apps/v1/components/HeaderCard.tsx b/apps/v1/components/HeaderCard.tsx index 980b18a1..1a5c4285 100644 --- a/apps/v1/components/HeaderCard.tsx +++ b/apps/v1/components/HeaderCard.tsx @@ -7,7 +7,7 @@ import { useState, useTransition, } from 'react' -import styled from 'styled-components' +import { styled } from 'styled-components' interface Props { scheme: ThemeColorSchemeKey diff --git a/apps/v1/components/HueColorInput.tsx b/apps/v1/components/HueColorInput.tsx index 8e85733b..12d08112 100644 --- a/apps/v1/components/HueColorInput.tsx +++ b/apps/v1/components/HueColorInput.tsx @@ -1,7 +1,7 @@ import { Stack, Text } from '@sanity/ui' import { ColorInput, Label } from 'components/Sidebar.styles' import { type ChangeEventHandler, memo, useId } from 'react' -import styled from 'styled-components' +import { styled } from 'styled-components' interface Props { label: string diff --git a/apps/v1/components/HuesFields.tsx b/apps/v1/components/HuesFields.tsx index 37437e1a..7bb20964 100644 --- a/apps/v1/components/HuesFields.tsx +++ b/apps/v1/components/HuesFields.tsx @@ -13,7 +13,7 @@ import { useMemo, useState, } from 'react' -import styled from 'styled-components' +import { styled } from 'styled-components' import { TONES } from 'utils/colors' import { isColor } from 'utils/parseHuesFromSearchParams' import { roundMidPoint } from 'utils/roundMidPoint' diff --git a/apps/v1/components/ImageColorPaletteGrid.tsx b/apps/v1/components/ImageColorPaletteGrid.tsx index f1665df0..cef84b5f 100644 --- a/apps/v1/components/ImageColorPaletteGrid.tsx +++ b/apps/v1/components/ImageColorPaletteGrid.tsx @@ -1,6 +1,6 @@ import { Box, Grid, Skeleton } from '@sanity/ui' import { memo, type ReactNode } from 'react' -import styled from 'styled-components' +import { styled } from 'styled-components' interface Props { image: ReactNode diff --git a/apps/v1/components/ImportFromImage.styles.tsx b/apps/v1/components/ImportFromImage.styles.tsx index ce3e2a1a..e5645b6f 100644 --- a/apps/v1/components/ImportFromImage.styles.tsx +++ b/apps/v1/components/ImportFromImage.styles.tsx @@ -3,7 +3,7 @@ import { Box, Card, Grid, Skeleton, Stack, Text } from '@sanity/ui' import { ImageColorPaletteGridSkeleton } from 'components/ImageColorPaletteGrid' import { Label } from 'components/Sidebar.styles' import { memo, type ReactNode } from 'react' -import styled from 'styled-components' +import { styled } from 'styled-components' const ButtonSkeleton = styled(Skeleton).attrs({ radius: 2, animated: true })` /* Magic number, equals 25px, the height of the variant buttons */ diff --git a/apps/v1/components/ImportFromSanityImageAsset.tsx b/apps/v1/components/ImportFromSanityImageAsset.tsx index ef8fc707..1442b821 100644 --- a/apps/v1/components/ImportFromSanityImageAsset.tsx +++ b/apps/v1/components/ImportFromSanityImageAsset.tsx @@ -18,7 +18,7 @@ import { useMemo, } from 'react' import { MediaPreview, type PreviewLayoutKey, type PreviewProps } from 'sanity' -import styled from 'styled-components' +import { styled } from 'styled-components' import { suspend } from 'suspend-react' import { applyHues } from 'utils/applyHues' import { useFetcher } from 'utils/fetcher' diff --git a/apps/v1/components/Logo.tsx b/apps/v1/components/Logo.tsx index 0f24de5f..1dd00e99 100644 --- a/apps/v1/components/Logo.tsx +++ b/apps/v1/components/Logo.tsx @@ -1,7 +1,7 @@ import type { ThemeColorSchemeKey } from '@sanity/ui/theme' import { animate, spring } from 'motion' import { memo, useEffect, useRef } from 'react' -import styled from 'styled-components' +import { styled } from 'styled-components' const Svg = styled.svg` position: relative; diff --git a/apps/v1/components/PresetsMenu.tsx b/apps/v1/components/PresetsMenu.tsx index 8f98173e..441d5b2d 100644 --- a/apps/v1/components/PresetsMenu.tsx +++ b/apps/v1/components/PresetsMenu.tsx @@ -34,7 +34,7 @@ import { useMemo, useState, } from 'react' -import styled from 'styled-components' +import { styled } from 'styled-components' import { expandPresetSearchParams } from 'utils/expandPresetSearchParams' import { presets } from 'utils/presets' import type { Hues, ThemePreset } from 'utils/types' diff --git a/apps/v1/components/ShareTab.tsx b/apps/v1/components/ShareTab.tsx index fb0c9f09..1e812b80 100644 --- a/apps/v1/components/ShareTab.tsx +++ b/apps/v1/components/ShareTab.tsx @@ -3,7 +3,7 @@ import { ClipboardIcon, LockIcon } from '@sanity/icons' import { Grid, Stack, useToast } from '@sanity/ui' import { Button, Label } from 'components/Sidebar.styles' import { memo, useLayoutEffect, useState } from 'react' -import styled from 'styled-components' +import { styled } from 'styled-components' import { shortenPresetSearchParams } from 'utils/shortenPresetSearchParams' const ShareIcon = styled(_ShareIcon)` diff --git a/apps/v1/components/Sidebar.styles.tsx b/apps/v1/components/Sidebar.styles.tsx index db47e0fc..177712e5 100644 --- a/apps/v1/components/Sidebar.styles.tsx +++ b/apps/v1/components/Sidebar.styles.tsx @@ -1,6 +1,6 @@ import { Button as UiButton, Text } from '@sanity/ui' import { transparentize } from 'polished' -import styled from 'styled-components' +import { styled } from 'styled-components' export const Button = styled(UiButton).attrs({ fontSize: 1, diff --git a/apps/v1/components/StudioViewer.tsx b/apps/v1/components/StudioViewer.tsx index 71d419b1..0fced24e 100644 --- a/apps/v1/components/StudioViewer.tsx +++ b/apps/v1/components/StudioViewer.tsx @@ -15,7 +15,7 @@ import { useState, } from 'react' import { type StudioProviderProps, type WorkspaceOptions } from 'sanity' -import styled from 'styled-components' +import { styled } from 'styled-components' export type View = 'default' | 'split' diff --git a/apps/v1/components/Themer.tsx b/apps/v1/components/Themer.tsx index 7fd5fefa..2e06d9e9 100644 --- a/apps/v1/components/Themer.tsx +++ b/apps/v1/components/Themer.tsx @@ -19,7 +19,7 @@ import { useIdleCallback } from 'hooks/useIdleCallback' import { useCallback, useEffect, useMemo, useRef, useState } from 'react' import type { StudioProviderProps, StudioTheme } from 'sanity' import { config } from 'studios' -import styled from 'styled-components' +import { styled } from 'styled-components' import { suspend } from 'suspend-react' import { expandPresetSearchParams } from 'utils/expandPresetSearchParams' import { shortenPresetSearchParams } from 'utils/shortenPresetSearchParams' diff --git a/apps/v1/package.json b/apps/v1/package.json index d5e51239..36bdae1a 100644 --- a/apps/v1/package.json +++ b/apps/v1/package.json @@ -43,7 +43,7 @@ "sanity-plugin-mux-input": "^2.2.1", "scroll-into-view-if-needed": "^3.0.10", "slugify": "^1.6.6", - "styled-components": "^5.3.11", + "styled-components": "^6.1.8", "suspend-react": "^0.1.3" }, "devDependencies": { @@ -52,7 +52,6 @@ "@types/node": "^18.17.11", "@types/prettier": "^3.0.0", "@types/react": "^18.2.21", - "@types/styled-components": "^5.1.26", "esbuild": "^0.19.2", "esbuild-plugin-replace": "^1.4.0", "eslint": "^8.47.0", diff --git a/apps/v2/package.json b/apps/v2/package.json index dc6d22e8..534d3bcd 100644 --- a/apps/v2/package.json +++ b/apps/v2/package.json @@ -9,7 +9,6 @@ "dependencies": { "@sanity/icons": "^2.4.1", "@sanity/ui": "^2.0.0", - "@types/styled-components": "^5.1.26", "motion": "^10.16.2", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -17,7 +16,7 @@ "react-is": "^18.2.0", "sanity": "^3.25.0", "sanity-plugin-mux-input": "^2.2.1", - "styled-components": "^5.3.11" + "styled-components": "^6.1.8" }, "devDependencies": { "@sanity/eslint-config-studio": "^3.0.0", diff --git a/apps/v2/src/Logo.tsx b/apps/v2/src/Logo.tsx index 10f3ba60..318bfe90 100644 --- a/apps/v2/src/Logo.tsx +++ b/apps/v2/src/Logo.tsx @@ -1,6 +1,6 @@ import { animate, spring } from 'motion' import { memo, useEffect, useRef } from 'react' -import styled from 'styled-components' +import {styled} from 'styled-components' const Svg = styled.svg` position: relative; diff --git a/apps/v2/src/index.tsx b/apps/v2/src/index.tsx index 55fb26ec..e457b94c 100644 --- a/apps/v2/src/index.tsx +++ b/apps/v2/src/index.tsx @@ -34,7 +34,7 @@ import { useColorScheme, type StudioTheme, } from 'sanity' -import styled from 'styled-components' +import {styled} from 'styled-components' import Logo from './Logo' diff --git a/examples/advanced/package.json b/examples/advanced/package.json index 3fe99bef..4e55f755 100644 --- a/examples/advanced/package.json +++ b/examples/advanced/package.json @@ -13,7 +13,7 @@ "react-is": "^18.2.0", "sanity": "^3.25.0", "sanity-plugin-mux-input": "^2.2.1", - "styled-components": "^5.3.11" + "styled-components": "^6.1.8" }, "devDependencies": { "@sanity/eslint-config-studio": "^3.0.0", diff --git a/examples/basic/package.json b/examples/basic/package.json index df87aeb5..dff59813 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -13,7 +13,7 @@ "react-is": "^18.2.0", "sanity": "^3.25.0", "sanity-plugin-mux-input": "^2.2.1", - "styled-components": "^5.3.11" + "styled-components": "^6.1.8" }, "devDependencies": { "@sanity/eslint-config-studio": "^3.0.0", diff --git a/examples/next-dynamic/package.json b/examples/next-dynamic/package.json index 6a9d8b66..f9bb46b4 100644 --- a/examples/next-dynamic/package.json +++ b/examples/next-dynamic/package.json @@ -15,7 +15,7 @@ "react-is": "^18.2.0", "sanity": "^3.25.0", "sanity-plugin-mux-input": "^2.2.1", - "styled-components": "^5.3.11" + "styled-components": "^6.1.8" }, "devDependencies": { "@types/node": "^18.17.11", diff --git a/examples/next-static/package.json b/examples/next-static/package.json index 7fbf596f..883754e9 100644 --- a/examples/next-static/package.json +++ b/examples/next-static/package.json @@ -15,7 +15,7 @@ "react-is": "^18.2.0", "sanity": "^3.25.0", "sanity-plugin-mux-input": "^2.2.1", - "styled-components": "^5.3.11" + "styled-components": "^6.1.8" }, "devDependencies": { "@types/node": "^18.17.11", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 35858e69..1297f8c9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -37,10 +37,10 @@ importers: version: 2.8.0(react@18.2.0) '@sanity/ui': specifier: ^2.0.0 - version: 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) + version: 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) '@sanity/vision': specifier: ^3.25.0 - version: 3.25.0(@babel/runtime@7.23.8)(@codemirror/lint@6.4.0)(@codemirror/state@6.2.1)(@codemirror/theme-one-dark@6.1.2)(@lezer/common@1.0.4)(codemirror@6.0.1)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) + version: 3.25.0(@babel/runtime@7.23.8)(@codemirror/lint@6.4.0)(@codemirror/state@6.2.1)(@codemirror/theme-one-dark@6.1.2)(@lezer/common@1.0.4)(codemirror@6.0.1)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) culori: specifier: ^3.2.0 version: 3.2.0 @@ -58,7 +58,7 @@ importers: version: 14.0.0(@babel/core@7.23.7)(react-dom@18.2.0)(react@18.2.0) next-sanity: specifier: ^5.0.0 - version: 5.0.0(@sanity/client@6.11.1)(@sanity/icons@2.8.0)(@sanity/types@3.25.0)(@sanity/ui@2.0.0)(@types/styled-components@5.1.26)(next@14.0.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11) + version: 5.0.0(@sanity/client@6.11.1)(@sanity/icons@2.8.0)(@sanity/types@3.25.0)(@sanity/ui@2.0.0)(@types/styled-components@5.1.26)(next@14.0.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8) polished: specifier: ^4.2.2 version: 4.2.2 @@ -76,13 +76,13 @@ importers: version: 4.4.1 sanity: specifier: ^3.25.0 - version: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) + version: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) sanity-plugin-asset-source-unsplash: specifier: ^1.1.0 - version: 1.1.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11) + version: 1.1.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8) sanity-plugin-mux-input: specifier: ^2.2.1 - version: 2.2.1(@types/react@18.2.21)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11) + version: 2.2.1(@types/react@18.2.21)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8) scroll-into-view-if-needed: specifier: ^3.0.10 version: 3.1.0 @@ -90,8 +90,8 @@ importers: specifier: ^1.6.6 version: 1.6.6 styled-components: - specifier: ^5.3.11 - version: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + specifier: ^6.1.8 + version: 6.1.8(react-dom@18.2.0)(react@18.2.0) suspend-react: specifier: ^0.1.3 version: 0.1.3(react@18.2.0) @@ -111,9 +111,6 @@ importers: '@types/react': specifier: ^18.2.21 version: 18.2.21 - '@types/styled-components': - specifier: ^5.1.26 - version: 5.1.26 esbuild: specifier: ^0.19.2 version: 0.19.11 @@ -158,10 +155,7 @@ importers: version: 2.8.0(react@18.2.0) '@sanity/ui': specifier: ^2.0.0 - version: 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) - '@types/styled-components': - specifier: ^5.1.26 - version: 5.1.26 + version: 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) motion: specifier: ^10.16.2 version: 10.16.2 @@ -179,13 +173,13 @@ importers: version: 18.2.0 sanity: specifier: ^3.25.0 - version: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) + version: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) sanity-plugin-mux-input: specifier: ^2.2.1 - version: 2.2.1(@types/react@18.2.21)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11) + version: 2.2.1(@types/react@18.2.21)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8) styled-components: - specifier: ^5.3.11 - version: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + specifier: ^6.1.8 + version: 6.1.8(react-dom@18.2.0)(react@18.2.0) devDependencies: '@sanity/eslint-config-studio': specifier: ^3.0.0 @@ -216,13 +210,13 @@ importers: version: 18.2.0 sanity: specifier: ^3.25.0 - version: 3.25.0(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) + version: 3.25.0(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) sanity-plugin-mux-input: specifier: ^2.2.1 - version: 2.2.1(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11) + version: 2.2.1(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8) styled-components: - specifier: ^5.3.11 - version: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + specifier: ^6.1.8 + version: 6.1.8(react-dom@18.2.0)(react@18.2.0) devDependencies: '@sanity/eslint-config-studio': specifier: ^3.0.0 @@ -250,13 +244,13 @@ importers: version: 18.2.0 sanity: specifier: ^3.25.0 - version: 3.25.0(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) + version: 3.25.0(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) sanity-plugin-mux-input: specifier: ^2.2.1 - version: 2.2.1(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11) + version: 2.2.1(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8) styled-components: - specifier: ^5.3.11 - version: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + specifier: ^6.1.8 + version: 6.1.8(react-dom@18.2.0)(react@18.2.0) devDependencies: '@sanity/eslint-config-studio': specifier: ^3.0.0 @@ -275,7 +269,7 @@ importers: version: 14.0.0(@babel/core@7.23.7)(react-dom@18.2.0)(react@18.2.0) next-sanity: specifier: ^5.0.0 - version: 5.0.0(@sanity/client@6.11.1)(@sanity/icons@2.8.0)(@sanity/types@3.25.0)(@sanity/ui@1.7.11)(@types/styled-components@5.1.26)(next@14.0.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11) + version: 5.0.0(@sanity/client@6.11.1)(@sanity/icons@2.8.0)(@sanity/types@3.25.0)(@sanity/ui@1.7.11)(@types/styled-components@5.1.26)(next@14.0.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8) react: specifier: ^18.2.0 version: 18.2.0 @@ -290,13 +284,13 @@ importers: version: 18.2.0 sanity: specifier: ^3.25.0 - version: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) + version: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) sanity-plugin-mux-input: specifier: ^2.2.1 - version: 2.2.1(@types/react@18.2.21)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11) + version: 2.2.1(@types/react@18.2.21)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8) styled-components: - specifier: ^5.3.11 - version: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + specifier: ^6.1.8 + version: 6.1.8(react-dom@18.2.0)(react@18.2.0) devDependencies: '@types/node': specifier: ^18.17.11 @@ -315,7 +309,7 @@ importers: version: 14.0.0(@babel/core@7.23.7)(react-dom@18.2.0)(react@18.2.0) next-sanity: specifier: ^5.0.0 - version: 5.0.0(@sanity/client@6.11.1)(@sanity/icons@2.8.0)(@sanity/types@3.25.0)(@sanity/ui@1.7.11)(@types/styled-components@5.1.26)(next@14.0.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11) + version: 5.0.0(@sanity/client@6.11.1)(@sanity/icons@2.8.0)(@sanity/types@3.25.0)(@sanity/ui@1.7.11)(@types/styled-components@5.1.26)(next@14.0.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8) react: specifier: ^18.2.0 version: 18.2.0 @@ -330,13 +324,13 @@ importers: version: 18.2.0 sanity: specifier: ^3.25.0 - version: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) + version: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) sanity-plugin-mux-input: specifier: ^2.2.1 - version: 2.2.1(@types/react@18.2.21)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11) + version: 2.2.1(@types/react@18.2.21)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8) styled-components: - specifier: ^5.3.11 - version: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + specifier: ^6.1.8 + version: 6.1.8(react-dom@18.2.0)(react@18.2.0) devDependencies: '@types/node': specifier: ^18.17.11 @@ -393,10 +387,10 @@ packages: '@babel/helpers': 7.23.8 '@babel/parser': 7.23.6 '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7(supports-color@5.5.0) + '@babel/traverse': 7.23.7 '@babel/types': 7.23.6 convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -431,6 +425,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.23.6 + dev: true /@babel/helper-builder-binary-assignment-operator-visitor@7.22.10: resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==} @@ -487,7 +482,7 @@ packages: '@babel/core': 7.23.7 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.4 transitivePeerDependencies: @@ -617,7 +612,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7(supports-color@5.5.0) + '@babel/traverse': 7.23.7 '@babel/types': 7.23.6 transitivePeerDependencies: - supports-color @@ -769,6 +764,7 @@ packages: dependencies: '@babel/core': 7.23.7 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} @@ -1597,7 +1593,7 @@ packages: '@babel/parser': 7.23.6 '@babel/types': 7.23.6 - /@babel/traverse@7.23.7(supports-color@5.5.0): + /@babel/traverse@7.23.7: resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==} engines: {node: '>=6.9.0'} dependencies: @@ -1609,7 +1605,7 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.23.6 '@babel/types': 7.23.6 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -1811,12 +1807,8 @@ packages: resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} dev: false - /@emotion/stylis@0.8.5: - resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==} - dev: false - - /@emotion/unitless@0.7.5: - resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} + /@emotion/unitless@0.8.0: + resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==} dev: false /@esbuild/aix-ppc64@0.19.11: @@ -2221,7 +2213,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 espree: 9.6.1 globals: 13.21.0 ignore: 5.2.4 @@ -2290,7 +2282,7 @@ packages: engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -2945,7 +2937,7 @@ packages: engines: {node: '>=18'} hasBin: true dependencies: - '@babel/traverse': 7.23.7(supports-color@5.5.0) + '@babel/traverse': 7.23.7 '@sanity/telemetry': 0.7.6 chalk: 4.1.2 esbuild: 0.19.11 @@ -3139,7 +3131,7 @@ packages: - supports-color dev: false - /@sanity/portable-text-editor@3.25.0(react-dom@18.2.0)(react@18.2.0)(rxjs@7.8.1)(styled-components@5.3.11): + /@sanity/portable-text-editor@3.25.0(react-dom@18.2.0)(react@18.2.0)(rxjs@7.8.1)(styled-components@6.1.8): resolution: {integrity: sha512-NbsSzs9qM6BrSsH7ien9BAng0VRUkA+vSz4CRTbCqch3FGtGglZNRAyWAXgmGp0L3YeG6r7hOCVG6kxbv3Ohkw==} engines: {node: '>=18'} peerDependencies: @@ -3158,7 +3150,7 @@ packages: rxjs: 7.8.1 slate: 0.100.0 slate-react: 0.101.0(react-dom@18.2.0)(react@18.2.0)(slate@0.100.0) - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - react-dom - supports-color @@ -3256,7 +3248,7 @@ packages: - supports-color dev: false - /@sanity/ui@1.7.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11): + /@sanity/ui@1.7.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8): resolution: {integrity: sha512-N9zICg3NbgyfzM/cboqTj2Ik0I+T49LFADQzLtOCqQCT/RypbBE1sB2MrD+LWaiB6lfzqM1rns4v4yD2IlOvDg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -3274,10 +3266,10 @@ packages: react-dom: 18.2.0(react@18.2.0) react-is: 18.2.0 react-refractor: 2.1.7(react@18.2.0) - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) dev: false - /@sanity/ui@2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11): + /@sanity/ui@2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8): resolution: {integrity: sha512-y+vRMc74DnH2FH8BBqkjiDu5eGfy1CYKRzkKRepftKFDsUoJIdQeUPl3ULq+paeN4FqKJRzKT1j4++o8HwhmmQ==} engines: {node: '>=14.0.0'} peerDependencies: @@ -3295,7 +3287,7 @@ packages: react-dom: 18.2.0(react@18.2.0) react-is: 18.2.0 react-refractor: 2.1.7(react@18.2.0) - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) dev: false /@sanity/util@3.25.0: @@ -3316,7 +3308,7 @@ packages: uuid: 8.3.2 dev: false - /@sanity/vision@3.25.0(@babel/runtime@7.23.8)(@codemirror/lint@6.4.0)(@codemirror/state@6.2.1)(@codemirror/theme-one-dark@6.1.2)(@lezer/common@1.0.4)(codemirror@6.0.1)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11): + /@sanity/vision@3.25.0(@babel/runtime@7.23.8)(@codemirror/lint@6.4.0)(@codemirror/state@6.2.1)(@codemirror/theme-one-dark@6.1.2)(@lezer/common@1.0.4)(codemirror@6.0.1)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8): resolution: {integrity: sha512-x4sYW3hGQ+WD91MZytEGsWQadfuQWgEawo1jGEjndfbpSdCF+T0KSCN3AFWznd0bpYoAsq6fTZ9rIgMzuoEthg==} peerDependencies: react: ^18 @@ -3334,14 +3326,14 @@ packages: '@rexxars/react-split-pane': 0.1.93(react-dom@18.2.0)(react@18.2.0) '@sanity/color': 3.0.0 '@sanity/icons': 2.8.0(react@18.2.0) - '@sanity/ui': 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) + '@sanity/ui': 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) '@uiw/react-codemirror': 4.21.10(@babel/runtime@7.23.8)(@codemirror/autocomplete@6.9.0)(@codemirror/language@6.9.0)(@codemirror/lint@6.4.0)(@codemirror/search@6.5.1)(@codemirror/state@6.2.1)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.16.0)(codemirror@6.0.1)(react-dom@18.2.0)(react@18.2.0) hashlru: 2.3.0 is-hotkey: 0.1.8 json5: 2.2.3 lodash: 4.17.21 react: 18.2.0 - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - '@babel/runtime' - '@codemirror/lint' @@ -3453,6 +3445,7 @@ packages: dependencies: '@types/react': 18.2.21 hoist-non-react-statics: 3.3.2 + dev: false /@types/is-hotkey@0.1.10: resolution: {integrity: sha512-RvC8KMw5BCac1NvRRyaHgMMEtBaZ6wh0pyPTBu7izn4Sj/AX9Y4aXU5c7rX8PnM/knsuUpC1IeoBkANtxBypsQ==} @@ -3564,6 +3557,11 @@ packages: '@types/hoist-non-react-statics': 3.3.1 '@types/react': 18.2.21 csstype: 3.1.2 + dev: false + + /@types/stylis@4.2.0: + resolution: {integrity: sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==} + dev: false /@types/unist@2.0.7: resolution: {integrity: sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==} @@ -3604,7 +3602,7 @@ packages: '@typescript-eslint/type-utils': 6.4.1(eslint@8.47.0)(typescript@5.2.2) '@typescript-eslint/utils': 6.4.1(eslint@8.47.0)(typescript@5.2.2) '@typescript-eslint/visitor-keys': 6.4.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.47.0 graphemer: 1.4.0 ignore: 5.2.4 @@ -3630,7 +3628,7 @@ packages: '@typescript-eslint/types': 6.4.1 '@typescript-eslint/typescript-estree': 6.4.1(typescript@5.2.2) '@typescript-eslint/visitor-keys': 6.4.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.47.0 typescript: 5.2.2 transitivePeerDependencies: @@ -3657,7 +3655,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 6.4.1(typescript@5.2.2) '@typescript-eslint/utils': 6.4.1(eslint@8.47.0)(typescript@5.2.2) - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.47.0 ts-api-utils: 1.0.2(typescript@5.2.2) typescript: 5.2.2 @@ -3681,7 +3679,7 @@ packages: dependencies: '@typescript-eslint/types': 6.4.1 '@typescript-eslint/visitor-keys': 6.4.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 @@ -3807,7 +3805,7 @@ packages: resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} engines: {node: '>= 14'} dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: false @@ -4102,21 +4100,6 @@ packages: - supports-color dev: true - /babel-plugin-styled-components@2.1.4(@babel/core@7.23.7)(styled-components@5.3.11): - resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} - peerDependencies: - styled-components: '>= 2' - dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.7) - lodash: 4.17.21 - picomatch: 2.3.1 - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) - transitivePeerDependencies: - - '@babel/core' - dev: false - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.7): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: @@ -4638,7 +4621,7 @@ packages: dependencies: ms: 2.1.3 - /debug@4.3.4(supports-color@5.5.0): + /debug@4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} peerDependencies: @@ -4648,7 +4631,6 @@ packages: optional: true dependencies: ms: 2.1.2 - supports-color: 5.5.0 /decimal.js@10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} @@ -4952,7 +4934,7 @@ packages: peerDependencies: esbuild: '>=0.12 <1' dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 esbuild: 0.19.11 transitivePeerDependencies: - supports-color @@ -5087,7 +5069,7 @@ packages: eslint: '*' eslint-plugin-import: '*' dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 enhanced-resolve: 5.15.0 eslint: 8.47.0 eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.47.0) @@ -5276,7 +5258,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -5537,7 +5519,7 @@ packages: debug: optional: true dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 dev: false /for-each@0.3.3: @@ -5648,7 +5630,7 @@ packages: resolution: {integrity: sha512-hOoAwSfJXy86QJPEsZFDtBsFBagyTAlYwLJkKZJN5q7ppXRQjq0Wies4d14icDSpVs7QVm4Wtt0XQzjxXlUdgg==} engines: {node: '>=14.0.0'} dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 decompress-response: 7.0.0 follow-redirects: 1.15.5(debug@4.3.4) into-stream: 6.0.0 @@ -5955,6 +5937,7 @@ packages: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} dependencies: react-is: 16.13.1 + dev: false /hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} @@ -5982,7 +5965,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: false @@ -5992,7 +5975,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: false @@ -6417,7 +6400,7 @@ packages: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} engines: {node: '>=10'} dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 istanbul-lib-coverage: 3.2.0 source-map: 0.6.1 transitivePeerDependencies: @@ -7342,7 +7325,7 @@ packages: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true - /next-sanity@5.0.0(@sanity/client@6.11.1)(@sanity/icons@2.8.0)(@sanity/types@3.25.0)(@sanity/ui@1.7.11)(@types/styled-components@5.1.26)(next@14.0.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11): + /next-sanity@5.0.0(@sanity/client@6.11.1)(@sanity/icons@2.8.0)(@sanity/types@3.25.0)(@sanity/ui@1.7.11)(@types/styled-components@5.1.26)(next@14.0.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8): resolution: {integrity: sha512-Ll6ctY0mIZKiT15u/gkgrCphbJmLxvKohWjarz4xDcbHm7vx28vYf4zfE40SY201DvhsdCZgL4G/AD/3dWJXNQ==} engines: {node: '>=16.14'} peerDependencies: @@ -7360,19 +7343,19 @@ packages: '@sanity/icons': 2.8.0(react@18.2.0) '@sanity/preview-kit': 2.2.1(@sanity/client@6.11.1)(react@18.2.0) '@sanity/types': 3.25.0 - '@sanity/ui': 1.7.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) + '@sanity/ui': 1.7.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) '@sanity/webhook': 2.0.0 '@types/styled-components': 5.1.26 groq: 3.15.1 next: 14.0.0(@babel/core@7.23.7)(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 - sanity: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + sanity: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - supports-color dev: false - /next-sanity@5.0.0(@sanity/client@6.11.1)(@sanity/icons@2.8.0)(@sanity/types@3.25.0)(@sanity/ui@2.0.0)(@types/styled-components@5.1.26)(next@14.0.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11): + /next-sanity@5.0.0(@sanity/client@6.11.1)(@sanity/icons@2.8.0)(@sanity/types@3.25.0)(@sanity/ui@2.0.0)(@types/styled-components@5.1.26)(next@14.0.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8): resolution: {integrity: sha512-Ll6ctY0mIZKiT15u/gkgrCphbJmLxvKohWjarz4xDcbHm7vx28vYf4zfE40SY201DvhsdCZgL4G/AD/3dWJXNQ==} engines: {node: '>=16.14'} peerDependencies: @@ -7390,14 +7373,14 @@ packages: '@sanity/icons': 2.8.0(react@18.2.0) '@sanity/preview-kit': 2.2.1(@sanity/client@6.11.1)(react@18.2.0) '@sanity/types': 3.25.0 - '@sanity/ui': 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) + '@sanity/ui': 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) '@sanity/webhook': 2.0.0 '@types/styled-components': 5.1.26 groq: 3.15.1 next: 14.0.0(@babel/core@7.23.7)(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 - sanity: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + sanity: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - supports-color dev: false @@ -8382,7 +8365,7 @@ packages: '@sanity/diff-match-patch': 3.1.1 dev: false - /sanity-plugin-asset-source-unsplash@1.1.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11): + /sanity-plugin-asset-source-unsplash@1.1.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8): resolution: {integrity: sha512-gxTDLF1K2sW5CVKEoFXnrvmMZiNBalTFOe0v1G5a0y1HTy3vtOjZw4F9/dOBB0DW1gNvrYWLBPTqbwBBTClU5A==} engines: {node: '>=14'} peerDependencies: @@ -8391,19 +8374,19 @@ packages: styled-components: ^5.2 dependencies: '@sanity/incompatible-plugin': 1.0.4(react-dom@18.2.0)(react@18.2.0) - '@sanity/ui': 1.7.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) + '@sanity/ui': 1.7.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) react: 18.2.0 react-infinite-scroll-component: 6.1.0(react@18.2.0) react-photo-album: 2.2.2(react@18.2.0) rxjs: 7.8.1 - sanity: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + sanity: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - react-dom - react-is dev: false - /sanity-plugin-mux-input@2.2.1(@types/react@18.2.21)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11): + /sanity-plugin-mux-input@2.2.1(@types/react@18.2.21)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8): resolution: {integrity: sha512-9jD/bDuAILl4XMB4JaErrxEccj2bz8b3nowNy4ZkyM9xhaBBkPtqqOfuaODVIyKmgssgUMCwgnPIQxQ4t+Y1OA==} engines: {node: '>=14'} peerDependencies: @@ -8416,7 +8399,7 @@ packages: '@mux/upchunk': 3.2.0 '@sanity/icons': 2.8.0(react@18.2.0) '@sanity/incompatible-plugin': 1.0.4(react-dom@18.2.0)(react@18.2.0) - '@sanity/ui': 1.7.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) + '@sanity/ui': 1.7.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) '@sanity/uuid': 3.0.2 jsonwebtoken-esm: 1.0.5 lodash: 4.17.21 @@ -8424,9 +8407,9 @@ packages: react-is: 18.2.0 react-rx: 2.1.3(react@18.2.0)(rxjs@7.8.1) rxjs: 7.8.1 - sanity: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) + sanity: 3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) scroll-into-view-if-needed: 3.1.0 - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) suspend-react: 0.1.3(react@18.2.0) swr: 2.2.1(react@18.2.0) type-fest: 4.2.0 @@ -8437,7 +8420,7 @@ packages: - react-dom dev: false - /sanity-plugin-mux-input@2.2.1(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@5.3.11): + /sanity-plugin-mux-input@2.2.1(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(sanity@3.25.0)(styled-components@6.1.8): resolution: {integrity: sha512-9jD/bDuAILl4XMB4JaErrxEccj2bz8b3nowNy4ZkyM9xhaBBkPtqqOfuaODVIyKmgssgUMCwgnPIQxQ4t+Y1OA==} engines: {node: '>=14'} peerDependencies: @@ -8450,7 +8433,7 @@ packages: '@mux/upchunk': 3.2.0 '@sanity/icons': 2.8.0(react@18.2.0) '@sanity/incompatible-plugin': 1.0.4(react-dom@18.2.0)(react@18.2.0) - '@sanity/ui': 1.7.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) + '@sanity/ui': 1.7.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) '@sanity/uuid': 3.0.2 jsonwebtoken-esm: 1.0.5 lodash: 4.17.21 @@ -8458,9 +8441,9 @@ packages: react-is: 18.2.0 react-rx: 2.1.3(react@18.2.0)(rxjs@7.8.1) rxjs: 7.8.1 - sanity: 3.25.0(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11) + sanity: 3.25.0(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8) scroll-into-view-if-needed: 3.1.0 - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) suspend-react: 0.1.3(react@18.2.0) swr: 2.2.1(react@18.2.0) type-fest: 4.2.0 @@ -8471,7 +8454,7 @@ packages: - react-dom dev: false - /sanity@3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11): + /sanity@3.25.0(@types/node@18.17.11)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8): resolution: {integrity: sha512-+WL2MDP+SzfQHn2PADFjemz41SdztKWpmxim8Pg1nDJM381gxCGxOs2rZjEIYh6bNhP1rTWgyimng2LPLdaHng==} engines: {node: '>=18'} hasBin: true @@ -8503,12 +8486,12 @@ packages: '@sanity/import': 3.25.0 '@sanity/logos': 2.1.2(@sanity/color@3.0.0)(react@18.2.0) '@sanity/mutator': 3.25.0 - '@sanity/portable-text-editor': 3.25.0(react-dom@18.2.0)(react@18.2.0)(rxjs@7.8.1)(styled-components@5.3.11) + '@sanity/portable-text-editor': 3.25.0(react-dom@18.2.0)(react@18.2.0)(rxjs@7.8.1)(styled-components@6.1.8) '@sanity/presentation': 1.6.0(@sanity/client@6.11.1)(react-dom@18.2.0)(react@18.2.0) '@sanity/schema': 3.25.0 '@sanity/telemetry': 0.7.6 '@sanity/types': 3.25.0 - '@sanity/ui': 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) + '@sanity/ui': 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) '@sanity/util': 3.25.0 '@sanity/uuid': 3.0.2 '@tanstack/react-virtual': 3.0.0-beta.54(react@18.2.0) @@ -8583,7 +8566,7 @@ packages: semver: 7.5.4 shallow-equals: 1.0.0 speakingurl: 14.0.1 - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) tar-fs: 2.1.1 use-device-pixel-ratio: 1.1.2(react@18.2.0) use-hot-module-reload: 1.0.3(react@18.2.0) @@ -8606,7 +8589,7 @@ packages: - utf-8-validate dev: false - /sanity@3.25.0(react-dom@18.2.0)(react@18.2.0)(styled-components@5.3.11): + /sanity@3.25.0(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8): resolution: {integrity: sha512-+WL2MDP+SzfQHn2PADFjemz41SdztKWpmxim8Pg1nDJM381gxCGxOs2rZjEIYh6bNhP1rTWgyimng2LPLdaHng==} engines: {node: '>=18'} hasBin: true @@ -8638,12 +8621,12 @@ packages: '@sanity/import': 3.25.0 '@sanity/logos': 2.1.2(@sanity/color@3.0.0)(react@18.2.0) '@sanity/mutator': 3.25.0 - '@sanity/portable-text-editor': 3.25.0(react-dom@18.2.0)(react@18.2.0)(rxjs@7.8.1)(styled-components@5.3.11) + '@sanity/portable-text-editor': 3.25.0(react-dom@18.2.0)(react@18.2.0)(rxjs@7.8.1)(styled-components@6.1.8) '@sanity/presentation': 1.6.0(@sanity/client@6.11.1)(react-dom@18.2.0)(react@18.2.0) '@sanity/schema': 3.25.0 '@sanity/telemetry': 0.7.6 '@sanity/types': 3.25.0 - '@sanity/ui': 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@5.3.11) + '@sanity/ui': 2.0.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)(styled-components@6.1.8) '@sanity/util': 3.25.0 '@sanity/uuid': 3.0.2 '@tanstack/react-virtual': 3.0.0-beta.54(react@18.2.0) @@ -8718,7 +8701,7 @@ packages: semver: 7.5.4 shallow-equals: 1.0.0 speakingurl: 14.0.1 - styled-components: 5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0) tar-fs: 2.1.1 use-device-pixel-ratio: 1.1.2(react@18.2.0) use-hot-module-reload: 1.0.3(react@18.2.0) @@ -9105,29 +9088,24 @@ packages: resolution: {integrity: sha512-Ca5ib8HrFn+f+0n4N4ScTIA9iTOQ7MaGS1ylHcoVqW9J7w2w8PzN6g9gKmTYgGEBH8e120+RCmhpje6jC5uGWA==} dev: false - /styled-components@5.3.11(@babel/core@7.23.7)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==} - engines: {node: '>=10'} + /styled-components@6.1.8(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-PQ6Dn+QxlWyEGCKDS71NGsXoVLKfE1c3vApkvDYS5KAK+V8fNWGhbSUEo9Gg2iaID2tjLXegEW3bZDUGpofRWw==} + engines: {node: '>= 16'} peerDependencies: react: '>= 16.8.0' react-dom: '>= 16.8.0' - react-is: '>= 16.8.0' dependencies: - '@babel/helper-module-imports': 7.22.15 - '@babel/traverse': 7.23.7(supports-color@5.5.0) '@emotion/is-prop-valid': 1.2.1 - '@emotion/stylis': 0.8.5 - '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.4(@babel/core@7.23.7)(styled-components@5.3.11) + '@emotion/unitless': 0.8.0 + '@types/stylis': 4.2.0 css-to-react-native: 3.2.0 - hoist-non-react-statics: 3.3.2 + csstype: 3.1.2 + postcss: 8.4.31 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-is: 18.2.0 shallowequal: 1.1.0 - supports-color: 5.5.0 - transitivePeerDependencies: - - '@babel/core' + stylis: 4.3.1 + tslib: 2.5.0 dev: false /styled-jsx@5.1.1(@babel/core@7.23.7)(react@18.2.0): @@ -9148,6 +9126,10 @@ packages: react: 18.2.0 dev: false + /stylis@4.3.1: + resolution: {integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==} + dev: false + /supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} @@ -9329,6 +9311,10 @@ packages: strip-bom: 3.0.0 dev: true + /tslib@2.5.0: + resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} + dev: false + /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}