create-tauri-ui 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (268) hide show
  1. package/README.md +22 -11
  2. package/dist/index.mjs +26 -26
  3. package/package.json +3 -2
  4. package/templates/.shared/app-icon.png +0 -0
  5. package/templates/.shared/src-tauri/Cargo.lock +270 -139
  6. package/templates/.shared/src-tauri/Cargo.toml +39 -36
  7. package/templates/.shared/src-tauri/src/main.rs +3 -0
  8. package/templates/.shared/src-tauri/tauri.conf.json +71 -79
  9. package/templates/next/components.json +15 -15
  10. package/templates/next/next.config.js +14 -14
  11. package/templates/next/package.json +18 -14
  12. package/templates/next/pnpm-lock.yaml +608 -566
  13. package/templates/next/src/app/examples/cards/components/date-picker.tsx +3 -1
  14. package/templates/next/src/app/examples/cards/components/github-card.tsx +2 -0
  15. package/templates/next/src/app/examples/cards/components/notifications.tsx +2 -0
  16. package/templates/next/src/app/examples/cards/components/payment-method.tsx +3 -1
  17. package/templates/next/src/app/examples/cards/components/team-members.tsx +3 -5
  18. package/templates/next/src/app/examples/forms/page.tsx +1 -1
  19. package/templates/next/src/app/layout.tsx +47 -47
  20. package/templates/next/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
  21. package/templates/next/src/components/about-dialog.tsx +111 -0
  22. package/templates/next/src/components/icons.tsx +156 -154
  23. package/templates/next/src/components/menu-mode-toggle.tsx +47 -46
  24. package/templates/next/src/components/menu.tsx +223 -259
  25. package/templates/next/src/components/page-header.tsx +2 -0
  26. package/templates/next/src/components/ui/accordion.tsx +60 -60
  27. package/templates/next/src/components/ui/alert-dialog.tsx +145 -145
  28. package/templates/next/src/components/ui/alert.tsx +59 -59
  29. package/templates/next/src/components/ui/aspect-ratio.tsx +7 -7
  30. package/templates/next/src/components/ui/avatar.tsx +50 -50
  31. package/templates/next/src/components/ui/badge.tsx +36 -36
  32. package/templates/next/src/components/ui/button.tsx +56 -56
  33. package/templates/next/src/components/ui/calendar.tsx +64 -64
  34. package/templates/next/src/components/ui/card.tsx +79 -79
  35. package/templates/next/src/components/ui/checkbox.tsx +30 -30
  36. package/templates/next/src/components/ui/collapsible.tsx +11 -11
  37. package/templates/next/src/components/ui/command.tsx +155 -155
  38. package/templates/next/src/components/ui/context-menu.tsx +200 -200
  39. package/templates/next/src/components/ui/dialog.tsx +123 -123
  40. package/templates/next/src/components/ui/dropdown-menu.tsx +200 -200
  41. package/templates/next/src/components/ui/form.tsx +176 -176
  42. package/templates/next/src/components/ui/hover-card.tsx +29 -29
  43. package/templates/next/src/components/ui/input.tsx +25 -25
  44. package/templates/next/src/components/ui/label.tsx +26 -26
  45. package/templates/next/src/components/ui/menubar.tsx +236 -236
  46. package/templates/next/src/components/ui/navigation-menu.tsx +128 -128
  47. package/templates/next/src/components/ui/popover.tsx +31 -31
  48. package/templates/next/src/components/ui/progress.tsx +28 -28
  49. package/templates/next/src/components/ui/radio-group.tsx +44 -44
  50. package/templates/next/src/components/ui/scroll-area.tsx +48 -48
  51. package/templates/next/src/components/ui/select.tsx +121 -121
  52. package/templates/next/src/components/ui/separator.tsx +31 -31
  53. package/templates/next/src/components/ui/sheet.tsx +144 -144
  54. package/templates/next/src/components/ui/skeleton.tsx +15 -15
  55. package/templates/next/src/components/ui/slider.tsx +28 -28
  56. package/templates/next/src/components/ui/switch.tsx +29 -29
  57. package/templates/next/src/components/ui/table.tsx +114 -114
  58. package/templates/next/src/components/ui/tabs.tsx +55 -55
  59. package/templates/next/src/components/ui/textarea.tsx +24 -24
  60. package/templates/next/src/components/ui/toast.tsx +127 -127
  61. package/templates/next/src/components/ui/toaster.tsx +35 -35
  62. package/templates/next/src/components/ui/toggle.tsx +45 -45
  63. package/templates/next/src/components/ui/tooltip.tsx +30 -30
  64. package/templates/next/src/components/ui/use-toast.ts +192 -192
  65. package/templates/next/src/lib/utils.ts +6 -6
  66. package/templates/next/src/styles/globals.css +88 -86
  67. package/templates/next/src-tauri/Cargo.lock +3832 -3701
  68. package/templates/next/src-tauri/Cargo.toml +4 -1
  69. package/templates/next/src-tauri/src/main.rs +22 -19
  70. package/templates/next/src-tauri/tauri.conf.json +71 -79
  71. package/templates/next/tailwind.config.js +77 -77
  72. package/templates/next/tsconfig.json +34 -34
  73. package/templates/sveltekit/.github/workflows/release.yml +108 -108
  74. package/templates/sveltekit/package.json +22 -22
  75. package/templates/sveltekit/pnpm-lock.yaml +1069 -691
  76. package/templates/sveltekit/src/app.html +1 -1
  77. package/templates/sveltekit/src-tauri/Cargo.lock +136 -136
  78. package/templates/sveltekit/src-tauri/tauri.conf.json +2 -10
  79. package/templates/sveltekit/static/favicon.ico +0 -0
  80. package/templates/sveltekit/vite.config.js +10 -6
  81. package/templates/vite/components.json +15 -15
  82. package/templates/vite/index.html +1 -1
  83. package/templates/vite/package.json +20 -13
  84. package/templates/vite/pnpm-lock.yaml +598 -530
  85. package/templates/vite/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
  86. package/templates/vite/src/components/about-dialog.tsx +101 -0
  87. package/templates/vite/src/components/icons.tsx +2 -2
  88. package/templates/vite/src/components/menu-mode-toggle.tsx +4 -3
  89. package/templates/vite/src/components/menu.tsx +177 -197
  90. package/templates/vite/src/components/ui/accordion.tsx +1 -3
  91. package/templates/vite/src/components/ui/alert-dialog.tsx +3 -10
  92. package/templates/vite/src/components/ui/alert.tsx +3 -5
  93. package/templates/vite/src/components/ui/aspect-ratio.tsx +0 -2
  94. package/templates/vite/src/components/ui/avatar.tsx +0 -2
  95. package/templates/vite/src/components/ui/badge.tsx +5 -5
  96. package/templates/vite/src/components/ui/button.tsx +15 -10
  97. package/templates/vite/src/components/ui/calendar.tsx +0 -2
  98. package/templates/vite/src/components/ui/card.tsx +1 -3
  99. package/templates/vite/src/components/ui/checkbox.tsx +2 -4
  100. package/templates/vite/src/components/ui/collapsible.tsx +0 -2
  101. package/templates/vite/src/components/ui/command.tsx +2 -4
  102. package/templates/vite/src/components/ui/context-menu.tsx +6 -8
  103. package/templates/vite/src/components/ui/dialog.tsx +4 -11
  104. package/templates/vite/src/components/ui/dropdown-menu.tsx +6 -8
  105. package/templates/vite/src/components/ui/form.tsx +176 -0
  106. package/templates/vite/src/components/ui/hover-card.tsx +1 -3
  107. package/templates/vite/src/components/ui/input.tsx +1 -3
  108. package/templates/vite/src/components/ui/label.tsx +1 -3
  109. package/templates/vite/src/components/ui/menubar.tsx +7 -9
  110. package/templates/vite/src/components/ui/navigation-menu.tsx +2 -4
  111. package/templates/vite/src/components/ui/popover.tsx +1 -3
  112. package/templates/vite/src/components/ui/progress.tsx +0 -2
  113. package/templates/vite/src/components/ui/radio-group.tsx +2 -4
  114. package/templates/vite/src/components/ui/scroll-area.tsx +0 -2
  115. package/templates/vite/src/components/ui/select.tsx +4 -5
  116. package/templates/vite/src/components/ui/separator.tsx +0 -2
  117. package/templates/vite/src/components/ui/sheet.tsx +22 -110
  118. package/templates/vite/src/components/ui/skeleton.tsx +0 -2
  119. package/templates/vite/src/components/ui/slider.tsx +0 -2
  120. package/templates/vite/src/components/ui/switch.tsx +1 -3
  121. package/templates/vite/src/components/ui/table.tsx +1 -1
  122. package/templates/vite/src/components/ui/tabs.tsx +1 -3
  123. package/templates/vite/src/components/ui/textarea.tsx +1 -3
  124. package/templates/vite/src/components/ui/toast.tsx +6 -8
  125. package/templates/vite/src/components/ui/toaster.tsx +0 -2
  126. package/templates/vite/src/components/ui/toggle.tsx +3 -5
  127. package/templates/vite/src/components/ui/tooltip.tsx +1 -3
  128. package/templates/vite/src/components/ui/use-toast.ts +5 -4
  129. package/templates/vite/src/styles/globals.css +5 -3
  130. package/templates/vite/src-tauri/Cargo.lock +270 -139
  131. package/templates/vite/src-tauri/Cargo.toml +4 -1
  132. package/templates/vite/src-tauri/src/main.rs +8 -2
  133. package/templates/vite/src-tauri/tauri.conf.json +71 -79
  134. package/templates/vite/vite.config.ts +2 -2
  135. package/templates/next/src/assets/Inter.var.woff2 +0 -0
  136. package/templates/vite/src/assets/Inter.var.woff2 +0 -0
  137. package/templates/viteuno/.github/workflows/release.yml +0 -108
  138. package/templates/viteuno/.vscode/extensions.json +0 -3
  139. package/templates/viteuno/README.md +0 -1
  140. package/templates/viteuno/app-icon.png +0 -0
  141. package/templates/viteuno/components.json +0 -16
  142. package/templates/viteuno/index.html +0 -16
  143. package/templates/viteuno/package.json +0 -73
  144. package/templates/viteuno/pnpm-lock.yaml +0 -5298
  145. package/templates/viteuno/preset.shadcn.ts +0 -160
  146. package/templates/viteuno/prettier.config.cjs +0 -34
  147. package/templates/viteuno/public/avatars/01.png +0 -0
  148. package/templates/viteuno/public/avatars/02.png +0 -0
  149. package/templates/viteuno/public/avatars/03.png +0 -0
  150. package/templates/viteuno/public/avatars/04.png +0 -0
  151. package/templates/viteuno/public/avatars/05.png +0 -0
  152. package/templates/viteuno/src/App.tsx +0 -39
  153. package/templates/viteuno/src/assets/Inter.var.woff2 +0 -0
  154. package/templates/viteuno/src/components/icons.tsx +0 -154
  155. package/templates/viteuno/src/components/menu-mode-toggle.tsx +0 -46
  156. package/templates/viteuno/src/components/menu.tsx +0 -232
  157. package/templates/viteuno/src/components/tailwind-indicator.tsx +0 -18
  158. package/templates/viteuno/src/components/theme-provider.tsx +0 -9
  159. package/templates/viteuno/src/components/ui/accordion.tsx +0 -60
  160. package/templates/viteuno/src/components/ui/alert-dialog.tsx +0 -150
  161. package/templates/viteuno/src/components/ui/alert.tsx +0 -61
  162. package/templates/viteuno/src/components/ui/aspect-ratio.tsx +0 -7
  163. package/templates/viteuno/src/components/ui/avatar.tsx +0 -50
  164. package/templates/viteuno/src/components/ui/badge.tsx +0 -36
  165. package/templates/viteuno/src/components/ui/button.tsx +0 -51
  166. package/templates/viteuno/src/components/ui/calendar.tsx +0 -64
  167. package/templates/viteuno/src/components/ui/card.tsx +0 -81
  168. package/templates/viteuno/src/components/ui/checkbox.tsx +0 -30
  169. package/templates/viteuno/src/components/ui/collapsible.tsx +0 -11
  170. package/templates/viteuno/src/components/ui/command.tsx +0 -155
  171. package/templates/viteuno/src/components/ui/context-menu.tsx +0 -200
  172. package/templates/viteuno/src/components/ui/dialog.tsx +0 -128
  173. package/templates/viteuno/src/components/ui/dropdown-menu.tsx +0 -200
  174. package/templates/viteuno/src/components/ui/hover-card.tsx +0 -29
  175. package/templates/viteuno/src/components/ui/index.ts +0 -0
  176. package/templates/viteuno/src/components/ui/input.tsx +0 -27
  177. package/templates/viteuno/src/components/ui/label.tsx +0 -26
  178. package/templates/viteuno/src/components/ui/menubar.tsx +0 -236
  179. package/templates/viteuno/src/components/ui/navigation-menu.tsx +0 -130
  180. package/templates/viteuno/src/components/ui/popover.tsx +0 -31
  181. package/templates/viteuno/src/components/ui/progress.tsx +0 -28
  182. package/templates/viteuno/src/components/ui/radio-group.tsx +0 -44
  183. package/templates/viteuno/src/components/ui/scroll-area.tsx +0 -48
  184. package/templates/viteuno/src/components/ui/select.tsx +0 -120
  185. package/templates/viteuno/src/components/ui/separator.tsx +0 -31
  186. package/templates/viteuno/src/components/ui/sheet.tsx +0 -230
  187. package/templates/viteuno/src/components/ui/skeleton.tsx +0 -17
  188. package/templates/viteuno/src/components/ui/slider.tsx +0 -28
  189. package/templates/viteuno/src/components/ui/switch.tsx +0 -29
  190. package/templates/viteuno/src/components/ui/table.tsx +0 -114
  191. package/templates/viteuno/src/components/ui/tabs.tsx +0 -55
  192. package/templates/viteuno/src/components/ui/textarea.tsx +0 -26
  193. package/templates/viteuno/src/components/ui/toast.tsx +0 -129
  194. package/templates/viteuno/src/components/ui/toaster.tsx +0 -35
  195. package/templates/viteuno/src/components/ui/toggle.tsx +0 -45
  196. package/templates/viteuno/src/components/ui/tooltip.tsx +0 -30
  197. package/templates/viteuno/src/components/ui/use-toast.ts +0 -191
  198. package/templates/viteuno/src/dashboard/components/date-range-picker.tsx +0 -66
  199. package/templates/viteuno/src/dashboard/components/main-nav.tsx +0 -38
  200. package/templates/viteuno/src/dashboard/components/overview.tsx +0 -78
  201. package/templates/viteuno/src/dashboard/components/recent-sales.tsx +0 -67
  202. package/templates/viteuno/src/dashboard/components/search.tsx +0 -13
  203. package/templates/viteuno/src/dashboard/components/team-switcher.tsx +0 -205
  204. package/templates/viteuno/src/dashboard/components/user-nav.tsx +0 -67
  205. package/templates/viteuno/src/dashboard/page.tsx +0 -140
  206. package/templates/viteuno/src/lib/utils.ts +0 -19
  207. package/templates/viteuno/src/main.tsx +0 -14
  208. package/templates/viteuno/src/styles/globals.css +0 -4
  209. package/templates/viteuno/src/vite-env.d.ts +0 -1
  210. package/templates/viteuno/src-tauri/Cargo.lock +0 -3701
  211. package/templates/viteuno/src-tauri/Cargo.toml +0 -36
  212. package/templates/viteuno/src-tauri/build.rs +0 -3
  213. package/templates/viteuno/src-tauri/icons/128x128.png +0 -0
  214. package/templates/viteuno/src-tauri/icons/128x128@2x.png +0 -0
  215. package/templates/viteuno/src-tauri/icons/32x32.png +0 -0
  216. package/templates/viteuno/src-tauri/icons/Square107x107Logo.png +0 -0
  217. package/templates/viteuno/src-tauri/icons/Square142x142Logo.png +0 -0
  218. package/templates/viteuno/src-tauri/icons/Square150x150Logo.png +0 -0
  219. package/templates/viteuno/src-tauri/icons/Square284x284Logo.png +0 -0
  220. package/templates/viteuno/src-tauri/icons/Square30x30Logo.png +0 -0
  221. package/templates/viteuno/src-tauri/icons/Square310x310Logo.png +0 -0
  222. package/templates/viteuno/src-tauri/icons/Square44x44Logo.png +0 -0
  223. package/templates/viteuno/src-tauri/icons/Square71x71Logo.png +0 -0
  224. package/templates/viteuno/src-tauri/icons/Square89x89Logo.png +0 -0
  225. package/templates/viteuno/src-tauri/icons/StoreLogo.png +0 -0
  226. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
  227. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  228. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
  229. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
  230. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  231. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
  232. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
  233. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  234. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
  235. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
  236. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  237. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  238. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
  239. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  240. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  241. package/templates/viteuno/src-tauri/icons/icon.icns +0 -0
  242. package/templates/viteuno/src-tauri/icons/icon.ico +0 -0
  243. package/templates/viteuno/src-tauri/icons/icon.png +0 -0
  244. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
  245. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
  246. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
  247. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
  248. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
  249. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
  250. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
  251. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
  252. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
  253. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
  254. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
  255. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
  256. package/templates/viteuno/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
  257. package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
  258. package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
  259. package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
  260. package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
  261. package/templates/viteuno/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
  262. package/templates/viteuno/src-tauri/src/main.rs +0 -16
  263. package/templates/viteuno/src-tauri/tauri.conf.json +0 -79
  264. package/templates/viteuno/tsconfig.json +0 -26
  265. package/templates/viteuno/tsconfig.node.json +0 -9
  266. package/templates/viteuno/uno.config.ts +0 -111
  267. package/templates/viteuno/vite.config.ts +0 -33
  268. /package/templates/next/src/app/examples/forms/{profile-form.tsx → components/profile-form.tsx} +0 -0
@@ -1,115 +1,127 @@
1
- lockfileVersion: '6.1'
1
+ lockfileVersion: '6.0'
2
2
 
3
3
  settings:
4
4
  autoInstallPeers: true
5
5
  excludeLinksFromLockfile: false
6
6
 
7
7
  dependencies:
8
+ '@hookform/resolvers':
9
+ specifier: ^3.1.1
10
+ version: 3.1.1(react-hook-form@7.45.2)
8
11
  '@radix-ui/react-accessible-icon':
9
12
  specifier: ^1.0.3
10
- version: 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
13
+ version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
11
14
  '@radix-ui/react-accordion':
12
15
  specifier: ^1.1.2
13
- version: 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
16
+ version: 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
14
17
  '@radix-ui/react-alert-dialog':
15
18
  specifier: ^1.0.4
16
- version: 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
19
+ version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
17
20
  '@radix-ui/react-aspect-ratio':
18
21
  specifier: ^1.0.3
19
- version: 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
22
+ version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
20
23
  '@radix-ui/react-avatar':
21
24
  specifier: ^1.0.3
22
- version: 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
25
+ version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
23
26
  '@radix-ui/react-checkbox':
24
27
  specifier: ^1.0.4
25
- version: 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
28
+ version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
26
29
  '@radix-ui/react-collapsible':
27
30
  specifier: ^1.0.3
28
- version: 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
31
+ version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
29
32
  '@radix-ui/react-context-menu':
30
33
  specifier: ^2.1.4
31
- version: 2.1.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
34
+ version: 2.1.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
32
35
  '@radix-ui/react-dialog':
33
36
  specifier: ^1.0.4
34
- version: 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
37
+ version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
35
38
  '@radix-ui/react-dropdown-menu':
36
39
  specifier: ^2.0.5
37
- version: 2.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
40
+ version: 2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
38
41
  '@radix-ui/react-hover-card':
39
42
  specifier: ^1.0.6
40
- version: 1.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
43
+ version: 1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
41
44
  '@radix-ui/react-icons':
42
45
  specifier: ^1.3.0
43
46
  version: 1.3.0(react@18.2.0)
44
47
  '@radix-ui/react-label':
45
48
  specifier: ^2.0.2
46
- version: 2.0.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
49
+ version: 2.0.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
47
50
  '@radix-ui/react-menubar':
48
51
  specifier: ^1.0.3
49
- version: 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
52
+ version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
50
53
  '@radix-ui/react-navigation-menu':
51
54
  specifier: ^1.1.3
52
- version: 1.1.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
55
+ version: 1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
53
56
  '@radix-ui/react-popover':
54
57
  specifier: ^1.0.6
55
- version: 1.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
58
+ version: 1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
56
59
  '@radix-ui/react-progress':
57
60
  specifier: ^1.0.3
58
- version: 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
61
+ version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
59
62
  '@radix-ui/react-radio-group':
60
63
  specifier: ^1.1.3
61
- version: 1.1.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
64
+ version: 1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
62
65
  '@radix-ui/react-scroll-area':
63
66
  specifier: ^1.0.4
64
- version: 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
67
+ version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
65
68
  '@radix-ui/react-select':
66
69
  specifier: ^1.2.2
67
- version: 1.2.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
70
+ version: 1.2.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
68
71
  '@radix-ui/react-separator':
69
72
  specifier: ^1.0.3
70
- version: 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
73
+ version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
71
74
  '@radix-ui/react-slider':
72
75
  specifier: ^1.1.2
73
- version: 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
76
+ version: 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
74
77
  '@radix-ui/react-slot':
75
78
  specifier: ^1.0.2
76
- version: 1.0.2(@types/react@18.2.14)(react@18.2.0)
79
+ version: 1.0.2(@types/react@18.2.17)(react@18.2.0)
77
80
  '@radix-ui/react-switch':
78
81
  specifier: ^1.0.3
79
- version: 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
82
+ version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
80
83
  '@radix-ui/react-tabs':
81
84
  specifier: ^1.0.4
82
- version: 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
85
+ version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
83
86
  '@radix-ui/react-toast':
84
87
  specifier: ^1.1.4
85
- version: 1.1.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
88
+ version: 1.1.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
86
89
  '@radix-ui/react-toggle':
87
90
  specifier: ^1.0.3
88
- version: 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
91
+ version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
89
92
  '@radix-ui/react-toggle-group':
90
93
  specifier: ^1.0.4
91
- version: 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
94
+ version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
92
95
  '@radix-ui/react-tooltip':
93
96
  specifier: ^1.0.6
94
- version: 1.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
97
+ version: 1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
95
98
  '@tauri-apps/api':
96
99
  specifier: ^2.0.0-alpha.5
97
100
  version: 2.0.0-alpha.5
101
+ '@tauri-apps/plugin-app':
102
+ specifier: 2.0.0-alpha.0
103
+ version: 2.0.0-alpha.0
104
+ '@tauri-apps/plugin-os':
105
+ specifier: 2.0.0-alpha.0
106
+ version: 2.0.0-alpha.0
107
+ '@tauri-apps/plugin-shell':
108
+ specifier: 2.0.0-alpha.0
109
+ version: 2.0.0-alpha.0
98
110
  '@tauri-apps/plugin-window':
99
111
  specifier: 2.0.0-alpha.0
100
112
  version: 2.0.0-alpha.0
101
113
  '@vitejs/plugin-react-swc':
102
114
  specifier: ^3.3.2
103
- version: 3.3.2(vite@4.4.2)
115
+ version: 3.3.2(vite@4.4.7)
104
116
  cmdk:
105
117
  specifier: ^0.2.0
106
- version: 0.2.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
118
+ version: 0.2.0(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
107
119
  date-fns:
108
120
  specifier: ^2.30.0
109
121
  version: 2.30.0
110
122
  lucide-react:
111
- specifier: ^0.259.0
112
- version: 0.259.0(react@18.2.0)
123
+ specifier: ^0.263.1
124
+ version: 0.263.1(react@18.2.0)
113
125
  next-themes:
114
126
  specifier: ^0.2.1
115
127
  version: 0.2.1(next@13.4.3)(react-dom@18.2.0)(react@18.2.0)
@@ -122,56 +134,65 @@ dependencies:
122
134
  react-dom:
123
135
  specifier: ^18.2.0
124
136
  version: 18.2.0(react@18.2.0)
137
+ react-hook-form:
138
+ specifier: ^7.45.2
139
+ version: 7.45.2(react@18.2.0)
125
140
  recharts:
126
141
  specifier: ^2.7.2
127
142
  version: 2.7.2(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
128
143
  tailwind-scrollbar:
129
144
  specifier: ^3.0.4
130
- version: 3.0.4(tailwindcss@3.3.2)
145
+ version: 3.0.4(tailwindcss@3.3.3)
131
146
  tailwindcss-animate:
132
147
  specifier: ^1.0.6
133
- version: 1.0.6(tailwindcss@3.3.2)
148
+ version: 1.0.6(tailwindcss@3.3.3)
149
+ tauri-controls:
150
+ specifier: ^0.0.6
151
+ version: 0.0.6(@tauri-apps/plugin-os@2.0.0-alpha.0)(@tauri-apps/plugin-window@2.0.0-alpha.0)(clsx@2.0.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-merge@1.14.0)(tailwindcss@3.3.3)
152
+ zod:
153
+ specifier: ^3.21.4
154
+ version: 3.21.4
134
155
 
135
156
  devDependencies:
136
157
  '@ianvs/prettier-plugin-sort-imports':
137
- specifier: ^4.0.2
138
- version: 4.0.2(prettier@3.0.0)
158
+ specifier: ^4.1.0
159
+ version: 4.1.0(prettier@3.0.0)
139
160
  '@tauri-apps/cli':
140
161
  specifier: ^2.0.0-alpha.10
141
162
  version: 2.0.0-alpha.10
142
163
  '@types/node':
143
- specifier: ^20.4.1
144
- version: 20.4.1
164
+ specifier: ^20.4.5
165
+ version: 20.4.5
145
166
  '@types/react':
146
- specifier: ^18.2.14
147
- version: 18.2.14
167
+ specifier: ^18.2.17
168
+ version: 18.2.17
148
169
  '@types/react-dom':
149
- specifier: ^18.2.6
150
- version: 18.2.6
170
+ specifier: ^18.2.7
171
+ version: 18.2.7
151
172
  autoprefixer:
152
173
  specifier: ^10.4.14
153
- version: 10.4.14(postcss@8.4.25)
174
+ version: 10.4.14(postcss@8.4.27)
154
175
  class-variance-authority:
155
- specifier: ^0.6.1
156
- version: 0.6.1
176
+ specifier: ^0.7.0
177
+ version: 0.7.0
157
178
  clsx:
158
- specifier: ^1.2.1
159
- version: 1.2.1
179
+ specifier: ^2.0.0
180
+ version: 2.0.0
160
181
  postcss:
161
- specifier: ^8.4.25
162
- version: 8.4.25
182
+ specifier: ^8.4.27
183
+ version: 8.4.27
163
184
  prettier:
164
185
  specifier: ^3.0.0
165
186
  version: 3.0.0
166
187
  prettier-plugin-tailwindcss:
167
- specifier: ^0.3.0
168
- version: 0.3.0(@ianvs/prettier-plugin-sort-imports@4.0.2)(prettier@3.0.0)
188
+ specifier: ^0.4.1
189
+ version: 0.4.1(@ianvs/prettier-plugin-sort-imports@4.1.0)(prettier@3.0.0)
169
190
  tailwind-merge:
170
- specifier: ^1.13.2
171
- version: 1.13.2
191
+ specifier: ^1.14.0
192
+ version: 1.14.0
172
193
  tailwindcss:
173
- specifier: ^3.3.2
174
- version: 3.3.2
194
+ specifier: ^3.3.3
195
+ version: 3.3.3
175
196
  taze:
176
197
  specifier: ^0.11.2
177
198
  version: 0.11.2
@@ -179,8 +200,8 @@ devDependencies:
179
200
  specifier: ^5.1.6
180
201
  version: 5.1.6
181
202
  vite:
182
- specifier: ^4.4.2
183
- version: 4.4.2(@types/node@20.4.1)
203
+ specifier: ^4.4.7
204
+ version: 4.4.7(@types/node@20.4.5)
184
205
 
185
206
  packages:
186
207
 
@@ -586,11 +607,19 @@ packages:
586
607
  resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
587
608
  dev: true
588
609
 
589
- /@ianvs/prettier-plugin-sort-imports@4.0.2(prettier@3.0.0):
590
- resolution: {integrity: sha512-VnsTzyb9aSWpc3v6HvZKD6eolZRvofIYjhda+6IbW1GYwr2byWqK0KhLPbYNkit9MAgShad5bhZ1hgBn867A1A==}
610
+ /@hookform/resolvers@3.1.1(react-hook-form@7.45.2):
611
+ resolution: {integrity: sha512-tS16bAUkqjITNSvbJuO1x7MXbn7Oe8ZziDTJdA9mMvsoYthnOOiznOTGBYwbdlYBgU+tgpI/BtTU3paRbCuSlg==}
612
+ peerDependencies:
613
+ react-hook-form: ^7.0.0
614
+ dependencies:
615
+ react-hook-form: 7.45.2(react@18.2.0)
616
+ dev: false
617
+
618
+ /@ianvs/prettier-plugin-sort-imports@4.1.0(prettier@3.0.0):
619
+ resolution: {integrity: sha512-IAXeTLU24k6mRPa6mFbW1qZJ/j0m3OeH44wyijWyr+YqqdNtBnfHxAntOAATS9iDfrT01NesKGsdzqnXdDQa/A==}
591
620
  peerDependencies:
592
621
  '@vue/compiler-sfc': '>=3.0.0'
593
- prettier: 2.x
622
+ prettier: 2 || 3
594
623
  peerDependenciesMeta:
595
624
  '@vue/compiler-sfc':
596
625
  optional: true
@@ -601,7 +630,7 @@ packages:
601
630
  '@babel/traverse': 7.21.5
602
631
  '@babel/types': 7.21.5
603
632
  prettier: 3.0.0
604
- semver: 7.5.1
633
+ semver: 7.5.4
605
634
  transitivePeerDependencies:
606
635
  - supports-color
607
636
  dev: true
@@ -878,7 +907,7 @@ packages:
878
907
  '@babel/runtime': 7.21.5
879
908
  dev: false
880
909
 
881
- /@radix-ui/react-accessible-icon@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
910
+ /@radix-ui/react-accessible-icon@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
882
911
  resolution: {integrity: sha512-duVGKeWPSUILr/MdlPxV+GeULTc2rS1aihGdQ3N2qCUPMgxYLxvAsHJM3mCVLF8d5eK+ympmB22mb1F3a5biNw==}
883
912
  peerDependencies:
884
913
  '@types/react': '*'
@@ -892,14 +921,14 @@ packages:
892
921
  optional: true
893
922
  dependencies:
894
923
  '@babel/runtime': 7.21.5
895
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
896
- '@types/react': 18.2.14
897
- '@types/react-dom': 18.2.6
924
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
925
+ '@types/react': 18.2.17
926
+ '@types/react-dom': 18.2.7
898
927
  react: 18.2.0
899
928
  react-dom: 18.2.0(react@18.2.0)
900
929
  dev: false
901
930
 
902
- /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
931
+ /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
903
932
  resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==}
904
933
  peerDependencies:
905
934
  '@types/react': '*'
@@ -914,21 +943,21 @@ packages:
914
943
  dependencies:
915
944
  '@babel/runtime': 7.21.5
916
945
  '@radix-ui/primitive': 1.0.1
917
- '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
918
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
919
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
920
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
921
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
922
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
923
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
924
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
925
- '@types/react': 18.2.14
926
- '@types/react-dom': 18.2.6
946
+ '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
947
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
948
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
949
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
950
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
951
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
952
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
953
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
954
+ '@types/react': 18.2.17
955
+ '@types/react-dom': 18.2.7
927
956
  react: 18.2.0
928
957
  react-dom: 18.2.0(react@18.2.0)
929
958
  dev: false
930
959
 
931
- /@radix-ui/react-alert-dialog@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
960
+ /@radix-ui/react-alert-dialog@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
932
961
  resolution: {integrity: sha512-jbfBCRlKYlhbitueOAv7z74PXYeIQmWpKwm3jllsdkw7fGWNkxqP3v0nY9WmOzcPqpQuoorNtvViBgL46n5gVg==}
933
962
  peerDependencies:
934
963
  '@types/react': '*'
@@ -943,18 +972,18 @@ packages:
943
972
  dependencies:
944
973
  '@babel/runtime': 7.21.5
945
974
  '@radix-ui/primitive': 1.0.1
946
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
947
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
948
- '@radix-ui/react-dialog': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
949
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
950
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
951
- '@types/react': 18.2.14
952
- '@types/react-dom': 18.2.6
975
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
976
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
977
+ '@radix-ui/react-dialog': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
978
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
979
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.17)(react@18.2.0)
980
+ '@types/react': 18.2.17
981
+ '@types/react-dom': 18.2.7
953
982
  react: 18.2.0
954
983
  react-dom: 18.2.0(react@18.2.0)
955
984
  dev: false
956
985
 
957
- /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
986
+ /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
958
987
  resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
959
988
  peerDependencies:
960
989
  '@types/react': '*'
@@ -968,14 +997,14 @@ packages:
968
997
  optional: true
969
998
  dependencies:
970
999
  '@babel/runtime': 7.21.5
971
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
972
- '@types/react': 18.2.14
973
- '@types/react-dom': 18.2.6
1000
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1001
+ '@types/react': 18.2.17
1002
+ '@types/react-dom': 18.2.7
974
1003
  react: 18.2.0
975
1004
  react-dom: 18.2.0(react@18.2.0)
976
1005
  dev: false
977
1006
 
978
- /@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1007
+ /@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
979
1008
  resolution: {integrity: sha512-fXR5kbMan9oQqMuacfzlGG/SQMcmMlZ4wrvpckv8SgUulD0MMpspxJrxg/Gp/ISV3JfV1AeSWTYK9GvxA4ySwA==}
980
1009
  peerDependencies:
981
1010
  '@types/react': '*'
@@ -989,14 +1018,14 @@ packages:
989
1018
  optional: true
990
1019
  dependencies:
991
1020
  '@babel/runtime': 7.21.5
992
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
993
- '@types/react': 18.2.14
994
- '@types/react-dom': 18.2.6
1021
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1022
+ '@types/react': 18.2.17
1023
+ '@types/react-dom': 18.2.7
995
1024
  react: 18.2.0
996
1025
  react-dom: 18.2.0(react@18.2.0)
997
1026
  dev: false
998
1027
 
999
- /@radix-ui/react-avatar@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1028
+ /@radix-ui/react-avatar@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1000
1029
  resolution: {integrity: sha512-9ToF7YNex3Ste45LrAeTlKtONI9yVRt/zOS158iilIkW5K/Apeyb/TUQlcEFTEFvWr8Kzdi2ZYrm1/suiXPajQ==}
1001
1030
  peerDependencies:
1002
1031
  '@types/react': '*'
@@ -1010,17 +1039,17 @@ packages:
1010
1039
  optional: true
1011
1040
  dependencies:
1012
1041
  '@babel/runtime': 7.21.5
1013
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1014
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1015
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1016
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1017
- '@types/react': 18.2.14
1018
- '@types/react-dom': 18.2.6
1042
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1043
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1044
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1045
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1046
+ '@types/react': 18.2.17
1047
+ '@types/react-dom': 18.2.7
1019
1048
  react: 18.2.0
1020
1049
  react-dom: 18.2.0(react@18.2.0)
1021
1050
  dev: false
1022
1051
 
1023
- /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1052
+ /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1024
1053
  resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==}
1025
1054
  peerDependencies:
1026
1055
  '@types/react': '*'
@@ -1035,20 +1064,20 @@ packages:
1035
1064
  dependencies:
1036
1065
  '@babel/runtime': 7.21.5
1037
1066
  '@radix-ui/primitive': 1.0.1
1038
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1039
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1040
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1041
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1042
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1043
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1044
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1045
- '@types/react': 18.2.14
1046
- '@types/react-dom': 18.2.6
1067
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1068
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1069
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1070
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1071
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1072
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1073
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1074
+ '@types/react': 18.2.17
1075
+ '@types/react-dom': 18.2.7
1047
1076
  react: 18.2.0
1048
1077
  react-dom: 18.2.0(react@18.2.0)
1049
1078
  dev: false
1050
1079
 
1051
- /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1080
+ /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1052
1081
  resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
1053
1082
  peerDependencies:
1054
1083
  '@types/react': '*'
@@ -1063,20 +1092,20 @@ packages:
1063
1092
  dependencies:
1064
1093
  '@babel/runtime': 7.21.5
1065
1094
  '@radix-ui/primitive': 1.0.1
1066
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1067
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1068
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1069
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1070
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1071
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1072
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1073
- '@types/react': 18.2.14
1074
- '@types/react-dom': 18.2.6
1095
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1096
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1097
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1098
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1099
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1100
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1101
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1102
+ '@types/react': 18.2.17
1103
+ '@types/react-dom': 18.2.7
1075
1104
  react: 18.2.0
1076
1105
  react-dom: 18.2.0(react@18.2.0)
1077
1106
  dev: false
1078
1107
 
1079
- /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1108
+ /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1080
1109
  resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
1081
1110
  peerDependencies:
1082
1111
  '@types/react': '*'
@@ -1090,12 +1119,12 @@ packages:
1090
1119
  optional: true
1091
1120
  dependencies:
1092
1121
  '@babel/runtime': 7.21.5
1093
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1094
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1095
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1096
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
1097
- '@types/react': 18.2.14
1098
- '@types/react-dom': 18.2.6
1122
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1123
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1124
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1125
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.17)(react@18.2.0)
1126
+ '@types/react': 18.2.17
1127
+ '@types/react-dom': 18.2.7
1099
1128
  react: 18.2.0
1100
1129
  react-dom: 18.2.0(react@18.2.0)
1101
1130
  dev: false
@@ -1109,7 +1138,7 @@ packages:
1109
1138
  react: 18.2.0
1110
1139
  dev: false
1111
1140
 
1112
- /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.14)(react@18.2.0):
1141
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.17)(react@18.2.0):
1113
1142
  resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
1114
1143
  peerDependencies:
1115
1144
  '@types/react': '*'
@@ -1119,11 +1148,11 @@ packages:
1119
1148
  optional: true
1120
1149
  dependencies:
1121
1150
  '@babel/runtime': 7.21.5
1122
- '@types/react': 18.2.14
1151
+ '@types/react': 18.2.17
1123
1152
  react: 18.2.0
1124
1153
  dev: false
1125
1154
 
1126
- /@radix-ui/react-context-menu@2.1.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1155
+ /@radix-ui/react-context-menu@2.1.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1127
1156
  resolution: {integrity: sha512-HVHLUtZOBiR2Fh5l07qQ9y0IgX4dGZF0S9Gwdk4CVA+DL9afSphvFNa4nRiw6RNgb6quwLV4dLPF/gFDvNaOcQ==}
1128
1157
  peerDependencies:
1129
1158
  '@types/react': '*'
@@ -1138,13 +1167,13 @@ packages:
1138
1167
  dependencies:
1139
1168
  '@babel/runtime': 7.21.5
1140
1169
  '@radix-ui/primitive': 1.0.1
1141
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1142
- '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1143
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1144
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1145
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1146
- '@types/react': 18.2.14
1147
- '@types/react-dom': 18.2.6
1170
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1171
+ '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1172
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1173
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1174
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1175
+ '@types/react': 18.2.17
1176
+ '@types/react-dom': 18.2.7
1148
1177
  react: 18.2.0
1149
1178
  react-dom: 18.2.0(react@18.2.0)
1150
1179
  dev: false
@@ -1158,7 +1187,7 @@ packages:
1158
1187
  react: 18.2.0
1159
1188
  dev: false
1160
1189
 
1161
- /@radix-ui/react-context@1.0.1(@types/react@18.2.14)(react@18.2.0):
1190
+ /@radix-ui/react-context@1.0.1(@types/react@18.2.17)(react@18.2.0):
1162
1191
  resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
1163
1192
  peerDependencies:
1164
1193
  '@types/react': '*'
@@ -1168,11 +1197,11 @@ packages:
1168
1197
  optional: true
1169
1198
  dependencies:
1170
1199
  '@babel/runtime': 7.21.5
1171
- '@types/react': 18.2.14
1200
+ '@types/react': 18.2.17
1172
1201
  react: 18.2.0
1173
1202
  dev: false
1174
1203
 
1175
- /@radix-ui/react-dialog@1.0.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1204
+ /@radix-ui/react-dialog@1.0.0(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1176
1205
  resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
1177
1206
  peerDependencies:
1178
1207
  react: ^16.8 || ^17.0 || ^18.0
@@ -1194,12 +1223,12 @@ packages:
1194
1223
  aria-hidden: 1.2.3
1195
1224
  react: 18.2.0
1196
1225
  react-dom: 18.2.0(react@18.2.0)
1197
- react-remove-scroll: 2.5.4(@types/react@18.2.14)(react@18.2.0)
1226
+ react-remove-scroll: 2.5.4(@types/react@18.2.17)(react@18.2.0)
1198
1227
  transitivePeerDependencies:
1199
1228
  - '@types/react'
1200
1229
  dev: false
1201
1230
 
1202
- /@radix-ui/react-dialog@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1231
+ /@radix-ui/react-dialog@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1203
1232
  resolution: {integrity: sha512-hJtRy/jPULGQZceSAP2Re6/4NpKo8im6V8P2hUqZsdFiSL8l35kYsw3qbRI6Ay5mQd2+wlLqje770eq+RJ3yZg==}
1204
1233
  peerDependencies:
1205
1234
  '@types/react': '*'
@@ -1214,26 +1243,26 @@ packages:
1214
1243
  dependencies:
1215
1244
  '@babel/runtime': 7.21.5
1216
1245
  '@radix-ui/primitive': 1.0.1
1217
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1218
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1219
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1220
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1221
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1222
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1223
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1224
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1225
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1226
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
1227
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1228
- '@types/react': 18.2.14
1229
- '@types/react-dom': 18.2.6
1246
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1247
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1248
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1249
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1250
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1251
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1252
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1253
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1254
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1255
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.17)(react@18.2.0)
1256
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1257
+ '@types/react': 18.2.17
1258
+ '@types/react-dom': 18.2.7
1230
1259
  aria-hidden: 1.2.3
1231
1260
  react: 18.2.0
1232
1261
  react-dom: 18.2.0(react@18.2.0)
1233
- react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0)
1262
+ react-remove-scroll: 2.5.5(@types/react@18.2.17)(react@18.2.0)
1234
1263
  dev: false
1235
1264
 
1236
- /@radix-ui/react-direction@1.0.1(@types/react@18.2.14)(react@18.2.0):
1265
+ /@radix-ui/react-direction@1.0.1(@types/react@18.2.17)(react@18.2.0):
1237
1266
  resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
1238
1267
  peerDependencies:
1239
1268
  '@types/react': '*'
@@ -1243,7 +1272,7 @@ packages:
1243
1272
  optional: true
1244
1273
  dependencies:
1245
1274
  '@babel/runtime': 7.21.5
1246
- '@types/react': 18.2.14
1275
+ '@types/react': 18.2.17
1247
1276
  react: 18.2.0
1248
1277
  dev: false
1249
1278
 
@@ -1263,7 +1292,7 @@ packages:
1263
1292
  react-dom: 18.2.0(react@18.2.0)
1264
1293
  dev: false
1265
1294
 
1266
- /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1295
+ /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1267
1296
  resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
1268
1297
  peerDependencies:
1269
1298
  '@types/react': '*'
@@ -1278,17 +1307,17 @@ packages:
1278
1307
  dependencies:
1279
1308
  '@babel/runtime': 7.21.5
1280
1309
  '@radix-ui/primitive': 1.0.1
1281
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1282
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1283
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1284
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.14)(react@18.2.0)
1285
- '@types/react': 18.2.14
1286
- '@types/react-dom': 18.2.6
1310
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1311
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1312
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1313
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.17)(react@18.2.0)
1314
+ '@types/react': 18.2.17
1315
+ '@types/react-dom': 18.2.7
1287
1316
  react: 18.2.0
1288
1317
  react-dom: 18.2.0(react@18.2.0)
1289
1318
  dev: false
1290
1319
 
1291
- /@radix-ui/react-dropdown-menu@2.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1320
+ /@radix-ui/react-dropdown-menu@2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1292
1321
  resolution: {integrity: sha512-xdOrZzOTocqqkCkYo8yRPCib5OkTkqN7lqNCdxwPOdE466DOaNl4N8PkUIlsXthQvW5Wwkd+aEmWpfWlBoDPEw==}
1293
1322
  peerDependencies:
1294
1323
  '@types/react': '*'
@@ -1303,14 +1332,14 @@ packages:
1303
1332
  dependencies:
1304
1333
  '@babel/runtime': 7.21.5
1305
1334
  '@radix-ui/primitive': 1.0.1
1306
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1307
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1308
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1309
- '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1310
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1311
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1312
- '@types/react': 18.2.14
1313
- '@types/react-dom': 18.2.6
1335
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1336
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1337
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1338
+ '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1339
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1340
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1341
+ '@types/react': 18.2.17
1342
+ '@types/react-dom': 18.2.7
1314
1343
  react: 18.2.0
1315
1344
  react-dom: 18.2.0(react@18.2.0)
1316
1345
  dev: false
@@ -1324,7 +1353,7 @@ packages:
1324
1353
  react: 18.2.0
1325
1354
  dev: false
1326
1355
 
1327
- /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.14)(react@18.2.0):
1356
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.17)(react@18.2.0):
1328
1357
  resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
1329
1358
  peerDependencies:
1330
1359
  '@types/react': '*'
@@ -1334,7 +1363,7 @@ packages:
1334
1363
  optional: true
1335
1364
  dependencies:
1336
1365
  '@babel/runtime': 7.21.5
1337
- '@types/react': 18.2.14
1366
+ '@types/react': 18.2.17
1338
1367
  react: 18.2.0
1339
1368
  dev: false
1340
1369
 
@@ -1352,7 +1381,7 @@ packages:
1352
1381
  react-dom: 18.2.0(react@18.2.0)
1353
1382
  dev: false
1354
1383
 
1355
- /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1384
+ /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1356
1385
  resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
1357
1386
  peerDependencies:
1358
1387
  '@types/react': '*'
@@ -1366,16 +1395,16 @@ packages:
1366
1395
  optional: true
1367
1396
  dependencies:
1368
1397
  '@babel/runtime': 7.21.5
1369
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1370
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1371
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1372
- '@types/react': 18.2.14
1373
- '@types/react-dom': 18.2.6
1398
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1399
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1400
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1401
+ '@types/react': 18.2.17
1402
+ '@types/react-dom': 18.2.7
1374
1403
  react: 18.2.0
1375
1404
  react-dom: 18.2.0(react@18.2.0)
1376
1405
  dev: false
1377
1406
 
1378
- /@radix-ui/react-hover-card@1.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1407
+ /@radix-ui/react-hover-card@1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1379
1408
  resolution: {integrity: sha512-2K3ToJuMk9wjwBOa+jdg2oPma+AmLdcEyTNsG/iC4BDVG3E0/mGCjbY8PEDSLxJcUi+nJi2QII+ec/4kWd88DA==}
1380
1409
  peerDependencies:
1381
1410
  '@types/react': '*'
@@ -1390,16 +1419,16 @@ packages:
1390
1419
  dependencies:
1391
1420
  '@babel/runtime': 7.21.5
1392
1421
  '@radix-ui/primitive': 1.0.1
1393
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1394
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1395
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1396
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1397
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1398
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1399
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1400
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1401
- '@types/react': 18.2.14
1402
- '@types/react-dom': 18.2.6
1422
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1423
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1424
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1425
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1426
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1427
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1428
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1429
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1430
+ '@types/react': 18.2.17
1431
+ '@types/react-dom': 18.2.7
1403
1432
  react: 18.2.0
1404
1433
  react-dom: 18.2.0(react@18.2.0)
1405
1434
  dev: false
@@ -1422,7 +1451,7 @@ packages:
1422
1451
  react: 18.2.0
1423
1452
  dev: false
1424
1453
 
1425
- /@radix-ui/react-id@1.0.1(@types/react@18.2.14)(react@18.2.0):
1454
+ /@radix-ui/react-id@1.0.1(@types/react@18.2.17)(react@18.2.0):
1426
1455
  resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
1427
1456
  peerDependencies:
1428
1457
  '@types/react': '*'
@@ -1432,12 +1461,12 @@ packages:
1432
1461
  optional: true
1433
1462
  dependencies:
1434
1463
  '@babel/runtime': 7.21.5
1435
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1436
- '@types/react': 18.2.14
1464
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1465
+ '@types/react': 18.2.17
1437
1466
  react: 18.2.0
1438
1467
  dev: false
1439
1468
 
1440
- /@radix-ui/react-label@2.0.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1469
+ /@radix-ui/react-label@2.0.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1441
1470
  resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==}
1442
1471
  peerDependencies:
1443
1472
  '@types/react': '*'
@@ -1451,14 +1480,14 @@ packages:
1451
1480
  optional: true
1452
1481
  dependencies:
1453
1482
  '@babel/runtime': 7.21.5
1454
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1455
- '@types/react': 18.2.14
1456
- '@types/react-dom': 18.2.6
1483
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1484
+ '@types/react': 18.2.17
1485
+ '@types/react-dom': 18.2.7
1457
1486
  react: 18.2.0
1458
1487
  react-dom: 18.2.0(react@18.2.0)
1459
1488
  dev: false
1460
1489
 
1461
- /@radix-ui/react-menu@2.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1490
+ /@radix-ui/react-menu@2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1462
1491
  resolution: {integrity: sha512-Gw4f9pwdH+w5w+49k0gLjN0PfRDHvxmAgG16AbyJZ7zhwZ6PBHKtWohvnSwfusfnK3L68dpBREHpVkj8wEM7ZA==}
1463
1492
  peerDependencies:
1464
1493
  '@types/react': '*'
@@ -1473,30 +1502,30 @@ packages:
1473
1502
  dependencies:
1474
1503
  '@babel/runtime': 7.21.5
1475
1504
  '@radix-ui/primitive': 1.0.1
1476
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1477
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1478
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1479
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1480
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1481
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1482
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1483
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1484
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1485
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1486
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1487
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1488
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1489
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
1490
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1491
- '@types/react': 18.2.14
1492
- '@types/react-dom': 18.2.6
1505
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1506
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1507
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1508
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1509
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1510
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1511
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1512
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1513
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1514
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1515
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1516
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1517
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1518
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.17)(react@18.2.0)
1519
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1520
+ '@types/react': 18.2.17
1521
+ '@types/react-dom': 18.2.7
1493
1522
  aria-hidden: 1.2.3
1494
1523
  react: 18.2.0
1495
1524
  react-dom: 18.2.0(react@18.2.0)
1496
- react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0)
1525
+ react-remove-scroll: 2.5.5(@types/react@18.2.17)(react@18.2.0)
1497
1526
  dev: false
1498
1527
 
1499
- /@radix-ui/react-menubar@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1528
+ /@radix-ui/react-menubar@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1500
1529
  resolution: {integrity: sha512-GqjdxzYCjjKhcgEODDP8SrYfbWNh/Hm3lyuFkP5Q5IbX0QfXklLF1o1AqA3oTV2kulUgN/kOZVS92hIIShEgpA==}
1501
1530
  peerDependencies:
1502
1531
  '@types/react': '*'
@@ -1511,22 +1540,22 @@ packages:
1511
1540
  dependencies:
1512
1541
  '@babel/runtime': 7.21.5
1513
1542
  '@radix-ui/primitive': 1.0.1
1514
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1515
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1516
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1517
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1518
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1519
- '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1520
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1521
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1522
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1523
- '@types/react': 18.2.14
1524
- '@types/react-dom': 18.2.6
1543
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1544
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1545
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1546
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1547
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1548
+ '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1549
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1550
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1551
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1552
+ '@types/react': 18.2.17
1553
+ '@types/react-dom': 18.2.7
1525
1554
  react: 18.2.0
1526
1555
  react-dom: 18.2.0(react@18.2.0)
1527
1556
  dev: false
1528
1557
 
1529
- /@radix-ui/react-navigation-menu@1.1.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1558
+ /@radix-ui/react-navigation-menu@1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1530
1559
  resolution: {integrity: sha512-x4Uv0N47ABx3/frJazYXxvMpZeKJe0qmRIgQ2o3lhTqnTVg+CaZfVVO4nQLn3QJcDkTz8icElKffhFng47XIBA==}
1531
1560
  peerDependencies:
1532
1561
  '@types/react': '*'
@@ -1541,26 +1570,26 @@ packages:
1541
1570
  dependencies:
1542
1571
  '@babel/runtime': 7.21.5
1543
1572
  '@radix-ui/primitive': 1.0.1
1544
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1545
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1546
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1547
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1548
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1549
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1550
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1551
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1552
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1553
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1554
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1555
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1556
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1557
- '@types/react': 18.2.14
1558
- '@types/react-dom': 18.2.6
1573
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1574
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1575
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1576
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1577
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1578
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1579
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1580
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1581
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1582
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1583
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1584
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1585
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1586
+ '@types/react': 18.2.17
1587
+ '@types/react-dom': 18.2.7
1559
1588
  react: 18.2.0
1560
1589
  react-dom: 18.2.0(react@18.2.0)
1561
1590
  dev: false
1562
1591
 
1563
- /@radix-ui/react-popover@1.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1592
+ /@radix-ui/react-popover@1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1564
1593
  resolution: {integrity: sha512-cZ4defGpkZ0qTRtlIBzJLSzL6ht7ofhhW4i1+pkemjV1IKXm0wgCRnee154qlV6r9Ttunmh2TNZhMfV2bavUyA==}
1565
1594
  peerDependencies:
1566
1595
  '@types/react': '*'
@@ -1575,27 +1604,27 @@ packages:
1575
1604
  dependencies:
1576
1605
  '@babel/runtime': 7.21.5
1577
1606
  '@radix-ui/primitive': 1.0.1
1578
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1579
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1580
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1581
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1582
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1583
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1584
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1585
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1586
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1587
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1588
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
1589
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1590
- '@types/react': 18.2.14
1591
- '@types/react-dom': 18.2.6
1607
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1608
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1609
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1610
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1611
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1612
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1613
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1614
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1615
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1616
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1617
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.17)(react@18.2.0)
1618
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1619
+ '@types/react': 18.2.17
1620
+ '@types/react-dom': 18.2.7
1592
1621
  aria-hidden: 1.2.3
1593
1622
  react: 18.2.0
1594
1623
  react-dom: 18.2.0(react@18.2.0)
1595
- react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0)
1624
+ react-remove-scroll: 2.5.5(@types/react@18.2.17)(react@18.2.0)
1596
1625
  dev: false
1597
1626
 
1598
- /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1627
+ /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1599
1628
  resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
1600
1629
  peerDependencies:
1601
1630
  '@types/react': '*'
@@ -1610,17 +1639,17 @@ packages:
1610
1639
  dependencies:
1611
1640
  '@babel/runtime': 7.21.5
1612
1641
  '@floating-ui/react-dom': 2.0.0(react-dom@18.2.0)(react@18.2.0)
1613
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1614
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1615
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1616
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1617
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1618
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1619
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1620
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1642
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1643
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1644
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1645
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1646
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1647
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1648
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1649
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1621
1650
  '@radix-ui/rect': 1.0.1
1622
- '@types/react': 18.2.14
1623
- '@types/react-dom': 18.2.6
1651
+ '@types/react': 18.2.17
1652
+ '@types/react-dom': 18.2.7
1624
1653
  react: 18.2.0
1625
1654
  react-dom: 18.2.0(react@18.2.0)
1626
1655
  dev: false
@@ -1637,7 +1666,7 @@ packages:
1637
1666
  react-dom: 18.2.0(react@18.2.0)
1638
1667
  dev: false
1639
1668
 
1640
- /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1669
+ /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1641
1670
  resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
1642
1671
  peerDependencies:
1643
1672
  '@types/react': '*'
@@ -1651,9 +1680,9 @@ packages:
1651
1680
  optional: true
1652
1681
  dependencies:
1653
1682
  '@babel/runtime': 7.21.5
1654
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1655
- '@types/react': 18.2.14
1656
- '@types/react-dom': 18.2.6
1683
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1684
+ '@types/react': 18.2.17
1685
+ '@types/react-dom': 18.2.7
1657
1686
  react: 18.2.0
1658
1687
  react-dom: 18.2.0(react@18.2.0)
1659
1688
  dev: false
@@ -1671,7 +1700,7 @@ packages:
1671
1700
  react-dom: 18.2.0(react@18.2.0)
1672
1701
  dev: false
1673
1702
 
1674
- /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1703
+ /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1675
1704
  resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
1676
1705
  peerDependencies:
1677
1706
  '@types/react': '*'
@@ -1685,10 +1714,10 @@ packages:
1685
1714
  optional: true
1686
1715
  dependencies:
1687
1716
  '@babel/runtime': 7.21.5
1688
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1689
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1690
- '@types/react': 18.2.14
1691
- '@types/react-dom': 18.2.6
1717
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1718
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1719
+ '@types/react': 18.2.17
1720
+ '@types/react-dom': 18.2.7
1692
1721
  react: 18.2.0
1693
1722
  react-dom: 18.2.0(react@18.2.0)
1694
1723
  dev: false
@@ -1705,7 +1734,7 @@ packages:
1705
1734
  react-dom: 18.2.0(react@18.2.0)
1706
1735
  dev: false
1707
1736
 
1708
- /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1737
+ /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1709
1738
  resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
1710
1739
  peerDependencies:
1711
1740
  '@types/react': '*'
@@ -1719,14 +1748,14 @@ packages:
1719
1748
  optional: true
1720
1749
  dependencies:
1721
1750
  '@babel/runtime': 7.21.5
1722
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
1723
- '@types/react': 18.2.14
1724
- '@types/react-dom': 18.2.6
1751
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.17)(react@18.2.0)
1752
+ '@types/react': 18.2.17
1753
+ '@types/react-dom': 18.2.7
1725
1754
  react: 18.2.0
1726
1755
  react-dom: 18.2.0(react@18.2.0)
1727
1756
  dev: false
1728
1757
 
1729
- /@radix-ui/react-progress@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1758
+ /@radix-ui/react-progress@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1730
1759
  resolution: {integrity: sha512-5G6Om/tYSxjSeEdrb1VfKkfZfn/1IlPWd731h2RfPuSbIfNUgfqAwbKfJCg/PP6nuUCTrYzalwHSpSinoWoCag==}
1731
1760
  peerDependencies:
1732
1761
  '@types/react': '*'
@@ -1740,15 +1769,15 @@ packages:
1740
1769
  optional: true
1741
1770
  dependencies:
1742
1771
  '@babel/runtime': 7.21.5
1743
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1744
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1745
- '@types/react': 18.2.14
1746
- '@types/react-dom': 18.2.6
1772
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1773
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1774
+ '@types/react': 18.2.17
1775
+ '@types/react-dom': 18.2.7
1747
1776
  react: 18.2.0
1748
1777
  react-dom: 18.2.0(react@18.2.0)
1749
1778
  dev: false
1750
1779
 
1751
- /@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1780
+ /@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1752
1781
  resolution: {integrity: sha512-x+yELayyefNeKeTx4fjK6j99Fs6c4qKm3aY38G3swQVTN6xMpsrbigC0uHs2L//g8q4qR7qOcww8430jJmi2ag==}
1753
1782
  peerDependencies:
1754
1783
  '@types/react': '*'
@@ -1763,22 +1792,22 @@ packages:
1763
1792
  dependencies:
1764
1793
  '@babel/runtime': 7.21.5
1765
1794
  '@radix-ui/primitive': 1.0.1
1766
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1767
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1768
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1769
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1770
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1771
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1772
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1773
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1774
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1775
- '@types/react': 18.2.14
1776
- '@types/react-dom': 18.2.6
1795
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1796
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1797
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1798
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1799
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1800
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1801
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1802
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1803
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1804
+ '@types/react': 18.2.17
1805
+ '@types/react-dom': 18.2.7
1777
1806
  react: 18.2.0
1778
1807
  react-dom: 18.2.0(react@18.2.0)
1779
1808
  dev: false
1780
1809
 
1781
- /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1810
+ /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1782
1811
  resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
1783
1812
  peerDependencies:
1784
1813
  '@types/react': '*'
@@ -1793,21 +1822,21 @@ packages:
1793
1822
  dependencies:
1794
1823
  '@babel/runtime': 7.21.5
1795
1824
  '@radix-ui/primitive': 1.0.1
1796
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1797
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1798
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1799
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1800
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1801
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1802
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1803
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1804
- '@types/react': 18.2.14
1805
- '@types/react-dom': 18.2.6
1825
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1826
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1827
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1828
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1829
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1830
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1831
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1832
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1833
+ '@types/react': 18.2.17
1834
+ '@types/react-dom': 18.2.7
1806
1835
  react: 18.2.0
1807
1836
  react-dom: 18.2.0(react@18.2.0)
1808
1837
  dev: false
1809
1838
 
1810
- /@radix-ui/react-scroll-area@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1839
+ /@radix-ui/react-scroll-area@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1811
1840
  resolution: {integrity: sha512-OIClwBkwPG+FKvC4OMTRaa/3cfD069nkKFFL/TQzRzaO42Ce5ivKU9VMKgT7UU6UIkjcQqKBrDOIzWtPGw6e6w==}
1812
1841
  peerDependencies:
1813
1842
  '@types/react': '*'
@@ -1823,20 +1852,20 @@ packages:
1823
1852
  '@babel/runtime': 7.21.5
1824
1853
  '@radix-ui/number': 1.0.1
1825
1854
  '@radix-ui/primitive': 1.0.1
1826
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1827
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1828
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1829
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1830
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1831
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1832
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1833
- '@types/react': 18.2.14
1834
- '@types/react-dom': 18.2.6
1855
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1856
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1857
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1858
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1859
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1860
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1861
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1862
+ '@types/react': 18.2.17
1863
+ '@types/react-dom': 18.2.7
1835
1864
  react: 18.2.0
1836
1865
  react-dom: 18.2.0(react@18.2.0)
1837
1866
  dev: false
1838
1867
 
1839
- /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1868
+ /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1840
1869
  resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
1841
1870
  peerDependencies:
1842
1871
  '@types/react': '*'
@@ -1852,32 +1881,32 @@ packages:
1852
1881
  '@babel/runtime': 7.21.5
1853
1882
  '@radix-ui/number': 1.0.1
1854
1883
  '@radix-ui/primitive': 1.0.1
1855
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1856
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1857
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1858
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1859
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1860
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1861
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1862
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1863
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1864
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1865
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1866
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
1867
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1868
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1869
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1870
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1871
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1872
- '@types/react': 18.2.14
1873
- '@types/react-dom': 18.2.6
1884
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1885
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1886
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1887
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1888
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1889
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1890
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1891
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1892
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1893
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1894
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1895
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.17)(react@18.2.0)
1896
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1897
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1898
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1899
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1900
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1901
+ '@types/react': 18.2.17
1902
+ '@types/react-dom': 18.2.7
1874
1903
  aria-hidden: 1.2.3
1875
1904
  react: 18.2.0
1876
1905
  react-dom: 18.2.0(react@18.2.0)
1877
- react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0)
1906
+ react-remove-scroll: 2.5.5(@types/react@18.2.17)(react@18.2.0)
1878
1907
  dev: false
1879
1908
 
1880
- /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1909
+ /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1881
1910
  resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
1882
1911
  peerDependencies:
1883
1912
  '@types/react': '*'
@@ -1891,14 +1920,14 @@ packages:
1891
1920
  optional: true
1892
1921
  dependencies:
1893
1922
  '@babel/runtime': 7.21.5
1894
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1895
- '@types/react': 18.2.14
1896
- '@types/react-dom': 18.2.6
1923
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1924
+ '@types/react': 18.2.17
1925
+ '@types/react-dom': 18.2.7
1897
1926
  react: 18.2.0
1898
1927
  react-dom: 18.2.0(react@18.2.0)
1899
1928
  dev: false
1900
1929
 
1901
- /@radix-ui/react-slider@1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1930
+ /@radix-ui/react-slider@1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1902
1931
  resolution: {integrity: sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw==}
1903
1932
  peerDependencies:
1904
1933
  '@types/react': '*'
@@ -1914,17 +1943,17 @@ packages:
1914
1943
  '@babel/runtime': 7.21.5
1915
1944
  '@radix-ui/number': 1.0.1
1916
1945
  '@radix-ui/primitive': 1.0.1
1917
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1918
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1919
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1920
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1921
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1922
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1923
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1924
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1925
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1926
- '@types/react': 18.2.14
1927
- '@types/react-dom': 18.2.6
1946
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1947
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1948
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1949
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1950
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
1951
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1952
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1953
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1954
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1955
+ '@types/react': 18.2.17
1956
+ '@types/react-dom': 18.2.7
1928
1957
  react: 18.2.0
1929
1958
  react-dom: 18.2.0(react@18.2.0)
1930
1959
  dev: false
@@ -1939,7 +1968,7 @@ packages:
1939
1968
  react: 18.2.0
1940
1969
  dev: false
1941
1970
 
1942
- /@radix-ui/react-slot@1.0.2(@types/react@18.2.14)(react@18.2.0):
1971
+ /@radix-ui/react-slot@1.0.2(@types/react@18.2.17)(react@18.2.0):
1943
1972
  resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
1944
1973
  peerDependencies:
1945
1974
  '@types/react': '*'
@@ -1949,12 +1978,12 @@ packages:
1949
1978
  optional: true
1950
1979
  dependencies:
1951
1980
  '@babel/runtime': 7.21.5
1952
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1953
- '@types/react': 18.2.14
1981
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
1982
+ '@types/react': 18.2.17
1954
1983
  react: 18.2.0
1955
1984
  dev: false
1956
1985
 
1957
- /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1986
+ /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1958
1987
  resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==}
1959
1988
  peerDependencies:
1960
1989
  '@types/react': '*'
@@ -1969,19 +1998,19 @@ packages:
1969
1998
  dependencies:
1970
1999
  '@babel/runtime': 7.21.5
1971
2000
  '@radix-ui/primitive': 1.0.1
1972
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1973
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1974
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
1975
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1976
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1977
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1978
- '@types/react': 18.2.14
1979
- '@types/react-dom': 18.2.6
2001
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2002
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2003
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2004
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2005
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2006
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2007
+ '@types/react': 18.2.17
2008
+ '@types/react-dom': 18.2.7
1980
2009
  react: 18.2.0
1981
2010
  react-dom: 18.2.0(react@18.2.0)
1982
2011
  dev: false
1983
2012
 
1984
- /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
2013
+ /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
1985
2014
  resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==}
1986
2015
  peerDependencies:
1987
2016
  '@types/react': '*'
@@ -1996,20 +2025,20 @@ packages:
1996
2025
  dependencies:
1997
2026
  '@babel/runtime': 7.21.5
1998
2027
  '@radix-ui/primitive': 1.0.1
1999
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2000
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2001
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2002
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2003
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2004
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2005
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2006
- '@types/react': 18.2.14
2007
- '@types/react-dom': 18.2.6
2028
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2029
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2030
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2031
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2032
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2033
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2034
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2035
+ '@types/react': 18.2.17
2036
+ '@types/react-dom': 18.2.7
2008
2037
  react: 18.2.0
2009
2038
  react-dom: 18.2.0(react@18.2.0)
2010
2039
  dev: false
2011
2040
 
2012
- /@radix-ui/react-toast@1.1.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
2041
+ /@radix-ui/react-toast@1.1.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
2013
2042
  resolution: {integrity: sha512-wf+fc8DOywrpRK3jlPlWVe+ELYGHdKDaaARJZNuUTWyWYq7+ANCFLp4rTjZ/mcGkJJQ/vZ949Zis9xxEpfq9OA==}
2014
2043
  peerDependencies:
2015
2044
  '@types/react': '*'
@@ -2024,24 +2053,24 @@ packages:
2024
2053
  dependencies:
2025
2054
  '@babel/runtime': 7.21.5
2026
2055
  '@radix-ui/primitive': 1.0.1
2027
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2028
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2029
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2030
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2031
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2032
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2033
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2034
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2035
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2036
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2037
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2038
- '@types/react': 18.2.14
2039
- '@types/react-dom': 18.2.6
2056
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2057
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2058
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2059
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2060
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2061
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2062
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2063
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2064
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2065
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2066
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2067
+ '@types/react': 18.2.17
2068
+ '@types/react-dom': 18.2.7
2040
2069
  react: 18.2.0
2041
2070
  react-dom: 18.2.0(react@18.2.0)
2042
2071
  dev: false
2043
2072
 
2044
- /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
2073
+ /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
2045
2074
  resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
2046
2075
  peerDependencies:
2047
2076
  '@types/react': '*'
@@ -2056,19 +2085,19 @@ packages:
2056
2085
  dependencies:
2057
2086
  '@babel/runtime': 7.21.5
2058
2087
  '@radix-ui/primitive': 1.0.1
2059
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2060
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2061
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2062
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2063
- '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2064
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2065
- '@types/react': 18.2.14
2066
- '@types/react-dom': 18.2.6
2088
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2089
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2090
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2091
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2092
+ '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2093
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2094
+ '@types/react': 18.2.17
2095
+ '@types/react-dom': 18.2.7
2067
2096
  react: 18.2.0
2068
2097
  react-dom: 18.2.0(react@18.2.0)
2069
2098
  dev: false
2070
2099
 
2071
- /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
2100
+ /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
2072
2101
  resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
2073
2102
  peerDependencies:
2074
2103
  '@types/react': '*'
@@ -2083,15 +2112,15 @@ packages:
2083
2112
  dependencies:
2084
2113
  '@babel/runtime': 7.21.5
2085
2114
  '@radix-ui/primitive': 1.0.1
2086
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2087
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2088
- '@types/react': 18.2.14
2089
- '@types/react-dom': 18.2.6
2115
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2116
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2117
+ '@types/react': 18.2.17
2118
+ '@types/react-dom': 18.2.7
2090
2119
  react: 18.2.0
2091
2120
  react-dom: 18.2.0(react@18.2.0)
2092
2121
  dev: false
2093
2122
 
2094
- /@radix-ui/react-tooltip@1.0.6(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
2123
+ /@radix-ui/react-tooltip@1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
2095
2124
  resolution: {integrity: sha512-DmNFOiwEc2UDigsYj6clJENma58OelxD24O4IODoZ+3sQc3Zb+L8w1EP+y9laTuKCLAysPw4fD6/v0j4KNV8rg==}
2096
2125
  peerDependencies:
2097
2126
  '@types/react': '*'
@@ -2106,19 +2135,19 @@ packages:
2106
2135
  dependencies:
2107
2136
  '@babel/runtime': 7.21.5
2108
2137
  '@radix-ui/primitive': 1.0.1
2109
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2110
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2111
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2112
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2113
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2114
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2115
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2116
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2117
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
2118
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2119
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2120
- '@types/react': 18.2.14
2121
- '@types/react-dom': 18.2.6
2138
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2139
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2140
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2141
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2142
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2143
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2144
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2145
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2146
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.17)(react@18.2.0)
2147
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2148
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2149
+ '@types/react': 18.2.17
2150
+ '@types/react-dom': 18.2.7
2122
2151
  react: 18.2.0
2123
2152
  react-dom: 18.2.0(react@18.2.0)
2124
2153
  dev: false
@@ -2132,7 +2161,7 @@ packages:
2132
2161
  react: 18.2.0
2133
2162
  dev: false
2134
2163
 
2135
- /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.14)(react@18.2.0):
2164
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.17)(react@18.2.0):
2136
2165
  resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
2137
2166
  peerDependencies:
2138
2167
  '@types/react': '*'
@@ -2142,7 +2171,7 @@ packages:
2142
2171
  optional: true
2143
2172
  dependencies:
2144
2173
  '@babel/runtime': 7.21.5
2145
- '@types/react': 18.2.14
2174
+ '@types/react': 18.2.17
2146
2175
  react: 18.2.0
2147
2176
  dev: false
2148
2177
 
@@ -2156,7 +2185,7 @@ packages:
2156
2185
  react: 18.2.0
2157
2186
  dev: false
2158
2187
 
2159
- /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.14)(react@18.2.0):
2188
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.17)(react@18.2.0):
2160
2189
  resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
2161
2190
  peerDependencies:
2162
2191
  '@types/react': '*'
@@ -2166,8 +2195,8 @@ packages:
2166
2195
  optional: true
2167
2196
  dependencies:
2168
2197
  '@babel/runtime': 7.21.5
2169
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2170
- '@types/react': 18.2.14
2198
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2199
+ '@types/react': 18.2.17
2171
2200
  react: 18.2.0
2172
2201
  dev: false
2173
2202
 
@@ -2181,7 +2210,7 @@ packages:
2181
2210
  react: 18.2.0
2182
2211
  dev: false
2183
2212
 
2184
- /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.14)(react@18.2.0):
2213
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.17)(react@18.2.0):
2185
2214
  resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
2186
2215
  peerDependencies:
2187
2216
  '@types/react': '*'
@@ -2191,8 +2220,8 @@ packages:
2191
2220
  optional: true
2192
2221
  dependencies:
2193
2222
  '@babel/runtime': 7.21.5
2194
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2195
- '@types/react': 18.2.14
2223
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2224
+ '@types/react': 18.2.17
2196
2225
  react: 18.2.0
2197
2226
  dev: false
2198
2227
 
@@ -2205,7 +2234,7 @@ packages:
2205
2234
  react: 18.2.0
2206
2235
  dev: false
2207
2236
 
2208
- /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.14)(react@18.2.0):
2237
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.17)(react@18.2.0):
2209
2238
  resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
2210
2239
  peerDependencies:
2211
2240
  '@types/react': '*'
@@ -2215,11 +2244,11 @@ packages:
2215
2244
  optional: true
2216
2245
  dependencies:
2217
2246
  '@babel/runtime': 7.21.5
2218
- '@types/react': 18.2.14
2247
+ '@types/react': 18.2.17
2219
2248
  react: 18.2.0
2220
2249
  dev: false
2221
2250
 
2222
- /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.14)(react@18.2.0):
2251
+ /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.17)(react@18.2.0):
2223
2252
  resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
2224
2253
  peerDependencies:
2225
2254
  '@types/react': '*'
@@ -2229,11 +2258,11 @@ packages:
2229
2258
  optional: true
2230
2259
  dependencies:
2231
2260
  '@babel/runtime': 7.21.5
2232
- '@types/react': 18.2.14
2261
+ '@types/react': 18.2.17
2233
2262
  react: 18.2.0
2234
2263
  dev: false
2235
2264
 
2236
- /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.14)(react@18.2.0):
2265
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.17)(react@18.2.0):
2237
2266
  resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
2238
2267
  peerDependencies:
2239
2268
  '@types/react': '*'
@@ -2244,11 +2273,11 @@ packages:
2244
2273
  dependencies:
2245
2274
  '@babel/runtime': 7.21.5
2246
2275
  '@radix-ui/rect': 1.0.1
2247
- '@types/react': 18.2.14
2276
+ '@types/react': 18.2.17
2248
2277
  react: 18.2.0
2249
2278
  dev: false
2250
2279
 
2251
- /@radix-ui/react-use-size@1.0.1(@types/react@18.2.14)(react@18.2.0):
2280
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.2.17)(react@18.2.0):
2252
2281
  resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
2253
2282
  peerDependencies:
2254
2283
  '@types/react': '*'
@@ -2258,12 +2287,12 @@ packages:
2258
2287
  optional: true
2259
2288
  dependencies:
2260
2289
  '@babel/runtime': 7.21.5
2261
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
2262
- '@types/react': 18.2.14
2290
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.17)(react@18.2.0)
2291
+ '@types/react': 18.2.17
2263
2292
  react: 18.2.0
2264
2293
  dev: false
2265
2294
 
2266
- /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
2295
+ /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
2267
2296
  resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
2268
2297
  peerDependencies:
2269
2298
  '@types/react': '*'
@@ -2277,9 +2306,9 @@ packages:
2277
2306
  optional: true
2278
2307
  dependencies:
2279
2308
  '@babel/runtime': 7.21.5
2280
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2281
- '@types/react': 18.2.14
2282
- '@types/react-dom': 18.2.6
2309
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2310
+ '@types/react': 18.2.17
2311
+ '@types/react-dom': 18.2.7
2283
2312
  react: 18.2.0
2284
2313
  react-dom: 18.2.0(react@18.2.0)
2285
2314
  dev: false
@@ -2530,6 +2559,24 @@ packages:
2530
2559
  '@tauri-apps/cli-win32-x64-msvc': 2.0.0-alpha.10
2531
2560
  dev: true
2532
2561
 
2562
+ /@tauri-apps/plugin-app@2.0.0-alpha.0:
2563
+ resolution: {integrity: sha512-xU9oXcM6deKqsgRqo14GaQWZGmL3a33FTLISnophp8YWJp/Ve1RL5BZoCF6g1IX2zNnDyAirU0hx1Yy5c/37wg==}
2564
+ dependencies:
2565
+ '@tauri-apps/api': 2.0.0-alpha.4
2566
+ dev: false
2567
+
2568
+ /@tauri-apps/plugin-os@2.0.0-alpha.0:
2569
+ resolution: {integrity: sha512-vHZW/W/5bAvr1UnaXhRg29yDQUkBuCGlxtVDKUEUTvKEdbMrKLlFuzr8RxcczLI9CTDqQ/EP7xzn7XYYQWR82Q==}
2570
+ dependencies:
2571
+ '@tauri-apps/api': 2.0.0-alpha.4
2572
+ dev: false
2573
+
2574
+ /@tauri-apps/plugin-shell@2.0.0-alpha.0:
2575
+ resolution: {integrity: sha512-Tyl6lsM/S+v5n/cJpIErCGq5CJwGV1xVLB+xyG364wA/y1MpYTVrk5acCSB5sF+OSOtR84ZeazkL4tjCM6EIUA==}
2576
+ dependencies:
2577
+ '@tauri-apps/api': 2.0.0-alpha.4
2578
+ dev: false
2579
+
2533
2580
  /@tauri-apps/plugin-window@2.0.0-alpha.0:
2534
2581
  resolution: {integrity: sha512-ZXFXOu9m8QiDB8d8LFFgwcfxIAbr0bhzj06YvmZDB3isuVtlFP9EyU4D+zmumWEWvNN2XP7xgpn68ivOVhmNNQ==}
2535
2582
  dependencies:
@@ -2596,19 +2643,19 @@ packages:
2596
2643
  resolution: {integrity: sha512-HNB/9GHqu7Fo8AQiugyJbv6ZxYz58wef0esl4Mv828w1ZKpAshw/uFWVDUcIB9KKFeFKoxS3cHY07FFgtTRZ1g==}
2597
2644
  dev: false
2598
2645
 
2599
- /@types/node@20.4.1:
2600
- resolution: {integrity: sha512-JIzsAvJeA/5iY6Y/OxZbv1lUcc8dNSE77lb2gnBH+/PJ3lFR1Ccvgwl5JWnHAkNHcRsT0TbpVOsiMKZ1F/yyJg==}
2646
+ /@types/node@20.4.5:
2647
+ resolution: {integrity: sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg==}
2601
2648
 
2602
2649
  /@types/prop-types@15.7.5:
2603
2650
  resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
2604
2651
 
2605
- /@types/react-dom@18.2.6:
2606
- resolution: {integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==}
2652
+ /@types/react-dom@18.2.7:
2653
+ resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
2607
2654
  dependencies:
2608
- '@types/react': 18.2.14
2655
+ '@types/react': 18.2.17
2609
2656
 
2610
- /@types/react@18.2.14:
2611
- resolution: {integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==}
2657
+ /@types/react@18.2.17:
2658
+ resolution: {integrity: sha512-u+e7OlgPPh+aryjOm5UJMX32OvB2E3QASOAqVMY6Ahs90djagxwv2ya0IctglNbNTexC12qCSMZG47KPfy1hAA==}
2612
2659
  dependencies:
2613
2660
  '@types/prop-types': 15.7.5
2614
2661
  '@types/scheduler': 0.16.3
@@ -2617,13 +2664,13 @@ packages:
2617
2664
  /@types/scheduler@0.16.3:
2618
2665
  resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
2619
2666
 
2620
- /@vitejs/plugin-react-swc@3.3.2(vite@4.4.2):
2667
+ /@vitejs/plugin-react-swc@3.3.2(vite@4.4.7):
2621
2668
  resolution: {integrity: sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA==}
2622
2669
  peerDependencies:
2623
2670
  vite: ^4
2624
2671
  dependencies:
2625
2672
  '@swc/core': 1.3.68
2626
- vite: 4.4.2(@types/node@20.4.1)
2673
+ vite: 4.4.7(@types/node@20.4.5)
2627
2674
  transitivePeerDependencies:
2628
2675
  - '@swc/helpers'
2629
2676
  dev: false
@@ -2725,7 +2772,7 @@ packages:
2725
2772
  tslib: 2.5.2
2726
2773
  dev: false
2727
2774
 
2728
- /autoprefixer@10.4.14(postcss@8.4.25):
2775
+ /autoprefixer@10.4.14(postcss@8.4.27):
2729
2776
  resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
2730
2777
  engines: {node: ^10 || ^12 || >=14}
2731
2778
  hasBin: true
@@ -2737,7 +2784,7 @@ packages:
2737
2784
  fraction.js: 4.2.0
2738
2785
  normalize-range: 0.1.2
2739
2786
  picocolors: 1.0.0
2740
- postcss: 8.4.25
2787
+ postcss: 8.4.27
2741
2788
  postcss-value-parser: 4.2.0
2742
2789
  dev: true
2743
2790
 
@@ -2872,10 +2919,10 @@ packages:
2872
2919
  engines: {node: '>=8'}
2873
2920
  dev: true
2874
2921
 
2875
- /class-variance-authority@0.6.1:
2876
- resolution: {integrity: sha512-eurOEGc7YVx3majOrOb099PNKgO3KnKSApOprXI4BTq6bcfbqbQXPN2u+rPPmIJ2di23bMwhk0SxCCthBmszEQ==}
2922
+ /class-variance-authority@0.7.0:
2923
+ resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
2877
2924
  dependencies:
2878
- clsx: 1.2.1
2925
+ clsx: 2.0.0
2879
2926
  dev: true
2880
2927
 
2881
2928
  /classnames@2.3.2:
@@ -2900,18 +2947,17 @@ packages:
2900
2947
  wrap-ansi: 7.0.0
2901
2948
  dev: true
2902
2949
 
2903
- /clsx@1.2.1:
2904
- resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
2950
+ /clsx@2.0.0:
2951
+ resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
2905
2952
  engines: {node: '>=6'}
2906
- dev: true
2907
2953
 
2908
- /cmdk@0.2.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
2954
+ /cmdk@0.2.0(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0):
2909
2955
  resolution: {integrity: sha512-JQpKvEOb86SnvMZbYaFKYhvzFntWBeSZdyii0rZPhKJj9uwJBxu4DaVYDrRN7r3mPop56oPhRw+JYWTKs66TYw==}
2910
2956
  peerDependencies:
2911
2957
  react: ^18.0.0
2912
2958
  react-dom: ^18.0.0
2913
2959
  dependencies:
2914
- '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2960
+ '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.17)(react-dom@18.2.0)(react@18.2.0)
2915
2961
  command-score: 0.1.2
2916
2962
  react: 18.2.0
2917
2963
  react-dom: 18.2.0(react@18.2.0)
@@ -3408,6 +3454,7 @@ packages:
3408
3454
  /iconv-lite@0.6.3:
3409
3455
  resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
3410
3456
  engines: {node: '>=0.10.0'}
3457
+ requiresBuild: true
3411
3458
  dependencies:
3412
3459
  safer-buffer: 2.1.2
3413
3460
  dev: true
@@ -3587,8 +3634,8 @@ packages:
3587
3634
  engines: {node: 14 || >=16.14}
3588
3635
  dev: true
3589
3636
 
3590
- /lucide-react@0.259.0(react@18.2.0):
3591
- resolution: {integrity: sha512-dFBLc6jRDfcpD9NQ7NyFVa+YR3RHX6+bs+f/UiotvNPho+kd4WyeXWMCCchUf7i/pq3BAaHkbmtkbx/GxxHVUw==}
3637
+ /lucide-react@0.263.1(react@18.2.0):
3638
+ resolution: {integrity: sha512-keqxAx97PlaEN89PXZ6ki1N8nRjGWtDa4021GFYLNj0RgruM5odbpl8GHTExj0hhPq3sF6Up0gnxt6TSHu+ovw==}
3592
3639
  peerDependencies:
3593
3640
  react: ^16.5.1 || ^17.0.0 || ^18.0.0
3594
3641
  dependencies:
@@ -4078,27 +4125,27 @@ packages:
4078
4125
  resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
4079
4126
  engines: {node: '>= 6'}
4080
4127
 
4081
- /postcss-import@15.1.0(postcss@8.4.25):
4128
+ /postcss-import@15.1.0(postcss@8.4.27):
4082
4129
  resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
4083
4130
  engines: {node: '>=14.0.0'}
4084
4131
  peerDependencies:
4085
4132
  postcss: ^8.0.0
4086
4133
  dependencies:
4087
- postcss: 8.4.25
4134
+ postcss: 8.4.27
4088
4135
  postcss-value-parser: 4.2.0
4089
4136
  read-cache: 1.0.0
4090
4137
  resolve: 1.22.2
4091
4138
 
4092
- /postcss-js@4.0.1(postcss@8.4.25):
4139
+ /postcss-js@4.0.1(postcss@8.4.27):
4093
4140
  resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
4094
4141
  engines: {node: ^12 || ^14 || >= 16}
4095
4142
  peerDependencies:
4096
4143
  postcss: ^8.4.21
4097
4144
  dependencies:
4098
4145
  camelcase-css: 2.0.1
4099
- postcss: 8.4.25
4146
+ postcss: 8.4.27
4100
4147
 
4101
- /postcss-load-config@4.0.1(postcss@8.4.25):
4148
+ /postcss-load-config@4.0.1(postcss@8.4.27):
4102
4149
  resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
4103
4150
  engines: {node: '>= 14'}
4104
4151
  peerDependencies:
@@ -4111,16 +4158,16 @@ packages:
4111
4158
  optional: true
4112
4159
  dependencies:
4113
4160
  lilconfig: 2.1.0
4114
- postcss: 8.4.25
4161
+ postcss: 8.4.27
4115
4162
  yaml: 2.2.2
4116
4163
 
4117
- /postcss-nested@6.0.1(postcss@8.4.25):
4164
+ /postcss-nested@6.0.1(postcss@8.4.27):
4118
4165
  resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
4119
4166
  engines: {node: '>=12.0'}
4120
4167
  peerDependencies:
4121
4168
  postcss: ^8.2.14
4122
4169
  dependencies:
4123
- postcss: 8.4.25
4170
+ postcss: 8.4.27
4124
4171
  postcss-selector-parser: 6.0.13
4125
4172
 
4126
4173
  /postcss-selector-parser@6.0.13:
@@ -4146,16 +4193,16 @@ packages:
4146
4193
  source-map-js: 1.0.2
4147
4194
  dev: false
4148
4195
 
4149
- /postcss@8.4.25:
4150
- resolution: {integrity: sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw==}
4196
+ /postcss@8.4.27:
4197
+ resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==}
4151
4198
  engines: {node: ^10 || ^12 || >=14}
4152
4199
  dependencies:
4153
4200
  nanoid: 3.3.6
4154
4201
  picocolors: 1.0.0
4155
4202
  source-map-js: 1.0.2
4156
4203
 
4157
- /prettier-plugin-tailwindcss@0.3.0(@ianvs/prettier-plugin-sort-imports@4.0.2)(prettier@3.0.0):
4158
- resolution: {integrity: sha512-009/Xqdy7UmkcTBpwlq7jsViDqXAYSOMLDrHAdTMlVZOrKfM2o9Ci7EMWTMZ7SkKBFTG04UM9F9iM2+4i6boDA==}
4204
+ /prettier-plugin-tailwindcss@0.4.1(@ianvs/prettier-plugin-sort-imports@4.1.0)(prettier@3.0.0):
4205
+ resolution: {integrity: sha512-hwn2EiJmv8M+AW4YDkbjJ6HlZCTzLyz1QlySn9sMuKV/Px0fjwldlB7tol8GzdgqtkdPtzT3iJ4UzdnYXP25Ag==}
4159
4206
  engines: {node: '>=12.17.0'}
4160
4207
  peerDependencies:
4161
4208
  '@ianvs/prettier-plugin-sort-imports': '*'
@@ -4163,7 +4210,7 @@ packages:
4163
4210
  '@shopify/prettier-plugin-liquid': '*'
4164
4211
  '@shufo/prettier-plugin-blade': '*'
4165
4212
  '@trivago/prettier-plugin-sort-imports': '*'
4166
- prettier: '>=2.2.0'
4213
+ prettier: ^2.2 || ^3.0
4167
4214
  prettier-plugin-astro: '*'
4168
4215
  prettier-plugin-css-order: '*'
4169
4216
  prettier-plugin-import-sort: '*'
@@ -4206,7 +4253,7 @@ packages:
4206
4253
  prettier-plugin-twig-melody:
4207
4254
  optional: true
4208
4255
  dependencies:
4209
- '@ianvs/prettier-plugin-sort-imports': 4.0.2(prettier@3.0.0)
4256
+ '@ianvs/prettier-plugin-sort-imports': 4.1.0(prettier@3.0.0)
4210
4257
  prettier: 3.0.0
4211
4258
  dev: true
4212
4259
 
@@ -4277,6 +4324,15 @@ packages:
4277
4324
  scheduler: 0.23.0
4278
4325
  dev: false
4279
4326
 
4327
+ /react-hook-form@7.45.2(react@18.2.0):
4328
+ resolution: {integrity: sha512-9s45OdTaKN+4NSTbXVqeDITd/nwIg++nxJGL8+OD5uf1DxvhsXQ641kaYHk5K28cpIOTYm71O/fYk7rFaygb3A==}
4329
+ engines: {node: '>=12.22.0'}
4330
+ peerDependencies:
4331
+ react: ^16.8.0 || ^17 || ^18
4332
+ dependencies:
4333
+ react: 18.2.0
4334
+ dev: false
4335
+
4280
4336
  /react-is@16.13.1:
4281
4337
  resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
4282
4338
  dev: false
@@ -4285,7 +4341,7 @@ packages:
4285
4341
  resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
4286
4342
  dev: false
4287
4343
 
4288
- /react-remove-scroll-bar@2.3.4(@types/react@18.2.14)(react@18.2.0):
4344
+ /react-remove-scroll-bar@2.3.4(@types/react@18.2.17)(react@18.2.0):
4289
4345
  resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
4290
4346
  engines: {node: '>=10'}
4291
4347
  peerDependencies:
@@ -4295,13 +4351,13 @@ packages:
4295
4351
  '@types/react':
4296
4352
  optional: true
4297
4353
  dependencies:
4298
- '@types/react': 18.2.14
4354
+ '@types/react': 18.2.17
4299
4355
  react: 18.2.0
4300
- react-style-singleton: 2.2.1(@types/react@18.2.14)(react@18.2.0)
4356
+ react-style-singleton: 2.2.1(@types/react@18.2.17)(react@18.2.0)
4301
4357
  tslib: 2.5.2
4302
4358
  dev: false
4303
4359
 
4304
- /react-remove-scroll@2.5.4(@types/react@18.2.14)(react@18.2.0):
4360
+ /react-remove-scroll@2.5.4(@types/react@18.2.17)(react@18.2.0):
4305
4361
  resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==}
4306
4362
  engines: {node: '>=10'}
4307
4363
  peerDependencies:
@@ -4311,16 +4367,16 @@ packages:
4311
4367
  '@types/react':
4312
4368
  optional: true
4313
4369
  dependencies:
4314
- '@types/react': 18.2.14
4370
+ '@types/react': 18.2.17
4315
4371
  react: 18.2.0
4316
- react-remove-scroll-bar: 2.3.4(@types/react@18.2.14)(react@18.2.0)
4317
- react-style-singleton: 2.2.1(@types/react@18.2.14)(react@18.2.0)
4372
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.17)(react@18.2.0)
4373
+ react-style-singleton: 2.2.1(@types/react@18.2.17)(react@18.2.0)
4318
4374
  tslib: 2.5.2
4319
- use-callback-ref: 1.3.0(@types/react@18.2.14)(react@18.2.0)
4320
- use-sidecar: 1.1.2(@types/react@18.2.14)(react@18.2.0)
4375
+ use-callback-ref: 1.3.0(@types/react@18.2.17)(react@18.2.0)
4376
+ use-sidecar: 1.1.2(@types/react@18.2.17)(react@18.2.0)
4321
4377
  dev: false
4322
4378
 
4323
- /react-remove-scroll@2.5.5(@types/react@18.2.14)(react@18.2.0):
4379
+ /react-remove-scroll@2.5.5(@types/react@18.2.17)(react@18.2.0):
4324
4380
  resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
4325
4381
  engines: {node: '>=10'}
4326
4382
  peerDependencies:
@@ -4330,13 +4386,13 @@ packages:
4330
4386
  '@types/react':
4331
4387
  optional: true
4332
4388
  dependencies:
4333
- '@types/react': 18.2.14
4389
+ '@types/react': 18.2.17
4334
4390
  react: 18.2.0
4335
- react-remove-scroll-bar: 2.3.4(@types/react@18.2.14)(react@18.2.0)
4336
- react-style-singleton: 2.2.1(@types/react@18.2.14)(react@18.2.0)
4391
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.17)(react@18.2.0)
4392
+ react-style-singleton: 2.2.1(@types/react@18.2.17)(react@18.2.0)
4337
4393
  tslib: 2.5.2
4338
- use-callback-ref: 1.3.0(@types/react@18.2.14)(react@18.2.0)
4339
- use-sidecar: 1.1.2(@types/react@18.2.14)(react@18.2.0)
4394
+ use-callback-ref: 1.3.0(@types/react@18.2.17)(react@18.2.0)
4395
+ use-sidecar: 1.1.2(@types/react@18.2.17)(react@18.2.0)
4340
4396
  dev: false
4341
4397
 
4342
4398
  /react-resize-detector@8.1.0(react-dom@18.2.0)(react@18.2.0):
@@ -4364,7 +4420,7 @@ packages:
4364
4420
  react-transition-group: 2.9.0(react-dom@18.2.0)(react@18.2.0)
4365
4421
  dev: false
4366
4422
 
4367
- /react-style-singleton@2.2.1(@types/react@18.2.14)(react@18.2.0):
4423
+ /react-style-singleton@2.2.1(@types/react@18.2.17)(react@18.2.0):
4368
4424
  resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
4369
4425
  engines: {node: '>=10'}
4370
4426
  peerDependencies:
@@ -4374,7 +4430,7 @@ packages:
4374
4430
  '@types/react':
4375
4431
  optional: true
4376
4432
  dependencies:
4377
- '@types/react': 18.2.14
4433
+ '@types/react': 18.2.17
4378
4434
  get-nonce: 1.0.1
4379
4435
  invariant: 2.2.4
4380
4436
  react: 18.2.0
@@ -4526,6 +4582,7 @@ packages:
4526
4582
 
4527
4583
  /safer-buffer@2.1.2:
4528
4584
  resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
4585
+ requiresBuild: true
4529
4586
  dev: true
4530
4587
  optional: true
4531
4588
 
@@ -4539,14 +4596,6 @@ packages:
4539
4596
  resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
4540
4597
  hasBin: true
4541
4598
 
4542
- /semver@7.5.1:
4543
- resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==}
4544
- engines: {node: '>=10'}
4545
- hasBin: true
4546
- dependencies:
4547
- lru-cache: 6.0.0
4548
- dev: true
4549
-
4550
4599
  /semver@7.5.4:
4551
4600
  resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
4552
4601
  engines: {node: '>=10'}
@@ -4749,29 +4798,28 @@ packages:
4749
4798
  resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
4750
4799
  engines: {node: '>= 0.4'}
4751
4800
 
4752
- /tailwind-merge@1.13.2:
4753
- resolution: {integrity: sha512-R2/nULkdg1VR/EL4RXg4dEohdoxNUJGLMnWIQnPKL+O9Twu7Cn3Rxi4dlXkDzZrEGtR+G+psSXFouWlpTyLhCQ==}
4754
- dev: true
4801
+ /tailwind-merge@1.14.0:
4802
+ resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==}
4755
4803
 
4756
- /tailwind-scrollbar@3.0.4(tailwindcss@3.3.2):
4804
+ /tailwind-scrollbar@3.0.4(tailwindcss@3.3.3):
4757
4805
  resolution: {integrity: sha512-X/QBsn/C5u9x6/YvTc1Zo7b09Gqs5BfDe0UK/8LDQUv8IEBKF+p2ISTRwvAr50MH0hn/wTyCEOann7uXoa1/2Q==}
4758
4806
  engines: {node: '>=12.13.0'}
4759
4807
  peerDependencies:
4760
4808
  tailwindcss: 3.x
4761
4809
  dependencies:
4762
- tailwindcss: 3.3.2
4810
+ tailwindcss: 3.3.3
4763
4811
  dev: false
4764
4812
 
4765
- /tailwindcss-animate@1.0.6(tailwindcss@3.3.2):
4813
+ /tailwindcss-animate@1.0.6(tailwindcss@3.3.3):
4766
4814
  resolution: {integrity: sha512-4WigSGMvbl3gCCact62ZvOngA+PRqhAn7si3TQ3/ZuPuQZcIEtVap+ENSXbzWhpojKB8CpvnIsrwBu8/RnHtuw==}
4767
4815
  peerDependencies:
4768
4816
  tailwindcss: '>=3.0.0 || insiders'
4769
4817
  dependencies:
4770
- tailwindcss: 3.3.2
4818
+ tailwindcss: 3.3.3
4771
4819
  dev: false
4772
4820
 
4773
- /tailwindcss@3.3.2:
4774
- resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==}
4821
+ /tailwindcss@3.3.3:
4822
+ resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==}
4775
4823
  engines: {node: '>=14.0.0'}
4776
4824
  hasBin: true
4777
4825
  dependencies:
@@ -4789,13 +4837,12 @@ packages:
4789
4837
  normalize-path: 3.0.0
4790
4838
  object-hash: 3.0.0
4791
4839
  picocolors: 1.0.0
4792
- postcss: 8.4.25
4793
- postcss-import: 15.1.0(postcss@8.4.25)
4794
- postcss-js: 4.0.1(postcss@8.4.25)
4795
- postcss-load-config: 4.0.1(postcss@8.4.25)
4796
- postcss-nested: 6.0.1(postcss@8.4.25)
4840
+ postcss: 8.4.27
4841
+ postcss-import: 15.1.0(postcss@8.4.27)
4842
+ postcss-js: 4.0.1(postcss@8.4.27)
4843
+ postcss-load-config: 4.0.1(postcss@8.4.27)
4844
+ postcss-nested: 6.0.1(postcss@8.4.27)
4797
4845
  postcss-selector-parser: 6.0.13
4798
- postcss-value-parser: 4.2.0
4799
4846
  resolve: 1.22.2
4800
4847
  sucrase: 3.32.0
4801
4848
  transitivePeerDependencies:
@@ -4813,6 +4860,27 @@ packages:
4813
4860
  yallist: 4.0.0
4814
4861
  dev: true
4815
4862
 
4863
+ /tauri-controls@0.0.6(@tauri-apps/plugin-os@2.0.0-alpha.0)(@tauri-apps/plugin-window@2.0.0-alpha.0)(clsx@2.0.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-merge@1.14.0)(tailwindcss@3.3.3):
4864
+ resolution: {integrity: sha512-xYPHBUFEHhTy2SuIzfroI47TNVf21mfTyG5Irg/8DVj8AB6y3qwsUgWRyKrp1lXspBGj3S1VMZEVD3FLbZRJDA==}
4865
+ peerDependencies:
4866
+ '@tauri-apps/plugin-os': 2.0.0-alpha.0
4867
+ '@tauri-apps/plugin-window': 2.0.0-alpha.0
4868
+ clsx: ^2.0.0
4869
+ react: '>=17.x'
4870
+ react-dom: '>=17.x'
4871
+ tailwind-merge: ^1.14.0
4872
+ tailwindcss: ^3.3.3
4873
+ dependencies:
4874
+ '@tauri-apps/api': 2.0.0-alpha.5
4875
+ '@tauri-apps/plugin-os': 2.0.0-alpha.0
4876
+ '@tauri-apps/plugin-window': 2.0.0-alpha.0
4877
+ clsx: 2.0.0
4878
+ react: 18.2.0
4879
+ react-dom: 18.2.0(react@18.2.0)
4880
+ tailwind-merge: 1.14.0
4881
+ tailwindcss: 3.3.3
4882
+ dev: false
4883
+
4816
4884
  /taze@0.11.2:
4817
4885
  resolution: {integrity: sha512-HM4chXXDaHCAl1AFbSlyHUFjoaEKTewVE0j6ni5S5mRdPdJdva4AfcmXgBZYnRBiJagl6QuVtsqLjqHUiiO20A==}
4818
4886
  hasBin: true
@@ -4922,7 +4990,7 @@ packages:
4922
4990
  escalade: 3.1.1
4923
4991
  picocolors: 1.0.0
4924
4992
 
4925
- /use-callback-ref@1.3.0(@types/react@18.2.14)(react@18.2.0):
4993
+ /use-callback-ref@1.3.0(@types/react@18.2.17)(react@18.2.0):
4926
4994
  resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
4927
4995
  engines: {node: '>=10'}
4928
4996
  peerDependencies:
@@ -4932,12 +5000,12 @@ packages:
4932
5000
  '@types/react':
4933
5001
  optional: true
4934
5002
  dependencies:
4935
- '@types/react': 18.2.14
5003
+ '@types/react': 18.2.17
4936
5004
  react: 18.2.0
4937
5005
  tslib: 2.5.2
4938
5006
  dev: false
4939
5007
 
4940
- /use-sidecar@1.1.2(@types/react@18.2.14)(react@18.2.0):
5008
+ /use-sidecar@1.1.2(@types/react@18.2.17)(react@18.2.0):
4941
5009
  resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
4942
5010
  engines: {node: '>=10'}
4943
5011
  peerDependencies:
@@ -4947,7 +5015,7 @@ packages:
4947
5015
  '@types/react':
4948
5016
  optional: true
4949
5017
  dependencies:
4950
- '@types/react': 18.2.14
5018
+ '@types/react': 18.2.17
4951
5019
  detect-node-es: 1.1.0
4952
5020
  react: 18.2.0
4953
5021
  tslib: 2.5.2
@@ -4989,8 +5057,8 @@ packages:
4989
5057
  d3-timer: 3.0.1
4990
5058
  dev: false
4991
5059
 
4992
- /vite@4.4.2(@types/node@20.4.1):
4993
- resolution: {integrity: sha512-zUcsJN+UvdSyHhYa277UHhiJ3iq4hUBwHavOpsNUGsTgjBeoBlK8eDt+iT09pBq0h9/knhG/SPrZiM7cGmg7NA==}
5060
+ /vite@4.4.7(@types/node@20.4.5):
5061
+ resolution: {integrity: sha512-6pYf9QJ1mHylfVh39HpuSfMPojPSKVxZvnclX1K1FyZ1PXDOcLBibdq5t1qxJSnL63ca8Wf4zts6mD8u8oc9Fw==}
4994
5062
  engines: {node: ^14.18.0 || >=16.0.0}
4995
5063
  hasBin: true
4996
5064
  peerDependencies:
@@ -5017,9 +5085,9 @@ packages:
5017
5085
  terser:
5018
5086
  optional: true
5019
5087
  dependencies:
5020
- '@types/node': 20.4.1
5088
+ '@types/node': 20.4.5
5021
5089
  esbuild: 0.18.11
5022
- postcss: 8.4.25
5090
+ postcss: 8.4.27
5023
5091
  rollup: 3.26.2
5024
5092
  optionalDependencies:
5025
5093
  fsevents: 2.3.2