create-tauri-ui 0.1.4 → 0.2.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 (496) hide show
  1. package/README.md +56 -13
  2. package/dist/index.mjs +26 -27
  3. package/index.js +1 -1
  4. package/package.json +54 -63
  5. package/templates/.shared/.github/workflows/release.yml +112 -0
  6. package/templates/.shared/app-icon.png +0 -0
  7. package/templates/.shared/src-tauri/Cargo.lock +3701 -0
  8. package/templates/.shared/src-tauri/Cargo.toml +36 -0
  9. package/templates/.shared/src-tauri/build.rs +3 -0
  10. package/templates/.shared/src-tauri/icons/128x128.png +0 -0
  11. package/templates/.shared/src-tauri/icons/128x128@2x.png +0 -0
  12. package/templates/.shared/src-tauri/icons/32x32.png +0 -0
  13. package/templates/.shared/src-tauri/icons/Square107x107Logo.png +0 -0
  14. package/templates/.shared/src-tauri/icons/Square142x142Logo.png +0 -0
  15. package/templates/.shared/src-tauri/icons/Square150x150Logo.png +0 -0
  16. package/templates/.shared/src-tauri/icons/Square284x284Logo.png +0 -0
  17. package/templates/.shared/src-tauri/icons/Square30x30Logo.png +0 -0
  18. package/templates/.shared/src-tauri/icons/Square310x310Logo.png +0 -0
  19. package/templates/.shared/src-tauri/icons/Square44x44Logo.png +0 -0
  20. package/templates/.shared/src-tauri/icons/Square71x71Logo.png +0 -0
  21. package/templates/.shared/src-tauri/icons/Square89x89Logo.png +0 -0
  22. package/templates/.shared/src-tauri/icons/StoreLogo.png +0 -0
  23. package/templates/.shared/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
  24. package/templates/.shared/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  25. package/templates/.shared/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
  26. package/templates/.shared/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
  27. package/templates/.shared/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  28. package/templates/.shared/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
  29. package/templates/.shared/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
  30. package/templates/.shared/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  31. package/templates/.shared/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
  32. package/templates/.shared/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
  33. package/templates/.shared/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  34. package/templates/.shared/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  35. package/templates/.shared/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
  36. package/templates/.shared/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  37. package/templates/.shared/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  38. package/templates/.shared/src-tauri/icons/icon.icns +0 -0
  39. package/templates/.shared/src-tauri/icons/icon.ico +0 -0
  40. package/templates/.shared/src-tauri/icons/icon.png +0 -0
  41. package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
  42. package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
  43. package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
  44. package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
  45. package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
  46. package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
  47. package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
  48. package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
  49. package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
  50. package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
  51. package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
  52. package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
  53. package/templates/.shared/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
  54. package/templates/.shared/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
  55. package/templates/.shared/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
  56. package/templates/.shared/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
  57. package/templates/.shared/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
  58. package/templates/.shared/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
  59. package/templates/.shared/src-tauri/src/main.rs +19 -0
  60. package/templates/.shared/src-tauri/tauri.conf.json +79 -0
  61. package/templates/next/.env +1 -1
  62. package/templates/next/.github/workflows/release.yml +108 -108
  63. package/templates/next/.vscode/extensions.json +3 -3
  64. package/templates/next/README.md +95 -88
  65. package/templates/next/components.json +16 -0
  66. package/templates/next/next-env.d.ts +5 -5
  67. package/templates/next/next.config.js +14 -17
  68. package/templates/next/package.json +83 -82
  69. package/templates/next/pnpm-lock.yaml +4869 -4754
  70. package/templates/next/postcss.config.js +6 -6
  71. package/templates/next/prettier.config.js +35 -35
  72. package/templates/next/src/app/examples/authentication/components/user-auth-form.tsx +1 -1
  73. package/templates/next/src/app/examples/authentication/page.tsx +67 -59
  74. package/templates/next/src/app/examples/cards/components/create-account.tsx +1 -1
  75. package/templates/next/src/app/examples/cards/components/date-picker.tsx +2 -2
  76. package/templates/next/src/app/examples/cards/components/github-card.tsx +15 -10
  77. package/templates/next/src/app/examples/cards/components/notifications.tsx +9 -9
  78. package/templates/next/src/app/examples/cards/components/payment-method.tsx +14 -4
  79. package/templates/next/src/app/examples/cards/components/report-an-issue.tsx +4 -1
  80. package/templates/next/src/app/examples/cards/components/share-document.tsx +5 -1
  81. package/templates/next/src/app/examples/cards/components/team-members.tsx +8 -4
  82. package/templates/next/src/app/examples/cards/page.tsx +37 -36
  83. package/templates/next/src/app/examples/dashboard/components/date-range-picker.tsx +2 -3
  84. package/templates/next/src/app/examples/dashboard/components/main-nav.tsx +10 -8
  85. package/templates/next/src/app/examples/dashboard/components/recent-sales.tsx +5 -1
  86. package/templates/next/src/app/examples/dashboard/components/search.tsx +1 -1
  87. package/templates/next/src/app/examples/dashboard/components/team-switcher.tsx +15 -7
  88. package/templates/next/src/app/examples/dashboard/components/user-nav.tsx +10 -15
  89. package/templates/next/src/app/examples/dashboard/page.tsx +164 -114
  90. package/templates/next/src/app/examples/forms/account/account-form.tsx +13 -13
  91. package/templates/next/src/app/examples/forms/appearance/appearance-form.tsx +5 -5
  92. package/templates/next/src/app/examples/forms/components/sidebar-nav.tsx +3 -2
  93. package/templates/next/src/app/examples/forms/display/display-form.tsx +2 -2
  94. package/templates/next/src/app/examples/forms/layout.tsx +16 -14
  95. package/templates/next/src/app/examples/forms/notifications/notifications-form.tsx +6 -5
  96. package/templates/next/src/app/examples/forms/notifications/page.tsx +0 -1
  97. package/templates/next/src/app/examples/forms/profile-form.tsx +16 -15
  98. package/templates/next/src/app/examples/layout.tsx +7 -7
  99. package/templates/next/src/app/examples/music/components/album-artwork.tsx +15 -4
  100. package/templates/next/src/app/examples/music/components/menu.tsx +27 -5
  101. package/templates/next/src/app/examples/music/components/podcast-empty-placeholder.tsx +15 -4
  102. package/templates/next/src/app/examples/music/components/sidebar.tsx +147 -43
  103. package/templates/next/src/app/examples/music/page.tsx +113 -106
  104. package/templates/next/src/app/examples/playground/components/model-selector.tsx +3 -3
  105. package/templates/next/src/app/examples/playground/components/preset-actions.tsx +2 -4
  106. package/templates/next/src/app/examples/playground/components/preset-selector.tsx +4 -4
  107. package/templates/next/src/app/examples/playground/components/preset-share.tsx +2 -2
  108. package/templates/next/src/app/examples/playground/page.tsx +268 -115
  109. package/templates/next/src/app/examples/tasks/components/data-table-column-header.tsx +12 -7
  110. package/templates/next/src/app/examples/tasks/components/data-table-faceted-filter.tsx +4 -4
  111. package/templates/next/src/app/examples/tasks/components/data-table-pagination.tsx +10 -10
  112. package/templates/next/src/app/examples/tasks/components/data-table-row-actions.tsx +6 -19
  113. package/templates/next/src/app/examples/tasks/components/data-table-toolbar.tsx +3 -5
  114. package/templates/next/src/app/examples/tasks/components/data-table-view-options.tsx +2 -2
  115. package/templates/next/src/app/examples/tasks/components/user-nav.tsx +10 -15
  116. package/templates/next/src/app/examples/tasks/data/data.tsx +17 -17
  117. package/templates/next/src/app/examples/tasks/data/tasks.json +1 -1
  118. package/templates/next/src/app/examples/tasks/page.tsx +14 -12
  119. package/templates/next/src/app/layout.tsx +47 -43
  120. package/templates/next/src/app/page.tsx +5 -5
  121. package/templates/next/src/components/{examples/date-picker/with-range.tsx → example/date-picker-with-range.tsx} +1 -1
  122. package/templates/next/src/components/examples-nav.tsx +70 -70
  123. package/templates/next/src/components/greeting.tsx +21 -21
  124. package/templates/next/src/components/icons.tsx +154 -154
  125. package/templates/next/src/components/menu-mode-toggle.tsx +46 -46
  126. package/templates/next/src/components/menu.tsx +259 -259
  127. package/templates/next/src/components/mode-toggle.tsx +43 -43
  128. package/templates/next/src/components/page-header.tsx +50 -50
  129. package/templates/next/src/components/style-switcher.tsx +19 -19
  130. package/templates/next/src/components/tailwind-indicator.tsx +18 -18
  131. package/templates/next/src/components/theme-provider.tsx +9 -9
  132. package/templates/next/src/components/ui/accordion.tsx +1 -1
  133. package/templates/next/src/components/ui/alert-dialog.tsx +3 -8
  134. package/templates/next/src/components/ui/alert.tsx +3 -5
  135. package/templates/next/src/components/ui/badge.tsx +5 -5
  136. package/templates/next/src/components/ui/button.tsx +15 -10
  137. package/templates/next/src/components/ui/card.tsx +1 -3
  138. package/templates/next/src/components/ui/checkbox.tsx +2 -2
  139. package/templates/next/src/components/ui/command.tsx +2 -2
  140. package/templates/next/src/components/ui/context-menu.tsx +6 -6
  141. package/templates/next/src/components/ui/dialog.tsx +4 -9
  142. package/templates/next/src/components/ui/dropdown-menu.tsx +6 -6
  143. package/templates/next/src/components/ui/hover-card.tsx +1 -1
  144. package/templates/next/src/components/ui/input.tsx +1 -3
  145. package/templates/next/src/components/ui/label.tsx +1 -1
  146. package/templates/next/src/components/ui/menubar.tsx +7 -7
  147. package/templates/next/src/components/ui/navigation-menu.tsx +2 -4
  148. package/templates/next/src/components/ui/popover.tsx +1 -1
  149. package/templates/next/src/components/ui/radio-group.tsx +2 -2
  150. package/templates/next/src/components/ui/select.tsx +4 -3
  151. package/templates/next/src/components/ui/sheet.tsx +22 -108
  152. package/templates/next/src/components/ui/skeleton.tsx +0 -2
  153. package/templates/next/src/components/ui/switch.tsx +1 -1
  154. package/templates/next/src/components/ui/table.tsx +1 -1
  155. package/templates/next/src/components/ui/tabs.tsx +1 -1
  156. package/templates/next/src/components/ui/textarea.tsx +1 -3
  157. package/templates/next/src/components/ui/toast.tsx +6 -8
  158. package/templates/next/src/components/ui/toggle.tsx +3 -3
  159. package/templates/next/src/components/ui/tooltip.tsx +1 -1
  160. package/templates/next/src/components/ui/use-toast.ts +5 -4
  161. package/templates/next/src/data/albums.ts +71 -71
  162. package/templates/next/src/data/playlists.ts +16 -16
  163. package/templates/next/src/lib/utils.ts +6 -19
  164. package/templates/next/src/styles/globals.css +86 -124
  165. package/templates/next/src-tauri/Cargo.lock +3701 -3637
  166. package/templates/next/src-tauri/Cargo.toml +36 -36
  167. package/templates/next/src-tauri/build.rs +3 -3
  168. package/templates/next/src-tauri/icons/128x128.png +0 -0
  169. package/templates/next/src-tauri/icons/128x128@2x.png +0 -0
  170. package/templates/next/src-tauri/icons/32x32.png +0 -0
  171. package/templates/next/src-tauri/icons/Square107x107Logo.png +0 -0
  172. package/templates/next/src-tauri/icons/Square142x142Logo.png +0 -0
  173. package/templates/next/src-tauri/icons/Square150x150Logo.png +0 -0
  174. package/templates/next/src-tauri/icons/Square284x284Logo.png +0 -0
  175. package/templates/next/src-tauri/icons/Square30x30Logo.png +0 -0
  176. package/templates/next/src-tauri/icons/Square310x310Logo.png +0 -0
  177. package/templates/next/src-tauri/icons/Square44x44Logo.png +0 -0
  178. package/templates/next/src-tauri/icons/Square71x71Logo.png +0 -0
  179. package/templates/next/src-tauri/icons/Square89x89Logo.png +0 -0
  180. package/templates/next/src-tauri/icons/StoreLogo.png +0 -0
  181. package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
  182. package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  183. package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
  184. package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
  185. package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  186. package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
  187. package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
  188. package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  189. package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
  190. package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
  191. package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  192. package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  193. package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
  194. package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  195. package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  196. package/templates/next/src-tauri/icons/icon.icns +0 -0
  197. package/templates/next/src-tauri/icons/icon.ico +0 -0
  198. package/templates/next/src-tauri/icons/icon.png +0 -0
  199. package/templates/next/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
  200. package/templates/next/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
  201. package/templates/next/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
  202. package/templates/next/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
  203. package/templates/next/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
  204. package/templates/next/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
  205. package/templates/next/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
  206. package/templates/next/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
  207. package/templates/next/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
  208. package/templates/next/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
  209. package/templates/next/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
  210. package/templates/next/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
  211. package/templates/next/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
  212. package/templates/next/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
  213. package/templates/next/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
  214. package/templates/next/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
  215. package/templates/next/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
  216. package/templates/next/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
  217. package/templates/next/src-tauri/src/main.rs +19 -19
  218. package/templates/next/src-tauri/tauri.conf.json +79 -63
  219. package/templates/next/tailwind.config.js +78 -80
  220. package/templates/next/tsconfig.json +35 -35
  221. package/templates/sveltekit/.github/workflows/release.yml +108 -0
  222. package/templates/sveltekit/package.json +29 -29
  223. package/templates/sveltekit/src-tauri/Cargo.lock +268 -206
  224. package/templates/sveltekit/src-tauri/Cargo.toml +12 -10
  225. package/templates/sveltekit/src-tauri/build.rs +3 -3
  226. package/templates/sveltekit/src-tauri/tauri.conf.json +23 -6
  227. package/templates/vite/components.json +16 -0
  228. package/templates/vite/package.json +19 -18
  229. package/templates/vite/pnpm-lock.yaml +801 -696
  230. package/templates/vite/public/avatars/01.png +0 -0
  231. package/templates/vite/public/avatars/02.png +0 -0
  232. package/templates/vite/public/avatars/03.png +0 -0
  233. package/templates/vite/public/avatars/04.png +0 -0
  234. package/templates/vite/public/avatars/05.png +0 -0
  235. package/templates/vite/src/components/menu.tsx +1 -1
  236. package/templates/vite/src/dashboard/components/date-range-picker.tsx +2 -3
  237. package/templates/vite/src/dashboard/components/recent-sales.tsx +5 -1
  238. package/templates/vite/src/dashboard/components/search.tsx +1 -1
  239. package/templates/vite/src/dashboard/components/team-switcher.tsx +15 -7
  240. package/templates/vite/src/dashboard/components/user-nav.tsx +10 -15
  241. package/templates/vite/src/dashboard/page.tsx +172 -121
  242. package/templates/vite/src/styles/globals.css +1 -39
  243. package/templates/vite/src-tauri/Cargo.lock +302 -238
  244. package/templates/vite/src-tauri/Cargo.toml +11 -8
  245. package/templates/vite/src-tauri/build.rs +3 -3
  246. package/templates/vite/src-tauri/tauri.conf.json +79 -63
  247. package/templates/viteuno/.github/workflows/release.yml +108 -0
  248. package/templates/viteuno/.vscode/extensions.json +3 -0
  249. package/templates/viteuno/README.md +1 -0
  250. package/templates/viteuno/app-icon.png +0 -0
  251. package/templates/viteuno/components.json +16 -0
  252. package/templates/viteuno/index.html +16 -0
  253. package/templates/viteuno/package.json +73 -0
  254. package/templates/viteuno/pnpm-lock.yaml +5298 -0
  255. package/templates/viteuno/preset.shadcn.ts +160 -0
  256. package/templates/viteuno/prettier.config.cjs +34 -0
  257. package/templates/viteuno/public/avatars/01.png +0 -0
  258. package/templates/viteuno/public/avatars/02.png +0 -0
  259. package/templates/viteuno/public/avatars/03.png +0 -0
  260. package/templates/viteuno/public/avatars/04.png +0 -0
  261. package/templates/viteuno/public/avatars/05.png +0 -0
  262. package/templates/viteuno/src/App.tsx +39 -0
  263. package/templates/viteuno/src/assets/Inter.var.woff2 +0 -0
  264. package/templates/viteuno/src/components/icons.tsx +154 -0
  265. package/templates/viteuno/src/components/menu-mode-toggle.tsx +46 -0
  266. package/templates/viteuno/src/components/menu.tsx +232 -0
  267. package/templates/viteuno/src/components/tailwind-indicator.tsx +18 -0
  268. package/templates/viteuno/src/components/theme-provider.tsx +9 -0
  269. package/templates/viteuno/src/components/ui/accordion.tsx +60 -0
  270. package/templates/viteuno/src/components/ui/alert-dialog.tsx +150 -0
  271. package/templates/viteuno/src/components/ui/alert.tsx +61 -0
  272. package/templates/viteuno/src/components/ui/aspect-ratio.tsx +7 -0
  273. package/templates/viteuno/src/components/ui/avatar.tsx +50 -0
  274. package/templates/viteuno/src/components/ui/badge.tsx +36 -0
  275. package/templates/viteuno/src/components/ui/button.tsx +51 -0
  276. package/templates/viteuno/src/components/ui/calendar.tsx +64 -0
  277. package/templates/viteuno/src/components/ui/card.tsx +81 -0
  278. package/templates/viteuno/src/components/ui/checkbox.tsx +30 -0
  279. package/templates/viteuno/src/components/ui/collapsible.tsx +11 -0
  280. package/templates/viteuno/src/components/ui/command.tsx +155 -0
  281. package/templates/viteuno/src/components/ui/context-menu.tsx +200 -0
  282. package/templates/viteuno/src/components/ui/dialog.tsx +128 -0
  283. package/templates/viteuno/src/components/ui/dropdown-menu.tsx +200 -0
  284. package/templates/viteuno/src/components/ui/hover-card.tsx +29 -0
  285. package/templates/viteuno/src/components/ui/index.ts +0 -0
  286. package/templates/viteuno/src/components/ui/input.tsx +27 -0
  287. package/templates/viteuno/src/components/ui/label.tsx +26 -0
  288. package/templates/viteuno/src/components/ui/menubar.tsx +236 -0
  289. package/templates/viteuno/src/components/ui/navigation-menu.tsx +130 -0
  290. package/templates/viteuno/src/components/ui/popover.tsx +31 -0
  291. package/templates/viteuno/src/components/ui/progress.tsx +28 -0
  292. package/templates/viteuno/src/components/ui/radio-group.tsx +44 -0
  293. package/templates/viteuno/src/components/ui/scroll-area.tsx +48 -0
  294. package/templates/viteuno/src/components/ui/select.tsx +120 -0
  295. package/templates/viteuno/src/components/ui/separator.tsx +31 -0
  296. package/templates/viteuno/src/components/ui/sheet.tsx +230 -0
  297. package/templates/viteuno/src/components/ui/skeleton.tsx +17 -0
  298. package/templates/viteuno/src/components/ui/slider.tsx +28 -0
  299. package/templates/viteuno/src/components/ui/switch.tsx +29 -0
  300. package/templates/viteuno/src/components/ui/table.tsx +114 -0
  301. package/templates/viteuno/src/components/ui/tabs.tsx +55 -0
  302. package/templates/viteuno/src/components/ui/textarea.tsx +26 -0
  303. package/templates/viteuno/src/components/ui/toast.tsx +129 -0
  304. package/templates/viteuno/src/components/ui/toaster.tsx +35 -0
  305. package/templates/viteuno/src/components/ui/toggle.tsx +45 -0
  306. package/templates/viteuno/src/components/ui/tooltip.tsx +30 -0
  307. package/templates/viteuno/src/components/ui/use-toast.ts +191 -0
  308. package/templates/{next/src/components/examples/calendar → viteuno/src/dashboard/components}/date-range-picker.tsx +5 -4
  309. package/templates/viteuno/src/dashboard/components/main-nav.tsx +38 -0
  310. package/templates/viteuno/src/dashboard/components/overview.tsx +78 -0
  311. package/templates/viteuno/src/dashboard/components/recent-sales.tsx +67 -0
  312. package/templates/viteuno/src/dashboard/components/search.tsx +13 -0
  313. package/templates/viteuno/src/dashboard/components/team-switcher.tsx +205 -0
  314. package/templates/viteuno/src/dashboard/components/user-nav.tsx +67 -0
  315. package/templates/viteuno/src/dashboard/page.tsx +140 -0
  316. package/templates/viteuno/src/lib/utils.ts +19 -0
  317. package/templates/viteuno/src/main.tsx +14 -0
  318. package/templates/viteuno/src/styles/globals.css +4 -0
  319. package/templates/viteuno/src/vite-env.d.ts +1 -0
  320. package/templates/viteuno/src-tauri/Cargo.lock +3701 -0
  321. package/templates/viteuno/src-tauri/Cargo.toml +36 -0
  322. package/templates/viteuno/src-tauri/build.rs +3 -0
  323. package/templates/viteuno/src-tauri/icons/128x128.png +0 -0
  324. package/templates/viteuno/src-tauri/icons/128x128@2x.png +0 -0
  325. package/templates/viteuno/src-tauri/icons/32x32.png +0 -0
  326. package/templates/viteuno/src-tauri/icons/Square107x107Logo.png +0 -0
  327. package/templates/viteuno/src-tauri/icons/Square142x142Logo.png +0 -0
  328. package/templates/viteuno/src-tauri/icons/Square150x150Logo.png +0 -0
  329. package/templates/viteuno/src-tauri/icons/Square284x284Logo.png +0 -0
  330. package/templates/viteuno/src-tauri/icons/Square30x30Logo.png +0 -0
  331. package/templates/viteuno/src-tauri/icons/Square310x310Logo.png +0 -0
  332. package/templates/viteuno/src-tauri/icons/Square44x44Logo.png +0 -0
  333. package/templates/viteuno/src-tauri/icons/Square71x71Logo.png +0 -0
  334. package/templates/viteuno/src-tauri/icons/Square89x89Logo.png +0 -0
  335. package/templates/viteuno/src-tauri/icons/StoreLogo.png +0 -0
  336. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
  337. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  338. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
  339. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
  340. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  341. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
  342. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
  343. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  344. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
  345. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
  346. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  347. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  348. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
  349. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  350. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  351. package/templates/viteuno/src-tauri/icons/icon.icns +0 -0
  352. package/templates/viteuno/src-tauri/icons/icon.ico +0 -0
  353. package/templates/viteuno/src-tauri/icons/icon.png +0 -0
  354. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
  355. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
  356. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
  357. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
  358. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
  359. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
  360. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
  361. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
  362. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
  363. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
  364. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
  365. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
  366. package/templates/viteuno/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
  367. package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
  368. package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
  369. package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
  370. package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
  371. package/templates/viteuno/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
  372. package/templates/viteuno/src-tauri/src/main.rs +16 -0
  373. package/templates/viteuno/src-tauri/tauri.conf.json +79 -0
  374. package/templates/viteuno/tsconfig.json +26 -0
  375. package/templates/viteuno/tsconfig.node.json +9 -0
  376. package/templates/viteuno/uno.config.ts +111 -0
  377. package/templates/viteuno/vite.config.ts +33 -0
  378. package/templates/next/src/app/examples/cards/styles.css +0 -63
  379. package/templates/next/src/app/examples/music/styles.css +0 -65
  380. package/templates/next/src/app/examples/playground/components/icons.tsx +0 -153
  381. package/templates/next/src/app/examples/playground/styles.css +0 -65
  382. package/templates/next/src/components/examples/.eslintrc.json +0 -6
  383. package/templates/next/src/components/examples/accordion/demo.tsx +0 -32
  384. package/templates/next/src/components/examples/alert/demo.tsx +0 -15
  385. package/templates/next/src/components/examples/alert/destructive.tsx +0 -15
  386. package/templates/next/src/components/examples/alert-dialog/demo.tsx +0 -35
  387. package/templates/next/src/components/examples/aspect-ratio/demo.tsx +0 -16
  388. package/templates/next/src/components/examples/avatar/demo.tsx +0 -10
  389. package/templates/next/src/components/examples/badge/demo.tsx +0 -5
  390. package/templates/next/src/components/examples/badge/destructive.tsx +0 -5
  391. package/templates/next/src/components/examples/badge/outline.tsx +0 -5
  392. package/templates/next/src/components/examples/badge/secondary.tsx +0 -5
  393. package/templates/next/src/components/examples/button/as-child.tsx +0 -10
  394. package/templates/next/src/components/examples/button/demo.tsx +0 -5
  395. package/templates/next/src/components/examples/button/destructive.tsx +0 -5
  396. package/templates/next/src/components/examples/button/ghost.tsx +0 -5
  397. package/templates/next/src/components/examples/button/link.tsx +0 -5
  398. package/templates/next/src/components/examples/button/loading.tsx +0 -12
  399. package/templates/next/src/components/examples/button/outline.tsx +0 -5
  400. package/templates/next/src/components/examples/button/secondary.tsx +0 -5
  401. package/templates/next/src/components/examples/button/with-icon.tsx +0 -11
  402. package/templates/next/src/components/examples/calendar/date-picker.tsx +0 -43
  403. package/templates/next/src/components/examples/calendar/demo.tsx +0 -18
  404. package/templates/next/src/components/examples/calendar/react-hook-form.tsx +0 -101
  405. package/templates/next/src/components/examples/calendar/with-presets.tsx +0 -62
  406. package/templates/next/src/components/examples/card/demo.tsx +0 -79
  407. package/templates/next/src/components/examples/card/with-form.tsx +0 -59
  408. package/templates/next/src/components/examples/checkbox/demo.tsx +0 -17
  409. package/templates/next/src/components/examples/checkbox/disabled.tsx +0 -15
  410. package/templates/next/src/components/examples/checkbox/react-hook-form-multiple.tsx +0 -127
  411. package/templates/next/src/components/examples/checkbox/react-hook-form-single.tsx +0 -72
  412. package/templates/next/src/components/examples/checkbox/with-text.tsx +0 -22
  413. package/templates/next/src/components/examples/collapsible/demo.tsx +0 -46
  414. package/templates/next/src/components/examples/combobox/demo.tsx +0 -90
  415. package/templates/next/src/components/examples/combobox/dropdown-menu.tsx +0 -110
  416. package/templates/next/src/components/examples/combobox/popover.tsx +0 -124
  417. package/templates/next/src/components/examples/combobox/react-hook-form.tsx +0 -135
  418. package/templates/next/src/components/examples/command/combobox.tsx +0 -90
  419. package/templates/next/src/components/examples/command/demo.tsx +0 -62
  420. package/templates/next/src/components/examples/command/dialog.tsx +0 -86
  421. package/templates/next/src/components/examples/command/dropdown-menu.tsx +0 -110
  422. package/templates/next/src/components/examples/command/popover.tsx +0 -124
  423. package/templates/next/src/components/examples/context-menu/demo.tsx +0 -67
  424. package/templates/next/src/components/examples/data-table/columns.tsx +0 -110
  425. package/templates/next/src/components/examples/data-table/data-table.tsx +0 -185
  426. package/templates/next/src/components/examples/data-table/demo.tsx +0 -41
  427. package/templates/next/src/components/examples/date-picker/demo.tsx +0 -43
  428. package/templates/next/src/components/examples/date-picker/react-hook-form.tsx +0 -101
  429. package/templates/next/src/components/examples/date-picker/with-presets.tsx +0 -62
  430. package/templates/next/src/components/examples/dialog/demo.tsx +0 -47
  431. package/templates/next/src/components/examples/dropdown-menu/checkboxes.tsx +0 -53
  432. package/templates/next/src/components/examples/dropdown-menu/demo.tsx +0 -122
  433. package/templates/next/src/components/examples/dropdown-menu/radio-group.tsx +0 -37
  434. package/templates/next/src/components/examples/hover-card/demo.tsx +0 -39
  435. package/templates/next/src/components/examples/index.tsx +0 -213
  436. package/templates/next/src/components/examples/input/demo.tsx +0 -5
  437. package/templates/next/src/components/examples/input/disabled.tsx +0 -5
  438. package/templates/next/src/components/examples/input/file.tsx +0 -11
  439. package/templates/next/src/components/examples/input/react-hook-form.tsx +0 -65
  440. package/templates/next/src/components/examples/input/with-button.tsx +0 -11
  441. package/templates/next/src/components/examples/input/with-label.tsx +0 -11
  442. package/templates/next/src/components/examples/input/with-text.tsx +0 -12
  443. package/templates/next/src/components/examples/label/demo.tsx +0 -13
  444. package/templates/next/src/components/examples/menubar/demo.tsx +0 -107
  445. package/templates/next/src/components/examples/navigation-menu/demo.tsx +0 -144
  446. package/templates/next/src/components/examples/popover/demo.tsx +0 -67
  447. package/templates/next/src/components/examples/progress/demo.tsx +0 -16
  448. package/templates/next/src/components/examples/radio-group/demo.tsx +0 -21
  449. package/templates/next/src/components/examples/radio-group/react-hook-form.tsx +0 -88
  450. package/templates/next/src/components/examples/scroll-area/demo.tsx +0 -26
  451. package/templates/next/src/components/examples/select/demo.tsx +0 -31
  452. package/templates/next/src/components/examples/select/react-hook-form.tsx +0 -83
  453. package/templates/next/src/components/examples/separator/demo.tsx +0 -22
  454. package/templates/next/src/components/examples/sheet/demo.tsx +0 -47
  455. package/templates/next/src/components/examples/sheet/position.tsx +0 -75
  456. package/templates/next/src/components/examples/sheet/size.tsx +0 -75
  457. package/templates/next/src/components/examples/skeleton/demo.tsx +0 -13
  458. package/templates/next/src/components/examples/slider/demo.tsx +0 -16
  459. package/templates/next/src/components/examples/switch/demo.tsx +0 -11
  460. package/templates/next/src/components/examples/switch/react-hook-form.tsx +0 -101
  461. package/templates/next/src/components/examples/table/demo.tsx +0 -80
  462. package/templates/next/src/components/examples/tabs/demo.tsx +0 -69
  463. package/templates/next/src/components/examples/textarea/demo.tsx +0 -5
  464. package/templates/next/src/components/examples/textarea/disabled.tsx +0 -5
  465. package/templates/next/src/components/examples/textarea/react-hook-form.tsx +0 -77
  466. package/templates/next/src/components/examples/textarea/with-button.tsx +0 -11
  467. package/templates/next/src/components/examples/textarea/with-label.tsx +0 -11
  468. package/templates/next/src/components/examples/textarea/with-text.tsx +0 -14
  469. package/templates/next/src/components/examples/toast/demo.tsx +0 -26
  470. package/templates/next/src/components/examples/toast/destructive.tsx +0 -25
  471. package/templates/next/src/components/examples/toast/simple.tsx +0 -21
  472. package/templates/next/src/components/examples/toast/with-action.tsx +0 -24
  473. package/templates/next/src/components/examples/toast/with-title.tsx +0 -22
  474. package/templates/next/src/components/examples/toggle/demo.tsx +0 -11
  475. package/templates/next/src/components/examples/toggle/disabled.tsx +0 -11
  476. package/templates/next/src/components/examples/toggle/lg.tsx +0 -11
  477. package/templates/next/src/components/examples/toggle/outline.tsx +0 -11
  478. package/templates/next/src/components/examples/toggle/sm.tsx +0 -11
  479. package/templates/next/src/components/examples/toggle/with-text.tsx +0 -12
  480. package/templates/next/src/components/examples/tooltip/demo.tsx +0 -27
  481. package/templates/next/src/components/examples/typography/blockquote.tsx +0 -8
  482. package/templates/next/src/components/examples/typography/demo.tsx +0 -119
  483. package/templates/next/src/components/examples/typography/h1.tsx +0 -7
  484. package/templates/next/src/components/examples/typography/h2.tsx +0 -7
  485. package/templates/next/src/components/examples/typography/h3.tsx +0 -7
  486. package/templates/next/src/components/examples/typography/h4.tsx +0 -7
  487. package/templates/next/src/components/examples/typography/inline-code.tsx +0 -7
  488. package/templates/next/src/components/examples/typography/large.tsx +0 -5
  489. package/templates/next/src/components/examples/typography/lead.tsx +0 -8
  490. package/templates/next/src/components/examples/typography/list.tsx +0 -9
  491. package/templates/next/src/components/examples/typography/muted.tsx +0 -5
  492. package/templates/next/src/components/examples/typography/p.tsx +0 -8
  493. package/templates/next/src/components/examples/typography/small.tsx +0 -5
  494. package/templates/next/src/components/examples/typography/table.tsx +0 -44
  495. package/templates/sveltekit/static/favicon.ico +0 -0
  496. /package/templates/next/src/components/{react-hook-form → ui}/form.tsx +0 -0
@@ -1,108 +1,115 @@
1
- lockfileVersion: '6.0'
1
+ lockfileVersion: '6.1'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
2
6
 
3
7
  dependencies:
4
8
  '@radix-ui/react-accessible-icon':
5
9
  specifier: ^1.0.3
6
- version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
7
11
  '@radix-ui/react-accordion':
8
12
  specifier: ^1.1.2
9
- version: 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
10
14
  '@radix-ui/react-alert-dialog':
11
15
  specifier: ^1.0.4
12
- version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
13
17
  '@radix-ui/react-aspect-ratio':
14
18
  specifier: ^1.0.3
15
- version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
16
20
  '@radix-ui/react-avatar':
17
21
  specifier: ^1.0.3
18
- version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
19
23
  '@radix-ui/react-checkbox':
20
24
  specifier: ^1.0.4
21
- version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
22
26
  '@radix-ui/react-collapsible':
23
27
  specifier: ^1.0.3
24
- version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
25
29
  '@radix-ui/react-context-menu':
26
30
  specifier: ^2.1.4
27
- version: 2.1.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
28
32
  '@radix-ui/react-dialog':
29
33
  specifier: ^1.0.4
30
- version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
31
35
  '@radix-ui/react-dropdown-menu':
32
36
  specifier: ^2.0.5
33
- version: 2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
34
38
  '@radix-ui/react-hover-card':
35
39
  specifier: ^1.0.6
36
- version: 1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
41
+ '@radix-ui/react-icons':
42
+ specifier: ^1.3.0
43
+ version: 1.3.0(react@18.2.0)
37
44
  '@radix-ui/react-label':
38
45
  specifier: ^2.0.2
39
- version: 2.0.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
40
47
  '@radix-ui/react-menubar':
41
48
  specifier: ^1.0.3
42
- version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
43
50
  '@radix-ui/react-navigation-menu':
44
51
  specifier: ^1.1.3
45
- version: 1.1.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
46
53
  '@radix-ui/react-popover':
47
54
  specifier: ^1.0.6
48
- version: 1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
49
56
  '@radix-ui/react-progress':
50
57
  specifier: ^1.0.3
51
- version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
52
59
  '@radix-ui/react-radio-group':
53
60
  specifier: ^1.1.3
54
- version: 1.1.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
55
62
  '@radix-ui/react-scroll-area':
56
63
  specifier: ^1.0.4
57
- version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
58
65
  '@radix-ui/react-select':
59
66
  specifier: ^1.2.2
60
- version: 1.2.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
61
68
  '@radix-ui/react-separator':
62
69
  specifier: ^1.0.3
63
- version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
64
71
  '@radix-ui/react-slider':
65
72
  specifier: ^1.1.2
66
- version: 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
67
74
  '@radix-ui/react-slot':
68
75
  specifier: ^1.0.2
69
- version: 1.0.2(@types/react@18.2.7)(react@18.2.0)
76
+ version: 1.0.2(@types/react@18.2.14)(react@18.2.0)
70
77
  '@radix-ui/react-switch':
71
78
  specifier: ^1.0.3
72
- version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
73
80
  '@radix-ui/react-tabs':
74
81
  specifier: ^1.0.4
75
- version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
76
83
  '@radix-ui/react-toast':
77
84
  specifier: ^1.1.4
78
- version: 1.1.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
79
86
  '@radix-ui/react-toggle':
80
87
  specifier: ^1.0.3
81
- version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
82
89
  '@radix-ui/react-toggle-group':
83
90
  specifier: ^1.0.4
84
- version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
85
92
  '@radix-ui/react-tooltip':
86
93
  specifier: ^1.0.6
87
- version: 1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
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)
88
95
  '@tauri-apps/api':
89
- specifier: ^2.0.0-alpha.4
90
- version: 2.0.0-alpha.4
96
+ specifier: ^2.0.0-alpha.5
97
+ version: 2.0.0-alpha.5
91
98
  '@tauri-apps/plugin-window':
92
99
  specifier: 2.0.0-alpha.0
93
100
  version: 2.0.0-alpha.0
94
101
  '@vitejs/plugin-react-swc':
95
- specifier: ^3.3.1
96
- version: 3.3.1(vite@4.3.9)
102
+ specifier: ^3.3.2
103
+ version: 3.3.2(vite@4.4.2)
97
104
  cmdk:
98
105
  specifier: ^0.2.0
99
- version: 0.2.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
106
+ version: 0.2.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
100
107
  date-fns:
101
108
  specifier: ^2.30.0
102
109
  version: 2.30.0
103
110
  lucide-react:
104
- specifier: ^0.221.0
105
- version: 0.221.0(react@18.2.0)
111
+ specifier: ^0.259.0
112
+ version: 0.259.0(react@18.2.0)
106
113
  next-themes:
107
114
  specifier: ^0.2.1
108
115
  version: 0.2.1(next@13.4.3)(react-dom@18.2.0)(react@18.2.0)
@@ -110,70 +117,70 @@ dependencies:
110
117
  specifier: ^18.2.0
111
118
  version: 18.2.0
112
119
  react-day-picker:
113
- specifier: ^8.7.1
114
- version: 8.7.1(date-fns@2.30.0)(react@18.2.0)
120
+ specifier: ^8.8.0
121
+ version: 8.8.0(date-fns@2.30.0)(react@18.2.0)
115
122
  react-dom:
116
123
  specifier: ^18.2.0
117
124
  version: 18.2.0(react@18.2.0)
118
125
  recharts:
119
- specifier: ^2.6.2
120
- version: 2.6.2(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
126
+ specifier: ^2.7.2
127
+ version: 2.7.2(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
121
128
  tailwind-scrollbar:
122
129
  specifier: ^3.0.4
123
130
  version: 3.0.4(tailwindcss@3.3.2)
124
131
  tailwindcss-animate:
125
- specifier: ^1.0.5
126
- version: 1.0.5(tailwindcss@3.3.2)
132
+ specifier: ^1.0.6
133
+ version: 1.0.6(tailwindcss@3.3.2)
127
134
 
128
135
  devDependencies:
129
136
  '@ianvs/prettier-plugin-sort-imports':
130
- specifier: ^4.0.0
131
- version: 4.0.0(prettier@2.8.8)
137
+ specifier: ^4.0.2
138
+ version: 4.0.2(prettier@3.0.0)
132
139
  '@tauri-apps/cli':
133
- specifier: ^2.0.0-alpha.9
134
- version: 2.0.0-alpha.9
140
+ specifier: ^2.0.0-alpha.10
141
+ version: 2.0.0-alpha.10
135
142
  '@types/node':
136
- specifier: ^20.2.5
137
- version: 20.2.5
143
+ specifier: ^20.4.1
144
+ version: 20.4.1
138
145
  '@types/react':
139
- specifier: ^18.2.7
140
- version: 18.2.7
146
+ specifier: ^18.2.14
147
+ version: 18.2.14
141
148
  '@types/react-dom':
142
- specifier: ^18.2.4
143
- version: 18.2.4
149
+ specifier: ^18.2.6
150
+ version: 18.2.6
144
151
  autoprefixer:
145
152
  specifier: ^10.4.14
146
- version: 10.4.14(postcss@8.4.23)
153
+ version: 10.4.14(postcss@8.4.25)
147
154
  class-variance-authority:
148
- specifier: ^0.6.0
149
- version: 0.6.0(typescript@5.0.4)
155
+ specifier: ^0.6.1
156
+ version: 0.6.1
150
157
  clsx:
151
158
  specifier: ^1.2.1
152
159
  version: 1.2.1
153
160
  postcss:
154
- specifier: ^8.4.23
155
- version: 8.4.23
161
+ specifier: ^8.4.25
162
+ version: 8.4.25
156
163
  prettier:
157
- specifier: ^2.8.8
158
- version: 2.8.8
164
+ specifier: ^3.0.0
165
+ version: 3.0.0
159
166
  prettier-plugin-tailwindcss:
160
167
  specifier: ^0.3.0
161
- version: 0.3.0(@ianvs/prettier-plugin-sort-imports@4.0.0)(prettier@2.8.8)
168
+ version: 0.3.0(@ianvs/prettier-plugin-sort-imports@4.0.2)(prettier@3.0.0)
162
169
  tailwind-merge:
163
- specifier: ^1.12.0
164
- version: 1.12.0
170
+ specifier: ^1.13.2
171
+ version: 1.13.2
165
172
  tailwindcss:
166
173
  specifier: ^3.3.2
167
174
  version: 3.3.2
168
175
  taze:
169
- specifier: ^0.10.1
170
- version: 0.10.1
176
+ specifier: ^0.11.2
177
+ version: 0.11.2
171
178
  typescript:
172
- specifier: ^5.0.4
173
- version: 5.0.4
179
+ specifier: ^5.1.6
180
+ version: 5.1.6
174
181
  vite:
175
- specifier: ^4.3.9
176
- version: 4.3.9(@types/node@20.2.5)
182
+ specifier: ^4.4.2
183
+ version: 4.4.2(@types/node@20.4.1)
177
184
 
178
185
  packages:
179
186
 
@@ -188,13 +195,13 @@ packages:
188
195
  '@jridgewell/gen-mapping': 0.3.3
189
196
  '@jridgewell/trace-mapping': 0.3.18
190
197
 
191
- /@antfu/ni@0.21.3:
192
- resolution: {integrity: sha512-iDtQMeMW1kKV4nzQ+tjYOIPUm6nmh7pJe4sM0kx1jdAChKSCBLStqlgIoo5Tce++p+o8cBiWIzC3jg6oHyjzMA==}
198
+ /@antfu/ni@0.21.4:
199
+ resolution: {integrity: sha512-O0Uv9LbLDSoEg26fnMDdDRiPwFJnQSoD4WnrflDwKCJm8Cx/0mV4cGxwBLXan5mGIrpK4Dd7vizf4rQm0QCEAA==}
193
200
  hasBin: true
194
201
  dev: true
195
202
 
196
- /@antfu/utils@0.5.2:
197
- resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==}
203
+ /@antfu/utils@0.7.5:
204
+ resolution: {integrity: sha512-dlR6LdS+0SzOAPx/TPRhnoi7hE251OVeT2Snw0RguNbBSbjUHdWr0l3vcUUDg26rEysT89kCbtw1lVorBXLLCg==}
198
205
  dev: true
199
206
 
200
207
  /@babel/code-frame@7.21.4:
@@ -378,176 +385,176 @@ packages:
378
385
  '@babel/helper-validator-identifier': 7.19.1
379
386
  to-fast-properties: 2.0.0
380
387
 
381
- /@esbuild/android-arm64@0.17.19:
382
- resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
388
+ /@esbuild/android-arm64@0.18.11:
389
+ resolution: {integrity: sha512-snieiq75Z1z5LJX9cduSAjUr7vEI1OdlzFPMw0HH5YI7qQHDd3qs+WZoMrWYDsfRJSq36lIA6mfZBkvL46KoIw==}
383
390
  engines: {node: '>=12'}
384
391
  cpu: [arm64]
385
392
  os: [android]
386
393
  requiresBuild: true
387
394
  optional: true
388
395
 
389
- /@esbuild/android-arm@0.17.19:
390
- resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
396
+ /@esbuild/android-arm@0.18.11:
397
+ resolution: {integrity: sha512-q4qlUf5ucwbUJZXF5tEQ8LF7y0Nk4P58hOsGk3ucY0oCwgQqAnqXVbUuahCddVHfrxmpyewRpiTHwVHIETYu7Q==}
391
398
  engines: {node: '>=12'}
392
399
  cpu: [arm]
393
400
  os: [android]
394
401
  requiresBuild: true
395
402
  optional: true
396
403
 
397
- /@esbuild/android-x64@0.17.19:
398
- resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==}
404
+ /@esbuild/android-x64@0.18.11:
405
+ resolution: {integrity: sha512-iPuoxQEV34+hTF6FT7om+Qwziv1U519lEOvekXO9zaMMlT9+XneAhKL32DW3H7okrCOBQ44BMihE8dclbZtTuw==}
399
406
  engines: {node: '>=12'}
400
407
  cpu: [x64]
401
408
  os: [android]
402
409
  requiresBuild: true
403
410
  optional: true
404
411
 
405
- /@esbuild/darwin-arm64@0.17.19:
406
- resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==}
412
+ /@esbuild/darwin-arm64@0.18.11:
413
+ resolution: {integrity: sha512-Gm0QkI3k402OpfMKyQEEMG0RuW2LQsSmI6OeO4El2ojJMoF5NLYb3qMIjvbG/lbMeLOGiW6ooU8xqc+S0fgz2w==}
407
414
  engines: {node: '>=12'}
408
415
  cpu: [arm64]
409
416
  os: [darwin]
410
417
  requiresBuild: true
411
418
  optional: true
412
419
 
413
- /@esbuild/darwin-x64@0.17.19:
414
- resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==}
420
+ /@esbuild/darwin-x64@0.18.11:
421
+ resolution: {integrity: sha512-N15Vzy0YNHu6cfyDOjiyfJlRJCB/ngKOAvoBf1qybG3eOq0SL2Lutzz9N7DYUbb7Q23XtHPn6lMDF6uWbGv9Fw==}
415
422
  engines: {node: '>=12'}
416
423
  cpu: [x64]
417
424
  os: [darwin]
418
425
  requiresBuild: true
419
426
  optional: true
420
427
 
421
- /@esbuild/freebsd-arm64@0.17.19:
422
- resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==}
428
+ /@esbuild/freebsd-arm64@0.18.11:
429
+ resolution: {integrity: sha512-atEyuq6a3omEY5qAh5jIORWk8MzFnCpSTUruBgeyN9jZq1K/QI9uke0ATi3MHu4L8c59CnIi4+1jDKMuqmR71A==}
423
430
  engines: {node: '>=12'}
424
431
  cpu: [arm64]
425
432
  os: [freebsd]
426
433
  requiresBuild: true
427
434
  optional: true
428
435
 
429
- /@esbuild/freebsd-x64@0.17.19:
430
- resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==}
436
+ /@esbuild/freebsd-x64@0.18.11:
437
+ resolution: {integrity: sha512-XtuPrEfBj/YYYnAAB7KcorzzpGTvOr/dTtXPGesRfmflqhA4LMF0Gh/n5+a9JBzPuJ+CGk17CA++Hmr1F/gI0Q==}
431
438
  engines: {node: '>=12'}
432
439
  cpu: [x64]
433
440
  os: [freebsd]
434
441
  requiresBuild: true
435
442
  optional: true
436
443
 
437
- /@esbuild/linux-arm64@0.17.19:
438
- resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==}
444
+ /@esbuild/linux-arm64@0.18.11:
445
+ resolution: {integrity: sha512-c6Vh2WS9VFKxKZ2TvJdA7gdy0n6eSy+yunBvv4aqNCEhSWVor1TU43wNRp2YLO9Vng2G+W94aRz+ILDSwAiYog==}
439
446
  engines: {node: '>=12'}
440
447
  cpu: [arm64]
441
448
  os: [linux]
442
449
  requiresBuild: true
443
450
  optional: true
444
451
 
445
- /@esbuild/linux-arm@0.17.19:
446
- resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
452
+ /@esbuild/linux-arm@0.18.11:
453
+ resolution: {integrity: sha512-Idipz+Taso/toi2ETugShXjQ3S59b6m62KmLHkJlSq/cBejixmIydqrtM2XTvNCywFl3VC7SreSf6NV0i6sRyg==}
447
454
  engines: {node: '>=12'}
448
455
  cpu: [arm]
449
456
  os: [linux]
450
457
  requiresBuild: true
451
458
  optional: true
452
459
 
453
- /@esbuild/linux-ia32@0.17.19:
454
- resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==}
460
+ /@esbuild/linux-ia32@0.18.11:
461
+ resolution: {integrity: sha512-S3hkIF6KUqRh9n1Q0dSyYcWmcVa9Cg+mSoZEfFuzoYXXsk6196qndrM+ZiHNwpZKi3XOXpShZZ+9dfN5ykqjjw==}
455
462
  engines: {node: '>=12'}
456
463
  cpu: [ia32]
457
464
  os: [linux]
458
465
  requiresBuild: true
459
466
  optional: true
460
467
 
461
- /@esbuild/linux-loong64@0.17.19:
462
- resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==}
468
+ /@esbuild/linux-loong64@0.18.11:
469
+ resolution: {integrity: sha512-MRESANOoObQINBA+RMZW+Z0TJWpibtE7cPFnahzyQHDCA9X9LOmGh68MVimZlM9J8n5Ia8lU773te6O3ILW8kw==}
463
470
  engines: {node: '>=12'}
464
471
  cpu: [loong64]
465
472
  os: [linux]
466
473
  requiresBuild: true
467
474
  optional: true
468
475
 
469
- /@esbuild/linux-mips64el@0.17.19:
470
- resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==}
476
+ /@esbuild/linux-mips64el@0.18.11:
477
+ resolution: {integrity: sha512-qVyPIZrXNMOLYegtD1u8EBccCrBVshxMrn5MkuFc3mEVsw7CCQHaqZ4jm9hbn4gWY95XFnb7i4SsT3eflxZsUg==}
471
478
  engines: {node: '>=12'}
472
479
  cpu: [mips64el]
473
480
  os: [linux]
474
481
  requiresBuild: true
475
482
  optional: true
476
483
 
477
- /@esbuild/linux-ppc64@0.17.19:
478
- resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==}
484
+ /@esbuild/linux-ppc64@0.18.11:
485
+ resolution: {integrity: sha512-T3yd8vJXfPirZaUOoA9D2ZjxZX4Gr3QuC3GztBJA6PklLotc/7sXTOuuRkhE9W/5JvJP/K9b99ayPNAD+R+4qQ==}
479
486
  engines: {node: '>=12'}
480
487
  cpu: [ppc64]
481
488
  os: [linux]
482
489
  requiresBuild: true
483
490
  optional: true
484
491
 
485
- /@esbuild/linux-riscv64@0.17.19:
486
- resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==}
492
+ /@esbuild/linux-riscv64@0.18.11:
493
+ resolution: {integrity: sha512-evUoRPWiwuFk++snjH9e2cAjF5VVSTj+Dnf+rkO/Q20tRqv+644279TZlPK8nUGunjPAtQRCj1jQkDAvL6rm2w==}
487
494
  engines: {node: '>=12'}
488
495
  cpu: [riscv64]
489
496
  os: [linux]
490
497
  requiresBuild: true
491
498
  optional: true
492
499
 
493
- /@esbuild/linux-s390x@0.17.19:
494
- resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==}
500
+ /@esbuild/linux-s390x@0.18.11:
501
+ resolution: {integrity: sha512-/SlRJ15XR6i93gRWquRxYCfhTeC5PdqEapKoLbX63PLCmAkXZHY2uQm2l9bN0oPHBsOw2IswRZctMYS0MijFcg==}
495
502
  engines: {node: '>=12'}
496
503
  cpu: [s390x]
497
504
  os: [linux]
498
505
  requiresBuild: true
499
506
  optional: true
500
507
 
501
- /@esbuild/linux-x64@0.17.19:
502
- resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==}
508
+ /@esbuild/linux-x64@0.18.11:
509
+ resolution: {integrity: sha512-xcncej+wF16WEmIwPtCHi0qmx1FweBqgsRtEL1mSHLFR6/mb3GEZfLQnx+pUDfRDEM4DQF8dpXIW7eDOZl1IbA==}
503
510
  engines: {node: '>=12'}
504
511
  cpu: [x64]
505
512
  os: [linux]
506
513
  requiresBuild: true
507
514
  optional: true
508
515
 
509
- /@esbuild/netbsd-x64@0.17.19:
510
- resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
516
+ /@esbuild/netbsd-x64@0.18.11:
517
+ resolution: {integrity: sha512-aSjMHj/F7BuS1CptSXNg6S3M4F3bLp5wfFPIJM+Km2NfIVfFKhdmfHF9frhiCLIGVzDziggqWll0B+9AUbud/Q==}
511
518
  engines: {node: '>=12'}
512
519
  cpu: [x64]
513
520
  os: [netbsd]
514
521
  requiresBuild: true
515
522
  optional: true
516
523
 
517
- /@esbuild/openbsd-x64@0.17.19:
518
- resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
524
+ /@esbuild/openbsd-x64@0.18.11:
525
+ resolution: {integrity: sha512-tNBq+6XIBZtht0xJGv7IBB5XaSyvYPCm1PxJ33zLQONdZoLVM0bgGqUrXnJyiEguD9LU4AHiu+GCXy/Hm9LsdQ==}
519
526
  engines: {node: '>=12'}
520
527
  cpu: [x64]
521
528
  os: [openbsd]
522
529
  requiresBuild: true
523
530
  optional: true
524
531
 
525
- /@esbuild/sunos-x64@0.17.19:
526
- resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==}
532
+ /@esbuild/sunos-x64@0.18.11:
533
+ resolution: {integrity: sha512-kxfbDOrH4dHuAAOhr7D7EqaYf+W45LsAOOhAet99EyuxxQmjbk8M9N4ezHcEiCYPaiW8Dj3K26Z2V17Gt6p3ng==}
527
534
  engines: {node: '>=12'}
528
535
  cpu: [x64]
529
536
  os: [sunos]
530
537
  requiresBuild: true
531
538
  optional: true
532
539
 
533
- /@esbuild/win32-arm64@0.17.19:
534
- resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==}
540
+ /@esbuild/win32-arm64@0.18.11:
541
+ resolution: {integrity: sha512-Sh0dDRyk1Xi348idbal7lZyfSkjhJsdFeuC13zqdipsvMetlGiFQNdO+Yfp6f6B4FbyQm7qsk16yaZk25LChzg==}
535
542
  engines: {node: '>=12'}
536
543
  cpu: [arm64]
537
544
  os: [win32]
538
545
  requiresBuild: true
539
546
  optional: true
540
547
 
541
- /@esbuild/win32-ia32@0.17.19:
542
- resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==}
548
+ /@esbuild/win32-ia32@0.18.11:
549
+ resolution: {integrity: sha512-o9JUIKF1j0rqJTFbIoF4bXj6rvrTZYOrfRcGyL0Vm5uJ/j5CkBD/51tpdxe9lXEDouhRgdr/BYzUrDOvrWwJpg==}
543
550
  engines: {node: '>=12'}
544
551
  cpu: [ia32]
545
552
  os: [win32]
546
553
  requiresBuild: true
547
554
  optional: true
548
555
 
549
- /@esbuild/win32-x64@0.17.19:
550
- resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==}
556
+ /@esbuild/win32-x64@0.18.11:
557
+ resolution: {integrity: sha512-rQI4cjLHd2hGsM1LqgDI7oOCYbQ6IBOVsX9ejuRMSze0GqXUG2ekwiKkiBU1pRGSeCqFFHxTrcEydB2Hyoz9CA==}
551
558
  engines: {node: '>=12'}
552
559
  cpu: [x64]
553
560
  os: [win32]
@@ -579,8 +586,8 @@ packages:
579
586
  resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
580
587
  dev: true
581
588
 
582
- /@ianvs/prettier-plugin-sort-imports@4.0.0(prettier@2.8.8):
583
- resolution: {integrity: sha512-56wYZhq/Ezt5o4Lzc+CEUV+sqTPEV2WcTFJSSLBOhe15yfIkrUheGeRvC3lg30VQ8K0J1kvWjXIY5lxeOlW2Tg==}
589
+ /@ianvs/prettier-plugin-sort-imports@4.0.2(prettier@3.0.0):
590
+ resolution: {integrity: sha512-VnsTzyb9aSWpc3v6HvZKD6eolZRvofIYjhda+6IbW1GYwr2byWqK0KhLPbYNkit9MAgShad5bhZ1hgBn867A1A==}
584
591
  peerDependencies:
585
592
  '@vue/compiler-sfc': '>=3.0.0'
586
593
  prettier: 2.x
@@ -593,7 +600,7 @@ packages:
593
600
  '@babel/parser': 7.21.9
594
601
  '@babel/traverse': 7.21.5
595
602
  '@babel/types': 7.21.5
596
- prettier: 2.8.8
603
+ prettier: 3.0.0
597
604
  semver: 7.5.1
598
605
  transitivePeerDependencies:
599
606
  - supports-color
@@ -742,16 +749,17 @@ packages:
742
749
  '@nodelib/fs.scandir': 2.1.5
743
750
  fastq: 1.15.0
744
751
 
745
- /@npmcli/config@6.1.7:
746
- resolution: {integrity: sha512-DyACY6Mv7TH1kz2iBgwS3xE7jKsY+ukUfDyY5PLl9LZTktmBBSybDNzX3bUii+SD4j77Bx6EvgS/jsaUtV7Fng==}
752
+ /@npmcli/config@6.2.1:
753
+ resolution: {integrity: sha512-Cj/OrSbrLvnwWuzquFCDTwFN8QmR+SWH6qLNCBttUreDkKM5D5p36SeSMbcEUiCGdwjUrVy2yd8C0REwwwDPEw==}
747
754
  engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
748
755
  dependencies:
749
756
  '@npmcli/map-workspaces': 3.0.4
757
+ ci-info: 3.8.0
750
758
  ini: 4.1.1
751
759
  nopt: 7.1.0
752
760
  proc-log: 3.0.0
753
761
  read-package-json-fast: 3.0.2
754
- semver: 7.5.1
762
+ semver: 7.5.4
755
763
  walk-up-path: 3.0.1
756
764
  dev: true
757
765
 
@@ -760,14 +768,14 @@ packages:
760
768
  engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
761
769
  dependencies:
762
770
  '@gar/promisify': 1.1.3
763
- semver: 7.5.1
771
+ semver: 7.5.4
764
772
  dev: true
765
773
 
766
774
  /@npmcli/fs@3.1.0:
767
775
  resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
768
776
  engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
769
777
  dependencies:
770
- semver: 7.5.1
778
+ semver: 7.5.4
771
779
  dev: true
772
780
 
773
781
  /@npmcli/git@4.0.4:
@@ -780,7 +788,7 @@ packages:
780
788
  proc-log: 3.0.0
781
789
  promise-inflight: 1.0.1
782
790
  promise-retry: 2.0.1
783
- semver: 7.5.1
791
+ semver: 7.5.4
784
792
  which: 3.0.1
785
793
  transitivePeerDependencies:
786
794
  - bluebird
@@ -870,7 +878,7 @@ packages:
870
878
  '@babel/runtime': 7.21.5
871
879
  dev: false
872
880
 
873
- /@radix-ui/react-accessible-icon@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
874
882
  resolution: {integrity: sha512-duVGKeWPSUILr/MdlPxV+GeULTc2rS1aihGdQ3N2qCUPMgxYLxvAsHJM3mCVLF8d5eK+ympmB22mb1F3a5biNw==}
875
883
  peerDependencies:
876
884
  '@types/react': '*'
@@ -884,14 +892,14 @@ packages:
884
892
  optional: true
885
893
  dependencies:
886
894
  '@babel/runtime': 7.21.5
887
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
888
- '@types/react': 18.2.7
889
- '@types/react-dom': 18.2.4
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
890
898
  react: 18.2.0
891
899
  react-dom: 18.2.0(react@18.2.0)
892
900
  dev: false
893
901
 
894
- /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
895
903
  resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==}
896
904
  peerDependencies:
897
905
  '@types/react': '*'
@@ -906,21 +914,21 @@ packages:
906
914
  dependencies:
907
915
  '@babel/runtime': 7.21.5
908
916
  '@radix-ui/primitive': 1.0.1
909
- '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
910
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
911
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
912
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
913
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
914
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
915
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
916
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
917
- '@types/react': 18.2.7
918
- '@types/react-dom': 18.2.4
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
919
927
  react: 18.2.0
920
928
  react-dom: 18.2.0(react@18.2.0)
921
929
  dev: false
922
930
 
923
- /@radix-ui/react-alert-dialog@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
924
932
  resolution: {integrity: sha512-jbfBCRlKYlhbitueOAv7z74PXYeIQmWpKwm3jllsdkw7fGWNkxqP3v0nY9WmOzcPqpQuoorNtvViBgL46n5gVg==}
925
933
  peerDependencies:
926
934
  '@types/react': '*'
@@ -935,18 +943,18 @@ packages:
935
943
  dependencies:
936
944
  '@babel/runtime': 7.21.5
937
945
  '@radix-ui/primitive': 1.0.1
938
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
939
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
940
- '@radix-ui/react-dialog': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
941
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
942
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
943
- '@types/react': 18.2.7
944
- '@types/react-dom': 18.2.4
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
945
953
  react: 18.2.0
946
954
  react-dom: 18.2.0(react@18.2.0)
947
955
  dev: false
948
956
 
949
- /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
950
958
  resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
951
959
  peerDependencies:
952
960
  '@types/react': '*'
@@ -960,14 +968,14 @@ packages:
960
968
  optional: true
961
969
  dependencies:
962
970
  '@babel/runtime': 7.21.5
963
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
964
- '@types/react': 18.2.7
965
- '@types/react-dom': 18.2.4
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
966
974
  react: 18.2.0
967
975
  react-dom: 18.2.0(react@18.2.0)
968
976
  dev: false
969
977
 
970
- /@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
971
979
  resolution: {integrity: sha512-fXR5kbMan9oQqMuacfzlGG/SQMcmMlZ4wrvpckv8SgUulD0MMpspxJrxg/Gp/ISV3JfV1AeSWTYK9GvxA4ySwA==}
972
980
  peerDependencies:
973
981
  '@types/react': '*'
@@ -981,14 +989,14 @@ packages:
981
989
  optional: true
982
990
  dependencies:
983
991
  '@babel/runtime': 7.21.5
984
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
985
- '@types/react': 18.2.7
986
- '@types/react-dom': 18.2.4
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
987
995
  react: 18.2.0
988
996
  react-dom: 18.2.0(react@18.2.0)
989
997
  dev: false
990
998
 
991
- /@radix-ui/react-avatar@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
992
1000
  resolution: {integrity: sha512-9ToF7YNex3Ste45LrAeTlKtONI9yVRt/zOS158iilIkW5K/Apeyb/TUQlcEFTEFvWr8Kzdi2ZYrm1/suiXPajQ==}
993
1001
  peerDependencies:
994
1002
  '@types/react': '*'
@@ -1002,17 +1010,17 @@ packages:
1002
1010
  optional: true
1003
1011
  dependencies:
1004
1012
  '@babel/runtime': 7.21.5
1005
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1006
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1007
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1008
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1009
- '@types/react': 18.2.7
1010
- '@types/react-dom': 18.2.4
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
1011
1019
  react: 18.2.0
1012
1020
  react-dom: 18.2.0(react@18.2.0)
1013
1021
  dev: false
1014
1022
 
1015
- /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1016
1024
  resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==}
1017
1025
  peerDependencies:
1018
1026
  '@types/react': '*'
@@ -1027,20 +1035,20 @@ packages:
1027
1035
  dependencies:
1028
1036
  '@babel/runtime': 7.21.5
1029
1037
  '@radix-ui/primitive': 1.0.1
1030
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1031
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1032
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1033
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1034
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1035
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1036
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1037
- '@types/react': 18.2.7
1038
- '@types/react-dom': 18.2.4
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
1039
1047
  react: 18.2.0
1040
1048
  react-dom: 18.2.0(react@18.2.0)
1041
1049
  dev: false
1042
1050
 
1043
- /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1044
1052
  resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
1045
1053
  peerDependencies:
1046
1054
  '@types/react': '*'
@@ -1055,20 +1063,20 @@ packages:
1055
1063
  dependencies:
1056
1064
  '@babel/runtime': 7.21.5
1057
1065
  '@radix-ui/primitive': 1.0.1
1058
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1059
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1060
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1061
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1062
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1063
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1064
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1065
- '@types/react': 18.2.7
1066
- '@types/react-dom': 18.2.4
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
1067
1075
  react: 18.2.0
1068
1076
  react-dom: 18.2.0(react@18.2.0)
1069
1077
  dev: false
1070
1078
 
1071
- /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1072
1080
  resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
1073
1081
  peerDependencies:
1074
1082
  '@types/react': '*'
@@ -1082,12 +1090,12 @@ packages:
1082
1090
  optional: true
1083
1091
  dependencies:
1084
1092
  '@babel/runtime': 7.21.5
1085
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1086
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1087
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1088
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
1089
- '@types/react': 18.2.7
1090
- '@types/react-dom': 18.2.4
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
1091
1099
  react: 18.2.0
1092
1100
  react-dom: 18.2.0(react@18.2.0)
1093
1101
  dev: false
@@ -1101,7 +1109,7 @@ packages:
1101
1109
  react: 18.2.0
1102
1110
  dev: false
1103
1111
 
1104
- /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.7)(react@18.2.0):
1112
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.14)(react@18.2.0):
1105
1113
  resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
1106
1114
  peerDependencies:
1107
1115
  '@types/react': '*'
@@ -1111,11 +1119,11 @@ packages:
1111
1119
  optional: true
1112
1120
  dependencies:
1113
1121
  '@babel/runtime': 7.21.5
1114
- '@types/react': 18.2.7
1122
+ '@types/react': 18.2.14
1115
1123
  react: 18.2.0
1116
1124
  dev: false
1117
1125
 
1118
- /@radix-ui/react-context-menu@2.1.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1119
1127
  resolution: {integrity: sha512-HVHLUtZOBiR2Fh5l07qQ9y0IgX4dGZF0S9Gwdk4CVA+DL9afSphvFNa4nRiw6RNgb6quwLV4dLPF/gFDvNaOcQ==}
1120
1128
  peerDependencies:
1121
1129
  '@types/react': '*'
@@ -1130,13 +1138,13 @@ packages:
1130
1138
  dependencies:
1131
1139
  '@babel/runtime': 7.21.5
1132
1140
  '@radix-ui/primitive': 1.0.1
1133
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1134
- '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1135
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1136
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1137
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1138
- '@types/react': 18.2.7
1139
- '@types/react-dom': 18.2.4
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
1140
1148
  react: 18.2.0
1141
1149
  react-dom: 18.2.0(react@18.2.0)
1142
1150
  dev: false
@@ -1150,7 +1158,7 @@ packages:
1150
1158
  react: 18.2.0
1151
1159
  dev: false
1152
1160
 
1153
- /@radix-ui/react-context@1.0.1(@types/react@18.2.7)(react@18.2.0):
1161
+ /@radix-ui/react-context@1.0.1(@types/react@18.2.14)(react@18.2.0):
1154
1162
  resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
1155
1163
  peerDependencies:
1156
1164
  '@types/react': '*'
@@ -1160,11 +1168,11 @@ packages:
1160
1168
  optional: true
1161
1169
  dependencies:
1162
1170
  '@babel/runtime': 7.21.5
1163
- '@types/react': 18.2.7
1171
+ '@types/react': 18.2.14
1164
1172
  react: 18.2.0
1165
1173
  dev: false
1166
1174
 
1167
- /@radix-ui/react-dialog@1.0.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
1175
+ /@radix-ui/react-dialog@1.0.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
1168
1176
  resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
1169
1177
  peerDependencies:
1170
1178
  react: ^16.8 || ^17.0 || ^18.0
@@ -1186,12 +1194,12 @@ packages:
1186
1194
  aria-hidden: 1.2.3
1187
1195
  react: 18.2.0
1188
1196
  react-dom: 18.2.0(react@18.2.0)
1189
- react-remove-scroll: 2.5.4(@types/react@18.2.7)(react@18.2.0)
1197
+ react-remove-scroll: 2.5.4(@types/react@18.2.14)(react@18.2.0)
1190
1198
  transitivePeerDependencies:
1191
1199
  - '@types/react'
1192
1200
  dev: false
1193
1201
 
1194
- /@radix-ui/react-dialog@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1195
1203
  resolution: {integrity: sha512-hJtRy/jPULGQZceSAP2Re6/4NpKo8im6V8P2hUqZsdFiSL8l35kYsw3qbRI6Ay5mQd2+wlLqje770eq+RJ3yZg==}
1196
1204
  peerDependencies:
1197
1205
  '@types/react': '*'
@@ -1206,26 +1214,26 @@ packages:
1206
1214
  dependencies:
1207
1215
  '@babel/runtime': 7.21.5
1208
1216
  '@radix-ui/primitive': 1.0.1
1209
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1210
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1211
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1212
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1213
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1214
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1215
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1216
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1217
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1218
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
1219
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1220
- '@types/react': 18.2.7
1221
- '@types/react-dom': 18.2.4
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
1222
1230
  aria-hidden: 1.2.3
1223
1231
  react: 18.2.0
1224
1232
  react-dom: 18.2.0(react@18.2.0)
1225
- react-remove-scroll: 2.5.5(@types/react@18.2.7)(react@18.2.0)
1233
+ react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0)
1226
1234
  dev: false
1227
1235
 
1228
- /@radix-ui/react-direction@1.0.1(@types/react@18.2.7)(react@18.2.0):
1236
+ /@radix-ui/react-direction@1.0.1(@types/react@18.2.14)(react@18.2.0):
1229
1237
  resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
1230
1238
  peerDependencies:
1231
1239
  '@types/react': '*'
@@ -1235,7 +1243,7 @@ packages:
1235
1243
  optional: true
1236
1244
  dependencies:
1237
1245
  '@babel/runtime': 7.21.5
1238
- '@types/react': 18.2.7
1246
+ '@types/react': 18.2.14
1239
1247
  react: 18.2.0
1240
1248
  dev: false
1241
1249
 
@@ -1255,7 +1263,7 @@ packages:
1255
1263
  react-dom: 18.2.0(react@18.2.0)
1256
1264
  dev: false
1257
1265
 
1258
- /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1259
1267
  resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
1260
1268
  peerDependencies:
1261
1269
  '@types/react': '*'
@@ -1270,17 +1278,17 @@ packages:
1270
1278
  dependencies:
1271
1279
  '@babel/runtime': 7.21.5
1272
1280
  '@radix-ui/primitive': 1.0.1
1273
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1274
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1275
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1276
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.7)(react@18.2.0)
1277
- '@types/react': 18.2.7
1278
- '@types/react-dom': 18.2.4
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
1279
1287
  react: 18.2.0
1280
1288
  react-dom: 18.2.0(react@18.2.0)
1281
1289
  dev: false
1282
1290
 
1283
- /@radix-ui/react-dropdown-menu@2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1284
1292
  resolution: {integrity: sha512-xdOrZzOTocqqkCkYo8yRPCib5OkTkqN7lqNCdxwPOdE466DOaNl4N8PkUIlsXthQvW5Wwkd+aEmWpfWlBoDPEw==}
1285
1293
  peerDependencies:
1286
1294
  '@types/react': '*'
@@ -1295,14 +1303,14 @@ packages:
1295
1303
  dependencies:
1296
1304
  '@babel/runtime': 7.21.5
1297
1305
  '@radix-ui/primitive': 1.0.1
1298
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1299
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1300
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1301
- '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1302
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1303
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1304
- '@types/react': 18.2.7
1305
- '@types/react-dom': 18.2.4
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
1306
1314
  react: 18.2.0
1307
1315
  react-dom: 18.2.0(react@18.2.0)
1308
1316
  dev: false
@@ -1316,7 +1324,7 @@ packages:
1316
1324
  react: 18.2.0
1317
1325
  dev: false
1318
1326
 
1319
- /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.7)(react@18.2.0):
1327
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.14)(react@18.2.0):
1320
1328
  resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
1321
1329
  peerDependencies:
1322
1330
  '@types/react': '*'
@@ -1326,7 +1334,7 @@ packages:
1326
1334
  optional: true
1327
1335
  dependencies:
1328
1336
  '@babel/runtime': 7.21.5
1329
- '@types/react': 18.2.7
1337
+ '@types/react': 18.2.14
1330
1338
  react: 18.2.0
1331
1339
  dev: false
1332
1340
 
@@ -1344,7 +1352,7 @@ packages:
1344
1352
  react-dom: 18.2.0(react@18.2.0)
1345
1353
  dev: false
1346
1354
 
1347
- /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1348
1356
  resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
1349
1357
  peerDependencies:
1350
1358
  '@types/react': '*'
@@ -1358,16 +1366,16 @@ packages:
1358
1366
  optional: true
1359
1367
  dependencies:
1360
1368
  '@babel/runtime': 7.21.5
1361
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1362
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1363
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1364
- '@types/react': 18.2.7
1365
- '@types/react-dom': 18.2.4
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
1366
1374
  react: 18.2.0
1367
1375
  react-dom: 18.2.0(react@18.2.0)
1368
1376
  dev: false
1369
1377
 
1370
- /@radix-ui/react-hover-card@1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1371
1379
  resolution: {integrity: sha512-2K3ToJuMk9wjwBOa+jdg2oPma+AmLdcEyTNsG/iC4BDVG3E0/mGCjbY8PEDSLxJcUi+nJi2QII+ec/4kWd88DA==}
1372
1380
  peerDependencies:
1373
1381
  '@types/react': '*'
@@ -1382,20 +1390,28 @@ packages:
1382
1390
  dependencies:
1383
1391
  '@babel/runtime': 7.21.5
1384
1392
  '@radix-ui/primitive': 1.0.1
1385
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1386
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1387
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1388
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1389
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1390
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1391
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1392
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1393
- '@types/react': 18.2.7
1394
- '@types/react-dom': 18.2.4
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
1395
1403
  react: 18.2.0
1396
1404
  react-dom: 18.2.0(react@18.2.0)
1397
1405
  dev: false
1398
1406
 
1407
+ /@radix-ui/react-icons@1.3.0(react@18.2.0):
1408
+ resolution: {integrity: sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==}
1409
+ peerDependencies:
1410
+ react: ^16.x || ^17.x || ^18.x
1411
+ dependencies:
1412
+ react: 18.2.0
1413
+ dev: false
1414
+
1399
1415
  /@radix-ui/react-id@1.0.0(react@18.2.0):
1400
1416
  resolution: {integrity: sha512-Q6iAB/U7Tq3NTolBBQbHTgclPmGWE3OlktGGqrClPozSw4vkQ1DfQAOtzgRPecKsMdJINE05iaoDUG8tRzCBjw==}
1401
1417
  peerDependencies:
@@ -1406,7 +1422,7 @@ packages:
1406
1422
  react: 18.2.0
1407
1423
  dev: false
1408
1424
 
1409
- /@radix-ui/react-id@1.0.1(@types/react@18.2.7)(react@18.2.0):
1425
+ /@radix-ui/react-id@1.0.1(@types/react@18.2.14)(react@18.2.0):
1410
1426
  resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
1411
1427
  peerDependencies:
1412
1428
  '@types/react': '*'
@@ -1416,12 +1432,12 @@ packages:
1416
1432
  optional: true
1417
1433
  dependencies:
1418
1434
  '@babel/runtime': 7.21.5
1419
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1420
- '@types/react': 18.2.7
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
1421
1437
  react: 18.2.0
1422
1438
  dev: false
1423
1439
 
1424
- /@radix-ui/react-label@2.0.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1425
1441
  resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==}
1426
1442
  peerDependencies:
1427
1443
  '@types/react': '*'
@@ -1435,14 +1451,14 @@ packages:
1435
1451
  optional: true
1436
1452
  dependencies:
1437
1453
  '@babel/runtime': 7.21.5
1438
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1439
- '@types/react': 18.2.7
1440
- '@types/react-dom': 18.2.4
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
1441
1457
  react: 18.2.0
1442
1458
  react-dom: 18.2.0(react@18.2.0)
1443
1459
  dev: false
1444
1460
 
1445
- /@radix-ui/react-menu@2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1446
1462
  resolution: {integrity: sha512-Gw4f9pwdH+w5w+49k0gLjN0PfRDHvxmAgG16AbyJZ7zhwZ6PBHKtWohvnSwfusfnK3L68dpBREHpVkj8wEM7ZA==}
1447
1463
  peerDependencies:
1448
1464
  '@types/react': '*'
@@ -1457,30 +1473,30 @@ packages:
1457
1473
  dependencies:
1458
1474
  '@babel/runtime': 7.21.5
1459
1475
  '@radix-ui/primitive': 1.0.1
1460
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1461
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1462
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1463
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1464
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1465
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1466
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1467
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1468
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1469
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1470
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1471
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1472
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1473
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
1474
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1475
- '@types/react': 18.2.7
1476
- '@types/react-dom': 18.2.4
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
1477
1493
  aria-hidden: 1.2.3
1478
1494
  react: 18.2.0
1479
1495
  react-dom: 18.2.0(react@18.2.0)
1480
- react-remove-scroll: 2.5.5(@types/react@18.2.7)(react@18.2.0)
1496
+ react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0)
1481
1497
  dev: false
1482
1498
 
1483
- /@radix-ui/react-menubar@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1484
1500
  resolution: {integrity: sha512-GqjdxzYCjjKhcgEODDP8SrYfbWNh/Hm3lyuFkP5Q5IbX0QfXklLF1o1AqA3oTV2kulUgN/kOZVS92hIIShEgpA==}
1485
1501
  peerDependencies:
1486
1502
  '@types/react': '*'
@@ -1495,22 +1511,22 @@ packages:
1495
1511
  dependencies:
1496
1512
  '@babel/runtime': 7.21.5
1497
1513
  '@radix-ui/primitive': 1.0.1
1498
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1499
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1500
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1501
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1502
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1503
- '@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1504
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1505
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1506
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1507
- '@types/react': 18.2.7
1508
- '@types/react-dom': 18.2.4
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
1509
1525
  react: 18.2.0
1510
1526
  react-dom: 18.2.0(react@18.2.0)
1511
1527
  dev: false
1512
1528
 
1513
- /@radix-ui/react-navigation-menu@1.1.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1514
1530
  resolution: {integrity: sha512-x4Uv0N47ABx3/frJazYXxvMpZeKJe0qmRIgQ2o3lhTqnTVg+CaZfVVO4nQLn3QJcDkTz8icElKffhFng47XIBA==}
1515
1531
  peerDependencies:
1516
1532
  '@types/react': '*'
@@ -1525,26 +1541,26 @@ packages:
1525
1541
  dependencies:
1526
1542
  '@babel/runtime': 7.21.5
1527
1543
  '@radix-ui/primitive': 1.0.1
1528
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1529
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1530
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1531
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1532
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1533
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1534
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1535
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1536
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1537
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1538
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1539
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1540
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1541
- '@types/react': 18.2.7
1542
- '@types/react-dom': 18.2.4
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
1543
1559
  react: 18.2.0
1544
1560
  react-dom: 18.2.0(react@18.2.0)
1545
1561
  dev: false
1546
1562
 
1547
- /@radix-ui/react-popover@1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1548
1564
  resolution: {integrity: sha512-cZ4defGpkZ0qTRtlIBzJLSzL6ht7ofhhW4i1+pkemjV1IKXm0wgCRnee154qlV6r9Ttunmh2TNZhMfV2bavUyA==}
1549
1565
  peerDependencies:
1550
1566
  '@types/react': '*'
@@ -1559,27 +1575,27 @@ packages:
1559
1575
  dependencies:
1560
1576
  '@babel/runtime': 7.21.5
1561
1577
  '@radix-ui/primitive': 1.0.1
1562
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1563
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1564
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1565
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1566
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1567
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1568
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1569
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1570
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1571
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1572
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
1573
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1574
- '@types/react': 18.2.7
1575
- '@types/react-dom': 18.2.4
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
1576
1592
  aria-hidden: 1.2.3
1577
1593
  react: 18.2.0
1578
1594
  react-dom: 18.2.0(react@18.2.0)
1579
- react-remove-scroll: 2.5.5(@types/react@18.2.7)(react@18.2.0)
1595
+ react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0)
1580
1596
  dev: false
1581
1597
 
1582
- /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1583
1599
  resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
1584
1600
  peerDependencies:
1585
1601
  '@types/react': '*'
@@ -1594,17 +1610,17 @@ packages:
1594
1610
  dependencies:
1595
1611
  '@babel/runtime': 7.21.5
1596
1612
  '@floating-ui/react-dom': 2.0.0(react-dom@18.2.0)(react@18.2.0)
1597
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1598
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1599
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1600
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1601
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1602
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1603
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1604
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.7)(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)
1605
1621
  '@radix-ui/rect': 1.0.1
1606
- '@types/react': 18.2.7
1607
- '@types/react-dom': 18.2.4
1622
+ '@types/react': 18.2.14
1623
+ '@types/react-dom': 18.2.6
1608
1624
  react: 18.2.0
1609
1625
  react-dom: 18.2.0(react@18.2.0)
1610
1626
  dev: false
@@ -1621,7 +1637,7 @@ packages:
1621
1637
  react-dom: 18.2.0(react@18.2.0)
1622
1638
  dev: false
1623
1639
 
1624
- /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1625
1641
  resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
1626
1642
  peerDependencies:
1627
1643
  '@types/react': '*'
@@ -1635,9 +1651,9 @@ packages:
1635
1651
  optional: true
1636
1652
  dependencies:
1637
1653
  '@babel/runtime': 7.21.5
1638
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1639
- '@types/react': 18.2.7
1640
- '@types/react-dom': 18.2.4
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
1641
1657
  react: 18.2.0
1642
1658
  react-dom: 18.2.0(react@18.2.0)
1643
1659
  dev: false
@@ -1655,7 +1671,7 @@ packages:
1655
1671
  react-dom: 18.2.0(react@18.2.0)
1656
1672
  dev: false
1657
1673
 
1658
- /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1659
1675
  resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
1660
1676
  peerDependencies:
1661
1677
  '@types/react': '*'
@@ -1669,10 +1685,10 @@ packages:
1669
1685
  optional: true
1670
1686
  dependencies:
1671
1687
  '@babel/runtime': 7.21.5
1672
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1673
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1674
- '@types/react': 18.2.7
1675
- '@types/react-dom': 18.2.4
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
1676
1692
  react: 18.2.0
1677
1693
  react-dom: 18.2.0(react@18.2.0)
1678
1694
  dev: false
@@ -1689,7 +1705,7 @@ packages:
1689
1705
  react-dom: 18.2.0(react@18.2.0)
1690
1706
  dev: false
1691
1707
 
1692
- /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1693
1709
  resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
1694
1710
  peerDependencies:
1695
1711
  '@types/react': '*'
@@ -1703,14 +1719,14 @@ packages:
1703
1719
  optional: true
1704
1720
  dependencies:
1705
1721
  '@babel/runtime': 7.21.5
1706
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
1707
- '@types/react': 18.2.7
1708
- '@types/react-dom': 18.2.4
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
1709
1725
  react: 18.2.0
1710
1726
  react-dom: 18.2.0(react@18.2.0)
1711
1727
  dev: false
1712
1728
 
1713
- /@radix-ui/react-progress@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1714
1730
  resolution: {integrity: sha512-5G6Om/tYSxjSeEdrb1VfKkfZfn/1IlPWd731h2RfPuSbIfNUgfqAwbKfJCg/PP6nuUCTrYzalwHSpSinoWoCag==}
1715
1731
  peerDependencies:
1716
1732
  '@types/react': '*'
@@ -1724,15 +1740,15 @@ packages:
1724
1740
  optional: true
1725
1741
  dependencies:
1726
1742
  '@babel/runtime': 7.21.5
1727
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1728
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1729
- '@types/react': 18.2.7
1730
- '@types/react-dom': 18.2.4
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
1731
1747
  react: 18.2.0
1732
1748
  react-dom: 18.2.0(react@18.2.0)
1733
1749
  dev: false
1734
1750
 
1735
- /@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1736
1752
  resolution: {integrity: sha512-x+yELayyefNeKeTx4fjK6j99Fs6c4qKm3aY38G3swQVTN6xMpsrbigC0uHs2L//g8q4qR7qOcww8430jJmi2ag==}
1737
1753
  peerDependencies:
1738
1754
  '@types/react': '*'
@@ -1747,22 +1763,22 @@ packages:
1747
1763
  dependencies:
1748
1764
  '@babel/runtime': 7.21.5
1749
1765
  '@radix-ui/primitive': 1.0.1
1750
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1751
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1752
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1753
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1754
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1755
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1756
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1757
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1758
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1759
- '@types/react': 18.2.7
1760
- '@types/react-dom': 18.2.4
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
1761
1777
  react: 18.2.0
1762
1778
  react-dom: 18.2.0(react@18.2.0)
1763
1779
  dev: false
1764
1780
 
1765
- /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1766
1782
  resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
1767
1783
  peerDependencies:
1768
1784
  '@types/react': '*'
@@ -1777,21 +1793,21 @@ packages:
1777
1793
  dependencies:
1778
1794
  '@babel/runtime': 7.21.5
1779
1795
  '@radix-ui/primitive': 1.0.1
1780
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1781
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1782
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1783
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1784
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1785
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1786
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1787
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1788
- '@types/react': 18.2.7
1789
- '@types/react-dom': 18.2.4
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
1790
1806
  react: 18.2.0
1791
1807
  react-dom: 18.2.0(react@18.2.0)
1792
1808
  dev: false
1793
1809
 
1794
- /@radix-ui/react-scroll-area@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1795
1811
  resolution: {integrity: sha512-OIClwBkwPG+FKvC4OMTRaa/3cfD069nkKFFL/TQzRzaO42Ce5ivKU9VMKgT7UU6UIkjcQqKBrDOIzWtPGw6e6w==}
1796
1812
  peerDependencies:
1797
1813
  '@types/react': '*'
@@ -1807,20 +1823,20 @@ packages:
1807
1823
  '@babel/runtime': 7.21.5
1808
1824
  '@radix-ui/number': 1.0.1
1809
1825
  '@radix-ui/primitive': 1.0.1
1810
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1811
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1812
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1813
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1814
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1815
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1816
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1817
- '@types/react': 18.2.7
1818
- '@types/react-dom': 18.2.4
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
1819
1835
  react: 18.2.0
1820
1836
  react-dom: 18.2.0(react@18.2.0)
1821
1837
  dev: false
1822
1838
 
1823
- /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1824
1840
  resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
1825
1841
  peerDependencies:
1826
1842
  '@types/react': '*'
@@ -1836,32 +1852,32 @@ packages:
1836
1852
  '@babel/runtime': 7.21.5
1837
1853
  '@radix-ui/number': 1.0.1
1838
1854
  '@radix-ui/primitive': 1.0.1
1839
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1840
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1841
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1842
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1843
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1844
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1845
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1846
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1847
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1848
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1849
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1850
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
1851
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1852
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1853
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1854
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1855
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1856
- '@types/react': 18.2.7
1857
- '@types/react-dom': 18.2.4
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
1858
1874
  aria-hidden: 1.2.3
1859
1875
  react: 18.2.0
1860
1876
  react-dom: 18.2.0(react@18.2.0)
1861
- react-remove-scroll: 2.5.5(@types/react@18.2.7)(react@18.2.0)
1877
+ react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0)
1862
1878
  dev: false
1863
1879
 
1864
- /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1865
1881
  resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
1866
1882
  peerDependencies:
1867
1883
  '@types/react': '*'
@@ -1875,14 +1891,14 @@ packages:
1875
1891
  optional: true
1876
1892
  dependencies:
1877
1893
  '@babel/runtime': 7.21.5
1878
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1879
- '@types/react': 18.2.7
1880
- '@types/react-dom': 18.2.4
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
1881
1897
  react: 18.2.0
1882
1898
  react-dom: 18.2.0(react@18.2.0)
1883
1899
  dev: false
1884
1900
 
1885
- /@radix-ui/react-slider@1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1886
1902
  resolution: {integrity: sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw==}
1887
1903
  peerDependencies:
1888
1904
  '@types/react': '*'
@@ -1898,17 +1914,17 @@ packages:
1898
1914
  '@babel/runtime': 7.21.5
1899
1915
  '@radix-ui/number': 1.0.1
1900
1916
  '@radix-ui/primitive': 1.0.1
1901
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1902
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1903
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1904
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1905
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1906
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1907
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1908
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1909
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1910
- '@types/react': 18.2.7
1911
- '@types/react-dom': 18.2.4
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
1912
1928
  react: 18.2.0
1913
1929
  react-dom: 18.2.0(react@18.2.0)
1914
1930
  dev: false
@@ -1923,7 +1939,7 @@ packages:
1923
1939
  react: 18.2.0
1924
1940
  dev: false
1925
1941
 
1926
- /@radix-ui/react-slot@1.0.2(@types/react@18.2.7)(react@18.2.0):
1942
+ /@radix-ui/react-slot@1.0.2(@types/react@18.2.14)(react@18.2.0):
1927
1943
  resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
1928
1944
  peerDependencies:
1929
1945
  '@types/react': '*'
@@ -1933,12 +1949,12 @@ packages:
1933
1949
  optional: true
1934
1950
  dependencies:
1935
1951
  '@babel/runtime': 7.21.5
1936
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1937
- '@types/react': 18.2.7
1952
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
1953
+ '@types/react': 18.2.14
1938
1954
  react: 18.2.0
1939
1955
  dev: false
1940
1956
 
1941
- /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1942
1958
  resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==}
1943
1959
  peerDependencies:
1944
1960
  '@types/react': '*'
@@ -1953,19 +1969,19 @@ packages:
1953
1969
  dependencies:
1954
1970
  '@babel/runtime': 7.21.5
1955
1971
  '@radix-ui/primitive': 1.0.1
1956
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1957
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1958
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1959
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1960
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1961
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1962
- '@types/react': 18.2.7
1963
- '@types/react-dom': 18.2.4
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
1964
1980
  react: 18.2.0
1965
1981
  react-dom: 18.2.0(react@18.2.0)
1966
1982
  dev: false
1967
1983
 
1968
- /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1969
1985
  resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==}
1970
1986
  peerDependencies:
1971
1987
  '@types/react': '*'
@@ -1980,20 +1996,20 @@ packages:
1980
1996
  dependencies:
1981
1997
  '@babel/runtime': 7.21.5
1982
1998
  '@radix-ui/primitive': 1.0.1
1983
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1984
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1985
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1986
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1987
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1988
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
1989
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
1990
- '@types/react': 18.2.7
1991
- '@types/react-dom': 18.2.4
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
1992
2008
  react: 18.2.0
1993
2009
  react-dom: 18.2.0(react@18.2.0)
1994
2010
  dev: false
1995
2011
 
1996
- /@radix-ui/react-toast@1.1.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
1997
2013
  resolution: {integrity: sha512-wf+fc8DOywrpRK3jlPlWVe+ELYGHdKDaaARJZNuUTWyWYq7+ANCFLp4rTjZ/mcGkJJQ/vZ949Zis9xxEpfq9OA==}
1998
2014
  peerDependencies:
1999
2015
  '@types/react': '*'
@@ -2008,24 +2024,24 @@ packages:
2008
2024
  dependencies:
2009
2025
  '@babel/runtime': 7.21.5
2010
2026
  '@radix-ui/primitive': 1.0.1
2011
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2012
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2013
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2014
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2015
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2016
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2017
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2018
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2019
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2020
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2021
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2022
- '@types/react': 18.2.7
2023
- '@types/react-dom': 18.2.4
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
2024
2040
  react: 18.2.0
2025
2041
  react-dom: 18.2.0(react@18.2.0)
2026
2042
  dev: false
2027
2043
 
2028
- /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
2029
2045
  resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
2030
2046
  peerDependencies:
2031
2047
  '@types/react': '*'
@@ -2040,19 +2056,19 @@ packages:
2040
2056
  dependencies:
2041
2057
  '@babel/runtime': 7.21.5
2042
2058
  '@radix-ui/primitive': 1.0.1
2043
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2044
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2045
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2046
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2047
- '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2048
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2049
- '@types/react': 18.2.7
2050
- '@types/react-dom': 18.2.4
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
2051
2067
  react: 18.2.0
2052
2068
  react-dom: 18.2.0(react@18.2.0)
2053
2069
  dev: false
2054
2070
 
2055
- /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
2056
2072
  resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
2057
2073
  peerDependencies:
2058
2074
  '@types/react': '*'
@@ -2067,15 +2083,15 @@ packages:
2067
2083
  dependencies:
2068
2084
  '@babel/runtime': 7.21.5
2069
2085
  '@radix-ui/primitive': 1.0.1
2070
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2071
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2072
- '@types/react': 18.2.7
2073
- '@types/react-dom': 18.2.4
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
2074
2090
  react: 18.2.0
2075
2091
  react-dom: 18.2.0(react@18.2.0)
2076
2092
  dev: false
2077
2093
 
2078
- /@radix-ui/react-tooltip@1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
2079
2095
  resolution: {integrity: sha512-DmNFOiwEc2UDigsYj6clJENma58OelxD24O4IODoZ+3sQc3Zb+L8w1EP+y9laTuKCLAysPw4fD6/v0j4KNV8rg==}
2080
2096
  peerDependencies:
2081
2097
  '@types/react': '*'
@@ -2090,19 +2106,19 @@ packages:
2090
2106
  dependencies:
2091
2107
  '@babel/runtime': 7.21.5
2092
2108
  '@radix-ui/primitive': 1.0.1
2093
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2094
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2095
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2096
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2097
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2098
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2099
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2100
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2101
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
2102
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2103
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2104
- '@types/react': 18.2.7
2105
- '@types/react-dom': 18.2.4
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
2106
2122
  react: 18.2.0
2107
2123
  react-dom: 18.2.0(react@18.2.0)
2108
2124
  dev: false
@@ -2116,7 +2132,7 @@ packages:
2116
2132
  react: 18.2.0
2117
2133
  dev: false
2118
2134
 
2119
- /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.7)(react@18.2.0):
2135
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.14)(react@18.2.0):
2120
2136
  resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
2121
2137
  peerDependencies:
2122
2138
  '@types/react': '*'
@@ -2126,7 +2142,7 @@ packages:
2126
2142
  optional: true
2127
2143
  dependencies:
2128
2144
  '@babel/runtime': 7.21.5
2129
- '@types/react': 18.2.7
2145
+ '@types/react': 18.2.14
2130
2146
  react: 18.2.0
2131
2147
  dev: false
2132
2148
 
@@ -2140,7 +2156,7 @@ packages:
2140
2156
  react: 18.2.0
2141
2157
  dev: false
2142
2158
 
2143
- /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.7)(react@18.2.0):
2159
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.14)(react@18.2.0):
2144
2160
  resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
2145
2161
  peerDependencies:
2146
2162
  '@types/react': '*'
@@ -2150,8 +2166,8 @@ packages:
2150
2166
  optional: true
2151
2167
  dependencies:
2152
2168
  '@babel/runtime': 7.21.5
2153
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2154
- '@types/react': 18.2.7
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
2155
2171
  react: 18.2.0
2156
2172
  dev: false
2157
2173
 
@@ -2165,7 +2181,7 @@ packages:
2165
2181
  react: 18.2.0
2166
2182
  dev: false
2167
2183
 
2168
- /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.7)(react@18.2.0):
2184
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.14)(react@18.2.0):
2169
2185
  resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
2170
2186
  peerDependencies:
2171
2187
  '@types/react': '*'
@@ -2175,8 +2191,8 @@ packages:
2175
2191
  optional: true
2176
2192
  dependencies:
2177
2193
  '@babel/runtime': 7.21.5
2178
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2179
- '@types/react': 18.2.7
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
2180
2196
  react: 18.2.0
2181
2197
  dev: false
2182
2198
 
@@ -2189,7 +2205,7 @@ packages:
2189
2205
  react: 18.2.0
2190
2206
  dev: false
2191
2207
 
2192
- /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.7)(react@18.2.0):
2208
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.14)(react@18.2.0):
2193
2209
  resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
2194
2210
  peerDependencies:
2195
2211
  '@types/react': '*'
@@ -2199,11 +2215,11 @@ packages:
2199
2215
  optional: true
2200
2216
  dependencies:
2201
2217
  '@babel/runtime': 7.21.5
2202
- '@types/react': 18.2.7
2218
+ '@types/react': 18.2.14
2203
2219
  react: 18.2.0
2204
2220
  dev: false
2205
2221
 
2206
- /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.7)(react@18.2.0):
2222
+ /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.14)(react@18.2.0):
2207
2223
  resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
2208
2224
  peerDependencies:
2209
2225
  '@types/react': '*'
@@ -2213,11 +2229,11 @@ packages:
2213
2229
  optional: true
2214
2230
  dependencies:
2215
2231
  '@babel/runtime': 7.21.5
2216
- '@types/react': 18.2.7
2232
+ '@types/react': 18.2.14
2217
2233
  react: 18.2.0
2218
2234
  dev: false
2219
2235
 
2220
- /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.7)(react@18.2.0):
2236
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.14)(react@18.2.0):
2221
2237
  resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
2222
2238
  peerDependencies:
2223
2239
  '@types/react': '*'
@@ -2228,11 +2244,11 @@ packages:
2228
2244
  dependencies:
2229
2245
  '@babel/runtime': 7.21.5
2230
2246
  '@radix-ui/rect': 1.0.1
2231
- '@types/react': 18.2.7
2247
+ '@types/react': 18.2.14
2232
2248
  react: 18.2.0
2233
2249
  dev: false
2234
2250
 
2235
- /@radix-ui/react-use-size@1.0.1(@types/react@18.2.7)(react@18.2.0):
2251
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.2.14)(react@18.2.0):
2236
2252
  resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
2237
2253
  peerDependencies:
2238
2254
  '@types/react': '*'
@@ -2242,12 +2258,12 @@ packages:
2242
2258
  optional: true
2243
2259
  dependencies:
2244
2260
  '@babel/runtime': 7.21.5
2245
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
2246
- '@types/react': 18.2.7
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
2247
2263
  react: 18.2.0
2248
2264
  dev: false
2249
2265
 
2250
- /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
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):
2251
2267
  resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
2252
2268
  peerDependencies:
2253
2269
  '@types/react': '*'
@@ -2261,9 +2277,9 @@ packages:
2261
2277
  optional: true
2262
2278
  dependencies:
2263
2279
  '@babel/runtime': 7.21.5
2264
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2265
- '@types/react': 18.2.7
2266
- '@types/react-dom': 18.2.4
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
2267
2283
  react: 18.2.0
2268
2284
  react-dom: 18.2.0(react@18.2.0)
2269
2285
  dev: false
@@ -2279,8 +2295,8 @@ packages:
2279
2295
  engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
2280
2296
  dev: true
2281
2297
 
2282
- /@swc/core-darwin-arm64@1.3.59:
2283
- resolution: {integrity: sha512-AnqWFBgEKHP0jb4iZqx7eVQT9/rX45+DE4Ox7GpwCahUKxxrsDLyXzKhwLwQuAjUvtu5JcSB77szKpPGDM49fQ==}
2298
+ /@swc/core-darwin-arm64@1.3.68:
2299
+ resolution: {integrity: sha512-Z5pNxeuP2NxpOHTzDQkJs0wAPLnTlglZnR3WjObijwvdwT/kw1Y5EPDKM/BVSIeG40SPMkDLBbI0aj0qyXzrBA==}
2284
2300
  engines: {node: '>=10'}
2285
2301
  cpu: [arm64]
2286
2302
  os: [darwin]
@@ -2288,8 +2304,8 @@ packages:
2288
2304
  dev: false
2289
2305
  optional: true
2290
2306
 
2291
- /@swc/core-darwin-x64@1.3.59:
2292
- resolution: {integrity: sha512-iqDs+yii9mOsmpJez82SEi4d4prWDRlapHxKnDVJ0x1AqRo41vIq8t3fujrvCHYU5VQgOYGh4ooXQpaP2H3B2A==}
2307
+ /@swc/core-darwin-x64@1.3.68:
2308
+ resolution: {integrity: sha512-ZHl42g6yXhfX4PzAQ0BNvBXpt/OcbAHfubWRN6eXELK3fiNnxL7QBW1if7iizlq6iA+Mj1pwHyyUit1pz0+fgA==}
2293
2309
  engines: {node: '>=10'}
2294
2310
  cpu: [x64]
2295
2311
  os: [darwin]
@@ -2297,8 +2313,8 @@ packages:
2297
2313
  dev: false
2298
2314
  optional: true
2299
2315
 
2300
- /@swc/core-linux-arm-gnueabihf@1.3.59:
2301
- resolution: {integrity: sha512-PB0PP+SgkCSd/kYmltnPiGv42cOSaih1OjXCEjxvNwUFEmWqluW6uGdWaNiR1LoYMxhcHZTc336jL2+O3l6p0Q==}
2316
+ /@swc/core-linux-arm-gnueabihf@1.3.68:
2317
+ resolution: {integrity: sha512-Mk8f6KCOQ2CNAR4PtWajIjS6XKSSR7ZYDOCf1GXRxhS3qEyQH7V8elWvqWYqHcT4foO60NUmxA/NOM/dQrdO1A==}
2302
2318
  engines: {node: '>=10'}
2303
2319
  cpu: [arm]
2304
2320
  os: [linux]
@@ -2306,8 +2322,8 @@ packages:
2306
2322
  dev: false
2307
2323
  optional: true
2308
2324
 
2309
- /@swc/core-linux-arm64-gnu@1.3.59:
2310
- resolution: {integrity: sha512-Ol/JPszWZ+OZ44FOdJe35TfJ1ckG4pYaisZJ4E7PzfwfVe2ygX85C5WWR4e5L0Y1zFvzpcI7gdyC2wzcXk4Cig==}
2325
+ /@swc/core-linux-arm64-gnu@1.3.68:
2326
+ resolution: {integrity: sha512-RhBllggh9t9sIxaRgRcGrVaS7fDk6KsIqR6b9+dwU5OyDr4ZyHWw1ZaH/1/HAebuXYhNBjoNUiRtca6lKRIPgQ==}
2311
2327
  engines: {node: '>=10'}
2312
2328
  cpu: [arm64]
2313
2329
  os: [linux]
@@ -2315,8 +2331,8 @@ packages:
2315
2331
  dev: false
2316
2332
  optional: true
2317
2333
 
2318
- /@swc/core-linux-arm64-musl@1.3.59:
2319
- resolution: {integrity: sha512-PtTTtGbj9GiY5gJdoSFL2A0vL6BRaS1haAhp6g3hZvLDkTTg+rJURmzwBMMjaQlnGC62x/lLf6MoszHG/05//Q==}
2334
+ /@swc/core-linux-arm64-musl@1.3.68:
2335
+ resolution: {integrity: sha512-8K3zjU+tFgn6yGDEeD343gkKaHU9dhz77NiVkI1VzwRaT/Ag5pwl5eMQ1yStm8koNFzn3zq6rGjHfI5g2yI5Wg==}
2320
2336
  engines: {node: '>=10'}
2321
2337
  cpu: [arm64]
2322
2338
  os: [linux]
@@ -2324,8 +2340,8 @@ packages:
2324
2340
  dev: false
2325
2341
  optional: true
2326
2342
 
2327
- /@swc/core-linux-x64-gnu@1.3.59:
2328
- resolution: {integrity: sha512-XBW9AGi0YsIN76IfesnDSBn/5sjR69J75KUNte8sH6seYlHJ0/kblqUMbUcfr0CiGoJadbzAZeKZZmfN7EsHpg==}
2343
+ /@swc/core-linux-x64-gnu@1.3.68:
2344
+ resolution: {integrity: sha512-4xAnvsBOyeTL0AB8GWlRKDM/hsysJ5jr5qvdKKI3rZfJgnnxl/xSX6TJKPsJ8gygfUJ3BmfCbmUmEyeDZ3YPvA==}
2329
2345
  engines: {node: '>=10'}
2330
2346
  cpu: [x64]
2331
2347
  os: [linux]
@@ -2333,8 +2349,8 @@ packages:
2333
2349
  dev: false
2334
2350
  optional: true
2335
2351
 
2336
- /@swc/core-linux-x64-musl@1.3.59:
2337
- resolution: {integrity: sha512-Cy5E939SdWPQ34cg6UABNO0RyEe0FuWqzZ/GLKtK11Ir4fjttVlucZiY59uQNyUVUc8T2qE0VBFCyD/zYGuHtg==}
2352
+ /@swc/core-linux-x64-musl@1.3.68:
2353
+ resolution: {integrity: sha512-RCpaBo1fcpy1EFdjF+I7N4lfzOaHXVV0iMw/ABM+0PD6tp3V/9pxsguaZyeAHyEiUlDA6PZ4TfXv5zfnXEgW4Q==}
2338
2354
  engines: {node: '>=10'}
2339
2355
  cpu: [x64]
2340
2356
  os: [linux]
@@ -2342,8 +2358,8 @@ packages:
2342
2358
  dev: false
2343
2359
  optional: true
2344
2360
 
2345
- /@swc/core-win32-arm64-msvc@1.3.59:
2346
- resolution: {integrity: sha512-z5ZJxizRvRoSAaevRIi3YjQh74OFWEIhonSDWNdqDL7RbjEivcatYcG7OikH6s+rtPhOcwNm3PbGV2Prcgh/gg==}
2361
+ /@swc/core-win32-arm64-msvc@1.3.68:
2362
+ resolution: {integrity: sha512-v2WZvXrSslYEpY1nqpItyamL4DyaJinmOkXvM8Bc1LLKU5rGuvmBdjUYg/5Y+o0AUynuiWubpgHNOkBWiCvfqw==}
2347
2363
  engines: {node: '>=10'}
2348
2364
  cpu: [arm64]
2349
2365
  os: [win32]
@@ -2351,8 +2367,8 @@ packages:
2351
2367
  dev: false
2352
2368
  optional: true
2353
2369
 
2354
- /@swc/core-win32-ia32-msvc@1.3.59:
2355
- resolution: {integrity: sha512-vxpsn+hrKAhi5YusQfB/JXUJJVX40rIRE/L49ilBEqdbH8Khkoego6AD+2vWqTdJcUHo1WiAIAEZ0rTsjyorLQ==}
2370
+ /@swc/core-win32-ia32-msvc@1.3.68:
2371
+ resolution: {integrity: sha512-HH5NJrIdzkJs+1xxprie0qSCMBeL9yeEhcC1yZTzYv8bwmabOUSdtKIqS55iYP/2hLWn9CTbvKPmLOIhCopW3Q==}
2356
2372
  engines: {node: '>=10'}
2357
2373
  cpu: [ia32]
2358
2374
  os: [win32]
@@ -2360,8 +2376,8 @@ packages:
2360
2376
  dev: false
2361
2377
  optional: true
2362
2378
 
2363
- /@swc/core-win32-x64-msvc@1.3.59:
2364
- resolution: {integrity: sha512-Ris/cJbURylcLwqz4RZUUBCEGsuaIHOJsvf69W5pGKHKBryVoOTNhBKpo3Km2hoAi5qFQ/ou0trAT4hBsVPZvQ==}
2379
+ /@swc/core-win32-x64-msvc@1.3.68:
2380
+ resolution: {integrity: sha512-9HZVtLQUgK8r/yXQdwe0VBexbIcrY6+fBROhs7AAPWdewpaUeLkwQEJk6TbYr9CQuHw26FFGg6SjwAiqXF+kgQ==}
2365
2381
  engines: {node: '>=10'}
2366
2382
  cpu: [x64]
2367
2383
  os: [win32]
@@ -2369,8 +2385,8 @@ packages:
2369
2385
  dev: false
2370
2386
  optional: true
2371
2387
 
2372
- /@swc/core@1.3.59:
2373
- resolution: {integrity: sha512-ZBw31zd2E5SXiodwGvjQdx5ZC90b2uyX/i2LeMMs8LKfXD86pfOfQac+JVrnyEKDhASXj9icgsF9NXBhaMr3Kw==}
2388
+ /@swc/core@1.3.68:
2389
+ resolution: {integrity: sha512-njGQuJO+Wy06dEayt70cf0c/KI3HGjm4iW9LLViVLBuYNzJ4SSdNfzejludzufu6im+dsDJ0i3QjgWhAIcVHMQ==}
2374
2390
  engines: {node: '>=10'}
2375
2391
  requiresBuild: true
2376
2392
  peerDependencies:
@@ -2379,16 +2395,16 @@ packages:
2379
2395
  '@swc/helpers':
2380
2396
  optional: true
2381
2397
  optionalDependencies:
2382
- '@swc/core-darwin-arm64': 1.3.59
2383
- '@swc/core-darwin-x64': 1.3.59
2384
- '@swc/core-linux-arm-gnueabihf': 1.3.59
2385
- '@swc/core-linux-arm64-gnu': 1.3.59
2386
- '@swc/core-linux-arm64-musl': 1.3.59
2387
- '@swc/core-linux-x64-gnu': 1.3.59
2388
- '@swc/core-linux-x64-musl': 1.3.59
2389
- '@swc/core-win32-arm64-msvc': 1.3.59
2390
- '@swc/core-win32-ia32-msvc': 1.3.59
2391
- '@swc/core-win32-x64-msvc': 1.3.59
2398
+ '@swc/core-darwin-arm64': 1.3.68
2399
+ '@swc/core-darwin-x64': 1.3.68
2400
+ '@swc/core-linux-arm-gnueabihf': 1.3.68
2401
+ '@swc/core-linux-arm64-gnu': 1.3.68
2402
+ '@swc/core-linux-arm64-musl': 1.3.68
2403
+ '@swc/core-linux-x64-gnu': 1.3.68
2404
+ '@swc/core-linux-x64-musl': 1.3.68
2405
+ '@swc/core-win32-arm64-msvc': 1.3.68
2406
+ '@swc/core-win32-ia32-msvc': 1.3.68
2407
+ '@swc/core-win32-x64-msvc': 1.3.68
2392
2408
  dev: false
2393
2409
 
2394
2410
  /@swc/helpers@0.5.1:
@@ -2402,8 +2418,13 @@ packages:
2402
2418
  engines: {node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'}
2403
2419
  dev: false
2404
2420
 
2405
- /@tauri-apps/cli-darwin-arm64@2.0.0-alpha.9:
2406
- resolution: {integrity: sha512-h7AQY4MbHyy7CLANfoegJyaypKQ3fYPlBA3mnhtF+zntrMxVTv+HO9sgn98jGnwlOak8y0NPPKJ6gZFu5GYiNg==}
2421
+ /@tauri-apps/api@2.0.0-alpha.5:
2422
+ resolution: {integrity: sha512-OqysC4c819itGxic50RoDMrmd+ofX+MMNkXKeRS0BV2rkKqrnuV17o3TrQXFI1xs/kXRmmPC+3Y42P9Y5uNvRg==}
2423
+ engines: {node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'}
2424
+ dev: false
2425
+
2426
+ /@tauri-apps/cli-darwin-arm64@2.0.0-alpha.10:
2427
+ resolution: {integrity: sha512-z6DoKRUm1Yygu2Tpatu7Fej0eZejZQcsDKsHWc3b5yoIsrodxvKbko2SvYczUx4ecXWplJBTIfTZNo6ciIRRmw==}
2407
2428
  engines: {node: '>= 10'}
2408
2429
  cpu: [arm64]
2409
2430
  os: [darwin]
@@ -2411,8 +2432,8 @@ packages:
2411
2432
  dev: true
2412
2433
  optional: true
2413
2434
 
2414
- /@tauri-apps/cli-darwin-x64@2.0.0-alpha.9:
2415
- resolution: {integrity: sha512-8RtvzZ4/1gZU8SvMaCygtjc9Q0bMnA0NuQKOMrehRfpvvy2gw/q8MMdw3WEawYGQHqEbr6YtNJmaR5wlsVk+IQ==}
2435
+ /@tauri-apps/cli-darwin-x64@2.0.0-alpha.10:
2436
+ resolution: {integrity: sha512-xqPUC5uI6zo5+1IXSwZLj1uyRWCeZgQgpyaExGDOYBjcC8HUc2NRdFGsGVtGhFWE+HftppD9p8elJLQM90B02w==}
2416
2437
  engines: {node: '>= 10'}
2417
2438
  cpu: [x64]
2418
2439
  os: [darwin]
@@ -2420,8 +2441,8 @@ packages:
2420
2441
  dev: true
2421
2442
  optional: true
2422
2443
 
2423
- /@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-alpha.9:
2424
- resolution: {integrity: sha512-nHAgFEJ2DXXEx96FLPnqZ9vfFGw7Hr2ZaY+xy28llXWljCOguWi8wdHv4OMnq0hbOkegVGplYPc4RSQ5uUia2Q==}
2444
+ /@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-alpha.10:
2445
+ resolution: {integrity: sha512-UpjG9qpF/7fkfrBoM6N+Lo08HRAKR9k7LENAFU+zd81JestxOCs0hxuX2/lGkVydtOuSXfVvMn1W5YpGKkgp3A==}
2425
2446
  engines: {node: '>= 10'}
2426
2447
  cpu: [arm]
2427
2448
  os: [linux]
@@ -2429,8 +2450,8 @@ packages:
2429
2450
  dev: true
2430
2451
  optional: true
2431
2452
 
2432
- /@tauri-apps/cli-linux-arm64-gnu@2.0.0-alpha.9:
2433
- resolution: {integrity: sha512-ETmUoTp+UgHypPpsq3OYwbcmX8MqjCGIUAzDHoVFpYuj2oqHw0ZaCx2lQPTnqW5G5L9X9VXhMAcRB8OBZG5KFw==}
2453
+ /@tauri-apps/cli-linux-arm64-gnu@2.0.0-alpha.10:
2454
+ resolution: {integrity: sha512-Pc8seZINcbHDgOC0ThZ5EPUqOYbL94wEUecKkiaKn7gCl3/ZyIlRte5gizBeLwmnG4fkSLZc0UMvRilu4hGK3g==}
2434
2455
  engines: {node: '>= 10'}
2435
2456
  cpu: [arm64]
2436
2457
  os: [linux]
@@ -2438,8 +2459,8 @@ packages:
2438
2459
  dev: true
2439
2460
  optional: true
2440
2461
 
2441
- /@tauri-apps/cli-linux-arm64-musl@2.0.0-alpha.9:
2442
- resolution: {integrity: sha512-S55E2u4LsQajoxkpYqd2skPEVG5hp+Mkhhnixfi+87q87n9iIvIqcH+4ejDXAPUrWNMsRKIWVURV2ZzivqK5Kw==}
2462
+ /@tauri-apps/cli-linux-arm64-musl@2.0.0-alpha.10:
2463
+ resolution: {integrity: sha512-ZlaBbJq5yXP6VmNOrUGgSDnM1JcDsYf7XfVOm/kLVVrZ3iEzYA18v4SZH2kR18bU7h5+YVCPwwnfD+B8ROGidA==}
2443
2464
  engines: {node: '>= 10'}
2444
2465
  cpu: [arm64]
2445
2466
  os: [linux]
@@ -2447,8 +2468,8 @@ packages:
2447
2468
  dev: true
2448
2469
  optional: true
2449
2470
 
2450
- /@tauri-apps/cli-linux-x64-gnu@2.0.0-alpha.9:
2451
- resolution: {integrity: sha512-/0J5sJDu+cSrj67L4Q4FVANe1ffpsz3LZMQRkbWmT2ggd2Mxg8LZBtg7y5ysMfJg8xjKvymi+1mS2yU1B7/k9Q==}
2471
+ /@tauri-apps/cli-linux-x64-gnu@2.0.0-alpha.10:
2472
+ resolution: {integrity: sha512-7fo0u56URSFZwJpwPMeNiYypbgYcT8i5KPMe1CQgWW19sJLHBMK1Kd0L8SeAZDlCPpY2coNifAdEm3C7Ca7xMQ==}
2452
2473
  engines: {node: '>= 10'}
2453
2474
  cpu: [x64]
2454
2475
  os: [linux]
@@ -2456,8 +2477,8 @@ packages:
2456
2477
  dev: true
2457
2478
  optional: true
2458
2479
 
2459
- /@tauri-apps/cli-linux-x64-musl@2.0.0-alpha.9:
2460
- resolution: {integrity: sha512-zjtf5H3c4amlBjIdDiQ3pmiMV/cmcPxaiH4KgyRD6NZXY9+gDk5dkzj3WAWegiD1ycz3bv5INO/tDxjk5ZSYlw==}
2480
+ /@tauri-apps/cli-linux-x64-musl@2.0.0-alpha.10:
2481
+ resolution: {integrity: sha512-9lY7YJmsm7SndlIxKzj/faX/bYX1q0dib88kpxT2xW4qNt9RihTI6PST1PDce5DmEoheLU9Xp9ere8SfoHgE2A==}
2461
2482
  engines: {node: '>= 10'}
2462
2483
  cpu: [x64]
2463
2484
  os: [linux]
@@ -2465,8 +2486,17 @@ packages:
2465
2486
  dev: true
2466
2487
  optional: true
2467
2488
 
2468
- /@tauri-apps/cli-win32-ia32-msvc@2.0.0-alpha.9:
2469
- resolution: {integrity: sha512-Hn0xDaEEMeXRzWCtew2MIYDky8hF+BOos0PP4qyCX14LfChpgSIT0aMYC8xbSfj9N9pwznhNBxgOtCADaTPWcg==}
2489
+ /@tauri-apps/cli-win32-arm64-msvc@2.0.0-alpha.10:
2490
+ resolution: {integrity: sha512-tJOHIy13vjYRkfw7++aRDQEb5CVzVQKDiJ35Zg4I8YcaPExgj6LKCpDo8N8AD4RXy4SnYKzqYTt8K9xcyIonzA==}
2491
+ engines: {node: '>= 10'}
2492
+ cpu: [arm64]
2493
+ os: [win32]
2494
+ requiresBuild: true
2495
+ dev: true
2496
+ optional: true
2497
+
2498
+ /@tauri-apps/cli-win32-ia32-msvc@2.0.0-alpha.10:
2499
+ resolution: {integrity: sha512-DN4TlOU8e6cRRVXAnldHhfDDr0ER000fojJ/Vb33fgGvaXury3jBtNyKQuoscvg6T8fLUBc72O6+4tDnXlIBwQ==}
2470
2500
  engines: {node: '>= 10'}
2471
2501
  cpu: [ia32]
2472
2502
  os: [win32]
@@ -2474,8 +2504,8 @@ packages:
2474
2504
  dev: true
2475
2505
  optional: true
2476
2506
 
2477
- /@tauri-apps/cli-win32-x64-msvc@2.0.0-alpha.9:
2478
- resolution: {integrity: sha512-541nR7UoasX/fnEWhC14H4Ppj17Aa1fbCyFb9+zmWjupVkEGf/yQFvdWRHdmCkgOdGuxPahR5hbOPh+jvaklFw==}
2507
+ /@tauri-apps/cli-win32-x64-msvc@2.0.0-alpha.10:
2508
+ resolution: {integrity: sha512-H5Y+L7H24n9EVB/Dw5HHGo+wQZHTLVgWrkOwsxqssDhTPiM5CbEuyjEf/B1y8uqp4YoIlw5t7Db+GBg12KejAA==}
2479
2509
  engines: {node: '>= 10'}
2480
2510
  cpu: [x64]
2481
2511
  os: [win32]
@@ -2483,20 +2513,21 @@ packages:
2483
2513
  dev: true
2484
2514
  optional: true
2485
2515
 
2486
- /@tauri-apps/cli@2.0.0-alpha.9:
2487
- resolution: {integrity: sha512-roQNpFC3Ijni/c7TCkCpUg3gWKfxs1ftWSQJyCthqIPRM5J7I2vOfhcUXIZw9glrxDp5npyRW0xYyI7W/424uQ==}
2516
+ /@tauri-apps/cli@2.0.0-alpha.10:
2517
+ resolution: {integrity: sha512-8SkTAxg5J06f7BWgJjNt1NEBPRsffmj4X+PckHX3ZguZd8xqpGtACufUg0zVqaFZPmd+9OCvoEJSP5veO4utDQ==}
2488
2518
  engines: {node: '>= 10'}
2489
2519
  hasBin: true
2490
2520
  optionalDependencies:
2491
- '@tauri-apps/cli-darwin-arm64': 2.0.0-alpha.9
2492
- '@tauri-apps/cli-darwin-x64': 2.0.0-alpha.9
2493
- '@tauri-apps/cli-linux-arm-gnueabihf': 2.0.0-alpha.9
2494
- '@tauri-apps/cli-linux-arm64-gnu': 2.0.0-alpha.9
2495
- '@tauri-apps/cli-linux-arm64-musl': 2.0.0-alpha.9
2496
- '@tauri-apps/cli-linux-x64-gnu': 2.0.0-alpha.9
2497
- '@tauri-apps/cli-linux-x64-musl': 2.0.0-alpha.9
2498
- '@tauri-apps/cli-win32-ia32-msvc': 2.0.0-alpha.9
2499
- '@tauri-apps/cli-win32-x64-msvc': 2.0.0-alpha.9
2521
+ '@tauri-apps/cli-darwin-arm64': 2.0.0-alpha.10
2522
+ '@tauri-apps/cli-darwin-x64': 2.0.0-alpha.10
2523
+ '@tauri-apps/cli-linux-arm-gnueabihf': 2.0.0-alpha.10
2524
+ '@tauri-apps/cli-linux-arm64-gnu': 2.0.0-alpha.10
2525
+ '@tauri-apps/cli-linux-arm64-musl': 2.0.0-alpha.10
2526
+ '@tauri-apps/cli-linux-x64-gnu': 2.0.0-alpha.10
2527
+ '@tauri-apps/cli-linux-x64-musl': 2.0.0-alpha.10
2528
+ '@tauri-apps/cli-win32-arm64-msvc': 2.0.0-alpha.10
2529
+ '@tauri-apps/cli-win32-ia32-msvc': 2.0.0-alpha.10
2530
+ '@tauri-apps/cli-win32-x64-msvc': 2.0.0-alpha.10
2500
2531
  dev: true
2501
2532
 
2502
2533
  /@tauri-apps/plugin-window@2.0.0-alpha.0:
@@ -2565,19 +2596,19 @@ packages:
2565
2596
  resolution: {integrity: sha512-HNB/9GHqu7Fo8AQiugyJbv6ZxYz58wef0esl4Mv828w1ZKpAshw/uFWVDUcIB9KKFeFKoxS3cHY07FFgtTRZ1g==}
2566
2597
  dev: false
2567
2598
 
2568
- /@types/node@20.2.5:
2569
- resolution: {integrity: sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==}
2599
+ /@types/node@20.4.1:
2600
+ resolution: {integrity: sha512-JIzsAvJeA/5iY6Y/OxZbv1lUcc8dNSE77lb2gnBH+/PJ3lFR1Ccvgwl5JWnHAkNHcRsT0TbpVOsiMKZ1F/yyJg==}
2570
2601
 
2571
2602
  /@types/prop-types@15.7.5:
2572
2603
  resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
2573
2604
 
2574
- /@types/react-dom@18.2.4:
2575
- resolution: {integrity: sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==}
2605
+ /@types/react-dom@18.2.6:
2606
+ resolution: {integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==}
2576
2607
  dependencies:
2577
- '@types/react': 18.2.7
2608
+ '@types/react': 18.2.14
2578
2609
 
2579
- /@types/react@18.2.7:
2580
- resolution: {integrity: sha512-ojrXpSH2XFCmHm7Jy3q44nXDyN54+EYKP2lBhJ2bqfyPj6cIUW/FZW/Csdia34NQgq7KYcAlHi5184m4X88+yw==}
2610
+ /@types/react@18.2.14:
2611
+ resolution: {integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==}
2581
2612
  dependencies:
2582
2613
  '@types/prop-types': 15.7.5
2583
2614
  '@types/scheduler': 0.16.3
@@ -2586,13 +2617,13 @@ packages:
2586
2617
  /@types/scheduler@0.16.3:
2587
2618
  resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
2588
2619
 
2589
- /@vitejs/plugin-react-swc@3.3.1(vite@4.3.9):
2590
- resolution: {integrity: sha512-ZoYjGxMniXP7X+5ry/W1tpY7w0OeLUEsBF5RHFPmAhpgwwNWie8OF4056MRXRi9QgvYYoZPDzdOXGK3wlCoTfQ==}
2620
+ /@vitejs/plugin-react-swc@3.3.2(vite@4.4.2):
2621
+ resolution: {integrity: sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA==}
2591
2622
  peerDependencies:
2592
2623
  vite: ^4
2593
2624
  dependencies:
2594
- '@swc/core': 1.3.59
2595
- vite: 4.3.9(@types/node@20.2.5)
2625
+ '@swc/core': 1.3.68
2626
+ vite: 4.4.2(@types/node@20.4.1)
2596
2627
  transitivePeerDependencies:
2597
2628
  - '@swc/helpers'
2598
2629
  dev: false
@@ -2694,7 +2725,7 @@ packages:
2694
2725
  tslib: 2.5.2
2695
2726
  dev: false
2696
2727
 
2697
- /autoprefixer@10.4.14(postcss@8.4.23):
2728
+ /autoprefixer@10.4.14(postcss@8.4.25):
2698
2729
  resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
2699
2730
  engines: {node: ^10 || ^12 || >=14}
2700
2731
  hasBin: true
@@ -2706,7 +2737,7 @@ packages:
2706
2737
  fraction.js: 4.2.0
2707
2738
  normalize-range: 0.1.2
2708
2739
  picocolors: 1.0.0
2709
- postcss: 8.4.23
2740
+ postcss: 8.4.25
2710
2741
  postcss-value-parser: 4.2.0
2711
2742
  dev: true
2712
2743
 
@@ -2748,7 +2779,7 @@ packages:
2748
2779
  /builtins@5.0.1:
2749
2780
  resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
2750
2781
  dependencies:
2751
- semver: 7.5.1
2782
+ semver: 7.5.4
2752
2783
  dev: true
2753
2784
 
2754
2785
  /busboy@1.6.0:
@@ -2836,16 +2867,15 @@ packages:
2836
2867
  engines: {node: '>=10'}
2837
2868
  dev: true
2838
2869
 
2839
- /class-variance-authority@0.6.0(typescript@5.0.4):
2840
- resolution: {integrity: sha512-qdRDgfjx3GRb9fpwpSvn+YaidnT7IUJNe4wt5/SWwM+PmUwJUhQRk/8zAyNro0PmVfmen2635UboTjIBXXxy5A==}
2841
- peerDependencies:
2842
- typescript: '>= 4.5.5 < 6'
2843
- peerDependenciesMeta:
2844
- typescript:
2845
- optional: true
2870
+ /ci-info@3.8.0:
2871
+ resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
2872
+ engines: {node: '>=8'}
2873
+ dev: true
2874
+
2875
+ /class-variance-authority@0.6.1:
2876
+ resolution: {integrity: sha512-eurOEGc7YVx3majOrOb099PNKgO3KnKSApOprXI4BTq6bcfbqbQXPN2u+rPPmIJ2di23bMwhk0SxCCthBmszEQ==}
2846
2877
  dependencies:
2847
2878
  clsx: 1.2.1
2848
- typescript: 5.0.4
2849
2879
  dev: true
2850
2880
 
2851
2881
  /classnames@2.3.2:
@@ -2875,13 +2905,13 @@ packages:
2875
2905
  engines: {node: '>=6'}
2876
2906
  dev: true
2877
2907
 
2878
- /cmdk@0.2.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
2908
+ /cmdk@0.2.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0):
2879
2909
  resolution: {integrity: sha512-JQpKvEOb86SnvMZbYaFKYhvzFntWBeSZdyii0rZPhKJj9uwJBxu4DaVYDrRN7r3mPop56oPhRw+JYWTKs66TYw==}
2880
2910
  peerDependencies:
2881
2911
  react: ^18.0.0
2882
2912
  react-dom: ^18.0.0
2883
2913
  dependencies:
2884
- '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
2914
+ '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)
2885
2915
  command-score: 0.1.2
2886
2916
  react: 18.2.0
2887
2917
  react-dom: 18.2.0(react@18.2.0)
@@ -3111,34 +3141,34 @@ packages:
3111
3141
  resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
3112
3142
  dev: true
3113
3143
 
3114
- /esbuild@0.17.19:
3115
- resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
3144
+ /esbuild@0.18.11:
3145
+ resolution: {integrity: sha512-i8u6mQF0JKJUlGR3OdFLKldJQMMs8OqM9Cc3UCi9XXziJ9WERM5bfkHaEAy0YAvPRMgqSW55W7xYn84XtEFTtA==}
3116
3146
  engines: {node: '>=12'}
3117
3147
  hasBin: true
3118
3148
  requiresBuild: true
3119
3149
  optionalDependencies:
3120
- '@esbuild/android-arm': 0.17.19
3121
- '@esbuild/android-arm64': 0.17.19
3122
- '@esbuild/android-x64': 0.17.19
3123
- '@esbuild/darwin-arm64': 0.17.19
3124
- '@esbuild/darwin-x64': 0.17.19
3125
- '@esbuild/freebsd-arm64': 0.17.19
3126
- '@esbuild/freebsd-x64': 0.17.19
3127
- '@esbuild/linux-arm': 0.17.19
3128
- '@esbuild/linux-arm64': 0.17.19
3129
- '@esbuild/linux-ia32': 0.17.19
3130
- '@esbuild/linux-loong64': 0.17.19
3131
- '@esbuild/linux-mips64el': 0.17.19
3132
- '@esbuild/linux-ppc64': 0.17.19
3133
- '@esbuild/linux-riscv64': 0.17.19
3134
- '@esbuild/linux-s390x': 0.17.19
3135
- '@esbuild/linux-x64': 0.17.19
3136
- '@esbuild/netbsd-x64': 0.17.19
3137
- '@esbuild/openbsd-x64': 0.17.19
3138
- '@esbuild/sunos-x64': 0.17.19
3139
- '@esbuild/win32-arm64': 0.17.19
3140
- '@esbuild/win32-ia32': 0.17.19
3141
- '@esbuild/win32-x64': 0.17.19
3150
+ '@esbuild/android-arm': 0.18.11
3151
+ '@esbuild/android-arm64': 0.18.11
3152
+ '@esbuild/android-x64': 0.18.11
3153
+ '@esbuild/darwin-arm64': 0.18.11
3154
+ '@esbuild/darwin-x64': 0.18.11
3155
+ '@esbuild/freebsd-arm64': 0.18.11
3156
+ '@esbuild/freebsd-x64': 0.18.11
3157
+ '@esbuild/linux-arm': 0.18.11
3158
+ '@esbuild/linux-arm64': 0.18.11
3159
+ '@esbuild/linux-ia32': 0.18.11
3160
+ '@esbuild/linux-loong64': 0.18.11
3161
+ '@esbuild/linux-mips64el': 0.18.11
3162
+ '@esbuild/linux-ppc64': 0.18.11
3163
+ '@esbuild/linux-riscv64': 0.18.11
3164
+ '@esbuild/linux-s390x': 0.18.11
3165
+ '@esbuild/linux-x64': 0.18.11
3166
+ '@esbuild/netbsd-x64': 0.18.11
3167
+ '@esbuild/openbsd-x64': 0.18.11
3168
+ '@esbuild/sunos-x64': 0.18.11
3169
+ '@esbuild/win32-arm64': 0.18.11
3170
+ '@esbuild/win32-ia32': 0.18.11
3171
+ '@esbuild/win32-x64': 0.18.11
3142
3172
 
3143
3173
  /escalade@3.1.1:
3144
3174
  resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
@@ -3152,6 +3182,21 @@ packages:
3152
3182
  resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
3153
3183
  dev: false
3154
3184
 
3185
+ /execa@7.1.1:
3186
+ resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==}
3187
+ engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
3188
+ dependencies:
3189
+ cross-spawn: 7.0.3
3190
+ get-stream: 6.0.1
3191
+ human-signals: 4.3.1
3192
+ is-stream: 3.0.0
3193
+ merge-stream: 2.0.0
3194
+ npm-run-path: 5.1.0
3195
+ onetime: 6.0.0
3196
+ signal-exit: 3.0.7
3197
+ strip-final-newline: 3.0.0
3198
+ dev: true
3199
+
3155
3200
  /fast-equals@5.0.1:
3156
3201
  resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==}
3157
3202
  engines: {node: '>=6.0.0'}
@@ -3245,6 +3290,11 @@ packages:
3245
3290
  engines: {node: '>=6'}
3246
3291
  dev: false
3247
3292
 
3293
+ /get-stream@6.0.1:
3294
+ resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
3295
+ engines: {node: '>=10'}
3296
+ dev: true
3297
+
3248
3298
  /glob-parent@5.1.2:
3249
3299
  resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
3250
3300
  engines: {node: '>= 6'}
@@ -3344,6 +3394,11 @@ packages:
3344
3394
  - supports-color
3345
3395
  dev: true
3346
3396
 
3397
+ /human-signals@4.3.1:
3398
+ resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
3399
+ engines: {node: '>=14.18.0'}
3400
+ dev: true
3401
+
3347
3402
  /humanize-ms@1.2.1:
3348
3403
  resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
3349
3404
  dependencies:
@@ -3442,6 +3497,11 @@ packages:
3442
3497
  resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
3443
3498
  engines: {node: '>=0.12.0'}
3444
3499
 
3500
+ /is-stream@3.0.0:
3501
+ resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
3502
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
3503
+ dev: true
3504
+
3445
3505
  /isexe@2.0.0:
3446
3506
  resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
3447
3507
  dev: true
@@ -3527,8 +3587,8 @@ packages:
3527
3587
  engines: {node: 14 || >=16.14}
3528
3588
  dev: true
3529
3589
 
3530
- /lucide-react@0.221.0(react@18.2.0):
3531
- resolution: {integrity: sha512-g99pn2/lBaCEAA0cbi4eaCO+3rY4mSfjCaDlo8Z30F0wk8MXoBXhCR1TaUS9cmNdOP9VGxgUpoB4qMg7/vyC8A==}
3590
+ /lucide-react@0.259.0(react@18.2.0):
3591
+ resolution: {integrity: sha512-dFBLc6jRDfcpD9NQ7NyFVa+YR3RHX6+bs+f/UiotvNPho+kd4WyeXWMCCchUf7i/pq3BAaHkbmtkbx/GxxHVUw==}
3532
3592
  peerDependencies:
3533
3593
  react: ^16.5.1 || ^17.0.0 || ^18.0.0
3534
3594
  dependencies:
@@ -3583,6 +3643,10 @@ packages:
3583
3643
  - supports-color
3584
3644
  dev: true
3585
3645
 
3646
+ /merge-stream@2.0.0:
3647
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
3648
+ dev: true
3649
+
3586
3650
  /merge2@1.4.1:
3587
3651
  resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
3588
3652
  engines: {node: '>= 8'}
@@ -3594,6 +3658,11 @@ packages:
3594
3658
  braces: 3.0.2
3595
3659
  picomatch: 2.3.1
3596
3660
 
3661
+ /mimic-fn@4.0.0:
3662
+ resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
3663
+ engines: {node: '>=12'}
3664
+ dev: true
3665
+
3597
3666
  /minimatch@3.1.2:
3598
3667
  resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
3599
3668
  dependencies:
@@ -3790,7 +3859,7 @@ packages:
3790
3859
  nopt: 6.0.0
3791
3860
  npmlog: 6.0.2
3792
3861
  rimraf: 3.0.2
3793
- semver: 7.5.1
3862
+ semver: 7.5.4
3794
3863
  tar: 6.1.15
3795
3864
  which: 2.0.2
3796
3865
  transitivePeerDependencies:
@@ -3823,7 +3892,7 @@ packages:
3823
3892
  dependencies:
3824
3893
  hosted-git-info: 6.1.1
3825
3894
  is-core-module: 2.12.1
3826
- semver: 7.5.1
3895
+ semver: 7.5.4
3827
3896
  validate-npm-package-license: 3.0.4
3828
3897
  dev: true
3829
3898
 
@@ -3847,7 +3916,7 @@ packages:
3847
3916
  resolution: {integrity: sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==}
3848
3917
  engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
3849
3918
  dependencies:
3850
- semver: 7.5.1
3919
+ semver: 7.5.4
3851
3920
  dev: true
3852
3921
 
3853
3922
  /npm-normalize-package-bin@3.0.1:
@@ -3861,7 +3930,7 @@ packages:
3861
3930
  dependencies:
3862
3931
  hosted-git-info: 6.1.1
3863
3932
  proc-log: 3.0.0
3864
- semver: 7.5.1
3933
+ semver: 7.5.4
3865
3934
  validate-npm-package-name: 5.0.0
3866
3935
  dev: true
3867
3936
 
@@ -3879,7 +3948,7 @@ packages:
3879
3948
  npm-install-checks: 6.1.1
3880
3949
  npm-normalize-package-bin: 3.0.1
3881
3950
  npm-package-arg: 10.1.0
3882
- semver: 7.5.1
3951
+ semver: 7.5.4
3883
3952
  dev: true
3884
3953
 
3885
3954
  /npm-registry-fetch@14.0.5:
@@ -3897,6 +3966,13 @@ packages:
3897
3966
  - supports-color
3898
3967
  dev: true
3899
3968
 
3969
+ /npm-run-path@5.1.0:
3970
+ resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
3971
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
3972
+ dependencies:
3973
+ path-key: 4.0.0
3974
+ dev: true
3975
+
3900
3976
  /npmlog@6.0.2:
3901
3977
  resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
3902
3978
  engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
@@ -3920,6 +3996,13 @@ packages:
3920
3996
  dependencies:
3921
3997
  wrappy: 1.0.2
3922
3998
 
3999
+ /onetime@6.0.0:
4000
+ resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
4001
+ engines: {node: '>=12'}
4002
+ dependencies:
4003
+ mimic-fn: 4.0.0
4004
+ dev: true
4005
+
3923
4006
  /p-map@4.0.0:
3924
4007
  resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
3925
4008
  engines: {node: '>=10'}
@@ -3964,6 +4047,11 @@ packages:
3964
4047
  engines: {node: '>=8'}
3965
4048
  dev: true
3966
4049
 
4050
+ /path-key@4.0.0:
4051
+ resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
4052
+ engines: {node: '>=12'}
4053
+ dev: true
4054
+
3967
4055
  /path-parse@1.0.7:
3968
4056
  resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
3969
4057
 
@@ -3990,27 +4078,27 @@ packages:
3990
4078
  resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
3991
4079
  engines: {node: '>= 6'}
3992
4080
 
3993
- /postcss-import@15.1.0(postcss@8.4.23):
4081
+ /postcss-import@15.1.0(postcss@8.4.25):
3994
4082
  resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
3995
4083
  engines: {node: '>=14.0.0'}
3996
4084
  peerDependencies:
3997
4085
  postcss: ^8.0.0
3998
4086
  dependencies:
3999
- postcss: 8.4.23
4087
+ postcss: 8.4.25
4000
4088
  postcss-value-parser: 4.2.0
4001
4089
  read-cache: 1.0.0
4002
4090
  resolve: 1.22.2
4003
4091
 
4004
- /postcss-js@4.0.1(postcss@8.4.23):
4092
+ /postcss-js@4.0.1(postcss@8.4.25):
4005
4093
  resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
4006
4094
  engines: {node: ^12 || ^14 || >= 16}
4007
4095
  peerDependencies:
4008
4096
  postcss: ^8.4.21
4009
4097
  dependencies:
4010
4098
  camelcase-css: 2.0.1
4011
- postcss: 8.4.23
4099
+ postcss: 8.4.25
4012
4100
 
4013
- /postcss-load-config@4.0.1(postcss@8.4.23):
4101
+ /postcss-load-config@4.0.1(postcss@8.4.25):
4014
4102
  resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
4015
4103
  engines: {node: '>= 14'}
4016
4104
  peerDependencies:
@@ -4023,16 +4111,16 @@ packages:
4023
4111
  optional: true
4024
4112
  dependencies:
4025
4113
  lilconfig: 2.1.0
4026
- postcss: 8.4.23
4114
+ postcss: 8.4.25
4027
4115
  yaml: 2.2.2
4028
4116
 
4029
- /postcss-nested@6.0.1(postcss@8.4.23):
4117
+ /postcss-nested@6.0.1(postcss@8.4.25):
4030
4118
  resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
4031
4119
  engines: {node: '>=12.0'}
4032
4120
  peerDependencies:
4033
4121
  postcss: ^8.2.14
4034
4122
  dependencies:
4035
- postcss: 8.4.23
4123
+ postcss: 8.4.25
4036
4124
  postcss-selector-parser: 6.0.13
4037
4125
 
4038
4126
  /postcss-selector-parser@6.0.13:
@@ -4058,15 +4146,15 @@ packages:
4058
4146
  source-map-js: 1.0.2
4059
4147
  dev: false
4060
4148
 
4061
- /postcss@8.4.23:
4062
- resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==}
4149
+ /postcss@8.4.25:
4150
+ resolution: {integrity: sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw==}
4063
4151
  engines: {node: ^10 || ^12 || >=14}
4064
4152
  dependencies:
4065
4153
  nanoid: 3.3.6
4066
4154
  picocolors: 1.0.0
4067
4155
  source-map-js: 1.0.2
4068
4156
 
4069
- /prettier-plugin-tailwindcss@0.3.0(@ianvs/prettier-plugin-sort-imports@4.0.0)(prettier@2.8.8):
4157
+ /prettier-plugin-tailwindcss@0.3.0(@ianvs/prettier-plugin-sort-imports@4.0.2)(prettier@3.0.0):
4070
4158
  resolution: {integrity: sha512-009/Xqdy7UmkcTBpwlq7jsViDqXAYSOMLDrHAdTMlVZOrKfM2o9Ci7EMWTMZ7SkKBFTG04UM9F9iM2+4i6boDA==}
4071
4159
  engines: {node: '>=12.17.0'}
4072
4160
  peerDependencies:
@@ -4118,13 +4206,13 @@ packages:
4118
4206
  prettier-plugin-twig-melody:
4119
4207
  optional: true
4120
4208
  dependencies:
4121
- '@ianvs/prettier-plugin-sort-imports': 4.0.0(prettier@2.8.8)
4122
- prettier: 2.8.8
4209
+ '@ianvs/prettier-plugin-sort-imports': 4.0.2(prettier@3.0.0)
4210
+ prettier: 3.0.0
4123
4211
  dev: true
4124
4212
 
4125
- /prettier@2.8.8:
4126
- resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
4127
- engines: {node: '>=10.13.0'}
4213
+ /prettier@3.0.0:
4214
+ resolution: {integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==}
4215
+ engines: {node: '>=14'}
4128
4216
  hasBin: true
4129
4217
  dev: true
4130
4218
 
@@ -4169,8 +4257,8 @@ packages:
4169
4257
  /queue-microtask@1.2.3:
4170
4258
  resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
4171
4259
 
4172
- /react-day-picker@8.7.1(date-fns@2.30.0)(react@18.2.0):
4173
- resolution: {integrity: sha512-Gv426AW8b151CZfh3aP5RUGztLwHB/EyJgWZ5iMgtzbFBkjHfG6Y66CIQFMWGLnYjsQ9DYSJRmJ5S0Pg5HWKjA==}
4260
+ /react-day-picker@8.8.0(date-fns@2.30.0)(react@18.2.0):
4261
+ resolution: {integrity: sha512-QIC3uOuyGGbtypbd5QEggsCSqVaPNu8kzUWquZ7JjW9fuWB9yv7WyixKmnaFelTLXFdq7h7zU6n/aBleBqe/dA==}
4174
4262
  peerDependencies:
4175
4263
  date-fns: ^2.28.0
4176
4264
  react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4197,7 +4285,7 @@ packages:
4197
4285
  resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
4198
4286
  dev: false
4199
4287
 
4200
- /react-remove-scroll-bar@2.3.4(@types/react@18.2.7)(react@18.2.0):
4288
+ /react-remove-scroll-bar@2.3.4(@types/react@18.2.14)(react@18.2.0):
4201
4289
  resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
4202
4290
  engines: {node: '>=10'}
4203
4291
  peerDependencies:
@@ -4207,13 +4295,13 @@ packages:
4207
4295
  '@types/react':
4208
4296
  optional: true
4209
4297
  dependencies:
4210
- '@types/react': 18.2.7
4298
+ '@types/react': 18.2.14
4211
4299
  react: 18.2.0
4212
- react-style-singleton: 2.2.1(@types/react@18.2.7)(react@18.2.0)
4300
+ react-style-singleton: 2.2.1(@types/react@18.2.14)(react@18.2.0)
4213
4301
  tslib: 2.5.2
4214
4302
  dev: false
4215
4303
 
4216
- /react-remove-scroll@2.5.4(@types/react@18.2.7)(react@18.2.0):
4304
+ /react-remove-scroll@2.5.4(@types/react@18.2.14)(react@18.2.0):
4217
4305
  resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==}
4218
4306
  engines: {node: '>=10'}
4219
4307
  peerDependencies:
@@ -4223,16 +4311,16 @@ packages:
4223
4311
  '@types/react':
4224
4312
  optional: true
4225
4313
  dependencies:
4226
- '@types/react': 18.2.7
4314
+ '@types/react': 18.2.14
4227
4315
  react: 18.2.0
4228
- react-remove-scroll-bar: 2.3.4(@types/react@18.2.7)(react@18.2.0)
4229
- react-style-singleton: 2.2.1(@types/react@18.2.7)(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)
4230
4318
  tslib: 2.5.2
4231
- use-callback-ref: 1.3.0(@types/react@18.2.7)(react@18.2.0)
4232
- use-sidecar: 1.1.2(@types/react@18.2.7)(react@18.2.0)
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)
4233
4321
  dev: false
4234
4322
 
4235
- /react-remove-scroll@2.5.5(@types/react@18.2.7)(react@18.2.0):
4323
+ /react-remove-scroll@2.5.5(@types/react@18.2.14)(react@18.2.0):
4236
4324
  resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
4237
4325
  engines: {node: '>=10'}
4238
4326
  peerDependencies:
@@ -4242,13 +4330,13 @@ packages:
4242
4330
  '@types/react':
4243
4331
  optional: true
4244
4332
  dependencies:
4245
- '@types/react': 18.2.7
4333
+ '@types/react': 18.2.14
4246
4334
  react: 18.2.0
4247
- react-remove-scroll-bar: 2.3.4(@types/react@18.2.7)(react@18.2.0)
4248
- react-style-singleton: 2.2.1(@types/react@18.2.7)(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)
4249
4337
  tslib: 2.5.2
4250
- use-callback-ref: 1.3.0(@types/react@18.2.7)(react@18.2.0)
4251
- use-sidecar: 1.1.2(@types/react@18.2.7)(react@18.2.0)
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)
4252
4340
  dev: false
4253
4341
 
4254
4342
  /react-resize-detector@8.1.0(react-dom@18.2.0)(react@18.2.0):
@@ -4276,7 +4364,7 @@ packages:
4276
4364
  react-transition-group: 2.9.0(react-dom@18.2.0)(react@18.2.0)
4277
4365
  dev: false
4278
4366
 
4279
- /react-style-singleton@2.2.1(@types/react@18.2.7)(react@18.2.0):
4367
+ /react-style-singleton@2.2.1(@types/react@18.2.14)(react@18.2.0):
4280
4368
  resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
4281
4369
  engines: {node: '>=10'}
4282
4370
  peerDependencies:
@@ -4286,7 +4374,7 @@ packages:
4286
4374
  '@types/react':
4287
4375
  optional: true
4288
4376
  dependencies:
4289
- '@types/react': 18.2.7
4377
+ '@types/react': 18.2.14
4290
4378
  get-nonce: 1.0.1
4291
4379
  invariant: 2.2.4
4292
4380
  react: 18.2.0
@@ -4358,8 +4446,8 @@ packages:
4358
4446
  decimal.js-light: 2.5.1
4359
4447
  dev: false
4360
4448
 
4361
- /recharts@2.6.2(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
4362
- resolution: {integrity: sha512-dVhNfgI21LlF+4AesO3mj+i+9YdAAjoGaDWIctUgH/G2iy14YVtb/DSUeic77xr19rbKCiq+pQGfeg2kJQDHig==}
4449
+ /recharts@2.7.2(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
4450
+ resolution: {integrity: sha512-HMKRBkGoOXHW+7JcRa6+MukPSifNtJlqbc+JreGVNA407VLE/vOP+8n3YYjprDVVIF9E2ZgwWnL3D7K/LUFzBg==}
4363
4451
  engines: {node: '>=12'}
4364
4452
  peerDependencies:
4365
4453
  prop-types: ^15.6.0
@@ -4420,8 +4508,8 @@ packages:
4420
4508
  glob: 7.1.6
4421
4509
  dev: true
4422
4510
 
4423
- /rollup@3.23.0:
4424
- resolution: {integrity: sha512-h31UlwEi7FHihLe1zbk+3Q7z1k/84rb9BSwmBSr/XjOCEaBJ2YyedQDuM0t/kfOS0IxM+vk1/zI9XxYj9V+NJQ==}
4511
+ /rollup@3.26.2:
4512
+ resolution: {integrity: sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==}
4425
4513
  engines: {node: '>=14.18.0', npm: '>=8.0.0'}
4426
4514
  hasBin: true
4427
4515
  optionalDependencies:
@@ -4459,6 +4547,14 @@ packages:
4459
4547
  lru-cache: 6.0.0
4460
4548
  dev: true
4461
4549
 
4550
+ /semver@7.5.4:
4551
+ resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
4552
+ engines: {node: '>=10'}
4553
+ hasBin: true
4554
+ dependencies:
4555
+ lru-cache: 6.0.0
4556
+ dev: true
4557
+
4462
4558
  /set-blocking@2.0.0:
4463
4559
  resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
4464
4560
  dev: true
@@ -4607,6 +4703,11 @@ packages:
4607
4703
  ansi-regex: 6.0.1
4608
4704
  dev: true
4609
4705
 
4706
+ /strip-final-newline@3.0.0:
4707
+ resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
4708
+ engines: {node: '>=12'}
4709
+ dev: true
4710
+
4610
4711
  /styled-jsx@5.1.1(@babel/core@7.21.8)(react@18.2.0):
4611
4712
  resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
4612
4713
  engines: {node: '>= 12.0.0'}
@@ -4648,8 +4749,8 @@ packages:
4648
4749
  resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
4649
4750
  engines: {node: '>= 0.4'}
4650
4751
 
4651
- /tailwind-merge@1.12.0:
4652
- resolution: {integrity: sha512-Y17eDp7FtN1+JJ4OY0Bqv9OA41O+MS8c1Iyr3T6JFLnOgLg3EvcyMKZAnQ8AGyvB5Nxm3t9Xb5Mhe139m8QT/g==}
4752
+ /tailwind-merge@1.13.2:
4753
+ resolution: {integrity: sha512-R2/nULkdg1VR/EL4RXg4dEohdoxNUJGLMnWIQnPKL+O9Twu7Cn3Rxi4dlXkDzZrEGtR+G+psSXFouWlpTyLhCQ==}
4653
4754
  dev: true
4654
4755
 
4655
4756
  /tailwind-scrollbar@3.0.4(tailwindcss@3.3.2):
@@ -4661,8 +4762,8 @@ packages:
4661
4762
  tailwindcss: 3.3.2
4662
4763
  dev: false
4663
4764
 
4664
- /tailwindcss-animate@1.0.5(tailwindcss@3.3.2):
4665
- resolution: {integrity: sha512-UU3qrOJ4lFQABY+MVADmBm+0KW3xZyhMdRvejwtXqYOL7YjHYxmuREFAZdmVG5LPe5E9CAst846SLC4j5I3dcw==}
4765
+ /tailwindcss-animate@1.0.6(tailwindcss@3.3.2):
4766
+ resolution: {integrity: sha512-4WigSGMvbl3gCCact62ZvOngA+PRqhAn7si3TQ3/ZuPuQZcIEtVap+ENSXbzWhpojKB8CpvnIsrwBu8/RnHtuw==}
4666
4767
  peerDependencies:
4667
4768
  tailwindcss: '>=3.0.0 || insiders'
4668
4769
  dependencies:
@@ -4688,11 +4789,11 @@ packages:
4688
4789
  normalize-path: 3.0.0
4689
4790
  object-hash: 3.0.0
4690
4791
  picocolors: 1.0.0
4691
- postcss: 8.4.23
4692
- postcss-import: 15.1.0(postcss@8.4.23)
4693
- postcss-js: 4.0.1(postcss@8.4.23)
4694
- postcss-load-config: 4.0.1(postcss@8.4.23)
4695
- postcss-nested: 6.0.1(postcss@8.4.23)
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)
4696
4797
  postcss-selector-parser: 6.0.13
4697
4798
  postcss-value-parser: 4.2.0
4698
4799
  resolve: 1.22.2
@@ -4712,17 +4813,18 @@ packages:
4712
4813
  yallist: 4.0.0
4713
4814
  dev: true
4714
4815
 
4715
- /taze@0.10.1:
4716
- resolution: {integrity: sha512-1dqLA+3kUufmJZEfAeRGHYwiKR8BwG7VMnCPtfY2g9NUlPIlXVBDm/rtdK2pwHauAQDDXkAKwmno30CHHX4F4Q==}
4816
+ /taze@0.11.2:
4817
+ resolution: {integrity: sha512-HM4chXXDaHCAl1AFbSlyHUFjoaEKTewVE0j6ni5S5mRdPdJdva4AfcmXgBZYnRBiJagl6QuVtsqLjqHUiiO20A==}
4717
4818
  hasBin: true
4718
4819
  dependencies:
4719
- '@antfu/ni': 0.21.3
4720
- '@npmcli/config': 6.1.7
4820
+ '@antfu/ni': 0.21.4
4821
+ '@npmcli/config': 6.2.1
4721
4822
  detect-indent: 7.0.1
4823
+ execa: 7.1.1
4722
4824
  pacote: 15.2.0
4723
4825
  prompts: 2.4.2
4724
- semver: 7.5.1
4725
- unconfig: 0.3.7
4826
+ semver: 7.5.4
4827
+ unconfig: 0.3.9
4726
4828
  yargs: 17.7.2
4727
4829
  transitivePeerDependencies:
4728
4830
  - bluebird
@@ -4768,16 +4870,16 @@ packages:
4768
4870
  - supports-color
4769
4871
  dev: true
4770
4872
 
4771
- /typescript@5.0.4:
4772
- resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==}
4773
- engines: {node: '>=12.20'}
4873
+ /typescript@5.1.6:
4874
+ resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
4875
+ engines: {node: '>=14.17'}
4774
4876
  hasBin: true
4775
4877
  dev: true
4776
4878
 
4777
- /unconfig@0.3.7:
4778
- resolution: {integrity: sha512-1589b7oGa8ILBYpta7TndM5mLHLzHUqBfhszeZxuUBrjO/RoQ52VGVWsS3w0C0GLNxO9RPmqkf6BmIvBApaRdA==}
4879
+ /unconfig@0.3.9:
4880
+ resolution: {integrity: sha512-8yhetFd48M641mxrkWA+C/lZU4N0rCOdlo3dFsyFPnBHBjMJfjT/3eAZBRT2RxCRqeBMAKBVgikejdS6yeBjMw==}
4779
4881
  dependencies:
4780
- '@antfu/utils': 0.5.2
4882
+ '@antfu/utils': 0.7.5
4781
4883
  defu: 6.1.2
4782
4884
  jiti: 1.18.2
4783
4885
  dev: true
@@ -4820,7 +4922,7 @@ packages:
4820
4922
  escalade: 3.1.1
4821
4923
  picocolors: 1.0.0
4822
4924
 
4823
- /use-callback-ref@1.3.0(@types/react@18.2.7)(react@18.2.0):
4925
+ /use-callback-ref@1.3.0(@types/react@18.2.14)(react@18.2.0):
4824
4926
  resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
4825
4927
  engines: {node: '>=10'}
4826
4928
  peerDependencies:
@@ -4830,12 +4932,12 @@ packages:
4830
4932
  '@types/react':
4831
4933
  optional: true
4832
4934
  dependencies:
4833
- '@types/react': 18.2.7
4935
+ '@types/react': 18.2.14
4834
4936
  react: 18.2.0
4835
4937
  tslib: 2.5.2
4836
4938
  dev: false
4837
4939
 
4838
- /use-sidecar@1.1.2(@types/react@18.2.7)(react@18.2.0):
4940
+ /use-sidecar@1.1.2(@types/react@18.2.14)(react@18.2.0):
4839
4941
  resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
4840
4942
  engines: {node: '>=10'}
4841
4943
  peerDependencies:
@@ -4845,7 +4947,7 @@ packages:
4845
4947
  '@types/react':
4846
4948
  optional: true
4847
4949
  dependencies:
4848
- '@types/react': 18.2.7
4950
+ '@types/react': 18.2.14
4849
4951
  detect-node-es: 1.1.0
4850
4952
  react: 18.2.0
4851
4953
  tslib: 2.5.2
@@ -4887,13 +4989,14 @@ packages:
4887
4989
  d3-timer: 3.0.1
4888
4990
  dev: false
4889
4991
 
4890
- /vite@4.3.9(@types/node@20.2.5):
4891
- resolution: {integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==}
4992
+ /vite@4.4.2(@types/node@20.4.1):
4993
+ resolution: {integrity: sha512-zUcsJN+UvdSyHhYa277UHhiJ3iq4hUBwHavOpsNUGsTgjBeoBlK8eDt+iT09pBq0h9/knhG/SPrZiM7cGmg7NA==}
4892
4994
  engines: {node: ^14.18.0 || >=16.0.0}
4893
4995
  hasBin: true
4894
4996
  peerDependencies:
4895
4997
  '@types/node': '>= 14'
4896
4998
  less: '*'
4999
+ lightningcss: ^1.21.0
4897
5000
  sass: '*'
4898
5001
  stylus: '*'
4899
5002
  sugarss: '*'
@@ -4903,6 +5006,8 @@ packages:
4903
5006
  optional: true
4904
5007
  less:
4905
5008
  optional: true
5009
+ lightningcss:
5010
+ optional: true
4906
5011
  sass:
4907
5012
  optional: true
4908
5013
  stylus:
@@ -4912,10 +5017,10 @@ packages:
4912
5017
  terser:
4913
5018
  optional: true
4914
5019
  dependencies:
4915
- '@types/node': 20.2.5
4916
- esbuild: 0.17.19
4917
- postcss: 8.4.23
4918
- rollup: 3.23.0
5020
+ '@types/node': 20.4.1
5021
+ esbuild: 0.18.11
5022
+ postcss: 8.4.25
5023
+ rollup: 3.26.2
4919
5024
  optionalDependencies:
4920
5025
  fsevents: 2.3.2
4921
5026