@marimo-team/frontend 0.14.18-dev21 → 0.14.18-dev24

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 (1159) hide show
  1. package/package.json +3 -2
  2. package/src/README.md +18 -0
  3. package/src/__mocks__/common.ts +160 -0
  4. package/src/__mocks__/notebook.ts +76 -0
  5. package/src/__mocks__/requests.ts +72 -0
  6. package/src/__mocks__/tracebacks.ts +32 -0
  7. package/src/__tests__/CellStatus.test.tsx +263 -0
  8. package/src/__tests__/__snapshots__/CellStatus.test.tsx.snap +523 -0
  9. package/src/__tests__/chat-utils.test.ts +234 -0
  10. package/src/__tests__/lru.test.ts +74 -0
  11. package/src/__tests__/main.test.tsx +174 -0
  12. package/src/__tests__/setup.ts +17 -0
  13. package/src/__tests__/test-helpers.ts +24 -0
  14. package/src/assets/circle-check.ico +0 -0
  15. package/src/assets/circle-play.ico +0 -0
  16. package/src/assets/circle-x.ico +0 -0
  17. package/src/assets/gradient.png +0 -0
  18. package/src/assets/icon-16x16.png +0 -0
  19. package/src/assets/icon-32x32.png +0 -0
  20. package/src/assets/noise.png +0 -0
  21. package/src/components/ai/ai-provider-icon.tsx +47 -0
  22. package/src/components/app-config/ai-config.tsx +760 -0
  23. package/src/components/app-config/app-config-button.tsx +91 -0
  24. package/src/components/app-config/app-config-form.tsx +307 -0
  25. package/src/components/app-config/common.tsx +48 -0
  26. package/src/components/app-config/constants.ts +47 -0
  27. package/src/components/app-config/incorrect-model-id.tsx +41 -0
  28. package/src/components/app-config/is-overridden.tsx +119 -0
  29. package/src/components/app-config/optional-features.tsx +251 -0
  30. package/src/components/app-config/state.ts +18 -0
  31. package/src/components/app-config/user-config-form.tsx +1329 -0
  32. package/src/components/audio/audio-recorder.tsx +63 -0
  33. package/src/components/buttons/clear-button.tsx +23 -0
  34. package/src/components/buttons/undo-button.tsx +35 -0
  35. package/src/components/chat/chat-panel.tsx +772 -0
  36. package/src/components/chat/markdown-renderer.tsx +217 -0
  37. package/src/components/chat/reasoning-accordion.tsx +50 -0
  38. package/src/components/chat/tool-call-accordion.tsx +118 -0
  39. package/src/components/data-table/SearchBar.tsx +66 -0
  40. package/src/components/data-table/TableActions.tsx +183 -0
  41. package/src/components/data-table/__tests__/__snapshots__/chart-spec-model.test.ts.snap +1079 -0
  42. package/src/components/data-table/__tests__/chart-spec-model.test.ts +707 -0
  43. package/src/components/data-table/__tests__/column_formatting.test.ts +115 -0
  44. package/src/components/data-table/__tests__/columns.test.tsx +341 -0
  45. package/src/components/data-table/__tests__/data-table.test.tsx +60 -0
  46. package/src/components/data-table/__tests__/pagination.test.tsx +152 -0
  47. package/src/components/data-table/__tests__/types.test.ts +44 -0
  48. package/src/components/data-table/__tests__/url-detector.test.tsx +169 -0
  49. package/src/components/data-table/__tests__/useColumnPinning.test.ts +76 -0
  50. package/src/components/data-table/cell-selection/__tests__/feature.test.ts +187 -0
  51. package/src/components/data-table/cell-selection/feature.ts +123 -0
  52. package/src/components/data-table/cell-selection/types.ts +49 -0
  53. package/src/components/data-table/cell-styling/feature.ts +40 -0
  54. package/src/components/data-table/cell-styling/types.ts +26 -0
  55. package/src/components/data-table/charts/README.md +65 -0
  56. package/src/components/data-table/charts/__tests__/__snapshots__/spec-snapshot.test.ts.snap +47 -0
  57. package/src/components/data-table/charts/__tests__/altair-generator.test.ts +425 -0
  58. package/src/components/data-table/charts/__tests__/renderer.test.ts +20 -0
  59. package/src/components/data-table/charts/__tests__/spec-snapshot.test.ts +83 -0
  60. package/src/components/data-table/charts/__tests__/spec.test.ts +997 -0
  61. package/src/components/data-table/charts/__tests__/storage.test.ts +103 -0
  62. package/src/components/data-table/charts/chart-spec/altair-generator.ts +162 -0
  63. package/src/components/data-table/charts/chart-spec/encodings.ts +173 -0
  64. package/src/components/data-table/charts/chart-spec/spec.ts +345 -0
  65. package/src/components/data-table/charts/chart-spec/tooltips.ts +168 -0
  66. package/src/components/data-table/charts/chart-spec/types.ts +77 -0
  67. package/src/components/data-table/charts/charts.tsx +492 -0
  68. package/src/components/data-table/charts/components/chart-items.tsx +369 -0
  69. package/src/components/data-table/charts/components/chart-states.tsx +37 -0
  70. package/src/components/data-table/charts/components/form-fields.tsx +872 -0
  71. package/src/components/data-table/charts/components/layouts.tsx +118 -0
  72. package/src/components/data-table/charts/constants.ts +159 -0
  73. package/src/components/data-table/charts/context.ts +20 -0
  74. package/src/components/data-table/charts/forms/common-chart.tsx +202 -0
  75. package/src/components/data-table/charts/forms/heatmap.tsx +44 -0
  76. package/src/components/data-table/charts/forms/pie.tsx +70 -0
  77. package/src/components/data-table/charts/lazy-chart.tsx +56 -0
  78. package/src/components/data-table/charts/schemas.ts +140 -0
  79. package/src/components/data-table/charts/storage.ts +88 -0
  80. package/src/components/data-table/charts/types.ts +124 -0
  81. package/src/components/data-table/column-explorer-panel/column-explorer.tsx +227 -0
  82. package/src/components/data-table/column-formatting/feature.ts +247 -0
  83. package/src/components/data-table/column-formatting/types.ts +54 -0
  84. package/src/components/data-table/column-header.tsx +672 -0
  85. package/src/components/data-table/column-summary/chart-skeleton.tsx +57 -0
  86. package/src/components/data-table/column-summary/chart-spec-model.tsx +916 -0
  87. package/src/components/data-table/column-summary/column-summary.tsx +166 -0
  88. package/src/components/data-table/column-summary/legacy-chart-spec.ts +242 -0
  89. package/src/components/data-table/column-summary/utils.ts +142 -0
  90. package/src/components/data-table/column-wrapping/feature.ts +62 -0
  91. package/src/components/data-table/column-wrapping/types.ts +29 -0
  92. package/src/components/data-table/columns.tsx +528 -0
  93. package/src/components/data-table/copy-column/feature.ts +27 -0
  94. package/src/components/data-table/copy-column/types.ts +19 -0
  95. package/src/components/data-table/data-table.tsx +298 -0
  96. package/src/components/data-table/date-popover.tsx +146 -0
  97. package/src/components/data-table/download-actions.tsx +186 -0
  98. package/src/components/data-table/filter-pills.tsx +120 -0
  99. package/src/components/data-table/filters.ts +202 -0
  100. package/src/components/data-table/focus-row/feature.ts +41 -0
  101. package/src/components/data-table/focus-row/types.ts +32 -0
  102. package/src/components/data-table/header-items.tsx +295 -0
  103. package/src/components/data-table/hooks/use-column-pinning.ts +51 -0
  104. package/src/components/data-table/hooks/use-panel-ownership.ts +98 -0
  105. package/src/components/data-table/loading-table.tsx +56 -0
  106. package/src/components/data-table/mime-cell.tsx +68 -0
  107. package/src/components/data-table/pagination.tsx +329 -0
  108. package/src/components/data-table/range-focus/__tests__/atoms.test.ts +907 -0
  109. package/src/components/data-table/range-focus/__tests__/utils.test.ts +316 -0
  110. package/src/components/data-table/range-focus/atoms.ts +380 -0
  111. package/src/components/data-table/range-focus/cell-selection-indicator.tsx +37 -0
  112. package/src/components/data-table/range-focus/provider.tsx +13 -0
  113. package/src/components/data-table/range-focus/use-cell-range-selection.ts +119 -0
  114. package/src/components/data-table/range-focus/use-scroll-into-view.ts +46 -0
  115. package/src/components/data-table/range-focus/utils.ts +105 -0
  116. package/src/components/data-table/renderers.tsx +247 -0
  117. package/src/components/data-table/row-viewer-panel/__tests__/filter-rows.test.ts +82 -0
  118. package/src/components/data-table/row-viewer-panel/__tests__/row-viewer.test.tsx +58 -0
  119. package/src/components/data-table/row-viewer-panel/row-viewer.tsx +371 -0
  120. package/src/components/data-table/types.ts +81 -0
  121. package/src/components/data-table/uniformSample.tsx +19 -0
  122. package/src/components/data-table/url-detector.tsx +111 -0
  123. package/src/components/data-table/utils.ts +46 -0
  124. package/src/components/databases/display.tsx +66 -0
  125. package/src/components/databases/engine-variable.tsx +51 -0
  126. package/src/components/databases/icon.tsx +91 -0
  127. package/src/components/databases/icons/clickhouse.svg +1 -0
  128. package/src/components/databases/icons/databricks.svg +1 -0
  129. package/src/components/databases/icons/datafusion.png +0 -0
  130. package/src/components/databases/icons/duckdb.svg +1 -0
  131. package/src/components/databases/icons/googlebigquery.svg +1 -0
  132. package/src/components/databases/icons/iceberg.png +0 -0
  133. package/src/components/databases/icons/motherduck.svg +9 -0
  134. package/src/components/databases/icons/mysql.svg +1 -0
  135. package/src/components/databases/icons/postgresql.svg +1 -0
  136. package/src/components/databases/icons/redshift.svg +1 -0
  137. package/src/components/databases/icons/snowflake.svg +1 -0
  138. package/src/components/databases/icons/spark.svg +1 -0
  139. package/src/components/databases/icons/sqlalchemy.svg +1 -0
  140. package/src/components/databases/icons/sqlite.svg +1 -0
  141. package/src/components/databases/icons/timeplus.svg +17 -0
  142. package/src/components/databases/icons/trino.svg +1 -0
  143. package/src/components/datasets/icons.tsx +55 -0
  144. package/src/components/datasources/__tests__/install-package-button.test.tsx +85 -0
  145. package/src/components/datasources/__tests__/utils.test.ts +171 -0
  146. package/src/components/datasources/column-preview.tsx +269 -0
  147. package/src/components/datasources/components.tsx +100 -0
  148. package/src/components/datasources/datasources.tsx +782 -0
  149. package/src/components/datasources/install-package-button.tsx +46 -0
  150. package/src/components/datasources/utils.ts +62 -0
  151. package/src/components/debug/indicator.tsx +19 -0
  152. package/src/components/debugger/debugger-code.css +3 -0
  153. package/src/components/debugger/debugger-code.tsx +222 -0
  154. package/src/components/dependency-graph/custom-node.tsx +89 -0
  155. package/src/components/dependency-graph/dependency-graph-minimap.tsx +197 -0
  156. package/src/components/dependency-graph/dependency-graph-tree.tsx +181 -0
  157. package/src/components/dependency-graph/dependency-graph.css +17 -0
  158. package/src/components/dependency-graph/dependency-graph.tsx +66 -0
  159. package/src/components/dependency-graph/elements.ts +185 -0
  160. package/src/components/dependency-graph/panels.tsx +279 -0
  161. package/src/components/dependency-graph/types.ts +21 -0
  162. package/src/components/dependency-graph/utils/changes.ts +54 -0
  163. package/src/components/dependency-graph/utils/layout.ts +45 -0
  164. package/src/components/dependency-graph/utils/useFitToViewOnDimensionChange.ts +25 -0
  165. package/src/components/editor/Cell.tsx +1175 -0
  166. package/src/components/editor/Disconnected.tsx +72 -0
  167. package/src/components/editor/Output.tsx +462 -0
  168. package/src/components/editor/RecoveryButton.tsx +161 -0
  169. package/src/components/editor/SortableCell.tsx +161 -0
  170. package/src/components/editor/__tests__/data-attributes.test.tsx +173 -0
  171. package/src/components/editor/__tests__/dynamic-favicon.test.tsx +183 -0
  172. package/src/components/editor/actions/name-cell-input.tsx +137 -0
  173. package/src/components/editor/actions/types.ts +53 -0
  174. package/src/components/editor/actions/useCellActionButton.tsx +422 -0
  175. package/src/components/editor/actions/useConfigActions.tsx +182 -0
  176. package/src/components/editor/actions/useCopyNotebook.tsx +41 -0
  177. package/src/components/editor/actions/useHideAllMarkdownCode.ts +53 -0
  178. package/src/components/editor/actions/useNotebookActions.tsx +556 -0
  179. package/src/components/editor/actions/useRestartKernel.tsx +36 -0
  180. package/src/components/editor/ai/__tests__/completion-utils.test.ts +379 -0
  181. package/src/components/editor/ai/add-cell-with-ai.tsx +369 -0
  182. package/src/components/editor/ai/ai-completion-editor.tsx +249 -0
  183. package/src/components/editor/ai/completion-utils.ts +95 -0
  184. package/src/components/editor/ai/merge-editor.css +9 -0
  185. package/src/components/editor/alerts/connecting-alert.tsx +46 -0
  186. package/src/components/editor/alerts/floating-alert.tsx +47 -0
  187. package/src/components/editor/alerts/stdin-blocking-alert.tsx +61 -0
  188. package/src/components/editor/app-container.tsx +53 -0
  189. package/src/components/editor/boundary/ErrorBoundary.tsx +41 -0
  190. package/src/components/editor/cell/CellStatus.tsx +371 -0
  191. package/src/components/editor/cell/CreateCellButton.tsx +132 -0
  192. package/src/components/editor/cell/DeleteButton.tsx +58 -0
  193. package/src/components/editor/cell/PendingDeleteConfirmation.tsx +126 -0
  194. package/src/components/editor/cell/RunButton.tsx +109 -0
  195. package/src/components/editor/cell/StopButton.tsx +36 -0
  196. package/src/components/editor/cell/TinyCode.css +10 -0
  197. package/src/components/editor/cell/TinyCode.tsx +53 -0
  198. package/src/components/editor/cell/cell-actions.tsx +185 -0
  199. package/src/components/editor/cell/cell-context-menu.tsx +243 -0
  200. package/src/components/editor/cell/cell-status.css +21 -0
  201. package/src/components/editor/cell/code/cell-editor.tsx +546 -0
  202. package/src/components/editor/cell/code/icons.tsx +31 -0
  203. package/src/components/editor/cell/code/language-toggle.tsx +140 -0
  204. package/src/components/editor/cell/collapse.tsx +100 -0
  205. package/src/components/editor/cell/toolbar.tsx +89 -0
  206. package/src/components/editor/cell/useAddCell.ts +29 -0
  207. package/src/components/editor/cell/useDeleteCell.tsx +89 -0
  208. package/src/components/editor/cell/useRunCells.ts +86 -0
  209. package/src/components/editor/cell/useShouldShowInterrupt.ts +26 -0
  210. package/src/components/editor/cell/useSplitCell.tsx +41 -0
  211. package/src/components/editor/chrome/components/contribute-snippet-button.tsx +138 -0
  212. package/src/components/editor/chrome/components/feedback-button.tsx +105 -0
  213. package/src/components/editor/chrome/panels/__tests__/write-secret-modal.test.ts +43 -0
  214. package/src/components/editor/chrome/panels/constants.ts +2 -0
  215. package/src/components/editor/chrome/panels/context-aware-panel/atoms.ts +28 -0
  216. package/src/components/editor/chrome/panels/context-aware-panel/context-aware-panel.tsx +167 -0
  217. package/src/components/editor/chrome/panels/datasources-panel.tsx +6 -0
  218. package/src/components/editor/chrome/panels/dependency-graph-panel.tsx +23 -0
  219. package/src/components/editor/chrome/panels/documentation-panel.tsx +29 -0
  220. package/src/components/editor/chrome/panels/empty-state.tsx +28 -0
  221. package/src/components/editor/chrome/panels/error-panel.tsx +35 -0
  222. package/src/components/editor/chrome/panels/file-explorer-panel.tsx +33 -0
  223. package/src/components/editor/chrome/panels/logs-panel.tsx +97 -0
  224. package/src/components/editor/chrome/panels/outline/floating-outline.tsx +129 -0
  225. package/src/components/editor/chrome/panels/outline/useActiveOutline.tsx +172 -0
  226. package/src/components/editor/chrome/panels/outline-panel.css +6 -0
  227. package/src/components/editor/chrome/panels/outline-panel.tsx +39 -0
  228. package/src/components/editor/chrome/panels/packages-panel.tsx +635 -0
  229. package/src/components/editor/chrome/panels/packages-state.ts +5 -0
  230. package/src/components/editor/chrome/panels/scratchpad-panel.tsx +8 -0
  231. package/src/components/editor/chrome/panels/secrets-panel.tsx +155 -0
  232. package/src/components/editor/chrome/panels/snippets-panel.css +11 -0
  233. package/src/components/editor/chrome/panels/snippets-panel.tsx +230 -0
  234. package/src/components/editor/chrome/panels/tracing-panel.tsx +28 -0
  235. package/src/components/editor/chrome/panels/variable-panel.tsx +31 -0
  236. package/src/components/editor/chrome/panels/write-secret-modal.tsx +190 -0
  237. package/src/components/editor/chrome/state.ts +102 -0
  238. package/src/components/editor/chrome/types.ts +133 -0
  239. package/src/components/editor/chrome/wrapper/__tests__/minimap-state.test.ts +209 -0
  240. package/src/components/editor/chrome/wrapper/__tests__/storage.test.ts +41 -0
  241. package/src/components/editor/chrome/wrapper/app-chrome.css +22 -0
  242. package/src/components/editor/chrome/wrapper/app-chrome.tsx +256 -0
  243. package/src/components/editor/chrome/wrapper/footer-item.tsx +43 -0
  244. package/src/components/editor/chrome/wrapper/footer-items/ai-status.tsx +47 -0
  245. package/src/components/editor/chrome/wrapper/footer-items/backend-status.tsx +111 -0
  246. package/src/components/editor/chrome/wrapper/footer-items/copilot-status.tsx +125 -0
  247. package/src/components/editor/chrome/wrapper/footer-items/machine-stats.tsx +185 -0
  248. package/src/components/editor/chrome/wrapper/footer-items/minimap-status.tsx +21 -0
  249. package/src/components/editor/chrome/wrapper/footer-items/rtc-status.tsx +65 -0
  250. package/src/components/editor/chrome/wrapper/footer-items/runtime-settings.tsx +370 -0
  251. package/src/components/editor/chrome/wrapper/footer.tsx +90 -0
  252. package/src/components/editor/chrome/wrapper/minimap-state.ts +164 -0
  253. package/src/components/editor/chrome/wrapper/minimap.tsx +443 -0
  254. package/src/components/editor/chrome/wrapper/panels.tsx +10 -0
  255. package/src/components/editor/chrome/wrapper/sidebar.tsx +100 -0
  256. package/src/components/editor/chrome/wrapper/storage.ts +56 -0
  257. package/src/components/editor/chrome/wrapper/utils.ts +8 -0
  258. package/src/components/editor/code/readonly-python-code.tsx +160 -0
  259. package/src/components/editor/columns/__tests__/storage.test.ts +104 -0
  260. package/src/components/editor/columns/cell-column.tsx +105 -0
  261. package/src/components/editor/columns/sortable-column.tsx +175 -0
  262. package/src/components/editor/columns/storage.ts +56 -0
  263. package/src/components/editor/common.ts +20 -0
  264. package/src/components/editor/controls/Controls.tsx +225 -0
  265. package/src/components/editor/controls/command-palette-button.tsx +27 -0
  266. package/src/components/editor/controls/command-palette.tsx +210 -0
  267. package/src/components/editor/controls/keyboard-shortcuts.tsx +309 -0
  268. package/src/components/editor/controls/notebook-menu-dropdown.tsx +157 -0
  269. package/src/components/editor/controls/shutdown-button.tsx +70 -0
  270. package/src/components/editor/database/__tests__/__snapshots__/as-code.test.ts.snap +659 -0
  271. package/src/components/editor/database/__tests__/as-code.test.ts +598 -0
  272. package/src/components/editor/database/__tests__/secrets.test.ts +38 -0
  273. package/src/components/editor/database/add-database-form.tsx +395 -0
  274. package/src/components/editor/database/as-code.ts +786 -0
  275. package/src/components/editor/database/form-renderers.tsx +211 -0
  276. package/src/components/editor/database/schemas.ts +485 -0
  277. package/src/components/editor/database/secrets.ts +25 -0
  278. package/src/components/editor/documentation.css +139 -0
  279. package/src/components/editor/dynamic-favicon.tsx +126 -0
  280. package/src/components/editor/errors/auto-fix.tsx +61 -0
  281. package/src/components/editor/file-tree/__tests__/requesting-tree.test.ts +321 -0
  282. package/src/components/editor/file-tree/file-explorer.tsx +679 -0
  283. package/src/components/editor/file-tree/file-viewer.tsx +283 -0
  284. package/src/components/editor/file-tree/renderers.tsx +83 -0
  285. package/src/components/editor/file-tree/requesting-tree.tsx +228 -0
  286. package/src/components/editor/file-tree/state.tsx +26 -0
  287. package/src/components/editor/file-tree/types.ts +118 -0
  288. package/src/components/editor/file-tree/upload.tsx +101 -0
  289. package/src/components/editor/header/app-header.tsx +28 -0
  290. package/src/components/editor/header/filename-form.tsx +27 -0
  291. package/src/components/editor/header/filename-input.css +21 -0
  292. package/src/components/editor/header/filename-input.tsx +244 -0
  293. package/src/components/editor/header/status.tsx +72 -0
  294. package/src/components/editor/inputs/Inputs.css +118 -0
  295. package/src/components/editor/inputs/Inputs.styles.ts +66 -0
  296. package/src/components/editor/inputs/Inputs.tsx +34 -0
  297. package/src/components/editor/kiosk-mode.tsx +25 -0
  298. package/src/components/editor/links/cell-link-list.tsx +74 -0
  299. package/src/components/editor/links/cell-link.tsx +128 -0
  300. package/src/components/editor/navigation/__tests__/clipboard.test.ts +466 -0
  301. package/src/components/editor/navigation/__tests__/navigation.test.ts +1743 -0
  302. package/src/components/editor/navigation/__tests__/selection.test.ts +194 -0
  303. package/src/components/editor/navigation/clipboard.ts +205 -0
  304. package/src/components/editor/navigation/focus-utils.ts +48 -0
  305. package/src/components/editor/navigation/multi-cell-action-toolbar.tsx +499 -0
  306. package/src/components/editor/navigation/navigation.ts +699 -0
  307. package/src/components/editor/navigation/selection.ts +114 -0
  308. package/src/components/editor/navigation/state.ts +5 -0
  309. package/src/components/editor/navigation/vim-bindings.test.ts +109 -0
  310. package/src/components/editor/navigation/vim-bindings.ts +90 -0
  311. package/src/components/editor/notebook-banner.tsx +75 -0
  312. package/src/components/editor/output/CalloutOutput.styles.ts +22 -0
  313. package/src/components/editor/output/CalloutOutput.tsx +19 -0
  314. package/src/components/editor/output/ConsoleOutput.tsx +276 -0
  315. package/src/components/editor/output/EmotionCacheProvider.tsx +32 -0
  316. package/src/components/editor/output/HtmlOutput.tsx +25 -0
  317. package/src/components/editor/output/ImageOutput.tsx +25 -0
  318. package/src/components/editor/output/JsonOutput.tsx +424 -0
  319. package/src/components/editor/output/MarimoErrorOutput.tsx +511 -0
  320. package/src/components/editor/output/MarimoTracebackOutput.tsx +233 -0
  321. package/src/components/editor/output/Outputs.css +102 -0
  322. package/src/components/editor/output/TextOutput.tsx +42 -0
  323. package/src/components/editor/output/VideoOutput.tsx +11 -0
  324. package/src/components/editor/output/__tests__/ansi.test.ts +39 -0
  325. package/src/components/editor/output/__tests__/json-output.test.ts +269 -0
  326. package/src/components/editor/output/__tests__/traceback.test.tsx +105 -0
  327. package/src/components/editor/output/useWrapText.ts +14 -0
  328. package/src/components/editor/package-alert.tsx +596 -0
  329. package/src/components/editor/renderMimeIcon.tsx +38 -0
  330. package/src/components/editor/renderers/CellArray.tsx +352 -0
  331. package/src/components/editor/renderers/cells-renderer.tsx +96 -0
  332. package/src/components/editor/renderers/grid-layout/grid-layout.tsx +650 -0
  333. package/src/components/editor/renderers/grid-layout/plugin.tsx +146 -0
  334. package/src/components/editor/renderers/grid-layout/styles.css +31 -0
  335. package/src/components/editor/renderers/grid-layout/types.ts +89 -0
  336. package/src/components/editor/renderers/layout-select.tsx +86 -0
  337. package/src/components/editor/renderers/plugins.ts +31 -0
  338. package/src/components/editor/renderers/slides-layout/plugin.tsx +31 -0
  339. package/src/components/editor/renderers/slides-layout/slides-layout.tsx +74 -0
  340. package/src/components/editor/renderers/slides-layout/types.ts +12 -0
  341. package/src/components/editor/renderers/types.ts +75 -0
  342. package/src/components/editor/renderers/vertical-layout/__tests__/useDelayVisibility.test.ts +87 -0
  343. package/src/components/editor/renderers/vertical-layout/__tests__/useFocusFirstEditor.test.ts +123 -0
  344. package/src/components/editor/renderers/vertical-layout/__tests__/vertical-layout.test.ts +173 -0
  345. package/src/components/editor/renderers/vertical-layout/sidebar/__tests__/sidebar.test.tsx +56 -0
  346. package/src/components/editor/renderers/vertical-layout/sidebar/sheet-sidebar.tsx +32 -0
  347. package/src/components/editor/renderers/vertical-layout/sidebar/sidebar-slot.tsx +10 -0
  348. package/src/components/editor/renderers/vertical-layout/sidebar/sidebar.css +20 -0
  349. package/src/components/editor/renderers/vertical-layout/sidebar/sidebar.tsx +30 -0
  350. package/src/components/editor/renderers/vertical-layout/sidebar/state.ts +46 -0
  351. package/src/components/editor/renderers/vertical-layout/sidebar/toggle.tsx +25 -0
  352. package/src/components/editor/renderers/vertical-layout/sidebar/wrapped-with-sidebar.tsx +38 -0
  353. package/src/components/editor/renderers/vertical-layout/useDelayVisibility.ts +32 -0
  354. package/src/components/editor/renderers/vertical-layout/useFocusFirstEditor.ts +107 -0
  355. package/src/components/editor/renderers/vertical-layout/vertical-layout-wrapper.tsx +46 -0
  356. package/src/components/editor/renderers/vertical-layout/vertical-layout.tsx +451 -0
  357. package/src/components/editor/stdin-blocking-alert.tsx +83 -0
  358. package/src/components/export/export-output-button.tsx +14 -0
  359. package/src/components/find-replace/find-replace.tsx +293 -0
  360. package/src/components/forms/__tests__/form-utils.test.ts +104 -0
  361. package/src/components/forms/form-utils.ts +90 -0
  362. package/src/components/forms/form.tsx +817 -0
  363. package/src/components/forms/options.ts +59 -0
  364. package/src/components/forms/switchable-multi-select.tsx +134 -0
  365. package/src/components/home/components.tsx +189 -0
  366. package/src/components/home/state.ts +30 -0
  367. package/src/components/icons/copy-icon.tsx +59 -0
  368. package/src/components/icons/github-copilot.tsx +17 -0
  369. package/src/components/icons/large-spinner.tsx +39 -0
  370. package/src/components/icons/loading-ellipsis.tsx +46 -0
  371. package/src/components/icons/multi-icon.css +9 -0
  372. package/src/components/icons/multi-icon.tsx +30 -0
  373. package/src/components/icons/spinner.tsx +38 -0
  374. package/src/components/layout/toolbar.tsx +26 -0
  375. package/src/components/modal/ImperativeModal.tsx +187 -0
  376. package/src/components/pages/edit-page.tsx +37 -0
  377. package/src/components/pages/home-page.tsx +514 -0
  378. package/src/components/pages/run-page.tsx +55 -0
  379. package/src/components/scratchpad/scratchpad-history.ts +28 -0
  380. package/src/components/scratchpad/scratchpad.tsx +280 -0
  381. package/src/components/shortcuts/renderShortcut.tsx +208 -0
  382. package/src/components/slides/slides-component.tsx +132 -0
  383. package/src/components/slides/slides.css +101 -0
  384. package/src/components/sort/SortableCellsProvider.tsx +242 -0
  385. package/src/components/static-html/share-modal.tsx +181 -0
  386. package/src/components/static-html/static-banner.tsx +164 -0
  387. package/src/components/terminal/terminal.tsx +110 -0
  388. package/src/components/terminal/xterm.css +3 -0
  389. package/src/components/tracing/tracing-spec.ts +118 -0
  390. package/src/components/tracing/tracing.test.tsx +66 -0
  391. package/src/components/tracing/tracing.tsx +410 -0
  392. package/src/components/ui/accordion.tsx +70 -0
  393. package/src/components/ui/alert-dialog.tsx +176 -0
  394. package/src/components/ui/alert.tsx +64 -0
  395. package/src/components/ui/aria-popover.tsx +43 -0
  396. package/src/components/ui/badge.tsx +41 -0
  397. package/src/components/ui/button.tsx +156 -0
  398. package/src/components/ui/calendar.tsx +231 -0
  399. package/src/components/ui/card.tsx +83 -0
  400. package/src/components/ui/checkbox.tsx +33 -0
  401. package/src/components/ui/combobox.tsx +278 -0
  402. package/src/components/ui/command.tsx +165 -0
  403. package/src/components/ui/context-menu.tsx +193 -0
  404. package/src/components/ui/date-input.tsx +127 -0
  405. package/src/components/ui/date-picker.tsx +188 -0
  406. package/src/components/ui/dialog.tsx +155 -0
  407. package/src/components/ui/draggable-popover.tsx +68 -0
  408. package/src/components/ui/dropdown-menu.tsx +189 -0
  409. package/src/components/ui/field.tsx +90 -0
  410. package/src/components/ui/form.tsx +224 -0
  411. package/src/components/ui/fullscreen.tsx +38 -0
  412. package/src/components/ui/input.tsx +208 -0
  413. package/src/components/ui/kbd.tsx +22 -0
  414. package/src/components/ui/label.tsx +26 -0
  415. package/src/components/ui/links.tsx +23 -0
  416. package/src/components/ui/menu-items.tsx +101 -0
  417. package/src/components/ui/native-select.tsx +39 -0
  418. package/src/components/ui/navigation.tsx +154 -0
  419. package/src/components/ui/number-field.tsx +99 -0
  420. package/src/components/ui/popover.tsx +63 -0
  421. package/src/components/ui/progress.tsx +28 -0
  422. package/src/components/ui/radio-group.tsx +44 -0
  423. package/src/components/ui/range-slider.tsx +102 -0
  424. package/src/components/ui/scroll-area.tsx +47 -0
  425. package/src/components/ui/select.tsx +167 -0
  426. package/src/components/ui/sheet.tsx +143 -0
  427. package/src/components/ui/skeleton.tsx +16 -0
  428. package/src/components/ui/slider.tsx +80 -0
  429. package/src/components/ui/switch.tsx +54 -0
  430. package/src/components/ui/table.tsx +122 -0
  431. package/src/components/ui/tabs.tsx +55 -0
  432. package/src/components/ui/textarea.tsx +104 -0
  433. package/src/components/ui/toast.tsx +133 -0
  434. package/src/components/ui/toaster.tsx +30 -0
  435. package/src/components/ui/toggle.tsx +49 -0
  436. package/src/components/ui/tooltip.tsx +87 -0
  437. package/src/components/ui/typography.tsx +207 -0
  438. package/src/components/ui/use-restore-focus.ts +28 -0
  439. package/src/components/ui/use-toast.ts +224 -0
  440. package/src/components/utils/delay-mount.tsx +81 -0
  441. package/src/components/utils/lazy-mount.tsx +24 -0
  442. package/src/components/variables/common.tsx +37 -0
  443. package/src/components/variables/variables-table.tsx +335 -0
  444. package/src/core/MarimoApp.tsx +103 -0
  445. package/src/core/ai/chat-utils.ts +71 -0
  446. package/src/core/ai/context/__tests__/registry.test.ts +516 -0
  447. package/src/core/ai/context/context.ts +16 -0
  448. package/src/core/ai/context/providers/__tests__/__snapshots__/tables.test.ts.snap +291 -0
  449. package/src/core/ai/context/providers/__tests__/__snapshots__/variable.test.ts.snap +378 -0
  450. package/src/core/ai/context/providers/__tests__/tables.test.ts +271 -0
  451. package/src/core/ai/context/providers/__tests__/variable.test.ts +312 -0
  452. package/src/core/ai/context/providers/common.ts +7 -0
  453. package/src/core/ai/context/providers/tables.ts +208 -0
  454. package/src/core/ai/context/providers/variable.ts +72 -0
  455. package/src/core/ai/context/registry.ts +180 -0
  456. package/src/core/ai/state.ts +58 -0
  457. package/src/core/alerts/state.ts +75 -0
  458. package/src/core/cells/__tests__/__snapshots__/cells.test.ts.snap +1312 -0
  459. package/src/core/cells/__tests__/add-missing-import.test.ts +78 -0
  460. package/src/core/cells/__tests__/cell.test.ts +193 -0
  461. package/src/core/cells/__tests__/cells.test.ts +2664 -0
  462. package/src/core/cells/__tests__/collapseConsoleOutputs.test.ts +239 -0
  463. package/src/core/cells/__tests__/focus.test.ts +271 -0
  464. package/src/core/cells/__tests__/ids.test.ts +90 -0
  465. package/src/core/cells/__tests__/names.test.ts +62 -0
  466. package/src/core/cells/__tests__/pending-delete-service.test.tsx +202 -0
  467. package/src/core/cells/__tests__/runs.test.ts +453 -0
  468. package/src/core/cells/__tests__/session.test.ts +757 -0
  469. package/src/core/cells/__tests__/utils.test.ts +428 -0
  470. package/src/core/cells/actions.ts +21 -0
  471. package/src/core/cells/add-missing-import.ts +114 -0
  472. package/src/core/cells/cell.ts +243 -0
  473. package/src/core/cells/cells.ts +1751 -0
  474. package/src/core/cells/collapseConsoleOutputs.tsx +133 -0
  475. package/src/core/cells/effects.ts +42 -0
  476. package/src/core/cells/focus.ts +128 -0
  477. package/src/core/cells/ids.ts +124 -0
  478. package/src/core/cells/logs.ts +114 -0
  479. package/src/core/cells/names.ts +107 -0
  480. package/src/core/cells/outline.ts +30 -0
  481. package/src/core/cells/outputs.ts +34 -0
  482. package/src/core/cells/pending-delete-service.ts +183 -0
  483. package/src/core/cells/runs.ts +196 -0
  484. package/src/core/cells/scrollCellIntoView.ts +133 -0
  485. package/src/core/cells/session.ts +281 -0
  486. package/src/core/cells/types.ts +128 -0
  487. package/src/core/cells/utils.ts +141 -0
  488. package/src/core/codemirror/__tests__/__snapshots__/setup.test.ts.snap +229 -0
  489. package/src/core/codemirror/__tests__/extensions.test.ts +117 -0
  490. package/src/core/codemirror/__tests__/format.test.ts +227 -0
  491. package/src/core/codemirror/__tests__/setup.test.ts +178 -0
  492. package/src/core/codemirror/ai/request.ts +72 -0
  493. package/src/core/codemirror/ai/resources.ts +90 -0
  494. package/src/core/codemirror/cells/extensions.ts +387 -0
  495. package/src/core/codemirror/cells/state.ts +32 -0
  496. package/src/core/codemirror/cells/traceback-decorations.ts +111 -0
  497. package/src/core/codemirror/cm.ts +267 -0
  498. package/src/core/codemirror/compat/__tests__/jupyter.test.ts +136 -0
  499. package/src/core/codemirror/compat/jupyter.tsx +244 -0
  500. package/src/core/codemirror/completion/Autocompleter.ts +172 -0
  501. package/src/core/codemirror/completion/__tests__/hints.test.ts +84 -0
  502. package/src/core/codemirror/completion/__tests__/keymap.test.ts +44 -0
  503. package/src/core/codemirror/completion/completer.ts +58 -0
  504. package/src/core/codemirror/completion/hints.ts +143 -0
  505. package/src/core/codemirror/completion/keymap.ts +85 -0
  506. package/src/core/codemirror/completion/utils.ts +18 -0
  507. package/src/core/codemirror/completion/variable-completions.ts +100 -0
  508. package/src/core/codemirror/config/extension.ts +63 -0
  509. package/src/core/codemirror/config/types.ts +10 -0
  510. package/src/core/codemirror/copilot/__tests__/copilot.test.ts +260 -0
  511. package/src/core/codemirror/copilot/__tests__/getCodes.test.ts +209 -0
  512. package/src/core/codemirror/copilot/__tests__/trim-utils.test.ts +291 -0
  513. package/src/core/codemirror/copilot/client.ts +123 -0
  514. package/src/core/codemirror/copilot/copilot-config.tsx +285 -0
  515. package/src/core/codemirror/copilot/extension.ts +285 -0
  516. package/src/core/codemirror/copilot/getCodes.ts +130 -0
  517. package/src/core/codemirror/copilot/language-server.ts +255 -0
  518. package/src/core/codemirror/copilot/state.ts +66 -0
  519. package/src/core/codemirror/copilot/trim-utils.ts +33 -0
  520. package/src/core/codemirror/copilot/types.ts +41 -0
  521. package/src/core/codemirror/editing/__tests__/commands.test.ts +106 -0
  522. package/src/core/codemirror/editing/__tests__/debugging.test.ts +193 -0
  523. package/src/core/codemirror/editing/commands.ts +25 -0
  524. package/src/core/codemirror/editing/debugging.ts +58 -0
  525. package/src/core/codemirror/editing/extensions.ts +4 -0
  526. package/src/core/codemirror/extensions.ts +95 -0
  527. package/src/core/codemirror/facet.ts +19 -0
  528. package/src/core/codemirror/find-replace/__tests__/navigate.test.ts +695 -0
  529. package/src/core/codemirror/find-replace/extension.ts +41 -0
  530. package/src/core/codemirror/find-replace/navigate.ts +221 -0
  531. package/src/core/codemirror/find-replace/query.ts +31 -0
  532. package/src/core/codemirror/find-replace/search-highlight.ts +148 -0
  533. package/src/core/codemirror/find-replace/state.ts +167 -0
  534. package/src/core/codemirror/format.ts +120 -0
  535. package/src/core/codemirror/go-to-definition/__tests__/commands.test.ts +205 -0
  536. package/src/core/codemirror/go-to-definition/commands.ts +80 -0
  537. package/src/core/codemirror/go-to-definition/extension.ts +23 -0
  538. package/src/core/codemirror/go-to-definition/underline.ts +223 -0
  539. package/src/core/codemirror/go-to-definition/utils.ts +126 -0
  540. package/src/core/codemirror/keymaps/__tests__/keymaps.test.ts +43 -0
  541. package/src/core/codemirror/keymaps/__tests__/vimrc.test.ts +121 -0
  542. package/src/core/codemirror/keymaps/keymaps.ts +179 -0
  543. package/src/core/codemirror/keymaps/vim.ts +348 -0
  544. package/src/core/codemirror/keymaps/vimrc.ts +149 -0
  545. package/src/core/codemirror/language/LanguageAdapters.ts +23 -0
  546. package/src/core/codemirror/language/__tests__/ast.test.ts +124 -0
  547. package/src/core/codemirror/language/__tests__/extension.test.ts +260 -0
  548. package/src/core/codemirror/language/__tests__/indentOneTab.test.ts +31 -0
  549. package/src/core/codemirror/language/__tests__/markdown.test.ts +495 -0
  550. package/src/core/codemirror/language/__tests__/sql.test.ts +1640 -0
  551. package/src/core/codemirror/language/__tests__/utils.test.ts +166 -0
  552. package/src/core/codemirror/language/commands.ts +59 -0
  553. package/src/core/codemirror/language/embedded/__tests__/embedded-python.test.ts +163 -0
  554. package/src/core/codemirror/language/embedded/embedded-python.ts +131 -0
  555. package/src/core/codemirror/language/embedded/latex.ts +257 -0
  556. package/src/core/codemirror/language/extension.ts +322 -0
  557. package/src/core/codemirror/language/languages/markdown.ts +261 -0
  558. package/src/core/codemirror/language/languages/python.ts +329 -0
  559. package/src/core/codemirror/language/languages/sql-dialects/README.md +5 -0
  560. package/src/core/codemirror/language/languages/sql-dialects/duckdb.ts +22 -0
  561. package/src/core/codemirror/language/languages/sql-dialects/spec_duckdb.py +257 -0
  562. package/src/core/codemirror/language/languages/sql.ts +669 -0
  563. package/src/core/codemirror/language/metadata.ts +71 -0
  564. package/src/core/codemirror/language/panel/markdown.tsx +63 -0
  565. package/src/core/codemirror/language/panel/panel.tsx +197 -0
  566. package/src/core/codemirror/language/panel/sql.tsx +132 -0
  567. package/src/core/codemirror/language/types.ts +41 -0
  568. package/src/core/codemirror/language/utils/ast.ts +84 -0
  569. package/src/core/codemirror/language/utils/indentOneTab.ts +9 -0
  570. package/src/core/codemirror/language/utils/quotes.ts +18 -0
  571. package/src/core/codemirror/language/utils.ts +78 -0
  572. package/src/core/codemirror/lsp/__tests__/notebook-lsp.test.ts +860 -0
  573. package/src/core/codemirror/lsp/federated-lsp.ts +235 -0
  574. package/src/core/codemirror/lsp/lens.ts +130 -0
  575. package/src/core/codemirror/lsp/notebook-lsp.ts +604 -0
  576. package/src/core/codemirror/lsp/transports.ts +31 -0
  577. package/src/core/codemirror/lsp/types.ts +55 -0
  578. package/src/core/codemirror/lsp/utils.ts +11 -0
  579. package/src/core/codemirror/markdown/__tests__/commands.test.ts +522 -0
  580. package/src/core/codemirror/markdown/commands.ts +478 -0
  581. package/src/core/codemirror/markdown/completions.ts +273 -0
  582. package/src/core/codemirror/markdown/extension.ts +106 -0
  583. package/src/core/codemirror/misc/__tests__/dnd.test.ts +111 -0
  584. package/src/core/codemirror/misc/__tests__/paste.test.ts +239 -0
  585. package/src/core/codemirror/misc/dnd.ts +48 -0
  586. package/src/core/codemirror/misc/paste.ts +181 -0
  587. package/src/core/codemirror/placeholder/__tests__/extensions.test.ts +132 -0
  588. package/src/core/codemirror/placeholder/extensions.ts +99 -0
  589. package/src/core/codemirror/react-dom/createPanel.tsx +39 -0
  590. package/src/core/codemirror/reactive-references/__tests__/analyzer.test.ts +1222 -0
  591. package/src/core/codemirror/reactive-references/analyzer.ts +608 -0
  592. package/src/core/codemirror/reactive-references/extension.ts +154 -0
  593. package/src/core/codemirror/readonly/__tests__/extension.test.ts +55 -0
  594. package/src/core/codemirror/readonly/extension.ts +187 -0
  595. package/src/core/codemirror/rtc/extension.ts +450 -0
  596. package/src/core/codemirror/rtc/loro/awareness.ts +496 -0
  597. package/src/core/codemirror/rtc/loro/colors.ts +38 -0
  598. package/src/core/codemirror/rtc/loro/sync.ts +159 -0
  599. package/src/core/codemirror/theme/__tests__/light.test.ts +136 -0
  600. package/src/core/codemirror/theme/dark.ts +50 -0
  601. package/src/core/codemirror/theme/light.ts +58 -0
  602. package/src/core/codemirror/types.ts +5 -0
  603. package/src/core/codemirror/utils.ts +103 -0
  604. package/src/core/codemirror/vim/cursor-visibility.ts +58 -0
  605. package/src/core/config/__tests__/config-schema.test.ts +232 -0
  606. package/src/core/config/capabilities.ts +15 -0
  607. package/src/core/config/config-schema.ts +290 -0
  608. package/src/core/config/config.ts +109 -0
  609. package/src/core/config/feature-flag.tsx +60 -0
  610. package/src/core/config/if-capability.tsx +19 -0
  611. package/src/core/config/widths.ts +5 -0
  612. package/src/core/constants.ts +52 -0
  613. package/src/core/datasets/__tests__/all-tables.test.ts +466 -0
  614. package/src/core/datasets/__tests__/data-source.test.ts +461 -0
  615. package/src/core/datasets/data-source-connections.ts +334 -0
  616. package/src/core/datasets/engines.ts +10 -0
  617. package/src/core/datasets/request-registry.ts +34 -0
  618. package/src/core/datasets/state.ts +143 -0
  619. package/src/core/datasets/types.ts +38 -0
  620. package/src/core/debugger/state.ts +10 -0
  621. package/src/core/documentation/state.ts +13 -0
  622. package/src/core/dom/__tests__/htmlUtils.test.ts +22 -0
  623. package/src/core/dom/__tests__/outline.test.ts +370 -0
  624. package/src/core/dom/defineCustomElement.ts +23 -0
  625. package/src/core/dom/events.ts +94 -0
  626. package/src/core/dom/htmlUtils.ts +75 -0
  627. package/src/core/dom/outline.ts +123 -0
  628. package/src/core/dom/ui-element.css +8 -0
  629. package/src/core/dom/ui-element.ts +249 -0
  630. package/src/core/dom/uiregistry.ts +209 -0
  631. package/src/core/edit-app.tsx +189 -0
  632. package/src/core/errors/__tests__/errors.test.ts +62 -0
  633. package/src/core/errors/__tests__/utils.test.ts +108 -0
  634. package/src/core/errors/errors.ts +96 -0
  635. package/src/core/errors/state.ts +44 -0
  636. package/src/core/errors/utils.ts +67 -0
  637. package/src/core/export/hooks.ts +60 -0
  638. package/src/core/functions/FunctionRegistry.ts +18 -0
  639. package/src/core/hotkeys/__tests__/shortcuts.test.ts +166 -0
  640. package/src/core/hotkeys/actions.ts +38 -0
  641. package/src/core/hotkeys/hotkeys.ts +503 -0
  642. package/src/core/hotkeys/shortcuts.ts +117 -0
  643. package/src/core/islands/__tests__/parse.test.ts +89 -0
  644. package/src/core/islands/bridge.ts +196 -0
  645. package/src/core/islands/components/output-wrapper.tsx +154 -0
  646. package/src/core/islands/components/web-components.tsx +120 -0
  647. package/src/core/islands/islands.css +14 -0
  648. package/src/core/islands/main.ts +200 -0
  649. package/src/core/islands/parse.ts +161 -0
  650. package/src/core/islands/state.ts +30 -0
  651. package/src/core/islands/toast.ts +41 -0
  652. package/src/core/islands/utils.ts +5 -0
  653. package/src/core/islands/worker/controller.ts +52 -0
  654. package/src/core/islands/worker/worker.tsx +178 -0
  655. package/src/core/kernel/RuntimeState.ts +94 -0
  656. package/src/core/kernel/__tests__/RuntimeState.test.ts +57 -0
  657. package/src/core/kernel/__tests__/handlers.test.ts +61 -0
  658. package/src/core/kernel/__tests__/session.test.ts +10 -0
  659. package/src/core/kernel/handlers.ts +159 -0
  660. package/src/core/kernel/messages.ts +54 -0
  661. package/src/core/kernel/queryParamHandlers.ts +39 -0
  662. package/src/core/kernel/session.ts +50 -0
  663. package/src/core/layout/layout.ts +99 -0
  664. package/src/core/layout/useTogglePresenting.ts +50 -0
  665. package/src/core/meta/globals.ts +25 -0
  666. package/src/core/meta/state.ts +25 -0
  667. package/src/core/mime.ts +9 -0
  668. package/src/core/mode.ts +80 -0
  669. package/src/core/network/DeferredRequestRegistry.ts +71 -0
  670. package/src/core/network/__tests__/DeferredRequestRegistry.test.ts +37 -0
  671. package/src/core/network/__tests__/api.test.ts +80 -0
  672. package/src/core/network/api.ts +145 -0
  673. package/src/core/network/auth.ts +13 -0
  674. package/src/core/network/connection.ts +33 -0
  675. package/src/core/network/requests-network.ts +398 -0
  676. package/src/core/network/requests-static.ts +88 -0
  677. package/src/core/network/requests-toasting.ts +91 -0
  678. package/src/core/network/requests.ts +24 -0
  679. package/src/core/network/resolve.ts +17 -0
  680. package/src/core/network/types.ts +188 -0
  681. package/src/core/packages/toast-components.tsx +88 -0
  682. package/src/core/packages/useInstallPackage.ts +46 -0
  683. package/src/core/rtc/state.ts +20 -0
  684. package/src/core/run-app.tsx +69 -0
  685. package/src/core/runtime/__tests__/config.test.ts +161 -0
  686. package/src/core/runtime/__tests__/createWsUrl.test.ts +61 -0
  687. package/src/core/runtime/__tests__/runtime.test.ts +603 -0
  688. package/src/core/runtime/config.ts +40 -0
  689. package/src/core/runtime/runtime.ts +277 -0
  690. package/src/core/runtime/types.ts +7 -0
  691. package/src/core/runtime/utils.ts +9 -0
  692. package/src/core/saving/file-state.ts +15 -0
  693. package/src/core/saving/filename.ts +55 -0
  694. package/src/core/saving/save-component.tsx +274 -0
  695. package/src/core/saving/state.ts +51 -0
  696. package/src/core/saving/useAutoSave.ts +68 -0
  697. package/src/core/secrets/request-registry.ts +16 -0
  698. package/src/core/slots/slots.ts +9 -0
  699. package/src/core/state/__tests__/jotai.test.ts +25 -0
  700. package/src/core/state/jotai.ts +69 -0
  701. package/src/core/state/observable.ts +23 -0
  702. package/src/core/static/__tests__/download-html.test.ts +41 -0
  703. package/src/core/static/__tests__/files.test.ts +183 -0
  704. package/src/core/static/__tests__/virtual-file-tracker.test.ts +92 -0
  705. package/src/core/static/download-html.ts +59 -0
  706. package/src/core/static/files.ts +148 -0
  707. package/src/core/static/static-state.ts +19 -0
  708. package/src/core/static/types.ts +8 -0
  709. package/src/core/static/virtual-file-tracker.ts +83 -0
  710. package/src/core/variables/__tests__/state.test.ts +148 -0
  711. package/src/core/variables/state.ts +81 -0
  712. package/src/core/variables/types.ts +22 -0
  713. package/src/core/vscode/vscode-bindings.ts +176 -0
  714. package/src/core/wasm/PyodideLoader.tsx +72 -0
  715. package/src/core/wasm/__tests__/router.test.ts +57 -0
  716. package/src/core/wasm/__tests__/share.test.ts +35 -0
  717. package/src/core/wasm/__tests__/state.test.ts +124 -0
  718. package/src/core/wasm/__tests__/store.test.ts +55 -0
  719. package/src/core/wasm/bridge.ts +622 -0
  720. package/src/core/wasm/router.ts +39 -0
  721. package/src/core/wasm/rpc.ts +32 -0
  722. package/src/core/wasm/share.ts +15 -0
  723. package/src/core/wasm/state.ts +21 -0
  724. package/src/core/wasm/store.ts +122 -0
  725. package/src/core/wasm/utils.ts +12 -0
  726. package/src/core/wasm/worker/bootstrap.ts +223 -0
  727. package/src/core/wasm/worker/constants.ts +2 -0
  728. package/src/core/wasm/worker/fs.ts +90 -0
  729. package/src/core/wasm/worker/getController.ts +16 -0
  730. package/src/core/wasm/worker/getFS.ts +9 -0
  731. package/src/core/wasm/worker/getMarimoWheel.ts +15 -0
  732. package/src/core/wasm/worker/getPyodideVersion.ts +10 -0
  733. package/src/core/wasm/worker/message-buffer.ts +32 -0
  734. package/src/core/wasm/worker/save-worker.ts +107 -0
  735. package/src/core/wasm/worker/tracer.ts +7 -0
  736. package/src/core/wasm/worker/types.ts +97 -0
  737. package/src/core/wasm/worker/worker.ts +375 -0
  738. package/src/core/websocket/StaticWebsocket.ts +61 -0
  739. package/src/core/websocket/connection-utils.ts +59 -0
  740. package/src/core/websocket/types.ts +43 -0
  741. package/src/core/websocket/useMarimoWebSocket.tsx +386 -0
  742. package/src/core/websocket/useWebSocket.tsx +88 -0
  743. package/src/css/admonition.css +127 -0
  744. package/src/css/app/App.css +77 -0
  745. package/src/css/app/Cell.css +425 -0
  746. package/src/css/app/Header.css +25 -0
  747. package/src/css/app/codemirror-completions.css +308 -0
  748. package/src/css/app/codemirror.css +136 -0
  749. package/src/css/app/fonts.css +50 -0
  750. package/src/css/app/print.css +86 -0
  751. package/src/css/app/reset.css +18 -0
  752. package/src/css/codehilite.css +354 -0
  753. package/src/css/common.css +45 -0
  754. package/src/css/globals.css +176 -0
  755. package/src/css/index.css +10 -0
  756. package/src/css/katex-fonts.css +214 -0
  757. package/src/css/katex.min.css +1182 -0
  758. package/src/css/md-tooltip.css +52 -0
  759. package/src/css/md.css +365 -0
  760. package/src/css/progress.css +93 -0
  761. package/src/css/table.css +45 -0
  762. package/src/custom.d.ts +24 -0
  763. package/src/fonts/Fira_Mono/FiraMono-Bold.ttf +0 -0
  764. package/src/fonts/Fira_Mono/FiraMono-Medium.ttf +0 -0
  765. package/src/fonts/Fira_Mono/FiraMono-Regular.ttf +0 -0
  766. package/src/fonts/KaTeX/KaTeX_AMS-Regular.ttf +0 -0
  767. package/src/fonts/KaTeX/KaTeX_AMS-Regular.woff +0 -0
  768. package/src/fonts/KaTeX/KaTeX_AMS-Regular.woff2 +0 -0
  769. package/src/fonts/KaTeX/KaTeX_Caligraphic-Bold.ttf +0 -0
  770. package/src/fonts/KaTeX/KaTeX_Caligraphic-Bold.woff +0 -0
  771. package/src/fonts/KaTeX/KaTeX_Caligraphic-Bold.woff2 +0 -0
  772. package/src/fonts/KaTeX/KaTeX_Caligraphic-Regular.ttf +0 -0
  773. package/src/fonts/KaTeX/KaTeX_Caligraphic-Regular.woff +0 -0
  774. package/src/fonts/KaTeX/KaTeX_Caligraphic-Regular.woff2 +0 -0
  775. package/src/fonts/KaTeX/KaTeX_Fraktur-Bold.ttf +0 -0
  776. package/src/fonts/KaTeX/KaTeX_Fraktur-Bold.woff +0 -0
  777. package/src/fonts/KaTeX/KaTeX_Fraktur-Bold.woff2 +0 -0
  778. package/src/fonts/KaTeX/KaTeX_Fraktur-Regular.ttf +0 -0
  779. package/src/fonts/KaTeX/KaTeX_Fraktur-Regular.woff +0 -0
  780. package/src/fonts/KaTeX/KaTeX_Fraktur-Regular.woff2 +0 -0
  781. package/src/fonts/KaTeX/KaTeX_Main-Bold.ttf +0 -0
  782. package/src/fonts/KaTeX/KaTeX_Main-Bold.woff +0 -0
  783. package/src/fonts/KaTeX/KaTeX_Main-Bold.woff2 +0 -0
  784. package/src/fonts/KaTeX/KaTeX_Main-BoldItalic.ttf +0 -0
  785. package/src/fonts/KaTeX/KaTeX_Main-BoldItalic.woff +0 -0
  786. package/src/fonts/KaTeX/KaTeX_Main-BoldItalic.woff2 +0 -0
  787. package/src/fonts/KaTeX/KaTeX_Main-Italic.ttf +0 -0
  788. package/src/fonts/KaTeX/KaTeX_Main-Italic.woff +0 -0
  789. package/src/fonts/KaTeX/KaTeX_Main-Italic.woff2 +0 -0
  790. package/src/fonts/KaTeX/KaTeX_Main-Regular.ttf +0 -0
  791. package/src/fonts/KaTeX/KaTeX_Main-Regular.woff +0 -0
  792. package/src/fonts/KaTeX/KaTeX_Main-Regular.woff2 +0 -0
  793. package/src/fonts/KaTeX/KaTeX_Math-BoldItalic.ttf +0 -0
  794. package/src/fonts/KaTeX/KaTeX_Math-BoldItalic.woff +0 -0
  795. package/src/fonts/KaTeX/KaTeX_Math-BoldItalic.woff2 +0 -0
  796. package/src/fonts/KaTeX/KaTeX_Math-Italic.ttf +0 -0
  797. package/src/fonts/KaTeX/KaTeX_Math-Italic.woff +0 -0
  798. package/src/fonts/KaTeX/KaTeX_Math-Italic.woff2 +0 -0
  799. package/src/fonts/KaTeX/KaTeX_SansSerif-Bold.ttf +0 -0
  800. package/src/fonts/KaTeX/KaTeX_SansSerif-Bold.woff +0 -0
  801. package/src/fonts/KaTeX/KaTeX_SansSerif-Bold.woff2 +0 -0
  802. package/src/fonts/KaTeX/KaTeX_SansSerif-Italic.ttf +0 -0
  803. package/src/fonts/KaTeX/KaTeX_SansSerif-Italic.woff +0 -0
  804. package/src/fonts/KaTeX/KaTeX_SansSerif-Italic.woff2 +0 -0
  805. package/src/fonts/KaTeX/KaTeX_SansSerif-Regular.ttf +0 -0
  806. package/src/fonts/KaTeX/KaTeX_SansSerif-Regular.woff +0 -0
  807. package/src/fonts/KaTeX/KaTeX_SansSerif-Regular.woff2 +0 -0
  808. package/src/fonts/KaTeX/KaTeX_Script-Regular.ttf +0 -0
  809. package/src/fonts/KaTeX/KaTeX_Script-Regular.woff +0 -0
  810. package/src/fonts/KaTeX/KaTeX_Script-Regular.woff2 +0 -0
  811. package/src/fonts/KaTeX/KaTeX_Size1-Regular.ttf +0 -0
  812. package/src/fonts/KaTeX/KaTeX_Size1-Regular.woff +0 -0
  813. package/src/fonts/KaTeX/KaTeX_Size1-Regular.woff2 +0 -0
  814. package/src/fonts/KaTeX/KaTeX_Size2-Regular.ttf +0 -0
  815. package/src/fonts/KaTeX/KaTeX_Size2-Regular.woff +0 -0
  816. package/src/fonts/KaTeX/KaTeX_Size2-Regular.woff2 +0 -0
  817. package/src/fonts/KaTeX/KaTeX_Size3-Regular.ttf +0 -0
  818. package/src/fonts/KaTeX/KaTeX_Size3-Regular.woff +0 -0
  819. package/src/fonts/KaTeX/KaTeX_Size3-Regular.woff2 +0 -0
  820. package/src/fonts/KaTeX/KaTeX_Size4-Regular.ttf +0 -0
  821. package/src/fonts/KaTeX/KaTeX_Size4-Regular.woff +0 -0
  822. package/src/fonts/KaTeX/KaTeX_Size4-Regular.woff2 +0 -0
  823. package/src/fonts/KaTeX/KaTeX_Typewriter-Regular.ttf +0 -0
  824. package/src/fonts/KaTeX/KaTeX_Typewriter-Regular.woff +0 -0
  825. package/src/fonts/KaTeX/KaTeX_Typewriter-Regular.woff2 +0 -0
  826. package/src/fonts/Lora/Lora-Italic-VariableFont_wght.ttf +0 -0
  827. package/src/fonts/Lora/Lora-VariableFont_wght.ttf +0 -0
  828. package/src/fonts/Lora/static/Lora-Bold.ttf +0 -0
  829. package/src/fonts/Lora/static/Lora-BoldItalic.ttf +0 -0
  830. package/src/fonts/Lora/static/Lora-Italic.ttf +0 -0
  831. package/src/fonts/Lora/static/Lora-Medium.ttf +0 -0
  832. package/src/fonts/Lora/static/Lora-MediumItalic.ttf +0 -0
  833. package/src/fonts/Lora/static/Lora-Regular.ttf +0 -0
  834. package/src/fonts/Lora/static/Lora-SemiBold.ttf +0 -0
  835. package/src/fonts/Lora/static/Lora-SemiBoldItalic.ttf +0 -0
  836. package/src/fonts/PT_Sans/PTSans-Bold.ttf +0 -0
  837. package/src/fonts/PT_Sans/PTSans-BoldItalic.ttf +0 -0
  838. package/src/fonts/PT_Sans/PTSans-Italic.ttf +0 -0
  839. package/src/fonts/PT_Sans/PTSans-Regular.ttf +0 -0
  840. package/src/hooks/__tests__/useBoolean.test.tsx +33 -0
  841. package/src/hooks/__tests__/useDebounce.test.tsx +182 -0
  842. package/src/hooks/__tests__/useEffectSkipFirstRender.test.tsx +42 -0
  843. package/src/hooks/__tests__/useEventListener.test.tsx +148 -0
  844. package/src/hooks/__tests__/useInternalStateWithSync.test.tsx +76 -0
  845. package/src/hooks/__tests__/useInterval.test.tsx +70 -0
  846. package/src/hooks/__tests__/usePackageMetadata.test.tsx +219 -0
  847. package/src/hooks/__tests__/useResizeHandle.test.tsx +240 -0
  848. package/src/hooks/__tests__/useResizeObserver.test.tsx +86 -0
  849. package/src/hooks/__tests__/useTimer.test.tsx +62 -0
  850. package/src/hooks/debug.ts +116 -0
  851. package/src/hooks/useAsyncData.ts +392 -0
  852. package/src/hooks/useAudioRecorder.ts +89 -0
  853. package/src/hooks/useAutoGrowInputProps.ts +56 -0
  854. package/src/hooks/useBoolean.ts +26 -0
  855. package/src/hooks/useCellRenderCount.ts +15 -0
  856. package/src/hooks/useDebounce.ts +95 -0
  857. package/src/hooks/useDeepCompareMemoize.ts +22 -0
  858. package/src/hooks/useEffectSkipFirstRender.ts +24 -0
  859. package/src/hooks/useElapsedTime.ts +25 -0
  860. package/src/hooks/useEvent.ts +2 -0
  861. package/src/hooks/useEventListener.ts +68 -0
  862. package/src/hooks/useHotkey.ts +77 -0
  863. package/src/hooks/useInternalStateWithSync.ts +26 -0
  864. package/src/hooks/useInterval.ts +49 -0
  865. package/src/hooks/useIsDragging.tsx +39 -0
  866. package/src/hooks/useLifecycle.ts +20 -0
  867. package/src/hooks/useLocalStorage.ts +22 -0
  868. package/src/hooks/useNonce.ts +9 -0
  869. package/src/hooks/usePackageMetadata.ts +52 -0
  870. package/src/hooks/useRecentCommands.ts +25 -0
  871. package/src/hooks/useResizeHandle.ts +110 -0
  872. package/src/hooks/useResizeObserver.ts +101 -0
  873. package/src/hooks/useScript.ts +90 -0
  874. package/src/hooks/useSelectAllContent.ts +42 -0
  875. package/src/hooks/useTimer.ts +48 -0
  876. package/src/main.tsx +20 -0
  877. package/src/mount.tsx +331 -0
  878. package/src/plugins/core/BadPlugin.tsx +72 -0
  879. package/src/plugins/core/RenderHTML.tsx +136 -0
  880. package/src/plugins/core/__test__/RenderHTML.test.ts +146 -0
  881. package/src/plugins/core/builder.ts +59 -0
  882. package/src/plugins/core/registerReactComponent.tsx +535 -0
  883. package/src/plugins/core/rpc.ts +55 -0
  884. package/src/plugins/core/sidebar-element.tsx +104 -0
  885. package/src/plugins/impl/ButtonPlugin.tsx +95 -0
  886. package/src/plugins/impl/CheckboxPlugin.tsx +56 -0
  887. package/src/plugins/impl/CodeEditorPlugin.tsx +119 -0
  888. package/src/plugins/impl/DataEditorPlugin.tsx +181 -0
  889. package/src/plugins/impl/DataTablePlugin.tsx +948 -0
  890. package/src/plugins/impl/DatePickerPlugin.tsx +74 -0
  891. package/src/plugins/impl/DateRangePlugin.tsx +82 -0
  892. package/src/plugins/impl/DateTimePickerPlugin.tsx +76 -0
  893. package/src/plugins/impl/DictPlugin.tsx +80 -0
  894. package/src/plugins/impl/DropdownPlugin.tsx +102 -0
  895. package/src/plugins/impl/FileBrowserPlugin.tsx +500 -0
  896. package/src/plugins/impl/FileUploadPlugin.tsx +302 -0
  897. package/src/plugins/impl/FormPlugin.tsx +294 -0
  898. package/src/plugins/impl/MicrophonePlugin.tsx +58 -0
  899. package/src/plugins/impl/MultiselectPlugin.tsx +207 -0
  900. package/src/plugins/impl/NumberPlugin.tsx +84 -0
  901. package/src/plugins/impl/RadioPlugin.tsx +77 -0
  902. package/src/plugins/impl/RangeSliderPlugin.tsx +163 -0
  903. package/src/plugins/impl/RefreshPlugin.tsx +158 -0
  904. package/src/plugins/impl/SearchableSelect.tsx +122 -0
  905. package/src/plugins/impl/SliderPlugin.tsx +166 -0
  906. package/src/plugins/impl/SwitchPlugin.tsx +48 -0
  907. package/src/plugins/impl/TabsPlugin.tsx +83 -0
  908. package/src/plugins/impl/TextAreaPlugin.tsx +131 -0
  909. package/src/plugins/impl/TextInputPlugin.tsx +169 -0
  910. package/src/plugins/impl/__tests__/DateTimePickerPlugin.test.tsx +45 -0
  911. package/src/plugins/impl/__tests__/DropdownPlugin.test.tsx +178 -0
  912. package/src/plugins/impl/__tests__/MultiSelectPlugin.test.ts +41 -0
  913. package/src/plugins/impl/__tests__/NumberPlugin.test.tsx +144 -0
  914. package/src/plugins/impl/anywidget/AnyWidgetPlugin.tsx +269 -0
  915. package/src/plugins/impl/anywidget/__tests__/AnyWidgetPlugin.test.tsx +181 -0
  916. package/src/plugins/impl/anywidget/__tests__/model.test.ts +370 -0
  917. package/src/plugins/impl/anywidget/model.ts +314 -0
  918. package/src/plugins/impl/chat/ChatPlugin.tsx +98 -0
  919. package/src/plugins/impl/chat/chat-ui.tsx +716 -0
  920. package/src/plugins/impl/chat/types.ts +39 -0
  921. package/src/plugins/impl/code/LazyAnyLanguageCodeMirror.tsx +6 -0
  922. package/src/plugins/impl/code/any-language-editor.tsx +68 -0
  923. package/src/plugins/impl/common/error-banner.tsx +111 -0
  924. package/src/plugins/impl/common/intent.ts +18 -0
  925. package/src/plugins/impl/common/labeled.tsx +69 -0
  926. package/src/plugins/impl/data-editor/__tests__/data-utils.test.ts +876 -0
  927. package/src/plugins/impl/data-editor/__tests__/glide-utils.test.ts +452 -0
  928. package/src/plugins/impl/data-editor/components.tsx +179 -0
  929. package/src/plugins/impl/data-editor/data-utils.ts +123 -0
  930. package/src/plugins/impl/data-editor/glide-data-editor.tsx +651 -0
  931. package/src/plugins/impl/data-editor/glide-utils.ts +200 -0
  932. package/src/plugins/impl/data-editor/themes.ts +49 -0
  933. package/src/plugins/impl/data-editor/types.ts +44 -0
  934. package/src/plugins/impl/data-explorer/ConnectedDataExplorerComponent.tsx +268 -0
  935. package/src/plugins/impl/data-explorer/DataExplorerPlugin.tsx +31 -0
  936. package/src/plugins/impl/data-explorer/components/column-summary.tsx +174 -0
  937. package/src/plugins/impl/data-explorer/components/icons.tsx +30 -0
  938. package/src/plugins/impl/data-explorer/components/query-form.tsx +296 -0
  939. package/src/plugins/impl/data-explorer/encoding.ts +107 -0
  940. package/src/plugins/impl/data-explorer/functions/function.ts +83 -0
  941. package/src/plugins/impl/data-explorer/functions/types.ts +32 -0
  942. package/src/plugins/impl/data-explorer/marks.ts +21 -0
  943. package/src/plugins/impl/data-explorer/queries/field-suggestion.ts +65 -0
  944. package/src/plugins/impl/data-explorer/queries/histograms.ts +41 -0
  945. package/src/plugins/impl/data-explorer/queries/queries.ts +204 -0
  946. package/src/plugins/impl/data-explorer/queries/removeUndefined.ts +11 -0
  947. package/src/plugins/impl/data-explorer/queries/types.ts +54 -0
  948. package/src/plugins/impl/data-explorer/queries/utils.ts +85 -0
  949. package/src/plugins/impl/data-explorer/spec.ts +28 -0
  950. package/src/plugins/impl/data-explorer/state/reducer.ts +92 -0
  951. package/src/plugins/impl/data-explorer/state/types.ts +28 -0
  952. package/src/plugins/impl/data-frames/DataFramePlugin.tsx +303 -0
  953. package/src/plugins/impl/data-frames/forms/__tests__/__snapshots__/form.test.tsx.snap +1600 -0
  954. package/src/plugins/impl/data-frames/forms/__tests__/form.test.tsx +67 -0
  955. package/src/plugins/impl/data-frames/forms/context.ts +13 -0
  956. package/src/plugins/impl/data-frames/forms/datatype-icon.tsx +43 -0
  957. package/src/plugins/impl/data-frames/forms/renderers.tsx +518 -0
  958. package/src/plugins/impl/data-frames/panel.tsx +308 -0
  959. package/src/plugins/impl/data-frames/schema.ts +211 -0
  960. package/src/plugins/impl/data-frames/types.ts +91 -0
  961. package/src/plugins/impl/data-frames/utils/__tests__/getUpdatedColumnTypes.test.ts +191 -0
  962. package/src/plugins/impl/data-frames/utils/__tests__/operators.test.ts +116 -0
  963. package/src/plugins/impl/data-frames/utils/getUpdatedColumnTypes.ts +67 -0
  964. package/src/plugins/impl/data-frames/utils/operators.ts +202 -0
  965. package/src/plugins/impl/image-comparison/ImageComparisonComponent.tsx +39 -0
  966. package/src/plugins/impl/multiselectFilterFn.tsx +22 -0
  967. package/src/plugins/impl/panel/PanelPlugin.tsx +266 -0
  968. package/src/plugins/impl/panel/__tests__/utils.test.ts +119 -0
  969. package/src/plugins/impl/panel/utils.ts +104 -0
  970. package/src/plugins/impl/plotly/PlotlyPlugin.tsx +300 -0
  971. package/src/plugins/impl/plotly/__tests__/parse-from-template.test.ts +73 -0
  972. package/src/plugins/impl/plotly/mapbox.css +359 -0
  973. package/src/plugins/impl/plotly/parse-from-template.ts +58 -0
  974. package/src/plugins/impl/plotly/plotly.css +280 -0
  975. package/src/plugins/impl/vega/VegaPlugin.tsx +40 -0
  976. package/src/plugins/impl/vega/__tests__/__snapshots__/make-selectable.test.ts.snap +1210 -0
  977. package/src/plugins/impl/vega/__tests__/encodings.test.ts +172 -0
  978. package/src/plugins/impl/vega/__tests__/loader.test.ts +73 -0
  979. package/src/plugins/impl/vega/__tests__/make-selectable.test.ts +575 -0
  980. package/src/plugins/impl/vega/__tests__/params.test.ts +52 -0
  981. package/src/plugins/impl/vega/__tests__/resolve-data.test.ts +236 -0
  982. package/src/plugins/impl/vega/__tests__/vega.test.ts +603 -0
  983. package/src/plugins/impl/vega/batched.ts +41 -0
  984. package/src/plugins/impl/vega/encodings.ts +111 -0
  985. package/src/plugins/impl/vega/fix-relative-url.ts +15 -0
  986. package/src/plugins/impl/vega/formats.ts +25 -0
  987. package/src/plugins/impl/vega/loader.ts +320 -0
  988. package/src/plugins/impl/vega/make-selectable.ts +248 -0
  989. package/src/plugins/impl/vega/marks.ts +36 -0
  990. package/src/plugins/impl/vega/params.ts +192 -0
  991. package/src/plugins/impl/vega/resolve-data.ts +101 -0
  992. package/src/plugins/impl/vega/types.ts +32 -0
  993. package/src/plugins/impl/vega/utils.ts +46 -0
  994. package/src/plugins/impl/vega/vega-component.tsx +271 -0
  995. package/src/plugins/impl/vega/vega-loader.ts +53 -0
  996. package/src/plugins/impl/vega/vega.css +31 -0
  997. package/src/plugins/layout/AccordionPlugin.tsx +63 -0
  998. package/src/plugins/layout/CalloutPlugin.tsx +34 -0
  999. package/src/plugins/layout/DownloadPlugin.tsx +136 -0
  1000. package/src/plugins/layout/ImageComparisonPlugin.tsx +35 -0
  1001. package/src/plugins/layout/JsonOutputPlugin.tsx +47 -0
  1002. package/src/plugins/layout/LazyPlugin.tsx +98 -0
  1003. package/src/plugins/layout/MimeRenderPlugin.tsx +45 -0
  1004. package/src/plugins/layout/NavigationMenuPlugin.tsx +219 -0
  1005. package/src/plugins/layout/ProgressPlugin.tsx +175 -0
  1006. package/src/plugins/layout/RoutesPlugin.tsx +81 -0
  1007. package/src/plugins/layout/StatPlugin.tsx +100 -0
  1008. package/src/plugins/layout/TexPlugin.tsx +102 -0
  1009. package/src/plugins/layout/__test__/ProgressPlugin.test.ts +26 -0
  1010. package/src/plugins/layout/carousel/CarouselPlugin.tsx +50 -0
  1011. package/src/plugins/layout/mermaid/MermaidPlugin.tsx +26 -0
  1012. package/src/plugins/layout/mermaid/mermaid.tsx +94 -0
  1013. package/src/plugins/layout/navigation-menu.css +37 -0
  1014. package/src/plugins/plugins.ts +116 -0
  1015. package/src/plugins/stateless-plugin.ts +29 -0
  1016. package/src/plugins/types.ts +82 -0
  1017. package/src/stories/__fixtures__/vega.ts +225 -0
  1018. package/src/stories/accordion.stories.tsx +100 -0
  1019. package/src/stories/alert-dialog.mdx +42 -0
  1020. package/src/stories/app-chrome.stories.tsx +26 -0
  1021. package/src/stories/button.stories.tsx +90 -0
  1022. package/src/stories/callout.stories.tsx +73 -0
  1023. package/src/stories/cell-status.stories.tsx +145 -0
  1024. package/src/stories/cell.stories.tsx +336 -0
  1025. package/src/stories/checkbox.stories.tsx +44 -0
  1026. package/src/stories/colors.stories.tsx +156 -0
  1027. package/src/stories/combobox.stories.tsx +133 -0
  1028. package/src/stories/context-menu.mdx +23 -0
  1029. package/src/stories/data-explorer.stories.tsx +30 -0
  1030. package/src/stories/data-table.stories.tsx +130 -0
  1031. package/src/stories/dataframe.stories.tsx +46 -0
  1032. package/src/stories/debugger.stories.tsx +34 -0
  1033. package/src/stories/dialog.stories.tsx +80 -0
  1034. package/src/stories/dropdown-menu.mdx +159 -0
  1035. package/src/stories/editor-inputs.stories.tsx +47 -0
  1036. package/src/stories/editor.stories.tsx +91 -0
  1037. package/src/stories/file-upload.stories.tsx +103 -0
  1038. package/src/stories/form-wrapper.stories.tsx +147 -0
  1039. package/src/stories/input.stories.tsx +56 -0
  1040. package/src/stories/label.mdx +9 -0
  1041. package/src/stories/log-viewer.stories.tsx +74 -0
  1042. package/src/stories/number-field.mdx +17 -0
  1043. package/src/stories/number-field.stories.tsx +41 -0
  1044. package/src/stories/progress-component.stories.tsx +74 -0
  1045. package/src/stories/progress.stories.tsx +33 -0
  1046. package/src/stories/radio-group.mdx +54 -0
  1047. package/src/stories/select-native.stories.tsx +49 -0
  1048. package/src/stories/select.stories.tsx +92 -0
  1049. package/src/stories/slider.stories.tsx +27 -0
  1050. package/src/stories/stat.stories.tsx +123 -0
  1051. package/src/stories/switch.mdx +20 -0
  1052. package/src/stories/switchable-multi-select.stories.tsx +31 -0
  1053. package/src/stories/tabs.mdx +59 -0
  1054. package/src/stories/textarea.stories.tsx +58 -0
  1055. package/src/stories/theme.stories.tsx +111 -0
  1056. package/src/stories/tooltip.mdx +32 -0
  1057. package/src/stories/typography.stories.tsx +80 -0
  1058. package/src/stories/variables.stories.tsx +58 -0
  1059. package/src/stories/vega.stories.tsx +57 -0
  1060. package/src/theme/ThemeProvider.tsx +32 -0
  1061. package/src/theme/namespace.tsx +23 -0
  1062. package/src/theme/useTheme.ts +89 -0
  1063. package/src/utils/Deferred.ts +20 -0
  1064. package/src/utils/Logger.ts +91 -0
  1065. package/src/utils/__tests__/Deferred.test.ts +38 -0
  1066. package/src/utils/__tests__/arrays.test.ts +130 -0
  1067. package/src/utils/__tests__/batch-requests.test.ts +60 -0
  1068. package/src/utils/__tests__/blob.test.ts +52 -0
  1069. package/src/utils/__tests__/cell-urls.test.ts +92 -0
  1070. package/src/utils/__tests__/createReducer.test.ts +184 -0
  1071. package/src/utils/__tests__/data-views.test.ts +112 -0
  1072. package/src/utils/__tests__/dates.test.ts +188 -0
  1073. package/src/utils/__tests__/edit-distance.test.ts +302 -0
  1074. package/src/utils/__tests__/errors.test.ts +54 -0
  1075. package/src/utils/__tests__/filenames.test.ts +30 -0
  1076. package/src/utils/__tests__/id-tree.test.ts +1994 -0
  1077. package/src/utils/__tests__/json-parser.test.ts +79 -0
  1078. package/src/utils/__tests__/local-storage.test.ts +77 -0
  1079. package/src/utils/__tests__/lru.test.ts +74 -0
  1080. package/src/utils/__tests__/maps.test.ts +91 -0
  1081. package/src/utils/__tests__/math.test.ts +29 -0
  1082. package/src/utils/__tests__/numbers.test.ts +76 -0
  1083. package/src/utils/__tests__/path.test.ts +170 -0
  1084. package/src/utils/__tests__/pluralize.test.ts +47 -0
  1085. package/src/utils/__tests__/routes.test.ts +134 -0
  1086. package/src/utils/__tests__/sets.test.ts +41 -0
  1087. package/src/utils/__tests__/shallow-compare.test.ts +55 -0
  1088. package/src/utils/__tests__/strings.test.ts +68 -0
  1089. package/src/utils/__tests__/time.test.ts +61 -0
  1090. package/src/utils/__tests__/timed-cache.test.ts +142 -0
  1091. package/src/utils/__tests__/timeout.test.ts +153 -0
  1092. package/src/utils/__tests__/traceback.test.ts +34 -0
  1093. package/src/utils/__tests__/url.test.ts +100 -0
  1094. package/src/utils/__tests__/urls.test.ts +10 -0
  1095. package/src/utils/__tests__/versions.test.ts +63 -0
  1096. package/src/utils/__tests__/waitForWs.test.ts +76 -0
  1097. package/src/utils/ai/__tests__/ids.test.ts +184 -0
  1098. package/src/utils/ai/ids.ts +61 -0
  1099. package/src/utils/arrays.ts +75 -0
  1100. package/src/utils/assertExists.ts +12 -0
  1101. package/src/utils/assertNever.ts +20 -0
  1102. package/src/utils/batch-requests.ts +28 -0
  1103. package/src/utils/blob.ts +45 -0
  1104. package/src/utils/cell-urls.ts +31 -0
  1105. package/src/utils/cn.ts +8 -0
  1106. package/src/utils/copy.ts +17 -0
  1107. package/src/utils/createReducer.ts +137 -0
  1108. package/src/utils/data-views.ts +54 -0
  1109. package/src/utils/dates.ts +145 -0
  1110. package/src/utils/dereference.ts +10 -0
  1111. package/src/utils/download.ts +47 -0
  1112. package/src/utils/edit-distance.ts +141 -0
  1113. package/src/utils/errors.ts +63 -0
  1114. package/src/utils/events.ts +85 -0
  1115. package/src/utils/fileToBase64.ts +30 -0
  1116. package/src/utils/filenames.ts +29 -0
  1117. package/src/utils/functions.ts +24 -0
  1118. package/src/utils/id-tree.tsx +1032 -0
  1119. package/src/utils/idle.ts +19 -0
  1120. package/src/utils/invariant.ts +37 -0
  1121. package/src/utils/json/__tests__/base64.test.ts +100 -0
  1122. package/src/utils/json/base64.ts +51 -0
  1123. package/src/utils/json/json-parser.ts +65 -0
  1124. package/src/utils/lazy.ts +30 -0
  1125. package/src/utils/links.ts +11 -0
  1126. package/src/utils/localStorage.ts +132 -0
  1127. package/src/utils/lru.ts +68 -0
  1128. package/src/utils/maps.ts +65 -0
  1129. package/src/utils/math.ts +6 -0
  1130. package/src/utils/mergeRefs.ts +14 -0
  1131. package/src/utils/numbers.ts +124 -0
  1132. package/src/utils/objects.ts +105 -0
  1133. package/src/utils/once.ts +17 -0
  1134. package/src/utils/pathUtils.test.ts +113 -0
  1135. package/src/utils/pathUtils.ts +76 -0
  1136. package/src/utils/paths.ts +67 -0
  1137. package/src/utils/pluralize.ts +35 -0
  1138. package/src/utils/python-poet/__tests__/poet.test.ts +286 -0
  1139. package/src/utils/python-poet/poet.ts +196 -0
  1140. package/src/utils/reload-safe.ts +15 -0
  1141. package/src/utils/repl.ts +23 -0
  1142. package/src/utils/routes.ts +36 -0
  1143. package/src/utils/scroll.ts +38 -0
  1144. package/src/utils/sets.ts +30 -0
  1145. package/src/utils/shallow-compare.ts +30 -0
  1146. package/src/utils/staticImplements.ts +7 -0
  1147. package/src/utils/strings.ts +64 -0
  1148. package/src/utils/time.ts +39 -0
  1149. package/src/utils/timed-cache.ts +52 -0
  1150. package/src/utils/timeout.ts +42 -0
  1151. package/src/utils/traceback.ts +104 -0
  1152. package/src/utils/tracer.ts +106 -0
  1153. package/src/utils/typed.ts +17 -0
  1154. package/src/utils/url.ts +12 -0
  1155. package/src/utils/urls.ts +33 -0
  1156. package/src/utils/uuid.ts +8 -0
  1157. package/src/utils/versions.ts +66 -0
  1158. package/src/utils/vitals.ts +30 -0
  1159. package/src/utils/waitForWs.ts +31 -0
@@ -0,0 +1,1329 @@
1
+ /* Copyright 2024 Marimo. All rights reserved. */
2
+
3
+ import { zodResolver } from "@hookform/resolvers/zod";
4
+ import { atom, useAtom, useAtomValue, useSetAtom } from "jotai";
5
+ import {
6
+ AlertTriangleIcon,
7
+ BrainIcon,
8
+ CpuIcon,
9
+ EditIcon,
10
+ FlaskConicalIcon,
11
+ FolderCog2,
12
+ MonitorIcon,
13
+ PackageIcon,
14
+ } from "lucide-react";
15
+ import React, { useRef } from "react";
16
+ import { useForm } from "react-hook-form";
17
+ import { Button } from "@/components/ui/button";
18
+ import { Checkbox } from "@/components/ui/checkbox";
19
+ import {
20
+ Form,
21
+ FormControl,
22
+ FormDescription,
23
+ FormField,
24
+ FormItem,
25
+ FormLabel,
26
+ FormMessage,
27
+ } from "@/components/ui/form";
28
+ import { Kbd } from "@/components/ui/kbd";
29
+ import { NativeSelect } from "@/components/ui/native-select";
30
+ import { NumberField } from "@/components/ui/number-field";
31
+ import { Tabs, TabsList, TabsTrigger } from "@/components/ui/tabs";
32
+ import { KEYMAP_PRESETS } from "@/core/codemirror/keymaps/keymaps";
33
+ import { capabilitiesAtom } from "@/core/config/capabilities";
34
+ import { useUserConfig } from "@/core/config/config";
35
+ import {
36
+ PackageManagerNames,
37
+ type UserConfig,
38
+ UserConfigSchema,
39
+ } from "@/core/config/config-schema";
40
+ import { getAppWidths } from "@/core/config/widths";
41
+ import { marimoVersionAtom } from "@/core/meta/state";
42
+ import { useRequestClient } from "@/core/network/requests";
43
+ import { isWasm } from "@/core/wasm/utils";
44
+ import { Banner } from "@/plugins/impl/common/error-banner";
45
+ import { THEMES } from "@/theme/useTheme";
46
+ import { arrayToggle } from "@/utils/arrays";
47
+ import { cn } from "@/utils/cn";
48
+ import { keyboardShortcutsAtom } from "../editor/controls/keyboard-shortcuts";
49
+ import { Badge } from "../ui/badge";
50
+ import { ExternalLink } from "../ui/links";
51
+ import { Tooltip } from "../ui/tooltip";
52
+ import { AiConfig } from "./ai-config";
53
+ import { SettingSubtitle, SQL_OUTPUT_SELECT_OPTIONS } from "./common";
54
+ import { IsOverridden } from "./is-overridden";
55
+ import { OptionalFeatures } from "./optional-features";
56
+
57
+ const formItemClasses = "flex flex-row items-center space-x-1 space-y-0";
58
+ const categories = [
59
+ {
60
+ id: "editor",
61
+ label: "Editor",
62
+ Icon: EditIcon,
63
+ className: "bg-(--blue-4)",
64
+ },
65
+ {
66
+ id: "display",
67
+ label: "Display",
68
+ Icon: MonitorIcon,
69
+ className: "bg-(--grass-4)",
70
+ },
71
+ {
72
+ id: "packageManagement",
73
+ label: "Package Management",
74
+ Icon: PackageIcon,
75
+ className: "bg-(--red-4)",
76
+ },
77
+ {
78
+ id: "runtime",
79
+ label: "Runtime",
80
+ Icon: CpuIcon,
81
+ className: "bg-(--amber-4)",
82
+ },
83
+ {
84
+ id: "ai",
85
+ label: "AI",
86
+ Icon: BrainIcon,
87
+ className: "bg-[linear-gradient(45deg,var(--purple-5),var(--cyan-5))]",
88
+ },
89
+ {
90
+ id: "optionalDeps",
91
+ label: "Optional Dependencies",
92
+ Icon: FolderCog2,
93
+ className: "bg-(--orange-4)",
94
+ },
95
+ {
96
+ id: "labs",
97
+ label: "Labs",
98
+ Icon: FlaskConicalIcon,
99
+ className: "bg-(--slate-4)",
100
+ },
101
+ ] as const;
102
+
103
+ export type SettingCategoryId = (typeof categories)[number]["id"];
104
+
105
+ export const activeUserConfigCategoryAtom = atom<SettingCategoryId>(
106
+ categories[0].id,
107
+ );
108
+
109
+ export const UserConfigForm: React.FC = () => {
110
+ const [config, setConfig] = useUserConfig();
111
+ const formElement = useRef<HTMLFormElement>(null);
112
+ const setKeyboardShortcutsOpen = useSetAtom(keyboardShortcutsAtom);
113
+ const [activeCategory, setActiveCategory] = useAtom(
114
+ activeUserConfigCategoryAtom,
115
+ );
116
+ const capabilities = useAtomValue(capabilitiesAtom);
117
+ const marimoVersion = useAtomValue(marimoVersionAtom);
118
+ const { saveUserConfig } = useRequestClient();
119
+
120
+ // Create form
121
+ const form = useForm<UserConfig>({
122
+ resolver: zodResolver(UserConfigSchema),
123
+ defaultValues: config,
124
+ });
125
+
126
+ const onSubmit = async (values: UserConfig) => {
127
+ await saveUserConfig({ config: values }).then(() => {
128
+ setConfig(values);
129
+ });
130
+ };
131
+
132
+ const isWasmRuntime = isWasm();
133
+
134
+ const renderBody = () => {
135
+ switch (activeCategory) {
136
+ case "editor":
137
+ return (
138
+ <>
139
+ <SettingGroup title="Autosave">
140
+ <FormField
141
+ control={form.control}
142
+ name="save.autosave"
143
+ render={({ field }) => (
144
+ <FormItem className={formItemClasses}>
145
+ <FormLabel className="font-normal">
146
+ Autosave enabled
147
+ </FormLabel>
148
+ <FormControl>
149
+ <Checkbox
150
+ data-testid="autosave-checkbox"
151
+ checked={field.value === "after_delay"}
152
+ disabled={field.disabled}
153
+ onCheckedChange={(checked) => {
154
+ field.onChange(checked ? "after_delay" : "off");
155
+ }}
156
+ />
157
+ </FormControl>
158
+ <FormMessage />
159
+ <IsOverridden userConfig={config} name="save.autosave" />
160
+ </FormItem>
161
+ )}
162
+ />
163
+ <FormField
164
+ control={form.control}
165
+ name="save.autosave_delay"
166
+ render={({ field }) => (
167
+ <FormItem className={formItemClasses}>
168
+ <FormLabel>Autosave delay (seconds)</FormLabel>
169
+ <FormControl>
170
+ <NumberField
171
+ data-testid="autosave-delay-input"
172
+ className="m-0 w-24"
173
+ isDisabled={
174
+ form.getValues("save.autosave") !== "after_delay"
175
+ }
176
+ {...field}
177
+ value={field.value / 1000}
178
+ minValue={1}
179
+ onChange={(value) => {
180
+ field.onChange(value * 1000);
181
+ if (!Number.isNaN(value)) {
182
+ onSubmit(form.getValues());
183
+ }
184
+ }}
185
+ />
186
+ </FormControl>
187
+ <FormMessage />
188
+ <IsOverridden
189
+ userConfig={config}
190
+ name="save.autosave_delay"
191
+ />
192
+ </FormItem>
193
+ )}
194
+ />
195
+ {/* auto_download is a runtime setting in the backend, but it makes
196
+ * more sense as an autosave setting. */}
197
+ <FormField
198
+ control={form.control}
199
+ name="runtime.default_auto_download"
200
+ render={({ field }) => (
201
+ <div className="flex flex-col gap-y-1">
202
+ <FormItem className={formItemClasses}>
203
+ <FormLabel>Save cell outputs as</FormLabel>
204
+ <FormControl>
205
+ <div className="flex gap-4">
206
+ <div className="flex items-center space-x-2">
207
+ <Checkbox
208
+ id="html-checkbox"
209
+ checked={
210
+ Array.isArray(field.value) &&
211
+ field.value.includes("html")
212
+ }
213
+ onCheckedChange={() => {
214
+ const currentValue = Array.isArray(field.value)
215
+ ? field.value
216
+ : [];
217
+ field.onChange(
218
+ arrayToggle(currentValue, "html"),
219
+ );
220
+ }}
221
+ />
222
+ <FormLabel htmlFor="html-checkbox">HTML</FormLabel>
223
+ </div>
224
+ <div className="flex items-center space-x-2">
225
+ <Checkbox
226
+ id="ipynb-checkbox"
227
+ checked={
228
+ Array.isArray(field.value) &&
229
+ field.value.includes("ipynb")
230
+ }
231
+ onCheckedChange={() => {
232
+ const currentValue = Array.isArray(field.value)
233
+ ? field.value
234
+ : [];
235
+ field.onChange(
236
+ arrayToggle(currentValue, "ipynb"),
237
+ );
238
+ }}
239
+ />
240
+ <FormLabel htmlFor="ipynb-checkbox">
241
+ IPYNB
242
+ </FormLabel>
243
+ </div>
244
+ </div>
245
+ </FormControl>
246
+ <FormMessage />
247
+ <IsOverridden
248
+ userConfig={config}
249
+ name="runtime.default_auto_download"
250
+ />
251
+ </FormItem>
252
+ <FormDescription>
253
+ When enabled, marimo will periodically save notebooks in
254
+ your selected formats (HTML, IPYNB) to a folder named{" "}
255
+ <Kbd className="inline">__marimo__</Kbd> next to your
256
+ notebook file.
257
+ </FormDescription>
258
+ </div>
259
+ )}
260
+ />
261
+ </SettingGroup>
262
+ <SettingGroup title="Formatting">
263
+ <FormField
264
+ control={form.control}
265
+ name="save.format_on_save"
266
+ render={({ field }) => (
267
+ <FormItem className={formItemClasses}>
268
+ <FormLabel className="font-normal">
269
+ Format on save
270
+ </FormLabel>
271
+ <FormControl>
272
+ <Checkbox
273
+ data-testid="format-on-save-checkbox"
274
+ checked={field.value}
275
+ disabled={field.disabled}
276
+ onCheckedChange={(checked) => {
277
+ field.onChange(checked);
278
+ }}
279
+ />
280
+ </FormControl>
281
+ <FormMessage />
282
+ <IsOverridden
283
+ userConfig={config}
284
+ name="save.format_on_save"
285
+ />
286
+ </FormItem>
287
+ )}
288
+ />
289
+ <FormField
290
+ control={form.control}
291
+ name="formatting.line_length"
292
+ render={({ field }) => (
293
+ <div className="flex flex-col space-y-1">
294
+ <FormItem className={formItemClasses}>
295
+ <FormLabel>Line length</FormLabel>
296
+ <FormControl>
297
+ <NumberField
298
+ data-testid="line-length-input"
299
+ className="m-0 w-24"
300
+ {...field}
301
+ value={field.value}
302
+ minValue={1}
303
+ maxValue={1000}
304
+ onChange={(value) => {
305
+ // Ignore NaN
306
+ field.onChange(value);
307
+ if (!Number.isNaN(value)) {
308
+ onSubmit(form.getValues());
309
+ }
310
+ }}
311
+ />
312
+ </FormControl>
313
+ <FormMessage />
314
+ <IsOverridden
315
+ userConfig={config}
316
+ name="formatting.line_length"
317
+ />
318
+ </FormItem>
319
+
320
+ <FormDescription>
321
+ Maximum line length when formatting code.
322
+ </FormDescription>
323
+ </div>
324
+ )}
325
+ />
326
+ </SettingGroup>
327
+ <SettingGroup title="Autocomplete">
328
+ <FormField
329
+ control={form.control}
330
+ name="completion.activate_on_typing"
331
+ render={({ field }) => (
332
+ <div className="flex flex-col space-y-1">
333
+ <FormItem className={formItemClasses}>
334
+ <FormLabel className="font-normal">
335
+ Autocomplete
336
+ </FormLabel>
337
+ <FormControl>
338
+ <Checkbox
339
+ data-testid="autocomplete-checkbox"
340
+ checked={field.value}
341
+ disabled={field.disabled}
342
+ onCheckedChange={(checked) => {
343
+ field.onChange(Boolean(checked));
344
+ }}
345
+ />
346
+ </FormControl>
347
+ <FormMessage />
348
+ <IsOverridden
349
+ userConfig={config}
350
+ name="completion.activate_on_typing"
351
+ />
352
+ </FormItem>
353
+ <FormDescription>
354
+ When unchecked, code completion is still available through
355
+ a hotkey.
356
+ </FormDescription>
357
+
358
+ <div>
359
+ <Button
360
+ variant="link"
361
+ className="mb-0 px-0"
362
+ type="button"
363
+ onClick={(evt) => {
364
+ evt.preventDefault();
365
+ evt.stopPropagation();
366
+ setActiveCategory("ai");
367
+ }}
368
+ >
369
+ Edit AI autocomplete
370
+ </Button>
371
+ </div>
372
+ </div>
373
+ )}
374
+ />
375
+ </SettingGroup>
376
+ <SettingGroup title="Language Servers">
377
+ <FormDescription>
378
+ See the{" "}
379
+ <ExternalLink href="https://docs.marimo.io/guides/editor_features/language_server/">
380
+ docs
381
+ </ExternalLink>{" "}
382
+ for more information about language server support.
383
+ </FormDescription>
384
+ <FormDescription>
385
+ <strong>Note:</strong> When using multiple language servers,
386
+ different features may conflict.
387
+ </FormDescription>
388
+
389
+ <FormField
390
+ control={form.control}
391
+ name="language_servers.pylsp.enabled"
392
+ render={({ field }) => (
393
+ <div className="flex flex-col gap-1">
394
+ <FormItem className={formItemClasses}>
395
+ <FormLabel>
396
+ <Badge variant="defaultOutline" className="mr-2">
397
+ Beta
398
+ </Badge>
399
+ Python Language Server (
400
+ <ExternalLink href="https://github.com/python-lsp/python-lsp-server">
401
+ docs
402
+ </ExternalLink>
403
+ )
404
+ </FormLabel>
405
+ <FormControl>
406
+ <Checkbox
407
+ data-testid="pylsp-checkbox"
408
+ checked={field.value}
409
+ disabled={field.disabled}
410
+ onCheckedChange={(checked) => {
411
+ field.onChange(Boolean(checked));
412
+ }}
413
+ />
414
+ </FormControl>
415
+ <FormMessage />
416
+ <IsOverridden
417
+ userConfig={config}
418
+ name="language_servers.pylsp.enabled"
419
+ />
420
+ </FormItem>
421
+ {field.value && !capabilities.pylsp && (
422
+ <Banner kind="danger">
423
+ The Python Language Server is not available in your
424
+ current environment. Please install{" "}
425
+ <Kbd className="inline">python-lsp-server</Kbd> in your
426
+ environment.
427
+ </Banner>
428
+ )}
429
+ </div>
430
+ )}
431
+ />
432
+ <FormField
433
+ control={form.control}
434
+ name="language_servers.basedpyright.enabled"
435
+ render={({ field }) => (
436
+ <div className="flex flex-col gap-1">
437
+ <FormItem className={formItemClasses}>
438
+ <FormLabel>
439
+ <Badge variant="defaultOutline" className="mr-2">
440
+ Beta
441
+ </Badge>
442
+ basedpyright (
443
+ <ExternalLink href="https://github.com/DetachHead/basedpyright">
444
+ docs
445
+ </ExternalLink>
446
+ )
447
+ </FormLabel>
448
+ <FormControl>
449
+ <Checkbox
450
+ data-testid="basedpyright-checkbox"
451
+ checked={field.value}
452
+ disabled={field.disabled}
453
+ onCheckedChange={(checked) => {
454
+ field.onChange(Boolean(checked));
455
+ }}
456
+ />
457
+ </FormControl>
458
+ <FormMessage />
459
+ <IsOverridden
460
+ userConfig={config}
461
+ name="language_servers.basedpyright.enabled"
462
+ />
463
+ </FormItem>
464
+ {field.value && !capabilities.basedpyright && (
465
+ <Banner kind="danger">
466
+ basedpyright is not available in your current
467
+ environment. Please install{" "}
468
+ <Kbd className="inline">basedpyright</Kbd> in your
469
+ environment.
470
+ </Banner>
471
+ )}
472
+ </div>
473
+ )}
474
+ />
475
+ <FormField
476
+ control={form.control}
477
+ name="language_servers.ty.enabled"
478
+ render={({ field }) => (
479
+ <div className="flex flex-col gap-1">
480
+ <FormItem className={formItemClasses}>
481
+ <FormLabel>
482
+ <Badge variant="defaultOutline" className="mr-2">
483
+ Beta
484
+ </Badge>
485
+ ty (
486
+ <ExternalLink href="https://github.com/astral-sh/ty">
487
+ docs
488
+ </ExternalLink>
489
+ )
490
+ </FormLabel>
491
+ <FormControl>
492
+ <Checkbox
493
+ data-testid="ty-checkbox"
494
+ checked={field.value}
495
+ disabled={field.disabled}
496
+ onCheckedChange={(checked) => {
497
+ field.onChange(Boolean(checked));
498
+ }}
499
+ />
500
+ </FormControl>
501
+ <FormMessage />
502
+ <IsOverridden
503
+ userConfig={config}
504
+ name="language_servers.ty.enabled"
505
+ />
506
+ </FormItem>
507
+ {field.value && !capabilities.ty && (
508
+ <Banner kind="danger">
509
+ ty is not available in your current environment. Please
510
+ install <Kbd className="inline">ty</Kbd> in your
511
+ environment.
512
+ </Banner>
513
+ )}
514
+ </div>
515
+ )}
516
+ />
517
+ <FormField
518
+ control={form.control}
519
+ name="diagnostics.enabled"
520
+ render={({ field }) => (
521
+ <FormItem className={formItemClasses}>
522
+ <FormLabel>
523
+ <Badge variant="defaultOutline" className="mr-2">
524
+ Beta
525
+ </Badge>
526
+ Diagnostics
527
+ </FormLabel>
528
+ <FormControl>
529
+ <Checkbox
530
+ data-testid="diagnostics-checkbox"
531
+ checked={field.value}
532
+ disabled={field.disabled}
533
+ onCheckedChange={(checked) => {
534
+ field.onChange(Boolean(checked));
535
+ }}
536
+ />
537
+ </FormControl>
538
+ <FormMessage />
539
+ <IsOverridden
540
+ userConfig={config}
541
+ name="diagnostics.enabled"
542
+ />
543
+ </FormItem>
544
+ )}
545
+ />
546
+ </SettingGroup>
547
+
548
+ <SettingGroup title="Keymap">
549
+ <FormField
550
+ control={form.control}
551
+ name="keymap.preset"
552
+ render={({ field }) => (
553
+ <div className="flex flex-col space-y-1">
554
+ <FormItem className={formItemClasses}>
555
+ <FormLabel>Keymap</FormLabel>
556
+ <FormControl>
557
+ <NativeSelect
558
+ data-testid="keymap-select"
559
+ onChange={(e) => field.onChange(e.target.value)}
560
+ value={field.value}
561
+ disabled={field.disabled}
562
+ className="inline-flex mr-2"
563
+ >
564
+ {KEYMAP_PRESETS.map((option) => (
565
+ <option value={option} key={option}>
566
+ {option}
567
+ </option>
568
+ ))}
569
+ </NativeSelect>
570
+ </FormControl>
571
+ <FormMessage />
572
+ <IsOverridden userConfig={config} name="keymap.preset" />
573
+ </FormItem>
574
+ </div>
575
+ )}
576
+ />
577
+ <FormField
578
+ control={form.control}
579
+ name="keymap.destructive_delete"
580
+ render={({ field }) => (
581
+ <div className="flex flex-col space-y-1">
582
+ <FormItem className={formItemClasses}>
583
+ <FormLabel className="font-normal">
584
+ Destructive delete
585
+ </FormLabel>
586
+ <FormControl>
587
+ <Checkbox
588
+ data-testid="destructive-delete-checkbox"
589
+ checked={field.value}
590
+ disabled={field.disabled}
591
+ onCheckedChange={(checked) => {
592
+ field.onChange(Boolean(checked));
593
+ }}
594
+ />
595
+ </FormControl>
596
+ <FormMessage />
597
+ <IsOverridden
598
+ userConfig={config}
599
+ name="keymap.destructive_delete"
600
+ />
601
+ </FormItem>
602
+ <FormDescription className="flex items-center gap-1">
603
+ Allow deleting non-empty cells
604
+ <Tooltip
605
+ content={
606
+ <div className="max-w-xs">
607
+ <strong>Use with caution:</strong> Deleting cells
608
+ with code can lose work and computed results since
609
+ variables are removed from memory.
610
+ </div>
611
+ }
612
+ >
613
+ <AlertTriangleIcon className="w-3 h-3 text-(--amber-11)" />
614
+ </Tooltip>
615
+ </FormDescription>
616
+
617
+ <div>
618
+ <Button
619
+ variant="link"
620
+ className="mb-0 px-0"
621
+ type="button"
622
+ onClick={(evt) => {
623
+ evt.preventDefault();
624
+ evt.stopPropagation();
625
+ setKeyboardShortcutsOpen(true);
626
+ }}
627
+ >
628
+ Edit Keyboard Shortcuts
629
+ </Button>
630
+ </div>
631
+ </div>
632
+ )}
633
+ />
634
+ </SettingGroup>
635
+ </>
636
+ );
637
+ case "display":
638
+ return (
639
+ <>
640
+ <SettingGroup title="Display">
641
+ <FormField
642
+ control={form.control}
643
+ name="display.default_width"
644
+ render={({ field }) => (
645
+ <div className="flex flex-col space-y-1">
646
+ <FormItem className={formItemClasses}>
647
+ <FormLabel>Default width</FormLabel>
648
+ <FormControl>
649
+ <NativeSelect
650
+ data-testid="user-config-width-select"
651
+ onChange={(e) => field.onChange(e.target.value)}
652
+ value={field.value}
653
+ disabled={field.disabled}
654
+ className="inline-flex mr-2"
655
+ >
656
+ {getAppWidths().map((option) => (
657
+ <option value={option} key={option}>
658
+ {option}
659
+ </option>
660
+ ))}
661
+ </NativeSelect>
662
+ </FormControl>
663
+ <FormMessage />
664
+ <IsOverridden
665
+ userConfig={config}
666
+ name="display.default_width"
667
+ />
668
+ </FormItem>
669
+
670
+ <FormDescription>
671
+ The default app width for new notebooks; overridden by
672
+ "width" in the application config.
673
+ </FormDescription>
674
+ </div>
675
+ )}
676
+ />
677
+ <FormField
678
+ control={form.control}
679
+ name="display.theme"
680
+ render={({ field }) => (
681
+ <div className="flex flex-col space-y-1">
682
+ <FormItem className={formItemClasses}>
683
+ <FormLabel>Theme</FormLabel>
684
+ <FormControl>
685
+ <NativeSelect
686
+ data-testid="theme-select"
687
+ onChange={(e) => field.onChange(e.target.value)}
688
+ value={field.value}
689
+ disabled={field.disabled}
690
+ className="inline-flex mr-2"
691
+ >
692
+ {THEMES.map((option) => (
693
+ <option value={option} key={option}>
694
+ {option}
695
+ </option>
696
+ ))}
697
+ </NativeSelect>
698
+ </FormControl>
699
+ <FormMessage />
700
+ <IsOverridden userConfig={config} name="display.theme" />
701
+ </FormItem>
702
+
703
+ <FormDescription>
704
+ This theme will be applied to the user's configuration; it
705
+ does not affect theme when sharing the notebook.
706
+ </FormDescription>
707
+ </div>
708
+ )}
709
+ />
710
+ <FormField
711
+ control={form.control}
712
+ name="display.code_editor_font_size"
713
+ render={({ field }) => (
714
+ <FormItem className={formItemClasses}>
715
+ <FormLabel>Code editor font size (px)</FormLabel>
716
+ <FormControl>
717
+ <span className="inline-flex mr-2">
718
+ <NumberField
719
+ data-testid="code-editor-font-size-input"
720
+ className="m-0 w-24"
721
+ {...field}
722
+ value={field.value}
723
+ minValue={8}
724
+ maxValue={32}
725
+ onChange={(value) => {
726
+ field.onChange(value);
727
+ onSubmit(form.getValues());
728
+ }}
729
+ />
730
+ </span>
731
+ </FormControl>
732
+ <FormMessage />
733
+ <IsOverridden
734
+ userConfig={config}
735
+ name="display.code_editor_font_size"
736
+ />
737
+ </FormItem>
738
+ )}
739
+ />
740
+ <FormField
741
+ control={form.control}
742
+ name="display.reference_highlighting"
743
+ render={({ field }) => (
744
+ <div className="flex flex-col space-y-1">
745
+ <FormItem className={formItemClasses}>
746
+ <FormLabel>Reference highlighting</FormLabel>
747
+ <FormControl>
748
+ <Checkbox
749
+ data-testid="reference-highlighting-checkbox"
750
+ checked={field.value}
751
+ onCheckedChange={field.onChange}
752
+ />
753
+ </FormControl>
754
+ <FormMessage />
755
+ <IsOverridden
756
+ userConfig={config}
757
+ name="display.reference_highlighting"
758
+ />
759
+ </FormItem>
760
+
761
+ <FormDescription>
762
+ Visually emphasizes variables in a cell that are defined
763
+ elsewhere in the notebook.
764
+ </FormDescription>
765
+ </div>
766
+ )}
767
+ />
768
+ </SettingGroup>
769
+ <SettingGroup title="Outputs">
770
+ <FormField
771
+ control={form.control}
772
+ name="display.cell_output"
773
+ render={({ field }) => (
774
+ <div className="flex flex-col space-y-1">
775
+ <FormItem className={formItemClasses}>
776
+ <FormLabel>Cell output area</FormLabel>
777
+ <FormControl>
778
+ <NativeSelect
779
+ data-testid="cell-output-select"
780
+ onChange={(e) => field.onChange(e.target.value)}
781
+ value={field.value}
782
+ disabled={field.disabled}
783
+ className="inline-flex mr-2"
784
+ >
785
+ {["above", "below"].map((option) => (
786
+ <option value={option} key={option}>
787
+ {option}
788
+ </option>
789
+ ))}
790
+ </NativeSelect>
791
+ </FormControl>
792
+ <FormMessage />
793
+ <IsOverridden
794
+ userConfig={config}
795
+ name="display.cell_output"
796
+ />
797
+ </FormItem>
798
+
799
+ <FormDescription>
800
+ Where to display cell's output.
801
+ </FormDescription>
802
+ </div>
803
+ )}
804
+ />
805
+ <FormField
806
+ control={form.control}
807
+ name="display.dataframes"
808
+ render={({ field }) => (
809
+ <div className="flex flex-col space-y-1">
810
+ <FormItem className={formItemClasses}>
811
+ <FormLabel>Dataframe viewer</FormLabel>
812
+ <FormControl>
813
+ <NativeSelect
814
+ data-testid="display-dataframes-select"
815
+ onChange={(e) => field.onChange(e.target.value)}
816
+ value={field.value}
817
+ disabled={field.disabled}
818
+ className="inline-flex mr-2"
819
+ >
820
+ {["rich", "plain"].map((option) => (
821
+ <option value={option} key={option}>
822
+ {option}
823
+ </option>
824
+ ))}
825
+ </NativeSelect>
826
+ </FormControl>
827
+ <FormMessage />
828
+ <IsOverridden
829
+ userConfig={config}
830
+ name="display.dataframes"
831
+ />
832
+ </FormItem>
833
+
834
+ <FormDescription>
835
+ Whether to use marimo's rich dataframe viewer or a plain
836
+ HTML table. This requires restarting your notebook to take
837
+ effect.
838
+ </FormDescription>
839
+ </div>
840
+ )}
841
+ />
842
+ <FormField
843
+ control={form.control}
844
+ name="display.default_table_page_size"
845
+ render={({ field }) => (
846
+ <div className="flex flex-col space-y-1">
847
+ <FormItem className={formItemClasses}>
848
+ <FormLabel>Default table page size</FormLabel>
849
+ <FormControl>
850
+ <NumberField
851
+ data-testid="default-table-page-size-input"
852
+ className="m-0 w-24"
853
+ {...field}
854
+ value={field.value}
855
+ minValue={1}
856
+ step={1}
857
+ onChange={(value) => {
858
+ field.onChange(value);
859
+ if (!Number.isNaN(value)) {
860
+ onSubmit(form.getValues());
861
+ }
862
+ }}
863
+ />
864
+ </FormControl>
865
+ <FormMessage />
866
+ <IsOverridden
867
+ userConfig={config}
868
+ name="display.default_table_page_size"
869
+ />
870
+ </FormItem>
871
+ <FormDescription>
872
+ The default number of rows displayed in dataframes and SQL
873
+ results.
874
+ </FormDescription>
875
+ </div>
876
+ )}
877
+ />
878
+ <FormField
879
+ control={form.control}
880
+ name="display.default_table_max_columns"
881
+ render={({ field }) => (
882
+ <div className="flex flex-col space-y-1">
883
+ <FormItem className={formItemClasses}>
884
+ <FormLabel>Default table max columns</FormLabel>
885
+ <FormControl>
886
+ <NumberField
887
+ data-testid="default-table-max-columns-input"
888
+ className="m-0 w-24"
889
+ {...field}
890
+ value={field.value}
891
+ minValue={1}
892
+ step={1}
893
+ onChange={(value) => {
894
+ field.onChange(value);
895
+ if (!Number.isNaN(value)) {
896
+ onSubmit(form.getValues());
897
+ }
898
+ }}
899
+ />
900
+ </FormControl>
901
+ <FormMessage />
902
+ <IsOverridden
903
+ userConfig={config}
904
+ name="display.default_table_max_columns"
905
+ />
906
+ </FormItem>
907
+ <FormDescription>
908
+ The default maximum number of columns displayed in
909
+ dataframes and SQL results.
910
+ </FormDescription>
911
+ </div>
912
+ )}
913
+ />
914
+ </SettingGroup>
915
+ </>
916
+ );
917
+ case "packageManagement":
918
+ return (
919
+ <SettingGroup title="Package Management">
920
+ <FormField
921
+ control={form.control}
922
+ disabled={isWasmRuntime}
923
+ name="package_management.manager"
924
+ render={({ field }) => (
925
+ <div className="flex flex-col space-y-1">
926
+ <FormItem className={formItemClasses}>
927
+ <FormLabel>Manager</FormLabel>
928
+ <FormControl>
929
+ <NativeSelect
930
+ data-testid="package-manager-select"
931
+ onChange={(e) => field.onChange(e.target.value)}
932
+ value={field.value}
933
+ disabled={field.disabled}
934
+ className="inline-flex mr-2"
935
+ >
936
+ {PackageManagerNames.map((option) => (
937
+ <option value={option} key={option}>
938
+ {option}
939
+ </option>
940
+ ))}
941
+ </NativeSelect>
942
+ </FormControl>
943
+ <FormMessage />
944
+ <IsOverridden
945
+ userConfig={config}
946
+ name="package_management.manager"
947
+ />
948
+ </FormItem>
949
+
950
+ <FormDescription>
951
+ When marimo comes across a module that is not installed, you
952
+ will be prompted to install it using your preferred package
953
+ manager. Learn more in the{" "}
954
+ <ExternalLink href="https://docs.marimo.io/guides/editor_features/package_management.html">
955
+ docs
956
+ </ExternalLink>
957
+ .
958
+ <br />
959
+ <br />
960
+ Running marimo in a{" "}
961
+ <ExternalLink href="https://docs.marimo.io/guides/editor_features/package_management.html#running-marimo-in-a-sandbox-environment-uv-only">
962
+ sandboxed environment
963
+ </ExternalLink>{" "}
964
+ is only supported by <Kbd className="inline">uv</Kbd>
965
+ </FormDescription>
966
+ </div>
967
+ )}
968
+ />
969
+ </SettingGroup>
970
+ );
971
+ case "runtime":
972
+ return (
973
+ <SettingGroup title="Runtime configuration">
974
+ <FormField
975
+ control={form.control}
976
+ name="runtime.auto_instantiate"
977
+ render={({ field }) => (
978
+ <div className="flex flex-col gap-y-1">
979
+ <FormItem className={formItemClasses}>
980
+ <FormLabel className="font-normal">
981
+ Autorun on startup
982
+ </FormLabel>
983
+ <FormControl>
984
+ <Checkbox
985
+ data-testid="auto-instantiate-checkbox"
986
+ disabled={field.disabled}
987
+ checked={field.value}
988
+ onCheckedChange={field.onChange}
989
+ />
990
+ </FormControl>
991
+ <FormMessage />
992
+ <IsOverridden
993
+ userConfig={config}
994
+ name="runtime.auto_instantiate"
995
+ />
996
+ </FormItem>
997
+
998
+ <FormDescription>
999
+ Whether to automatically run all cells on startup.
1000
+ </FormDescription>
1001
+ </div>
1002
+ )}
1003
+ />
1004
+ <FormField
1005
+ control={form.control}
1006
+ name="runtime.on_cell_change"
1007
+ render={({ field }) => (
1008
+ <div className="flex flex-col gap-y-1">
1009
+ <FormItem className={formItemClasses}>
1010
+ <FormLabel className="font-normal">
1011
+ On cell change
1012
+ </FormLabel>
1013
+ <FormControl>
1014
+ <NativeSelect
1015
+ data-testid="on-cell-change-select"
1016
+ onChange={(e) => field.onChange(e.target.value)}
1017
+ value={field.value}
1018
+ className="inline-flex mr-2"
1019
+ >
1020
+ {["lazy", "autorun"].map((option) => (
1021
+ <option value={option} key={option}>
1022
+ {option}
1023
+ </option>
1024
+ ))}
1025
+ </NativeSelect>
1026
+ </FormControl>
1027
+ <FormMessage />
1028
+ <IsOverridden
1029
+ userConfig={config}
1030
+ name="runtime.on_cell_change"
1031
+ />
1032
+ </FormItem>
1033
+ <FormDescription>
1034
+ Whether marimo should automatically run cells or just mark
1035
+ them as stale. If "autorun", marimo will automatically run
1036
+ affected cells when a cell is run or a UI element is
1037
+ interacted with; if "lazy", marimo will mark affected cells
1038
+ as stale but won't re-run them.
1039
+ </FormDescription>
1040
+ </div>
1041
+ )}
1042
+ />
1043
+ <FormField
1044
+ control={form.control}
1045
+ name="runtime.auto_reload"
1046
+ render={({ field }) => (
1047
+ <div className="flex flex-col gap-y-1">
1048
+ <FormItem className={formItemClasses}>
1049
+ <FormLabel className="font-normal">
1050
+ On module change
1051
+ </FormLabel>
1052
+ <FormControl>
1053
+ <NativeSelect
1054
+ data-testid="auto-reload-select"
1055
+ onChange={(e) => field.onChange(e.target.value)}
1056
+ value={field.value}
1057
+ disabled={isWasmRuntime}
1058
+ className="inline-flex mr-2"
1059
+ >
1060
+ {["off", "lazy", "autorun"].map((option) => (
1061
+ <option value={option} key={option}>
1062
+ {option}
1063
+ </option>
1064
+ ))}
1065
+ </NativeSelect>
1066
+ </FormControl>
1067
+ <FormMessage />
1068
+ <IsOverridden
1069
+ userConfig={config}
1070
+ name="runtime.auto_reload"
1071
+ />
1072
+ </FormItem>
1073
+ <FormDescription>
1074
+ Whether marimo should automatically reload modules before
1075
+ executing cells. If "lazy", marimo will mark cells affected
1076
+ by module modifications as stale; if "autorun", affected
1077
+ cells will be automatically re-run.
1078
+ </FormDescription>
1079
+ </div>
1080
+ )}
1081
+ />
1082
+
1083
+ <FormField
1084
+ control={form.control}
1085
+ name="runtime.default_sql_output"
1086
+ render={({ field }) => (
1087
+ <div className="flex flex-col space-y-1">
1088
+ <FormItem className={formItemClasses}>
1089
+ <FormLabel>Default SQL output</FormLabel>
1090
+ <FormControl>
1091
+ <NativeSelect
1092
+ data-testid="user-config-sql-output-select"
1093
+ onChange={(e) => field.onChange(e.target.value)}
1094
+ value={field.value}
1095
+ disabled={field.disabled}
1096
+ className="inline-flex mr-2"
1097
+ >
1098
+ {SQL_OUTPUT_SELECT_OPTIONS.map((option) => (
1099
+ <option value={option.value} key={option.value}>
1100
+ {option.label}
1101
+ </option>
1102
+ ))}
1103
+ </NativeSelect>
1104
+ </FormControl>
1105
+ <FormMessage />
1106
+ <IsOverridden
1107
+ userConfig={config}
1108
+ name="runtime.default_sql_output"
1109
+ />
1110
+ </FormItem>
1111
+
1112
+ <FormDescription>
1113
+ The default SQL output type for new notebooks; overridden by
1114
+ "sql_output" in the application config.
1115
+ </FormDescription>
1116
+ </div>
1117
+ )}
1118
+ />
1119
+
1120
+ <FormField
1121
+ control={form.control}
1122
+ name="runtime.reactive_tests"
1123
+ render={({ field }) => (
1124
+ <div className="flex flex-col gap-y-1">
1125
+ <FormItem className={formItemClasses}>
1126
+ <FormLabel className="font-normal">
1127
+ Autorun Unit Tests
1128
+ </FormLabel>
1129
+ <FormControl>
1130
+ <Checkbox
1131
+ data-testid="reactive-test-checkbox"
1132
+ checked={field.value}
1133
+ onCheckedChange={field.onChange}
1134
+ />
1135
+ </FormControl>
1136
+ </FormItem>
1137
+ <IsOverridden
1138
+ userConfig={config}
1139
+ name="runtime.reactive_tests"
1140
+ />
1141
+ <FormMessage />
1142
+ <FormDescription>
1143
+ Enable reactive pytest tests in notebook. When a cell
1144
+ contains only test functions (test_*) and classes (Test_*),
1145
+ marimo will automatically run them with pytest (requires
1146
+ notebook restart).
1147
+ </FormDescription>{" "}
1148
+ </div>
1149
+ )}
1150
+ />
1151
+
1152
+ <FormDescription>
1153
+ Learn more in the{" "}
1154
+ <ExternalLink href="https://docs.marimo.io/guides/reactivity/#configuring-how-marimo-runs-cells">
1155
+ docs
1156
+ </ExternalLink>
1157
+ .
1158
+ </FormDescription>
1159
+ </SettingGroup>
1160
+ );
1161
+ case "ai":
1162
+ return <AiConfig form={form} config={config} onSubmit={onSubmit} />;
1163
+ case "optionalDeps":
1164
+ return <OptionalFeatures />;
1165
+ case "labs":
1166
+ return (
1167
+ <SettingGroup title="Experimental Features">
1168
+ <p className="text-sm text-muted-secondary mb-4">
1169
+ ⚠️ These features are experimental and may require restarting your
1170
+ notebook to take effect.
1171
+ </p>
1172
+
1173
+ <FormField
1174
+ control={form.control}
1175
+ name="experimental.inline_ai_tooltip"
1176
+ render={({ field }) => (
1177
+ <div className="flex flex-col gap-y-1">
1178
+ <FormItem className={formItemClasses}>
1179
+ <FormLabel className="font-normal">
1180
+ AI Edit Tooltip
1181
+ </FormLabel>
1182
+ <FormControl>
1183
+ <Checkbox
1184
+ data-testid="inline-ai-checkbox"
1185
+ checked={field.value === true}
1186
+ onCheckedChange={field.onChange}
1187
+ />
1188
+ </FormControl>
1189
+ </FormItem>
1190
+ <FormDescription>
1191
+ Enable experimental "Edit with AI" tooltip when selecting
1192
+ code.
1193
+ </FormDescription>
1194
+ </div>
1195
+ )}
1196
+ />
1197
+ <FormField
1198
+ control={form.control}
1199
+ name="experimental.rtc_v2"
1200
+ render={({ field }) => (
1201
+ <div className="flex flex-col gap-y-1">
1202
+ <FormItem className={formItemClasses}>
1203
+ <FormLabel className="font-normal">
1204
+ Real-Time Collaboration
1205
+ </FormLabel>
1206
+ <FormControl>
1207
+ <Checkbox
1208
+ data-testid="rtc-checkbox"
1209
+ checked={field.value === true}
1210
+ onCheckedChange={field.onChange}
1211
+ />
1212
+ </FormControl>
1213
+ </FormItem>
1214
+
1215
+ <FormDescription>
1216
+ Enable experimental real-time collaboration. This change
1217
+ requires a page refresh to take effect.
1218
+ </FormDescription>
1219
+ </div>
1220
+ )}
1221
+ />
1222
+ <FormField
1223
+ control={form.control}
1224
+ name="experimental.performant_table_charts"
1225
+ render={({ field }) => (
1226
+ <div className="flex flex-col gap-y-1">
1227
+ <FormItem className={formItemClasses}>
1228
+ <FormLabel className="font-normal">
1229
+ Performant Table Charts
1230
+ </FormLabel>
1231
+ <FormControl>
1232
+ <Checkbox
1233
+ data-testid="performant-table-charts-checkbox"
1234
+ checked={field.value === true}
1235
+ onCheckedChange={field.onChange}
1236
+ />
1237
+ </FormControl>
1238
+ </FormItem>
1239
+ <IsOverridden
1240
+ userConfig={config}
1241
+ name="experimental.performant_table_charts"
1242
+ />
1243
+ <FormDescription>
1244
+ Enable experimental table charts which are computed on the
1245
+ backend.
1246
+ </FormDescription>
1247
+ </div>
1248
+ )}
1249
+ />
1250
+ </SettingGroup>
1251
+ );
1252
+ }
1253
+ };
1254
+
1255
+ const configMessage = (
1256
+ <p className="text-muted-secondary">
1257
+ User configuration is stored in <Kbd className="inline">marimo.toml</Kbd>
1258
+ <br />
1259
+ Run <Kbd className="inline">marimo config show</Kbd> in your terminal to
1260
+ show your current configuration and file location.
1261
+ </p>
1262
+ );
1263
+
1264
+ return (
1265
+ <Form {...form}>
1266
+ <form
1267
+ ref={formElement}
1268
+ onChange={form.handleSubmit(onSubmit)}
1269
+ className="flex text-pretty overflow-hidden"
1270
+ >
1271
+ <Tabs
1272
+ value={activeCategory}
1273
+ onValueChange={(value) =>
1274
+ setActiveCategory(value as SettingCategoryId)
1275
+ }
1276
+ orientation="vertical"
1277
+ className="w-1/3 border-r h-full overflow-auto p-3"
1278
+ >
1279
+ <TabsList className="self-start max-h-none flex flex-col gap-2 shrink-0 bg-background flex-1 min-h-full">
1280
+ {categories.map((category) => (
1281
+ <TabsTrigger
1282
+ key={category.id}
1283
+ value={category.id}
1284
+ className="w-full text-left p-2 data-[state=active]:bg-primary data-[state=active]:text-primary-foreground justify-start"
1285
+ >
1286
+ <div className="flex gap-4 items-center text-lg overflow-hidden">
1287
+ <span
1288
+ className={cn(
1289
+ category.className,
1290
+ "w-8 h-8 rounded flex items-center justify-center text-muted-foreground shrink-0",
1291
+ )}
1292
+ >
1293
+ <category.Icon className="w-4 h-4" />
1294
+ </span>
1295
+ <span className="truncate">{category.label}</span>
1296
+ </div>
1297
+ </TabsTrigger>
1298
+ ))}
1299
+
1300
+ <div className="p-2 text-xs text-muted-foreground self-start">
1301
+ <span>Version: {marimoVersion}</span>
1302
+ </div>
1303
+
1304
+ <div className="flex-1" />
1305
+ {!isWasm() && configMessage}
1306
+ </TabsList>
1307
+ </Tabs>
1308
+ <div className="w-2/3 pl-6 gap-2 flex flex-col overflow-auto p-6">
1309
+ {renderBody()}
1310
+ </div>
1311
+ </form>
1312
+ </Form>
1313
+ );
1314
+ };
1315
+
1316
+ const SettingGroup = ({
1317
+ title,
1318
+ children,
1319
+ }: {
1320
+ title: string;
1321
+ children: React.ReactNode;
1322
+ }) => {
1323
+ return (
1324
+ <div className="flex flex-col gap-4 pb-4">
1325
+ <SettingSubtitle>{title}</SettingSubtitle>
1326
+ {children}
1327
+ </div>
1328
+ );
1329
+ };