feat: page set
This commit is contained in:
		
							parent
							
								
									7620d64854
								
							
						
					
					
						commit
						ab2f73af70
					
				
					 5 changed files with 232 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -13,6 +13,7 @@
 | 
			
		|||
  "dependencies": {
 | 
			
		||||
    "@radix-ui/react-icons": "^1.3.0",
 | 
			
		||||
    "@radix-ui/react-label": "^2.0.2",
 | 
			
		||||
    "@radix-ui/react-popover": "^1.0.7",
 | 
			
		||||
    "@radix-ui/react-radio-group": "^1.1.3",
 | 
			
		||||
    "@radix-ui/react-separator": "^1.0.3",
 | 
			
		||||
    "@radix-ui/react-slot": "^1.0.2",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										31
									
								
								packages/client/src/components/ui/popover.tsx
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								packages/client/src/components/ui/popover.tsx
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,31 @@
 | 
			
		|||
import * as React from "react"
 | 
			
		||||
import * as PopoverPrimitive from "@radix-ui/react-popover"
 | 
			
		||||
 | 
			
		||||
import { cn } from "@/lib/utils"
 | 
			
		||||
 | 
			
		||||
const Popover = PopoverPrimitive.Root
 | 
			
		||||
 | 
			
		||||
const PopoverTrigger = PopoverPrimitive.Trigger
 | 
			
		||||
 | 
			
		||||
const PopoverAnchor = PopoverPrimitive.Anchor
 | 
			
		||||
 | 
			
		||||
const PopoverContent = React.forwardRef<
 | 
			
		||||
  React.ElementRef<typeof PopoverPrimitive.Content>,
 | 
			
		||||
  React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>
 | 
			
		||||
>(({ className, align = "center", sideOffset = 4, ...props }, ref) => (
 | 
			
		||||
  <PopoverPrimitive.Portal>
 | 
			
		||||
    <PopoverPrimitive.Content
 | 
			
		||||
      ref={ref}
 | 
			
		||||
      align={align}
 | 
			
		||||
      sideOffset={sideOffset}
 | 
			
		||||
      className={cn(
 | 
			
		||||
        "z-50 w-72 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
 | 
			
		||||
        className
 | 
			
		||||
      )}
 | 
			
		||||
      {...props}
 | 
			
		||||
    />
 | 
			
		||||
  </PopoverPrimitive.Portal>
 | 
			
		||||
))
 | 
			
		||||
PopoverContent.displayName = PopoverPrimitive.Content.displayName
 | 
			
		||||
 | 
			
		||||
export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor }
 | 
			
		||||
| 
						 | 
				
			
			@ -1,5 +1,7 @@
 | 
			
		|||
import { NavItem, NavItemButton } from "@/components/layout/nav";
 | 
			
		||||
import { PageNavItem } from "@/components/layout/navAtom";
 | 
			
		||||
import { Input } from "@/components/ui/input";
 | 
			
		||||
import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover";
 | 
			
		||||
import { useGalleryDoc } from "@/hook/useGalleryDoc.ts";
 | 
			
		||||
import { cn } from "@/lib/utils";
 | 
			
		||||
import { EnterFullScreenIcon, ExitIcon } from "@radix-ui/react-icons";
 | 
			
		||||
| 
						 | 
				
			
			@ -86,6 +88,10 @@ function ComicViewer({
 | 
			
		|||
    );
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function clip(val: number, min: number, max: number): number {
 | 
			
		||||
    return Math.max(min, Math.min(max, val));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default function ComicPage({
 | 
			
		||||
    params
 | 
			
		||||
}: ComicPageProps) {
 | 
			
		||||
| 
						 | 
				
			
			@ -122,9 +128,19 @@ export default function ComicPage({
 | 
			
		|||
                    elem.requestFullscreen();
 | 
			
		||||
                }
 | 
			
		||||
            }}  />
 | 
			
		||||
            <div className="">
 | 
			
		||||
            <Popover>
 | 
			
		||||
                <PopoverTrigger>
 | 
			
		||||
                    <span className="text-sm text-ellipsis" >{curPage + 1}/{data.additional.page as number}</span>
 | 
			
		||||
                </PopoverTrigger>
 | 
			
		||||
                <PopoverContent className="w-28">
 | 
			
		||||
                        <Input type="number" value={curPage + 1} onChange={(e) => 
 | 
			
		||||
                            setCurPage(clip(Number.parseInt(e.target.value) - 1, 
 | 
			
		||||
                            0, 
 | 
			
		||||
                            (data.additional.page as number) - 1))} />
 | 
			
		||||
                    <div className="flex">
 | 
			
		||||
                    </div>
 | 
			
		||||
                </PopoverContent>
 | 
			
		||||
            </Popover>
 | 
			
		||||
        </>}>
 | 
			
		||||
            <ComicViewer
 | 
			
		||||
            curPage={curPage}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -12,7 +12,7 @@ export default defineConfig({
 | 
			
		|||
  },
 | 
			
		||||
  server: {
 | 
			
		||||
    proxy: {
 | 
			
		||||
      '/api': "http://127.0.0.1:8080"
 | 
			
		||||
      '/api': "https://aeolian.prelude.duckdns.org"
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
})
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										181
									
								
								pnpm-lock.yaml
									
										
									
										generated
									
									
									
								
							
							
						
						
									
										181
									
								
								pnpm-lock.yaml
									
										
									
										generated
									
									
									
								
							| 
						 | 
				
			
			@ -20,6 +20,9 @@ importers:
 | 
			
		|||
      '@radix-ui/react-label':
 | 
			
		||||
        specifier: ^2.0.2
 | 
			
		||||
        version: 2.0.2(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-popover':
 | 
			
		||||
        specifier: ^1.0.7
 | 
			
		||||
        version: 1.0.7(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-radio-group':
 | 
			
		||||
        specifier: ^1.1.3
 | 
			
		||||
        version: 1.1.3(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)
 | 
			
		||||
| 
						 | 
				
			
			@ -1093,6 +1096,43 @@ packages:
 | 
			
		|||
      react-dom: 18.2.0(react@18.2.0)
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.71)(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@types/react': '*'
 | 
			
		||||
      react: ^16.8 || ^17.0 || ^18.0
 | 
			
		||||
    peerDependenciesMeta:
 | 
			
		||||
      '@types/react':
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@babel/runtime': 7.24.1
 | 
			
		||||
      '@types/react': 18.2.71
 | 
			
		||||
      react: 18.2.0
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@types/react': '*'
 | 
			
		||||
      '@types/react-dom': '*'
 | 
			
		||||
      react: ^16.8 || ^17.0 || ^18.0
 | 
			
		||||
      react-dom: ^16.8 || ^17.0 || ^18.0
 | 
			
		||||
    peerDependenciesMeta:
 | 
			
		||||
      '@types/react':
 | 
			
		||||
        optional: true
 | 
			
		||||
      '@types/react-dom':
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@babel/runtime': 7.24.1
 | 
			
		||||
      '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      '@types/react': 18.2.71
 | 
			
		||||
      '@types/react-dom': 18.2.22
 | 
			
		||||
      react: 18.2.0
 | 
			
		||||
      react-dom: 18.2.0(react@18.2.0)
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /@radix-ui/react-icons@1.3.0(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -1137,6 +1177,41 @@ packages:
 | 
			
		|||
      react-dom: 18.2.0(react@18.2.0)
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@types/react': '*'
 | 
			
		||||
      '@types/react-dom': '*'
 | 
			
		||||
      react: ^16.8 || ^17.0 || ^18.0
 | 
			
		||||
      react-dom: ^16.8 || ^17.0 || ^18.0
 | 
			
		||||
    peerDependenciesMeta:
 | 
			
		||||
      '@types/react':
 | 
			
		||||
        optional: true
 | 
			
		||||
      '@types/react-dom':
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@babel/runtime': 7.24.1
 | 
			
		||||
      '@radix-ui/primitive': 1.0.1
 | 
			
		||||
      '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-context': 1.0.1(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-id': 1.0.1(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-slot': 1.0.2(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      '@types/react': 18.2.71
 | 
			
		||||
      '@types/react-dom': 18.2.22
 | 
			
		||||
      aria-hidden: 1.2.4
 | 
			
		||||
      react: 18.2.0
 | 
			
		||||
      react-dom: 18.2.0(react@18.2.0)
 | 
			
		||||
      react-remove-scroll: 2.5.5(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.22)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -2260,6 +2335,13 @@ packages:
 | 
			
		|||
    resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /aria-hidden@1.2.4:
 | 
			
		||||
    resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
 | 
			
		||||
    engines: {node: '>=10'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      tslib: 2.6.2
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /array-union@2.1.0:
 | 
			
		||||
    resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
 | 
			
		||||
    engines: {node: '>=8'}
 | 
			
		||||
| 
						 | 
				
			
			@ -2741,6 +2823,10 @@ packages:
 | 
			
		|||
    resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
 | 
			
		||||
    engines: {node: '>=8'}
 | 
			
		||||
 | 
			
		||||
  /detect-node-es@1.1.0:
 | 
			
		||||
    resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /didyoumean@1.2.2:
 | 
			
		||||
    resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -3240,6 +3326,11 @@ packages:
 | 
			
		|||
      hasown: 2.0.2
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /get-nonce@1.0.1:
 | 
			
		||||
    resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
 | 
			
		||||
    engines: {node: '>=6'}
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /get-stream@3.0.0:
 | 
			
		||||
    resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
 | 
			
		||||
    engines: {node: '>=4'}
 | 
			
		||||
| 
						 | 
				
			
			@ -3515,6 +3606,12 @@ packages:
 | 
			
		|||
    engines: {node: '>= 0.10'}
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /invariant@2.2.4:
 | 
			
		||||
    resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      loose-envify: 1.4.0
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /is-arrayish@0.2.1:
 | 
			
		||||
    resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
 | 
			
		||||
    dev: true
 | 
			
		||||
| 
						 | 
				
			
			@ -4540,6 +4637,41 @@ packages:
 | 
			
		|||
      scheduler: 0.23.0
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /react-remove-scroll-bar@2.3.6(@types/react@18.2.71)(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
 | 
			
		||||
    engines: {node: '>=10'}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
 | 
			
		||||
      react: ^16.8.0 || ^17.0.0 || ^18.0.0
 | 
			
		||||
    peerDependenciesMeta:
 | 
			
		||||
      '@types/react':
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@types/react': 18.2.71
 | 
			
		||||
      react: 18.2.0
 | 
			
		||||
      react-style-singleton: 2.2.1(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      tslib: 2.6.2
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /react-remove-scroll@2.5.5(@types/react@18.2.71)(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
 | 
			
		||||
    engines: {node: '>=10'}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
 | 
			
		||||
      react: ^16.8.0 || ^17.0.0 || ^18.0.0
 | 
			
		||||
    peerDependenciesMeta:
 | 
			
		||||
      '@types/react':
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@types/react': 18.2.71
 | 
			
		||||
      react: 18.2.0
 | 
			
		||||
      react-remove-scroll-bar: 2.3.6(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      react-style-singleton: 2.2.1(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      tslib: 2.6.2
 | 
			
		||||
      use-callback-ref: 1.3.2(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
      use-sidecar: 1.1.2(@types/react@18.2.71)(react@18.2.0)
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /react-resizable-panels@2.0.16(react-dom@18.2.0)(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-UrnxmTZaTnbCl/xIOX38ig35RicqGfLuqt2x5fytpNlQvCRuxyXZwIBEhmF+pmrEGxfajyXFBoCplNxLvhF0CQ==}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -4550,6 +4682,23 @@ packages:
 | 
			
		|||
      react-dom: 18.2.0(react@18.2.0)
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /react-style-singleton@2.2.1(@types/react@18.2.71)(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
 | 
			
		||||
    engines: {node: '>=10'}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
 | 
			
		||||
      react: ^16.8.0 || ^17.0.0 || ^18.0.0
 | 
			
		||||
    peerDependenciesMeta:
 | 
			
		||||
      '@types/react':
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@types/react': 18.2.71
 | 
			
		||||
      get-nonce: 1.0.1
 | 
			
		||||
      invariant: 2.2.4
 | 
			
		||||
      react: 18.2.0
 | 
			
		||||
      tslib: 2.6.2
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /react@18.2.0:
 | 
			
		||||
    resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
 | 
			
		||||
    engines: {node: '>=0.10.0'}
 | 
			
		||||
| 
						 | 
				
			
			@ -5170,7 +5319,6 @@ packages:
 | 
			
		|||
 | 
			
		||||
  /tslib@2.6.2:
 | 
			
		||||
    resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /tsscmp@1.0.6:
 | 
			
		||||
    resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
 | 
			
		||||
| 
						 | 
				
			
			@ -5243,6 +5391,37 @@ packages:
 | 
			
		|||
      punycode: 2.3.1
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /use-callback-ref@1.3.2(@types/react@18.2.71)(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
 | 
			
		||||
    engines: {node: '>=10'}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
 | 
			
		||||
      react: ^16.8.0 || ^17.0.0 || ^18.0.0
 | 
			
		||||
    peerDependenciesMeta:
 | 
			
		||||
      '@types/react':
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@types/react': 18.2.71
 | 
			
		||||
      react: 18.2.0
 | 
			
		||||
      tslib: 2.6.2
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /use-sidecar@1.1.2(@types/react@18.2.71)(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
 | 
			
		||||
    engines: {node: '>=10'}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
 | 
			
		||||
      react: ^16.8.0 || ^17.0.0 || ^18.0.0
 | 
			
		||||
    peerDependenciesMeta:
 | 
			
		||||
      '@types/react':
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@types/react': 18.2.71
 | 
			
		||||
      detect-node-es: 1.1.0
 | 
			
		||||
      react: 18.2.0
 | 
			
		||||
      tslib: 2.6.2
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /use-sync-external-store@1.2.0(react@18.2.0):
 | 
			
		||||
    resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue