@dataif/cli 0.1.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 (183) hide show
  1. package/README.md +16 -0
  2. package/bin/dataif.js +623 -0
  3. package/package.json +26 -0
  4. package/scripts/build-template.mjs +72 -0
  5. package/templates/dataif/README.md +157 -0
  6. package/templates/dataif/infra/.env.example +119 -0
  7. package/templates/dataif/infra/.env.stg.example +119 -0
  8. package/templates/dataif/infra/airflow/Dockerfile +11 -0
  9. package/templates/dataif/infra/airflow/Dockerfile.release +17 -0
  10. package/templates/dataif/infra/airflow/requirements.txt +3 -0
  11. package/templates/dataif/infra/docker-compose.yml +306 -0
  12. package/templates/dataif/infra/init-db/01-init-dataif.sh +129 -0
  13. package/templates/dataif/infra/init-db/pnp-curated-views.sqlinc +444 -0
  14. package/templates/dataif/infra/init-db/pnp-raw-staging-curated.sqlinc +701 -0
  15. package/templates/dataif/infra/keycloak/Dockerfile +4 -0
  16. package/templates/dataif/infra/keycloak/realm-dataif.json +73 -0
  17. package/templates/dataif/infra/ollama/Dockerfile +9 -0
  18. package/templates/dataif/infra/ollama/bootstrap-model.sh +100 -0
  19. package/templates/dataif/infra/ollama/sabia-7b.Modelfile +14 -0
  20. package/templates/dataif/infra/postgres/Dockerfile +4 -0
  21. package/templates/dataif/pipelines/airflow/dags/generated/.gitkeep +1 -0
  22. package/templates/dataif/pipelines/airflow/dags/generated/2020_financeiro_fcc6f1f3_sync.py +9 -0
  23. package/templates/dataif/pipelines/dataif_pipelines/__init__.py +1 -0
  24. package/templates/dataif/pipelines/dataif_pipelines/airflow/__init__.py +1 -0
  25. package/templates/dataif/pipelines/dataif_pipelines/airflow/pnp_pipeline_factory.py +167 -0
  26. package/templates/dataif/pipelines/dataif_pipelines/connectors/__init__.py +1 -0
  27. package/templates/dataif/pipelines/dataif_pipelines/connectors/base/__init__.py +1 -0
  28. package/templates/dataif/pipelines/dataif_pipelines/connectors/base/connector.py +28 -0
  29. package/templates/dataif/pipelines/dataif_pipelines/connectors/base/types.py +14 -0
  30. package/templates/dataif/pipelines/dataif_pipelines/connectors/nilo_pecanha/__init__.py +1 -0
  31. package/templates/dataif/pipelines/dataif_pipelines/connectors/nilo_pecanha/config.py +19 -0
  32. package/templates/dataif/pipelines/dataif_pipelines/connectors/nilo_pecanha/connector.py +558 -0
  33. package/templates/dataif/pipelines/dataif_pipelines/connectors/nilo_pecanha/powerbi_microdados.py +728 -0
  34. package/templates/dataif/pipelines/dataif_pipelines/connectors/nilo_pecanha/transform.py +296 -0
  35. package/templates/dataif/pipelines/dataif_pipelines/jobs/__init__.py +1 -0
  36. package/templates/dataif/pipelines/dataif_pipelines/jobs/nilo_pipeline.py +112 -0
  37. package/templates/dataif/pipelines/dataif_pipelines/orchestration/__init__.py +21 -0
  38. package/templates/dataif/pipelines/dataif_pipelines/orchestration/pnp_workflow.py +783 -0
  39. package/templates/dataif/pipelines/dataif_pipelines/repositories/__init__.py +1 -0
  40. package/templates/dataif/pipelines/dataif_pipelines/repositories/pnp_raw_repository.py +860 -0
  41. package/templates/dataif/pipelines/dataif_pipelines/services/__init__.py +19 -0
  42. package/templates/dataif/pipelines/dataif_pipelines/services/pnp_curated_service.py +66 -0
  43. package/templates/dataif/pipelines/dataif_pipelines/services/pnp_download_service.py +534 -0
  44. package/templates/dataif/pipelines/dataif_pipelines/services/pnp_quality_service.py +9 -0
  45. package/templates/dataif/pipelines/dataif_pipelines/services/pnp_raw_ingestion_service.py +124 -0
  46. package/templates/dataif/pipelines/dataif_pipelines/services/pnp_staging_service.py +271 -0
  47. package/templates/dataif/pipelines/dataif_pipelines/services/powerbi_catalog_service.py +159 -0
  48. package/templates/dataif/pipelines/sql/staging/020_pnp_matriculas.sql +112 -0
  49. package/templates/dataif/pipelines/sql/staging/030_pnp_eficiencia_academica.sql +83 -0
  50. package/templates/dataif/pipelines/sql/staging/040_pnp_servidores.sql +90 -0
  51. package/templates/dataif/pipelines/sql/staging/050_pnp_financeiro.sql +72 -0
  52. package/templates/dataif/pipelines/sql/views_curated/004_mv_pnp_dashboard_fast.sql +204 -0
  53. package/templates/dataif/pipelines/sql/views_curated/010_vw_pnp_admin_ingestao.sql +51 -0
  54. package/templates/dataif/pipelines/sql/views_curated/020_vw_pnp_qualidade_dados.sql +114 -0
  55. package/templates/dataif/pipelines/sql/views_curated/030_vw_pnp_matriculas.sql +67 -0
  56. package/templates/dataif/pipelines/sql/views_curated/040_vw_pnp_eficiencia.sql +33 -0
  57. package/templates/dataif/pipelines/sql/views_curated/050_vw_pnp_servidores.sql +30 -0
  58. package/templates/dataif/pipelines/sql/views_curated/060_vw_pnp_financeiro.sql +22 -0
  59. package/templates/dataif/pipelines/sql/views_curated/070_vw_pnp_vanna.sql +115 -0
  60. package/templates/dataif/scripts/configure-env.sh +149 -0
  61. package/templates/dataif/scripts/create_metabase_pnp_dashboard.py +943 -0
  62. package/templates/dataif/scripts/create_metabase_pnp_matriculas_dashboard.py +580 -0
  63. package/templates/dataif/scripts/deploy.sh +79 -0
  64. package/templates/dataif/scripts/fix_metabase_template_tag_ids.py +91 -0
  65. package/templates/dataif/scripts/pnp_powerbi_microdados_probe.py +14 -0
  66. package/templates/dataif/scripts/pnp_validate_raw_run.py +330 -0
  67. package/templates/dataif/scripts/publish-images.sh +31 -0
  68. package/templates/dataif/scripts/sync_metabase_dashboard_field_filters.py +241 -0
  69. package/templates/dataif/scripts/use-vanna-ollama.sh +139 -0
  70. package/templates/dataif/services/api/.dockerignore +18 -0
  71. package/templates/dataif/services/api/Dockerfile +12 -0
  72. package/templates/dataif/services/api/app/__init__.py +1 -0
  73. package/templates/dataif/services/api/app/auth.py +48 -0
  74. package/templates/dataif/services/api/app/config.py +59 -0
  75. package/templates/dataif/services/api/app/keycloak_admin.py +215 -0
  76. package/templates/dataif/services/api/app/main.py +2432 -0
  77. package/templates/dataif/services/api/app/metabase_admin.py +191 -0
  78. package/templates/dataif/services/api/app/metabase_bootstrap.py +44 -0
  79. package/templates/dataif/services/api/app/metabase_embed.py +15 -0
  80. package/templates/dataif/services/api/app/pnp_dag_provisioner.py +113 -0
  81. package/templates/dataif/services/api/app/pnp_instance_repository.py +951 -0
  82. package/templates/dataif/services/api/app/pnp_powerbi.py +438 -0
  83. package/templates/dataif/services/api/app/vanna_client.py +32 -0
  84. package/templates/dataif/services/api/requirements.txt +9 -0
  85. package/templates/dataif/services/vanna/.dockerignore +18 -0
  86. package/templates/dataif/services/vanna/Dockerfile +12 -0
  87. package/templates/dataif/services/vanna/app/config.py +57 -0
  88. package/templates/dataif/services/vanna/app/main.py +108 -0
  89. package/templates/dataif/services/vanna/app/runtime_config.py +114 -0
  90. package/templates/dataif/services/vanna/app/sql_guard.py +123 -0
  91. package/templates/dataif/services/vanna/app/vanna_engine.py +382 -0
  92. package/templates/dataif/services/vanna/requirements.txt +8 -0
  93. package/templates/dataif/services/web/.dockerignore +13 -0
  94. package/templates/dataif/services/web/Dockerfile +16 -0
  95. package/templates/dataif/services/web/index.html +12 -0
  96. package/templates/dataif/services/web/nginx.conf +74 -0
  97. package/templates/dataif/services/web/package-lock.json +4397 -0
  98. package/templates/dataif/services/web/package.json +32 -0
  99. package/templates/dataif/services/web/postcss.config.mjs +5 -0
  100. package/templates/dataif/services/web/src/App.jsx +2817 -0
  101. package/templates/dataif/services/web/src/adminAuth.js +245 -0
  102. package/templates/dataif/services/web/src/assets/avatar_placeholder.png +0 -0
  103. package/templates/dataif/services/web/src/assets/github_logo_icon_229278.svg +1 -0
  104. package/templates/dataif/services/web/src/assets/if-logo.png +0 -0
  105. package/templates/dataif/services/web/src/assets/if.svg +0 -0
  106. package/templates/dataif/services/web/src/assets/pnp-horizontal.svg +1 -0
  107. package/templates/dataif/services/web/src/components/AppHeader.jsx +233 -0
  108. package/templates/dataif/services/web/src/components/application/app-navigation/base-components/mobile-header.tsx +56 -0
  109. package/templates/dataif/services/web/src/components/application/app-navigation/base-components/nav-account-card.tsx +209 -0
  110. package/templates/dataif/services/web/src/components/application/app-navigation/base-components/nav-item-button.tsx +67 -0
  111. package/templates/dataif/services/web/src/components/application/app-navigation/base-components/nav-item.tsx +108 -0
  112. package/templates/dataif/services/web/src/components/application/app-navigation/base-components/nav-list.tsx +83 -0
  113. package/templates/dataif/services/web/src/components/application/app-navigation/config.ts +23 -0
  114. package/templates/dataif/services/web/src/components/application/app-navigation/header-navigation.tsx +240 -0
  115. package/templates/dataif/services/web/src/components/application/pagination/pagination-base.tsx +376 -0
  116. package/templates/dataif/services/web/src/components/application/pagination/pagination-dot.tsx +52 -0
  117. package/templates/dataif/services/web/src/components/application/pagination/pagination-line.tsx +48 -0
  118. package/templates/dataif/services/web/src/components/application/pagination/pagination.tsx +328 -0
  119. package/templates/dataif/services/web/src/components/application/tabs/tabs.tsx +223 -0
  120. package/templates/dataif/services/web/src/components/base/avatar/avatar-label-group.tsx +28 -0
  121. package/templates/dataif/services/web/src/components/base/avatar/avatar.tsx +129 -0
  122. package/templates/dataif/services/web/src/components/base/avatar/base-components/avatar-add-button.tsx +32 -0
  123. package/templates/dataif/services/web/src/components/base/avatar/base-components/avatar-company-icon.tsx +24 -0
  124. package/templates/dataif/services/web/src/components/base/avatar/base-components/avatar-online-indicator.tsx +29 -0
  125. package/templates/dataif/services/web/src/components/base/avatar/base-components/index.tsx +4 -0
  126. package/templates/dataif/services/web/src/components/base/avatar/base-components/verified-tick.tsx +32 -0
  127. package/templates/dataif/services/web/src/components/base/badges/badge-types.ts +264 -0
  128. package/templates/dataif/services/web/src/components/base/badges/badges.tsx +415 -0
  129. package/templates/dataif/services/web/src/components/base/button-group/button-group.tsx +104 -0
  130. package/templates/dataif/services/web/src/components/base/buttons/button.tsx +267 -0
  131. package/templates/dataif/services/web/src/components/base/input/hint-text.tsx +31 -0
  132. package/templates/dataif/services/web/src/components/base/input/input.tsx +269 -0
  133. package/templates/dataif/services/web/src/components/base/input/label.tsx +48 -0
  134. package/templates/dataif/services/web/src/components/base/radio-buttons/radio-buttons.tsx +127 -0
  135. package/templates/dataif/services/web/src/components/base/select/combobox.tsx +150 -0
  136. package/templates/dataif/services/web/src/components/base/select/multi-select.tsx +361 -0
  137. package/templates/dataif/services/web/src/components/base/select/popover.tsx +32 -0
  138. package/templates/dataif/services/web/src/components/base/select/select-item.tsx +95 -0
  139. package/templates/dataif/services/web/src/components/base/select/select-native.tsx +67 -0
  140. package/templates/dataif/services/web/src/components/base/select/select.tsx +144 -0
  141. package/templates/dataif/services/web/src/components/base/tags/base-components/tag-close-x.tsx +32 -0
  142. package/templates/dataif/services/web/src/components/base/tooltip/tooltip.tsx +107 -0
  143. package/templates/dataif/services/web/src/components/foundations/dot-icon.tsx +22 -0
  144. package/templates/dataif/services/web/src/components/foundations/logo/untitledui-logo-minimal.tsx +170 -0
  145. package/templates/dataif/services/web/src/components/foundations/logo/untitledui-logo.tsx +58 -0
  146. package/templates/dataif/services/web/src/hooks/use-breakpoint.ts +34 -0
  147. package/templates/dataif/services/web/src/hooks/use-resize-observer.ts +67 -0
  148. package/templates/dataif/services/web/src/main.jsx +14 -0
  149. package/templates/dataif/services/web/src/providers/theme-provider.jsx +62 -0
  150. package/templates/dataif/services/web/src/styles/globals.css +60 -0
  151. package/templates/dataif/services/web/src/styles/theme.css +1326 -0
  152. package/templates/dataif/services/web/src/styles/typography.css +430 -0
  153. package/templates/dataif/services/web/src/styles.css +1287 -0
  154. package/templates/dataif/services/web/src/utils/cx.ts +24 -0
  155. package/templates/dataif/services/web/src/utils/is-react-component.ts +33 -0
  156. package/templates/dataif/services/web/vite.config.js +14 -0
  157. package/templates/dataif/sql/ddl/001_schemas.sql +6 -0
  158. package/templates/dataif/sql/ddl/003_pnp_raw_staging_curated.sql +699 -0
  159. package/templates/dataif/sql/migrations/001_pnp_phase1_backfill.sql +3 -0
  160. package/templates/dataif/sql/migrations/002_pnp_phase2_admin_config_backfill.sql +184 -0
  161. package/templates/dataif/sql/migrations/003_pnp_phase3_raw_tabular_backfill.sql +3 -0
  162. package/templates/dataif/sql/migrations/004_pnp_phase3_raw_backfill_support_index.sql +3 -0
  163. package/templates/dataif/sql/migrations/005_pnp_phase7_staging_support_indexes.sql +2 -0
  164. package/templates/dataif/sql/migrations/006_pnp_phase7_staging_autovacuum_tuning.sql +2 -0
  165. package/templates/dataif/sql/migrations/007_pnp_phase7b_run_packages.sql +20 -0
  166. package/templates/dataif/sql/migrations/008_pnp_phase7a_pipeline_endpoints.sql +169 -0
  167. package/templates/dataif/sql/migrations/009_pnp_phase8_curated.sql +35 -0
  168. package/templates/dataif/sql/migrations/010_pnp_phase10_staging_incremental_upsert.sql +3 -0
  169. package/templates/dataif/sql/migrations/010_pnp_pipeline_uuid.sql +51 -0
  170. package/templates/dataif/sql/migrations/011_app_settings.sql +7 -0
  171. package/templates/dataif/sql/staging/020_pnp_matriculas.sql +112 -0
  172. package/templates/dataif/sql/staging/030_pnp_eficiencia_academica.sql +83 -0
  173. package/templates/dataif/sql/staging/040_pnp_servidores.sql +90 -0
  174. package/templates/dataif/sql/staging/050_pnp_financeiro.sql +72 -0
  175. package/templates/dataif/sql/views_curated/003_vw_pnp_microdados_admin.sql +160 -0
  176. package/templates/dataif/sql/views_curated/004_mv_pnp_dashboard_fast.sql +204 -0
  177. package/templates/dataif/sql/views_curated/010_vw_pnp_admin_ingestao.sql +51 -0
  178. package/templates/dataif/sql/views_curated/020_vw_pnp_qualidade_dados.sql +114 -0
  179. package/templates/dataif/sql/views_curated/030_vw_pnp_matriculas.sql +67 -0
  180. package/templates/dataif/sql/views_curated/040_vw_pnp_eficiencia.sql +33 -0
  181. package/templates/dataif/sql/views_curated/050_vw_pnp_servidores.sql +30 -0
  182. package/templates/dataif/sql/views_curated/060_vw_pnp_financeiro.sql +22 -0
  183. package/templates/dataif/sql/views_curated/070_vw_pnp_vanna.sql +115 -0
@@ -0,0 +1,4397 @@
1
+ {
2
+ "name": "dataif-web",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "dataif-web",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@electric-sql/pglite": "^0.4.1",
12
+ "@electric-sql/pglite-react": "^0.3.2",
13
+ "@tailwindcss/typography": "^0.5.19",
14
+ "@tailwindcss/vite": "^4.2.2",
15
+ "@untitledui/icons": "^0.0.21",
16
+ "react": "^18.3.1",
17
+ "react-aria": "^3.47.0",
18
+ "react-aria-components": "^1.16.0",
19
+ "react-dom": "^18.3.1",
20
+ "tailwind-merge": "^3.5.0",
21
+ "tailwindcss": "^4.2.2",
22
+ "tailwindcss-animate": "^1.0.7",
23
+ "tailwindcss-react-aria-components": "^2.0.1"
24
+ },
25
+ "devDependencies": {
26
+ "@tailwindcss/postcss": "^4.2.2",
27
+ "@vitejs/plugin-react": "^4.3.4",
28
+ "postcss": "^8.5.8",
29
+ "vite": "^5.4.11"
30
+ }
31
+ },
32
+ "node_modules/@alloc/quick-lru": {
33
+ "version": "5.2.0",
34
+ "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
35
+ "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
36
+ "dev": true,
37
+ "license": "MIT",
38
+ "engines": {
39
+ "node": ">=10"
40
+ },
41
+ "funding": {
42
+ "url": "https://github.com/sponsors/sindresorhus"
43
+ }
44
+ },
45
+ "node_modules/@babel/code-frame": {
46
+ "version": "7.29.0",
47
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
48
+ "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
49
+ "dev": true,
50
+ "license": "MIT",
51
+ "dependencies": {
52
+ "@babel/helper-validator-identifier": "^7.28.5",
53
+ "js-tokens": "^4.0.0",
54
+ "picocolors": "^1.1.1"
55
+ },
56
+ "engines": {
57
+ "node": ">=6.9.0"
58
+ }
59
+ },
60
+ "node_modules/@babel/compat-data": {
61
+ "version": "7.29.0",
62
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
63
+ "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
64
+ "dev": true,
65
+ "license": "MIT",
66
+ "engines": {
67
+ "node": ">=6.9.0"
68
+ }
69
+ },
70
+ "node_modules/@babel/core": {
71
+ "version": "7.29.0",
72
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
73
+ "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
74
+ "dev": true,
75
+ "license": "MIT",
76
+ "dependencies": {
77
+ "@babel/code-frame": "^7.29.0",
78
+ "@babel/generator": "^7.29.0",
79
+ "@babel/helper-compilation-targets": "^7.28.6",
80
+ "@babel/helper-module-transforms": "^7.28.6",
81
+ "@babel/helpers": "^7.28.6",
82
+ "@babel/parser": "^7.29.0",
83
+ "@babel/template": "^7.28.6",
84
+ "@babel/traverse": "^7.29.0",
85
+ "@babel/types": "^7.29.0",
86
+ "@jridgewell/remapping": "^2.3.5",
87
+ "convert-source-map": "^2.0.0",
88
+ "debug": "^4.1.0",
89
+ "gensync": "^1.0.0-beta.2",
90
+ "json5": "^2.2.3",
91
+ "semver": "^6.3.1"
92
+ },
93
+ "engines": {
94
+ "node": ">=6.9.0"
95
+ },
96
+ "funding": {
97
+ "type": "opencollective",
98
+ "url": "https://opencollective.com/babel"
99
+ }
100
+ },
101
+ "node_modules/@babel/generator": {
102
+ "version": "7.29.1",
103
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
104
+ "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
105
+ "dev": true,
106
+ "license": "MIT",
107
+ "dependencies": {
108
+ "@babel/parser": "^7.29.0",
109
+ "@babel/types": "^7.29.0",
110
+ "@jridgewell/gen-mapping": "^0.3.12",
111
+ "@jridgewell/trace-mapping": "^0.3.28",
112
+ "jsesc": "^3.0.2"
113
+ },
114
+ "engines": {
115
+ "node": ">=6.9.0"
116
+ }
117
+ },
118
+ "node_modules/@babel/helper-compilation-targets": {
119
+ "version": "7.28.6",
120
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
121
+ "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
122
+ "dev": true,
123
+ "license": "MIT",
124
+ "dependencies": {
125
+ "@babel/compat-data": "^7.28.6",
126
+ "@babel/helper-validator-option": "^7.27.1",
127
+ "browserslist": "^4.24.0",
128
+ "lru-cache": "^5.1.1",
129
+ "semver": "^6.3.1"
130
+ },
131
+ "engines": {
132
+ "node": ">=6.9.0"
133
+ }
134
+ },
135
+ "node_modules/@babel/helper-globals": {
136
+ "version": "7.28.0",
137
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
138
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
139
+ "dev": true,
140
+ "license": "MIT",
141
+ "engines": {
142
+ "node": ">=6.9.0"
143
+ }
144
+ },
145
+ "node_modules/@babel/helper-module-imports": {
146
+ "version": "7.28.6",
147
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
148
+ "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
149
+ "dev": true,
150
+ "license": "MIT",
151
+ "dependencies": {
152
+ "@babel/traverse": "^7.28.6",
153
+ "@babel/types": "^7.28.6"
154
+ },
155
+ "engines": {
156
+ "node": ">=6.9.0"
157
+ }
158
+ },
159
+ "node_modules/@babel/helper-module-transforms": {
160
+ "version": "7.28.6",
161
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
162
+ "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
163
+ "dev": true,
164
+ "license": "MIT",
165
+ "dependencies": {
166
+ "@babel/helper-module-imports": "^7.28.6",
167
+ "@babel/helper-validator-identifier": "^7.28.5",
168
+ "@babel/traverse": "^7.28.6"
169
+ },
170
+ "engines": {
171
+ "node": ">=6.9.0"
172
+ },
173
+ "peerDependencies": {
174
+ "@babel/core": "^7.0.0"
175
+ }
176
+ },
177
+ "node_modules/@babel/helper-plugin-utils": {
178
+ "version": "7.28.6",
179
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
180
+ "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
181
+ "dev": true,
182
+ "license": "MIT",
183
+ "engines": {
184
+ "node": ">=6.9.0"
185
+ }
186
+ },
187
+ "node_modules/@babel/helper-string-parser": {
188
+ "version": "7.27.1",
189
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
190
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
191
+ "dev": true,
192
+ "license": "MIT",
193
+ "engines": {
194
+ "node": ">=6.9.0"
195
+ }
196
+ },
197
+ "node_modules/@babel/helper-validator-identifier": {
198
+ "version": "7.28.5",
199
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
200
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
201
+ "dev": true,
202
+ "license": "MIT",
203
+ "engines": {
204
+ "node": ">=6.9.0"
205
+ }
206
+ },
207
+ "node_modules/@babel/helper-validator-option": {
208
+ "version": "7.27.1",
209
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
210
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
211
+ "dev": true,
212
+ "license": "MIT",
213
+ "engines": {
214
+ "node": ">=6.9.0"
215
+ }
216
+ },
217
+ "node_modules/@babel/helpers": {
218
+ "version": "7.28.6",
219
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
220
+ "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
221
+ "dev": true,
222
+ "license": "MIT",
223
+ "dependencies": {
224
+ "@babel/template": "^7.28.6",
225
+ "@babel/types": "^7.28.6"
226
+ },
227
+ "engines": {
228
+ "node": ">=6.9.0"
229
+ }
230
+ },
231
+ "node_modules/@babel/parser": {
232
+ "version": "7.29.0",
233
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
234
+ "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
235
+ "dev": true,
236
+ "license": "MIT",
237
+ "dependencies": {
238
+ "@babel/types": "^7.29.0"
239
+ },
240
+ "bin": {
241
+ "parser": "bin/babel-parser.js"
242
+ },
243
+ "engines": {
244
+ "node": ">=6.0.0"
245
+ }
246
+ },
247
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
248
+ "version": "7.27.1",
249
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
250
+ "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
251
+ "dev": true,
252
+ "license": "MIT",
253
+ "dependencies": {
254
+ "@babel/helper-plugin-utils": "^7.27.1"
255
+ },
256
+ "engines": {
257
+ "node": ">=6.9.0"
258
+ },
259
+ "peerDependencies": {
260
+ "@babel/core": "^7.0.0-0"
261
+ }
262
+ },
263
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
264
+ "version": "7.27.1",
265
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
266
+ "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
267
+ "dev": true,
268
+ "license": "MIT",
269
+ "dependencies": {
270
+ "@babel/helper-plugin-utils": "^7.27.1"
271
+ },
272
+ "engines": {
273
+ "node": ">=6.9.0"
274
+ },
275
+ "peerDependencies": {
276
+ "@babel/core": "^7.0.0-0"
277
+ }
278
+ },
279
+ "node_modules/@babel/template": {
280
+ "version": "7.28.6",
281
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
282
+ "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
283
+ "dev": true,
284
+ "license": "MIT",
285
+ "dependencies": {
286
+ "@babel/code-frame": "^7.28.6",
287
+ "@babel/parser": "^7.28.6",
288
+ "@babel/types": "^7.28.6"
289
+ },
290
+ "engines": {
291
+ "node": ">=6.9.0"
292
+ }
293
+ },
294
+ "node_modules/@babel/traverse": {
295
+ "version": "7.29.0",
296
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
297
+ "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
298
+ "dev": true,
299
+ "license": "MIT",
300
+ "dependencies": {
301
+ "@babel/code-frame": "^7.29.0",
302
+ "@babel/generator": "^7.29.0",
303
+ "@babel/helper-globals": "^7.28.0",
304
+ "@babel/parser": "^7.29.0",
305
+ "@babel/template": "^7.28.6",
306
+ "@babel/types": "^7.29.0",
307
+ "debug": "^4.3.1"
308
+ },
309
+ "engines": {
310
+ "node": ">=6.9.0"
311
+ }
312
+ },
313
+ "node_modules/@babel/types": {
314
+ "version": "7.29.0",
315
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
316
+ "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
317
+ "dev": true,
318
+ "license": "MIT",
319
+ "dependencies": {
320
+ "@babel/helper-string-parser": "^7.27.1",
321
+ "@babel/helper-validator-identifier": "^7.28.5"
322
+ },
323
+ "engines": {
324
+ "node": ">=6.9.0"
325
+ }
326
+ },
327
+ "node_modules/@electric-sql/pglite": {
328
+ "version": "0.4.2",
329
+ "resolved": "https://registry.npmjs.org/@electric-sql/pglite/-/pglite-0.4.2.tgz",
330
+ "integrity": "sha512-1GUUl/MZpy5QWgWisD3Epho3GkJrZ1MzVgQpo2pifQWUs96F9rXKZxeVLPhkwFYck34CH/kQ8lis6wX9ifn3kg==",
331
+ "license": "Apache-2.0"
332
+ },
333
+ "node_modules/@electric-sql/pglite-react": {
334
+ "version": "0.3.2",
335
+ "resolved": "https://registry.npmjs.org/@electric-sql/pglite-react/-/pglite-react-0.3.2.tgz",
336
+ "integrity": "sha512-LLx06yBDWnvTmEe5c0PaVnRFRthJiIsWCWWuZOcSAkpjc+kqycNI/1neZa/2+6bNTLA4dIxCxLnjLJaTf4ecXQ==",
337
+ "license": "Apache-2.0",
338
+ "peerDependencies": {
339
+ "@electric-sql/pglite": "0.4.2",
340
+ "react": "^18.0.0 || ^19.0.0 || ^19.0.0-rc"
341
+ }
342
+ },
343
+ "node_modules/@esbuild/aix-ppc64": {
344
+ "version": "0.21.5",
345
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
346
+ "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
347
+ "cpu": [
348
+ "ppc64"
349
+ ],
350
+ "license": "MIT",
351
+ "optional": true,
352
+ "os": [
353
+ "aix"
354
+ ],
355
+ "engines": {
356
+ "node": ">=12"
357
+ }
358
+ },
359
+ "node_modules/@esbuild/android-arm": {
360
+ "version": "0.21.5",
361
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
362
+ "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
363
+ "cpu": [
364
+ "arm"
365
+ ],
366
+ "license": "MIT",
367
+ "optional": true,
368
+ "os": [
369
+ "android"
370
+ ],
371
+ "engines": {
372
+ "node": ">=12"
373
+ }
374
+ },
375
+ "node_modules/@esbuild/android-arm64": {
376
+ "version": "0.21.5",
377
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
378
+ "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
379
+ "cpu": [
380
+ "arm64"
381
+ ],
382
+ "license": "MIT",
383
+ "optional": true,
384
+ "os": [
385
+ "android"
386
+ ],
387
+ "engines": {
388
+ "node": ">=12"
389
+ }
390
+ },
391
+ "node_modules/@esbuild/android-x64": {
392
+ "version": "0.21.5",
393
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
394
+ "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
395
+ "cpu": [
396
+ "x64"
397
+ ],
398
+ "license": "MIT",
399
+ "optional": true,
400
+ "os": [
401
+ "android"
402
+ ],
403
+ "engines": {
404
+ "node": ">=12"
405
+ }
406
+ },
407
+ "node_modules/@esbuild/darwin-arm64": {
408
+ "version": "0.21.5",
409
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
410
+ "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
411
+ "cpu": [
412
+ "arm64"
413
+ ],
414
+ "license": "MIT",
415
+ "optional": true,
416
+ "os": [
417
+ "darwin"
418
+ ],
419
+ "engines": {
420
+ "node": ">=12"
421
+ }
422
+ },
423
+ "node_modules/@esbuild/darwin-x64": {
424
+ "version": "0.21.5",
425
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
426
+ "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
427
+ "cpu": [
428
+ "x64"
429
+ ],
430
+ "license": "MIT",
431
+ "optional": true,
432
+ "os": [
433
+ "darwin"
434
+ ],
435
+ "engines": {
436
+ "node": ">=12"
437
+ }
438
+ },
439
+ "node_modules/@esbuild/freebsd-arm64": {
440
+ "version": "0.21.5",
441
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
442
+ "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
443
+ "cpu": [
444
+ "arm64"
445
+ ],
446
+ "license": "MIT",
447
+ "optional": true,
448
+ "os": [
449
+ "freebsd"
450
+ ],
451
+ "engines": {
452
+ "node": ">=12"
453
+ }
454
+ },
455
+ "node_modules/@esbuild/freebsd-x64": {
456
+ "version": "0.21.5",
457
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
458
+ "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
459
+ "cpu": [
460
+ "x64"
461
+ ],
462
+ "license": "MIT",
463
+ "optional": true,
464
+ "os": [
465
+ "freebsd"
466
+ ],
467
+ "engines": {
468
+ "node": ">=12"
469
+ }
470
+ },
471
+ "node_modules/@esbuild/linux-arm": {
472
+ "version": "0.21.5",
473
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
474
+ "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
475
+ "cpu": [
476
+ "arm"
477
+ ],
478
+ "license": "MIT",
479
+ "optional": true,
480
+ "os": [
481
+ "linux"
482
+ ],
483
+ "engines": {
484
+ "node": ">=12"
485
+ }
486
+ },
487
+ "node_modules/@esbuild/linux-arm64": {
488
+ "version": "0.21.5",
489
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
490
+ "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
491
+ "cpu": [
492
+ "arm64"
493
+ ],
494
+ "license": "MIT",
495
+ "optional": true,
496
+ "os": [
497
+ "linux"
498
+ ],
499
+ "engines": {
500
+ "node": ">=12"
501
+ }
502
+ },
503
+ "node_modules/@esbuild/linux-ia32": {
504
+ "version": "0.21.5",
505
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
506
+ "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
507
+ "cpu": [
508
+ "ia32"
509
+ ],
510
+ "license": "MIT",
511
+ "optional": true,
512
+ "os": [
513
+ "linux"
514
+ ],
515
+ "engines": {
516
+ "node": ">=12"
517
+ }
518
+ },
519
+ "node_modules/@esbuild/linux-loong64": {
520
+ "version": "0.21.5",
521
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
522
+ "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
523
+ "cpu": [
524
+ "loong64"
525
+ ],
526
+ "license": "MIT",
527
+ "optional": true,
528
+ "os": [
529
+ "linux"
530
+ ],
531
+ "engines": {
532
+ "node": ">=12"
533
+ }
534
+ },
535
+ "node_modules/@esbuild/linux-mips64el": {
536
+ "version": "0.21.5",
537
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
538
+ "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
539
+ "cpu": [
540
+ "mips64el"
541
+ ],
542
+ "license": "MIT",
543
+ "optional": true,
544
+ "os": [
545
+ "linux"
546
+ ],
547
+ "engines": {
548
+ "node": ">=12"
549
+ }
550
+ },
551
+ "node_modules/@esbuild/linux-ppc64": {
552
+ "version": "0.21.5",
553
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
554
+ "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
555
+ "cpu": [
556
+ "ppc64"
557
+ ],
558
+ "license": "MIT",
559
+ "optional": true,
560
+ "os": [
561
+ "linux"
562
+ ],
563
+ "engines": {
564
+ "node": ">=12"
565
+ }
566
+ },
567
+ "node_modules/@esbuild/linux-riscv64": {
568
+ "version": "0.21.5",
569
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
570
+ "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
571
+ "cpu": [
572
+ "riscv64"
573
+ ],
574
+ "license": "MIT",
575
+ "optional": true,
576
+ "os": [
577
+ "linux"
578
+ ],
579
+ "engines": {
580
+ "node": ">=12"
581
+ }
582
+ },
583
+ "node_modules/@esbuild/linux-s390x": {
584
+ "version": "0.21.5",
585
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
586
+ "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
587
+ "cpu": [
588
+ "s390x"
589
+ ],
590
+ "license": "MIT",
591
+ "optional": true,
592
+ "os": [
593
+ "linux"
594
+ ],
595
+ "engines": {
596
+ "node": ">=12"
597
+ }
598
+ },
599
+ "node_modules/@esbuild/linux-x64": {
600
+ "version": "0.21.5",
601
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
602
+ "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
603
+ "cpu": [
604
+ "x64"
605
+ ],
606
+ "license": "MIT",
607
+ "optional": true,
608
+ "os": [
609
+ "linux"
610
+ ],
611
+ "engines": {
612
+ "node": ">=12"
613
+ }
614
+ },
615
+ "node_modules/@esbuild/netbsd-x64": {
616
+ "version": "0.21.5",
617
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
618
+ "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
619
+ "cpu": [
620
+ "x64"
621
+ ],
622
+ "license": "MIT",
623
+ "optional": true,
624
+ "os": [
625
+ "netbsd"
626
+ ],
627
+ "engines": {
628
+ "node": ">=12"
629
+ }
630
+ },
631
+ "node_modules/@esbuild/openbsd-x64": {
632
+ "version": "0.21.5",
633
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
634
+ "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
635
+ "cpu": [
636
+ "x64"
637
+ ],
638
+ "license": "MIT",
639
+ "optional": true,
640
+ "os": [
641
+ "openbsd"
642
+ ],
643
+ "engines": {
644
+ "node": ">=12"
645
+ }
646
+ },
647
+ "node_modules/@esbuild/sunos-x64": {
648
+ "version": "0.21.5",
649
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
650
+ "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
651
+ "cpu": [
652
+ "x64"
653
+ ],
654
+ "license": "MIT",
655
+ "optional": true,
656
+ "os": [
657
+ "sunos"
658
+ ],
659
+ "engines": {
660
+ "node": ">=12"
661
+ }
662
+ },
663
+ "node_modules/@esbuild/win32-arm64": {
664
+ "version": "0.21.5",
665
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
666
+ "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
667
+ "cpu": [
668
+ "arm64"
669
+ ],
670
+ "license": "MIT",
671
+ "optional": true,
672
+ "os": [
673
+ "win32"
674
+ ],
675
+ "engines": {
676
+ "node": ">=12"
677
+ }
678
+ },
679
+ "node_modules/@esbuild/win32-ia32": {
680
+ "version": "0.21.5",
681
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
682
+ "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
683
+ "cpu": [
684
+ "ia32"
685
+ ],
686
+ "license": "MIT",
687
+ "optional": true,
688
+ "os": [
689
+ "win32"
690
+ ],
691
+ "engines": {
692
+ "node": ">=12"
693
+ }
694
+ },
695
+ "node_modules/@esbuild/win32-x64": {
696
+ "version": "0.21.5",
697
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
698
+ "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
699
+ "cpu": [
700
+ "x64"
701
+ ],
702
+ "license": "MIT",
703
+ "optional": true,
704
+ "os": [
705
+ "win32"
706
+ ],
707
+ "engines": {
708
+ "node": ">=12"
709
+ }
710
+ },
711
+ "node_modules/@formatjs/ecma402-abstract": {
712
+ "version": "2.3.6",
713
+ "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.3.6.tgz",
714
+ "integrity": "sha512-HJnTFeRM2kVFVr5gr5kH1XP6K0JcJtE7Lzvtr3FS/so5f1kpsqqqxy5JF+FRaO6H2qmcMfAUIox7AJteieRtVw==",
715
+ "license": "MIT",
716
+ "dependencies": {
717
+ "@formatjs/fast-memoize": "2.2.7",
718
+ "@formatjs/intl-localematcher": "0.6.2",
719
+ "decimal.js": "^10.4.3",
720
+ "tslib": "^2.8.0"
721
+ }
722
+ },
723
+ "node_modules/@formatjs/fast-memoize": {
724
+ "version": "2.2.7",
725
+ "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.7.tgz",
726
+ "integrity": "sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ==",
727
+ "license": "MIT",
728
+ "dependencies": {
729
+ "tslib": "^2.8.0"
730
+ }
731
+ },
732
+ "node_modules/@formatjs/icu-messageformat-parser": {
733
+ "version": "2.11.4",
734
+ "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.11.4.tgz",
735
+ "integrity": "sha512-7kR78cRrPNB4fjGFZg3Rmj5aah8rQj9KPzuLsmcSn4ipLXQvC04keycTI1F7kJYDwIXtT2+7IDEto842CfZBtw==",
736
+ "license": "MIT",
737
+ "dependencies": {
738
+ "@formatjs/ecma402-abstract": "2.3.6",
739
+ "@formatjs/icu-skeleton-parser": "1.8.16",
740
+ "tslib": "^2.8.0"
741
+ }
742
+ },
743
+ "node_modules/@formatjs/icu-skeleton-parser": {
744
+ "version": "1.8.16",
745
+ "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.16.tgz",
746
+ "integrity": "sha512-H13E9Xl+PxBd8D5/6TVUluSpxGNvFSlN/b3coUp0e0JpuWXXnQDiavIpY3NnvSp4xhEMoXyyBvVfdFX8jglOHQ==",
747
+ "license": "MIT",
748
+ "dependencies": {
749
+ "@formatjs/ecma402-abstract": "2.3.6",
750
+ "tslib": "^2.8.0"
751
+ }
752
+ },
753
+ "node_modules/@formatjs/intl-localematcher": {
754
+ "version": "0.6.2",
755
+ "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.6.2.tgz",
756
+ "integrity": "sha512-XOMO2Hupl0wdd172Y06h6kLpBz6Dv+J4okPLl4LPtzbr8f66WbIoy4ev98EBuZ6ZK4h5ydTN6XneT4QVpD7cdA==",
757
+ "license": "MIT",
758
+ "dependencies": {
759
+ "tslib": "^2.8.0"
760
+ }
761
+ },
762
+ "node_modules/@internationalized/date": {
763
+ "version": "3.12.0",
764
+ "resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.12.0.tgz",
765
+ "integrity": "sha512-/PyIMzK29jtXaGU23qTvNZxvBXRtKbNnGDFD+PY6CZw/Y8Ex8pFUzkuCJCG9aOqmShjqhS9mPqP6Dk5onQY8rQ==",
766
+ "license": "Apache-2.0",
767
+ "dependencies": {
768
+ "@swc/helpers": "^0.5.0"
769
+ }
770
+ },
771
+ "node_modules/@internationalized/message": {
772
+ "version": "3.1.8",
773
+ "resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.1.8.tgz",
774
+ "integrity": "sha512-Rwk3j/TlYZhn3HQ6PyXUV0XP9Uv42jqZGNegt0BXlxjE6G3+LwHjbQZAGHhCnCPdaA6Tvd3ma/7QzLlLkJxAWA==",
775
+ "license": "Apache-2.0",
776
+ "dependencies": {
777
+ "@swc/helpers": "^0.5.0",
778
+ "intl-messageformat": "^10.1.0"
779
+ }
780
+ },
781
+ "node_modules/@internationalized/number": {
782
+ "version": "3.6.5",
783
+ "resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.6.5.tgz",
784
+ "integrity": "sha512-6hY4Kl4HPBvtfS62asS/R22JzNNy8vi/Ssev7x6EobfCp+9QIB2hKvI2EtbdJ0VSQacxVNtqhE/NmF/NZ0gm6g==",
785
+ "license": "Apache-2.0",
786
+ "dependencies": {
787
+ "@swc/helpers": "^0.5.0"
788
+ }
789
+ },
790
+ "node_modules/@internationalized/string": {
791
+ "version": "3.2.7",
792
+ "resolved": "https://registry.npmjs.org/@internationalized/string/-/string-3.2.7.tgz",
793
+ "integrity": "sha512-D4OHBjrinH+PFZPvfCXvG28n2LSykWcJ7GIioQL+ok0LON15SdfoUssoHzzOUmVZLbRoREsQXVzA6r8JKsbP6A==",
794
+ "license": "Apache-2.0",
795
+ "dependencies": {
796
+ "@swc/helpers": "^0.5.0"
797
+ }
798
+ },
799
+ "node_modules/@jridgewell/gen-mapping": {
800
+ "version": "0.3.13",
801
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
802
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
803
+ "license": "MIT",
804
+ "dependencies": {
805
+ "@jridgewell/sourcemap-codec": "^1.5.0",
806
+ "@jridgewell/trace-mapping": "^0.3.24"
807
+ }
808
+ },
809
+ "node_modules/@jridgewell/remapping": {
810
+ "version": "2.3.5",
811
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
812
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
813
+ "license": "MIT",
814
+ "dependencies": {
815
+ "@jridgewell/gen-mapping": "^0.3.5",
816
+ "@jridgewell/trace-mapping": "^0.3.24"
817
+ }
818
+ },
819
+ "node_modules/@jridgewell/resolve-uri": {
820
+ "version": "3.1.2",
821
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
822
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
823
+ "license": "MIT",
824
+ "engines": {
825
+ "node": ">=6.0.0"
826
+ }
827
+ },
828
+ "node_modules/@jridgewell/sourcemap-codec": {
829
+ "version": "1.5.5",
830
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
831
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
832
+ "license": "MIT"
833
+ },
834
+ "node_modules/@jridgewell/trace-mapping": {
835
+ "version": "0.3.31",
836
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
837
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
838
+ "license": "MIT",
839
+ "dependencies": {
840
+ "@jridgewell/resolve-uri": "^3.1.0",
841
+ "@jridgewell/sourcemap-codec": "^1.4.14"
842
+ }
843
+ },
844
+ "node_modules/@react-aria/autocomplete": {
845
+ "version": "3.0.0-rc.6",
846
+ "resolved": "https://registry.npmjs.org/@react-aria/autocomplete/-/autocomplete-3.0.0-rc.6.tgz",
847
+ "integrity": "sha512-uymUNJ8NW+dX7lmgkHE+SklAbxwktycAJcI5lBBw6KPZyc0EdMHC+/Fc5CUz3enIAhNwd2oxxogcSHknquMzQA==",
848
+ "license": "Apache-2.0",
849
+ "dependencies": {
850
+ "@react-aria/combobox": "^3.15.0",
851
+ "@react-aria/focus": "^3.21.5",
852
+ "@react-aria/i18n": "^3.12.16",
853
+ "@react-aria/interactions": "^3.27.1",
854
+ "@react-aria/listbox": "^3.15.3",
855
+ "@react-aria/searchfield": "^3.8.12",
856
+ "@react-aria/textfield": "^3.18.5",
857
+ "@react-aria/utils": "^3.33.1",
858
+ "@react-stately/autocomplete": "3.0.0-beta.4",
859
+ "@react-stately/combobox": "^3.13.0",
860
+ "@react-types/autocomplete": "3.0.0-alpha.38",
861
+ "@react-types/button": "^3.15.1",
862
+ "@react-types/shared": "^3.33.1",
863
+ "@swc/helpers": "^0.5.0"
864
+ },
865
+ "peerDependencies": {
866
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
867
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
868
+ }
869
+ },
870
+ "node_modules/@react-aria/breadcrumbs": {
871
+ "version": "3.5.32",
872
+ "resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.32.tgz",
873
+ "integrity": "sha512-S61vh5DJ2PXiXUwD7gk+pvS/b4VPrc3ZJOUZ0yVRLHkVESr5LhIZH+SAVgZkm1lzKyMRG+BH+fiRH/DZRSs7SA==",
874
+ "license": "Apache-2.0",
875
+ "dependencies": {
876
+ "@react-aria/i18n": "^3.12.16",
877
+ "@react-aria/link": "^3.8.9",
878
+ "@react-aria/utils": "^3.33.1",
879
+ "@react-types/breadcrumbs": "^3.7.19",
880
+ "@react-types/shared": "^3.33.1",
881
+ "@swc/helpers": "^0.5.0"
882
+ },
883
+ "peerDependencies": {
884
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
885
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
886
+ }
887
+ },
888
+ "node_modules/@react-aria/button": {
889
+ "version": "3.14.5",
890
+ "resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.14.5.tgz",
891
+ "integrity": "sha512-ZuLx+wQj9VQhH9BYe7t0JowmKnns2XrFHFNvIVBb5RwxL+CIycIOL7brhWKg2rGdxvlOom7jhVbcjSmtAaSyaQ==",
892
+ "license": "Apache-2.0",
893
+ "dependencies": {
894
+ "@react-aria/interactions": "^3.27.1",
895
+ "@react-aria/toolbar": "3.0.0-beta.24",
896
+ "@react-aria/utils": "^3.33.1",
897
+ "@react-stately/toggle": "^3.9.5",
898
+ "@react-types/button": "^3.15.1",
899
+ "@react-types/shared": "^3.33.1",
900
+ "@swc/helpers": "^0.5.0"
901
+ },
902
+ "peerDependencies": {
903
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
904
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
905
+ }
906
+ },
907
+ "node_modules/@react-aria/calendar": {
908
+ "version": "3.9.5",
909
+ "resolved": "https://registry.npmjs.org/@react-aria/calendar/-/calendar-3.9.5.tgz",
910
+ "integrity": "sha512-k0kvceYdZZu+DoeqephtlmIvh1CxqdFyoN52iqVzTz9O0pe5Xfhq7zxPGbeCp4pC61xzp8Lu/6uFA/YNfQQNag==",
911
+ "license": "Apache-2.0",
912
+ "dependencies": {
913
+ "@internationalized/date": "^3.12.0",
914
+ "@react-aria/i18n": "^3.12.16",
915
+ "@react-aria/interactions": "^3.27.1",
916
+ "@react-aria/live-announcer": "^3.4.4",
917
+ "@react-aria/utils": "^3.33.1",
918
+ "@react-stately/calendar": "^3.9.3",
919
+ "@react-types/button": "^3.15.1",
920
+ "@react-types/calendar": "^3.8.3",
921
+ "@react-types/shared": "^3.33.1",
922
+ "@swc/helpers": "^0.5.0"
923
+ },
924
+ "peerDependencies": {
925
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
926
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
927
+ }
928
+ },
929
+ "node_modules/@react-aria/checkbox": {
930
+ "version": "3.16.5",
931
+ "resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.16.5.tgz",
932
+ "integrity": "sha512-ZhUT7ELuD52hb+Zpzw0ElLQiVOd5sKYahrh+PK3vq13Wk5TedBscALpjuXetI4pwFfdmAM1Lhgcsrd8+6AmyvA==",
933
+ "license": "Apache-2.0",
934
+ "dependencies": {
935
+ "@react-aria/form": "^3.1.5",
936
+ "@react-aria/interactions": "^3.27.1",
937
+ "@react-aria/label": "^3.7.25",
938
+ "@react-aria/toggle": "^3.12.5",
939
+ "@react-aria/utils": "^3.33.1",
940
+ "@react-stately/checkbox": "^3.7.5",
941
+ "@react-stately/form": "^3.2.4",
942
+ "@react-stately/toggle": "^3.9.5",
943
+ "@react-types/checkbox": "^3.10.4",
944
+ "@react-types/shared": "^3.33.1",
945
+ "@swc/helpers": "^0.5.0"
946
+ },
947
+ "peerDependencies": {
948
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
949
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
950
+ }
951
+ },
952
+ "node_modules/@react-aria/collections": {
953
+ "version": "3.0.3",
954
+ "resolved": "https://registry.npmjs.org/@react-aria/collections/-/collections-3.0.3.tgz",
955
+ "integrity": "sha512-lbC5DEbHeVFvVr4ke9y8D9Nynnr8G8UjVEBoFGRylpAaScU7SX1TN84QI+EjMbsdZ0/5P2H7gUTS+MYd+6U3Rg==",
956
+ "license": "Apache-2.0",
957
+ "dependencies": {
958
+ "@react-aria/interactions": "^3.27.1",
959
+ "@react-aria/ssr": "^3.9.10",
960
+ "@react-aria/utils": "^3.33.1",
961
+ "@react-types/shared": "^3.33.1",
962
+ "@swc/helpers": "^0.5.0",
963
+ "use-sync-external-store": "^1.6.0"
964
+ },
965
+ "peerDependencies": {
966
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
967
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
968
+ }
969
+ },
970
+ "node_modules/@react-aria/color": {
971
+ "version": "3.1.5",
972
+ "resolved": "https://registry.npmjs.org/@react-aria/color/-/color-3.1.5.tgz",
973
+ "integrity": "sha512-eysWdBRzE8WDhBzh1nfjyUgzseMokXGHjIoJo880T7IPJ8tTavfQni49pU1B2qWrNOWPyrwx4Bd9pzHyboxJSA==",
974
+ "license": "Apache-2.0",
975
+ "dependencies": {
976
+ "@react-aria/i18n": "^3.12.16",
977
+ "@react-aria/interactions": "^3.27.1",
978
+ "@react-aria/numberfield": "^3.12.5",
979
+ "@react-aria/slider": "^3.8.5",
980
+ "@react-aria/spinbutton": "^3.7.2",
981
+ "@react-aria/textfield": "^3.18.5",
982
+ "@react-aria/utils": "^3.33.1",
983
+ "@react-aria/visually-hidden": "^3.8.31",
984
+ "@react-stately/color": "^3.9.5",
985
+ "@react-stately/form": "^3.2.4",
986
+ "@react-types/color": "^3.1.4",
987
+ "@react-types/shared": "^3.33.1",
988
+ "@swc/helpers": "^0.5.0"
989
+ },
990
+ "peerDependencies": {
991
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
992
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
993
+ }
994
+ },
995
+ "node_modules/@react-aria/combobox": {
996
+ "version": "3.15.0",
997
+ "resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.15.0.tgz",
998
+ "integrity": "sha512-qSjQTFwKl3x1jCP2NRSJ6doZqAp6c2GTfoiFwWjaWg1IewwLsglaW6NnzqRDFiqFbDGgXPn4MqtC1VYEJ3NEjA==",
999
+ "license": "Apache-2.0",
1000
+ "dependencies": {
1001
+ "@react-aria/focus": "^3.21.5",
1002
+ "@react-aria/i18n": "^3.12.16",
1003
+ "@react-aria/interactions": "^3.27.1",
1004
+ "@react-aria/listbox": "^3.15.3",
1005
+ "@react-aria/live-announcer": "^3.4.4",
1006
+ "@react-aria/menu": "^3.21.0",
1007
+ "@react-aria/overlays": "^3.31.2",
1008
+ "@react-aria/selection": "^3.27.2",
1009
+ "@react-aria/textfield": "^3.18.5",
1010
+ "@react-aria/utils": "^3.33.1",
1011
+ "@react-stately/collections": "^3.12.10",
1012
+ "@react-stately/combobox": "^3.13.0",
1013
+ "@react-stately/form": "^3.2.4",
1014
+ "@react-types/button": "^3.15.1",
1015
+ "@react-types/combobox": "^3.14.0",
1016
+ "@react-types/shared": "^3.33.1",
1017
+ "@swc/helpers": "^0.5.0"
1018
+ },
1019
+ "peerDependencies": {
1020
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1021
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1022
+ }
1023
+ },
1024
+ "node_modules/@react-aria/datepicker": {
1025
+ "version": "3.16.1",
1026
+ "resolved": "https://registry.npmjs.org/@react-aria/datepicker/-/datepicker-3.16.1.tgz",
1027
+ "integrity": "sha512-6BltCVWt09yefTkGjb2gViGCwoddx9HKJiZbY9u6Es/Q+VhwNJQRtczbnZ3K32p262hIknukNf/5nZaCOI1AKA==",
1028
+ "license": "Apache-2.0",
1029
+ "dependencies": {
1030
+ "@internationalized/date": "^3.12.0",
1031
+ "@internationalized/number": "^3.6.5",
1032
+ "@internationalized/string": "^3.2.7",
1033
+ "@react-aria/focus": "^3.21.5",
1034
+ "@react-aria/form": "^3.1.5",
1035
+ "@react-aria/i18n": "^3.12.16",
1036
+ "@react-aria/interactions": "^3.27.1",
1037
+ "@react-aria/label": "^3.7.25",
1038
+ "@react-aria/spinbutton": "^3.7.2",
1039
+ "@react-aria/utils": "^3.33.1",
1040
+ "@react-stately/datepicker": "^3.16.1",
1041
+ "@react-stately/form": "^3.2.4",
1042
+ "@react-types/button": "^3.15.1",
1043
+ "@react-types/calendar": "^3.8.3",
1044
+ "@react-types/datepicker": "^3.13.5",
1045
+ "@react-types/dialog": "^3.5.24",
1046
+ "@react-types/shared": "^3.33.1",
1047
+ "@swc/helpers": "^0.5.0"
1048
+ },
1049
+ "peerDependencies": {
1050
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1051
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1052
+ }
1053
+ },
1054
+ "node_modules/@react-aria/dialog": {
1055
+ "version": "3.5.34",
1056
+ "resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.5.34.tgz",
1057
+ "integrity": "sha512-/x53Q5ynpW5Kv9637WYu7SrDfj3woSp6jJRj8l6teGnWW/iNZWYJETgzHfbxx+HPKYATCZesRoIeO2LnYIXyEA==",
1058
+ "license": "Apache-2.0",
1059
+ "dependencies": {
1060
+ "@react-aria/interactions": "^3.27.1",
1061
+ "@react-aria/overlays": "^3.31.2",
1062
+ "@react-aria/utils": "^3.33.1",
1063
+ "@react-types/dialog": "^3.5.24",
1064
+ "@react-types/shared": "^3.33.1",
1065
+ "@swc/helpers": "^0.5.0"
1066
+ },
1067
+ "peerDependencies": {
1068
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1069
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1070
+ }
1071
+ },
1072
+ "node_modules/@react-aria/disclosure": {
1073
+ "version": "3.1.3",
1074
+ "resolved": "https://registry.npmjs.org/@react-aria/disclosure/-/disclosure-3.1.3.tgz",
1075
+ "integrity": "sha512-S3k7Wqrj+x0sWcP88Z1stSr5TIZmKEmx2rU7RB1O1/jPpbw5mgKnjtiriOlTh+kwdK11FkeqgxyHzAcBAR+FMQ==",
1076
+ "license": "Apache-2.0",
1077
+ "dependencies": {
1078
+ "@react-aria/ssr": "^3.9.10",
1079
+ "@react-aria/utils": "^3.33.1",
1080
+ "@react-stately/disclosure": "^3.0.11",
1081
+ "@react-types/button": "^3.15.1",
1082
+ "@swc/helpers": "^0.5.0"
1083
+ },
1084
+ "peerDependencies": {
1085
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1086
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1087
+ }
1088
+ },
1089
+ "node_modules/@react-aria/dnd": {
1090
+ "version": "3.11.6",
1091
+ "resolved": "https://registry.npmjs.org/@react-aria/dnd/-/dnd-3.11.6.tgz",
1092
+ "integrity": "sha512-4YLHUeYJleF+moAYaYt8UZqujudPvpoaHR+QMkWIFzhfridVUhCr6ZjGWrzpSZY3r68k46TG7YCsi4IEiNnysw==",
1093
+ "license": "Apache-2.0",
1094
+ "dependencies": {
1095
+ "@internationalized/string": "^3.2.7",
1096
+ "@react-aria/i18n": "^3.12.16",
1097
+ "@react-aria/interactions": "^3.27.1",
1098
+ "@react-aria/live-announcer": "^3.4.4",
1099
+ "@react-aria/overlays": "^3.31.2",
1100
+ "@react-aria/utils": "^3.33.1",
1101
+ "@react-stately/collections": "^3.12.10",
1102
+ "@react-stately/dnd": "^3.7.4",
1103
+ "@react-types/button": "^3.15.1",
1104
+ "@react-types/shared": "^3.33.1",
1105
+ "@swc/helpers": "^0.5.0"
1106
+ },
1107
+ "peerDependencies": {
1108
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1109
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1110
+ }
1111
+ },
1112
+ "node_modules/@react-aria/focus": {
1113
+ "version": "3.21.5",
1114
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.21.5.tgz",
1115
+ "integrity": "sha512-V18fwCyf8zqgJdpLQeDU5ZRNd9TeOfBbhLgmX77Zr5ae9XwaoJ1R3SFJG1wCJX60t34AW+aLZSEEK+saQElf3Q==",
1116
+ "license": "Apache-2.0",
1117
+ "dependencies": {
1118
+ "@react-aria/interactions": "^3.27.1",
1119
+ "@react-aria/utils": "^3.33.1",
1120
+ "@react-types/shared": "^3.33.1",
1121
+ "@swc/helpers": "^0.5.0",
1122
+ "clsx": "^2.0.0"
1123
+ },
1124
+ "peerDependencies": {
1125
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1126
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1127
+ }
1128
+ },
1129
+ "node_modules/@react-aria/form": {
1130
+ "version": "3.1.5",
1131
+ "resolved": "https://registry.npmjs.org/@react-aria/form/-/form-3.1.5.tgz",
1132
+ "integrity": "sha512-BWlONgHn8hmaMkcS6AgMSLQeNqVBwqPNLhdqjDO/PCfzvV7O8NZw/dFeIzJwfG4aBfSpbHHRdXGdfrk3d8dylQ==",
1133
+ "license": "Apache-2.0",
1134
+ "dependencies": {
1135
+ "@react-aria/interactions": "^3.27.1",
1136
+ "@react-aria/utils": "^3.33.1",
1137
+ "@react-stately/form": "^3.2.4",
1138
+ "@react-types/shared": "^3.33.1",
1139
+ "@swc/helpers": "^0.5.0"
1140
+ },
1141
+ "peerDependencies": {
1142
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1143
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1144
+ }
1145
+ },
1146
+ "node_modules/@react-aria/grid": {
1147
+ "version": "3.14.8",
1148
+ "resolved": "https://registry.npmjs.org/@react-aria/grid/-/grid-3.14.8.tgz",
1149
+ "integrity": "sha512-X6rRFKDu/Kh6Sv8FBap3vjcb+z4jXkSOwkYnexIJp5kMTo5/Dqo55cCBio5B70Tanfv32Ev/6SpzYG7ryxnM9w==",
1150
+ "license": "Apache-2.0",
1151
+ "dependencies": {
1152
+ "@react-aria/focus": "^3.21.5",
1153
+ "@react-aria/i18n": "^3.12.16",
1154
+ "@react-aria/interactions": "^3.27.1",
1155
+ "@react-aria/live-announcer": "^3.4.4",
1156
+ "@react-aria/selection": "^3.27.2",
1157
+ "@react-aria/utils": "^3.33.1",
1158
+ "@react-stately/collections": "^3.12.10",
1159
+ "@react-stately/grid": "^3.11.9",
1160
+ "@react-stately/selection": "^3.20.9",
1161
+ "@react-types/checkbox": "^3.10.4",
1162
+ "@react-types/grid": "^3.3.8",
1163
+ "@react-types/shared": "^3.33.1",
1164
+ "@swc/helpers": "^0.5.0"
1165
+ },
1166
+ "peerDependencies": {
1167
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1168
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1169
+ }
1170
+ },
1171
+ "node_modules/@react-aria/gridlist": {
1172
+ "version": "3.14.4",
1173
+ "resolved": "https://registry.npmjs.org/@react-aria/gridlist/-/gridlist-3.14.4.tgz",
1174
+ "integrity": "sha512-C/SbwC0qagZatoBrCjx8iZUex9apaJ8o8iRJ9eVHz0cpj7mXg6HuuotYGmDy9q67A2hve4I693RM1Cuwqwm+PQ==",
1175
+ "license": "Apache-2.0",
1176
+ "dependencies": {
1177
+ "@react-aria/focus": "^3.21.5",
1178
+ "@react-aria/grid": "^3.14.8",
1179
+ "@react-aria/i18n": "^3.12.16",
1180
+ "@react-aria/interactions": "^3.27.1",
1181
+ "@react-aria/selection": "^3.27.2",
1182
+ "@react-aria/utils": "^3.33.1",
1183
+ "@react-stately/list": "^3.13.4",
1184
+ "@react-stately/tree": "^3.9.6",
1185
+ "@react-types/shared": "^3.33.1",
1186
+ "@swc/helpers": "^0.5.0"
1187
+ },
1188
+ "peerDependencies": {
1189
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1190
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1191
+ }
1192
+ },
1193
+ "node_modules/@react-aria/i18n": {
1194
+ "version": "3.12.16",
1195
+ "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.12.16.tgz",
1196
+ "integrity": "sha512-Km2CAz6MFQOUEaattaW+2jBdWOHUF8WX7VQoNbjlqElCP58nSaqi9yxTWUDRhAcn8/xFUnkFh4MFweNgtrHuEA==",
1197
+ "license": "Apache-2.0",
1198
+ "dependencies": {
1199
+ "@internationalized/date": "^3.12.0",
1200
+ "@internationalized/message": "^3.1.8",
1201
+ "@internationalized/number": "^3.6.5",
1202
+ "@internationalized/string": "^3.2.7",
1203
+ "@react-aria/ssr": "^3.9.10",
1204
+ "@react-aria/utils": "^3.33.1",
1205
+ "@react-types/shared": "^3.33.1",
1206
+ "@swc/helpers": "^0.5.0"
1207
+ },
1208
+ "peerDependencies": {
1209
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1210
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1211
+ }
1212
+ },
1213
+ "node_modules/@react-aria/interactions": {
1214
+ "version": "3.27.1",
1215
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.27.1.tgz",
1216
+ "integrity": "sha512-M3wLpTTmDflI0QGNK0PJNUaBXXfeBXue8ZxLMngfc1piHNiH4G5lUvWd9W14XVbqrSCVY8i8DfGrNYpyyZu0tw==",
1217
+ "license": "Apache-2.0",
1218
+ "dependencies": {
1219
+ "@react-aria/ssr": "^3.9.10",
1220
+ "@react-aria/utils": "^3.33.1",
1221
+ "@react-stately/flags": "^3.1.2",
1222
+ "@react-types/shared": "^3.33.1",
1223
+ "@swc/helpers": "^0.5.0"
1224
+ },
1225
+ "peerDependencies": {
1226
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1227
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1228
+ }
1229
+ },
1230
+ "node_modules/@react-aria/label": {
1231
+ "version": "3.7.25",
1232
+ "resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.7.25.tgz",
1233
+ "integrity": "sha512-oNK3Pqj4LDPwEbQaoM/uCip4QvQmmwGOh08VeW+vzSi6TAwf+KoWTyH/tiAeB0CHWNDK0k3e1iTygTAt4wzBmg==",
1234
+ "license": "Apache-2.0",
1235
+ "dependencies": {
1236
+ "@react-aria/utils": "^3.33.1",
1237
+ "@react-types/shared": "^3.33.1",
1238
+ "@swc/helpers": "^0.5.0"
1239
+ },
1240
+ "peerDependencies": {
1241
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1242
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1243
+ }
1244
+ },
1245
+ "node_modules/@react-aria/landmark": {
1246
+ "version": "3.0.10",
1247
+ "resolved": "https://registry.npmjs.org/@react-aria/landmark/-/landmark-3.0.10.tgz",
1248
+ "integrity": "sha512-GpNjJaI8/a6WxYDZgzTCLYSzPM6xp2pxCIQ4udiGbTCtxx13Trmm0cPABvPtzELidgolCf05em9Phr+3G0eE8A==",
1249
+ "license": "Apache-2.0",
1250
+ "dependencies": {
1251
+ "@react-aria/utils": "^3.33.1",
1252
+ "@react-types/shared": "^3.33.1",
1253
+ "@swc/helpers": "^0.5.0",
1254
+ "use-sync-external-store": "^1.6.0"
1255
+ },
1256
+ "peerDependencies": {
1257
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1258
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1259
+ }
1260
+ },
1261
+ "node_modules/@react-aria/link": {
1262
+ "version": "3.8.9",
1263
+ "resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.8.9.tgz",
1264
+ "integrity": "sha512-UaAFBfs84/Qq6TxlMWkREqqNY6SFLukot+z2Aa1kC+VyStv1kWG6sE5QLjm4SBn1Q3CGRsefhB/5+taaIbB4Pw==",
1265
+ "license": "Apache-2.0",
1266
+ "dependencies": {
1267
+ "@react-aria/interactions": "^3.27.1",
1268
+ "@react-aria/utils": "^3.33.1",
1269
+ "@react-types/link": "^3.6.7",
1270
+ "@react-types/shared": "^3.33.1",
1271
+ "@swc/helpers": "^0.5.0"
1272
+ },
1273
+ "peerDependencies": {
1274
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1275
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1276
+ }
1277
+ },
1278
+ "node_modules/@react-aria/listbox": {
1279
+ "version": "3.15.3",
1280
+ "resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.15.3.tgz",
1281
+ "integrity": "sha512-C6YgiyrHS5sbS5UBdxGMhEs+EKJYotJgGVtl9l0ySXpBUXERiHJWLOyV7a8PwkUOmepbB4FaLD7Y9EUzGkrGlw==",
1282
+ "license": "Apache-2.0",
1283
+ "dependencies": {
1284
+ "@react-aria/interactions": "^3.27.1",
1285
+ "@react-aria/label": "^3.7.25",
1286
+ "@react-aria/selection": "^3.27.2",
1287
+ "@react-aria/utils": "^3.33.1",
1288
+ "@react-stately/collections": "^3.12.10",
1289
+ "@react-stately/list": "^3.13.4",
1290
+ "@react-types/listbox": "^3.7.6",
1291
+ "@react-types/shared": "^3.33.1",
1292
+ "@swc/helpers": "^0.5.0"
1293
+ },
1294
+ "peerDependencies": {
1295
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1296
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1297
+ }
1298
+ },
1299
+ "node_modules/@react-aria/live-announcer": {
1300
+ "version": "3.4.4",
1301
+ "resolved": "https://registry.npmjs.org/@react-aria/live-announcer/-/live-announcer-3.4.4.tgz",
1302
+ "integrity": "sha512-PTTBIjNRnrdJOIRTDGNifY2d//kA7GUAwRFJNOEwSNG4FW+Bq9awqLiflw0JkpyB0VNIwou6lqKPHZVLsGWOXA==",
1303
+ "license": "Apache-2.0",
1304
+ "dependencies": {
1305
+ "@swc/helpers": "^0.5.0"
1306
+ }
1307
+ },
1308
+ "node_modules/@react-aria/menu": {
1309
+ "version": "3.21.0",
1310
+ "resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.21.0.tgz",
1311
+ "integrity": "sha512-CKTVZ4izSE1eKIti6TbTtzJAUo+WT8O4JC0XZCYDBpa0f++lD19Kz9aY+iY1buv5xGI20gAfpO474E9oEd4aQA==",
1312
+ "license": "Apache-2.0",
1313
+ "dependencies": {
1314
+ "@react-aria/focus": "^3.21.5",
1315
+ "@react-aria/i18n": "^3.12.16",
1316
+ "@react-aria/interactions": "^3.27.1",
1317
+ "@react-aria/overlays": "^3.31.2",
1318
+ "@react-aria/selection": "^3.27.2",
1319
+ "@react-aria/utils": "^3.33.1",
1320
+ "@react-stately/collections": "^3.12.10",
1321
+ "@react-stately/menu": "^3.9.11",
1322
+ "@react-stately/selection": "^3.20.9",
1323
+ "@react-stately/tree": "^3.9.6",
1324
+ "@react-types/button": "^3.15.1",
1325
+ "@react-types/menu": "^3.10.7",
1326
+ "@react-types/shared": "^3.33.1",
1327
+ "@swc/helpers": "^0.5.0"
1328
+ },
1329
+ "peerDependencies": {
1330
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1331
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1332
+ }
1333
+ },
1334
+ "node_modules/@react-aria/meter": {
1335
+ "version": "3.4.30",
1336
+ "resolved": "https://registry.npmjs.org/@react-aria/meter/-/meter-3.4.30.tgz",
1337
+ "integrity": "sha512-ZmANKW7s/Z4QGylHi46nhwtQ47T1bfMsU9MysBu7ViXXNJ03F4b6JXCJlKL5o2goQ3NbfZ68GeWamIT0BWSgtw==",
1338
+ "license": "Apache-2.0",
1339
+ "dependencies": {
1340
+ "@react-aria/progress": "^3.4.30",
1341
+ "@react-types/meter": "^3.4.15",
1342
+ "@react-types/shared": "^3.33.1",
1343
+ "@swc/helpers": "^0.5.0"
1344
+ },
1345
+ "peerDependencies": {
1346
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1347
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1348
+ }
1349
+ },
1350
+ "node_modules/@react-aria/numberfield": {
1351
+ "version": "3.12.5",
1352
+ "resolved": "https://registry.npmjs.org/@react-aria/numberfield/-/numberfield-3.12.5.tgz",
1353
+ "integrity": "sha512-Fi41IUWXEHLFIeJ/LHuZ9Azs8J/P563fZi37GSBkIq5P1pNt1rPgJJng5CNn4KsHxwqadTRUlbbZwbZraWDtRg==",
1354
+ "license": "Apache-2.0",
1355
+ "dependencies": {
1356
+ "@react-aria/i18n": "^3.12.16",
1357
+ "@react-aria/interactions": "^3.27.1",
1358
+ "@react-aria/live-announcer": "^3.4.4",
1359
+ "@react-aria/spinbutton": "^3.7.2",
1360
+ "@react-aria/textfield": "^3.18.5",
1361
+ "@react-aria/utils": "^3.33.1",
1362
+ "@react-stately/form": "^3.2.4",
1363
+ "@react-stately/numberfield": "^3.11.0",
1364
+ "@react-types/button": "^3.15.1",
1365
+ "@react-types/numberfield": "^3.8.18",
1366
+ "@react-types/shared": "^3.33.1",
1367
+ "@swc/helpers": "^0.5.0"
1368
+ },
1369
+ "peerDependencies": {
1370
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1371
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1372
+ }
1373
+ },
1374
+ "node_modules/@react-aria/overlays": {
1375
+ "version": "3.31.2",
1376
+ "resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.31.2.tgz",
1377
+ "integrity": "sha512-78HYI08r6LvcfD34gyv19ArRIjy1qxOKuXl/jYnjLDyQzD4pVb634IQWcm0zt10RdKgyuH6HTqvuDOgZTLet7Q==",
1378
+ "license": "Apache-2.0",
1379
+ "dependencies": {
1380
+ "@react-aria/focus": "^3.21.5",
1381
+ "@react-aria/i18n": "^3.12.16",
1382
+ "@react-aria/interactions": "^3.27.1",
1383
+ "@react-aria/ssr": "^3.9.10",
1384
+ "@react-aria/utils": "^3.33.1",
1385
+ "@react-aria/visually-hidden": "^3.8.31",
1386
+ "@react-stately/flags": "^3.1.2",
1387
+ "@react-stately/overlays": "^3.6.23",
1388
+ "@react-types/button": "^3.15.1",
1389
+ "@react-types/overlays": "^3.9.4",
1390
+ "@react-types/shared": "^3.33.1",
1391
+ "@swc/helpers": "^0.5.0"
1392
+ },
1393
+ "peerDependencies": {
1394
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1395
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1396
+ }
1397
+ },
1398
+ "node_modules/@react-aria/progress": {
1399
+ "version": "3.4.30",
1400
+ "resolved": "https://registry.npmjs.org/@react-aria/progress/-/progress-3.4.30.tgz",
1401
+ "integrity": "sha512-S6OWVGgluSWYSd/A6O8CVjz83eeMUfkuWSra0ewAV9bmxZ7TP9pUmD3bGdqHZEl97nt5vHGjZ3eq/x8eCmzKhA==",
1402
+ "license": "Apache-2.0",
1403
+ "dependencies": {
1404
+ "@react-aria/i18n": "^3.12.16",
1405
+ "@react-aria/label": "^3.7.25",
1406
+ "@react-aria/utils": "^3.33.1",
1407
+ "@react-types/progress": "^3.5.18",
1408
+ "@react-types/shared": "^3.33.1",
1409
+ "@swc/helpers": "^0.5.0"
1410
+ },
1411
+ "peerDependencies": {
1412
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1413
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1414
+ }
1415
+ },
1416
+ "node_modules/@react-aria/radio": {
1417
+ "version": "3.12.5",
1418
+ "resolved": "https://registry.npmjs.org/@react-aria/radio/-/radio-3.12.5.tgz",
1419
+ "integrity": "sha512-8CCJKJzfozEiWBPO9QAATG1rBGJEJ+xoqvHf9LKU2sPFGsA2/SRnLs6LB9fCG5R3spvaK1xz0any1fjWPl7x8A==",
1420
+ "license": "Apache-2.0",
1421
+ "dependencies": {
1422
+ "@react-aria/focus": "^3.21.5",
1423
+ "@react-aria/form": "^3.1.5",
1424
+ "@react-aria/i18n": "^3.12.16",
1425
+ "@react-aria/interactions": "^3.27.1",
1426
+ "@react-aria/label": "^3.7.25",
1427
+ "@react-aria/utils": "^3.33.1",
1428
+ "@react-stately/radio": "^3.11.5",
1429
+ "@react-types/radio": "^3.9.4",
1430
+ "@react-types/shared": "^3.33.1",
1431
+ "@swc/helpers": "^0.5.0"
1432
+ },
1433
+ "peerDependencies": {
1434
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1435
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1436
+ }
1437
+ },
1438
+ "node_modules/@react-aria/searchfield": {
1439
+ "version": "3.8.12",
1440
+ "resolved": "https://registry.npmjs.org/@react-aria/searchfield/-/searchfield-3.8.12.tgz",
1441
+ "integrity": "sha512-kYlUHD/+mWzNroHoR8ojUxYBoMviRZn134WaKPFjfNUGZDOEuh4XzOoj+cjdJfe6N3mwTaYu6rJQtunSHIAfhA==",
1442
+ "license": "Apache-2.0",
1443
+ "dependencies": {
1444
+ "@react-aria/i18n": "^3.12.16",
1445
+ "@react-aria/textfield": "^3.18.5",
1446
+ "@react-aria/utils": "^3.33.1",
1447
+ "@react-stately/searchfield": "^3.5.19",
1448
+ "@react-types/button": "^3.15.1",
1449
+ "@react-types/searchfield": "^3.6.8",
1450
+ "@react-types/shared": "^3.33.1",
1451
+ "@swc/helpers": "^0.5.0"
1452
+ },
1453
+ "peerDependencies": {
1454
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1455
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1456
+ }
1457
+ },
1458
+ "node_modules/@react-aria/select": {
1459
+ "version": "3.17.3",
1460
+ "resolved": "https://registry.npmjs.org/@react-aria/select/-/select-3.17.3.tgz",
1461
+ "integrity": "sha512-u0UFWw0S7q9oiSbjetDpRoLLIcC+L89uYlm+YfCrdT8ntbQgABNiJRxdVvxnhR0fR6MC9ASTTvuQnNHNn52+1A==",
1462
+ "license": "Apache-2.0",
1463
+ "dependencies": {
1464
+ "@react-aria/form": "^3.1.5",
1465
+ "@react-aria/i18n": "^3.12.16",
1466
+ "@react-aria/interactions": "^3.27.1",
1467
+ "@react-aria/label": "^3.7.25",
1468
+ "@react-aria/listbox": "^3.15.3",
1469
+ "@react-aria/menu": "^3.21.0",
1470
+ "@react-aria/selection": "^3.27.2",
1471
+ "@react-aria/utils": "^3.33.1",
1472
+ "@react-aria/visually-hidden": "^3.8.31",
1473
+ "@react-stately/select": "^3.9.2",
1474
+ "@react-types/button": "^3.15.1",
1475
+ "@react-types/select": "^3.12.2",
1476
+ "@react-types/shared": "^3.33.1",
1477
+ "@swc/helpers": "^0.5.0"
1478
+ },
1479
+ "peerDependencies": {
1480
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1481
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1482
+ }
1483
+ },
1484
+ "node_modules/@react-aria/selection": {
1485
+ "version": "3.27.2",
1486
+ "resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.27.2.tgz",
1487
+ "integrity": "sha512-GbUSSLX/ciXix95KW1g+SLM9np7iXpIZrFDSXkC6oNx1uhy18eAcuTkeZE25+SY5USVUmEzjI3m/3JoSUcebbg==",
1488
+ "license": "Apache-2.0",
1489
+ "dependencies": {
1490
+ "@react-aria/focus": "^3.21.5",
1491
+ "@react-aria/i18n": "^3.12.16",
1492
+ "@react-aria/interactions": "^3.27.1",
1493
+ "@react-aria/utils": "^3.33.1",
1494
+ "@react-stately/selection": "^3.20.9",
1495
+ "@react-types/shared": "^3.33.1",
1496
+ "@swc/helpers": "^0.5.0"
1497
+ },
1498
+ "peerDependencies": {
1499
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1500
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1501
+ }
1502
+ },
1503
+ "node_modules/@react-aria/separator": {
1504
+ "version": "3.4.16",
1505
+ "resolved": "https://registry.npmjs.org/@react-aria/separator/-/separator-3.4.16.tgz",
1506
+ "integrity": "sha512-RCUtQhDGnPxKzyG8KM79yOB0fSiEf8r/rxShidOVnGLiBW2KFmBa22/Gfc4jnqg/keN3dxvkSGoqmeXgctyp6g==",
1507
+ "license": "Apache-2.0",
1508
+ "dependencies": {
1509
+ "@react-aria/utils": "^3.33.1",
1510
+ "@react-types/shared": "^3.33.1",
1511
+ "@swc/helpers": "^0.5.0"
1512
+ },
1513
+ "peerDependencies": {
1514
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1515
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1516
+ }
1517
+ },
1518
+ "node_modules/@react-aria/slider": {
1519
+ "version": "3.8.5",
1520
+ "resolved": "https://registry.npmjs.org/@react-aria/slider/-/slider-3.8.5.tgz",
1521
+ "integrity": "sha512-gqkJxznk141mE0JamXF5CXml9PDbPkBz8dyKlihtWHWX4yhEbVYdC9J0otE7iCR3zx69Bm7WHoTGL0BsdpKzVA==",
1522
+ "license": "Apache-2.0",
1523
+ "dependencies": {
1524
+ "@react-aria/i18n": "^3.12.16",
1525
+ "@react-aria/interactions": "^3.27.1",
1526
+ "@react-aria/label": "^3.7.25",
1527
+ "@react-aria/utils": "^3.33.1",
1528
+ "@react-stately/slider": "^3.7.5",
1529
+ "@react-types/shared": "^3.33.1",
1530
+ "@react-types/slider": "^3.8.4",
1531
+ "@swc/helpers": "^0.5.0"
1532
+ },
1533
+ "peerDependencies": {
1534
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1535
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1536
+ }
1537
+ },
1538
+ "node_modules/@react-aria/spinbutton": {
1539
+ "version": "3.7.2",
1540
+ "resolved": "https://registry.npmjs.org/@react-aria/spinbutton/-/spinbutton-3.7.2.tgz",
1541
+ "integrity": "sha512-adjE1wNCWlugvAtVXlXWPtIG9JWurEgYVn1Eeyh19x038+oXGvOsOAoKCXM+SnGleTWQ9J7pEZITFoEI3cVfAw==",
1542
+ "license": "Apache-2.0",
1543
+ "dependencies": {
1544
+ "@react-aria/i18n": "^3.12.16",
1545
+ "@react-aria/live-announcer": "^3.4.4",
1546
+ "@react-aria/utils": "^3.33.1",
1547
+ "@react-types/button": "^3.15.1",
1548
+ "@react-types/shared": "^3.33.1",
1549
+ "@swc/helpers": "^0.5.0"
1550
+ },
1551
+ "peerDependencies": {
1552
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1553
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1554
+ }
1555
+ },
1556
+ "node_modules/@react-aria/ssr": {
1557
+ "version": "3.9.10",
1558
+ "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.10.tgz",
1559
+ "integrity": "sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==",
1560
+ "license": "Apache-2.0",
1561
+ "dependencies": {
1562
+ "@swc/helpers": "^0.5.0"
1563
+ },
1564
+ "engines": {
1565
+ "node": ">= 12"
1566
+ },
1567
+ "peerDependencies": {
1568
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1569
+ }
1570
+ },
1571
+ "node_modules/@react-aria/switch": {
1572
+ "version": "3.7.11",
1573
+ "resolved": "https://registry.npmjs.org/@react-aria/switch/-/switch-3.7.11.tgz",
1574
+ "integrity": "sha512-dYVX71HiepBsKyeMaQgHbhqI+MQ3MVoTd5EnTbUjefIBnmQZavYj1/e4NUiUI4Ix+/C0HxL8ibDAv4NlSW3eLQ==",
1575
+ "license": "Apache-2.0",
1576
+ "dependencies": {
1577
+ "@react-aria/toggle": "^3.12.5",
1578
+ "@react-stately/toggle": "^3.9.5",
1579
+ "@react-types/shared": "^3.33.1",
1580
+ "@react-types/switch": "^3.5.17",
1581
+ "@swc/helpers": "^0.5.0"
1582
+ },
1583
+ "peerDependencies": {
1584
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1585
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1586
+ }
1587
+ },
1588
+ "node_modules/@react-aria/table": {
1589
+ "version": "3.17.11",
1590
+ "resolved": "https://registry.npmjs.org/@react-aria/table/-/table-3.17.11.tgz",
1591
+ "integrity": "sha512-GkYmWPiW3OM+FUZxdS33teHXHXde7TjHuYgDDaG9phvg6cQTQjGilJozrzA3OfftTOq5VB8XcKTIQW3c0tpYsQ==",
1592
+ "license": "Apache-2.0",
1593
+ "dependencies": {
1594
+ "@react-aria/focus": "^3.21.5",
1595
+ "@react-aria/grid": "^3.14.8",
1596
+ "@react-aria/i18n": "^3.12.16",
1597
+ "@react-aria/interactions": "^3.27.1",
1598
+ "@react-aria/live-announcer": "^3.4.4",
1599
+ "@react-aria/utils": "^3.33.1",
1600
+ "@react-aria/visually-hidden": "^3.8.31",
1601
+ "@react-stately/collections": "^3.12.10",
1602
+ "@react-stately/flags": "^3.1.2",
1603
+ "@react-stately/table": "^3.15.4",
1604
+ "@react-types/checkbox": "^3.10.4",
1605
+ "@react-types/grid": "^3.3.8",
1606
+ "@react-types/shared": "^3.33.1",
1607
+ "@react-types/table": "^3.13.6",
1608
+ "@swc/helpers": "^0.5.0"
1609
+ },
1610
+ "peerDependencies": {
1611
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1612
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1613
+ }
1614
+ },
1615
+ "node_modules/@react-aria/tabs": {
1616
+ "version": "3.11.1",
1617
+ "resolved": "https://registry.npmjs.org/@react-aria/tabs/-/tabs-3.11.1.tgz",
1618
+ "integrity": "sha512-3Ppz7yaEDW9L7p9PE9yNOl5caLwNnnLQqI+MX/dwbWlw9HluHS7uIjb21oswNl6UbSxAWyENOka45+KN4Fkh7A==",
1619
+ "license": "Apache-2.0",
1620
+ "dependencies": {
1621
+ "@react-aria/focus": "^3.21.5",
1622
+ "@react-aria/i18n": "^3.12.16",
1623
+ "@react-aria/selection": "^3.27.2",
1624
+ "@react-aria/utils": "^3.33.1",
1625
+ "@react-stately/tabs": "^3.8.9",
1626
+ "@react-types/shared": "^3.33.1",
1627
+ "@react-types/tabs": "^3.3.22",
1628
+ "@swc/helpers": "^0.5.0"
1629
+ },
1630
+ "peerDependencies": {
1631
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1632
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1633
+ }
1634
+ },
1635
+ "node_modules/@react-aria/tag": {
1636
+ "version": "3.8.1",
1637
+ "resolved": "https://registry.npmjs.org/@react-aria/tag/-/tag-3.8.1.tgz",
1638
+ "integrity": "sha512-VonpO++F8afXGDWc9VUxAc2wefyJpp1n9OGpbnB7zmqWiuPwO/RixjUdcH7iJkiC4vADwx9uLnhyD6kcwGV2ig==",
1639
+ "license": "Apache-2.0",
1640
+ "dependencies": {
1641
+ "@react-aria/gridlist": "^3.14.4",
1642
+ "@react-aria/i18n": "^3.12.16",
1643
+ "@react-aria/interactions": "^3.27.1",
1644
+ "@react-aria/label": "^3.7.25",
1645
+ "@react-aria/selection": "^3.27.2",
1646
+ "@react-aria/utils": "^3.33.1",
1647
+ "@react-stately/list": "^3.13.4",
1648
+ "@react-types/button": "^3.15.1",
1649
+ "@react-types/shared": "^3.33.1",
1650
+ "@swc/helpers": "^0.5.0"
1651
+ },
1652
+ "peerDependencies": {
1653
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1654
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1655
+ }
1656
+ },
1657
+ "node_modules/@react-aria/textfield": {
1658
+ "version": "3.18.5",
1659
+ "resolved": "https://registry.npmjs.org/@react-aria/textfield/-/textfield-3.18.5.tgz",
1660
+ "integrity": "sha512-ttwVSuwoV3RPaG2k2QzEXKeQNQ3mbdl/2yy6I4Tjrn1ZNkYHfVyJJ26AjenfSmj1kkTQoSAfZ8p+7rZp4n0xoQ==",
1661
+ "license": "Apache-2.0",
1662
+ "dependencies": {
1663
+ "@react-aria/form": "^3.1.5",
1664
+ "@react-aria/interactions": "^3.27.1",
1665
+ "@react-aria/label": "^3.7.25",
1666
+ "@react-aria/utils": "^3.33.1",
1667
+ "@react-stately/form": "^3.2.4",
1668
+ "@react-stately/utils": "^3.11.0",
1669
+ "@react-types/shared": "^3.33.1",
1670
+ "@react-types/textfield": "^3.12.8",
1671
+ "@swc/helpers": "^0.5.0"
1672
+ },
1673
+ "peerDependencies": {
1674
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1675
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1676
+ }
1677
+ },
1678
+ "node_modules/@react-aria/toast": {
1679
+ "version": "3.0.11",
1680
+ "resolved": "https://registry.npmjs.org/@react-aria/toast/-/toast-3.0.11.tgz",
1681
+ "integrity": "sha512-2DjZjBAvm8/CWbnZ6s7LjkYCkULKtjMve6GvhPTq98AthuEDLEiBvM1wa3xdecCRhZyRT1g6DXqVca0EfZ9fJA==",
1682
+ "license": "Apache-2.0",
1683
+ "dependencies": {
1684
+ "@react-aria/i18n": "^3.12.16",
1685
+ "@react-aria/interactions": "^3.27.1",
1686
+ "@react-aria/landmark": "^3.0.10",
1687
+ "@react-aria/utils": "^3.33.1",
1688
+ "@react-stately/toast": "^3.1.3",
1689
+ "@react-types/button": "^3.15.1",
1690
+ "@react-types/shared": "^3.33.1",
1691
+ "@swc/helpers": "^0.5.0"
1692
+ },
1693
+ "peerDependencies": {
1694
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1695
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1696
+ }
1697
+ },
1698
+ "node_modules/@react-aria/toggle": {
1699
+ "version": "3.12.5",
1700
+ "resolved": "https://registry.npmjs.org/@react-aria/toggle/-/toggle-3.12.5.tgz",
1701
+ "integrity": "sha512-XXVFLzcV8fr9mz7y/wfxEAhWvaBZ9jSfhCMuxH2bsivO7nTcMJ1jb4g2xJNwZgne17bMWNc7mKvW5dbsdlI6BA==",
1702
+ "license": "Apache-2.0",
1703
+ "dependencies": {
1704
+ "@react-aria/interactions": "^3.27.1",
1705
+ "@react-aria/utils": "^3.33.1",
1706
+ "@react-stately/toggle": "^3.9.5",
1707
+ "@react-types/checkbox": "^3.10.4",
1708
+ "@react-types/shared": "^3.33.1",
1709
+ "@swc/helpers": "^0.5.0"
1710
+ },
1711
+ "peerDependencies": {
1712
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1713
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1714
+ }
1715
+ },
1716
+ "node_modules/@react-aria/toolbar": {
1717
+ "version": "3.0.0-beta.24",
1718
+ "resolved": "https://registry.npmjs.org/@react-aria/toolbar/-/toolbar-3.0.0-beta.24.tgz",
1719
+ "integrity": "sha512-B2Rmpko7Ghi2RbNfsGdbR7I+RQBDhPGVE4bU3/EwHz+P/vNe5LyGPTeSwqaOMsQTF9lKNCkY8424dVTCr6RUMg==",
1720
+ "license": "Apache-2.0",
1721
+ "dependencies": {
1722
+ "@react-aria/focus": "^3.21.5",
1723
+ "@react-aria/i18n": "^3.12.16",
1724
+ "@react-aria/utils": "^3.33.1",
1725
+ "@react-types/shared": "^3.33.1",
1726
+ "@swc/helpers": "^0.5.0"
1727
+ },
1728
+ "peerDependencies": {
1729
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1730
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1731
+ }
1732
+ },
1733
+ "node_modules/@react-aria/tooltip": {
1734
+ "version": "3.9.2",
1735
+ "resolved": "https://registry.npmjs.org/@react-aria/tooltip/-/tooltip-3.9.2.tgz",
1736
+ "integrity": "sha512-VrgkPwHiEnAnBhoQ4W7kfry/RfVuRWrUPaJSp0+wKM6u0gg2tmn7OFRDXTxBAm/omQUguIdIjRWg7sf3zHH82A==",
1737
+ "license": "Apache-2.0",
1738
+ "dependencies": {
1739
+ "@react-aria/interactions": "^3.27.1",
1740
+ "@react-aria/utils": "^3.33.1",
1741
+ "@react-stately/tooltip": "^3.5.11",
1742
+ "@react-types/shared": "^3.33.1",
1743
+ "@react-types/tooltip": "^3.5.2",
1744
+ "@swc/helpers": "^0.5.0"
1745
+ },
1746
+ "peerDependencies": {
1747
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1748
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1749
+ }
1750
+ },
1751
+ "node_modules/@react-aria/tree": {
1752
+ "version": "3.1.7",
1753
+ "resolved": "https://registry.npmjs.org/@react-aria/tree/-/tree-3.1.7.tgz",
1754
+ "integrity": "sha512-C54yH5NmsOFa2Q+cg6B1BPr5KUlU9vLIoBnVrgrH237FRSXQPIbcM4VpmITAHq1VR7w6ayyS1hgTwFxo67ykWQ==",
1755
+ "license": "Apache-2.0",
1756
+ "dependencies": {
1757
+ "@react-aria/gridlist": "^3.14.4",
1758
+ "@react-aria/i18n": "^3.12.16",
1759
+ "@react-aria/selection": "^3.27.2",
1760
+ "@react-aria/utils": "^3.33.1",
1761
+ "@react-stately/tree": "^3.9.6",
1762
+ "@react-types/button": "^3.15.1",
1763
+ "@react-types/shared": "^3.33.1",
1764
+ "@swc/helpers": "^0.5.0"
1765
+ },
1766
+ "peerDependencies": {
1767
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1768
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1769
+ }
1770
+ },
1771
+ "node_modules/@react-aria/utils": {
1772
+ "version": "3.33.1",
1773
+ "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.33.1.tgz",
1774
+ "integrity": "sha512-kIx1Sj6bbAT0pdqCegHuPanR9zrLn5zMRiM7LN12rgRf55S19ptd9g3ncahArifYTRkfEU9VIn+q0HjfMqS9/w==",
1775
+ "license": "Apache-2.0",
1776
+ "dependencies": {
1777
+ "@react-aria/ssr": "^3.9.10",
1778
+ "@react-stately/flags": "^3.1.2",
1779
+ "@react-stately/utils": "^3.11.0",
1780
+ "@react-types/shared": "^3.33.1",
1781
+ "@swc/helpers": "^0.5.0",
1782
+ "clsx": "^2.0.0"
1783
+ },
1784
+ "peerDependencies": {
1785
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1786
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1787
+ }
1788
+ },
1789
+ "node_modules/@react-aria/virtualizer": {
1790
+ "version": "4.1.13",
1791
+ "resolved": "https://registry.npmjs.org/@react-aria/virtualizer/-/virtualizer-4.1.13.tgz",
1792
+ "integrity": "sha512-d5KS+p8GXGNRbGPRE/N6jtth3et3KssQIz52h2+CAoAh7C3vvR64kkTaGdeywClvM+fSo8FxJuBrdfQvqC2ktQ==",
1793
+ "license": "Apache-2.0",
1794
+ "dependencies": {
1795
+ "@react-aria/i18n": "^3.12.16",
1796
+ "@react-aria/interactions": "^3.27.1",
1797
+ "@react-aria/utils": "^3.33.1",
1798
+ "@react-stately/virtualizer": "^4.4.6",
1799
+ "@react-types/shared": "^3.33.1",
1800
+ "@swc/helpers": "^0.5.0"
1801
+ },
1802
+ "peerDependencies": {
1803
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1804
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1805
+ }
1806
+ },
1807
+ "node_modules/@react-aria/visually-hidden": {
1808
+ "version": "3.8.31",
1809
+ "resolved": "https://registry.npmjs.org/@react-aria/visually-hidden/-/visually-hidden-3.8.31.tgz",
1810
+ "integrity": "sha512-RTOHHa4n56a9A3criThqFHBifvZoV71+MCkSuNP2cKO662SUWjqKkd0tJt/mBRMEJPkys8K7Eirp6T8Wt5FFRA==",
1811
+ "license": "Apache-2.0",
1812
+ "dependencies": {
1813
+ "@react-aria/interactions": "^3.27.1",
1814
+ "@react-aria/utils": "^3.33.1",
1815
+ "@react-types/shared": "^3.33.1",
1816
+ "@swc/helpers": "^0.5.0"
1817
+ },
1818
+ "peerDependencies": {
1819
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
1820
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1821
+ }
1822
+ },
1823
+ "node_modules/@react-stately/autocomplete": {
1824
+ "version": "3.0.0-beta.4",
1825
+ "resolved": "https://registry.npmjs.org/@react-stately/autocomplete/-/autocomplete-3.0.0-beta.4.tgz",
1826
+ "integrity": "sha512-K2Uy7XEdseFvgwRQ8CyrYEHMupjVKEszddOapP8deNz4hntYvT1aRm0m+sKa5Kl/4kvg9c/3NZpQcrky/vRZIg==",
1827
+ "license": "Apache-2.0",
1828
+ "dependencies": {
1829
+ "@react-stately/utils": "^3.11.0",
1830
+ "@swc/helpers": "^0.5.0"
1831
+ },
1832
+ "peerDependencies": {
1833
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1834
+ }
1835
+ },
1836
+ "node_modules/@react-stately/calendar": {
1837
+ "version": "3.9.3",
1838
+ "resolved": "https://registry.npmjs.org/@react-stately/calendar/-/calendar-3.9.3.tgz",
1839
+ "integrity": "sha512-uw7fCZXoypSBBUsVkbNvJMQWTihZReRbyLIGG3o/ZM630N3OCZhb/h4Uxke4pNu7n527H0V1bAnZgAldIzOYqg==",
1840
+ "license": "Apache-2.0",
1841
+ "dependencies": {
1842
+ "@internationalized/date": "^3.12.0",
1843
+ "@react-stately/utils": "^3.11.0",
1844
+ "@react-types/calendar": "^3.8.3",
1845
+ "@react-types/shared": "^3.33.1",
1846
+ "@swc/helpers": "^0.5.0"
1847
+ },
1848
+ "peerDependencies": {
1849
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1850
+ }
1851
+ },
1852
+ "node_modules/@react-stately/checkbox": {
1853
+ "version": "3.7.5",
1854
+ "resolved": "https://registry.npmjs.org/@react-stately/checkbox/-/checkbox-3.7.5.tgz",
1855
+ "integrity": "sha512-K5R5ted7AxLB3sDkuVAazUdyRMraFT1imVqij2GuAiOUFvsZvbuocnDuFkBVKojyV3GpqLBvViV8IaCMc4hNIw==",
1856
+ "license": "Apache-2.0",
1857
+ "dependencies": {
1858
+ "@react-stately/form": "^3.2.4",
1859
+ "@react-stately/utils": "^3.11.0",
1860
+ "@react-types/checkbox": "^3.10.4",
1861
+ "@react-types/shared": "^3.33.1",
1862
+ "@swc/helpers": "^0.5.0"
1863
+ },
1864
+ "peerDependencies": {
1865
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1866
+ }
1867
+ },
1868
+ "node_modules/@react-stately/collections": {
1869
+ "version": "3.12.10",
1870
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.10.tgz",
1871
+ "integrity": "sha512-wmF9VxJDyBujBuQ76vXj2g/+bnnj8fx5DdXgRmyfkkYhPB46+g2qnjbVGEvipo7bJuGxDftCUC4SN7l7xqUWfg==",
1872
+ "license": "Apache-2.0",
1873
+ "dependencies": {
1874
+ "@react-types/shared": "^3.33.1",
1875
+ "@swc/helpers": "^0.5.0"
1876
+ },
1877
+ "peerDependencies": {
1878
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1879
+ }
1880
+ },
1881
+ "node_modules/@react-stately/color": {
1882
+ "version": "3.9.5",
1883
+ "resolved": "https://registry.npmjs.org/@react-stately/color/-/color-3.9.5.tgz",
1884
+ "integrity": "sha512-8pZxzXWDRuglzDwyTG7mLw2LQMCHIVNbVc9YmbsxbOjAL+lOqszo60KzyaFKVxeDQczSvrNTHcQZqlbNIC0eyQ==",
1885
+ "license": "Apache-2.0",
1886
+ "dependencies": {
1887
+ "@internationalized/number": "^3.6.5",
1888
+ "@internationalized/string": "^3.2.7",
1889
+ "@react-stately/form": "^3.2.4",
1890
+ "@react-stately/numberfield": "^3.11.0",
1891
+ "@react-stately/slider": "^3.7.5",
1892
+ "@react-stately/utils": "^3.11.0",
1893
+ "@react-types/color": "^3.1.4",
1894
+ "@react-types/shared": "^3.33.1",
1895
+ "@swc/helpers": "^0.5.0"
1896
+ },
1897
+ "peerDependencies": {
1898
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1899
+ }
1900
+ },
1901
+ "node_modules/@react-stately/combobox": {
1902
+ "version": "3.13.0",
1903
+ "resolved": "https://registry.npmjs.org/@react-stately/combobox/-/combobox-3.13.0.tgz",
1904
+ "integrity": "sha512-dX9g/cK1hjLRjcbWVF6keHxTQDGhKGB2QAgPhWcBmOK3qJv+2dQqsJ6YCGWn/Y2N2acoEseLrAA7+Qe4HWV9cg==",
1905
+ "license": "Apache-2.0",
1906
+ "dependencies": {
1907
+ "@react-stately/collections": "^3.12.10",
1908
+ "@react-stately/form": "^3.2.4",
1909
+ "@react-stately/list": "^3.13.4",
1910
+ "@react-stately/overlays": "^3.6.23",
1911
+ "@react-stately/utils": "^3.11.0",
1912
+ "@react-types/combobox": "^3.14.0",
1913
+ "@react-types/shared": "^3.33.1",
1914
+ "@swc/helpers": "^0.5.0"
1915
+ },
1916
+ "peerDependencies": {
1917
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1918
+ }
1919
+ },
1920
+ "node_modules/@react-stately/data": {
1921
+ "version": "3.15.2",
1922
+ "resolved": "https://registry.npmjs.org/@react-stately/data/-/data-3.15.2.tgz",
1923
+ "integrity": "sha512-BsmeeGgFwOGwo0g9Waprdyt+846n3KhKggZfpEnp5+sC4dE4uW1VIYpdyupMfr3bQcmX123q6TegfNP3eszrUA==",
1924
+ "license": "Apache-2.0",
1925
+ "dependencies": {
1926
+ "@react-types/shared": "^3.33.1",
1927
+ "@swc/helpers": "^0.5.0"
1928
+ },
1929
+ "peerDependencies": {
1930
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1931
+ }
1932
+ },
1933
+ "node_modules/@react-stately/datepicker": {
1934
+ "version": "3.16.1",
1935
+ "resolved": "https://registry.npmjs.org/@react-stately/datepicker/-/datepicker-3.16.1.tgz",
1936
+ "integrity": "sha512-BtAMDvxd1OZxkxjqq5tN5TYmp6Hm8+o3+IDA4qmem2/pfQfVbOZeWS2WitcPBImj4n4T+W1A5+PI7mT/6DUBVg==",
1937
+ "license": "Apache-2.0",
1938
+ "dependencies": {
1939
+ "@internationalized/date": "^3.12.0",
1940
+ "@internationalized/number": "^3.6.5",
1941
+ "@internationalized/string": "^3.2.7",
1942
+ "@react-stately/form": "^3.2.4",
1943
+ "@react-stately/overlays": "^3.6.23",
1944
+ "@react-stately/utils": "^3.11.0",
1945
+ "@react-types/datepicker": "^3.13.5",
1946
+ "@react-types/shared": "^3.33.1",
1947
+ "@swc/helpers": "^0.5.0"
1948
+ },
1949
+ "peerDependencies": {
1950
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1951
+ }
1952
+ },
1953
+ "node_modules/@react-stately/disclosure": {
1954
+ "version": "3.0.11",
1955
+ "resolved": "https://registry.npmjs.org/@react-stately/disclosure/-/disclosure-3.0.11.tgz",
1956
+ "integrity": "sha512-/KjB/0HkxGWbhFAPztCP411LUKZCx9k8cKukrlGqrUWyvrcXlmza90j0g/CuxACBoV+DJP9V+4q+8ide0x750A==",
1957
+ "license": "Apache-2.0",
1958
+ "dependencies": {
1959
+ "@react-stately/utils": "^3.11.0",
1960
+ "@react-types/shared": "^3.33.1",
1961
+ "@swc/helpers": "^0.5.0"
1962
+ },
1963
+ "peerDependencies": {
1964
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1965
+ }
1966
+ },
1967
+ "node_modules/@react-stately/dnd": {
1968
+ "version": "3.7.4",
1969
+ "resolved": "https://registry.npmjs.org/@react-stately/dnd/-/dnd-3.7.4.tgz",
1970
+ "integrity": "sha512-YD0TVR5JkvTqskc1ouBpVKs6t/QS4RYCIyu8Ug8RgO122iIizuf2pfKnRLjYMdu5lXzBXGaIgd49dvnLzEXHIw==",
1971
+ "license": "Apache-2.0",
1972
+ "dependencies": {
1973
+ "@react-stately/selection": "^3.20.9",
1974
+ "@react-types/shared": "^3.33.1",
1975
+ "@swc/helpers": "^0.5.0"
1976
+ },
1977
+ "peerDependencies": {
1978
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
1979
+ }
1980
+ },
1981
+ "node_modules/@react-stately/flags": {
1982
+ "version": "3.1.2",
1983
+ "resolved": "https://registry.npmjs.org/@react-stately/flags/-/flags-3.1.2.tgz",
1984
+ "integrity": "sha512-2HjFcZx1MyQXoPqcBGALwWWmgFVUk2TuKVIQxCbRq7fPyWXIl6VHcakCLurdtYC2Iks7zizvz0Idv48MQ38DWg==",
1985
+ "license": "Apache-2.0",
1986
+ "dependencies": {
1987
+ "@swc/helpers": "^0.5.0"
1988
+ }
1989
+ },
1990
+ "node_modules/@react-stately/form": {
1991
+ "version": "3.2.4",
1992
+ "resolved": "https://registry.npmjs.org/@react-stately/form/-/form-3.2.4.tgz",
1993
+ "integrity": "sha512-qNBzun8SbLdgahryhKLqL1eqP+MXY6as82sVXYOOvUYLzgU5uuN8mObxYlxJgMI5akSdQJQV3RzyfVobPRE7Kw==",
1994
+ "license": "Apache-2.0",
1995
+ "dependencies": {
1996
+ "@react-types/shared": "^3.33.1",
1997
+ "@swc/helpers": "^0.5.0"
1998
+ },
1999
+ "peerDependencies": {
2000
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2001
+ }
2002
+ },
2003
+ "node_modules/@react-stately/grid": {
2004
+ "version": "3.11.9",
2005
+ "resolved": "https://registry.npmjs.org/@react-stately/grid/-/grid-3.11.9.tgz",
2006
+ "integrity": "sha512-qQY6F+27iZRn30dt0ZOrSetUmbmNJ0pLe9Weuqw3+XDVSuWT+2O/rO1UUYeK+mO0Acjzdv+IWiYbu9RKf2wS9w==",
2007
+ "license": "Apache-2.0",
2008
+ "dependencies": {
2009
+ "@react-stately/collections": "^3.12.10",
2010
+ "@react-stately/selection": "^3.20.9",
2011
+ "@react-types/grid": "^3.3.8",
2012
+ "@react-types/shared": "^3.33.1",
2013
+ "@swc/helpers": "^0.5.0"
2014
+ },
2015
+ "peerDependencies": {
2016
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2017
+ }
2018
+ },
2019
+ "node_modules/@react-stately/layout": {
2020
+ "version": "4.6.0",
2021
+ "resolved": "https://registry.npmjs.org/@react-stately/layout/-/layout-4.6.0.tgz",
2022
+ "integrity": "sha512-kBenEsP03nh5rKgfqlVMPcoKTJv0v92CTvrAb5gYY8t9g8LOwzdL89Yannq7f5xv8LFck/MmRQlotpMt2InETg==",
2023
+ "license": "Apache-2.0",
2024
+ "dependencies": {
2025
+ "@react-stately/collections": "^3.12.10",
2026
+ "@react-stately/table": "^3.15.4",
2027
+ "@react-stately/virtualizer": "^4.4.6",
2028
+ "@react-types/grid": "^3.3.8",
2029
+ "@react-types/shared": "^3.33.1",
2030
+ "@react-types/table": "^3.13.6",
2031
+ "@swc/helpers": "^0.5.0"
2032
+ },
2033
+ "peerDependencies": {
2034
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
2035
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2036
+ }
2037
+ },
2038
+ "node_modules/@react-stately/list": {
2039
+ "version": "3.13.4",
2040
+ "resolved": "https://registry.npmjs.org/@react-stately/list/-/list-3.13.4.tgz",
2041
+ "integrity": "sha512-HHYSjA9VG7FPSAtpXAjQyM/V7qFHWGg88WmMrDt5QDlTBexwPuH0oFLnW0qaVZpAIxuWIsutZfxRAnme/NhhAA==",
2042
+ "license": "Apache-2.0",
2043
+ "dependencies": {
2044
+ "@react-stately/collections": "^3.12.10",
2045
+ "@react-stately/selection": "^3.20.9",
2046
+ "@react-stately/utils": "^3.11.0",
2047
+ "@react-types/shared": "^3.33.1",
2048
+ "@swc/helpers": "^0.5.0"
2049
+ },
2050
+ "peerDependencies": {
2051
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2052
+ }
2053
+ },
2054
+ "node_modules/@react-stately/menu": {
2055
+ "version": "3.9.11",
2056
+ "resolved": "https://registry.npmjs.org/@react-stately/menu/-/menu-3.9.11.tgz",
2057
+ "integrity": "sha512-vYkpO9uV2OUecsIkrOc+Urdl/s1xw/ibNH/UXsp4PtjMnS6mK9q2kXZTM3WvMAKoh12iveUO+YkYCZQshmFLHQ==",
2058
+ "license": "Apache-2.0",
2059
+ "dependencies": {
2060
+ "@react-stately/overlays": "^3.6.23",
2061
+ "@react-types/menu": "^3.10.7",
2062
+ "@react-types/shared": "^3.33.1",
2063
+ "@swc/helpers": "^0.5.0"
2064
+ },
2065
+ "peerDependencies": {
2066
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2067
+ }
2068
+ },
2069
+ "node_modules/@react-stately/numberfield": {
2070
+ "version": "3.11.0",
2071
+ "resolved": "https://registry.npmjs.org/@react-stately/numberfield/-/numberfield-3.11.0.tgz",
2072
+ "integrity": "sha512-rxfC047vL0LP4tanjinfjKAriAvdVL57Um5RUL5nHML8IOWCB3TBxegQkJ6to6goScC/oZhd0/Y2LSaiRuKbNw==",
2073
+ "license": "Apache-2.0",
2074
+ "dependencies": {
2075
+ "@internationalized/number": "^3.6.5",
2076
+ "@react-stately/form": "^3.2.4",
2077
+ "@react-stately/utils": "^3.11.0",
2078
+ "@react-types/numberfield": "^3.8.18",
2079
+ "@swc/helpers": "^0.5.0"
2080
+ },
2081
+ "peerDependencies": {
2082
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2083
+ }
2084
+ },
2085
+ "node_modules/@react-stately/overlays": {
2086
+ "version": "3.6.23",
2087
+ "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.23.tgz",
2088
+ "integrity": "sha512-RzWxots9A6gAzQMP4s8hOAHV7SbJRTFSlQbb6ly1nkWQXacOSZSFNGsKOaS0eIatfNPlNnW4NIkgtGws5UYzfw==",
2089
+ "license": "Apache-2.0",
2090
+ "dependencies": {
2091
+ "@react-stately/utils": "^3.11.0",
2092
+ "@react-types/overlays": "^3.9.4",
2093
+ "@swc/helpers": "^0.5.0"
2094
+ },
2095
+ "peerDependencies": {
2096
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2097
+ }
2098
+ },
2099
+ "node_modules/@react-stately/radio": {
2100
+ "version": "3.11.5",
2101
+ "resolved": "https://registry.npmjs.org/@react-stately/radio/-/radio-3.11.5.tgz",
2102
+ "integrity": "sha512-QxA779S4ea5icQ0ja7CeiNzY1cj7c9G9TN0m7maAIGiTSinZl2Ia8naZJ0XcbRRp+LBll7RFEdekne15TjvS/w==",
2103
+ "license": "Apache-2.0",
2104
+ "dependencies": {
2105
+ "@react-stately/form": "^3.2.4",
2106
+ "@react-stately/utils": "^3.11.0",
2107
+ "@react-types/radio": "^3.9.4",
2108
+ "@react-types/shared": "^3.33.1",
2109
+ "@swc/helpers": "^0.5.0"
2110
+ },
2111
+ "peerDependencies": {
2112
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2113
+ }
2114
+ },
2115
+ "node_modules/@react-stately/searchfield": {
2116
+ "version": "3.5.19",
2117
+ "resolved": "https://registry.npmjs.org/@react-stately/searchfield/-/searchfield-3.5.19.tgz",
2118
+ "integrity": "sha512-URllgjbtTQEaOCfddbHpJSPKOzG3pE3ajQHJ7Df8qCoHTjKfL6hnm/vp7X5sxPaZaN7VLZ5kAQxTE8hpo6s0+A==",
2119
+ "license": "Apache-2.0",
2120
+ "dependencies": {
2121
+ "@react-stately/utils": "^3.11.0",
2122
+ "@react-types/searchfield": "^3.6.8",
2123
+ "@swc/helpers": "^0.5.0"
2124
+ },
2125
+ "peerDependencies": {
2126
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2127
+ }
2128
+ },
2129
+ "node_modules/@react-stately/select": {
2130
+ "version": "3.9.2",
2131
+ "resolved": "https://registry.npmjs.org/@react-stately/select/-/select-3.9.2.tgz",
2132
+ "integrity": "sha512-oWn0bijuusp8YI7FRM/wgtPVqiIrgU/ZUfLKe/qJUmT8D+JFaMAJnyrAzKpx98TrgamgtXynF78ccpopPhgrKQ==",
2133
+ "license": "Apache-2.0",
2134
+ "dependencies": {
2135
+ "@react-stately/form": "^3.2.4",
2136
+ "@react-stately/list": "^3.13.4",
2137
+ "@react-stately/overlays": "^3.6.23",
2138
+ "@react-stately/utils": "^3.11.0",
2139
+ "@react-types/select": "^3.12.2",
2140
+ "@react-types/shared": "^3.33.1",
2141
+ "@swc/helpers": "^0.5.0"
2142
+ },
2143
+ "peerDependencies": {
2144
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2145
+ }
2146
+ },
2147
+ "node_modules/@react-stately/selection": {
2148
+ "version": "3.20.9",
2149
+ "resolved": "https://registry.npmjs.org/@react-stately/selection/-/selection-3.20.9.tgz",
2150
+ "integrity": "sha512-RhxRR5Wovg9EVi3pq7gBPK2BoKmP59tOXDMh2r1PbnGevg/7TNdR67DCEblcmXwHuBNS46ELfKdd0XGHqmS8nQ==",
2151
+ "license": "Apache-2.0",
2152
+ "dependencies": {
2153
+ "@react-stately/collections": "^3.12.10",
2154
+ "@react-stately/utils": "^3.11.0",
2155
+ "@react-types/shared": "^3.33.1",
2156
+ "@swc/helpers": "^0.5.0"
2157
+ },
2158
+ "peerDependencies": {
2159
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2160
+ }
2161
+ },
2162
+ "node_modules/@react-stately/slider": {
2163
+ "version": "3.7.5",
2164
+ "resolved": "https://registry.npmjs.org/@react-stately/slider/-/slider-3.7.5.tgz",
2165
+ "integrity": "sha512-OrQMNR5xamLYH52TXtvTgyw3EMwv+JI+1istQgEj1CHBjC9eZZqn5iNCN20tzm+uDPTH0EIGULFjjPIumqYUQg==",
2166
+ "license": "Apache-2.0",
2167
+ "dependencies": {
2168
+ "@react-stately/utils": "^3.11.0",
2169
+ "@react-types/shared": "^3.33.1",
2170
+ "@react-types/slider": "^3.8.4",
2171
+ "@swc/helpers": "^0.5.0"
2172
+ },
2173
+ "peerDependencies": {
2174
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2175
+ }
2176
+ },
2177
+ "node_modules/@react-stately/table": {
2178
+ "version": "3.15.4",
2179
+ "resolved": "https://registry.npmjs.org/@react-stately/table/-/table-3.15.4.tgz",
2180
+ "integrity": "sha512-fGaNyw3wv7JgRCNzgyDzpaaTFuSy5f4Qekch4UheMXDJX7dOeaMhUXeOfvnXCVg+BGM4ey/D82RvDOGvPy1Nww==",
2181
+ "license": "Apache-2.0",
2182
+ "dependencies": {
2183
+ "@react-stately/collections": "^3.12.10",
2184
+ "@react-stately/flags": "^3.1.2",
2185
+ "@react-stately/grid": "^3.11.9",
2186
+ "@react-stately/selection": "^3.20.9",
2187
+ "@react-stately/utils": "^3.11.0",
2188
+ "@react-types/grid": "^3.3.8",
2189
+ "@react-types/shared": "^3.33.1",
2190
+ "@react-types/table": "^3.13.6",
2191
+ "@swc/helpers": "^0.5.0"
2192
+ },
2193
+ "peerDependencies": {
2194
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2195
+ }
2196
+ },
2197
+ "node_modules/@react-stately/tabs": {
2198
+ "version": "3.8.9",
2199
+ "resolved": "https://registry.npmjs.org/@react-stately/tabs/-/tabs-3.8.9.tgz",
2200
+ "integrity": "sha512-AQ4Xrn6YzIolaVShCV9cnwOjBKPAOGP/PTp7wpSEtQbQ0HZzUDG2RG/M4baMeUB2jZ33b7ifXyPcK78o0uOftg==",
2201
+ "license": "Apache-2.0",
2202
+ "dependencies": {
2203
+ "@react-stately/list": "^3.13.4",
2204
+ "@react-types/shared": "^3.33.1",
2205
+ "@react-types/tabs": "^3.3.22",
2206
+ "@swc/helpers": "^0.5.0"
2207
+ },
2208
+ "peerDependencies": {
2209
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2210
+ }
2211
+ },
2212
+ "node_modules/@react-stately/toast": {
2213
+ "version": "3.1.3",
2214
+ "resolved": "https://registry.npmjs.org/@react-stately/toast/-/toast-3.1.3.tgz",
2215
+ "integrity": "sha512-mT9QJKmD523lqFpOp0VWZ6QHZENFK7HrodnNJDVc7g616s5GNmemdlkITV43fSY3tHeThCVvPu+Uzh7RvQ9mpQ==",
2216
+ "license": "Apache-2.0",
2217
+ "dependencies": {
2218
+ "@swc/helpers": "^0.5.0",
2219
+ "use-sync-external-store": "^1.6.0"
2220
+ },
2221
+ "peerDependencies": {
2222
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2223
+ }
2224
+ },
2225
+ "node_modules/@react-stately/toggle": {
2226
+ "version": "3.9.5",
2227
+ "resolved": "https://registry.npmjs.org/@react-stately/toggle/-/toggle-3.9.5.tgz",
2228
+ "integrity": "sha512-PVzXc788q3jH98Kvw1LYDL+wpVC14dCEKjOku8cSaqhEof6AJGaLR9yq+EF1yYSL2dxI6z8ghc0OozY8WrcFcA==",
2229
+ "license": "Apache-2.0",
2230
+ "dependencies": {
2231
+ "@react-stately/utils": "^3.11.0",
2232
+ "@react-types/checkbox": "^3.10.4",
2233
+ "@react-types/shared": "^3.33.1",
2234
+ "@swc/helpers": "^0.5.0"
2235
+ },
2236
+ "peerDependencies": {
2237
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2238
+ }
2239
+ },
2240
+ "node_modules/@react-stately/tooltip": {
2241
+ "version": "3.5.11",
2242
+ "resolved": "https://registry.npmjs.org/@react-stately/tooltip/-/tooltip-3.5.11.tgz",
2243
+ "integrity": "sha512-o8PnFXbvDCuVZ4Ht9ahfS6KHwIZjXopvoQ2vUPxv920irdgWEeC+4omgDOnJ/xFvcpmmJAmSsrQsTQrTguDUQA==",
2244
+ "license": "Apache-2.0",
2245
+ "dependencies": {
2246
+ "@react-stately/overlays": "^3.6.23",
2247
+ "@react-types/tooltip": "^3.5.2",
2248
+ "@swc/helpers": "^0.5.0"
2249
+ },
2250
+ "peerDependencies": {
2251
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2252
+ }
2253
+ },
2254
+ "node_modules/@react-stately/tree": {
2255
+ "version": "3.9.6",
2256
+ "resolved": "https://registry.npmjs.org/@react-stately/tree/-/tree-3.9.6.tgz",
2257
+ "integrity": "sha512-JCuhGyX2A+PAMsx2pRSwArfqNFZJ9JSPkDaOQJS8MFPAsBe5HemvXsdmv9aBIMzlbCYcVq6EsrFnzbVVTBt/6w==",
2258
+ "license": "Apache-2.0",
2259
+ "dependencies": {
2260
+ "@react-stately/collections": "^3.12.10",
2261
+ "@react-stately/selection": "^3.20.9",
2262
+ "@react-stately/utils": "^3.11.0",
2263
+ "@react-types/shared": "^3.33.1",
2264
+ "@swc/helpers": "^0.5.0"
2265
+ },
2266
+ "peerDependencies": {
2267
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2268
+ }
2269
+ },
2270
+ "node_modules/@react-stately/utils": {
2271
+ "version": "3.11.0",
2272
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.11.0.tgz",
2273
+ "integrity": "sha512-8LZpYowJ9eZmmYLpudbo/eclIRnbhWIJZ994ncmlKlouNzKohtM8qTC6B1w1pwUbiwGdUoyzLuQbeaIor5Dvcw==",
2274
+ "license": "Apache-2.0",
2275
+ "dependencies": {
2276
+ "@swc/helpers": "^0.5.0"
2277
+ },
2278
+ "peerDependencies": {
2279
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2280
+ }
2281
+ },
2282
+ "node_modules/@react-stately/virtualizer": {
2283
+ "version": "4.4.6",
2284
+ "resolved": "https://registry.npmjs.org/@react-stately/virtualizer/-/virtualizer-4.4.6.tgz",
2285
+ "integrity": "sha512-9SfXgLFB61/8SXNLfg5ARx9jAK4m03Aw6/Cg8mdZN24SYarL4TKNRpfw8K/HHVU/bi6WHSJypk6Z/z19o/ztrg==",
2286
+ "license": "Apache-2.0",
2287
+ "dependencies": {
2288
+ "@react-types/shared": "^3.33.1",
2289
+ "@swc/helpers": "^0.5.0"
2290
+ },
2291
+ "peerDependencies": {
2292
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
2293
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2294
+ }
2295
+ },
2296
+ "node_modules/@react-types/autocomplete": {
2297
+ "version": "3.0.0-alpha.38",
2298
+ "resolved": "https://registry.npmjs.org/@react-types/autocomplete/-/autocomplete-3.0.0-alpha.38.tgz",
2299
+ "integrity": "sha512-0XrlVC8drzcrCNzybbkZdLcTofXEzBsHuaFevt5awW1J0xBJ+SMLIQMDeUYrvKjjwXUBlCtjJJpOvitGt4Z+KA==",
2300
+ "license": "Apache-2.0",
2301
+ "dependencies": {
2302
+ "@react-types/combobox": "^3.14.0",
2303
+ "@react-types/searchfield": "^3.6.8",
2304
+ "@react-types/shared": "^3.33.1"
2305
+ },
2306
+ "peerDependencies": {
2307
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2308
+ }
2309
+ },
2310
+ "node_modules/@react-types/breadcrumbs": {
2311
+ "version": "3.7.19",
2312
+ "resolved": "https://registry.npmjs.org/@react-types/breadcrumbs/-/breadcrumbs-3.7.19.tgz",
2313
+ "integrity": "sha512-AnkyYYmzaM2QFi/N0P/kQLM8tHOyFi7p397B/jEMucXDfwMw5Ny1ObCXeIEqbh8KrIa2Xp8SxmQlCV+8FPs4LA==",
2314
+ "license": "Apache-2.0",
2315
+ "dependencies": {
2316
+ "@react-types/link": "^3.6.7",
2317
+ "@react-types/shared": "^3.33.1"
2318
+ },
2319
+ "peerDependencies": {
2320
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2321
+ }
2322
+ },
2323
+ "node_modules/@react-types/button": {
2324
+ "version": "3.15.1",
2325
+ "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.15.1.tgz",
2326
+ "integrity": "sha512-M1HtsKreJkigCnqceuIT22hDJBSStbPimnpmQmsl7SNyqCFY3+DHS7y/Sl3GvqCkzxF7j9UTL0dG38lGQ3K4xQ==",
2327
+ "license": "Apache-2.0",
2328
+ "dependencies": {
2329
+ "@react-types/shared": "^3.33.1"
2330
+ },
2331
+ "peerDependencies": {
2332
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2333
+ }
2334
+ },
2335
+ "node_modules/@react-types/calendar": {
2336
+ "version": "3.8.3",
2337
+ "resolved": "https://registry.npmjs.org/@react-types/calendar/-/calendar-3.8.3.tgz",
2338
+ "integrity": "sha512-fpH6WNXotzH0TlKHXXxtjeLZ7ko0sbyHmwDAwmDFyP7T0Iwn1YQZ+lhceLifvynlxuOgX6oBItyUKmkHQ0FouQ==",
2339
+ "license": "Apache-2.0",
2340
+ "dependencies": {
2341
+ "@internationalized/date": "^3.12.0",
2342
+ "@react-types/shared": "^3.33.1"
2343
+ },
2344
+ "peerDependencies": {
2345
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2346
+ }
2347
+ },
2348
+ "node_modules/@react-types/checkbox": {
2349
+ "version": "3.10.4",
2350
+ "resolved": "https://registry.npmjs.org/@react-types/checkbox/-/checkbox-3.10.4.tgz",
2351
+ "integrity": "sha512-tYCG0Pd1usEz5hjvBEYcqcA0youx930Rss1QBIse9TgMekA1c2WmPDNupYV8phpO8Zuej3DL1WfBeXcgavK8aw==",
2352
+ "license": "Apache-2.0",
2353
+ "dependencies": {
2354
+ "@react-types/shared": "^3.33.1"
2355
+ },
2356
+ "peerDependencies": {
2357
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2358
+ }
2359
+ },
2360
+ "node_modules/@react-types/color": {
2361
+ "version": "3.1.4",
2362
+ "resolved": "https://registry.npmjs.org/@react-types/color/-/color-3.1.4.tgz",
2363
+ "integrity": "sha512-s+Xj4pvNBlJPpQ1Gr7bO1j4/tuwMUfdS9xIVFuiW5RvDsSybKTUJ/gqPzTxms94VDCRhLFocVn2STNdD2Erf6A==",
2364
+ "license": "Apache-2.0",
2365
+ "dependencies": {
2366
+ "@react-types/shared": "^3.33.1",
2367
+ "@react-types/slider": "^3.8.4"
2368
+ },
2369
+ "peerDependencies": {
2370
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2371
+ }
2372
+ },
2373
+ "node_modules/@react-types/combobox": {
2374
+ "version": "3.14.0",
2375
+ "resolved": "https://registry.npmjs.org/@react-types/combobox/-/combobox-3.14.0.tgz",
2376
+ "integrity": "sha512-zmSSS7BcCOD8rGT8eGbVy7UlL5qq1vm88fFn4WgFe+lfK33ne+E7yTzTxcPY2TCGSo5fY6xMj3OG79FfVNGbSg==",
2377
+ "license": "Apache-2.0",
2378
+ "dependencies": {
2379
+ "@react-types/shared": "^3.33.1"
2380
+ },
2381
+ "peerDependencies": {
2382
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2383
+ }
2384
+ },
2385
+ "node_modules/@react-types/datepicker": {
2386
+ "version": "3.13.5",
2387
+ "resolved": "https://registry.npmjs.org/@react-types/datepicker/-/datepicker-3.13.5.tgz",
2388
+ "integrity": "sha512-j28Vz+xvbb4bj7+9Xbpc4WTvSitlBvt7YEaEGM/8ZQ5g4Jr85H2KwkmDwjzmMN2r6VMQMMYq9JEcemq5wWpfUQ==",
2389
+ "license": "Apache-2.0",
2390
+ "dependencies": {
2391
+ "@internationalized/date": "^3.12.0",
2392
+ "@react-types/calendar": "^3.8.3",
2393
+ "@react-types/overlays": "^3.9.4",
2394
+ "@react-types/shared": "^3.33.1"
2395
+ },
2396
+ "peerDependencies": {
2397
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2398
+ }
2399
+ },
2400
+ "node_modules/@react-types/dialog": {
2401
+ "version": "3.5.24",
2402
+ "resolved": "https://registry.npmjs.org/@react-types/dialog/-/dialog-3.5.24.tgz",
2403
+ "integrity": "sha512-NFurEP/zV0dA/41422lV1t+0oh6f/13n+VmLHZG8R13m1J3ql/kAXZ49zBSqkqANBO1ojyugWebk99IiR4pYOw==",
2404
+ "license": "Apache-2.0",
2405
+ "dependencies": {
2406
+ "@react-types/overlays": "^3.9.4",
2407
+ "@react-types/shared": "^3.33.1"
2408
+ },
2409
+ "peerDependencies": {
2410
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2411
+ }
2412
+ },
2413
+ "node_modules/@react-types/form": {
2414
+ "version": "3.7.18",
2415
+ "resolved": "https://registry.npmjs.org/@react-types/form/-/form-3.7.18.tgz",
2416
+ "integrity": "sha512-0sBJW0+I9nJcF4SmKrYFEWAlehiebSTy7xqriqAXtqfTEdvzAYLGaAK2/7gx+wlNZeDTdW43CDRJ4XAhyhBqnw==",
2417
+ "license": "Apache-2.0",
2418
+ "dependencies": {
2419
+ "@react-types/shared": "^3.33.1"
2420
+ },
2421
+ "peerDependencies": {
2422
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2423
+ }
2424
+ },
2425
+ "node_modules/@react-types/grid": {
2426
+ "version": "3.3.8",
2427
+ "resolved": "https://registry.npmjs.org/@react-types/grid/-/grid-3.3.8.tgz",
2428
+ "integrity": "sha512-zJvXH8gc1e1VH2H3LRnHH/W2HIkLkZMH3Cu5pLcj0vDuLBSWpcr3Ikh3jZ+VUOZF0G1Jt1lO8pKIaqFzDLNmLQ==",
2429
+ "license": "Apache-2.0",
2430
+ "dependencies": {
2431
+ "@react-types/shared": "^3.33.1"
2432
+ },
2433
+ "peerDependencies": {
2434
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2435
+ }
2436
+ },
2437
+ "node_modules/@react-types/link": {
2438
+ "version": "3.6.7",
2439
+ "resolved": "https://registry.npmjs.org/@react-types/link/-/link-3.6.7.tgz",
2440
+ "integrity": "sha512-1apXCFJgMC1uydc2KNENrps1qR642FqDpwlNWe254UTpRZn/hEZhA6ImVr8WhomfLJu672WyWA0rUOv4HT+/pQ==",
2441
+ "license": "Apache-2.0",
2442
+ "dependencies": {
2443
+ "@react-types/shared": "^3.33.1"
2444
+ },
2445
+ "peerDependencies": {
2446
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2447
+ }
2448
+ },
2449
+ "node_modules/@react-types/listbox": {
2450
+ "version": "3.7.6",
2451
+ "resolved": "https://registry.npmjs.org/@react-types/listbox/-/listbox-3.7.6.tgz",
2452
+ "integrity": "sha512-335NYElKEByXMalAmeRPyulKIDd2cjOCQhLwvv2BtxO5zaJfZnBbhZs+XPd9zwU6YomyOxODKSHrwbNDx+Jf3w==",
2453
+ "license": "Apache-2.0",
2454
+ "dependencies": {
2455
+ "@react-types/shared": "^3.33.1"
2456
+ },
2457
+ "peerDependencies": {
2458
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2459
+ }
2460
+ },
2461
+ "node_modules/@react-types/menu": {
2462
+ "version": "3.10.7",
2463
+ "resolved": "https://registry.npmjs.org/@react-types/menu/-/menu-3.10.7.tgz",
2464
+ "integrity": "sha512-+p7ixZdvPDJZhisqdtWiiuJ9pteNfK5i19NB6wzAw5XkljbEzodNhwLv6rI96DY5XpbFso2kcjw7IWi+rAAGGQ==",
2465
+ "license": "Apache-2.0",
2466
+ "dependencies": {
2467
+ "@react-types/overlays": "^3.9.4",
2468
+ "@react-types/shared": "^3.33.1"
2469
+ },
2470
+ "peerDependencies": {
2471
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2472
+ }
2473
+ },
2474
+ "node_modules/@react-types/meter": {
2475
+ "version": "3.4.15",
2476
+ "resolved": "https://registry.npmjs.org/@react-types/meter/-/meter-3.4.15.tgz",
2477
+ "integrity": "sha512-9WjNphhLLM+TA4Ev1y2MkpugJ5JjTXseHh7ZWWx2veq5DrXMZYclkRpfUrUdLVKvaBIPQCgpQIj0TcQi+quR9A==",
2478
+ "license": "Apache-2.0",
2479
+ "dependencies": {
2480
+ "@react-types/progress": "^3.5.18"
2481
+ },
2482
+ "peerDependencies": {
2483
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2484
+ }
2485
+ },
2486
+ "node_modules/@react-types/numberfield": {
2487
+ "version": "3.8.18",
2488
+ "resolved": "https://registry.npmjs.org/@react-types/numberfield/-/numberfield-3.8.18.tgz",
2489
+ "integrity": "sha512-nLzk7YAG9yAUtSv+9R8LgCHsu8hJq8/A+m1KsKxvc8WmNJjIujSFgWvT21MWBiUgPBzJKGzAqpMDDa087mltJQ==",
2490
+ "license": "Apache-2.0",
2491
+ "dependencies": {
2492
+ "@react-types/shared": "^3.33.1"
2493
+ },
2494
+ "peerDependencies": {
2495
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2496
+ }
2497
+ },
2498
+ "node_modules/@react-types/overlays": {
2499
+ "version": "3.9.4",
2500
+ "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.9.4.tgz",
2501
+ "integrity": "sha512-7Z9HaebMFyYBqtv3XVNHEmVkm7AiYviV7gv0c98elEN2Co+eQcKFGvwBM9Gy/lV57zlTqFX1EX/SAqkMEbCLOA==",
2502
+ "license": "Apache-2.0",
2503
+ "dependencies": {
2504
+ "@react-types/shared": "^3.33.1"
2505
+ },
2506
+ "peerDependencies": {
2507
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2508
+ }
2509
+ },
2510
+ "node_modules/@react-types/progress": {
2511
+ "version": "3.5.18",
2512
+ "resolved": "https://registry.npmjs.org/@react-types/progress/-/progress-3.5.18.tgz",
2513
+ "integrity": "sha512-mKeQn+KrHr1y0/k7KtrbeDGDaERH6i4f6yBwj/ZtYDCTNKMO3tPHJY6nzF0w/KKZLplIO+BjUbHXc2RVm8ovwQ==",
2514
+ "license": "Apache-2.0",
2515
+ "dependencies": {
2516
+ "@react-types/shared": "^3.33.1"
2517
+ },
2518
+ "peerDependencies": {
2519
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2520
+ }
2521
+ },
2522
+ "node_modules/@react-types/radio": {
2523
+ "version": "3.9.4",
2524
+ "resolved": "https://registry.npmjs.org/@react-types/radio/-/radio-3.9.4.tgz",
2525
+ "integrity": "sha512-TkMRY3sA1PcFZhhclu4IUzUTIir6MzNJj8h6WT8vO6Nug2kXJ72qigugVFBWJSE472mltduOErEAo0rtAYWbQA==",
2526
+ "license": "Apache-2.0",
2527
+ "dependencies": {
2528
+ "@react-types/shared": "^3.33.1"
2529
+ },
2530
+ "peerDependencies": {
2531
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2532
+ }
2533
+ },
2534
+ "node_modules/@react-types/searchfield": {
2535
+ "version": "3.6.8",
2536
+ "resolved": "https://registry.npmjs.org/@react-types/searchfield/-/searchfield-3.6.8.tgz",
2537
+ "integrity": "sha512-M2p7OVdMTMDmlBcHd4N2uCBwg3uJSNM4lmEyf09YD44N5wDAI0yogk52QBwsnhpe+i2s65UwCYgunB+QltRX8A==",
2538
+ "license": "Apache-2.0",
2539
+ "dependencies": {
2540
+ "@react-types/shared": "^3.33.1",
2541
+ "@react-types/textfield": "^3.12.8"
2542
+ },
2543
+ "peerDependencies": {
2544
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2545
+ }
2546
+ },
2547
+ "node_modules/@react-types/select": {
2548
+ "version": "3.12.2",
2549
+ "resolved": "https://registry.npmjs.org/@react-types/select/-/select-3.12.2.tgz",
2550
+ "integrity": "sha512-AseOjfr3qM1W1qIWcbAe6NFpwZluVeQX/dmu9BYxjcnVvtoBLPMbE5zX/BPbv+N5eFYjoMyj7Ug9dqnI+LrlGw==",
2551
+ "license": "Apache-2.0",
2552
+ "dependencies": {
2553
+ "@react-types/shared": "^3.33.1"
2554
+ },
2555
+ "peerDependencies": {
2556
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2557
+ }
2558
+ },
2559
+ "node_modules/@react-types/shared": {
2560
+ "version": "3.33.1",
2561
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.33.1.tgz",
2562
+ "integrity": "sha512-oJHtjvLG43VjwemQDadlR5g/8VepK56B/xKO2XORPHt9zlW6IZs3tZrYlvH29BMvoqC7RtE7E5UjgbnbFtDGag==",
2563
+ "license": "Apache-2.0",
2564
+ "peerDependencies": {
2565
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2566
+ }
2567
+ },
2568
+ "node_modules/@react-types/slider": {
2569
+ "version": "3.8.4",
2570
+ "resolved": "https://registry.npmjs.org/@react-types/slider/-/slider-3.8.4.tgz",
2571
+ "integrity": "sha512-C+xFVvfKREai9S/ekBDCVaGPOQYkNUAsQhjQnNsUAATaox4I6IYLmcIgLmljpMQWqAe+gZiWsIwacRYMez2Tew==",
2572
+ "license": "Apache-2.0",
2573
+ "dependencies": {
2574
+ "@react-types/shared": "^3.33.1"
2575
+ },
2576
+ "peerDependencies": {
2577
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2578
+ }
2579
+ },
2580
+ "node_modules/@react-types/switch": {
2581
+ "version": "3.5.17",
2582
+ "resolved": "https://registry.npmjs.org/@react-types/switch/-/switch-3.5.17.tgz",
2583
+ "integrity": "sha512-2GTPJvBCYI8YZ3oerHtXg+qikabIXCMJ6C2wcIJ5Xn0k9XOovowghfJi10OPB2GGyOiLBU74CczP5nx8adG90Q==",
2584
+ "license": "Apache-2.0",
2585
+ "dependencies": {
2586
+ "@react-types/shared": "^3.33.1"
2587
+ },
2588
+ "peerDependencies": {
2589
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2590
+ }
2591
+ },
2592
+ "node_modules/@react-types/table": {
2593
+ "version": "3.13.6",
2594
+ "resolved": "https://registry.npmjs.org/@react-types/table/-/table-3.13.6.tgz",
2595
+ "integrity": "sha512-eluL+iFfnVmFm7OSZrrFG9AUjw+tcv898zbv+NsZACa8oXG1v9AimhZfd+Mo8q/5+sX/9hguWNXFkSvmTjuVPQ==",
2596
+ "license": "Apache-2.0",
2597
+ "dependencies": {
2598
+ "@react-types/grid": "^3.3.8",
2599
+ "@react-types/shared": "^3.33.1"
2600
+ },
2601
+ "peerDependencies": {
2602
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2603
+ }
2604
+ },
2605
+ "node_modules/@react-types/tabs": {
2606
+ "version": "3.3.22",
2607
+ "resolved": "https://registry.npmjs.org/@react-types/tabs/-/tabs-3.3.22.tgz",
2608
+ "integrity": "sha512-HGwLD9dA3k3AGfRKGFBhNgxU9/LyRmxN0kxVj1ghA4L9S/qTOzS6GhrGNkGzsGxyVLV4JN8MLxjWN2o9QHnLEg==",
2609
+ "license": "Apache-2.0",
2610
+ "dependencies": {
2611
+ "@react-types/shared": "^3.33.1"
2612
+ },
2613
+ "peerDependencies": {
2614
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2615
+ }
2616
+ },
2617
+ "node_modules/@react-types/textfield": {
2618
+ "version": "3.12.8",
2619
+ "resolved": "https://registry.npmjs.org/@react-types/textfield/-/textfield-3.12.8.tgz",
2620
+ "integrity": "sha512-wt6FcuE5AyntxsnPika/h3nf/DPmeAVbI018L9o6h+B/IL4sMWWdx663wx2KOOeHH8ejKGZQNPLhUKs4s1mVQA==",
2621
+ "license": "Apache-2.0",
2622
+ "dependencies": {
2623
+ "@react-types/shared": "^3.33.1"
2624
+ },
2625
+ "peerDependencies": {
2626
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2627
+ }
2628
+ },
2629
+ "node_modules/@react-types/tooltip": {
2630
+ "version": "3.5.2",
2631
+ "resolved": "https://registry.npmjs.org/@react-types/tooltip/-/tooltip-3.5.2.tgz",
2632
+ "integrity": "sha512-FvSuZ2WP08NEWefrpCdBYpEEZh/5TvqvGjq0wqGzWg2OPwpc14HjD8aE7I3MOuylXkD4MSlMjl7J4DlvlcCs3Q==",
2633
+ "license": "Apache-2.0",
2634
+ "dependencies": {
2635
+ "@react-types/overlays": "^3.9.4",
2636
+ "@react-types/shared": "^3.33.1"
2637
+ },
2638
+ "peerDependencies": {
2639
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
2640
+ }
2641
+ },
2642
+ "node_modules/@rolldown/pluginutils": {
2643
+ "version": "1.0.0-beta.27",
2644
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
2645
+ "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
2646
+ "dev": true,
2647
+ "license": "MIT"
2648
+ },
2649
+ "node_modules/@rollup/rollup-android-arm-eabi": {
2650
+ "version": "4.59.0",
2651
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
2652
+ "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==",
2653
+ "cpu": [
2654
+ "arm"
2655
+ ],
2656
+ "license": "MIT",
2657
+ "optional": true,
2658
+ "os": [
2659
+ "android"
2660
+ ]
2661
+ },
2662
+ "node_modules/@rollup/rollup-android-arm64": {
2663
+ "version": "4.59.0",
2664
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz",
2665
+ "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==",
2666
+ "cpu": [
2667
+ "arm64"
2668
+ ],
2669
+ "license": "MIT",
2670
+ "optional": true,
2671
+ "os": [
2672
+ "android"
2673
+ ]
2674
+ },
2675
+ "node_modules/@rollup/rollup-darwin-arm64": {
2676
+ "version": "4.59.0",
2677
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz",
2678
+ "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==",
2679
+ "cpu": [
2680
+ "arm64"
2681
+ ],
2682
+ "license": "MIT",
2683
+ "optional": true,
2684
+ "os": [
2685
+ "darwin"
2686
+ ]
2687
+ },
2688
+ "node_modules/@rollup/rollup-darwin-x64": {
2689
+ "version": "4.59.0",
2690
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz",
2691
+ "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==",
2692
+ "cpu": [
2693
+ "x64"
2694
+ ],
2695
+ "license": "MIT",
2696
+ "optional": true,
2697
+ "os": [
2698
+ "darwin"
2699
+ ]
2700
+ },
2701
+ "node_modules/@rollup/rollup-freebsd-arm64": {
2702
+ "version": "4.59.0",
2703
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz",
2704
+ "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==",
2705
+ "cpu": [
2706
+ "arm64"
2707
+ ],
2708
+ "license": "MIT",
2709
+ "optional": true,
2710
+ "os": [
2711
+ "freebsd"
2712
+ ]
2713
+ },
2714
+ "node_modules/@rollup/rollup-freebsd-x64": {
2715
+ "version": "4.59.0",
2716
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz",
2717
+ "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==",
2718
+ "cpu": [
2719
+ "x64"
2720
+ ],
2721
+ "license": "MIT",
2722
+ "optional": true,
2723
+ "os": [
2724
+ "freebsd"
2725
+ ]
2726
+ },
2727
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
2728
+ "version": "4.59.0",
2729
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz",
2730
+ "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==",
2731
+ "cpu": [
2732
+ "arm"
2733
+ ],
2734
+ "license": "MIT",
2735
+ "optional": true,
2736
+ "os": [
2737
+ "linux"
2738
+ ]
2739
+ },
2740
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
2741
+ "version": "4.59.0",
2742
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz",
2743
+ "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==",
2744
+ "cpu": [
2745
+ "arm"
2746
+ ],
2747
+ "license": "MIT",
2748
+ "optional": true,
2749
+ "os": [
2750
+ "linux"
2751
+ ]
2752
+ },
2753
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
2754
+ "version": "4.59.0",
2755
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz",
2756
+ "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==",
2757
+ "cpu": [
2758
+ "arm64"
2759
+ ],
2760
+ "license": "MIT",
2761
+ "optional": true,
2762
+ "os": [
2763
+ "linux"
2764
+ ]
2765
+ },
2766
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
2767
+ "version": "4.59.0",
2768
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz",
2769
+ "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==",
2770
+ "cpu": [
2771
+ "arm64"
2772
+ ],
2773
+ "license": "MIT",
2774
+ "optional": true,
2775
+ "os": [
2776
+ "linux"
2777
+ ]
2778
+ },
2779
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
2780
+ "version": "4.59.0",
2781
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz",
2782
+ "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==",
2783
+ "cpu": [
2784
+ "loong64"
2785
+ ],
2786
+ "license": "MIT",
2787
+ "optional": true,
2788
+ "os": [
2789
+ "linux"
2790
+ ]
2791
+ },
2792
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
2793
+ "version": "4.59.0",
2794
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz",
2795
+ "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==",
2796
+ "cpu": [
2797
+ "loong64"
2798
+ ],
2799
+ "license": "MIT",
2800
+ "optional": true,
2801
+ "os": [
2802
+ "linux"
2803
+ ]
2804
+ },
2805
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
2806
+ "version": "4.59.0",
2807
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz",
2808
+ "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==",
2809
+ "cpu": [
2810
+ "ppc64"
2811
+ ],
2812
+ "license": "MIT",
2813
+ "optional": true,
2814
+ "os": [
2815
+ "linux"
2816
+ ]
2817
+ },
2818
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
2819
+ "version": "4.59.0",
2820
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz",
2821
+ "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==",
2822
+ "cpu": [
2823
+ "ppc64"
2824
+ ],
2825
+ "license": "MIT",
2826
+ "optional": true,
2827
+ "os": [
2828
+ "linux"
2829
+ ]
2830
+ },
2831
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
2832
+ "version": "4.59.0",
2833
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz",
2834
+ "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==",
2835
+ "cpu": [
2836
+ "riscv64"
2837
+ ],
2838
+ "license": "MIT",
2839
+ "optional": true,
2840
+ "os": [
2841
+ "linux"
2842
+ ]
2843
+ },
2844
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
2845
+ "version": "4.59.0",
2846
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz",
2847
+ "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==",
2848
+ "cpu": [
2849
+ "riscv64"
2850
+ ],
2851
+ "license": "MIT",
2852
+ "optional": true,
2853
+ "os": [
2854
+ "linux"
2855
+ ]
2856
+ },
2857
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
2858
+ "version": "4.59.0",
2859
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz",
2860
+ "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==",
2861
+ "cpu": [
2862
+ "s390x"
2863
+ ],
2864
+ "license": "MIT",
2865
+ "optional": true,
2866
+ "os": [
2867
+ "linux"
2868
+ ]
2869
+ },
2870
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
2871
+ "version": "4.59.0",
2872
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz",
2873
+ "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==",
2874
+ "cpu": [
2875
+ "x64"
2876
+ ],
2877
+ "license": "MIT",
2878
+ "optional": true,
2879
+ "os": [
2880
+ "linux"
2881
+ ]
2882
+ },
2883
+ "node_modules/@rollup/rollup-linux-x64-musl": {
2884
+ "version": "4.59.0",
2885
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz",
2886
+ "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==",
2887
+ "cpu": [
2888
+ "x64"
2889
+ ],
2890
+ "license": "MIT",
2891
+ "optional": true,
2892
+ "os": [
2893
+ "linux"
2894
+ ]
2895
+ },
2896
+ "node_modules/@rollup/rollup-openbsd-x64": {
2897
+ "version": "4.59.0",
2898
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz",
2899
+ "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==",
2900
+ "cpu": [
2901
+ "x64"
2902
+ ],
2903
+ "license": "MIT",
2904
+ "optional": true,
2905
+ "os": [
2906
+ "openbsd"
2907
+ ]
2908
+ },
2909
+ "node_modules/@rollup/rollup-openharmony-arm64": {
2910
+ "version": "4.59.0",
2911
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz",
2912
+ "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==",
2913
+ "cpu": [
2914
+ "arm64"
2915
+ ],
2916
+ "license": "MIT",
2917
+ "optional": true,
2918
+ "os": [
2919
+ "openharmony"
2920
+ ]
2921
+ },
2922
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
2923
+ "version": "4.59.0",
2924
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz",
2925
+ "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==",
2926
+ "cpu": [
2927
+ "arm64"
2928
+ ],
2929
+ "license": "MIT",
2930
+ "optional": true,
2931
+ "os": [
2932
+ "win32"
2933
+ ]
2934
+ },
2935
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
2936
+ "version": "4.59.0",
2937
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz",
2938
+ "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==",
2939
+ "cpu": [
2940
+ "ia32"
2941
+ ],
2942
+ "license": "MIT",
2943
+ "optional": true,
2944
+ "os": [
2945
+ "win32"
2946
+ ]
2947
+ },
2948
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
2949
+ "version": "4.59.0",
2950
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
2951
+ "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
2952
+ "cpu": [
2953
+ "x64"
2954
+ ],
2955
+ "license": "MIT",
2956
+ "optional": true,
2957
+ "os": [
2958
+ "win32"
2959
+ ]
2960
+ },
2961
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
2962
+ "version": "4.59.0",
2963
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
2964
+ "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
2965
+ "cpu": [
2966
+ "x64"
2967
+ ],
2968
+ "license": "MIT",
2969
+ "optional": true,
2970
+ "os": [
2971
+ "win32"
2972
+ ]
2973
+ },
2974
+ "node_modules/@swc/helpers": {
2975
+ "version": "0.5.19",
2976
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.19.tgz",
2977
+ "integrity": "sha512-QamiFeIK3txNjgUTNppE6MiG3p7TdninpZu0E0PbqVh1a9FNLT2FRhisaa4NcaX52XVhA5l7Pk58Ft7Sqi/2sA==",
2978
+ "license": "Apache-2.0",
2979
+ "dependencies": {
2980
+ "tslib": "^2.8.0"
2981
+ }
2982
+ },
2983
+ "node_modules/@tailwindcss/node": {
2984
+ "version": "4.2.2",
2985
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz",
2986
+ "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==",
2987
+ "license": "MIT",
2988
+ "dependencies": {
2989
+ "@jridgewell/remapping": "^2.3.5",
2990
+ "enhanced-resolve": "^5.19.0",
2991
+ "jiti": "^2.6.1",
2992
+ "lightningcss": "1.32.0",
2993
+ "magic-string": "^0.30.21",
2994
+ "source-map-js": "^1.2.1",
2995
+ "tailwindcss": "4.2.2"
2996
+ }
2997
+ },
2998
+ "node_modules/@tailwindcss/oxide": {
2999
+ "version": "4.2.2",
3000
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz",
3001
+ "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==",
3002
+ "license": "MIT",
3003
+ "engines": {
3004
+ "node": ">= 20"
3005
+ },
3006
+ "optionalDependencies": {
3007
+ "@tailwindcss/oxide-android-arm64": "4.2.2",
3008
+ "@tailwindcss/oxide-darwin-arm64": "4.2.2",
3009
+ "@tailwindcss/oxide-darwin-x64": "4.2.2",
3010
+ "@tailwindcss/oxide-freebsd-x64": "4.2.2",
3011
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2",
3012
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2",
3013
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.2",
3014
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.2",
3015
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.2",
3016
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.2",
3017
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2",
3018
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.2"
3019
+ }
3020
+ },
3021
+ "node_modules/@tailwindcss/oxide-android-arm64": {
3022
+ "version": "4.2.2",
3023
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz",
3024
+ "integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==",
3025
+ "cpu": [
3026
+ "arm64"
3027
+ ],
3028
+ "license": "MIT",
3029
+ "optional": true,
3030
+ "os": [
3031
+ "android"
3032
+ ],
3033
+ "engines": {
3034
+ "node": ">= 20"
3035
+ }
3036
+ },
3037
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
3038
+ "version": "4.2.2",
3039
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz",
3040
+ "integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==",
3041
+ "cpu": [
3042
+ "arm64"
3043
+ ],
3044
+ "license": "MIT",
3045
+ "optional": true,
3046
+ "os": [
3047
+ "darwin"
3048
+ ],
3049
+ "engines": {
3050
+ "node": ">= 20"
3051
+ }
3052
+ },
3053
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
3054
+ "version": "4.2.2",
3055
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz",
3056
+ "integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==",
3057
+ "cpu": [
3058
+ "x64"
3059
+ ],
3060
+ "license": "MIT",
3061
+ "optional": true,
3062
+ "os": [
3063
+ "darwin"
3064
+ ],
3065
+ "engines": {
3066
+ "node": ">= 20"
3067
+ }
3068
+ },
3069
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
3070
+ "version": "4.2.2",
3071
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz",
3072
+ "integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==",
3073
+ "cpu": [
3074
+ "x64"
3075
+ ],
3076
+ "license": "MIT",
3077
+ "optional": true,
3078
+ "os": [
3079
+ "freebsd"
3080
+ ],
3081
+ "engines": {
3082
+ "node": ">= 20"
3083
+ }
3084
+ },
3085
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
3086
+ "version": "4.2.2",
3087
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz",
3088
+ "integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==",
3089
+ "cpu": [
3090
+ "arm"
3091
+ ],
3092
+ "license": "MIT",
3093
+ "optional": true,
3094
+ "os": [
3095
+ "linux"
3096
+ ],
3097
+ "engines": {
3098
+ "node": ">= 20"
3099
+ }
3100
+ },
3101
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
3102
+ "version": "4.2.2",
3103
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz",
3104
+ "integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==",
3105
+ "cpu": [
3106
+ "arm64"
3107
+ ],
3108
+ "license": "MIT",
3109
+ "optional": true,
3110
+ "os": [
3111
+ "linux"
3112
+ ],
3113
+ "engines": {
3114
+ "node": ">= 20"
3115
+ }
3116
+ },
3117
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
3118
+ "version": "4.2.2",
3119
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz",
3120
+ "integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==",
3121
+ "cpu": [
3122
+ "arm64"
3123
+ ],
3124
+ "license": "MIT",
3125
+ "optional": true,
3126
+ "os": [
3127
+ "linux"
3128
+ ],
3129
+ "engines": {
3130
+ "node": ">= 20"
3131
+ }
3132
+ },
3133
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
3134
+ "version": "4.2.2",
3135
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz",
3136
+ "integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==",
3137
+ "cpu": [
3138
+ "x64"
3139
+ ],
3140
+ "license": "MIT",
3141
+ "optional": true,
3142
+ "os": [
3143
+ "linux"
3144
+ ],
3145
+ "engines": {
3146
+ "node": ">= 20"
3147
+ }
3148
+ },
3149
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
3150
+ "version": "4.2.2",
3151
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz",
3152
+ "integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==",
3153
+ "cpu": [
3154
+ "x64"
3155
+ ],
3156
+ "license": "MIT",
3157
+ "optional": true,
3158
+ "os": [
3159
+ "linux"
3160
+ ],
3161
+ "engines": {
3162
+ "node": ">= 20"
3163
+ }
3164
+ },
3165
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
3166
+ "version": "4.2.2",
3167
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz",
3168
+ "integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==",
3169
+ "bundleDependencies": [
3170
+ "@napi-rs/wasm-runtime",
3171
+ "@emnapi/core",
3172
+ "@emnapi/runtime",
3173
+ "@tybys/wasm-util",
3174
+ "@emnapi/wasi-threads",
3175
+ "tslib"
3176
+ ],
3177
+ "cpu": [
3178
+ "wasm32"
3179
+ ],
3180
+ "license": "MIT",
3181
+ "optional": true,
3182
+ "dependencies": {
3183
+ "@emnapi/core": "^1.8.1",
3184
+ "@emnapi/runtime": "^1.8.1",
3185
+ "@emnapi/wasi-threads": "^1.1.0",
3186
+ "@napi-rs/wasm-runtime": "^1.1.1",
3187
+ "@tybys/wasm-util": "^0.10.1",
3188
+ "tslib": "^2.8.1"
3189
+ },
3190
+ "engines": {
3191
+ "node": ">=14.0.0"
3192
+ }
3193
+ },
3194
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
3195
+ "version": "4.2.2",
3196
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz",
3197
+ "integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==",
3198
+ "cpu": [
3199
+ "arm64"
3200
+ ],
3201
+ "license": "MIT",
3202
+ "optional": true,
3203
+ "os": [
3204
+ "win32"
3205
+ ],
3206
+ "engines": {
3207
+ "node": ">= 20"
3208
+ }
3209
+ },
3210
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
3211
+ "version": "4.2.2",
3212
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz",
3213
+ "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==",
3214
+ "cpu": [
3215
+ "x64"
3216
+ ],
3217
+ "license": "MIT",
3218
+ "optional": true,
3219
+ "os": [
3220
+ "win32"
3221
+ ],
3222
+ "engines": {
3223
+ "node": ">= 20"
3224
+ }
3225
+ },
3226
+ "node_modules/@tailwindcss/postcss": {
3227
+ "version": "4.2.2",
3228
+ "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.2.tgz",
3229
+ "integrity": "sha512-n4goKQbW8RVXIbNKRB/45LzyUqN451deQK0nzIeauVEqjlI49slUlgKYJM2QyUzap/PcpnS7kzSUmPb1sCRvYQ==",
3230
+ "dev": true,
3231
+ "license": "MIT",
3232
+ "dependencies": {
3233
+ "@alloc/quick-lru": "^5.2.0",
3234
+ "@tailwindcss/node": "4.2.2",
3235
+ "@tailwindcss/oxide": "4.2.2",
3236
+ "postcss": "^8.5.6",
3237
+ "tailwindcss": "4.2.2"
3238
+ }
3239
+ },
3240
+ "node_modules/@tailwindcss/typography": {
3241
+ "version": "0.5.19",
3242
+ "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.19.tgz",
3243
+ "integrity": "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==",
3244
+ "license": "MIT",
3245
+ "dependencies": {
3246
+ "postcss-selector-parser": "6.0.10"
3247
+ },
3248
+ "peerDependencies": {
3249
+ "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1"
3250
+ }
3251
+ },
3252
+ "node_modules/@tailwindcss/vite": {
3253
+ "version": "4.2.2",
3254
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.2.tgz",
3255
+ "integrity": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==",
3256
+ "license": "MIT",
3257
+ "dependencies": {
3258
+ "@tailwindcss/node": "4.2.2",
3259
+ "@tailwindcss/oxide": "4.2.2",
3260
+ "tailwindcss": "4.2.2"
3261
+ },
3262
+ "peerDependencies": {
3263
+ "vite": "^5.2.0 || ^6 || ^7 || ^8"
3264
+ }
3265
+ },
3266
+ "node_modules/@types/babel__core": {
3267
+ "version": "7.20.5",
3268
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
3269
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
3270
+ "dev": true,
3271
+ "license": "MIT",
3272
+ "dependencies": {
3273
+ "@babel/parser": "^7.20.7",
3274
+ "@babel/types": "^7.20.7",
3275
+ "@types/babel__generator": "*",
3276
+ "@types/babel__template": "*",
3277
+ "@types/babel__traverse": "*"
3278
+ }
3279
+ },
3280
+ "node_modules/@types/babel__generator": {
3281
+ "version": "7.27.0",
3282
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
3283
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
3284
+ "dev": true,
3285
+ "license": "MIT",
3286
+ "dependencies": {
3287
+ "@babel/types": "^7.0.0"
3288
+ }
3289
+ },
3290
+ "node_modules/@types/babel__template": {
3291
+ "version": "7.4.4",
3292
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
3293
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
3294
+ "dev": true,
3295
+ "license": "MIT",
3296
+ "dependencies": {
3297
+ "@babel/parser": "^7.1.0",
3298
+ "@babel/types": "^7.0.0"
3299
+ }
3300
+ },
3301
+ "node_modules/@types/babel__traverse": {
3302
+ "version": "7.28.0",
3303
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
3304
+ "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
3305
+ "dev": true,
3306
+ "license": "MIT",
3307
+ "dependencies": {
3308
+ "@babel/types": "^7.28.2"
3309
+ }
3310
+ },
3311
+ "node_modules/@types/estree": {
3312
+ "version": "1.0.8",
3313
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
3314
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
3315
+ "license": "MIT"
3316
+ },
3317
+ "node_modules/@untitledui/icons": {
3318
+ "version": "0.0.21",
3319
+ "resolved": "https://registry.npmjs.org/@untitledui/icons/-/icons-0.0.21.tgz",
3320
+ "integrity": "sha512-+aVWUw/1se9PIJgwMD3qp5ohynGlVNu2oHSLzMwYpiSFp6bFcxv4kUGy685hQXB/hE4WAqnp7dIEVVMD0tfL7w==",
3321
+ "license": "MIT",
3322
+ "peerDependencies": {
3323
+ "react": ">= 16"
3324
+ }
3325
+ },
3326
+ "node_modules/@vitejs/plugin-react": {
3327
+ "version": "4.7.0",
3328
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
3329
+ "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
3330
+ "dev": true,
3331
+ "license": "MIT",
3332
+ "dependencies": {
3333
+ "@babel/core": "^7.28.0",
3334
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
3335
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
3336
+ "@rolldown/pluginutils": "1.0.0-beta.27",
3337
+ "@types/babel__core": "^7.20.5",
3338
+ "react-refresh": "^0.17.0"
3339
+ },
3340
+ "engines": {
3341
+ "node": "^14.18.0 || >=16.0.0"
3342
+ },
3343
+ "peerDependencies": {
3344
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
3345
+ }
3346
+ },
3347
+ "node_modules/baseline-browser-mapping": {
3348
+ "version": "2.10.7",
3349
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.7.tgz",
3350
+ "integrity": "sha512-1ghYO3HnxGec0TCGBXiDLVns4eCSx4zJpxnHrlqFQajmhfKMQBzUGDdkMK7fUW7PTHTeLf+j87aTuKuuwWzMGw==",
3351
+ "dev": true,
3352
+ "license": "Apache-2.0",
3353
+ "bin": {
3354
+ "baseline-browser-mapping": "dist/cli.cjs"
3355
+ },
3356
+ "engines": {
3357
+ "node": ">=6.0.0"
3358
+ }
3359
+ },
3360
+ "node_modules/browserslist": {
3361
+ "version": "4.28.1",
3362
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
3363
+ "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
3364
+ "dev": true,
3365
+ "funding": [
3366
+ {
3367
+ "type": "opencollective",
3368
+ "url": "https://opencollective.com/browserslist"
3369
+ },
3370
+ {
3371
+ "type": "tidelift",
3372
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
3373
+ },
3374
+ {
3375
+ "type": "github",
3376
+ "url": "https://github.com/sponsors/ai"
3377
+ }
3378
+ ],
3379
+ "license": "MIT",
3380
+ "dependencies": {
3381
+ "baseline-browser-mapping": "^2.9.0",
3382
+ "caniuse-lite": "^1.0.30001759",
3383
+ "electron-to-chromium": "^1.5.263",
3384
+ "node-releases": "^2.0.27",
3385
+ "update-browserslist-db": "^1.2.0"
3386
+ },
3387
+ "bin": {
3388
+ "browserslist": "cli.js"
3389
+ },
3390
+ "engines": {
3391
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
3392
+ }
3393
+ },
3394
+ "node_modules/caniuse-lite": {
3395
+ "version": "1.0.30001778",
3396
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001778.tgz",
3397
+ "integrity": "sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==",
3398
+ "dev": true,
3399
+ "funding": [
3400
+ {
3401
+ "type": "opencollective",
3402
+ "url": "https://opencollective.com/browserslist"
3403
+ },
3404
+ {
3405
+ "type": "tidelift",
3406
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
3407
+ },
3408
+ {
3409
+ "type": "github",
3410
+ "url": "https://github.com/sponsors/ai"
3411
+ }
3412
+ ],
3413
+ "license": "CC-BY-4.0"
3414
+ },
3415
+ "node_modules/client-only": {
3416
+ "version": "0.0.1",
3417
+ "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
3418
+ "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
3419
+ "license": "MIT"
3420
+ },
3421
+ "node_modules/clsx": {
3422
+ "version": "2.1.1",
3423
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
3424
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
3425
+ "license": "MIT",
3426
+ "engines": {
3427
+ "node": ">=6"
3428
+ }
3429
+ },
3430
+ "node_modules/convert-source-map": {
3431
+ "version": "2.0.0",
3432
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
3433
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
3434
+ "dev": true,
3435
+ "license": "MIT"
3436
+ },
3437
+ "node_modules/cssesc": {
3438
+ "version": "3.0.0",
3439
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
3440
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
3441
+ "license": "MIT",
3442
+ "bin": {
3443
+ "cssesc": "bin/cssesc"
3444
+ },
3445
+ "engines": {
3446
+ "node": ">=4"
3447
+ }
3448
+ },
3449
+ "node_modules/debug": {
3450
+ "version": "4.4.3",
3451
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
3452
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
3453
+ "dev": true,
3454
+ "license": "MIT",
3455
+ "dependencies": {
3456
+ "ms": "^2.1.3"
3457
+ },
3458
+ "engines": {
3459
+ "node": ">=6.0"
3460
+ },
3461
+ "peerDependenciesMeta": {
3462
+ "supports-color": {
3463
+ "optional": true
3464
+ }
3465
+ }
3466
+ },
3467
+ "node_modules/decimal.js": {
3468
+ "version": "10.6.0",
3469
+ "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz",
3470
+ "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==",
3471
+ "license": "MIT"
3472
+ },
3473
+ "node_modules/detect-libc": {
3474
+ "version": "2.1.2",
3475
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
3476
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
3477
+ "license": "Apache-2.0",
3478
+ "engines": {
3479
+ "node": ">=8"
3480
+ }
3481
+ },
3482
+ "node_modules/electron-to-chromium": {
3483
+ "version": "1.5.313",
3484
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.313.tgz",
3485
+ "integrity": "sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==",
3486
+ "dev": true,
3487
+ "license": "ISC"
3488
+ },
3489
+ "node_modules/enhanced-resolve": {
3490
+ "version": "5.20.1",
3491
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz",
3492
+ "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==",
3493
+ "license": "MIT",
3494
+ "dependencies": {
3495
+ "graceful-fs": "^4.2.4",
3496
+ "tapable": "^2.3.0"
3497
+ },
3498
+ "engines": {
3499
+ "node": ">=10.13.0"
3500
+ }
3501
+ },
3502
+ "node_modules/esbuild": {
3503
+ "version": "0.21.5",
3504
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
3505
+ "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
3506
+ "hasInstallScript": true,
3507
+ "license": "MIT",
3508
+ "bin": {
3509
+ "esbuild": "bin/esbuild"
3510
+ },
3511
+ "engines": {
3512
+ "node": ">=12"
3513
+ },
3514
+ "optionalDependencies": {
3515
+ "@esbuild/aix-ppc64": "0.21.5",
3516
+ "@esbuild/android-arm": "0.21.5",
3517
+ "@esbuild/android-arm64": "0.21.5",
3518
+ "@esbuild/android-x64": "0.21.5",
3519
+ "@esbuild/darwin-arm64": "0.21.5",
3520
+ "@esbuild/darwin-x64": "0.21.5",
3521
+ "@esbuild/freebsd-arm64": "0.21.5",
3522
+ "@esbuild/freebsd-x64": "0.21.5",
3523
+ "@esbuild/linux-arm": "0.21.5",
3524
+ "@esbuild/linux-arm64": "0.21.5",
3525
+ "@esbuild/linux-ia32": "0.21.5",
3526
+ "@esbuild/linux-loong64": "0.21.5",
3527
+ "@esbuild/linux-mips64el": "0.21.5",
3528
+ "@esbuild/linux-ppc64": "0.21.5",
3529
+ "@esbuild/linux-riscv64": "0.21.5",
3530
+ "@esbuild/linux-s390x": "0.21.5",
3531
+ "@esbuild/linux-x64": "0.21.5",
3532
+ "@esbuild/netbsd-x64": "0.21.5",
3533
+ "@esbuild/openbsd-x64": "0.21.5",
3534
+ "@esbuild/sunos-x64": "0.21.5",
3535
+ "@esbuild/win32-arm64": "0.21.5",
3536
+ "@esbuild/win32-ia32": "0.21.5",
3537
+ "@esbuild/win32-x64": "0.21.5"
3538
+ }
3539
+ },
3540
+ "node_modules/escalade": {
3541
+ "version": "3.2.0",
3542
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
3543
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
3544
+ "dev": true,
3545
+ "license": "MIT",
3546
+ "engines": {
3547
+ "node": ">=6"
3548
+ }
3549
+ },
3550
+ "node_modules/fsevents": {
3551
+ "version": "2.3.3",
3552
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
3553
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
3554
+ "hasInstallScript": true,
3555
+ "license": "MIT",
3556
+ "optional": true,
3557
+ "os": [
3558
+ "darwin"
3559
+ ],
3560
+ "engines": {
3561
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
3562
+ }
3563
+ },
3564
+ "node_modules/gensync": {
3565
+ "version": "1.0.0-beta.2",
3566
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
3567
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
3568
+ "dev": true,
3569
+ "license": "MIT",
3570
+ "engines": {
3571
+ "node": ">=6.9.0"
3572
+ }
3573
+ },
3574
+ "node_modules/graceful-fs": {
3575
+ "version": "4.2.11",
3576
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
3577
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
3578
+ "license": "ISC"
3579
+ },
3580
+ "node_modules/intl-messageformat": {
3581
+ "version": "10.7.18",
3582
+ "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.7.18.tgz",
3583
+ "integrity": "sha512-m3Ofv/X/tV8Y3tHXLohcuVuhWKo7BBq62cqY15etqmLxg2DZ34AGGgQDeR+SCta2+zICb1NX83af0GJmbQ1++g==",
3584
+ "license": "BSD-3-Clause",
3585
+ "dependencies": {
3586
+ "@formatjs/ecma402-abstract": "2.3.6",
3587
+ "@formatjs/fast-memoize": "2.2.7",
3588
+ "@formatjs/icu-messageformat-parser": "2.11.4",
3589
+ "tslib": "^2.8.0"
3590
+ }
3591
+ },
3592
+ "node_modules/jiti": {
3593
+ "version": "2.6.1",
3594
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
3595
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
3596
+ "license": "MIT",
3597
+ "bin": {
3598
+ "jiti": "lib/jiti-cli.mjs"
3599
+ }
3600
+ },
3601
+ "node_modules/js-tokens": {
3602
+ "version": "4.0.0",
3603
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
3604
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
3605
+ "license": "MIT"
3606
+ },
3607
+ "node_modules/jsesc": {
3608
+ "version": "3.1.0",
3609
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
3610
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
3611
+ "dev": true,
3612
+ "license": "MIT",
3613
+ "bin": {
3614
+ "jsesc": "bin/jsesc"
3615
+ },
3616
+ "engines": {
3617
+ "node": ">=6"
3618
+ }
3619
+ },
3620
+ "node_modules/json5": {
3621
+ "version": "2.2.3",
3622
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
3623
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
3624
+ "dev": true,
3625
+ "license": "MIT",
3626
+ "bin": {
3627
+ "json5": "lib/cli.js"
3628
+ },
3629
+ "engines": {
3630
+ "node": ">=6"
3631
+ }
3632
+ },
3633
+ "node_modules/lightningcss": {
3634
+ "version": "1.32.0",
3635
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
3636
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
3637
+ "license": "MPL-2.0",
3638
+ "dependencies": {
3639
+ "detect-libc": "^2.0.3"
3640
+ },
3641
+ "engines": {
3642
+ "node": ">= 12.0.0"
3643
+ },
3644
+ "funding": {
3645
+ "type": "opencollective",
3646
+ "url": "https://opencollective.com/parcel"
3647
+ },
3648
+ "optionalDependencies": {
3649
+ "lightningcss-android-arm64": "1.32.0",
3650
+ "lightningcss-darwin-arm64": "1.32.0",
3651
+ "lightningcss-darwin-x64": "1.32.0",
3652
+ "lightningcss-freebsd-x64": "1.32.0",
3653
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
3654
+ "lightningcss-linux-arm64-gnu": "1.32.0",
3655
+ "lightningcss-linux-arm64-musl": "1.32.0",
3656
+ "lightningcss-linux-x64-gnu": "1.32.0",
3657
+ "lightningcss-linux-x64-musl": "1.32.0",
3658
+ "lightningcss-win32-arm64-msvc": "1.32.0",
3659
+ "lightningcss-win32-x64-msvc": "1.32.0"
3660
+ }
3661
+ },
3662
+ "node_modules/lightningcss-android-arm64": {
3663
+ "version": "1.32.0",
3664
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
3665
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
3666
+ "cpu": [
3667
+ "arm64"
3668
+ ],
3669
+ "license": "MPL-2.0",
3670
+ "optional": true,
3671
+ "os": [
3672
+ "android"
3673
+ ],
3674
+ "engines": {
3675
+ "node": ">= 12.0.0"
3676
+ },
3677
+ "funding": {
3678
+ "type": "opencollective",
3679
+ "url": "https://opencollective.com/parcel"
3680
+ }
3681
+ },
3682
+ "node_modules/lightningcss-darwin-arm64": {
3683
+ "version": "1.32.0",
3684
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
3685
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
3686
+ "cpu": [
3687
+ "arm64"
3688
+ ],
3689
+ "license": "MPL-2.0",
3690
+ "optional": true,
3691
+ "os": [
3692
+ "darwin"
3693
+ ],
3694
+ "engines": {
3695
+ "node": ">= 12.0.0"
3696
+ },
3697
+ "funding": {
3698
+ "type": "opencollective",
3699
+ "url": "https://opencollective.com/parcel"
3700
+ }
3701
+ },
3702
+ "node_modules/lightningcss-darwin-x64": {
3703
+ "version": "1.32.0",
3704
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
3705
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
3706
+ "cpu": [
3707
+ "x64"
3708
+ ],
3709
+ "license": "MPL-2.0",
3710
+ "optional": true,
3711
+ "os": [
3712
+ "darwin"
3713
+ ],
3714
+ "engines": {
3715
+ "node": ">= 12.0.0"
3716
+ },
3717
+ "funding": {
3718
+ "type": "opencollective",
3719
+ "url": "https://opencollective.com/parcel"
3720
+ }
3721
+ },
3722
+ "node_modules/lightningcss-freebsd-x64": {
3723
+ "version": "1.32.0",
3724
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
3725
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
3726
+ "cpu": [
3727
+ "x64"
3728
+ ],
3729
+ "license": "MPL-2.0",
3730
+ "optional": true,
3731
+ "os": [
3732
+ "freebsd"
3733
+ ],
3734
+ "engines": {
3735
+ "node": ">= 12.0.0"
3736
+ },
3737
+ "funding": {
3738
+ "type": "opencollective",
3739
+ "url": "https://opencollective.com/parcel"
3740
+ }
3741
+ },
3742
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
3743
+ "version": "1.32.0",
3744
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
3745
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
3746
+ "cpu": [
3747
+ "arm"
3748
+ ],
3749
+ "license": "MPL-2.0",
3750
+ "optional": true,
3751
+ "os": [
3752
+ "linux"
3753
+ ],
3754
+ "engines": {
3755
+ "node": ">= 12.0.0"
3756
+ },
3757
+ "funding": {
3758
+ "type": "opencollective",
3759
+ "url": "https://opencollective.com/parcel"
3760
+ }
3761
+ },
3762
+ "node_modules/lightningcss-linux-arm64-gnu": {
3763
+ "version": "1.32.0",
3764
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
3765
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
3766
+ "cpu": [
3767
+ "arm64"
3768
+ ],
3769
+ "license": "MPL-2.0",
3770
+ "optional": true,
3771
+ "os": [
3772
+ "linux"
3773
+ ],
3774
+ "engines": {
3775
+ "node": ">= 12.0.0"
3776
+ },
3777
+ "funding": {
3778
+ "type": "opencollective",
3779
+ "url": "https://opencollective.com/parcel"
3780
+ }
3781
+ },
3782
+ "node_modules/lightningcss-linux-arm64-musl": {
3783
+ "version": "1.32.0",
3784
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
3785
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
3786
+ "cpu": [
3787
+ "arm64"
3788
+ ],
3789
+ "license": "MPL-2.0",
3790
+ "optional": true,
3791
+ "os": [
3792
+ "linux"
3793
+ ],
3794
+ "engines": {
3795
+ "node": ">= 12.0.0"
3796
+ },
3797
+ "funding": {
3798
+ "type": "opencollective",
3799
+ "url": "https://opencollective.com/parcel"
3800
+ }
3801
+ },
3802
+ "node_modules/lightningcss-linux-x64-gnu": {
3803
+ "version": "1.32.0",
3804
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
3805
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
3806
+ "cpu": [
3807
+ "x64"
3808
+ ],
3809
+ "license": "MPL-2.0",
3810
+ "optional": true,
3811
+ "os": [
3812
+ "linux"
3813
+ ],
3814
+ "engines": {
3815
+ "node": ">= 12.0.0"
3816
+ },
3817
+ "funding": {
3818
+ "type": "opencollective",
3819
+ "url": "https://opencollective.com/parcel"
3820
+ }
3821
+ },
3822
+ "node_modules/lightningcss-linux-x64-musl": {
3823
+ "version": "1.32.0",
3824
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
3825
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
3826
+ "cpu": [
3827
+ "x64"
3828
+ ],
3829
+ "license": "MPL-2.0",
3830
+ "optional": true,
3831
+ "os": [
3832
+ "linux"
3833
+ ],
3834
+ "engines": {
3835
+ "node": ">= 12.0.0"
3836
+ },
3837
+ "funding": {
3838
+ "type": "opencollective",
3839
+ "url": "https://opencollective.com/parcel"
3840
+ }
3841
+ },
3842
+ "node_modules/lightningcss-win32-arm64-msvc": {
3843
+ "version": "1.32.0",
3844
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
3845
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
3846
+ "cpu": [
3847
+ "arm64"
3848
+ ],
3849
+ "license": "MPL-2.0",
3850
+ "optional": true,
3851
+ "os": [
3852
+ "win32"
3853
+ ],
3854
+ "engines": {
3855
+ "node": ">= 12.0.0"
3856
+ },
3857
+ "funding": {
3858
+ "type": "opencollective",
3859
+ "url": "https://opencollective.com/parcel"
3860
+ }
3861
+ },
3862
+ "node_modules/lightningcss-win32-x64-msvc": {
3863
+ "version": "1.32.0",
3864
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
3865
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
3866
+ "cpu": [
3867
+ "x64"
3868
+ ],
3869
+ "license": "MPL-2.0",
3870
+ "optional": true,
3871
+ "os": [
3872
+ "win32"
3873
+ ],
3874
+ "engines": {
3875
+ "node": ">= 12.0.0"
3876
+ },
3877
+ "funding": {
3878
+ "type": "opencollective",
3879
+ "url": "https://opencollective.com/parcel"
3880
+ }
3881
+ },
3882
+ "node_modules/loose-envify": {
3883
+ "version": "1.4.0",
3884
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
3885
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
3886
+ "license": "MIT",
3887
+ "dependencies": {
3888
+ "js-tokens": "^3.0.0 || ^4.0.0"
3889
+ },
3890
+ "bin": {
3891
+ "loose-envify": "cli.js"
3892
+ }
3893
+ },
3894
+ "node_modules/lru-cache": {
3895
+ "version": "5.1.1",
3896
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
3897
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
3898
+ "dev": true,
3899
+ "license": "ISC",
3900
+ "dependencies": {
3901
+ "yallist": "^3.0.2"
3902
+ }
3903
+ },
3904
+ "node_modules/magic-string": {
3905
+ "version": "0.30.21",
3906
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
3907
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
3908
+ "license": "MIT",
3909
+ "dependencies": {
3910
+ "@jridgewell/sourcemap-codec": "^1.5.5"
3911
+ }
3912
+ },
3913
+ "node_modules/ms": {
3914
+ "version": "2.1.3",
3915
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3916
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3917
+ "dev": true,
3918
+ "license": "MIT"
3919
+ },
3920
+ "node_modules/nanoid": {
3921
+ "version": "3.3.11",
3922
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
3923
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
3924
+ "funding": [
3925
+ {
3926
+ "type": "github",
3927
+ "url": "https://github.com/sponsors/ai"
3928
+ }
3929
+ ],
3930
+ "license": "MIT",
3931
+ "bin": {
3932
+ "nanoid": "bin/nanoid.cjs"
3933
+ },
3934
+ "engines": {
3935
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3936
+ }
3937
+ },
3938
+ "node_modules/node-releases": {
3939
+ "version": "2.0.36",
3940
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
3941
+ "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
3942
+ "dev": true,
3943
+ "license": "MIT"
3944
+ },
3945
+ "node_modules/picocolors": {
3946
+ "version": "1.1.1",
3947
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3948
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3949
+ "license": "ISC"
3950
+ },
3951
+ "node_modules/postcss": {
3952
+ "version": "8.5.8",
3953
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
3954
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
3955
+ "funding": [
3956
+ {
3957
+ "type": "opencollective",
3958
+ "url": "https://opencollective.com/postcss/"
3959
+ },
3960
+ {
3961
+ "type": "tidelift",
3962
+ "url": "https://tidelift.com/funding/github/npm/postcss"
3963
+ },
3964
+ {
3965
+ "type": "github",
3966
+ "url": "https://github.com/sponsors/ai"
3967
+ }
3968
+ ],
3969
+ "license": "MIT",
3970
+ "dependencies": {
3971
+ "nanoid": "^3.3.11",
3972
+ "picocolors": "^1.1.1",
3973
+ "source-map-js": "^1.2.1"
3974
+ },
3975
+ "engines": {
3976
+ "node": "^10 || ^12 || >=14"
3977
+ }
3978
+ },
3979
+ "node_modules/postcss-selector-parser": {
3980
+ "version": "6.0.10",
3981
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
3982
+ "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
3983
+ "license": "MIT",
3984
+ "dependencies": {
3985
+ "cssesc": "^3.0.0",
3986
+ "util-deprecate": "^1.0.2"
3987
+ },
3988
+ "engines": {
3989
+ "node": ">=4"
3990
+ }
3991
+ },
3992
+ "node_modules/react": {
3993
+ "version": "18.3.1",
3994
+ "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
3995
+ "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
3996
+ "license": "MIT",
3997
+ "dependencies": {
3998
+ "loose-envify": "^1.1.0"
3999
+ },
4000
+ "engines": {
4001
+ "node": ">=0.10.0"
4002
+ }
4003
+ },
4004
+ "node_modules/react-aria": {
4005
+ "version": "3.47.0",
4006
+ "resolved": "https://registry.npmjs.org/react-aria/-/react-aria-3.47.0.tgz",
4007
+ "integrity": "sha512-nvahimIqdByl/PXk/xPkG30LPRzcin+/Uk0uFfwbbKRRFC9aa22a6BRULZLqVHwa9GaNyKe6CDUxO1Dde4v0kA==",
4008
+ "license": "Apache-2.0",
4009
+ "dependencies": {
4010
+ "@internationalized/string": "^3.2.7",
4011
+ "@react-aria/breadcrumbs": "^3.5.32",
4012
+ "@react-aria/button": "^3.14.5",
4013
+ "@react-aria/calendar": "^3.9.5",
4014
+ "@react-aria/checkbox": "^3.16.5",
4015
+ "@react-aria/color": "^3.1.5",
4016
+ "@react-aria/combobox": "^3.15.0",
4017
+ "@react-aria/datepicker": "^3.16.1",
4018
+ "@react-aria/dialog": "^3.5.34",
4019
+ "@react-aria/disclosure": "^3.1.3",
4020
+ "@react-aria/dnd": "^3.11.6",
4021
+ "@react-aria/focus": "^3.21.5",
4022
+ "@react-aria/gridlist": "^3.14.4",
4023
+ "@react-aria/i18n": "^3.12.16",
4024
+ "@react-aria/interactions": "^3.27.1",
4025
+ "@react-aria/label": "^3.7.25",
4026
+ "@react-aria/landmark": "^3.0.10",
4027
+ "@react-aria/link": "^3.8.9",
4028
+ "@react-aria/listbox": "^3.15.3",
4029
+ "@react-aria/menu": "^3.21.0",
4030
+ "@react-aria/meter": "^3.4.30",
4031
+ "@react-aria/numberfield": "^3.12.5",
4032
+ "@react-aria/overlays": "^3.31.2",
4033
+ "@react-aria/progress": "^3.4.30",
4034
+ "@react-aria/radio": "^3.12.5",
4035
+ "@react-aria/searchfield": "^3.8.12",
4036
+ "@react-aria/select": "^3.17.3",
4037
+ "@react-aria/selection": "^3.27.2",
4038
+ "@react-aria/separator": "^3.4.16",
4039
+ "@react-aria/slider": "^3.8.5",
4040
+ "@react-aria/ssr": "^3.9.10",
4041
+ "@react-aria/switch": "^3.7.11",
4042
+ "@react-aria/table": "^3.17.11",
4043
+ "@react-aria/tabs": "^3.11.1",
4044
+ "@react-aria/tag": "^3.8.1",
4045
+ "@react-aria/textfield": "^3.18.5",
4046
+ "@react-aria/toast": "^3.0.11",
4047
+ "@react-aria/tooltip": "^3.9.2",
4048
+ "@react-aria/tree": "^3.1.7",
4049
+ "@react-aria/utils": "^3.33.1",
4050
+ "@react-aria/visually-hidden": "^3.8.31",
4051
+ "@react-types/shared": "^3.33.1"
4052
+ },
4053
+ "peerDependencies": {
4054
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
4055
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
4056
+ }
4057
+ },
4058
+ "node_modules/react-aria-components": {
4059
+ "version": "1.16.0",
4060
+ "resolved": "https://registry.npmjs.org/react-aria-components/-/react-aria-components-1.16.0.tgz",
4061
+ "integrity": "sha512-MjHbTLpMFzzD2Tv5KbeXoZwPczuUWZcRavVvQQlNHRtXHH38D+sToMEYpNeir7Wh3K/XWtzeX3EujfJW6QNkrw==",
4062
+ "license": "Apache-2.0",
4063
+ "dependencies": {
4064
+ "@internationalized/date": "^3.12.0",
4065
+ "@internationalized/string": "^3.2.7",
4066
+ "@react-aria/autocomplete": "3.0.0-rc.6",
4067
+ "@react-aria/collections": "^3.0.3",
4068
+ "@react-aria/dnd": "^3.11.6",
4069
+ "@react-aria/focus": "^3.21.5",
4070
+ "@react-aria/interactions": "^3.27.1",
4071
+ "@react-aria/live-announcer": "^3.4.4",
4072
+ "@react-aria/overlays": "^3.31.2",
4073
+ "@react-aria/ssr": "^3.9.10",
4074
+ "@react-aria/textfield": "^3.18.5",
4075
+ "@react-aria/toolbar": "3.0.0-beta.24",
4076
+ "@react-aria/utils": "^3.33.1",
4077
+ "@react-aria/virtualizer": "^4.1.13",
4078
+ "@react-stately/autocomplete": "3.0.0-beta.4",
4079
+ "@react-stately/layout": "^4.6.0",
4080
+ "@react-stately/selection": "^3.20.9",
4081
+ "@react-stately/table": "^3.15.4",
4082
+ "@react-stately/utils": "^3.11.0",
4083
+ "@react-stately/virtualizer": "^4.4.6",
4084
+ "@react-types/form": "^3.7.18",
4085
+ "@react-types/grid": "^3.3.8",
4086
+ "@react-types/shared": "^3.33.1",
4087
+ "@react-types/table": "^3.13.6",
4088
+ "@swc/helpers": "^0.5.0",
4089
+ "client-only": "^0.0.1",
4090
+ "react-aria": "^3.47.0",
4091
+ "react-stately": "^3.45.0",
4092
+ "use-sync-external-store": "^1.6.0"
4093
+ },
4094
+ "peerDependencies": {
4095
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
4096
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
4097
+ }
4098
+ },
4099
+ "node_modules/react-dom": {
4100
+ "version": "18.3.1",
4101
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
4102
+ "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
4103
+ "license": "MIT",
4104
+ "dependencies": {
4105
+ "loose-envify": "^1.1.0",
4106
+ "scheduler": "^0.23.2"
4107
+ },
4108
+ "peerDependencies": {
4109
+ "react": "^18.3.1"
4110
+ }
4111
+ },
4112
+ "node_modules/react-refresh": {
4113
+ "version": "0.17.0",
4114
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
4115
+ "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
4116
+ "dev": true,
4117
+ "license": "MIT",
4118
+ "engines": {
4119
+ "node": ">=0.10.0"
4120
+ }
4121
+ },
4122
+ "node_modules/react-stately": {
4123
+ "version": "3.45.0",
4124
+ "resolved": "https://registry.npmjs.org/react-stately/-/react-stately-3.45.0.tgz",
4125
+ "integrity": "sha512-G3bYr0BIiookpt4H05VeZUuVS/FslQAj2TeT8vDfCiL314Y+LtPXIPe/a3eamCA0wljy7z1EDYKV50Qbz7pcJg==",
4126
+ "license": "Apache-2.0",
4127
+ "dependencies": {
4128
+ "@react-stately/calendar": "^3.9.3",
4129
+ "@react-stately/checkbox": "^3.7.5",
4130
+ "@react-stately/collections": "^3.12.10",
4131
+ "@react-stately/color": "^3.9.5",
4132
+ "@react-stately/combobox": "^3.13.0",
4133
+ "@react-stately/data": "^3.15.2",
4134
+ "@react-stately/datepicker": "^3.16.1",
4135
+ "@react-stately/disclosure": "^3.0.11",
4136
+ "@react-stately/dnd": "^3.7.4",
4137
+ "@react-stately/form": "^3.2.4",
4138
+ "@react-stately/list": "^3.13.4",
4139
+ "@react-stately/menu": "^3.9.11",
4140
+ "@react-stately/numberfield": "^3.11.0",
4141
+ "@react-stately/overlays": "^3.6.23",
4142
+ "@react-stately/radio": "^3.11.5",
4143
+ "@react-stately/searchfield": "^3.5.19",
4144
+ "@react-stately/select": "^3.9.2",
4145
+ "@react-stately/selection": "^3.20.9",
4146
+ "@react-stately/slider": "^3.7.5",
4147
+ "@react-stately/table": "^3.15.4",
4148
+ "@react-stately/tabs": "^3.8.9",
4149
+ "@react-stately/toast": "^3.1.3",
4150
+ "@react-stately/toggle": "^3.9.5",
4151
+ "@react-stately/tooltip": "^3.5.11",
4152
+ "@react-stately/tree": "^3.9.6",
4153
+ "@react-types/shared": "^3.33.1"
4154
+ },
4155
+ "peerDependencies": {
4156
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
4157
+ }
4158
+ },
4159
+ "node_modules/rollup": {
4160
+ "version": "4.59.0",
4161
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz",
4162
+ "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==",
4163
+ "license": "MIT",
4164
+ "dependencies": {
4165
+ "@types/estree": "1.0.8"
4166
+ },
4167
+ "bin": {
4168
+ "rollup": "dist/bin/rollup"
4169
+ },
4170
+ "engines": {
4171
+ "node": ">=18.0.0",
4172
+ "npm": ">=8.0.0"
4173
+ },
4174
+ "optionalDependencies": {
4175
+ "@rollup/rollup-android-arm-eabi": "4.59.0",
4176
+ "@rollup/rollup-android-arm64": "4.59.0",
4177
+ "@rollup/rollup-darwin-arm64": "4.59.0",
4178
+ "@rollup/rollup-darwin-x64": "4.59.0",
4179
+ "@rollup/rollup-freebsd-arm64": "4.59.0",
4180
+ "@rollup/rollup-freebsd-x64": "4.59.0",
4181
+ "@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
4182
+ "@rollup/rollup-linux-arm-musleabihf": "4.59.0",
4183
+ "@rollup/rollup-linux-arm64-gnu": "4.59.0",
4184
+ "@rollup/rollup-linux-arm64-musl": "4.59.0",
4185
+ "@rollup/rollup-linux-loong64-gnu": "4.59.0",
4186
+ "@rollup/rollup-linux-loong64-musl": "4.59.0",
4187
+ "@rollup/rollup-linux-ppc64-gnu": "4.59.0",
4188
+ "@rollup/rollup-linux-ppc64-musl": "4.59.0",
4189
+ "@rollup/rollup-linux-riscv64-gnu": "4.59.0",
4190
+ "@rollup/rollup-linux-riscv64-musl": "4.59.0",
4191
+ "@rollup/rollup-linux-s390x-gnu": "4.59.0",
4192
+ "@rollup/rollup-linux-x64-gnu": "4.59.0",
4193
+ "@rollup/rollup-linux-x64-musl": "4.59.0",
4194
+ "@rollup/rollup-openbsd-x64": "4.59.0",
4195
+ "@rollup/rollup-openharmony-arm64": "4.59.0",
4196
+ "@rollup/rollup-win32-arm64-msvc": "4.59.0",
4197
+ "@rollup/rollup-win32-ia32-msvc": "4.59.0",
4198
+ "@rollup/rollup-win32-x64-gnu": "4.59.0",
4199
+ "@rollup/rollup-win32-x64-msvc": "4.59.0",
4200
+ "fsevents": "~2.3.2"
4201
+ }
4202
+ },
4203
+ "node_modules/scheduler": {
4204
+ "version": "0.23.2",
4205
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
4206
+ "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
4207
+ "license": "MIT",
4208
+ "dependencies": {
4209
+ "loose-envify": "^1.1.0"
4210
+ }
4211
+ },
4212
+ "node_modules/semver": {
4213
+ "version": "6.3.1",
4214
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
4215
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
4216
+ "dev": true,
4217
+ "license": "ISC",
4218
+ "bin": {
4219
+ "semver": "bin/semver.js"
4220
+ }
4221
+ },
4222
+ "node_modules/source-map-js": {
4223
+ "version": "1.2.1",
4224
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
4225
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
4226
+ "license": "BSD-3-Clause",
4227
+ "engines": {
4228
+ "node": ">=0.10.0"
4229
+ }
4230
+ },
4231
+ "node_modules/tailwind-merge": {
4232
+ "version": "3.5.0",
4233
+ "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.5.0.tgz",
4234
+ "integrity": "sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==",
4235
+ "license": "MIT",
4236
+ "funding": {
4237
+ "type": "github",
4238
+ "url": "https://github.com/sponsors/dcastil"
4239
+ }
4240
+ },
4241
+ "node_modules/tailwindcss": {
4242
+ "version": "4.2.2",
4243
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz",
4244
+ "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==",
4245
+ "license": "MIT"
4246
+ },
4247
+ "node_modules/tailwindcss-animate": {
4248
+ "version": "1.0.7",
4249
+ "resolved": "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz",
4250
+ "integrity": "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==",
4251
+ "license": "MIT",
4252
+ "peerDependencies": {
4253
+ "tailwindcss": ">=3.0.0 || insiders"
4254
+ }
4255
+ },
4256
+ "node_modules/tailwindcss-react-aria-components": {
4257
+ "version": "2.0.1",
4258
+ "resolved": "https://registry.npmjs.org/tailwindcss-react-aria-components/-/tailwindcss-react-aria-components-2.0.1.tgz",
4259
+ "integrity": "sha512-yTAfYv9BE/gKczS+b8UiFMqxnrEYKKNE6Y4vAWzGadkHGb4Yuawp0SHbZKkZJQgFvK0KjO3JpCq/0kzR5jJ9tw==",
4260
+ "license": "Apache-2.0",
4261
+ "peerDependencies": {
4262
+ "tailwindcss": "^4.0.0"
4263
+ }
4264
+ },
4265
+ "node_modules/tapable": {
4266
+ "version": "2.3.0",
4267
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
4268
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
4269
+ "license": "MIT",
4270
+ "engines": {
4271
+ "node": ">=6"
4272
+ },
4273
+ "funding": {
4274
+ "type": "opencollective",
4275
+ "url": "https://opencollective.com/webpack"
4276
+ }
4277
+ },
4278
+ "node_modules/tslib": {
4279
+ "version": "2.8.1",
4280
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
4281
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
4282
+ "license": "0BSD"
4283
+ },
4284
+ "node_modules/update-browserslist-db": {
4285
+ "version": "1.2.3",
4286
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
4287
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
4288
+ "dev": true,
4289
+ "funding": [
4290
+ {
4291
+ "type": "opencollective",
4292
+ "url": "https://opencollective.com/browserslist"
4293
+ },
4294
+ {
4295
+ "type": "tidelift",
4296
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
4297
+ },
4298
+ {
4299
+ "type": "github",
4300
+ "url": "https://github.com/sponsors/ai"
4301
+ }
4302
+ ],
4303
+ "license": "MIT",
4304
+ "dependencies": {
4305
+ "escalade": "^3.2.0",
4306
+ "picocolors": "^1.1.1"
4307
+ },
4308
+ "bin": {
4309
+ "update-browserslist-db": "cli.js"
4310
+ },
4311
+ "peerDependencies": {
4312
+ "browserslist": ">= 4.21.0"
4313
+ }
4314
+ },
4315
+ "node_modules/use-sync-external-store": {
4316
+ "version": "1.6.0",
4317
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
4318
+ "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
4319
+ "license": "MIT",
4320
+ "peerDependencies": {
4321
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
4322
+ }
4323
+ },
4324
+ "node_modules/util-deprecate": {
4325
+ "version": "1.0.2",
4326
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
4327
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
4328
+ "license": "MIT"
4329
+ },
4330
+ "node_modules/vite": {
4331
+ "version": "5.4.21",
4332
+ "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz",
4333
+ "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==",
4334
+ "license": "MIT",
4335
+ "dependencies": {
4336
+ "esbuild": "^0.21.3",
4337
+ "postcss": "^8.4.43",
4338
+ "rollup": "^4.20.0"
4339
+ },
4340
+ "bin": {
4341
+ "vite": "bin/vite.js"
4342
+ },
4343
+ "engines": {
4344
+ "node": "^18.0.0 || >=20.0.0"
4345
+ },
4346
+ "funding": {
4347
+ "url": "https://github.com/vitejs/vite?sponsor=1"
4348
+ },
4349
+ "optionalDependencies": {
4350
+ "fsevents": "~2.3.3"
4351
+ },
4352
+ "peerDependencies": {
4353
+ "@types/node": "^18.0.0 || >=20.0.0",
4354
+ "less": "*",
4355
+ "lightningcss": "^1.21.0",
4356
+ "sass": "*",
4357
+ "sass-embedded": "*",
4358
+ "stylus": "*",
4359
+ "sugarss": "*",
4360
+ "terser": "^5.4.0"
4361
+ },
4362
+ "peerDependenciesMeta": {
4363
+ "@types/node": {
4364
+ "optional": true
4365
+ },
4366
+ "less": {
4367
+ "optional": true
4368
+ },
4369
+ "lightningcss": {
4370
+ "optional": true
4371
+ },
4372
+ "sass": {
4373
+ "optional": true
4374
+ },
4375
+ "sass-embedded": {
4376
+ "optional": true
4377
+ },
4378
+ "stylus": {
4379
+ "optional": true
4380
+ },
4381
+ "sugarss": {
4382
+ "optional": true
4383
+ },
4384
+ "terser": {
4385
+ "optional": true
4386
+ }
4387
+ }
4388
+ },
4389
+ "node_modules/yallist": {
4390
+ "version": "3.1.1",
4391
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
4392
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
4393
+ "dev": true,
4394
+ "license": "ISC"
4395
+ }
4396
+ }
4397
+ }