From 8affa58172f3d7e1f1a8d95ed069c6c299024b63 Mon Sep 17 00:00:00 2001 From: simirall <37952374+sym-dev@users.noreply.github.com> Date: Mon, 5 Aug 2024 20:57:45 +0900 Subject: [PATCH 1/6] switch timeline and fetch notes --- src/apis/meta/meta.tsx | 9 ++++ src/apis/notes/timeline.tsx | 15 +++++- src/apis/websocket/timeline.tsx | 8 +-- src/pages/-components/TimeLineTab.tsx | 72 +++++++++++++++++++++++++++ src/pages/index.lazy.tsx | 5 ++ src/store/currentTimeline.ts | 35 +++++++++++++ src/utils/useWatchCurrentTimeline.tsx | 21 ++++++++ 7 files changed, 157 insertions(+), 8 deletions(-) create mode 100644 src/apis/meta/meta.tsx create mode 100644 src/pages/-components/TimeLineTab.tsx create mode 100644 src/store/currentTimeline.ts create mode 100644 src/utils/useWatchCurrentTimeline.tsx diff --git a/src/apis/meta/meta.tsx b/src/apis/meta/meta.tsx new file mode 100644 index 0000000..b7e0e29 --- /dev/null +++ b/src/apis/meta/meta.tsx @@ -0,0 +1,9 @@ +import useSWR from "swr"; + +import type { MetaDetailed } from "misskey-js/entities.js"; + +export const useMeta = () => { + const { data } = useSWR(["/meta", { detail: true }]); + + return { data }; +}; diff --git a/src/apis/notes/timeline.tsx b/src/apis/notes/timeline.tsx index 2fda98a..c6652b7 100644 --- a/src/apis/notes/timeline.tsx +++ b/src/apis/notes/timeline.tsx @@ -1,12 +1,25 @@ import type { Note } from "misskey-js/entities.js"; +import { useCurrentTimelineStore } from "@/store/currentTimeline"; import { useTimeLineStore } from "@/store/timeline"; import { fetcher } from "@/utils/fetcher"; +const apiPath = { + homeTimeline: "/notes/timeline", + localTimeline: "/notes/local-timeline", + hybridTimeline: "/notes/hybrid-timeline", + globalTimeline: "/notes/global-timeline", +}; + export const useGetTimeLine = () => { + const { currentTimeline } = useCurrentTimelineStore(); const { addNotesToBottom } = useTimeLineStore(); + const getTimeLine = async (arg?: { untilId?: string }) => { - const notes = await fetcher>(["/notes/timeline", arg]); + const notes = await fetcher>([ + apiPath[currentTimeline], + arg, + ]); addNotesToBottom(notes); }; diff --git a/src/apis/websocket/timeline.tsx b/src/apis/websocket/timeline.tsx index 7addc11..71231eb 100644 --- a/src/apis/websocket/timeline.tsx +++ b/src/apis/websocket/timeline.tsx @@ -1,8 +1,6 @@ import { useEffect, useRef } from "react"; import ReconnectingWebSocket from "reconnecting-websocket"; -import { useGetTimeLine } from "../notes/timeline"; - import type { Note } from "misskey-js/entities.js"; import { useLoginStore } from "@/store/login"; @@ -30,7 +28,6 @@ const connectHomeTimeLineObject = JSON.stringify({ export const useTimeLine = () => { const { instance, token } = useLoginStore(); const { addNoteToTop } = useTimeLineStore(); - const { getTimeLine } = useGetTimeLine(); const socketRef = useRef(); @@ -42,9 +39,6 @@ export const useTimeLine = () => { socketRef.current = socket; socket.onopen = () => { - if (useTimeLineStore.getState().notes.length === 0) { - getTimeLine(); - } socket.send(connectHomeTimeLineObject); }; @@ -53,5 +47,5 @@ export const useTimeLine = () => { addNoteToTop(response.body.body); }; } - }, [instance, token, addNoteToTop, getTimeLine]); + }, [instance, token, addNoteToTop]); }; diff --git a/src/pages/-components/TimeLineTab.tsx b/src/pages/-components/TimeLineTab.tsx new file mode 100644 index 0000000..3ed4f93 --- /dev/null +++ b/src/pages/-components/TimeLineTab.tsx @@ -0,0 +1,72 @@ +import { Campfire, Lamp, Meteor, Park } from "@phosphor-icons/react"; +import { Button, ButtonGroup } from "@yamada-ui/react"; +import { useMemo } from "react"; + +import { useMeta } from "@/apis/meta/meta"; +import { + useCurrentTimelineStore, + type Timelines, +} from "@/store/currentTimeline"; + +const optionalTimelines = ( + localTimelineEnabled?: boolean, + globalTimeLineEnabled?: boolean, +) => { + const t: Array = []; + if (localTimelineEnabled) { + t.push("localTimeline", "hybridTimeline"); + } + if (globalTimeLineEnabled) { + t.push("globalTimeline"); + } + return t; +}; + +const timelineLabel = { + homeTimeline: "ホーム", + localTimeline: "ローカル", + hybridTimeline: "ソーシャル", + globalTimeline: "グローバル", +}; + +const timelineIcon = { + homeTimeline: , + localTimeline: , + hybridTimeline: , + globalTimeline: , +}; + +export const TimeLineTab = () => { + const { currentTimeline, setCurrentTimeline } = useCurrentTimelineStore(); + const features = useMeta().data?.features; + const timelines = useMemo>( + () => [ + "homeTimeline", + ...optionalTimelines(features?.localTimeline, features?.globalTimeline), + ], + [features], + ); + + if (!features) { + return + ))} + + ); +}; diff --git a/src/pages/index.lazy.tsx b/src/pages/index.lazy.tsx index 7157b1a..90777f4 100644 --- a/src/pages/index.lazy.tsx +++ b/src/pages/index.lazy.tsx @@ -8,8 +8,11 @@ import { VStack, } from "@yamada-ui/react"; +import { TimeLineTab } from "./-components/TimeLineTab"; + import { useTimeLine } from "@/apis/websocket/timeline"; import { useTimeLineStore } from "@/store/timeline"; +import { useWatchCurrentTimeline } from "@/utils/useWatchCurrentTimeline"; export const Route = createLazyFileRoute("/")({ component: Index, @@ -17,10 +20,12 @@ export const Route = createLazyFileRoute("/")({ function Index() { useTimeLine(); + useWatchCurrentTimeline(); const { notes } = useTimeLineStore(); return ( + {notes.map((n) => ( diff --git a/src/store/currentTimeline.ts b/src/store/currentTimeline.ts new file mode 100644 index 0000000..c245e5c --- /dev/null +++ b/src/store/currentTimeline.ts @@ -0,0 +1,35 @@ +import { create } from "zustand"; +import { persist } from "zustand/middleware"; + +import { useTimeLineStore } from "./timeline"; + +export type Timelines = + | "homeTimeline" + | "localTimeline" + | "hybridTimeline" + | "globalTimeline"; + +export type CurrentTimelineState = { + currentTimeline: Timelines; +}; + +type CurrentTimelineActions = { + setCurrentTimeline: (payload: Timelines) => void; +}; + +export const useCurrentTimelineStore = create< + CurrentTimelineState & CurrentTimelineActions +>()( + persist( + (set) => ({ + currentTimeline: "homeTimeline", + setCurrentTimeline: (payload) => { + set(() => ({ + currentTimeline: payload, + })); + useTimeLineStore.setState({ notes: [] }); + }, + }), + { name: "currentTimeline" }, + ), +); diff --git a/src/utils/useWatchCurrentTimeline.tsx b/src/utils/useWatchCurrentTimeline.tsx new file mode 100644 index 0000000..dd84f36 --- /dev/null +++ b/src/utils/useWatchCurrentTimeline.tsx @@ -0,0 +1,21 @@ +import { useEffect, useRef } from "react"; + +import { useGetTimeLine } from "@/apis/notes/timeline"; +import { useCurrentTimelineStore } from "@/store/currentTimeline"; +import { useTimeLineStore } from "@/store/timeline"; + +export const useWatchCurrentTimeline = () => { + const { currentTimeline } = useCurrentTimelineStore(); + const { notes } = useTimeLineStore(); + const { getTimeLine } = useGetTimeLine(); + const isFetchingNote = useRef(false); + + useEffect(() => { + if (!isFetchingNote.current && notes.length === 0) { + isFetchingNote.current = true; + getTimeLine().then(() => { + isFetchingNote.current = false; + }); + } + }, [currentTimeline, notes, getTimeLine]); +}; From ce3af26751dfa06748da52eff13abd028ec1f34f Mon Sep 17 00:00:00 2001 From: simirall <37952374+sym-dev@users.noreply.github.com> Date: Mon, 5 Aug 2024 23:02:10 +0900 Subject: [PATCH 2/6] change stream when timeline changes --- src/apis/websocket/timeline.tsx | 63 +++++++++++++++++++++++++-------- 1 file changed, 49 insertions(+), 14 deletions(-) diff --git a/src/apis/websocket/timeline.tsx b/src/apis/websocket/timeline.tsx index 71231eb..98c7bc9 100644 --- a/src/apis/websocket/timeline.tsx +++ b/src/apis/websocket/timeline.tsx @@ -1,34 +1,43 @@ import { useEffect, useRef } from "react"; import ReconnectingWebSocket from "reconnecting-websocket"; +import type { Timelines } from "@/store/currentTimeline"; import type { Note } from "misskey-js/entities.js"; +import { useCurrentTimelineStore } from "@/store/currentTimeline"; import { useLoginStore } from "@/store/login"; import { useTimeLineStore } from "@/store/timeline"; -const id = "homeTimeLine"; - -type ChannelNote = { +type ChannelNote = { type: "channel"; body: { - id: typeof id; + id: T; type: "note"; body: Note; }; }; -const connectHomeTimeLineObject = JSON.stringify({ - type: "connect", - body: { - channel: "homeTimeline", - id: id, - }, -}); +const streamTimelineObject = ({ + type, + channel, +}: { + type: "connect" | "disconnect"; + channel: Timelines; +}) => + JSON.stringify({ + type: type, + body: { + channel: channel, + id: channel, + }, + }); export const useTimeLine = () => { const { instance, token } = useLoginStore(); const { addNoteToTop } = useTimeLineStore(); + const { currentTimeline } = useCurrentTimelineStore(); + const prevTimeline = useRef(currentTimeline); const socketRef = useRef(); useEffect(() => { @@ -39,13 +48,39 @@ export const useTimeLine = () => { socketRef.current = socket; socket.onopen = () => { - socket.send(connectHomeTimeLineObject); + socket.send( + streamTimelineObject({ + type: "connect", + channel: currentTimeline, + }), + ); }; socket.onmessage = (event: MessageEvent) => { - const response: ChannelNote = JSON.parse(event.data); + const response: ChannelNote = JSON.parse( + event.data, + ); addNoteToTop(response.body.body); }; } - }, [instance, token, addNoteToTop]); + }, [instance, token, addNoteToTop, currentTimeline]); + + useEffect(() => { + if (socketRef.current?.readyState === WebSocket.OPEN) { + console.log(currentTimeline, prevTimeline.current); + socketRef.current.send( + streamTimelineObject({ + type: "disconnect", + channel: prevTimeline.current, + }), + ); + socketRef.current.send( + streamTimelineObject({ + type: "connect", + channel: currentTimeline, + }), + ); + prevTimeline.current = currentTimeline; + } + }, [currentTimeline]); }; From d0bcb62c962c604c4539ab543c8f60e35e0b533f Mon Sep 17 00:00:00 2001 From: simirall <37952374+sym-dev@users.noreply.github.com> Date: Mon, 5 Aug 2024 23:24:58 +0900 Subject: [PATCH 3/6] fix timing --- src/apis/notes/timeline.tsx | 19 +++++++++----- src/apis/websocket/timeline.tsx | 38 ++++++++++++++++----------- src/pages/index.lazy.tsx | 2 -- src/store/currentTimeline.ts | 3 --- src/store/timeline.ts | 6 +++++ src/utils/useWatchCurrentTimeline.tsx | 21 --------------- 6 files changed, 41 insertions(+), 48 deletions(-) delete mode 100644 src/utils/useWatchCurrentTimeline.tsx diff --git a/src/apis/notes/timeline.tsx b/src/apis/notes/timeline.tsx index c6652b7..9ca5300 100644 --- a/src/apis/notes/timeline.tsx +++ b/src/apis/notes/timeline.tsx @@ -1,3 +1,5 @@ +import { useCallback } from "react"; + import type { Note } from "misskey-js/entities.js"; import { useCurrentTimelineStore } from "@/store/currentTimeline"; @@ -15,13 +17,16 @@ export const useGetTimeLine = () => { const { currentTimeline } = useCurrentTimelineStore(); const { addNotesToBottom } = useTimeLineStore(); - const getTimeLine = async (arg?: { untilId?: string }) => { - const notes = await fetcher>([ - apiPath[currentTimeline], - arg, - ]); - addNotesToBottom(notes); - }; + const getTimeLine = useCallback( + async (arg?: { untilId?: string }) => { + const notes = await fetcher>([ + apiPath[currentTimeline], + arg, + ]); + addNotesToBottom(notes); + }, + [addNotesToBottom, currentTimeline], + ); return { getTimeLine }; }; diff --git a/src/apis/websocket/timeline.tsx b/src/apis/websocket/timeline.tsx index 98c7bc9..01564a9 100644 --- a/src/apis/websocket/timeline.tsx +++ b/src/apis/websocket/timeline.tsx @@ -1,6 +1,8 @@ import { useEffect, useRef } from "react"; import ReconnectingWebSocket from "reconnecting-websocket"; +import { useGetTimeLine } from "../notes/timeline"; + import type { Timelines } from "@/store/currentTimeline"; import type { Note } from "misskey-js/entities.js"; @@ -36,6 +38,8 @@ export const useTimeLine = () => { const { instance, token } = useLoginStore(); const { addNoteToTop } = useTimeLineStore(); const { currentTimeline } = useCurrentTimelineStore(); + const { clear } = useTimeLineStore(); + const { getTimeLine } = useGetTimeLine(); const prevTimeline = useRef(currentTimeline); const socketRef = useRef(); @@ -48,12 +52,14 @@ export const useTimeLine = () => { socketRef.current = socket; socket.onopen = () => { - socket.send( - streamTimelineObject({ - type: "connect", - channel: currentTimeline, - }), - ); + getTimeLine().then(() => { + socket.send( + streamTimelineObject({ + type: "connect", + channel: currentTimeline, + }), + ); + }); }; socket.onmessage = (event: MessageEvent) => { @@ -63,24 +69,26 @@ export const useTimeLine = () => { addNoteToTop(response.body.body); }; } - }, [instance, token, addNoteToTop, currentTimeline]); + }, [instance, token, addNoteToTop, currentTimeline, getTimeLine]); useEffect(() => { if (socketRef.current?.readyState === WebSocket.OPEN) { - console.log(currentTimeline, prevTimeline.current); socketRef.current.send( streamTimelineObject({ type: "disconnect", channel: prevTimeline.current, }), ); - socketRef.current.send( - streamTimelineObject({ - type: "connect", - channel: currentTimeline, - }), - ); + clear(); prevTimeline.current = currentTimeline; + getTimeLine().then(() => { + socketRef.current?.send( + streamTimelineObject({ + type: "connect", + channel: currentTimeline, + }), + ); + }); } - }, [currentTimeline]); + }, [currentTimeline, getTimeLine, clear]); }; diff --git a/src/pages/index.lazy.tsx b/src/pages/index.lazy.tsx index 90777f4..076ea14 100644 --- a/src/pages/index.lazy.tsx +++ b/src/pages/index.lazy.tsx @@ -12,7 +12,6 @@ import { TimeLineTab } from "./-components/TimeLineTab"; import { useTimeLine } from "@/apis/websocket/timeline"; import { useTimeLineStore } from "@/store/timeline"; -import { useWatchCurrentTimeline } from "@/utils/useWatchCurrentTimeline"; export const Route = createLazyFileRoute("/")({ component: Index, @@ -20,7 +19,6 @@ export const Route = createLazyFileRoute("/")({ function Index() { useTimeLine(); - useWatchCurrentTimeline(); const { notes } = useTimeLineStore(); return ( diff --git a/src/store/currentTimeline.ts b/src/store/currentTimeline.ts index c245e5c..27ad5e4 100644 --- a/src/store/currentTimeline.ts +++ b/src/store/currentTimeline.ts @@ -1,8 +1,6 @@ import { create } from "zustand"; import { persist } from "zustand/middleware"; -import { useTimeLineStore } from "./timeline"; - export type Timelines = | "homeTimeline" | "localTimeline" @@ -27,7 +25,6 @@ export const useCurrentTimelineStore = create< set(() => ({ currentTimeline: payload, })); - useTimeLineStore.setState({ notes: [] }); }, }), { name: "currentTimeline" }, diff --git a/src/store/timeline.ts b/src/store/timeline.ts index 12d1c69..f2372ae 100644 --- a/src/store/timeline.ts +++ b/src/store/timeline.ts @@ -10,6 +10,7 @@ type TimeLineActions = { addNoteToTop: (payload: Note) => void; addNotesToTop: (payload: ReadonlyArray) => void; addNotesToBottom: (payload: ReadonlyArray) => void; + clear: () => void; }; export const useTimeLineStore = create((set) => ({ @@ -29,4 +30,9 @@ export const useTimeLineStore = create((set) => ({ notes: [...state.notes, ...payload], })); }, + clear: () => { + set(() => ({ + notes: [], + })); + }, })); diff --git a/src/utils/useWatchCurrentTimeline.tsx b/src/utils/useWatchCurrentTimeline.tsx deleted file mode 100644 index dd84f36..0000000 --- a/src/utils/useWatchCurrentTimeline.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { useEffect, useRef } from "react"; - -import { useGetTimeLine } from "@/apis/notes/timeline"; -import { useCurrentTimelineStore } from "@/store/currentTimeline"; -import { useTimeLineStore } from "@/store/timeline"; - -export const useWatchCurrentTimeline = () => { - const { currentTimeline } = useCurrentTimelineStore(); - const { notes } = useTimeLineStore(); - const { getTimeLine } = useGetTimeLine(); - const isFetchingNote = useRef(false); - - useEffect(() => { - if (!isFetchingNote.current && notes.length === 0) { - isFetchingNote.current = true; - getTimeLine().then(() => { - isFetchingNote.current = false; - }); - } - }, [currentTimeline, notes, getTimeLine]); -}; From 921ee3a9b3071689ed3fd28df0b4ce829df39c47 Mon Sep 17 00:00:00 2001 From: simirall <37952374+sym-dev@users.noreply.github.com> Date: Mon, 5 Aug 2024 23:27:52 +0900 Subject: [PATCH 4/6] fix spell --- src/apis/notes/timeline.tsx | 10 +++++----- src/apis/websocket/timeline.tsx | 20 +++++++++---------- .../{TimeLineTab.tsx => TimelineTab.tsx} | 6 +++--- src/pages/index.lazy.tsx | 12 +++++------ src/store/timeline.ts | 6 +++--- 5 files changed, 27 insertions(+), 27 deletions(-) rename src/pages/-components/{TimeLineTab.tsx => TimelineTab.tsx} (94%) diff --git a/src/apis/notes/timeline.tsx b/src/apis/notes/timeline.tsx index 9ca5300..dca22c7 100644 --- a/src/apis/notes/timeline.tsx +++ b/src/apis/notes/timeline.tsx @@ -3,7 +3,7 @@ import { useCallback } from "react"; import type { Note } from "misskey-js/entities.js"; import { useCurrentTimelineStore } from "@/store/currentTimeline"; -import { useTimeLineStore } from "@/store/timeline"; +import { useTimelineStore } from "@/store/timeline"; import { fetcher } from "@/utils/fetcher"; const apiPath = { @@ -13,11 +13,11 @@ const apiPath = { globalTimeline: "/notes/global-timeline", }; -export const useGetTimeLine = () => { +export const useGetTimeline = () => { const { currentTimeline } = useCurrentTimelineStore(); - const { addNotesToBottom } = useTimeLineStore(); + const { addNotesToBottom } = useTimelineStore(); - const getTimeLine = useCallback( + const getTimeline = useCallback( async (arg?: { untilId?: string }) => { const notes = await fetcher>([ apiPath[currentTimeline], @@ -28,5 +28,5 @@ export const useGetTimeLine = () => { [addNotesToBottom, currentTimeline], ); - return { getTimeLine }; + return { getTimeline }; }; diff --git a/src/apis/websocket/timeline.tsx b/src/apis/websocket/timeline.tsx index 01564a9..62602b2 100644 --- a/src/apis/websocket/timeline.tsx +++ b/src/apis/websocket/timeline.tsx @@ -1,14 +1,14 @@ import { useEffect, useRef } from "react"; import ReconnectingWebSocket from "reconnecting-websocket"; -import { useGetTimeLine } from "../notes/timeline"; +import { useGetTimeline } from "../notes/timeline"; import type { Timelines } from "@/store/currentTimeline"; import type { Note } from "misskey-js/entities.js"; import { useCurrentTimelineStore } from "@/store/currentTimeline"; import { useLoginStore } from "@/store/login"; -import { useTimeLineStore } from "@/store/timeline"; +import { useTimelineStore } from "@/store/timeline"; type ChannelNote = { type: "channel"; @@ -34,12 +34,12 @@ const streamTimelineObject = ({ }, }); -export const useTimeLine = () => { +export const useTimeline = () => { const { instance, token } = useLoginStore(); - const { addNoteToTop } = useTimeLineStore(); + const { addNoteToTop } = useTimelineStore(); const { currentTimeline } = useCurrentTimelineStore(); - const { clear } = useTimeLineStore(); - const { getTimeLine } = useGetTimeLine(); + const { clear } = useTimelineStore(); + const { getTimeline } = useGetTimeline(); const prevTimeline = useRef(currentTimeline); const socketRef = useRef(); @@ -52,7 +52,7 @@ export const useTimeLine = () => { socketRef.current = socket; socket.onopen = () => { - getTimeLine().then(() => { + getTimeline().then(() => { socket.send( streamTimelineObject({ type: "connect", @@ -69,7 +69,7 @@ export const useTimeLine = () => { addNoteToTop(response.body.body); }; } - }, [instance, token, addNoteToTop, currentTimeline, getTimeLine]); + }, [instance, token, addNoteToTop, currentTimeline, getTimeline]); useEffect(() => { if (socketRef.current?.readyState === WebSocket.OPEN) { @@ -81,7 +81,7 @@ export const useTimeLine = () => { ); clear(); prevTimeline.current = currentTimeline; - getTimeLine().then(() => { + getTimeline().then(() => { socketRef.current?.send( streamTimelineObject({ type: "connect", @@ -90,5 +90,5 @@ export const useTimeLine = () => { ); }); } - }, [currentTimeline, getTimeLine, clear]); + }, [currentTimeline, getTimeline, clear]); }; diff --git a/src/pages/-components/TimeLineTab.tsx b/src/pages/-components/TimelineTab.tsx similarity index 94% rename from src/pages/-components/TimeLineTab.tsx rename to src/pages/-components/TimelineTab.tsx index 3ed4f93..8e74e08 100644 --- a/src/pages/-components/TimeLineTab.tsx +++ b/src/pages/-components/TimelineTab.tsx @@ -10,13 +10,13 @@ import { const optionalTimelines = ( localTimelineEnabled?: boolean, - globalTimeLineEnabled?: boolean, + globalTimelineEnabled?: boolean, ) => { const t: Array = []; if (localTimelineEnabled) { t.push("localTimeline", "hybridTimeline"); } - if (globalTimeLineEnabled) { + if (globalTimelineEnabled) { t.push("globalTimeline"); } return t; @@ -36,7 +36,7 @@ const timelineIcon = { globalTimeline: , }; -export const TimeLineTab = () => { +export const TimelineTab = () => { const { currentTimeline, setCurrentTimeline } = useCurrentTimelineStore(); const features = useMeta().data?.features; const timelines = useMemo>( diff --git a/src/pages/index.lazy.tsx b/src/pages/index.lazy.tsx index 076ea14..48f5e5a 100644 --- a/src/pages/index.lazy.tsx +++ b/src/pages/index.lazy.tsx @@ -8,22 +8,22 @@ import { VStack, } from "@yamada-ui/react"; -import { TimeLineTab } from "./-components/TimeLineTab"; +import { TimelineTab } from "./-components/TimelineTab"; -import { useTimeLine } from "@/apis/websocket/timeline"; -import { useTimeLineStore } from "@/store/timeline"; +import { useTimeline } from "@/apis/websocket/timeline"; +import { useTimelineStore } from "@/store/timeline"; export const Route = createLazyFileRoute("/")({ component: Index, }); function Index() { - useTimeLine(); - const { notes } = useTimeLineStore(); + useTimeline(); + const { notes } = useTimelineStore(); return ( - + {notes.map((n) => ( diff --git a/src/store/timeline.ts b/src/store/timeline.ts index f2372ae..fa89c83 100644 --- a/src/store/timeline.ts +++ b/src/store/timeline.ts @@ -2,18 +2,18 @@ import { create } from "zustand"; import type { Note } from "misskey-js/entities.js"; -export type TimeLine = { +export type Timeline = { notes: Array; }; -type TimeLineActions = { +type TimelineActions = { addNoteToTop: (payload: Note) => void; addNotesToTop: (payload: ReadonlyArray) => void; addNotesToBottom: (payload: ReadonlyArray) => void; clear: () => void; }; -export const useTimeLineStore = create((set) => ({ +export const useTimelineStore = create((set) => ({ notes: [], addNoteToTop: (payload) => { set((state) => ({ From 627e414062402ce6d20ba47ba1119afe2b326951 Mon Sep 17 00:00:00 2001 From: Simirall <37952374+Simirall@users.noreply.github.com> Date: Tue, 17 Sep 2024 22:40:40 +0900 Subject: [PATCH 5/6] fixes --- biome.json | 2 +- package.json | 18 +- pnpm-lock.yaml | 1866 ++++++++++++++++++++++++------------------------ 3 files changed, 943 insertions(+), 943 deletions(-) diff --git a/biome.json b/biome.json index deba15e..e065f54 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", + "$schema": "https://biomejs.dev/schemas/1.9.1/schema.json", "files": { "ignore": ["./src/routeTree.gen.ts"], "ignoreUnknown": true diff --git a/package.json b/package.json index b96b531..dddc1f5 100644 --- a/package.json +++ b/package.json @@ -18,9 +18,9 @@ "dependencies": { "@hookform/resolvers": "^3.9.0", "@phosphor-icons/react": "^2.1.7", - "@tanstack/react-router": "^1.56.5", + "@tanstack/react-router": "^1.57.17", "@yamada-ui/carousel": "^1.0.37", - "@yamada-ui/react": "^1.5.0", + "@yamada-ui/react": "^1.5.1", "misskey-js": "^2024.8.0", "react": "^18.3.1", "react-dom": "^18.3.1", @@ -32,18 +32,18 @@ "zustand": "^4.5.5" }, "devDependencies": { - "@biomejs/biome": "1.8.3", - "@tanstack/router-cli": "^1.56.4", - "@tanstack/router-devtools": "^1.56.5", - "@tanstack/router-plugin": "^1.56.4", + "@biomejs/biome": "1.9.1", + "@tanstack/router-cli": "^1.57.15", + "@tanstack/router-devtools": "^1.57.17", + "@tanstack/router-plugin": "^1.57.15", "@types/node": "^20.16.5", - "@types/react": "^18.3.5", + "@types/react": "^18.3.7", "@types/react-dom": "^18.3.0", "@types/uuid": "^10.0.0", "@vitejs/plugin-react-swc": "^3.7.0", "@yamada-ui/cli": "^1.1.1", - "typescript": "^5.5.4", - "vite": "^5.4.3", + "typescript": "^5.6.2", + "vite": "^5.4.6", "vite-tsconfig-paths": "^4.3.2" }, "packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3322576..8203bc4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -15,14 +15,14 @@ importers: specifier: ^2.1.7 version: 2.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@tanstack/react-router': - specifier: ^1.56.5 - version: 1.56.5(@tanstack/router-generator@1.56.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^1.57.17 + version: 1.57.17(@tanstack/router-generator@1.57.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/carousel': specifier: ^1.0.37 - version: 1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/react': - specifier: ^1.5.0 - version: 1.5.0(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(framer-motion@11.5.4(@emotion/is-prop-valid@1.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^1.5.1 + version: 1.5.1(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(framer-motion@11.5.4(@emotion/is-prop-valid@1.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) misskey-js: specifier: ^2024.8.0 version: 2024.8.0 @@ -49,26 +49,26 @@ importers: version: 3.23.8 zustand: specifier: ^4.5.5 - version: 4.5.5(@types/react@18.3.5)(react@18.3.1) + version: 4.5.5(@types/react@18.3.7)(react@18.3.1) devDependencies: '@biomejs/biome': - specifier: 1.8.3 - version: 1.8.3 + specifier: 1.9.1 + version: 1.9.1 '@tanstack/router-cli': - specifier: ^1.56.4 - version: 1.56.4 + specifier: ^1.57.15 + version: 1.57.15 '@tanstack/router-devtools': - specifier: ^1.56.5 - version: 1.56.5(@tanstack/react-router@1.56.5(@tanstack/router-generator@1.56.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^1.57.17 + version: 1.57.17(@tanstack/react-router@1.57.17(@tanstack/router-generator@1.57.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@tanstack/router-plugin': - specifier: ^1.56.4 - version: 1.56.4(vite@5.4.3(@types/node@20.16.5))(webpack-sources@3.2.3) + specifier: ^1.57.15 + version: 1.57.15(vite@5.4.6(@types/node@20.16.5))(webpack-sources@3.2.3) '@types/node': specifier: ^20.16.5 version: 20.16.5 '@types/react': - specifier: ^18.3.5 - version: 18.3.5 + specifier: ^18.3.7 + version: 18.3.7 '@types/react-dom': specifier: ^18.3.0 version: 18.3.0 @@ -77,19 +77,19 @@ importers: version: 10.0.0 '@vitejs/plugin-react-swc': specifier: ^3.7.0 - version: 3.7.0(vite@5.4.3(@types/node@20.16.5)) + version: 3.7.0(vite@5.4.6(@types/node@20.16.5)) '@yamada-ui/cli': specifier: ^1.1.1 version: 1.1.1 typescript: - specifier: ^5.5.4 - version: 5.5.4 + specifier: ^5.6.2 + version: 5.6.2 vite: - specifier: ^5.4.3 - version: 5.4.3(@types/node@20.16.5) + specifier: ^5.4.6 + version: 5.4.6(@types/node@20.16.5) vite-tsconfig-paths: specifier: ^4.3.2 - version: 4.3.2(typescript@5.5.4)(vite@5.4.3(@types/node@20.16.5)) + version: 4.3.2(typescript@5.6.2)(vite@5.4.6(@types/node@20.16.5)) packages: @@ -191,8 +191,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-typescript@7.24.7': - resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==} + '@babel/plugin-syntax-typescript@7.25.4': + resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -229,55 +229,55 @@ packages: resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==} engines: {node: '>=6.9.0'} - '@biomejs/biome@1.8.3': - resolution: {integrity: sha512-/uUV3MV+vyAczO+vKrPdOW0Iaet7UnJMU4bNMinggGJTAnBPjCoLEYcyYtYHNnUNYlv4xZMH6hVIQCAozq8d5w==} + '@biomejs/biome@1.9.1': + resolution: {integrity: sha512-Ps0Rg0zg3B1zpx+zQHMz5b0n0PBNCAaXttHEDTVrJD5YXR6Uj3T+abTDgeS3wsu4z5i2whqcE1lZxGyWH4bZYg==} engines: {node: '>=14.21.3'} hasBin: true - '@biomejs/cli-darwin-arm64@1.8.3': - resolution: {integrity: sha512-9DYOjclFpKrH/m1Oz75SSExR8VKvNSSsLnVIqdnKexj6NwmiMlKk94Wa1kZEdv6MCOHGHgyyoV57Cw8WzL5n3A==} + '@biomejs/cli-darwin-arm64@1.9.1': + resolution: {integrity: sha512-js0brHswq/BoeKgfSEUJYOjUOlML6p65Nantti+PsoQ61u9+YVGIZ7325LK7iUpDH8KVJT+Bx7K2b/6Q//W1Pw==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [darwin] - '@biomejs/cli-darwin-x64@1.8.3': - resolution: {integrity: sha512-UeW44L/AtbmOF7KXLCoM+9PSgPo0IDcyEUfIoOXYeANaNXXf9mLUwV1GeF2OWjyic5zj6CnAJ9uzk2LT3v/wAw==} + '@biomejs/cli-darwin-x64@1.9.1': + resolution: {integrity: sha512-2zVyjUg5rN0k8XrytkubQWLbp2r/AS5wPhXs4vgVjvqbLnzo32EGX8p61gzroF2dH9DCUCfskdrigCGqNdEbpg==} engines: {node: '>=14.21.3'} cpu: [x64] os: [darwin] - '@biomejs/cli-linux-arm64-musl@1.8.3': - resolution: {integrity: sha512-9yjUfOFN7wrYsXt/T/gEWfvVxKlnh3yBpnScw98IF+oOeCYb5/b/+K7YNqKROV2i1DlMjg9g/EcN9wvj+NkMuQ==} + '@biomejs/cli-linux-arm64-musl@1.9.1': + resolution: {integrity: sha512-L/JmXKvhsZ1lTgqOr3tWkzuY/NRppdIscHeC9aaiR72WjnBgJS94mawl9BWmGB3aWBc0q6oSDWnBS7617EMMmA==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - '@biomejs/cli-linux-arm64@1.8.3': - resolution: {integrity: sha512-fed2ji8s+I/m8upWpTJGanqiJ0rnlHOK3DdxsyVLZQ8ClY6qLuPc9uehCREBifRJLl/iJyQpHIRufLDeotsPtw==} + '@biomejs/cli-linux-arm64@1.9.1': + resolution: {integrity: sha512-QgxwfnG+r2aer5RNGR67Ey91Tv7xXW8E9YckHhwuyWjdLEvKWkrSJrhVG/6ub0kVvTSNkYOuT/7/jMOFBuUbRA==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - '@biomejs/cli-linux-x64-musl@1.8.3': - resolution: {integrity: sha512-UHrGJX7PrKMKzPGoEsooKC9jXJMa28TUSMjcIlbDnIO4EAavCoVmNQaIuUSH0Ls2mpGMwUIf+aZJv657zfWWjA==} + '@biomejs/cli-linux-x64-musl@1.9.1': + resolution: {integrity: sha512-gY+eFLIAW45v3WicQHicvjRfA0ntMZHx7h937bXwBMFNFoKmB6rMi6+fKQ6/hiS6juhsFxZdZIz20m15s49J6A==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - '@biomejs/cli-linux-x64@1.8.3': - resolution: {integrity: sha512-I8G2QmuE1teISyT8ie1HXsjFRz9L1m5n83U1O6m30Kw+kPMPSKjag6QGUn+sXT8V+XWIZxFFBoTDEDZW2KPDDw==} + '@biomejs/cli-linux-x64@1.9.1': + resolution: {integrity: sha512-F0INygtzI2L2n2R1KtYHGr3YWDt9Up1zrUluwembM+iJ1dXN3qzlSb7deFUsSJm4FaIPriqs6Xa56ukdQW6UeQ==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - '@biomejs/cli-win32-arm64@1.8.3': - resolution: {integrity: sha512-J+Hu9WvrBevfy06eU1Na0lpc7uR9tibm9maHynLIoAjLZpQU3IW+OKHUtyL8p6/3pT2Ju5t5emReeIS2SAxhkQ==} + '@biomejs/cli-win32-arm64@1.9.1': + resolution: {integrity: sha512-7Jahxar3OB+aTPOgXisMJmMKMsjcK+UmdlG3UIOQjzN/ZFEsPV+GT3bfrVjZDQaCw/zes0Cqd7VTWFjFTC/+MQ==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [win32] - '@biomejs/cli-win32-x64@1.8.3': - resolution: {integrity: sha512-/PJ59vA1pnQeKahemaQf4Nyj7IKUvGQSc3Ze1uIGi+Wvr1xF7rGobSrAAG01T/gUDG21vkDsZYM03NAmPiVkqg==} + '@biomejs/cli-win32-x64@1.9.1': + resolution: {integrity: sha512-liSRWjWzFhyG7s1jg/Bbv9FL+ha/CEd5tFO3+dFIJNplL4TnvAivtyfRVi/tu/pNjISbV1k9JwdBewtAKAgA0w==} engines: {node: '>=14.21.3'} cpu: [x64] os: [win32] @@ -1024,20 +1024,19 @@ packages: '@swc/types@0.1.8': resolution: {integrity: sha512-RNFA3+7OJFNYY78x0FYwi1Ow+iF1eF5WvmfY1nXPOEH4R2p/D4Cr1vzje7dNAI2aLFqpv8Wyz4oKSWqIZArpQA==} - '@tanstack/history@1.51.7': - resolution: {integrity: sha512-y25aH3NDbdUp5Gk6Fnb77LsHTT2JrzVgI44ZiyEOf8i2j14Ma3oJ80fCw7rT/iV4xa4IN2Yex9flAsZQdh1i4A==} + '@tanstack/history@1.57.6': + resolution: {integrity: sha512-ppAJbnUaHdHmccVmplcd1ivX4GMPHxhStSquuuz0TSAEPEpz0iOVBur4iKfvIuMKm24c40nhvaEwZbKGVfbrGg==} engines: {node: '>=12'} - '@tanstack/react-router@1.56.5': - resolution: {integrity: sha512-qCmBgplLlqOSW1eLlKglTTFMv9zlsL8CJZWN0J0+YLkHSmbsdTKQhfA4bFveXL+EwjrJgFT+/GgIfB8fZEp8PQ==} + '@tanstack/react-router@1.57.17': + resolution: {integrity: sha512-pvtbZWdfLMMU7JKMHcbw5XFrUF9++IIdqa7pKylVm4jW9tTQOBhewKheUKiOipSox9sxOOmNAGsu10gMfwvR3g==} engines: {node: '>=12'} peerDependencies: - '@tanstack/react-generator': '*' - '@tanstack/router-generator': 1.56.4 + '@tanstack/router-generator': 1.57.15 react: '>=18' react-dom: '>=18' peerDependenciesMeta: - '@tanstack/react-generator': + '@tanstack/router-generator': optional: true '@tanstack/react-store@0.5.5': @@ -1046,28 +1045,28 @@ packages: react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 - '@tanstack/router-cli@1.56.4': - resolution: {integrity: sha512-+XnebLDUCGH9W9TIhe1gmFn92wAKsPCOjlpquN93uIY47zT1p1kANdSSFl7ZXr8HjYYLm3I0hA6s2/fbBUgMlw==} + '@tanstack/router-cli@1.57.15': + resolution: {integrity: sha512-lfgctMmmqdzE3sOZP3QGz/scWLFjk1dErBgAWxHetD+pQ6ZgiPZenYKgDSQE4DdRqCeELIg9G+P6iEXlymLgZA==} engines: {node: '>=12'} hasBin: true - '@tanstack/router-devtools@1.56.5': - resolution: {integrity: sha512-/yI0St7ldXxajH5BmKiO2FsrD1wQ1Z4ZxLLG1RKeIJsVBz5zWWvlI7tlv5EpBVdVgiGQPrd2turx4gUKFLVP+g==} + '@tanstack/router-devtools@1.57.17': + resolution: {integrity: sha512-F0rx1NfnD1dZ9e11IQY1DSaRYsMJVFDaVHzEAdDEULdTMGWkZ3UHhmxyfFyK+y/M/FajQIqudVfuY9MkyfrMPQ==} engines: {node: '>=12'} peerDependencies: - '@tanstack/react-router': ^1.56.5 + '@tanstack/react-router': ^1.57.17 react: '>=18' react-dom: '>=18' - '@tanstack/router-generator@1.56.4': - resolution: {integrity: sha512-VR2/8Vl8LTyxK/CWpc0yWB8kCdAa37Q1WvpbvO6jkyph7gqmlTWPb9PB58mSsuWxO7phbTxY8mMTR/Gr+6y+0A==} + '@tanstack/router-generator@1.57.15': + resolution: {integrity: sha512-VcUZVxdqrHZJuVJKwrQfkRcTmZk9iems/E3XBi+Ls6Hrrpx/2u4zwy4cb9btTExYecHZICWY0wwK+2XJOWE/kw==} engines: {node: '>=12'} - '@tanstack/router-plugin@1.56.4': - resolution: {integrity: sha512-diesCHg9b8rtRyX2kRappb419kloLJ5BzsDaZoMXd1kYvaCKh9/wD9ZTyKjwoyChXWwczeXvWAALao3+WlWXOw==} + '@tanstack/router-plugin@1.57.15': + resolution: {integrity: sha512-iLHa97aP8pj0ZcLvKOgdEaExuTLozVolfLBLoSjc8e4GgDIOesGRf0y80fqHiAOVZd8Y4nDsoEJB0UIGcXcbSg==} engines: {node: '>=12'} peerDependencies: - '@rsbuild/core': '>=1.0.0' + '@rsbuild/core': '>=1.0.2' vite: '>=5.0.0' webpack: '>=5.92.0' peerDependenciesMeta: @@ -1112,8 +1111,8 @@ packages: '@types/react-dom@18.3.0': resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} - '@types/react@18.3.5': - resolution: {integrity: sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==} + '@types/react@18.3.7': + resolution: {integrity: sha512-KUnDCJF5+AiZd8owLIeVHqmW9yM4sqmDVf2JRJiBMFkGvkoZ4/WyV2lL4zVsoinmRS/W3FeEdZLEWFRofnT2FQ==} '@types/uuid@10.0.0': resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==} @@ -1123,33 +1122,33 @@ packages: peerDependencies: vite: ^4 || ^5 - '@yamada-ui/accordion@2.0.7': - resolution: {integrity: sha512-4k7r3U6IPeldHEgnygpslpnnRL5+rDfwoymiOnZm8Zp+8P5sR+1snIMhFmZM6A7I6GV3L85cuN1VP4PQE10Tmg==} + '@yamada-ui/accordion@2.0.8': + resolution: {integrity: sha512-HY+YXUmCMa4uEDPQlHpHc8xrzHIWaIgqTBuMhEk6Iqfby73fQGTiNo8mUCOmE4fnCiVbweP2N9IiL30L+gSc+g==} peerDependencies: react: '>=18' - '@yamada-ui/alert@1.0.38': - resolution: {integrity: sha512-MAlMCyjATqdi/INYZ29jDF4SLM2ewNYXUzRJJx2I0nO+im03RLWKMWS6vuy2m795VT4L13eovfimllxuDC64Yg==} + '@yamada-ui/alert@1.0.39': + resolution: {integrity: sha512-qG1wj2R+c83nQNJOVfVAnZ/8uP3yD9JJlvRUQpfH6V1PP7EYCQk/7//9VBl8m2tQ1ZhJZr2OvMLqRu+F1duGAA==} peerDependencies: react: '>=18' - '@yamada-ui/autocomplete@1.5.0': - resolution: {integrity: sha512-qGxVwAlZtH4vXuw1zyekKRnBGxVl6hwioKlhGF5tMb9nC11mpgIja0Hgo652brKUZxl7XNFaTx4KfflIyOq47g==} + '@yamada-ui/autocomplete@1.5.1': + resolution: {integrity: sha512-kD4CyB8qfrJl98KkbfVtgQTlkkMweuC3CB5EMk9qQWnn6n3aviKdvA6Q6xJee+Q+k3t3/Yumqr25SmZAftAX4w==} peerDependencies: react: '>=18' - '@yamada-ui/avatar@1.2.6': - resolution: {integrity: sha512-9VaeWQQfCONgOxpko8gb03sZMjTrLLM5jSES4fD02ge6rK87UTfrCFxRTqYPiINlbqhw3IBlOG1w9qKJMPQYaw==} + '@yamada-ui/avatar@1.2.7': + resolution: {integrity: sha512-Oq0lbB39BNzbrjx+NO0E53MFrgpVGUZXJstb4G2bhIJp5opvkRd1Ytzp61ufiHlK/kuOA77uYQQlYhi11QRsrg==} peerDependencies: react: '>=18' - '@yamada-ui/badge@1.0.35': - resolution: {integrity: sha512-X5wRobkq693ErBcxtR9BA459fS+1AtvgQ8ObTdd0KF7ROOLQVX1pVOoHjroWbk7NYyo936A1dYkvZyp2bn184Q==} + '@yamada-ui/badge@1.0.36': + resolution: {integrity: sha512-Bcxx8I+e/6AfcFh0xVpXVbagV0+nqizGKFrBjUMRBcz6PPmqvxKBKV8U5TtxwVqFIenIKJtbPPa6GK9FaWh/SQ==} peerDependencies: react: '>=18' - '@yamada-ui/breadcrumb@1.3.9': - resolution: {integrity: sha512-nveYMYiK7kyNFG2RvXVKbCEM/llyVsUchmmrQBYzjvb778BKkrlxG4B+UyFcC1O+mMsWHMJQUArjIfJE6uHl5A==} + '@yamada-ui/breadcrumb@1.3.10': + resolution: {integrity: sha512-A8HvF8tVu6Y8hSS3Fq2lqOdR9TSEFshdo4iRlfSgYsFp6HzKr5eXD2U9U3adYgdTEbMqtZdk++dnI2Xa/jxbiA==} peerDependencies: react: '>=18' @@ -1158,13 +1157,13 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/button@1.0.40': - resolution: {integrity: sha512-SI5zrugFlItBxoM/weDCKw1iTF7jEgJhNggxzM8OB1vmoOTnmbbLOLFWT5WH1B5/Xx0+MUp9ns3oraS0RK/BFg==} + '@yamada-ui/button@1.0.41': + resolution: {integrity: sha512-uRB6NfN9AFZ25f17Bsn6zQHdCG46PuqwNrCseckFAer5I+j4qgBzT0uKID4+bZHXFJxUCuDu7MMdNjtLbqaLpw==} peerDependencies: react: '>=18' - '@yamada-ui/card@1.0.37': - resolution: {integrity: sha512-5QUK9d92nf/JU8ASYU8bbM7eJ/Oj/kM7+rZ8we19NZrGJzliBebR8FJFRR/7NhZTyEdi7yDjOLl+hVQ4nK6ZLg==} + '@yamada-ui/card@1.0.38': + resolution: {integrity: sha512-hqA5KqrR7otA2qxWYqj39pdJ5pXCOVyZV1O1p2T7g59uAQT9S5wRVEY7UOcAPMYbT61ySA04Tlx7gVQC9oDWVQ==} peerDependencies: react: '>=18' @@ -1173,8 +1172,8 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/checkbox@1.1.6': - resolution: {integrity: sha512-2Z6F53CeeZNY9mT6ieaHxVmKwahV4PCciXw64HoS5PAUw5A3Fd+MqkB1GcJ3iGudq4feOHmUcCWgfufheIT0TA==} + '@yamada-ui/checkbox@1.1.7': + resolution: {integrity: sha512-VUf5/aJiv6gqowUI91YJV/RoWN2MXBkoFlSejpFmDTZcNX7mclmL+Yh0M8q6HXEDbLtYWQ3FSo5ijBTJoKzgaQ==} peerDependencies: react: '>=18' @@ -1182,13 +1181,13 @@ packages: resolution: {integrity: sha512-nW3r+2BdoV5wtwIFNXptxyTvV7M/6VxqleJg+8Fe600XtDu5+rG/xdy1f4LNUBLZmnz67W8lemZn2VDaIiPUKA==} hasBin: true - '@yamada-ui/close-button@1.0.38': - resolution: {integrity: sha512-lRcHsiDqNoP1k/jj9sMtMQyGcoOG3+ET/JQ8sRwaDIubmp5TBT7h6l0SaX+IINwZnQNfWjijSnwOdowb06u79w==} + '@yamada-ui/close-button@1.0.39': + resolution: {integrity: sha512-HW6u4I+rYMOT+2CVI9Kqu/DAXJ6ATeJd/Iem1XDENdUYUsIG0E5RmCkMBQ7/VDEt5FkKQ7V9cNrslctWg806iw==} peerDependencies: react: '>=18' - '@yamada-ui/color-picker@1.4.0': - resolution: {integrity: sha512-jGQYrYl8uRX4CUtv6qXQLlRF/QqxXirnoDEps+gRFURmFbyhLYHJTcN5Ku99094u0SPFbNuqqgMrN0eHMfCvvQ==} + '@yamada-ui/color-picker@1.4.1': + resolution: {integrity: sha512-6uJijEDUf3zXyxpYtHLzB7vVhMcxYuEELlqaeezp145uvvl3EQB8r4pGNs+Ii1U1RucondwDJ9j47n9+OPC9mQ==} peerDependencies: react: '>=18' @@ -1197,38 +1196,38 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/core@1.13.0': - resolution: {integrity: sha512-/9dHTmsaSbFFe9iF0G8vFT01auDlqamtecte4ovGjBLyGR8UeQe2HZnnLx70WlWFJwMP3oLWWIwlS6EhYlbxpg==} + '@yamada-ui/core@1.14.0': + resolution: {integrity: sha512-hlNmRVpsR9dKEjgBd4FIgZ4WwnaK7MUPmZNv1wUnujr1j7RkT1DEK5PEnYnHI2AFTZt2bOW+Yt68IcNux5kN6Q==} peerDependencies: react: '>=18' - '@yamada-ui/editable@1.0.41': - resolution: {integrity: sha512-erjB3eMxXpbzniB6CqrYqIfG2VweU18FW+eFQBe9tf0jsPIyZ/Bgvk9xxAuDdErXYSL5qRzinj+OmSdZRyuMow==} + '@yamada-ui/editable@1.0.42': + resolution: {integrity: sha512-NHxlJAgZrAhNDvGBRKNRd5/D0BwY0k50U4Z6wkuj5rXq5jiZTqsDXtlfC4wRRawl7ISdxen7sv2Kr69YC6bR2w==} peerDependencies: react: '>=18' - '@yamada-ui/file-button@1.1.3': - resolution: {integrity: sha512-gZMS5uLwU6GGX3sLpOEj8b6QrUGnxscb34n/u0raBmi7wuZxFlK0Rc6/T8qPRzJzlmSruQU2Nxkdl6azlDdd5g==} + '@yamada-ui/file-button@1.1.4': + resolution: {integrity: sha512-XIJHXTfpU51+8vUoA3sW1Ay4soGkqhoMX34Gws7d3BnYFIGtZap25f6SXovnSNcov8J5y8xeeF4pVwYIoVek6Q==} peerDependencies: react: '>=18' - '@yamada-ui/file-input@1.0.40': - resolution: {integrity: sha512-afpaNAAG7PoJV0wkfdghhXyrsbRF30vrYRhENJcbFZ1Ox+FMD/5Klq2lbKha7yJXNc1M3odgi5FPtHJxbn567A==} + '@yamada-ui/file-input@1.0.41': + resolution: {integrity: sha512-sIq1t3vvqTQ9xdjGb394qH1akim49aJfRcQ4tP1J6uoGev4ntTvvLIi7JWwZrDVArPU2312DuJJTJndRcFo3ZQ==} peerDependencies: react: '>=18' - '@yamada-ui/focus-lock@1.0.19': - resolution: {integrity: sha512-aMdZ+BNPS52XepvRV8RHHpeqxwKxkdjAWHg1ezCx9pMGe4Bk2O1R+xxpPEdZ4OakFPrZ2axxd+xgJ7zdwxmm/g==} + '@yamada-ui/focus-lock@1.0.20': + resolution: {integrity: sha512-i8Mvy9eTq04Z4ZUZTSkLfKTxllvCylqUgrDDwzTPfHtexbKlnstq17QVbG8v75R8TAeoPg07OEwMaPHYKStcGg==} peerDependencies: react: '>=18' - '@yamada-ui/form-control@2.1.0': - resolution: {integrity: sha512-rfDBUjvo69m2R7qegHnqTvWQF/cfbhpvdsNIshZLWlRuZMaxxj+6NGOrXMzOBBvPok7pMKxt4+vxuLEYrRSzlg==} + '@yamada-ui/form-control@2.1.1': + resolution: {integrity: sha512-RWrIz6rCzFtufMrsG4PTs1S3xlKAUSytJbhZjxq728DQbCWT0r8D8h3zFbEVgmB9eqQQp77yusVoAESjdTXtOw==} peerDependencies: react: '>=18' - '@yamada-ui/highlight@1.0.35': - resolution: {integrity: sha512-wL7naYR953dQYLea5LzIeZNuXEsKj56H7JQI58R3R/9JyiywzXgvH/YJgHU4C9bqYDmQ8tw99vgPq6v2tNpVOg==} + '@yamada-ui/highlight@1.0.36': + resolution: {integrity: sha512-yzevMYJhhj02rWzkCtWpmHWFgeFBQn3x2NukXube4RL1drWiRuujEYvyPhAb3f+OuXoWuJeOXmgKGPdYJklf+Q==} peerDependencies: react: '>=18' @@ -1237,48 +1236,48 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/icon@1.1.4': - resolution: {integrity: sha512-hka5tQiV7dczMxxSHfmokE4aiBcTgjbw5LdqUeXlXJ7W0y6r3LlwLRcxgPU7+kXVK6TAGk5QkA/4KBPGn+Lxjw==} + '@yamada-ui/icon@1.1.5': + resolution: {integrity: sha512-pbvxDcZc6GrW2E8ps4hE1+QI2dx2sEu6da5uWWFHn7EdR4igbAyyztUZqGQzAmJ4y4cmHI5Nguyk2Gun2pgnXg==} peerDependencies: react: '>=18' - '@yamada-ui/image@1.2.0': - resolution: {integrity: sha512-QUudDUJG1WP7U+nGJ7QWE6Dpx922BDIHKJdMkGZKH03VroHwdKTHtweAjNwAUiimlKtEyB2SmQRu4aMfroXbpQ==} + '@yamada-ui/image@1.2.1': + resolution: {integrity: sha512-EN6hnD4nKL+4boidDlWqJN/JmYEwqo3vMkG7oyozBz5YY0b0aXh+KnycRPe/AghB9soe4I8uXj1YbkgAxms8lg==} peerDependencies: react: '>=18' - '@yamada-ui/indicator@1.1.35': - resolution: {integrity: sha512-IJW4WQ0QCptTCAIWEPtQcAbEBdl3FCvd6ZTTOurSHnKxNWyCaOyko9Hdsr/Wg57thJlntpoo0v+OYGB5mzEJuA==} + '@yamada-ui/indicator@1.1.36': + resolution: {integrity: sha512-dCtpagvsWAm/kCHy7x9xUvbk6Bu3lnyBxuO+c8m7exdxMm1VP+gV9BzH2Itoin2Osdq1e0FaHGVV1/9kV+ZPfQ==} peerDependencies: react: '>=18' - '@yamada-ui/infinite-scroll-area@1.2.4': - resolution: {integrity: sha512-zAQO7ikMdIjwDEQfhpAUsrDvHt6u+kYwTJa9j/VIO36Y2Ci8ZxbwfehK0Nyss2ZEWCZ9MopoGt4vgrgLP/wFhA==} + '@yamada-ui/infinite-scroll-area@1.2.5': + resolution: {integrity: sha512-IVMs9q/IQk8iJWOtwjH2/cmjTGFtR/JQZ773sBZISpe4PbOMdeeYqm0B962+uXwLAeAEOD1VX+CrXHRvC6A9Bw==} peerDependencies: react: '>=18' - '@yamada-ui/input@1.0.40': - resolution: {integrity: sha512-npTH6cWFOpTN1W4dmFPYCZFVGobpQy4jXX7C+6GQaop5KEUkiYNpXiZ3qPL+Oyobw2PRrf8+BYGPACkyY8zkGQ==} + '@yamada-ui/input@1.0.41': + resolution: {integrity: sha512-fujzGMCcOS2h3sHelCe7oWflj8W/qyZhHbvmd/XmPRqdJU7/J90EZkkmuEbWzPNXJRbTzQpyKRX7c2TloQWBvw==} peerDependencies: react: '>=18' - '@yamada-ui/kbd@1.0.35': - resolution: {integrity: sha512-dM5Gui47jCCe8HZSlMg2BlA7qgZgzoamcwfRmwBTqZTnKOqQIFsz7F8U2qCALZ54e5Mxgq0vGTAmb7LurKEp/A==} + '@yamada-ui/kbd@1.0.36': + resolution: {integrity: sha512-Z54ih+JtQ4x2B4Mi98skii7RorfdXkiHR+JGM6YrgzE45Cb4TERe0kiaJ4jkJFGWKdL8NaqK6HdCwakaTdBSIg==} peerDependencies: react: '>=18' - '@yamada-ui/layouts@1.1.33': - resolution: {integrity: sha512-moV/c/gMS6/UnTC6bO4hakf17aH3CYdRhcNrZPPZ46vbPkn9ckJSqgKCkG1jpgal48Ofzce8gaAtpP5OZtjCVA==} + '@yamada-ui/layouts@1.1.34': + resolution: {integrity: sha512-JdtjCxqKfFUVYFtrJQf8mFCCU/MvkkEVFHpzouDEHRxcCxF/uPWQitA4fmibYVeSqGL9hc198CfO0yQoPGZ0Qg==} peerDependencies: react: '>=18' - '@yamada-ui/link@1.0.35': - resolution: {integrity: sha512-OsjtP+IQg4lyvjOAZKd90vAy0MFJK1fBHuoRPtNcofpKSdX+Im7ZvTnnUo2wntkauRK6ZTQUGWr7eYm4cF+pyA==} + '@yamada-ui/link@1.0.36': + resolution: {integrity: sha512-GalqDtWBBeAKRWiEsF8jbffzZ0NG7bvMCr8I4gb8y39lRkBwQDS+SDPQa41mM1Z7K867LDgc8iXixcRKmkXvEw==} peerDependencies: react: '>=18' - '@yamada-ui/list@1.0.37': - resolution: {integrity: sha512-Pw7xsAHR9YD5VjG0b1CvuYixlsejwS5Jrjp7MLsPjY6TAN4LEwI2RS6eN9uyHY0/bpvAMmvtv70ykM5oVO5J2w==} + '@yamada-ui/list@1.0.38': + resolution: {integrity: sha512-Z+pMscc55+ptjuhlChu0JuSVGqvkUj6QiQULuMpwJNPFIxw4d1t02RTndpWyDkIuX6QiXgk0xrMlgXA4kYZZFA==} peerDependencies: react: '>=18' @@ -1287,18 +1286,18 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/loading@1.1.14': - resolution: {integrity: sha512-fFr1V2Tl0NHUhOZoX/sM+Zdwqj+Aghc21DN1c75IhrGwy32XZ4yJ2qowsIMnTPs+2ZAmjzbMU4CZqqLa114JjA==} + '@yamada-ui/loading@1.1.15': + resolution: {integrity: sha512-AVuXmoaBblja6t7QI7smdw76cmbIIht4XIRvcBO7RHx2rwf3xtIeR6lLHah8rQFFl9kAwIEcHsJ7LJKuiHmU6w==} peerDependencies: react: '>=18' - '@yamada-ui/menu@1.3.11': - resolution: {integrity: sha512-jbySKjIXKg30wdhvLPfBxD71V6cpCONXue9FwjZx0NsXbcwPSqXvwWMsHYTqr+cASr0p6hDEfYc2G1OrrqFurA==} + '@yamada-ui/menu@1.3.12': + resolution: {integrity: sha512-LkneQQWhY90X7BcNq7Jfu6skcoZghApK1a9pGh83pJo3XaSF9fpPYUTrkZPStzpzmAeeU0WF8vMMVsv8Xb8fgQ==} peerDependencies: react: '>=18' - '@yamada-ui/modal@1.3.8': - resolution: {integrity: sha512-7maQ6H7rp8nrzH0M+eHwUuOgRmgA9LJsvP2HsHDREFGNzOwq5A3ZscQB/cuqatpBVnBuEnLlD3JxJs3XHBdIkA==} + '@yamada-ui/modal@1.3.9': + resolution: {integrity: sha512-/4rnsKWrKoMIptMmN05iWt2mBQ+eQ/YO2pkIQ+fScMbWPBz/xTiexzUWrL6IZgMEBnCd2sXrhjZm+mv9pxAr/w==} peerDependencies: react: '>=18' @@ -1307,43 +1306,43 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/motion@2.2.0': - resolution: {integrity: sha512-ekch9+2fU2Jm/o3le2BiZ3vkW4O4RWdmlTrmuUsYSd+925gGv8AQSeT+MvrrLWKzogQQet9VypPCeOFNTTIBBA==} + '@yamada-ui/motion@2.2.1': + resolution: {integrity: sha512-tu4lVZ7RXS54vouNs5Ez8USCpB3xHdnngwxWQzFp0jChqO1QPO6OL0K+AMlNMpXnuAcvJZWVwW46e/xmLdwYYg==} peerDependencies: react: '>=18' - '@yamada-ui/native-select@1.0.42': - resolution: {integrity: sha512-1TZuKM87aG0n6DvRJQTXKmUQqDWH0GgaEcZ2tnietn64eNE8+bk/k6g57DysoouQpRmxE8ar1cyCmFwFFK5JaQ==} + '@yamada-ui/native-select@1.0.43': + resolution: {integrity: sha512-aR+JWFXgtYrp4JeaGqlhs50Lu0ck8aX9UNAyJ6EKCaBHAZ7YqM7johqP/UG7J81Pp9x5/UieAav048WWNmfzhw==} peerDependencies: react: '>=18' - '@yamada-ui/native-table@1.0.37': - resolution: {integrity: sha512-8EPiP3vzH3P8k7KBGv97GVTzWclLYPsiOA2EseC9J5IQ1PG3s0u3/Xe/HNrbyVmtpKkfqfdqKmWsal5wD4yHwg==} + '@yamada-ui/native-table@1.0.38': + resolution: {integrity: sha512-ttKhZanJ2y/u2rEt+qprMgYYHBRvLCm/a0slD4ElMKbXAo/yW1OhwiuBnGqg9exi01vBdxRj2fqegJqdjnV1vQ==} peerDependencies: react: '>=18' - '@yamada-ui/notice@1.1.1': - resolution: {integrity: sha512-oIOGDi7DXTZpaA4nn2236+kEXzmbuY5e20H8JeyKXt5uWZW0pMZJtIEZGwzkqX/9OAAmZLh0OFYyJpDvga7N1g==} + '@yamada-ui/notice@1.1.2': + resolution: {integrity: sha512-k+Jo1Lmfc3B0ygIj/aDkBTgPBjJ5MWyNxW7aRPqYPx7RGm5UygH5wU8OMw4AKdJaHs66rt9edACE1Ul3PmhXoQ==} peerDependencies: react: '>=18' - '@yamada-ui/number-input@1.1.12': - resolution: {integrity: sha512-30sHt/6UjltegltH5jO5UISzaFRRS+2JVmyMKJyFPpuJnQMLaP1MBSotOmq74o3enYCBFIVdZFTLg8WSiOFFrQ==} + '@yamada-ui/number-input@1.1.13': + resolution: {integrity: sha512-uVLgUy9AnhnFaC4vlUfowm5/BzPGGocwjwzLkqcgRKYHLWu759a/YyyKXLUKYuPzQO8egnxlGlZYjWVDakMC1g==} peerDependencies: react: '>=18' - '@yamada-ui/pagination@1.0.38': - resolution: {integrity: sha512-mWrdX4QyFWwcpYAPLMqA6acgON5omL1K9nmE+AOjkU9wKy6SCHHmTsQDcDelksrsoeCDCiDBt0zx3C9dPY2+Eg==} + '@yamada-ui/pagination@1.0.39': + resolution: {integrity: sha512-3UPjs/Luie5jOOqWV3H99bKSAV1ICo4rbn3cdAbWi+Q55+zB6AMkhM5R8xjVkooIIF2pw/9ng0kQeHVh/ndDcg==} peerDependencies: react: '>=18' - '@yamada-ui/pin-input@1.0.39': - resolution: {integrity: sha512-efPHzFy8C+QNyLdSfdt1k0CsnboMgOEOAdn6kVkLN/8pMMiNVnTlVEzmZKP1QvT3QnPTUZojOKLEEprlh3JSsw==} + '@yamada-ui/pin-input@1.0.40': + resolution: {integrity: sha512-kyEf7HRE96yu5MgBf+ZsHDz223+Y/pzIk86aQXkW59+v8nDpB5UgUL0ZnyOCA23jsx11rlKAveKCnFgZ6wQ3QA==} peerDependencies: react: '>=18' - '@yamada-ui/popover@1.3.0': - resolution: {integrity: sha512-o2AmooZnes0Eo83gkQVQT2N57TlaJvljMU6hVMHAILoMX16+d6RvkFjf3bkFBBsrAwH5osF1TM9spXur86H19A==} + '@yamada-ui/popover@1.3.1': + resolution: {integrity: sha512-/ndQHAl6zyoPaFbN9uFadf4/GQT5k8yAsJbKM7Vxw19jGWOP+pdN3ZpNmlwrCtU68JUyC0yXazNiVLZ4U5fEIg==} peerDependencies: react: '>=18' @@ -1353,37 +1352,37 @@ packages: react: '>=18' react-dom: '>=18' - '@yamada-ui/portal@1.0.19': - resolution: {integrity: sha512-mqFPVuV4fnL03B/gOASAT1cWS3z049Kxe+goPcN+G6ha0Vb9N7WwexJbzy0QrOnsYKWOMlhaTcxqg8KFwrNDoQ==} + '@yamada-ui/portal@1.0.20': + resolution: {integrity: sha512-jakDukl6aAVrxQKRqlg5aV8filQaBzNHiaSXhm9AkNIxatEET2Yn1M11Ak2G4dTDnYvBD6NRwWYICRdl8j6iwQ==} peerDependencies: react: '>=18' react-dom: '>=18' - '@yamada-ui/progress@1.1.0': - resolution: {integrity: sha512-ZRCUqcfaVYIAem4AvcDLcTn68VEwhK2EORBjN5X81t8pRFQZr9U2URd3UjtWTcmMYImMRB56khhurFzevA4W4g==} + '@yamada-ui/progress@1.1.1': + resolution: {integrity: sha512-zJMyeZ72eRnAF25jPqW52OJSOI8fPGN3b0VIUezTr+++56payzLNFUUfWQDDxZJOpPcF4mO7Ch1/O5TR7PEoHg==} peerDependencies: react: '>=18' - '@yamada-ui/providers@1.2.5': - resolution: {integrity: sha512-mMwYF4vCTLuVpETPb03Cvsn7ZOkZtpj0lVjNjCWUAWCSmIUG9k5jwJzqPWkgCwNpkWp6WhMGHEWc6NznvN//MA==} + '@yamada-ui/providers@1.2.6': + resolution: {integrity: sha512-9LCtJrZaZjH3GwlaBp1ZBXWXg9Q8GPxGkDKFzrirPkdVkFWthf4p9buXsn1X1gXMe1cfdxoAGSRLmudo63VKUQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18' react-dom: '>=18' - '@yamada-ui/radio@1.2.6': - resolution: {integrity: sha512-UympUnXziDvKQB8iii1fY/VNHQljYZLBKzOvblZWC/bwMFA90H80mjj+Ir+GiHze8zdgUdBxkqbX8wsDPhmG3A==} + '@yamada-ui/radio@1.2.7': + resolution: {integrity: sha512-VFY98J3y7EPhFTHMJYqjJNe47TlgEGQZeEzqbS9srMA1Y7uxUnzlp93FqDCOrZnE/guIkAhV8y5j8Natrd7k2A==} peerDependencies: react: '>=18' - '@yamada-ui/rating@1.0.39': - resolution: {integrity: sha512-xVY/OFzhSokpaBhIjATcsR149LblhWdz4Kq4I6mjlhkVK5td8ywH02zPdiSsePxqcNe1IMw9LXo0uQ3RT4BlUA==} + '@yamada-ui/rating@1.0.40': + resolution: {integrity: sha512-u31otr8lLFSz6pp6cn2vtnDH/V8kqGC4p4nEnJC9jD2zt64nLSeSCu+v/1jn0U6BhZwJ2gfH1FEuV6ucbPWV1w==} peerDependencies: react: '>=18' - '@yamada-ui/react@1.5.0': - resolution: {integrity: sha512-3Z389kdjGHn6miviyiy5oiShK7sGEwCMABU5Fh1HrV4Jy1/FfxUYnf0nH1oa4y4ybubPYEhrhFAvS4Z2oE9k6g==} + '@yamada-ui/react@1.5.1': + resolution: {integrity: sha512-EdCWzLT1XTGCOQ7yh9jaiWGPHcX6+MaEYZIpibEupT2Iz9bPc4DIhKAuBhzgmTxrK9vUlWXyfFQ5jI7l2Q6mtQ==} peerDependencies: '@emotion/react': '>=11' '@emotion/styled': '>=11' @@ -1391,13 +1390,13 @@ packages: react: '>=18' react-dom: '>=18' - '@yamada-ui/reorder@2.0.8': - resolution: {integrity: sha512-mrCCXesukFLhpVJIMSEYnXEfT2QIp0GyQ8dL+wpzrBJkYbro2WhmZvrW0yl8FLg4NtplhsRdqbLRtsz1TEx2pg==} + '@yamada-ui/reorder@2.0.9': + resolution: {integrity: sha512-R81ASgO82p/4nj0jkNVkF2WtUTw54lwA0hZJ5z3MgzIPCf6aNys45LoSD+Zr+3ZsTV3uG+gmKXesWLO4a3vsVg==} peerDependencies: react: '>=18' - '@yamada-ui/resizable@1.1.10': - resolution: {integrity: sha512-GM8i5H3O8nPNXkcj19xAjv4dos+q64xXZloMbfZxlBPU60KXkaAJ9ppT2yQL8+7D5/ediaKKWqXg3JhXOJLM3g==} + '@yamada-ui/resizable@1.1.11': + resolution: {integrity: sha512-UT3R5DDWF01tBVpQ5GKobtd8p/1gQgFbyNtb4slOdl/U9zpob2xlivMeUtqf6GnTe1x85I3q+Z2FALofqDgpkA==} peerDependencies: react: '>=18' @@ -1406,99 +1405,99 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/ripple@1.0.36': - resolution: {integrity: sha512-TIeSQo+fUOrBm3959RGUZW+GodxJlTgZ+GajzNKhXeXaGtGSfJrXmUYbpHm4u9mxemmFAdvRC42j6FGvVTh0iw==} + '@yamada-ui/ripple@1.0.37': + resolution: {integrity: sha512-PMiND0Y2Mske3ouJSE+berxmymQWs49JJSaS7Q7G0Mb836HsLpZU6icdMYwrBZUOgepG1hDZ66kVq04LPslUKA==} peerDependencies: react: '>=18' - '@yamada-ui/scroll-area@1.0.36': - resolution: {integrity: sha512-NOJW0j3LrCNqk7V7IVvzbM5iHWaqysxG2/XtEhLmyIMVAgT6sGwTQuYS3vsDOE2PxVPoggarHcIkpr62KM+Phg==} + '@yamada-ui/scroll-area@1.0.37': + resolution: {integrity: sha512-ltJ1SC45xFMwnYcUD45rIYmWVdLYPxAXPN9buZeoiC2P7UkoZuGVlF0FieVeCtEoxtyqLzBY13bfTYejhY5uLw==} peerDependencies: react: '>=18' - '@yamada-ui/segmented-control@1.0.38': - resolution: {integrity: sha512-Yq1HF1aivqIZKe554UH8Yx42pXOy21/OqGF5Ts31X1lPDrJZGF1uXYnq5FGJbXQk2Q20TfkMNURaee0brRyx9w==} + '@yamada-ui/segmented-control@1.0.39': + resolution: {integrity: sha512-fWAyPo1AW4UAzMsnzYZ/nY+1dg8UCrB/cFSyunNnb1uKROQtJREOl3OqvdZCIBBhIGgAALz8dUHcNwYDbKuNjA==} peerDependencies: react: '>=18' - '@yamada-ui/select@1.5.0': - resolution: {integrity: sha512-KHZ/fmxwy499TRykCQXK+wC95m7DtWccCTqWR4u/aO5Ms/BnPZVFFVQbie+PZ/7NE/BQulL0kBsp80DJUQCMjw==} + '@yamada-ui/select@1.5.1': + resolution: {integrity: sha512-ck+6Ek6FMEqoVRoVs1p/nRlRvUnkySIMyCwhyD66VjMO1sP2ntQgBZhwQ4cK7N0JttqjWaunH7Z2reipcE+s4w==} peerDependencies: react: '>=18' - '@yamada-ui/skeleton@1.1.3': - resolution: {integrity: sha512-TKqj2NmrGmNPa8WkML3wy0Lc4twO0qT8hbjqCdeXD0yidnh38XyjL9qAtC80KHN/652/u5rHXR1gX5i0qOKS/Q==} + '@yamada-ui/skeleton@1.1.4': + resolution: {integrity: sha512-prjcDbkKgZISNjr7N6eogiOvZIKJgZ+YO5Pv+vXl4gZXJ0S8eWZDNg5ac0X+bgCo/7c0WE+vnBLTjeaU15dNXQ==} peerDependencies: react: '>=18' - '@yamada-ui/slider@1.2.3': - resolution: {integrity: sha512-9MmQuliE1enepak8hporzC3rZxpg0jJGx15CEtUzSgvM11z6DR8rOg/fNGB4AG9NihPqH3arfzYdGy1/iUnwIg==} + '@yamada-ui/slider@1.2.4': + resolution: {integrity: sha512-qydqs56o2TUhNNFrm/j9Mzu68s1hJoeYCs0DsUgnxuGkkiQU/BvLiW1pPwNiQNOx3FQrJoZ6oRNhdlE+WpOmnA==} peerDependencies: react: '>=18' - '@yamada-ui/snacks@1.1.1': - resolution: {integrity: sha512-+hOu+QUe9BOJngq9kyWjJ3SR1+ti/cUrYc0zw+TnPjoJqrC6j64zW7W+o5YEb0jb/EgPP70TYj+TauEtf9rSPA==} + '@yamada-ui/snacks@1.1.2': + resolution: {integrity: sha512-F3ZFlzkc9rWk2z8fy18gzv43r3nZFp+WKy0hBWQHfw+ALkKWGhIxipbsnFMa6RH05hb7u/5vest9WT5sm6RIYw==} peerDependencies: react: '>=18' - '@yamada-ui/stat@1.0.35': - resolution: {integrity: sha512-M2gxcnSbryrX7dASd7mnqX80ocLGVmZiXdm8AJNKyVJefQlY0EJSvrE8ZdpyPGNZkRHpOQWGLezfySJCZ8BK9Q==} + '@yamada-ui/stat@1.0.36': + resolution: {integrity: sha512-ROg/cbSCKLZ+4RF3Z61ZN+a/RCRSpFNUTv50iO5o5JwXP2sOqfAnygcZd1Y7I40+sdKza00sl1rAGsYXv+nqJw==} peerDependencies: react: '>=18' - '@yamada-ui/stepper@1.0.38': - resolution: {integrity: sha512-VKJ2rkVjfTmWaQ/Y1z/LeRgybiInGWim1YnzY7iYjyT18OPoIB47nOGPKVltQk9mWMuGjNG2lyy8pNMP6miXrA==} + '@yamada-ui/stepper@1.0.39': + resolution: {integrity: sha512-XrNJuepIRFUBXoW4JCS3943kc8/QHUBOPThsThg7LO+r0bZepiLi/cgn6SYYCJ9wPYbbe8c2yzYMprzAJvVy9A==} peerDependencies: react: '>=18' - '@yamada-ui/switch@1.1.7': - resolution: {integrity: sha512-f/vUfGdTOgP6AiWNFPRA8EutCsg/1fyj7hCD8XLixadkvpmYMrrlK4SafQjdC8/H1IXaBx6Dn4+TsMVySRav1Q==} + '@yamada-ui/switch@1.1.8': + resolution: {integrity: sha512-YjFDuxOAhSA4mVKPTWt0r7gjbLDlIpKbjtok9P6efpDaUCXE1oB/e7krXRqFKEgrFOvCvNPi0hMyz82T1dHBDw==} peerDependencies: react: '>=18' - '@yamada-ui/tabs@1.0.37': - resolution: {integrity: sha512-JONuABrpby842T02jdcAsxAAyxR/+cXFPacjRucHUjle4/onpFHOo3DXOHHuhdxDeLwA/5fPCozzBQU7S9CC6Q==} + '@yamada-ui/tabs@1.0.38': + resolution: {integrity: sha512-2At1gFZyE0MyTiTACrG0LAkGtu8LlJvegi2Kw7drJxWKl4alYlC5DqJ17S7pWBMd9WBgCiXCgBmx7cTJJsHcdA==} peerDependencies: react: '>=18' - '@yamada-ui/tag@1.0.38': - resolution: {integrity: sha512-8r1yVaS1Fq37wSaEctoPTC8mr9BLzWrckKla3WDenI+tcAcsqbNpCi5L5uH3C7kIdiTe2hKJgaYvuBvsFBQ+pA==} + '@yamada-ui/tag@1.0.39': + resolution: {integrity: sha512-jeYqepBYSuUkvFqxexqW5aWt4SQLrXOjphtf9QflslyjJPqDWbI7p6Xy7iOw0Qyr/NgbOlX8mrhe0G6Gi8Cmfw==} peerDependencies: react: '>=18' - '@yamada-ui/textarea@1.1.27': - resolution: {integrity: sha512-PGluBpIM09Nw5aXoHllB9HGlvTP+h5ZBgSUtJY/GMCOanAZvRca+nhwfjWa7eizHTT0wm4T7FrxVJmDHUeOV/Q==} + '@yamada-ui/textarea@1.1.28': + resolution: {integrity: sha512-e6pX6GQUBcIp2f4zML0eWqhOwItG0jzSJeLp/sBAAa23Jj/2j4fNEsNOvnxbPkQNU5GtZl96bTjZk5MF9c2Hdw==} peerDependencies: react: '>=18' - '@yamada-ui/theme-tools@1.1.1': - resolution: {integrity: sha512-5qh12/Be2hgIxEG5ON/wXQGmR/JiCb2mKM9wOVV50oIXxdi/5zdXMaYaz6RkAgHXQJxXat+oZsuc5gdHhibidg==} + '@yamada-ui/theme-tools@1.1.2': + resolution: {integrity: sha512-TTrFayu9mVpCLT3ZQO9F/AJAI8pEynAH+pChl7jT45d5711tFxruJwZ8rP83SPV3CWyK3RwmkHTGFcD+e4G5JQ==} - '@yamada-ui/theme@1.17.0': - resolution: {integrity: sha512-IVsQv1wNStm/6cb2KUfRGCW4xiKGWfWLEmbpp1y9h9gmE82qkN9VfGix45vzR1df337s+rgBAD5CxC047zTtUg==} + '@yamada-ui/theme@1.18.0': + resolution: {integrity: sha512-nPOqpPJksRYLbhwKpJBYCuV8R3JG2S9H2//qmhwFipXSc4iuVSdgVrt0xXOgTLcO+9Z0Ibs+0izggfp9IXOsJg==} - '@yamada-ui/toggle@1.0.19': - resolution: {integrity: sha512-vikG2UfjLYTNTBT8kUGD8MWQF7tmdqACT86KaEEF2xIk6UgVjgE0wwBYsGpkdijdl75DwYV8a/Njg8rMoWRSbw==} + '@yamada-ui/toggle@1.0.20': + resolution: {integrity: sha512-PHQm9w/ndYu2YKZoQOgJRv0gpQWs5YSn4t6PCfZvb8O5MytldywHz0MMB009CV4bLAUX7jsT7ZNw27b1Tgisag==} peerDependencies: react: '>=18' - '@yamada-ui/tooltip@1.1.9': - resolution: {integrity: sha512-1e7SClSxnfCINc1wvA589dF5bknUPWtiEqkf6Z7os4hUcXmuz9MqLf71tqkaTzYgo2rkX5XlBq2Rlascl9EC8A==} + '@yamada-ui/tooltip@1.1.10': + resolution: {integrity: sha512-Zxbz36rcHgSc23s1eP0pIzyoTOPMRTBoXWuc7m+BmQCw4QM36OjGQhCSzSrOYiDFerOJpcjia7BK/XeDYTlv2g==} peerDependencies: react: '>=18' - '@yamada-ui/transitions@1.1.3': - resolution: {integrity: sha512-6NyxXi6y2ibR8hZ7ibeQt9Omfnyp8WQFHkw8Su6EMhS1TiWUGD7qLcz/iLVgOs1007q7tGeE++66V/jPkg+/zw==} + '@yamada-ui/transitions@1.1.4': + resolution: {integrity: sha512-UDJxSinCfza2Pzmmw5Ft/+xRPb+inZ3EDfIz0OnKrCXgUPA862hzysHMqvZvwQabAjkjrAJGFbTG7AqAE5yj5Q==} peerDependencies: react: '>=18' - '@yamada-ui/typography@1.0.35': - resolution: {integrity: sha512-V6DdBN3+wp+8JEZU8FHcwdgFXC/qUd+kwhTSb7uAdWX9nvqgBc96HP1cXamNI035ctVHiv4CIHL7F5Tt3hihwg==} + '@yamada-ui/typography@1.0.36': + resolution: {integrity: sha512-njiuopM4BFz3fVZk+0r7e91x62XdHEaB6BNHT68/wgOe5F0wkKtWxAcnLR3i3lmIO26juptW/LF2aDQq53pOOA==} peerDependencies: react: '>=18' - '@yamada-ui/use-animation@1.0.35': - resolution: {integrity: sha512-MzDxEaD/twgT4NLzeZaEOLrKN1TWBdIRBYEwasLW5o8XOpHxinywj5bzRM5uYUE5aIGldDzm6V5fLwXMbM4Zag==} + '@yamada-ui/use-animation@1.0.36': + resolution: {integrity: sha512-1t5+b3vlNl1crgK1d+c/hY4ufJDHV8x/W1NNixxXZh/D+qz6zieG4SsF3iGEcsz6ll9NkckSKo3zKA1H+kt03Q==} peerDependencies: react: '>=18' @@ -1512,18 +1511,18 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/use-breakpoint@1.4.6': - resolution: {integrity: sha512-fX2axEXJhS9XAv8Q3Lz3+ClU8UaSiIBwk6J6fXrcDQOvCqgIBPT8M6j9nU4pHoUhSUBnQGUruK+6J0Wzemp0yg==} + '@yamada-ui/use-breakpoint@1.4.7': + resolution: {integrity: sha512-/ikr1XvSF3UNvyHK4K9Y0CRwRsvb6tsqhLb65ztYkf3TG3Vt0rsSWtVh4NAx/Ww4LJ3UmvfpG0t2s2BKo3HfPg==} peerDependencies: react: '>=18' - '@yamada-ui/use-clickable@1.2.6': - resolution: {integrity: sha512-iF5K1mDPhitiNqnOYV/Tr5la0TGVtvmMYGzSIn0pOB2jxAfJdi6lmddOuxYm3iQDmisAYb+tn9JSvKJBmSjawA==} + '@yamada-ui/use-clickable@1.2.7': + resolution: {integrity: sha512-1NBkoP4kXBNQ/2BXWUlQGzNKSNSAhdAGYLUcHox2bw+7ziCqDHLzpLwcrHNWs6Hyx5KbMCYy+pTPX0n/IjZ16A==} peerDependencies: react: '>=18' - '@yamada-ui/use-clipboard@1.0.19': - resolution: {integrity: sha512-2h+kg/2gNE7MHJAYHef6IlAC5NLf5ihX8Nkf7Op5xWJTLFkEZNArZIEGTfs39pG39WLPjKtVeKSTAAD0niDyRQ==} + '@yamada-ui/use-clipboard@1.0.20': + resolution: {integrity: sha512-kTfQnPfkDCV9vrmhm+Ocr4KDlw6rgdvQkbunFafR6DShSpgwKVtOKLmgzeMwvcpirOUVAUpLeMbt/RR9bJaa1w==} peerDependencies: react: '>=18' @@ -1532,63 +1531,63 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/use-controllable-state@1.0.18': - resolution: {integrity: sha512-wpgFkrLP/7eP+8Ou3L8Y3stYeIkzUtJ394KOj9M1Q/Uww8tP1oNS62yHLiIGFQW/scwWRUJ4aMaKWgbIKsMYzw==} + '@yamada-ui/use-controllable-state@1.0.19': + resolution: {integrity: sha512-ipQaUBxrOFXQqFuyLFFKv1AZrTC0ld0wlhB4+ldSdymmVXM5NNnZk3ysTPjpwBHG/J3R+OnGBBtkslFdrZDdWA==} peerDependencies: react: '>=18' - '@yamada-ui/use-counter@1.0.19': - resolution: {integrity: sha512-GsQq6QIw9BCjgv4P11qr6ZM+ZMPx/vPzsC1Ig4sIlaWzpP/1EoI87oMwuTcXanHD9VNNxNwPNSXIU5r4As60pA==} + '@yamada-ui/use-counter@1.0.20': + resolution: {integrity: sha512-PjQ8pttUY/RACBxFoGoPw70qndayalXHRzoAIr77hbKZZ7l7TH3nvvS0AGmQJzMYJtk7XBWwsofgqkb8WsTezA==} peerDependencies: react: '>=18' - '@yamada-ui/use-descendant@1.0.19': - resolution: {integrity: sha512-RimlE/YgyaeERLbpF+4JZB1Xcily9k1W7JFDx3Gani4vCBeM62kMRcYOijDQPtprhDtwNf1wI5vEgLYy/iZUQQ==} + '@yamada-ui/use-descendant@1.0.20': + resolution: {integrity: sha512-KDagFqrTbz8URBULEdXd7OPuHiocCla9jsC1guEvCQWzVbd5/P5z9PW61qPp1bfRKLThjSzXRNFBxSapXwARKA==} peerDependencies: react: '>=18' - '@yamada-ui/use-disclosure@1.0.18': - resolution: {integrity: sha512-fYm1DK9J80tlORKxnUXFFBI4E2xDER6vpGQ8WgbxMY/TpFR4sPeWwVNfM607zFtXHYpJCfrZFSM3HpwIM68qfQ==} + '@yamada-ui/use-disclosure@1.0.19': + resolution: {integrity: sha512-jgHEBto7712LvlMn0D+XtH8dYGsC7SP4/C3+ZPNi8cCIhrl3iHCIp2zSHlNpsxj++tcrUoLyTZiiGFgMZvfxIQ==} peerDependencies: react: '>=18' - '@yamada-ui/use-event-listener@1.0.18': - resolution: {integrity: sha512-oT/FsW6ikjSVpUV8e1lm5qrNXjVJpK2M0PtAUD74B6HlkJotSQxFesKPvEMrHwBZ6bfqOMtG360Yj0Ix154w5A==} + '@yamada-ui/use-event-listener@1.0.19': + resolution: {integrity: sha512-EUTakN7hj6INixfgGsGQPi+eFeqzCWn29z6Ieyeo/GNwmKDnBwmYxHs98iipIUf1hUWvxib1vvptcRdOveFHsQ==} peerDependencies: react: '>=18' - '@yamada-ui/use-eye-dropper@1.0.16': - resolution: {integrity: sha512-Xbpahb3gnTKhXoxv1Dl63V5TmRXwueyIe9XVAKojb+mMTgUw5RlTFdRti/S/dAzHYH2JWm1lmcqeGkhNXRIlQQ==} + '@yamada-ui/use-eye-dropper@1.0.17': + resolution: {integrity: sha512-+xptOdtVnfWwfkeCvrih2iBOngEI0NjcThjhRAdmtnc5pimFEF5Bh4qCpK8VTvzyweQ7xBZRdD7+6T0RZ6KPqg==} peerDependencies: react: '>=18' - '@yamada-ui/use-focus-visible@1.1.5': - resolution: {integrity: sha512-9T/fu6IwbaYrchkjDF662g/Sx+PaL/ga+V7bO8I4Ep3BVbYIR0czhnDZUEdw9kUdEgmKpm96kFoGmibTRKSmdA==} + '@yamada-ui/use-focus-visible@1.1.6': + resolution: {integrity: sha512-bC3U3xdgUC8iSAES1kF/RPgqBVFMaijVQwGAszTg4Bh3NTtVT4d8JVultxIkyY0x78OFCR+fpdJghsyqHkYPWg==} peerDependencies: react: '>=18' - '@yamada-ui/use-focus@1.0.19': - resolution: {integrity: sha512-oGf3S0P2RPHXyIZLzx8dcsLlaz4o6JTdagZ6jTyN9OqWjviETlp1CZbB4nWvghyEfdrTQtXxqrTpBJ4e+l6d4Q==} + '@yamada-ui/use-focus@1.0.20': + resolution: {integrity: sha512-+cpOeFlnc2+YX/VzHbMc45ayAOY1lJvkOOqhV7bmOg6t8S5qgA0cDyq+bO93dCDmuvELEVdYGsCBiw9N/1Qtjg==} peerDependencies: react: '>=18' - '@yamada-ui/use-hover@1.0.19': - resolution: {integrity: sha512-Ex+gIN2V5i29c5qDitqA7oqYrq14fppWZaOII5Uwv2FV4ayYEG8IW3ZWGEN/G61RAp/ktfcV1KAh7yxlsEC5DQ==} + '@yamada-ui/use-hover@1.0.20': + resolution: {integrity: sha512-S08yzjmsty25PVJV7s8oliR5jMchAtPjW00WpBY1A/vzzzTCiT4a3oqeYd1wvdjoVfNbmMzoGKdl0OAZ6BK3dA==} peerDependencies: react: '>=18' - '@yamada-ui/use-idle@1.0.19': - resolution: {integrity: sha512-q1rrC0s8EkYHb4v9/sDhJV+47agTxZ9Nt7PnH6YB6cAEww217Vdl+THMSUmcN8zTH9cBv8J/c7uP2ZSIFE9n7g==} + '@yamada-ui/use-idle@1.0.20': + resolution: {integrity: sha512-h4/gN5KomyCl9x/984dyJCBhfO+nno/9uEDNtwOp1oCvQ0lV3yUd/ICvvQUcR3DExkRR1qbjAal15fYZoSLWnA==} peerDependencies: react: '>=18' - '@yamada-ui/use-infinite-scroll@1.1.2': - resolution: {integrity: sha512-1IhVf9sAZTObhbXu8a9LPSBxs1w6R29a46Qx6G8/ySHsM4uAI5D3iYqoJHOtkNbayFb3u2y9Di+teoJalKpwCA==} + '@yamada-ui/use-infinite-scroll@1.1.3': + resolution: {integrity: sha512-7IPIJ5ySZhnofgnGOalo8SJKhawkqTz30tr24vsl7L6xLb9mqOWdsSI/QirK0q94/9P95IhlzJD/Z7ysbXepag==} peerDependencies: react: '>=18' - '@yamada-ui/use-interval@1.0.18': - resolution: {integrity: sha512-vrAqwrOEqwoytFHWS+RRdp4H6MGShcQhQr3MWLy6M4DUGtN1DG7NaaKwPZEhC33thP1HqiO9AzL/nkCDqxIpVQ==} + '@yamada-ui/use-interval@1.0.19': + resolution: {integrity: sha512-fT3CyTUVWmCSl/nvQ9XTDW6vAlCyB9yVJyf2m09KtKvuPutBwmbUAtbRTQDqaSWVWi2Z2nGd8z2UJ3lDaKic3w==} peerDependencies: react: '>=18' @@ -1597,48 +1596,48 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/use-local-storage@1.0.19': - resolution: {integrity: sha512-YNC2RYViQ+99bPnq/h7z14+4w0wWBRdjD9aXum9zFczg+zf0ureStjFD30br9UknybEeFBosGLlsahOHJZsb8w==} + '@yamada-ui/use-local-storage@1.0.20': + resolution: {integrity: sha512-Z8lfcn5cqv9/ThT/gTOMl8YVrzp4LTqUvvBqHZ79txCbpYZQF9ItmfCpQWo+cItwmLw9dQZ1L/WjUd925yJTPw==} peerDependencies: react: '>=18' - '@yamada-ui/use-media-query@1.0.45': - resolution: {integrity: sha512-wbZmrVZp/t0OTNx3ksexsNATuiaPichZrJ2hfT4HFmluV3QoalZtQ414YCBouVdMGO9DzeM61vgWC2BdfZcphQ==} + '@yamada-ui/use-media-query@1.0.46': + resolution: {integrity: sha512-XOyvK8wnmivjlU8LgyrOOUvtlvGHXP704+nebmc/pJepd70Fj7x+RCjhpoliDAwxxu2eV6uHKPBKtfHf4me4AA==} peerDependencies: react: '>=18' - '@yamada-ui/use-os@1.0.19': - resolution: {integrity: sha512-9tjKMTsKLt84NBmna2wxfnhw82sC9diWDggFKbTuIGAWmWbQtYOSIGLChKFtI25X09DiXndsA0yvvlHx+sQrMA==} + '@yamada-ui/use-os@1.0.20': + resolution: {integrity: sha512-wkPU5LFCr4FfvudupfZpBCCz2AmAZhQsIGvSYob/MGmJEVZJmFm/Zjw9xKPvv8OCqGpNcCm7DtI3Jck0TXlsxw==} peerDependencies: react: '>=18' - '@yamada-ui/use-outside-click@1.0.18': - resolution: {integrity: sha512-1luFP6Z12ZYfLhmbnXNNMyPqxv4e3CpuIpib/FRZ1pd+zLyyBiMY6sdMobr0SM983c3Fq+yS0jWFpcOEwjYKZw==} + '@yamada-ui/use-outside-click@1.0.19': + resolution: {integrity: sha512-cNwGvEaRkVUGyJWBSoN1KXaVhVj3g8zxwVGDFjL8xOfqSydOvf1d4gNS9nvG9SlMrovDE/EiuID5VbUsOf7q9g==} peerDependencies: react: '>=18' - '@yamada-ui/use-pan-event@1.0.20': - resolution: {integrity: sha512-Vxg+N/NdAEPFlwigJTwdfIRbPW6r/U8b8vVMPGO21XKpPfERUzqw+hUeJMuvrD/NM2vpIz2s+s4pO9Zvj2bKMA==} + '@yamada-ui/use-pan-event@1.0.21': + resolution: {integrity: sha512-BARMwcBXXX4QMOnJu2g0NPbkbi/8olLL2v/bBqY7bDF7vdnuh1Nt2OLGjZ4W+LE/OfwUu64niZBzBY/nCsLZOA==} peerDependencies: react: '>=18' - '@yamada-ui/use-popper@1.0.35': - resolution: {integrity: sha512-wP8eJhDHmWtmBmWXD9wIMT5Y/G3hLIFuR6uLn8K2Oh+k+q0vk75pMsAtJX3Nu9bTHA1my65qNsLttENnEpDscg==} + '@yamada-ui/use-popper@1.0.36': + resolution: {integrity: sha512-B4F6o930+i9Z8XBSE2ojkX7gjMDPJ7devpYfpCgRv1NQkCLurASKBGdiDhzvWmtWJ07lEeiTLLlIJmH++Kp93Q==} peerDependencies: react: '>=18' - '@yamada-ui/use-previous@1.0.18': - resolution: {integrity: sha512-pnaJzS/JFwDflmsVMVbDusMR9qKaxQzp49ibVbcJ4RK/aj3R3hE62hThl2R/caNiqwPFPO3RO9gUgap5tDiXAQ==} + '@yamada-ui/use-previous@1.0.19': + resolution: {integrity: sha512-OBIZHxz+7mr5A8K5x6REAFOSQQdQjziSwbH62l7hkP4qJx/2WfcALLiUZ5p2ztH8nYOrFRFH6+jMydAKfJnyIA==} peerDependencies: react: '>=18' - '@yamada-ui/use-resize-observer@1.0.18': - resolution: {integrity: sha512-bilNHIA77/aeUTrGXHEas4OdJq//sQbMl78I7p8G2uF/RnQmrKjROS3ZVNTR9DweMo/J3rG8zMFG4m1+yFXY7g==} + '@yamada-ui/use-resize-observer@1.0.19': + resolution: {integrity: sha512-Ll7OMx7v9E5q0BezG0gbM/EgqGTQvZgdkdyeN+48xFqbMarnQive5y/OVgcZrtHfFxaAdBsKGzs3wLwhGFnHhQ==} peerDependencies: react: '>=18' - '@yamada-ui/use-size@1.0.18': - resolution: {integrity: sha512-/ovr+WMXisROYn9wV4OheU7BhKs9nDMePlSro7ZfDE69/illimz4box/G+VTzGXA8W4MB0U0H5X9Go//Rte6Dw==} + '@yamada-ui/use-size@1.0.19': + resolution: {integrity: sha512-3izCRrY/SUFAm1QTfappgisXcyp7rTWsg5A2bFNYkflH5bIUH34iHrFdWvjNRBClrtxFnSzbsPtIJsm7BHHKMg==} peerDependencies: react: '>=18' @@ -1647,8 +1646,8 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/use-timeout@1.0.18': - resolution: {integrity: sha512-v+cu8TjglrQarLuuUBd4KExEhV1Be60NfhZaUb2doL0P/uubJVFLTrKnrceVb1aXKiEpox57u4lmf28me/+9Lg==} + '@yamada-ui/use-timeout@1.0.19': + resolution: {integrity: sha512-045tWMXVflmA/TZWIHiLNnUf+VlAJCtA4/UdYZ3wBNd1JTga89CpvUF6zAKfDHiFBUJA3cC6rAZyDTItaTmnVA==} peerDependencies: react: '>=18' @@ -1657,8 +1656,8 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/use-token@1.1.23': - resolution: {integrity: sha512-JrmMfDSMpPVt7xLuIoI5SpWwpo0lo4R/f/G4DXYba188iRPvnyrWDEVQrTnxiwdtKu5lucNzkLCPvC1pT4QQ0Q==} + '@yamada-ui/use-token@1.1.24': + resolution: {integrity: sha512-zH8p8P/kL1IgW2yGiK31W11O6l+wdLK38Ghy7nc5xyX5S5dedOkBGfigrPAop5JQZ9wXojUQ1by8iHx0nt01gg==} peerDependencies: react: '>=18' @@ -1667,13 +1666,13 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/use-value@1.1.23': - resolution: {integrity: sha512-bnRKmXfkN14eXk099YQ5uhzAqI92u2m6e2tXECrdk5oxktsvzLfvlnTYZ0BnxL5GD0uegsrkgLv93nCl+O0ZDQ==} + '@yamada-ui/use-value@1.1.24': + resolution: {integrity: sha512-4NxUpK0hIH5PqOBh8hFBz9fJXxMBpz1z78eRzPbXQZ1FrkMEEHKW5yfxnqck5odJ/LyJFC5Qm+lVG+FztY8zKw==} peerDependencies: react: '>=18' - '@yamada-ui/use-window-event@1.0.19': - resolution: {integrity: sha512-sb8ots33Ry1lZ6CHUUNj45sLZQvNbEshfs486hq5DbJIm30uzbUeIgeuDgfpWANp+uErwQ1sO2Zrr1I7huvguw==} + '@yamada-ui/use-window-event@1.0.20': + resolution: {integrity: sha512-9QROcNrKR0yFxtepFzuP5izWOzWn0pmS6vT7g+CxX9w9HbSay3i4sVY4mo3b+kfVs5GHhmm4EYkuc6ERq6n5+A==} peerDependencies: react: '>=18' @@ -1682,13 +1681,13 @@ packages: peerDependencies: react: '>=18' - '@yamada-ui/utils@1.4.0': - resolution: {integrity: sha512-ZdhARuMzdyZWSFQqore8ylKhjmbFm3QIrjCgIZDXpNWBgscmnQSlBUP+Qgoii8QwUzIRZNUKcKI48Eqvjx2sPw==} + '@yamada-ui/utils@1.5.0': + resolution: {integrity: sha512-qo4twRtpTmzQBrvvfOikCHQ84/3LNDiAW9x7ECmaG+Yn8f27idKhE59jNbgx0sYNamscxPZJ0qIqgCURa3LfWw==} peerDependencies: react: '>=18' - '@yamada-ui/visually-hidden@1.0.9': - resolution: {integrity: sha512-O8grznkZsG6kp7cJmj59nOAJ506pwCJLgndsw/UoA9F6z5VNOVBmhgS6EuR3GthDNEJlMfbz9GLvyIq5no6IAA==} + '@yamada-ui/visually-hidden@1.0.10': + resolution: {integrity: sha512-1hGhVBgZRSJAqrDrtAz6PoP5B4bdA4YgCVSIXDtJU/0DnGA2J4F8RRKSfbWqMh8Rw0UP/b3AVsDvqFua5jy0Dg==} peerDependencies: react: '>=18' @@ -1977,8 +1976,8 @@ packages: resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} engines: {node: '>=6'} - get-tsconfig@4.8.0: - resolution: {integrity: sha512-Pgba6TExTZ0FJAn1qkJAjIeKoDJ3CsI2ChuLohJnZl/tTU8MVrq3b+2t5UOPfRa4RMsorClBjJALkJUMjG1PAw==} + get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} @@ -2220,8 +2219,8 @@ packages: react-fast-compare@3.2.2: resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} - react-focus-lock@2.13.2: - resolution: {integrity: sha512-T/7bsofxYqnod2xadvuwjGKHOoL5GH7/EIPI5UyEvaU/c2CcphvGI371opFtuY/SYdbMsNiuF4HsHQ50nA/TKQ==} + react-focus-lock@2.12.1: + resolution: {integrity: sha512-lfp8Dve4yJagkHiFrC1bGtib3mF2ktqwPJw4/WGcgPW+pJ/AVQA5X2vI7xgp13FcxFEpYBBHpXai/N2DBNC0Jw==} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -2258,8 +2257,8 @@ packages: '@types/react': optional: true - react-resizable-panels@2.1.2: - resolution: {integrity: sha512-Ku2Bo7JvE8RpHhl4X1uhkdeT9auPBoxAOlGTqomDUUrBAX2mVGuHYZTcWvlnJSgx0QyHIxHECgGB5XVPUbUOkQ==} + react-resizable-panels@2.1.3: + resolution: {integrity: sha512-Zz0sCro6aUubL+hYh67eTnn5vxAu+HUZ7+IXvGjsBCBaudDEpIyZyDGE3vcgKi2w6IN3rYH+WXO+MwpgMSOpaQ==} peerDependencies: react: ^16.14.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.14.0 || ^17.0.0 || ^18.0.0 @@ -2415,13 +2414,13 @@ packages: tslib@2.7.0: resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} - tsx@4.19.0: - resolution: {integrity: sha512-bV30kM7bsLZKZIOCHeMNVMJ32/LuJzLVajkQI/qf92J2Qr08ueLQvW00PUZGiuLPP760UINwupgUj8qrSCPUKg==} + tsx@4.19.1: + resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==} engines: {node: '>=18.0.0'} hasBin: true - typescript@5.5.4: - resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} + typescript@5.6.2: + resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} engines: {node: '>=14.17'} hasBin: true @@ -2480,8 +2479,8 @@ packages: vite: optional: true - vite@5.4.3: - resolution: {integrity: sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q==} + vite@5.4.6: + resolution: {integrity: sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -2702,7 +2701,7 @@ snapshots: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 @@ -2766,39 +2765,39 @@ snapshots: '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 - '@biomejs/biome@1.8.3': + '@biomejs/biome@1.9.1': optionalDependencies: - '@biomejs/cli-darwin-arm64': 1.8.3 - '@biomejs/cli-darwin-x64': 1.8.3 - '@biomejs/cli-linux-arm64': 1.8.3 - '@biomejs/cli-linux-arm64-musl': 1.8.3 - '@biomejs/cli-linux-x64': 1.8.3 - '@biomejs/cli-linux-x64-musl': 1.8.3 - '@biomejs/cli-win32-arm64': 1.8.3 - '@biomejs/cli-win32-x64': 1.8.3 - - '@biomejs/cli-darwin-arm64@1.8.3': + '@biomejs/cli-darwin-arm64': 1.9.1 + '@biomejs/cli-darwin-x64': 1.9.1 + '@biomejs/cli-linux-arm64': 1.9.1 + '@biomejs/cli-linux-arm64-musl': 1.9.1 + '@biomejs/cli-linux-x64': 1.9.1 + '@biomejs/cli-linux-x64-musl': 1.9.1 + '@biomejs/cli-win32-arm64': 1.9.1 + '@biomejs/cli-win32-x64': 1.9.1 + + '@biomejs/cli-darwin-arm64@1.9.1': optional: true - '@biomejs/cli-darwin-x64@1.8.3': + '@biomejs/cli-darwin-x64@1.9.1': optional: true - '@biomejs/cli-linux-arm64-musl@1.8.3': + '@biomejs/cli-linux-arm64-musl@1.9.1': optional: true - '@biomejs/cli-linux-arm64@1.8.3': + '@biomejs/cli-linux-arm64@1.9.1': optional: true - '@biomejs/cli-linux-x64-musl@1.8.3': + '@biomejs/cli-linux-x64-musl@1.9.1': optional: true - '@biomejs/cli-linux-x64@1.8.3': + '@biomejs/cli-linux-x64@1.9.1': optional: true - '@biomejs/cli-win32-arm64@1.8.3': + '@biomejs/cli-win32-arm64@1.9.1': optional: true - '@biomejs/cli-win32-x64@1.8.3': + '@biomejs/cli-win32-x64@1.9.1': optional: true '@clack/core@0.3.4': @@ -2896,7 +2895,7 @@ snapshots: '@emotion/memoize@0.9.0': {} - '@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1)': + '@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@emotion/babel-plugin': 11.12.0 @@ -2908,11 +2907,11 @@ snapshots: hoist-non-react-statics: 3.3.2 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 transitivePeerDependencies: - supports-color - '@emotion/react@11.11.4(@types/react@18.3.5)(react@18.3.1)': + '@emotion/react@11.11.4(@types/react@18.3.7)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.8 '@emotion/babel-plugin': 11.11.0 @@ -2924,7 +2923,7 @@ snapshots: hoist-non-react-statics: 3.3.2 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 transitivePeerDependencies: - supports-color @@ -2948,48 +2947,48 @@ snapshots: '@emotion/sheet@1.4.0': {} - '@emotion/styled@11.11.0(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1)': + '@emotion/styled@11.11.0(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@emotion/babel-plugin': 11.12.0 '@emotion/is-prop-valid': 1.3.0 - '@emotion/react': 11.11.0(@types/react@18.3.5)(react@18.3.1) + '@emotion/react': 11.11.0(@types/react@18.3.7)(react@18.3.1) '@emotion/serialize': 1.3.1 '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1) '@emotion/utils': 1.4.0 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 transitivePeerDependencies: - supports-color - '@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1)': + '@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.8 '@emotion/babel-plugin': 11.11.0 '@emotion/is-prop-valid': 1.2.2 - '@emotion/react': 11.11.0(@types/react@18.3.5)(react@18.3.1) + '@emotion/react': 11.11.0(@types/react@18.3.7)(react@18.3.1) '@emotion/serialize': 1.1.4 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 transitivePeerDependencies: - supports-color - '@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1)': + '@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.8 '@emotion/babel-plugin': 11.11.0 '@emotion/is-prop-valid': 1.2.2 - '@emotion/react': 11.11.4(@types/react@18.3.5)(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.3.7)(react@18.3.1) '@emotion/serialize': 1.1.4 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 transitivePeerDependencies: - supports-color @@ -3367,17 +3366,18 @@ snapshots: dependencies: '@swc/counter': 0.1.3 - '@tanstack/history@1.51.7': {} + '@tanstack/history@1.57.6': {} - '@tanstack/react-router@1.56.5(@tanstack/router-generator@1.56.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@tanstack/react-router@1.57.17(@tanstack/router-generator@1.57.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@tanstack/history': 1.51.7 + '@tanstack/history': 1.57.6 '@tanstack/react-store': 0.5.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@tanstack/router-generator': 1.56.4 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tiny-invariant: 1.3.3 tiny-warning: 1.0.3 + optionalDependencies: + '@tanstack/router-generator': 1.57.15 '@tanstack/react-store@0.5.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -3386,15 +3386,15 @@ snapshots: react-dom: 18.3.1(react@18.3.1) use-sync-external-store: 1.2.2(react@18.3.1) - '@tanstack/router-cli@1.56.4': + '@tanstack/router-cli@1.57.15': dependencies: - '@tanstack/router-generator': 1.56.4 + '@tanstack/router-generator': 1.57.15 chokidar: 3.6.0 yargs: 17.7.2 - '@tanstack/router-devtools@1.56.5(@tanstack/react-router@1.56.5(@tanstack/router-generator@1.56.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@tanstack/router-devtools@1.57.17(@tanstack/react-router@1.57.17(@tanstack/router-generator@1.57.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@tanstack/react-router': 1.56.5(@tanstack/router-generator@1.56.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@tanstack/react-router': 1.57.17(@tanstack/router-generator@1.57.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) clsx: 2.1.1 goober: 2.1.14(csstype@3.1.3) react: 18.3.1 @@ -3402,24 +3402,24 @@ snapshots: transitivePeerDependencies: - csstype - '@tanstack/router-generator@1.56.4': + '@tanstack/router-generator@1.57.15': dependencies: '@tanstack/virtual-file-routes': 1.56.0 prettier: 3.3.3 - tsx: 4.19.0 + tsx: 4.19.1 zod: 3.23.8 - '@tanstack/router-plugin@1.56.4(vite@5.4.3(@types/node@20.16.5))(webpack-sources@3.2.3)': + '@tanstack/router-plugin@1.57.15(vite@5.4.6(@types/node@20.16.5))(webpack-sources@3.2.3)': dependencies: '@babel/core': 7.25.2 '@babel/generator': 7.25.6 '@babel/parser': 7.25.6 '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2) '@babel/template': 7.25.0 '@babel/traverse': 7.25.6 '@babel/types': 7.25.6 - '@tanstack/router-generator': 1.56.4 + '@tanstack/router-generator': 1.57.15 '@tanstack/virtual-file-routes': 1.56.0 '@types/babel__core': 7.20.5 '@types/babel__generator': 7.6.8 @@ -3430,7 +3430,7 @@ snapshots: unplugin: 1.14.0(webpack-sources@3.2.3) zod: 3.23.8 optionalDependencies: - vite: 5.4.3(@types/node@20.16.5) + vite: 5.4.6(@types/node@20.16.5) transitivePeerDependencies: - supports-color - webpack-sources @@ -3472,31 +3472,31 @@ snapshots: '@types/react-dom@18.3.0': dependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 - '@types/react@18.3.5': + '@types/react@18.3.7': dependencies: '@types/prop-types': 15.7.12 csstype: 3.1.3 '@types/uuid@10.0.0': {} - '@vitejs/plugin-react-swc@3.7.0(vite@5.4.3(@types/node@20.16.5))': + '@vitejs/plugin-react-swc@3.7.0(vite@5.4.6(@types/node@20.16.5))': dependencies: '@swc/core': 1.6.3 - vite: 5.4.3(@types/node@20.16.5) + vite: 5.4.6(@types/node@20.16.5) transitivePeerDependencies: - '@swc/helpers' - '@yamada-ui/accordion@2.0.7(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/accordion@2.0.8(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/transitions': 1.1.3(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-descendant': 1.0.19(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/transitions': 1.1.4(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-descendant': 1.0.20(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -3504,12 +3504,12 @@ snapshots: - react-dom - supports-color - '@yamada-ui/alert@1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/alert@1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/loading': 1.1.14(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/loading': 1.1.15(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -3517,20 +3517,20 @@ snapshots: - react-dom - supports-color - '@yamada-ui/autocomplete@1.5.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/popover': 1.3.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/portal': 1.0.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-clickable': 1.2.6(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-descendant': 1.0.19(react@18.3.1) - '@yamada-ui/use-disclosure': 1.0.18(react@18.3.1) - '@yamada-ui/use-outside-click': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/autocomplete@1.5.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/popover': 1.3.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/portal': 1.0.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-clickable': 1.2.7(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-descendant': 1.0.20(react@18.3.1) + '@yamada-ui/use-disclosure': 1.0.19(react@18.3.1) + '@yamada-ui/use-outside-click': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -3538,46 +3538,46 @@ snapshots: - react-dom - supports-color - '@yamada-ui/avatar@1.2.6(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/avatar@1.2.7(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/image': 1.2.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-animation': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/image': 1.2.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-animation': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/badge@1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/badge@1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/breadcrumb@1.3.9(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/breadcrumb@1.3.10(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-value': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-value': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/button@1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/button@1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.10.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/loading': 1.1.10(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/ripple': 1.0.33(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.10.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/loading': 1.1.10(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/ripple': 1.0.33(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/utils': 1.3.1(react@18.3.1) react: 18.3.1 transitivePeerDependencies: @@ -3586,12 +3586,12 @@ snapshots: - react-dom - supports-color - '@yamada-ui/button@1.0.40(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/button@1.0.41(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/loading': 1.1.14(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/ripple': 1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/loading': 1.1.15(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/ripple': 1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -3599,24 +3599,24 @@ snapshots: - react-dom - supports-color - '@yamada-ui/card@1.0.37(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/card@1.0.38(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/carousel@1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/carousel@1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/button': 1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/core': 1.10.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/button': 1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.10.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/use-controllable-state': 1.0.16(react@18.3.1) - '@yamada-ui/use-token': 1.1.20(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-value': 1.1.20(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-token': 1.1.20(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-value': 1.1.20(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/utils': 1.3.1(react@18.3.1) embla-carousel-react: 7.1.0(react@18.3.1) react: 18.3.1 @@ -3626,15 +3626,15 @@ snapshots: - react-dom - supports-color - '@yamada-ui/checkbox@1.1.6(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/checkbox@1.1.7(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/layouts': 1.1.33(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-focus-visible': 1.1.5(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/layouts': 1.1.34(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-focus-visible': 1.1.6(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -3653,14 +3653,14 @@ snapshots: glob: 11.0.0 prettier: 3.3.3 tar: 7.4.3 - typescript: 5.5.4 + typescript: 5.6.2 - '@yamada-ui/close-button@1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/close-button@1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/ripple': 1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/ripple': 1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -3668,23 +3668,23 @@ snapshots: - react-dom - supports-color - '@yamada-ui/color-picker@1.4.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@yamada-ui/button': 1.0.40(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/input': 1.0.40(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/popover': 1.3.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/portal': 1.0.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-disclosure': 1.0.18(react@18.3.1) - '@yamada-ui/use-eye-dropper': 1.0.16(react@18.3.1) + '@yamada-ui/color-picker@1.4.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@yamada-ui/button': 1.0.41(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/input': 1.0.41(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/popover': 1.3.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/portal': 1.0.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-disclosure': 1.0.19(react@18.3.1) + '@yamada-ui/use-eye-dropper': 1.0.17(react@18.3.1) '@yamada-ui/use-latest-ref': 1.0.3(react@18.3.1) - '@yamada-ui/use-outside-click': 1.0.18(react@18.3.1) - '@yamada-ui/use-pan-event': 1.0.20(react@18.3.1) - '@yamada-ui/use-size': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/use-outside-click': 1.0.19(react@18.3.1) + '@yamada-ui/use-pan-event': 1.0.21(react@18.3.1) + '@yamada-ui/use-size': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -3692,12 +3692,12 @@ snapshots: - react-dom - supports-color - '@yamada-ui/core@1.10.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/core@1.10.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@emotion/css': 11.11.2 - '@emotion/react': 11.11.4(@types/react@18.3.5)(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.3.7)(react@18.3.1) '@emotion/sheet': 1.2.2 - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1) '@yamada-ui/portal': 1.0.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/utils': 1.3.1(react@18.3.1) csstype: 3.1.3 @@ -3708,14 +3708,14 @@ snapshots: - react-dom - supports-color - '@yamada-ui/core@1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/core@1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@emotion/css': 11.11.0 - '@emotion/react': 11.11.0(@types/react@18.3.5)(react@18.3.1) + '@emotion/react': 11.11.0(@types/react@18.3.7)(react@18.3.1) '@emotion/sheet': 1.4.0 - '@emotion/styled': 11.11.0(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) - '@yamada-ui/portal': 1.0.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@emotion/styled': 11.11.0(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1) + '@yamada-ui/portal': 1.0.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) csstype: 3.1.3 react: 18.3.1 react-fast-compare: 3.2.2 @@ -3724,25 +3724,25 @@ snapshots: - react-dom - supports-color - '@yamada-ui/editable@1.0.41(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/editable@1.0.42(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-focus': 1.0.19(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-focus': 1.0.20(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/file-button@1.1.3(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/file-button@1.1.4(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/button': 1.0.40(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/button': 1.0.41(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -3750,52 +3750,52 @@ snapshots: - react-dom - supports-color - '@yamada-ui/file-input@1.0.40(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/file-input@1.0.41(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/focus-lock@1.0.19(@types/react@18.3.5)(react@18.3.1)': + '@yamada-ui/focus-lock@1.0.20(@types/react@18.3.7)(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - react-focus-lock: 2.13.2(@types/react@18.3.5)(react@18.3.1) + react-focus-lock: 2.12.1(@types/react@18.3.7)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@yamada-ui/form-control@2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/form-control@2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) - '@yamada-ui/visually-hidden': 1.0.9(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) + '@yamada-ui/visually-hidden': 1.0.10(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/highlight@1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/highlight@1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/typography': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/typography': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/icon@1.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/icon@1.1.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.10.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-token': 1.1.20(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.10.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-token': 1.1.20(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/utils': 1.3.1(react@18.3.1) react: 18.3.1 transitivePeerDependencies: @@ -3803,148 +3803,148 @@ snapshots: - react-dom - supports-color - '@yamada-ui/icon@1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/icon@1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-token': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-token': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/image@1.2.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/image@1.2.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/indicator@1.1.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/indicator@1.1.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-animation': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-value': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-animation': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-value': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/infinite-scroll-area@1.2.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/infinite-scroll-area@1.2.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-infinite-scroll': 1.1.2(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-infinite-scroll': 1.1.3(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/input@1.0.40(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/input@1.0.41(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/file-input': 1.0.40(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-token': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/file-input': 1.0.41(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-token': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/kbd@1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/kbd@1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/layouts@1.1.33(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/layouts@1.1.34(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/link@1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/link@1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/list@1.0.37(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/list@1.0.38(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/loading@1.1.10(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/loading@1.1.10(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.10.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.1.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.10.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.1.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/portal': 1.0.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/use-timeout': 1.0.16(react@18.3.1) '@yamada-ui/utils': 1.3.1(react@18.3.1) react: 18.3.1 - react-remove-scroll: 2.6.0(@types/react@18.3.5)(react@18.3.1) + react-remove-scroll: 2.6.0(@types/react@18.3.7)(react@18.3.1) transitivePeerDependencies: - '@emotion/is-prop-valid' - '@types/react' - react-dom - supports-color - '@yamada-ui/loading@1.1.14(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/loading@1.1.15(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/portal': 1.0.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-timeout': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/portal': 1.0.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-timeout': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - react-remove-scroll: 2.6.0(@types/react@18.3.5)(react@18.3.1) + react-remove-scroll: 2.6.0(@types/react@18.3.7)(react@18.3.1) transitivePeerDependencies: - '@emotion/is-prop-valid' - '@types/react' - react-dom - supports-color - '@yamada-ui/menu@1.3.11(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/menu@1.3.12(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/popover': 1.3.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/transitions': 1.1.3(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-clickable': 1.2.6(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-descendant': 1.0.19(react@18.3.1) - '@yamada-ui/use-disclosure': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/popover': 1.3.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/transitions': 1.1.4(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-clickable': 1.2.7(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-descendant': 1.0.20(react@18.3.1) + '@yamada-ui/use-disclosure': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -3952,28 +3952,28 @@ snapshots: - react-dom - supports-color - '@yamada-ui/modal@1.3.8(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/modal@1.3.9(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/button': 1.0.40(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/close-button': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/focus-lock': 1.0.19(@types/react@18.3.5)(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/portal': 1.0.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/transitions': 1.1.3(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-value': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/button': 1.0.41(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/close-button': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/focus-lock': 1.0.20(@types/react@18.3.7)(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/portal': 1.0.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/transitions': 1.1.4(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-value': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - react-remove-scroll: 2.6.0(@types/react@18.3.5)(react@18.3.1) + react-remove-scroll: 2.6.0(@types/react@18.3.7)(react@18.3.1) transitivePeerDependencies: - '@emotion/is-prop-valid' - '@types/react' - react-dom - supports-color - '@yamada-ui/motion@2.1.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/motion@2.1.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.10.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.10.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/utils': 1.3.1(react@18.3.1) framer-motion: 11.5.4(@emotion/is-prop-valid@1.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 @@ -3983,10 +3983,10 @@ snapshots: - react-dom - supports-color - '@yamada-ui/motion@2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/motion@2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) framer-motion: 11.3.24(@emotion/is-prop-valid@1.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 transitivePeerDependencies: @@ -3995,37 +3995,37 @@ snapshots: - react-dom - supports-color - '@yamada-ui/native-select@1.0.42(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/native-select@1.0.43(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/native-table@1.0.37(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/native-table@1.0.38(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/notice@1.1.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/notice@1.1.2(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/alert': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/close-button': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/portal': 1.0.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-timeout': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/alert': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/close-button': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/portal': 1.0.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-timeout': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4033,29 +4033,29 @@ snapshots: - react-dom - supports-color - '@yamada-ui/number-input@1.1.12(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/number-input@1.1.13(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-counter': 1.0.19(react@18.3.1) - '@yamada-ui/use-event-listener': 1.0.18(react@18.3.1) - '@yamada-ui/use-interval': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-counter': 1.0.20(react@18.3.1) + '@yamada-ui/use-event-listener': 1.0.19(react@18.3.1) + '@yamada-ui/use-interval': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/pagination@1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/pagination@1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/ripple': 1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-value': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/ripple': 1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-value': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4063,30 +4063,30 @@ snapshots: - react-dom - supports-color - '@yamada-ui/pin-input@1.0.39(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/pin-input@1.0.40(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-descendant': 1.0.19(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-descendant': 1.0.20(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/popover@1.3.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/popover@1.3.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/close-button': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/transitions': 1.1.3(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-animation': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-disclosure': 1.0.18(react@18.3.1) - '@yamada-ui/use-focus': 1.0.19(react@18.3.1) - '@yamada-ui/use-popper': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/close-button': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/transitions': 1.1.4(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-animation': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-disclosure': 1.0.19(react@18.3.1) + '@yamada-ui/use-focus': 1.0.20(react@18.3.1) + '@yamada-ui/use-popper': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4100,35 +4100,35 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@yamada-ui/portal@1.0.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/portal@1.0.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@yamada-ui/progress@1.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/progress@1.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-animation': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-token': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-value': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-animation': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-token': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-value': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/providers@1.2.5(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/providers@1.2.6(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/react': 11.11.0(@types/react@18.3.5)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/loading': 1.1.14(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/notice': 1.1.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/theme': 1.17.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@emotion/react': 11.11.0(@types/react@18.3.7)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/loading': 1.1.15(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/notice': 1.1.2(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/theme': 1.18.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: @@ -4136,29 +4136,29 @@ snapshots: - '@types/react' - supports-color - '@yamada-ui/radio@1.2.6(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/radio@1.2.7(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/layouts': 1.1.33(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-focus-visible': 1.1.5(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/layouts': 1.1.34(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-focus-visible': 1.1.6(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/rating@1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/rating@1.0.40(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-focus-visible': 1.1.5(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-focus-visible': 1.1.6(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4166,107 +4166,107 @@ snapshots: - react-dom - supports-color - '@yamada-ui/react@1.5.0(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(framer-motion@11.5.4(@emotion/is-prop-valid@1.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@emotion/react': 11.11.0(@types/react@18.3.5)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) - '@yamada-ui/accordion': 2.0.7(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/alert': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/autocomplete': 1.5.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/avatar': 1.2.6(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/badge': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/breadcrumb': 1.3.9(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/button': 1.0.40(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/card': 1.0.37(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/checkbox': 1.1.6(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/close-button': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/color-picker': 1.4.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/editable': 1.0.41(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/file-button': 1.1.3(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/file-input': 1.0.40(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/focus-lock': 1.0.19(@types/react@18.3.5)(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/highlight': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/image': 1.2.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/indicator': 1.1.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/infinite-scroll-area': 1.2.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/input': 1.0.40(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/kbd': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/layouts': 1.1.33(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/link': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/list': 1.0.37(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/loading': 1.1.14(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/menu': 1.3.11(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/modal': 1.3.8(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/native-select': 1.0.42(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/native-table': 1.0.37(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/notice': 1.1.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/number-input': 1.1.12(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/pagination': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/pin-input': 1.0.39(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/popover': 1.3.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/portal': 1.0.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/progress': 1.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/providers': 1.2.5(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/radio': 1.2.6(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/rating': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/reorder': 2.0.8(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/resizable': 1.1.10(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/ripple': 1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/scroll-area': 1.0.36(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/segmented-control': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/select': 1.5.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/skeleton': 1.1.3(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/slider': 1.2.3(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/snacks': 1.1.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/stat': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/stepper': 1.0.38(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/switch': 1.1.7(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/tabs': 1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/tag': 1.0.38(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/textarea': 1.1.27(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/theme': 1.17.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/theme-tools': 1.1.1(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/toggle': 1.0.19(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/tooltip': 1.1.9(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/transitions': 1.1.3(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/typography': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-animation': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/react@1.5.1(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(framer-motion@11.5.4(@emotion/is-prop-valid@1.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@emotion/react': 11.11.0(@types/react@18.3.7)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1) + '@yamada-ui/accordion': 2.0.8(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/alert': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/autocomplete': 1.5.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/avatar': 1.2.7(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/badge': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/breadcrumb': 1.3.10(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/button': 1.0.41(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/card': 1.0.38(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/checkbox': 1.1.7(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/close-button': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/color-picker': 1.4.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/editable': 1.0.42(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/file-button': 1.1.4(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/file-input': 1.0.41(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/focus-lock': 1.0.20(@types/react@18.3.7)(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/highlight': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/image': 1.2.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/indicator': 1.1.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/infinite-scroll-area': 1.2.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/input': 1.0.41(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/kbd': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/layouts': 1.1.34(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/link': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/list': 1.0.38(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/loading': 1.1.15(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/menu': 1.3.12(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/modal': 1.3.9(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/native-select': 1.0.43(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/native-table': 1.0.38(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/notice': 1.1.2(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/number-input': 1.1.13(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/pagination': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/pin-input': 1.0.40(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/popover': 1.3.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/portal': 1.0.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/progress': 1.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/providers': 1.2.6(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/radio': 1.2.7(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/rating': 1.0.40(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/reorder': 2.0.9(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/resizable': 1.1.11(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/ripple': 1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/scroll-area': 1.0.37(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/segmented-control': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/select': 1.5.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/skeleton': 1.1.4(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/slider': 1.2.4(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/snacks': 1.1.2(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/stat': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/stepper': 1.0.39(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/switch': 1.1.8(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/tabs': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/tag': 1.0.39(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/textarea': 1.1.28(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/theme': 1.18.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/theme-tools': 1.1.2(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/toggle': 1.0.20(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/tooltip': 1.1.10(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/transitions': 1.1.4(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/typography': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-animation': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/use-boolean': 1.0.3(react@18.3.1) - '@yamada-ui/use-breakpoint': 1.4.6(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-clickable': 1.2.6(react@18.3.1) - '@yamada-ui/use-clipboard': 1.0.19(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-counter': 1.0.19(react@18.3.1) - '@yamada-ui/use-descendant': 1.0.19(react@18.3.1) - '@yamada-ui/use-disclosure': 1.0.18(react@18.3.1) - '@yamada-ui/use-event-listener': 1.0.18(react@18.3.1) - '@yamada-ui/use-eye-dropper': 1.0.16(react@18.3.1) - '@yamada-ui/use-focus': 1.0.19(react@18.3.1) - '@yamada-ui/use-focus-visible': 1.1.5(react@18.3.1) - '@yamada-ui/use-hover': 1.0.19(react@18.3.1) - '@yamada-ui/use-idle': 1.0.19(react@18.3.1) - '@yamada-ui/use-infinite-scroll': 1.1.2(react@18.3.1) - '@yamada-ui/use-interval': 1.0.18(react@18.3.1) + '@yamada-ui/use-breakpoint': 1.4.7(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-clickable': 1.2.7(react@18.3.1) + '@yamada-ui/use-clipboard': 1.0.20(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-counter': 1.0.20(react@18.3.1) + '@yamada-ui/use-descendant': 1.0.20(react@18.3.1) + '@yamada-ui/use-disclosure': 1.0.19(react@18.3.1) + '@yamada-ui/use-event-listener': 1.0.19(react@18.3.1) + '@yamada-ui/use-eye-dropper': 1.0.17(react@18.3.1) + '@yamada-ui/use-focus': 1.0.20(react@18.3.1) + '@yamada-ui/use-focus-visible': 1.1.6(react@18.3.1) + '@yamada-ui/use-hover': 1.0.20(react@18.3.1) + '@yamada-ui/use-idle': 1.0.20(react@18.3.1) + '@yamada-ui/use-infinite-scroll': 1.1.3(react@18.3.1) + '@yamada-ui/use-interval': 1.0.19(react@18.3.1) '@yamada-ui/use-latest-ref': 1.0.3(react@18.3.1) - '@yamada-ui/use-local-storage': 1.0.19(react@18.3.1) - '@yamada-ui/use-media-query': 1.0.45(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-os': 1.0.19(react@18.3.1) - '@yamada-ui/use-outside-click': 1.0.18(react@18.3.1) - '@yamada-ui/use-pan-event': 1.0.20(react@18.3.1) - '@yamada-ui/use-popper': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-previous': 1.0.18(react@18.3.1) - '@yamada-ui/use-resize-observer': 1.0.18(react@18.3.1) - '@yamada-ui/use-size': 1.0.18(react@18.3.1) - '@yamada-ui/use-timeout': 1.0.18(react@18.3.1) - '@yamada-ui/use-token': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-value': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-window-event': 1.0.19(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) - '@yamada-ui/visually-hidden': 1.0.9(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-local-storage': 1.0.20(react@18.3.1) + '@yamada-ui/use-media-query': 1.0.46(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-os': 1.0.20(react@18.3.1) + '@yamada-ui/use-outside-click': 1.0.19(react@18.3.1) + '@yamada-ui/use-pan-event': 1.0.21(react@18.3.1) + '@yamada-ui/use-popper': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-previous': 1.0.19(react@18.3.1) + '@yamada-ui/use-resize-observer': 1.0.19(react@18.3.1) + '@yamada-ui/use-size': 1.0.19(react@18.3.1) + '@yamada-ui/use-timeout': 1.0.19(react@18.3.1) + '@yamada-ui/use-token': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-value': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-window-event': 1.0.20(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) + '@yamada-ui/visually-hidden': 1.0.10(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) framer-motion: 11.5.4(@emotion/is-prop-valid@1.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -4275,12 +4275,12 @@ snapshots: - '@types/react' - supports-color - '@yamada-ui/reorder@2.0.8(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/reorder@2.0.9(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4288,22 +4288,22 @@ snapshots: - react-dom - supports-color - '@yamada-ui/resizable@1.1.10(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/resizable@1.1.11(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - react-resizable-panels: 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-resizable-panels: 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/ripple@1.0.33(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/ripple@1.0.33(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.10.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.1.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.10.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.1.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/utils': 1.3.1(react@18.3.1) react: 18.3.1 transitivePeerDependencies: @@ -4312,11 +4312,11 @@ snapshots: - react-dom - supports-color - '@yamada-ui/ripple@1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/ripple@1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4324,24 +4324,24 @@ snapshots: - react-dom - supports-color - '@yamada-ui/scroll-area@1.0.36(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/scroll-area@1.0.37(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/segmented-control@1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/segmented-control@1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-descendant': 1.0.19(react@18.3.1) - '@yamada-ui/use-focus-visible': 1.1.5(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-descendant': 1.0.20(react@18.3.1) + '@yamada-ui/use-focus-visible': 1.1.6(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4349,20 +4349,20 @@ snapshots: - react-dom - supports-color - '@yamada-ui/select@1.5.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/popover': 1.3.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/portal': 1.0.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-clickable': 1.2.6(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-descendant': 1.0.19(react@18.3.1) - '@yamada-ui/use-disclosure': 1.0.18(react@18.3.1) - '@yamada-ui/use-outside-click': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/select@1.5.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/popover': 1.3.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/portal': 1.0.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-clickable': 1.2.7(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-descendant': 1.0.20(react@18.3.1) + '@yamada-ui/use-disclosure': 1.0.19(react@18.3.1) + '@yamada-ui/use-outside-click': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4370,44 +4370,44 @@ snapshots: - react-dom - supports-color - '@yamada-ui/skeleton@1.1.3(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/skeleton@1.1.4(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-animation': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-previous': 1.0.18(react@18.3.1) - '@yamada-ui/use-value': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-animation': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-previous': 1.0.19(react@18.3.1) + '@yamada-ui/use-value': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/slider@1.2.3(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/slider@1.2.4(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) '@yamada-ui/use-latest-ref': 1.0.3(react@18.3.1) - '@yamada-ui/use-pan-event': 1.0.20(react@18.3.1) - '@yamada-ui/use-size': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/use-pan-event': 1.0.21(react@18.3.1) + '@yamada-ui/use-size': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/snacks@1.1.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/snacks@1.1.2(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/alert': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/close-button': 1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-timeout': 1.0.18(react@18.3.1) - '@yamada-ui/use-token': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-value': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/alert': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/close-button': 1.0.39(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-timeout': 1.0.19(react@18.3.1) + '@yamada-ui/use-token': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-value': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4415,35 +4415,35 @@ snapshots: - react-dom - supports-color - '@yamada-ui/stat@1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/stat@1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/stepper@1.0.38(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/stepper@1.0.39(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-descendant': 1.0.19(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-descendant': 1.0.20(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/switch@1.1.7(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/switch@1.1.8(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/checkbox': 1.1.6(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/checkbox': 1.1.7(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4451,15 +4451,15 @@ snapshots: - react-dom - supports-color - '@yamada-ui/tabs@1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/tabs@1.0.38(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/ripple': 1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-clickable': 1.2.6(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/use-descendant': 1.0.19(react@18.3.1) - '@yamada-ui/use-disclosure': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/ripple': 1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-clickable': 1.2.7(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/use-descendant': 1.0.20(react@18.3.1) + '@yamada-ui/use-disclosure': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4467,56 +4467,56 @@ snapshots: - react-dom - supports-color - '@yamada-ui/tag@1.0.38(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/tag@1.0.39(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/icon': 1.1.4(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-clickable': 1.2.6(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/icon': 1.1.5(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-clickable': 1.2.7(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/textarea@1.1.27(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/textarea@1.1.28(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/form-control': 2.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/form-control': 2.1.1(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/theme-tools@1.1.1(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/theme-tools@1.1.2(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/theme': 1.17.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/theme': 1.18.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) transitivePeerDependencies: - '@types/react' - react - react-dom - supports-color - '@yamada-ui/theme@1.17.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/theme@1.18.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) transitivePeerDependencies: - '@types/react' - react - react-dom - supports-color - '@yamada-ui/toggle@1.0.19(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/toggle@1.0.20(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/ripple': 1.0.36(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-controllable-state': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/ripple': 1.0.37(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-controllable-state': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4524,17 +4524,17 @@ snapshots: - react-dom - supports-color - '@yamada-ui/tooltip@1.1.9(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/tooltip@1.1.10(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/portal': 1.0.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/transitions': 1.1.3(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-disclosure': 1.0.18(react@18.3.1) - '@yamada-ui/use-event-listener': 1.0.18(react@18.3.1) - '@yamada-ui/use-outside-click': 1.0.18(react@18.3.1) - '@yamada-ui/use-popper': 1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/portal': 1.0.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/transitions': 1.1.4(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-disclosure': 1.0.19(react@18.3.1) + '@yamada-ui/use-event-listener': 1.0.19(react@18.3.1) + '@yamada-ui/use-outside-click': 1.0.19(react@18.3.1) + '@yamada-ui/use-popper': 1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4542,12 +4542,12 @@ snapshots: - react-dom - supports-color - '@yamada-ui/transitions@1.1.3(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/transitions@1.1.4(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/motion': 2.2.0(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-value': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/motion': 2.2.1(@emotion/is-prop-valid@1.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-value': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4555,22 +4555,22 @@ snapshots: - react-dom - supports-color - '@yamada-ui/typography@1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/typography@1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/use-animation@1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/use-animation@1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/use-boolean': 1.0.3(react@18.3.1) - '@yamada-ui/use-event-listener': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/use-event-listener': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) csstype: 3.1.3 react: 18.3.1 transitivePeerDependencies: @@ -4582,9 +4582,9 @@ snapshots: dependencies: react: 18.3.1 - '@yamada-ui/use-breakpoint@1.4.3(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/use-breakpoint@1.4.3(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.10.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.10.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/utils': 1.3.1(react@18.3.1) react: 18.3.1 transitivePeerDependencies: @@ -4592,25 +4592,25 @@ snapshots: - react-dom - supports-color - '@yamada-ui/use-breakpoint@1.4.6(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/use-breakpoint@1.4.7(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/use-clickable@1.2.6(react@18.3.1)': + '@yamada-ui/use-clickable@1.2.7(react@18.3.1)': dependencies: - '@yamada-ui/use-event-listener': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/use-event-listener': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-clipboard@1.0.19(react@18.3.1)': + '@yamada-ui/use-clipboard@1.0.20(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) copy-to-clipboard: 3.3.3 react: 18.3.1 @@ -4619,82 +4619,82 @@ snapshots: '@yamada-ui/utils': 1.3.1(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-controllable-state@1.0.18(react@18.3.1)': + '@yamada-ui/use-controllable-state@1.0.19(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-counter@1.0.19(react@18.3.1)': + '@yamada-ui/use-counter@1.0.20(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-descendant@1.0.19(react@18.3.1)': + '@yamada-ui/use-descendant@1.0.20(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-disclosure@1.0.18(react@18.3.1)': + '@yamada-ui/use-disclosure@1.0.19(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-event-listener@1.0.18(react@18.3.1)': + '@yamada-ui/use-event-listener@1.0.19(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-eye-dropper@1.0.16(react@18.3.1)': + '@yamada-ui/use-eye-dropper@1.0.17(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-focus-visible@1.1.5(react@18.3.1)': + '@yamada-ui/use-focus-visible@1.1.6(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-focus@1.0.19(react@18.3.1)': + '@yamada-ui/use-focus@1.0.20(react@18.3.1)': dependencies: - '@yamada-ui/use-event-listener': 1.0.18(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/use-event-listener': 1.0.19(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-hover@1.0.19(react@18.3.1)': + '@yamada-ui/use-hover@1.0.20(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-idle@1.0.19(react@18.3.1)': + '@yamada-ui/use-idle@1.0.20(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-infinite-scroll@1.1.2(react@18.3.1)': + '@yamada-ui/use-infinite-scroll@1.1.3(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-interval@1.0.18(react@18.3.1)': + '@yamada-ui/use-interval@1.0.19(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 '@yamada-ui/use-latest-ref@1.0.3(react@18.3.1)': dependencies: react: 18.3.1 - '@yamada-ui/use-local-storage@1.0.19(react@18.3.1)': + '@yamada-ui/use-local-storage@1.0.20(react@18.3.1)': dependencies: - '@yamada-ui/use-window-event': 1.0.19(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/use-window-event': 1.0.20(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-media-query@1.0.45(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/use-media-query@1.0.46(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/providers': 1.2.5(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/providers': 1.2.6(@emotion/is-prop-valid@1.3.0)(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.0(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react@18.3.1))(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@emotion/is-prop-valid' @@ -4704,48 +4704,48 @@ snapshots: - react-dom - supports-color - '@yamada-ui/use-os@1.0.19(react@18.3.1)': + '@yamada-ui/use-os@1.0.20(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-outside-click@1.0.18(react@18.3.1)': + '@yamada-ui/use-outside-click@1.0.19(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-pan-event@1.0.20(react@18.3.1)': + '@yamada-ui/use-pan-event@1.0.21(react@18.3.1)': dependencies: '@yamada-ui/use-latest-ref': 1.0.3(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) framesync: 6.1.2 react: 18.3.1 - '@yamada-ui/use-popper@1.0.35(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/use-popper@1.0.36(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@popperjs/core': 2.11.8 - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-value': 1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-value': 1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/use-previous@1.0.18(react@18.3.1)': + '@yamada-ui/use-previous@1.0.19(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-resize-observer@1.0.18(react@18.3.1)': + '@yamada-ui/use-resize-observer@1.0.19(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-size@1.0.18(react@18.3.1)': + '@yamada-ui/use-size@1.0.19(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 '@yamada-ui/use-timeout@1.0.16(react@18.3.1)': @@ -4753,14 +4753,14 @@ snapshots: '@yamada-ui/utils': 1.3.1(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-timeout@1.0.18(react@18.3.1)': + '@yamada-ui/use-timeout@1.0.19(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 - '@yamada-ui/use-token@1.1.20(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/use-token@1.1.20(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.10.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.10.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/utils': 1.3.1(react@18.3.1) react: 18.3.1 transitivePeerDependencies: @@ -4768,20 +4768,20 @@ snapshots: - react-dom - supports-color - '@yamada-ui/use-token@1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/use-token@1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/use-value@1.1.20(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/use-value@1.1.20(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.10.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-breakpoint': 1.4.3(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/core': 1.10.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-breakpoint': 1.4.3(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@yamada-ui/utils': 1.3.1(react@18.3.1) react: 18.3.1 transitivePeerDependencies: @@ -4789,20 +4789,20 @@ snapshots: - react-dom - supports-color - '@yamada-ui/use-value@1.1.23(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/use-value@1.1.24(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/use-breakpoint': 1.4.6(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/use-breakpoint': 1.4.7(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' - react-dom - supports-color - '@yamada-ui/use-window-event@1.0.19(react@18.3.1)': + '@yamada-ui/use-window-event@1.0.20(react@18.3.1)': dependencies: - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 '@yamada-ui/utils@1.3.1(react@18.3.1)': @@ -4810,15 +4810,15 @@ snapshots: color2k: 2.0.3 react: 18.3.1 - '@yamada-ui/utils@1.4.0(react@18.3.1)': + '@yamada-ui/utils@1.5.0(react@18.3.1)': dependencies: color2k: 2.0.3 react: 18.3.1 - '@yamada-ui/visually-hidden@1.0.9(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@yamada-ui/visually-hidden@1.0.10(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@yamada-ui/core': 1.13.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@yamada-ui/utils': 1.4.0(react@18.3.1) + '@yamada-ui/core': 1.14.0(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@yamada-ui/utils': 1.5.0(react@18.3.1) react: 18.3.1 transitivePeerDependencies: - '@types/react' @@ -5142,7 +5142,7 @@ snapshots: get-nonce@1.0.1: {} - get-tsconfig@4.8.0: + get-tsconfig@4.8.1: dependencies: resolve-pkg-maps: 1.0.0 @@ -5359,17 +5359,17 @@ snapshots: react-fast-compare@3.2.2: {} - react-focus-lock@2.13.2(@types/react@18.3.5)(react@18.3.1): + react-focus-lock@2.12.1(@types/react@18.3.7)(react@18.3.1): dependencies: '@babel/runtime': 7.25.6 focus-lock: 1.3.5 prop-types: 15.8.1 react: 18.3.1 react-clientside-effect: 1.2.6(react@18.3.1) - use-callback-ref: 1.3.2(@types/react@18.3.5)(react@18.3.1) - use-sidecar: 1.1.2(@types/react@18.3.5)(react@18.3.1) + use-callback-ref: 1.3.2(@types/react@18.3.7)(react@18.3.1) + use-sidecar: 1.1.2(@types/react@18.3.7)(react@18.3.1) optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 react-hook-form@7.53.0(react@18.3.1): dependencies: @@ -5377,38 +5377,38 @@ snapshots: react-is@16.13.1: {} - react-remove-scroll-bar@2.3.6(@types/react@18.3.5)(react@18.3.1): + react-remove-scroll-bar@2.3.6(@types/react@18.3.7)(react@18.3.1): dependencies: react: 18.3.1 - react-style-singleton: 2.2.1(@types/react@18.3.5)(react@18.3.1) + react-style-singleton: 2.2.1(@types/react@18.3.7)(react@18.3.1) tslib: 2.7.0 optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 - react-remove-scroll@2.6.0(@types/react@18.3.5)(react@18.3.1): + react-remove-scroll@2.6.0(@types/react@18.3.7)(react@18.3.1): dependencies: react: 18.3.1 - react-remove-scroll-bar: 2.3.6(@types/react@18.3.5)(react@18.3.1) - react-style-singleton: 2.2.1(@types/react@18.3.5)(react@18.3.1) + react-remove-scroll-bar: 2.3.6(@types/react@18.3.7)(react@18.3.1) + react-style-singleton: 2.2.1(@types/react@18.3.7)(react@18.3.1) tslib: 2.7.0 - use-callback-ref: 1.3.2(@types/react@18.3.5)(react@18.3.1) - use-sidecar: 1.1.2(@types/react@18.3.5)(react@18.3.1) + use-callback-ref: 1.3.2(@types/react@18.3.7)(react@18.3.1) + use-sidecar: 1.1.2(@types/react@18.3.7)(react@18.3.1) optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 - react-resizable-panels@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-resizable-panels@2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-style-singleton@2.2.1(@types/react@18.3.5)(react@18.3.1): + react-style-singleton@2.2.1(@types/react@18.3.7)(react@18.3.1): dependencies: get-nonce: 1.0.1 invariant: 2.2.4 react: 18.3.1 tslib: 2.7.0 optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 react@18.3.1: dependencies: @@ -5539,22 +5539,22 @@ snapshots: toggle-selection@1.0.6: {} - tsconfck@3.1.0(typescript@5.5.4): + tsconfck@3.1.0(typescript@5.6.2): optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.2 tslib@2.4.0: {} tslib@2.7.0: {} - tsx@4.19.0: + tsx@4.19.1: dependencies: esbuild: 0.23.1 - get-tsconfig: 4.8.0 + get-tsconfig: 4.8.1 optionalDependencies: fsevents: 2.3.3 - typescript@5.5.4: {} + typescript@5.6.2: {} undici-types@6.19.8: {} @@ -5571,20 +5571,20 @@ snapshots: escalade: 3.2.0 picocolors: 1.1.0 - use-callback-ref@1.3.2(@types/react@18.3.5)(react@18.3.1): + use-callback-ref@1.3.2(@types/react@18.3.7)(react@18.3.1): dependencies: react: 18.3.1 tslib: 2.7.0 optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 - use-sidecar@1.1.2(@types/react@18.3.5)(react@18.3.1): + use-sidecar@1.1.2(@types/react@18.3.7)(react@18.3.1): dependencies: detect-node-es: 1.1.0 react: 18.3.1 tslib: 2.7.0 optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 use-sync-external-store@1.2.2(react@18.3.1): dependencies: @@ -5592,18 +5592,18 @@ snapshots: uuid@10.0.0: {} - vite-tsconfig-paths@4.3.2(typescript@5.5.4)(vite@5.4.3(@types/node@20.16.5)): + vite-tsconfig-paths@4.3.2(typescript@5.6.2)(vite@5.4.6(@types/node@20.16.5)): dependencies: debug: 4.3.5 globrex: 0.1.2 - tsconfck: 3.1.0(typescript@5.5.4) + tsconfck: 3.1.0(typescript@5.6.2) optionalDependencies: - vite: 5.4.3(@types/node@20.16.5) + vite: 5.4.6(@types/node@20.16.5) transitivePeerDependencies: - supports-color - typescript - vite@5.4.3(@types/node@20.16.5): + vite@5.4.6(@types/node@20.16.5): dependencies: esbuild: 0.21.5 postcss: 8.4.45 @@ -5655,9 +5655,9 @@ snapshots: zod@3.23.8: {} - zustand@4.5.5(@types/react@18.3.5)(react@18.3.1): + zustand@4.5.5(@types/react@18.3.7)(react@18.3.1): dependencies: use-sync-external-store: 1.2.2(react@18.3.1) optionalDependencies: - '@types/react': 18.3.5 + '@types/react': 18.3.7 react: 18.3.1 From 931dd9d7baa4a1d0b9275cef95e6bf3e9a336f5a Mon Sep 17 00:00:00 2001 From: Simirall <37952374+Simirall@users.noreply.github.com> Date: Tue, 17 Sep 2024 23:41:11 +0900 Subject: [PATCH 6/6] iroiro fix --- biome.json | 4 ++ src/main.tsx | 2 +- src/pages/-components/Header.tsx | 24 +++++++- src/pages/-components/HeaderMenu.tsx | 5 +- src/pages/-components/LogoutDialog.tsx | 8 ++- src/routeTree.gen.ts | 83 +++++++++++++++++++++++--- src/store/login.ts | 2 + src/theme/components/menu.ts | 11 +++- 8 files changed, 122 insertions(+), 17 deletions(-) diff --git a/biome.json b/biome.json index e065f54..d113451 100644 --- a/biome.json +++ b/biome.json @@ -11,6 +11,10 @@ }, "linter": { "rules": { + "correctness": { + "noUnusedImports": "warn", + "noUnusedVariables": "warn" + }, "style": { "noNonNullAssertion": "warn" } diff --git a/src/main.tsx b/src/main.tsx index bd7e64d..8885d87 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -4,7 +4,7 @@ import ReactDOM from "react-dom/client"; import { SWRConfig } from "swr"; import { Router } from "./Router"; -import { theme, config } from "./theme/theme"; +import { config, theme } from "./theme/theme"; import { fetcher } from "./utils/fetcher"; const injectThemeSchemeScript = () => { diff --git a/src/pages/-components/Header.tsx b/src/pages/-components/Header.tsx index cc9e391..3ce0ff2 100644 --- a/src/pages/-components/Header.tsx +++ b/src/pages/-components/Header.tsx @@ -1,4 +1,4 @@ -import { Link } from "@tanstack/react-router"; +import { useMatchRoute, useNavigate } from "@tanstack/react-router"; import { Avatar, HStack, Heading } from "@yamada-ui/react"; import { HeaderMenu } from "./HeaderMenu"; @@ -8,6 +8,8 @@ import { useMySelfStore } from "@/store/user"; export const Header = () => { const { mySelf } = useMySelfStore(); + const navigate = useNavigate(); + const matchRoute = useMatchRoute(); return ( { py="2" bg="bg" color="darkText" + pos="sticky" + top="0" + zIndex="1" > - + { + if (matchRoute({ to: "/" })) { + window.scroll({ + top: 0, + behavior: "smooth", + }); + } else { + navigate({ to: "/" }); + } + }} + > at Dusk. {mySelf ? ( diff --git a/src/pages/-components/HeaderMenu.tsx b/src/pages/-components/HeaderMenu.tsx index 0ab34cd..32edae1 100644 --- a/src/pages/-components/HeaderMenu.tsx +++ b/src/pages/-components/HeaderMenu.tsx @@ -5,6 +5,7 @@ import { Menu, MenuButton, MenuList, + VStack, useDisclosure, } from "@yamada-ui/react"; @@ -19,9 +20,9 @@ export const HeaderMenu = () => { - + - + diff --git a/src/pages/-components/LogoutDialog.tsx b/src/pages/-components/LogoutDialog.tsx index 58b8d3d..49004a5 100644 --- a/src/pages/-components/LogoutDialog.tsx +++ b/src/pages/-components/LogoutDialog.tsx @@ -1,6 +1,7 @@ import { Dialog } from "@yamada-ui/react"; import { useLoginStore } from "@/store/login"; +import { useNavigate } from "@tanstack/react-router"; export const LogoutDialog = ({ isOpen, @@ -10,12 +11,17 @@ export const LogoutDialog = ({ onClose: () => void; }) => { const { logout } = useLoginStore(); + const navigate = useNavigate(); + return ( { + logout(); + navigate({ to: "/login" }); + }} cancel="しない" onCancel={onClose} /> diff --git a/src/routeTree.gen.ts b/src/routeTree.gen.ts index ee4bac1..af8f88d 100644 --- a/src/routeTree.gen.ts +++ b/src/routeTree.gen.ts @@ -97,15 +97,80 @@ declare module "@tanstack/react-router" { // Create and export the route tree -export const routeTree = rootRoute.addChildren({ - IndexRoute, - LoginRoute: LoginRoute.addChildren({ - LoginLayoutRoute: LoginLayoutRoute.addChildren({ - LoginLayoutGetTokenRoute, - LoginLayoutIndexLazyRoute, - }), - }), -}) +interface LoginLayoutRouteChildren { + LoginLayoutGetTokenRoute: typeof LoginLayoutGetTokenRoute + LoginLayoutIndexLazyRoute: typeof LoginLayoutIndexLazyRoute +} + +const LoginLayoutRouteChildren: LoginLayoutRouteChildren = { + LoginLayoutGetTokenRoute: LoginLayoutGetTokenRoute, + LoginLayoutIndexLazyRoute: LoginLayoutIndexLazyRoute, +} + +const LoginLayoutRouteWithChildren = LoginLayoutRoute._addFileChildren( + LoginLayoutRouteChildren, +) + +interface LoginRouteChildren { + LoginLayoutRoute: typeof LoginLayoutRouteWithChildren +} + +const LoginRouteChildren: LoginRouteChildren = { + LoginLayoutRoute: LoginLayoutRouteWithChildren, +} + +const LoginRouteWithChildren = LoginRoute._addFileChildren(LoginRouteChildren) + +export interface FileRoutesByFullPath { + "/": typeof IndexRoute + "/login": typeof LoginLayoutRouteWithChildren + "/login/getToken": typeof LoginLayoutGetTokenRoute + "/login/": typeof LoginLayoutIndexLazyRoute +} + +export interface FileRoutesByTo { + "/": typeof IndexRoute + "/login": typeof LoginLayoutIndexLazyRoute + "/login/getToken": typeof LoginLayoutGetTokenRoute +} + +export interface FileRoutesById { + __root__: typeof rootRoute + "/": typeof IndexRoute + "/login": typeof LoginRouteWithChildren + "/login/_layout": typeof LoginLayoutRouteWithChildren + "/login/_layout/getToken": typeof LoginLayoutGetTokenRoute + "/login/_layout/": typeof LoginLayoutIndexLazyRoute +} + +export interface FileRouteTypes { + fileRoutesByFullPath: FileRoutesByFullPath + fullPaths: "/" | "/login" | "/login/getToken" | "/login/" + fileRoutesByTo: FileRoutesByTo + to: "/" | "/login" | "/login/getToken" + id: + | "__root__" + | "/" + | "/login" + | "/login/_layout" + | "/login/_layout/getToken" + | "/login/_layout/" + fileRoutesById: FileRoutesById +} + +export interface RootRouteChildren { + IndexRoute: typeof IndexRoute + LoginRoute: typeof LoginRouteWithChildren +} + +const rootRouteChildren: RootRouteChildren = { + IndexRoute: IndexRoute, + LoginRoute: LoginRouteWithChildren, +} + +export const routeTree = rootRoute + ._addFileChildren(rootRouteChildren) + ._addFileTypes() /* prettier-ignore-end */ diff --git a/src/store/login.ts b/src/store/login.ts index 79dc257..2a6f136 100644 --- a/src/store/login.ts +++ b/src/store/login.ts @@ -26,6 +26,8 @@ export const useLoginStore = create()( logout: () => { set(() => ({ isLogin: false, + token: undefined, + instance: undefined, })); useMySelfStore.setState({ mySelf: undefined, diff --git a/src/theme/components/menu.ts b/src/theme/components/menu.ts index 2ae915e..8746712 100644 --- a/src/theme/components/menu.ts +++ b/src/theme/components/menu.ts @@ -4,10 +4,17 @@ import { initialThemeScheme } from "../theme"; import type { ComponentMultiStyle, MenuProps } from "@yamada-ui/react"; -const YmdMenu: ComponentMultiStyle = defaultTheme.components.Menu; +const YmdMenu: ComponentMultiStyle<"Menu", MenuProps> = + defaultTheme.components.Menu; -export const Menu: ComponentMultiStyle = { +export const Menu: ComponentMultiStyle<"Menu", MenuProps> = { baseStyle: ({ theme, themeScheme, colorMode }) => ({ + ...YmdMenu.baseStyle, + content: { + // @ts-expect-error contentはあります! + ...YmdMenu.baseStyle?.content, + minW: "unset", + }, list: { // @ts-expect-error listはあります! ...YmdMenu.baseStyle?.list,