@rebasepro/studio 0.0.1-canary.3263433 → 0.0.1-canary.4829d6e

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 (399) hide show
  1. package/LICENSE +17 -109
  2. package/README.md +73 -140
  3. package/dist/ApiExplorer-B9M9-uy_.js +963 -0
  4. package/dist/ApiExplorer-B9M9-uy_.js.map +1 -0
  5. package/dist/ApiKeysView-Dbe5cXkS.js +684 -0
  6. package/dist/ApiKeysView-Dbe5cXkS.js.map +1 -0
  7. package/dist/AuthSimulationSelector-Bougd521.js +56 -0
  8. package/dist/AuthSimulationSelector-Bougd521.js.map +1 -0
  9. package/dist/BackupsView-DNS6LdVg.js +227 -0
  10. package/dist/BackupsView-DNS6LdVg.js.map +1 -0
  11. package/dist/BranchesView-DH0qnU9J.js +460 -0
  12. package/dist/BranchesView-DH0qnU9J.js.map +1 -0
  13. package/dist/CronJobsView-B59i3Mis.js +500 -0
  14. package/dist/CronJobsView-B59i3Mis.js.map +1 -0
  15. package/dist/JSEditor-Etgw9-Cw.js +1569 -0
  16. package/dist/JSEditor-Etgw9-Cw.js.map +1 -0
  17. package/dist/LogsExplorer-J4xfsuv3.js +206 -0
  18. package/dist/LogsExplorer-J4xfsuv3.js.map +1 -0
  19. package/dist/MonacoEditor-D0_QljcX.js +246 -0
  20. package/dist/MonacoEditor-D0_QljcX.js.map +1 -0
  21. package/dist/RLSEditor-Cgv_kUVW.js +1546 -0
  22. package/dist/RLSEditor-Cgv_kUVW.js.map +1 -0
  23. package/dist/SQLEditor-ZZsy1Mk6.js +1964 -0
  24. package/dist/SQLEditor-ZZsy1Mk6.js.map +1 -0
  25. package/dist/SchemaVisualizer-D01DzU-f.js +1068 -0
  26. package/dist/SchemaVisualizer-D01DzU-f.js.map +1 -0
  27. package/dist/StorageView-UvyM2xdW.js +1423 -0
  28. package/dist/StorageView-UvyM2xdW.js.map +1 -0
  29. package/dist/{studio/src/components → components}/ApiExplorer/ApiExplorer.d.ts +2 -1
  30. package/dist/{studio/src/components → components}/ApiExplorer/EndpointDetail.d.ts +2 -1
  31. package/dist/{studio/src/components → components}/ApiExplorer/TryItPanel.d.ts +2 -1
  32. package/dist/{studio/src/components → components}/ApiExplorer/parseSpec.d.ts +1 -1
  33. package/dist/{studio/src/components → components}/ApiExplorer/types.d.ts +3 -3
  34. package/dist/components/ApiKeys/ApiKeysView.d.ts +2 -0
  35. package/dist/{studio/src/components → components}/AuthSimulationSelector.d.ts +3 -2
  36. package/dist/components/Backups/BackupsView.d.ts +2 -0
  37. package/dist/components/Branches/BranchesView.d.ts +2 -0
  38. package/dist/components/CronJobs/CronJobsView.d.ts +2 -0
  39. package/dist/components/JSEditor/JSEditor.d.ts +2 -0
  40. package/dist/{studio/src/components → components}/JSEditor/JSEditorSidebar.d.ts +2 -1
  41. package/dist/{studio/src/components → components}/JSEditor/JSMonacoEditor.d.ts +2 -1
  42. package/dist/components/LogsExplorer/LogsExplorer.d.ts +2 -0
  43. package/dist/{studio/src/components → components}/RLSEditor/PolicyEditor.d.ts +2 -1
  44. package/dist/{studio/src/components → components}/RLSEditor/RLSEditor.d.ts +2 -7
  45. package/dist/{studio/src/components → components}/SQLEditor/MonacoEditor.d.ts +2 -1
  46. package/dist/{studio/src/components → components}/SQLEditor/SQLEditor.d.ts +2 -1
  47. package/dist/{studio/src/components → components}/SQLEditor/SQLEditorSidebar.d.ts +2 -1
  48. package/dist/{studio/src/components → components}/SQLEditor/SchemaBrowser.d.ts +2 -1
  49. package/dist/{studio/src/components → components}/SchemaVisualizer/RelationEdge.d.ts +1 -1
  50. package/dist/components/SchemaVisualizer/SchemaVisualizer.d.ts +3 -0
  51. package/dist/{studio/src/components → components}/SchemaVisualizer/TableNode.d.ts +1 -1
  52. package/dist/{studio/src/components → components}/SchemaVisualizer/schema-visualizer.utils.d.ts +0 -8
  53. package/dist/{studio/src/components → components}/SchemaVisualizer/useSchemaGraph.d.ts +2 -2
  54. package/dist/components/StorageView/StorageView.d.ts +2 -0
  55. package/dist/{studio/src/components → components}/StudioHomePage.d.ts +1 -1
  56. package/dist/{studio/src/index.d.ts → index.d.ts} +2 -2
  57. package/dist/index.es.js +744 -720
  58. package/dist/index.es.js.map +1 -1
  59. package/dist/index.umd.js +11478 -9395
  60. package/dist/index.umd.js.map +1 -1
  61. package/dist/utils/pgColumnToProperty.d.ts +6 -0
  62. package/dist/{studio/src/utils → utils}/sql_utils.d.ts +3 -3
  63. package/package.json +32 -24
  64. package/src/components/ApiExplorer/ApiExplorer.tsx +4 -4
  65. package/src/components/ApiExplorer/EndpointDetail.tsx +11 -3
  66. package/src/components/ApiExplorer/TryItPanel.tsx +38 -30
  67. package/src/components/ApiExplorer/parseSpec.ts +3 -3
  68. package/src/components/ApiExplorer/types.ts +3 -3
  69. package/src/components/ApiKeys/ApiKeysView.tsx +580 -0
  70. package/src/components/AuthSimulationSelector.tsx +2 -3
  71. package/src/components/Backups/BackupsView.tsx +185 -0
  72. package/src/components/Branches/BranchesView.tsx +28 -7
  73. package/src/components/CronJobs/CronJobsView.tsx +48 -6
  74. package/src/components/JSEditor/JSEditor.tsx +76 -47
  75. package/src/components/JSEditor/JSEditorSidebar.tsx +15 -5
  76. package/src/components/JSEditor/JSMonacoEditor.tsx +46 -50
  77. package/src/components/LogsExplorer/LogsExplorer.tsx +189 -0
  78. package/src/components/RLSEditor/PolicyEditor.tsx +21 -4
  79. package/src/components/RLSEditor/RLSEditor.tsx +394 -150
  80. package/src/components/RebaseStudio.tsx +30 -3
  81. package/src/components/SQLEditor/MonacoEditor.tsx +1 -1
  82. package/src/components/SQLEditor/SQLEditor.tsx +180 -93
  83. package/src/components/SQLEditor/SQLEditorSidebar.tsx +2 -3
  84. package/src/components/SQLEditor/SchemaBrowser.tsx +18 -6
  85. package/src/components/SchemaVisualizer/SchemaVisualizer.tsx +8 -8
  86. package/src/components/SchemaVisualizer/TableNode.tsx +1 -1
  87. package/src/components/SchemaVisualizer/schema-visualizer.utils.ts +3 -3
  88. package/src/components/SchemaVisualizer/useSchemaGraph.ts +13 -13
  89. package/src/components/StorageView/StorageView.tsx +107 -20
  90. package/src/components/StudioHomePage.tsx +196 -98
  91. package/src/index.ts +4 -4
  92. package/src/utils/parseSpec.test.ts +295 -0
  93. package/src/utils/pgColumnToProperty.test.ts +1 -0
  94. package/src/utils/pgColumnToProperty.ts +54 -20
  95. package/src/utils/sql_utils.test.ts +6 -6
  96. package/src/utils/sql_utils.ts +4 -4
  97. package/dist/ApiExplorer-DHVmWYfK.js +0 -1053
  98. package/dist/ApiExplorer-DHVmWYfK.js.map +0 -1
  99. package/dist/AuthSimulationSelector-CM488Eei.js +0 -106
  100. package/dist/AuthSimulationSelector-CM488Eei.js.map +0 -1
  101. package/dist/BranchesView-DcHZtvXo.js +0 -292
  102. package/dist/BranchesView-DcHZtvXo.js.map +0 -1
  103. package/dist/CronJobsView-CijCToeK.js +0 -456
  104. package/dist/CronJobsView-CijCToeK.js.map +0 -1
  105. package/dist/JSEditor-CSHA0t_O.js +0 -1308
  106. package/dist/JSEditor-CSHA0t_O.js.map +0 -1
  107. package/dist/MonacoEditor-CMYEjiRf.js +0 -161
  108. package/dist/MonacoEditor-CMYEjiRf.js.map +0 -1
  109. package/dist/RLSEditor-BzDjqo6w.js +0 -1872
  110. package/dist/RLSEditor-BzDjqo6w.js.map +0 -1
  111. package/dist/SQLEditor-Cr9Kg_Qg.js +0 -1780
  112. package/dist/SQLEditor-Cr9Kg_Qg.js.map +0 -1
  113. package/dist/SchemaVisualizer-BGpmzyXT.js +0 -1069
  114. package/dist/SchemaVisualizer-BGpmzyXT.js.map +0 -1
  115. package/dist/StorageView-BYoslzBR.js +0 -870
  116. package/dist/StorageView-BYoslzBR.js.map +0 -1
  117. package/dist/common/src/collections/CollectionRegistry.d.ts +0 -56
  118. package/dist/common/src/collections/index.d.ts +0 -1
  119. package/dist/common/src/data/buildRebaseData.d.ts +0 -14
  120. package/dist/common/src/index.d.ts +0 -3
  121. package/dist/common/src/util/builders.d.ts +0 -57
  122. package/dist/common/src/util/callbacks.d.ts +0 -6
  123. package/dist/common/src/util/collections.d.ts +0 -11
  124. package/dist/common/src/util/common.d.ts +0 -2
  125. package/dist/common/src/util/conditions.d.ts +0 -26
  126. package/dist/common/src/util/entities.d.ts +0 -58
  127. package/dist/common/src/util/enums.d.ts +0 -3
  128. package/dist/common/src/util/index.d.ts +0 -16
  129. package/dist/common/src/util/navigation_from_path.d.ts +0 -34
  130. package/dist/common/src/util/navigation_utils.d.ts +0 -20
  131. package/dist/common/src/util/parent_references_from_path.d.ts +0 -6
  132. package/dist/common/src/util/paths.d.ts +0 -14
  133. package/dist/common/src/util/permissions.d.ts +0 -5
  134. package/dist/common/src/util/references.d.ts +0 -2
  135. package/dist/common/src/util/relations.d.ts +0 -22
  136. package/dist/common/src/util/resolutions.d.ts +0 -72
  137. package/dist/common/src/util/storage.d.ts +0 -24
  138. package/dist/core/src/components/AIIcon.d.ts +0 -16
  139. package/dist/core/src/components/ConfirmationDialog.d.ts +0 -9
  140. package/dist/core/src/components/Debug/UIReferenceView.d.ts +0 -1
  141. package/dist/core/src/components/Debug/UIStyleGuide.d.ts +0 -1
  142. package/dist/core/src/components/ErrorTooltip.d.ts +0 -2
  143. package/dist/core/src/components/ErrorView.d.ts +0 -21
  144. package/dist/core/src/components/LanguageToggle.d.ts +0 -1
  145. package/dist/core/src/components/LoginView/LoginView.d.ts +0 -68
  146. package/dist/core/src/components/LoginView/index.d.ts +0 -2
  147. package/dist/core/src/components/NotFoundPage.d.ts +0 -1
  148. package/dist/core/src/components/RebaseAuth.d.ts +0 -10
  149. package/dist/core/src/components/RebaseLogo.d.ts +0 -7
  150. package/dist/core/src/components/UnsavedChangesDialog.d.ts +0 -9
  151. package/dist/core/src/components/UserDisplay.d.ts +0 -7
  152. package/dist/core/src/components/UserSelectPopover.d.ts +0 -62
  153. package/dist/core/src/components/UserSettingsView.d.ts +0 -1
  154. package/dist/core/src/components/common/index.d.ts +0 -6
  155. package/dist/core/src/components/common/table_height.d.ts +0 -5
  156. package/dist/core/src/components/common/types.d.ts +0 -63
  157. package/dist/core/src/components/common/useColumnsIds.d.ts +0 -9
  158. package/dist/core/src/components/common/useDataTableController.d.ts +0 -45
  159. package/dist/core/src/components/common/useDebouncedData.d.ts +0 -9
  160. package/dist/core/src/components/common/useScrollRestoration.d.ts +0 -14
  161. package/dist/core/src/components/index.d.ts +0 -16
  162. package/dist/core/src/contexts/AdminModeController.d.ts +0 -4
  163. package/dist/core/src/contexts/AnalyticsContext.d.ts +0 -3
  164. package/dist/core/src/contexts/AuthControllerContext.d.ts +0 -3
  165. package/dist/core/src/contexts/CustomizationControllerContext.d.ts +0 -3
  166. package/dist/core/src/contexts/DataDriverContext.d.ts +0 -3
  167. package/dist/core/src/contexts/DatabaseAdminContext.d.ts +0 -3
  168. package/dist/core/src/contexts/DialogsProvider.d.ts +0 -4
  169. package/dist/core/src/contexts/EffectiveRoleController.d.ts +0 -4
  170. package/dist/core/src/contexts/InternalUserManagementContext.d.ts +0 -3
  171. package/dist/core/src/contexts/ModeController.d.ts +0 -4
  172. package/dist/core/src/contexts/RebaseClientInstanceContext.d.ts +0 -6
  173. package/dist/core/src/contexts/RebaseDataContext.d.ts +0 -3
  174. package/dist/core/src/contexts/SnackbarProvider.d.ts +0 -2
  175. package/dist/core/src/contexts/StorageSourceContext.d.ts +0 -3
  176. package/dist/core/src/contexts/UserConfigurationPersistenceContext.d.ts +0 -3
  177. package/dist/core/src/contexts/index.d.ts +0 -13
  178. package/dist/core/src/core/PluginLifecycleManager.d.ts +0 -17
  179. package/dist/core/src/core/PluginProviderStack.d.ts +0 -21
  180. package/dist/core/src/core/Rebase.d.ts +0 -14
  181. package/dist/core/src/core/RebaseProps.d.ts +0 -136
  182. package/dist/core/src/core/RebaseRouter.d.ts +0 -4
  183. package/dist/core/src/core/RebaseRoutes.d.ts +0 -17
  184. package/dist/core/src/core/index.d.ts +0 -4
  185. package/dist/core/src/hooks/ApiConfigContext.d.ts +0 -24
  186. package/dist/core/src/hooks/data/delete.d.ts +0 -31
  187. package/dist/core/src/hooks/data/save.d.ts +0 -34
  188. package/dist/core/src/hooks/data/useCollectionFetch.d.ts +0 -51
  189. package/dist/core/src/hooks/data/useData.d.ts +0 -13
  190. package/dist/core/src/hooks/data/useDataOrder.d.ts +0 -12
  191. package/dist/core/src/hooks/data/useEntityFetch.d.ts +0 -38
  192. package/dist/core/src/hooks/data/useRelationSelector.d.ts +0 -52
  193. package/dist/core/src/hooks/data/useUserSelector.d.ts +0 -31
  194. package/dist/core/src/hooks/index.d.ts +0 -37
  195. package/dist/core/src/hooks/useAdminModeController.d.ts +0 -19
  196. package/dist/core/src/hooks/useAnalyticsController.d.ts +0 -5
  197. package/dist/core/src/hooks/useAuthController.d.ts +0 -11
  198. package/dist/core/src/hooks/useAuthSubscription.d.ts +0 -2
  199. package/dist/core/src/hooks/useBackendStorageSource.d.ts +0 -30
  200. package/dist/core/src/hooks/useBridgeRegistration.d.ts +0 -18
  201. package/dist/core/src/hooks/useBrowserTitleAndIcon.d.ts +0 -6
  202. package/dist/core/src/hooks/useBuildAdminModeController.d.ts +0 -6
  203. package/dist/core/src/hooks/useBuildEffectiveRoleController.d.ts +0 -8
  204. package/dist/core/src/hooks/useBuildLocalConfigurationPersistence.d.ts +0 -2
  205. package/dist/core/src/hooks/useBuildModeController.d.ts +0 -6
  206. package/dist/core/src/hooks/useClipboard.d.ts +0 -57
  207. package/dist/core/src/hooks/useCollapsedGroups.d.ts +0 -12
  208. package/dist/core/src/hooks/useCustomizationController.d.ts +0 -11
  209. package/dist/core/src/hooks/useDialogsController.d.ts +0 -11
  210. package/dist/core/src/hooks/useEffectiveRoleController.d.ts +0 -7
  211. package/dist/core/src/hooks/useInternalUserManagementController.d.ts +0 -12
  212. package/dist/core/src/hooks/useLargeLayout.d.ts +0 -1
  213. package/dist/core/src/hooks/useModeController.d.ts +0 -19
  214. package/dist/core/src/hooks/usePermissions.d.ts +0 -12
  215. package/dist/core/src/hooks/useRebaseClient.d.ts +0 -5
  216. package/dist/core/src/hooks/useRebaseContext.d.ts +0 -11
  217. package/dist/core/src/hooks/useRebaseRegistry.d.ts +0 -34
  218. package/dist/core/src/hooks/useSlot.d.ts +0 -18
  219. package/dist/core/src/hooks/useSnackbarController.d.ts +0 -20
  220. package/dist/core/src/hooks/useStorageSource.d.ts +0 -7
  221. package/dist/core/src/hooks/useStudioBridge.d.ts +0 -91
  222. package/dist/core/src/hooks/useTranslation.d.ts +0 -17
  223. package/dist/core/src/hooks/useUnsavedChangesDialog.d.ts +0 -12
  224. package/dist/core/src/hooks/useUserConfigurationPersistence.d.ts +0 -8
  225. package/dist/core/src/hooks/useValidateAuthenticator.d.ts +0 -21
  226. package/dist/core/src/i18n/RebaseI18nProvider.d.ts +0 -33
  227. package/dist/core/src/index.d.ts +0 -15
  228. package/dist/core/src/internal/common.d.ts +0 -3
  229. package/dist/core/src/internal/useRestoreScroll.d.ts +0 -6
  230. package/dist/core/src/locales/de.d.ts +0 -2
  231. package/dist/core/src/locales/en.d.ts +0 -10
  232. package/dist/core/src/locales/es.d.ts +0 -10
  233. package/dist/core/src/locales/fr.d.ts +0 -2
  234. package/dist/core/src/locales/hi.d.ts +0 -2
  235. package/dist/core/src/locales/it.d.ts +0 -2
  236. package/dist/core/src/locales/pt.d.ts +0 -7
  237. package/dist/core/src/util/constants.d.ts +0 -1
  238. package/dist/core/src/util/createFormexStub.d.ts +0 -2
  239. package/dist/core/src/util/entity_cache.d.ts +0 -27
  240. package/dist/core/src/util/enums.d.ts +0 -5
  241. package/dist/core/src/util/icon_list.d.ts +0 -5
  242. package/dist/core/src/util/icon_synonyms.d.ts +0 -1
  243. package/dist/core/src/util/icons.d.ts +0 -20
  244. package/dist/core/src/util/index.d.ts +0 -10
  245. package/dist/core/src/util/previews.d.ts +0 -4
  246. package/dist/core/src/util/useStorageUploadController.d.ts +0 -38
  247. package/dist/core/src/util/useTraceUpdate.d.ts +0 -2
  248. package/dist/formex/src/Field.d.ts +0 -52
  249. package/dist/formex/src/Formex.d.ts +0 -7
  250. package/dist/formex/src/index.d.ts +0 -5
  251. package/dist/formex/src/types.d.ts +0 -40
  252. package/dist/formex/src/useCreateFormex.d.ts +0 -14
  253. package/dist/formex/src/utils.d.ts +0 -16
  254. package/dist/studio/src/components/Branches/BranchesView.d.ts +0 -1
  255. package/dist/studio/src/components/CronJobs/CronJobsView.d.ts +0 -1
  256. package/dist/studio/src/components/JSEditor/JSEditor.d.ts +0 -1
  257. package/dist/studio/src/components/SchemaVisualizer/SchemaVisualizer.d.ts +0 -2
  258. package/dist/studio/src/components/SchemaVisualizer/index.d.ts +0 -5
  259. package/dist/studio/src/components/StorageView/StorageView.d.ts +0 -1
  260. package/dist/studio/src/utils/entities.d.ts +0 -0
  261. package/dist/studio/src/utils/pgColumnToProperty.d.ts +0 -6
  262. package/dist/types/src/controllers/analytics_controller.d.ts +0 -7
  263. package/dist/types/src/controllers/auth.d.ts +0 -119
  264. package/dist/types/src/controllers/client.d.ts +0 -170
  265. package/dist/types/src/controllers/collection_registry.d.ts +0 -46
  266. package/dist/types/src/controllers/customization_controller.d.ts +0 -60
  267. package/dist/types/src/controllers/data.d.ts +0 -168
  268. package/dist/types/src/controllers/data_driver.d.ts +0 -195
  269. package/dist/types/src/controllers/database_admin.d.ts +0 -11
  270. package/dist/types/src/controllers/dialogs_controller.d.ts +0 -36
  271. package/dist/types/src/controllers/effective_role.d.ts +0 -4
  272. package/dist/types/src/controllers/email.d.ts +0 -34
  273. package/dist/types/src/controllers/index.d.ts +0 -18
  274. package/dist/types/src/controllers/local_config_persistence.d.ts +0 -20
  275. package/dist/types/src/controllers/navigation.d.ts +0 -213
  276. package/dist/types/src/controllers/registry.d.ts +0 -54
  277. package/dist/types/src/controllers/side_dialogs_controller.d.ts +0 -67
  278. package/dist/types/src/controllers/side_entity_controller.d.ts +0 -90
  279. package/dist/types/src/controllers/snackbar.d.ts +0 -24
  280. package/dist/types/src/controllers/storage.d.ts +0 -171
  281. package/dist/types/src/index.d.ts +0 -4
  282. package/dist/types/src/rebase_context.d.ts +0 -105
  283. package/dist/types/src/types/backend.d.ts +0 -536
  284. package/dist/types/src/types/backend_hooks.d.ts +0 -187
  285. package/dist/types/src/types/builders.d.ts +0 -15
  286. package/dist/types/src/types/chips.d.ts +0 -5
  287. package/dist/types/src/types/collections.d.ts +0 -857
  288. package/dist/types/src/types/cron.d.ts +0 -102
  289. package/dist/types/src/types/data_source.d.ts +0 -64
  290. package/dist/types/src/types/entities.d.ts +0 -145
  291. package/dist/types/src/types/entity_actions.d.ts +0 -98
  292. package/dist/types/src/types/entity_callbacks.d.ts +0 -173
  293. package/dist/types/src/types/entity_link_builder.d.ts +0 -7
  294. package/dist/types/src/types/entity_overrides.d.ts +0 -10
  295. package/dist/types/src/types/entity_views.d.ts +0 -59
  296. package/dist/types/src/types/export_import.d.ts +0 -21
  297. package/dist/types/src/types/formex.d.ts +0 -40
  298. package/dist/types/src/types/index.d.ts +0 -25
  299. package/dist/types/src/types/locales.d.ts +0 -4
  300. package/dist/types/src/types/modify_collections.d.ts +0 -5
  301. package/dist/types/src/types/plugins.d.ts +0 -282
  302. package/dist/types/src/types/properties.d.ts +0 -1148
  303. package/dist/types/src/types/property_config.d.ts +0 -70
  304. package/dist/types/src/types/relations.d.ts +0 -336
  305. package/dist/types/src/types/slots.d.ts +0 -262
  306. package/dist/types/src/types/translations.d.ts +0 -874
  307. package/dist/types/src/types/user_management_delegate.d.ts +0 -121
  308. package/dist/types/src/types/websockets.d.ts +0 -78
  309. package/dist/types/src/users/index.d.ts +0 -2
  310. package/dist/types/src/users/roles.d.ts +0 -22
  311. package/dist/types/src/users/user.d.ts +0 -46
  312. package/dist/ui/src/components/Alert.d.ts +0 -12
  313. package/dist/ui/src/components/Autocomplete.d.ts +0 -21
  314. package/dist/ui/src/components/Avatar.d.ts +0 -11
  315. package/dist/ui/src/components/Badge.d.ts +0 -8
  316. package/dist/ui/src/components/BooleanSwitch.d.ts +0 -14
  317. package/dist/ui/src/components/BooleanSwitchWithLabel.d.ts +0 -17
  318. package/dist/ui/src/components/Button.d.ts +0 -14
  319. package/dist/ui/src/components/Card.d.ts +0 -9
  320. package/dist/ui/src/components/CenteredView.d.ts +0 -9
  321. package/dist/ui/src/components/Checkbox.d.ts +0 -13
  322. package/dist/ui/src/components/Chip.d.ts +0 -26
  323. package/dist/ui/src/components/CircularProgress.d.ts +0 -5
  324. package/dist/ui/src/components/CircularProgressCenter.d.ts +0 -11
  325. package/dist/ui/src/components/Collapse.d.ts +0 -9
  326. package/dist/ui/src/components/ColorPicker.d.ts +0 -30
  327. package/dist/ui/src/components/Container.d.ts +0 -8
  328. package/dist/ui/src/components/DateTimeField.d.ts +0 -24
  329. package/dist/ui/src/components/DebouncedTextField.d.ts +0 -2
  330. package/dist/ui/src/components/Dialog.d.ts +0 -39
  331. package/dist/ui/src/components/DialogActions.d.ts +0 -7
  332. package/dist/ui/src/components/DialogContent.d.ts +0 -7
  333. package/dist/ui/src/components/DialogTitle.d.ts +0 -10
  334. package/dist/ui/src/components/ErrorBoundary.d.ts +0 -11
  335. package/dist/ui/src/components/ExpandablePanel.d.ts +0 -12
  336. package/dist/ui/src/components/FileUpload.d.ts +0 -23
  337. package/dist/ui/src/components/IconButton.d.ts +0 -12
  338. package/dist/ui/src/components/InfoLabel.d.ts +0 -5
  339. package/dist/ui/src/components/InputLabel.d.ts +0 -11
  340. package/dist/ui/src/components/Label.d.ts +0 -7
  341. package/dist/ui/src/components/LoadingButton.d.ts +0 -7
  342. package/dist/ui/src/components/Markdown.d.ts +0 -10
  343. package/dist/ui/src/components/Menu.d.ts +0 -23
  344. package/dist/ui/src/components/Menubar.d.ts +0 -80
  345. package/dist/ui/src/components/MultiSelect.d.ts +0 -48
  346. package/dist/ui/src/components/Paper.d.ts +0 -6
  347. package/dist/ui/src/components/Popover.d.ts +0 -24
  348. package/dist/ui/src/components/RadioGroup.d.ts +0 -28
  349. package/dist/ui/src/components/ResizablePanels.d.ts +0 -18
  350. package/dist/ui/src/components/SearchBar.d.ts +0 -22
  351. package/dist/ui/src/components/Select.d.ts +0 -43
  352. package/dist/ui/src/components/Separator.d.ts +0 -5
  353. package/dist/ui/src/components/Sheet.d.ts +0 -22
  354. package/dist/ui/src/components/Skeleton.d.ts +0 -6
  355. package/dist/ui/src/components/Slider.d.ts +0 -21
  356. package/dist/ui/src/components/Table.d.ts +0 -34
  357. package/dist/ui/src/components/Tabs.d.ts +0 -19
  358. package/dist/ui/src/components/TextField.d.ts +0 -58
  359. package/dist/ui/src/components/TextareaAutosize.d.ts +0 -43
  360. package/dist/ui/src/components/ToggleButtonGroup.d.ts +0 -30
  361. package/dist/ui/src/components/Tooltip.d.ts +0 -19
  362. package/dist/ui/src/components/Typography.d.ts +0 -36
  363. package/dist/ui/src/components/VirtualTable/VirtualTable.d.ts +0 -11
  364. package/dist/ui/src/components/VirtualTable/VirtualTableCell.d.ts +0 -21
  365. package/dist/ui/src/components/VirtualTable/VirtualTableHeader.d.ts +0 -29
  366. package/dist/ui/src/components/VirtualTable/VirtualTableHeaderRow.d.ts +0 -2
  367. package/dist/ui/src/components/VirtualTable/VirtualTableProps.d.ts +0 -243
  368. package/dist/ui/src/components/VirtualTable/VirtualTableRow.d.ts +0 -3
  369. package/dist/ui/src/components/VirtualTable/index.d.ts +0 -3
  370. package/dist/ui/src/components/VirtualTable/types.d.ts +0 -38
  371. package/dist/ui/src/components/common/SelectInputLabel.d.ts +0 -5
  372. package/dist/ui/src/components/index.d.ts +0 -53
  373. package/dist/ui/src/hooks/PortalContainerContext.d.ts +0 -31
  374. package/dist/ui/src/hooks/index.d.ts +0 -6
  375. package/dist/ui/src/hooks/useDebounceCallback.d.ts +0 -1
  376. package/dist/ui/src/hooks/useDebounceValue.d.ts +0 -1
  377. package/dist/ui/src/hooks/useDebouncedCallback.d.ts +0 -1
  378. package/dist/ui/src/hooks/useInjectStyles.d.ts +0 -7
  379. package/dist/ui/src/hooks/useOutsideAlerter.d.ts +0 -5
  380. package/dist/ui/src/icons/GitHubIcon.d.ts +0 -2
  381. package/dist/ui/src/icons/HandleIcon.d.ts +0 -1
  382. package/dist/ui/src/icons/Icon.d.ts +0 -20
  383. package/dist/ui/src/icons/cool_icon_keys.d.ts +0 -1
  384. package/dist/ui/src/icons/icon_keys.d.ts +0 -1
  385. package/dist/ui/src/icons/index.d.ts +0 -6
  386. package/dist/ui/src/index.d.ts +0 -5
  387. package/dist/ui/src/styles.d.ts +0 -12
  388. package/dist/ui/src/util/chip_colors.d.ts +0 -4
  389. package/dist/ui/src/util/cls.d.ts +0 -2
  390. package/dist/ui/src/util/debounce.d.ts +0 -10
  391. package/dist/ui/src/util/hash.d.ts +0 -1
  392. package/dist/ui/src/util/index.d.ts +0 -4
  393. package/dist/ui/src/util/key_to_icon_component.d.ts +0 -1
  394. package/src/components/SchemaVisualizer/index.ts +0 -5
  395. package/src/utils/entities.ts +0 -2
  396. package/src/vite-env.d.ts +0 -1
  397. /package/dist/{studio/src/components → components}/RLSEditor/index.d.ts +0 -0
  398. /package/dist/{studio/src/components → components}/RebaseStudio.d.ts +0 -0
  399. /package/dist/{studio/src/components → components}/SQLEditor/ExplainVisualizer.d.ts +0 -0
package/LICENSE CHANGED
@@ -1,114 +1,22 @@
1
- Business Source License 1.1
1
+ MIT License
2
2
 
3
- Parameters
3
+ Copyright (c) 2026 Rebase
4
4
 
5
- Licensor: Rebase S.L.
6
- Licensed Work: Rebase CMS packages:
7
- cli
8
- collection_editor
9
- collection_editor_firebase
10
- data_enhancement
11
- data_export
12
- data_export
13
- editor
14
- rebase_cloud
15
- schema_inference
16
- user_management
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
17
11
 
18
- The Licensed Work is (c) 2024 Rebase S.L
19
- Additional Use Grant: You may make use of the Licensed Work, provided that
20
- you may not use the Licensed Work for a CMS Data Enhancement
21
- Service.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
22
14
 
23
- A “CMS package” is a commercial offering that
24
- allows third parties (other than your employees and
25
- contractors) to access the functionality of the
26
- Licensed Work by using software to extend the base features of
27
- content management system controlled by such third parties.
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
28
22
 
29
- Change Date: Four years from the date the Licensed Work is published.
30
-
31
- Change License: MIT
32
-
33
- For information about alternative licensing arrangements for the Software,
34
- please visit: https://rebase.pro
35
-
36
- Notice
37
-
38
- The Business Source License (this document, or the “License”) is not an Open
39
- Source license. However, the Licensed Work will eventually be made available
40
- under an Open Source License, as stated in this License.
41
-
42
- License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.
43
- “Business Source License” is a trademark of MariaDB Corporation Ab.
44
-
45
- -----------------------------------------------------------------------------
46
-
47
- Business Source License 1.1
48
-
49
- Terms
50
-
51
- The Licensor hereby grants you the right to copy, modify, create derivative
52
- works, redistribute, and make non-production use of the Licensed Work. The
53
- Licensor may make an Additional Use Grant, above, permitting limited
54
- production use.
55
-
56
- Effective on the Change Date, or the fourth anniversary of the first publicly
57
- available distribution of a specific version of the Licensed Work under this
58
- License, whichever comes first, the Licensor hereby grants you rights under
59
- the terms of the Change License, and the rights granted in the paragraph
60
- above terminate.
61
-
62
- If your use of the Licensed Work does not comply with the requirements
63
- currently in effect as described in this License, you must purchase a
64
- commercial license from the Licensor, its affiliated entities, or authorized
65
- resellers, or you must refrain from using the Licensed Work.
66
-
67
- All copies of the original and modified Licensed Work, and derivative works
68
- of the Licensed Work, are subject to this License. This License applies
69
- separately for each version of the Licensed Work and the Change Date may vary
70
- for each version of the Licensed Work released by Licensor.
71
-
72
- You must conspicuously display this License on each original or modified copy
73
- of the Licensed Work. If you receive the Licensed Work in original or
74
- modified form from a third party, the terms and conditions set forth in this
75
- License apply to your use of that work.
76
-
77
- Any use of the Licensed Work in violation of this License will automatically
78
- terminate your rights under this License for the current and all other
79
- versions of the Licensed Work.
80
-
81
- This License does not grant you any right in any trademark or logo of
82
- Licensor or its affiliates (provided that you may use a trademark or logo of
83
- Licensor as expressly required by this License).
84
-
85
- TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
86
- AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
87
- EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
88
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
89
- TITLE.
90
-
91
- MariaDB hereby grants you permission to use this License’s text to license
92
- your works, and to refer to it using the trademark “Business Source License”,
93
- as long as you comply with the Covenants of Licensor below.
94
-
95
- Covenants of Licensor
96
-
97
- In consideration of the right to use this License’s text and the “Business
98
- Source License” name and trademark, Licensor covenants to MariaDB, and to all
99
- other recipients of the licensed work to be provided by Licensor:
100
-
101
- 1. To specify as the Change License the GPL Version 2.0 or any later version,
102
- or a license that is compatible with GPL Version 2.0 or a later version,
103
- where “compatible” means that software provided under the Change License can
104
- be included in a program with software provided under GPL Version 2.0 or a
105
- later version. Licensor may specify additional Change Licenses without
106
- limitation.
107
-
108
- 2. To either: (a) specify an additional grant of rights to use that does not
109
- impose any additional restriction on the right granted in this License, as
110
- the Additional Use Grant; or (b) insert the text “None”.
111
-
112
- 3. To specify a Change Date.
113
-
114
- 4. Not to modify this License in any other way.
package/README.md CHANGED
@@ -1,159 +1,92 @@
1
- # Rebase Collection Editor Plugin
1
+ # @rebasepro/studio
2
2
 
3
- This plugin enables creating and managing Firestore collections directly from your Rebase interface. It adds a visual
4
- collection editor that allows you to create, edit, and delete collections without writing code.
3
+ Developer tools layer for Rebase provides 9 lazy-loaded tools (SQL Console, JS Console, RLS Editor, Storage, Cron Jobs, Schema Visualizer, Branches, API Explorer, Logs Explorer) plus a customizable home page.
5
4
 
6
5
  ## Installation
7
6
 
8
7
  ```bash
9
- npm install @rebasepro/collection_editor
10
- # or
11
- yarn add @rebasepro/collection_editor
8
+ pnpm add @rebasepro/studio
12
9
  ```
13
10
 
14
- For Firebase integration, also install:
15
-
16
- ```bash
17
- npm install @rebasepro/collection_editor_firebase
18
- # or
19
- yarn add @rebasepro/collection_editor_firebase
20
- ```
21
-
22
- ## Features
23
-
24
- - Create and edit collections through a visual interface
25
- - Define properties, validations, and display options
26
- - Organize collections with groups and subcollections
27
- - Merge UI-defined collections with code-defined collections
28
- - Persist collection configurations in Firestore
29
- - Control permissions for collection editing operations
30
-
31
- ## Basic Usage
32
-
33
- ```tsx
34
- import React from "react";
35
- import { RebaseCMS } from "@rebasepro/admin";
36
- import { useFirestoreCollectionsConfigController } from "@rebasepro/collection_editor_firebase";
37
-
38
- export default function App() {
39
- // Controller to save collection configs in Firestore
40
- const collectionConfigController = useFirestoreCollectionsConfigController({
41
- firebaseApp
42
- });
43
-
44
- return <RebaseCMS
45
- name={"My CMS"}
46
- authentication={myAuthenticator}
47
- firebaseConfig={firebaseConfig}
48
- collectionEditor={{
49
- collectionConfigController
50
- }}
51
- />;
52
- }
53
- ```
54
-
55
- ## Advanced Configuration
56
-
57
- You can customize collection editor behavior with these options using the `collectionEditor` prop on `RebaseCMS`:
58
-
59
- ```tsx
60
- <RebaseCMS
61
- collectionEditor={{
62
- collectionConfigController, // Required: controller that handles persistence
63
-
64
- // Define permissions for collection operations
65
- configPermissions: ({ user }) => ({
66
- createCollections: user.roles?.includes("admin") ?? false,
67
- editCollections: user.roles?.includes("admin") ?? false,
68
- deleteCollections: user.roles?.includes("admin") ?? false
69
- }),
70
-
71
- // Prevent these group names from being used
72
- reservedGroups: ["admin", "system"],
73
-
74
- // Optional custom view to add to the editor
75
- extraView: {
76
- View: MyCustomView,
77
- icon: <CustomIcon />
78
- },
79
-
80
- // Function to infer collection structure from existing data
81
- collectionInference: async ({ path }) => {
82
- // Return inferred schema based on data at path
83
- },
84
-
85
- // Function to get sample data for a collection
86
- getData: async (path, parentPaths) => {
87
- // Return sample data for the specified path
88
- },
89
-
90
- // Track collection editor events
91
- onAnalyticsEvent: (event, params) => {
92
- console.log("Collection editor event:", event, params);
93
- },
94
-
95
- // Include introduction widget when no collections exist
96
- includeIntroView: true
97
- }}
98
- />
11
+ ### Peer Dependencies
12
+
13
+ - `react` >= 19.0.0
14
+ - `react-dom` >= 19.0.0
15
+ - `react-router` ^7.0.0
16
+ - `react-router-dom` ^7.0.0
17
+ - `@rebasepro/admin` (optional)
18
+
19
+ ## What This Package Does
20
+
21
+ `@rebasepro/studio` registers a set of developer tools into the Rebase CMS. The `<RebaseStudio>` component renders nothing visible — it declaratively registers tool views into the Rebase registry. Each tool (Monaco-based editors, xyflow graph, etc.) is lazy-loaded so it stays out of the initial bundle.
22
+
23
+ ## Available Tools
24
+
25
+ | Slug | Name | Group | Description |
26
+ |---|---|---|---|
27
+ | `sql` | SQL Console | Database | Execute raw SQL queries |
28
+ | `js` | JS Console | Compute | Run JavaScript in a live sandbox |
29
+ | `rls` | RLS Policies | Database | Configure Row Level Security |
30
+ | `storage` | Storage | Storage | Browse and manage files |
31
+ | `cron` | Cron Jobs | Compute | Monitor scheduled tasks |
32
+ | `schema-visualizer` | Schema Visualizer | Database | Interactive database ERD |
33
+ | `branches` | Branches | Database | Create and manage database branches |
34
+ | `api` | API Explorer | API | Interactive API docs and testing |
35
+ | `logs` | Logs Explorer | Database | Real-time system and query logs |
36
+
37
+ All 9 tools are enabled by default. The `schema` tool (collection editor) is auto-injected by the CMS when `collectionEditor` is enabled — it is **not** registered here.
38
+
39
+ ## Key Exports
40
+
41
+ | Export | Type | Description |
42
+ |---|---|---|
43
+ | `RebaseStudio` | Component | Main entry point — registers tools into the Rebase registry |
44
+ | `StudioHomePage` | Component | Default home page with tool cards and SDK quick-start snippet |
45
+ | `StudioBridgeProvider` | Component | Re-exported from `@rebasepro/app` |
46
+ | `StudioBridgeContext` | Context | Re-exported from `@rebasepro/app` |
47
+ | `useStudioCollectionRegistry` | Hook | Access the collection registry |
48
+ | `useStudioSidePanelController` | Hook | Control the side snapshot panel |
49
+ | `useStudioUrlController` | Hook | URL state management |
50
+ | `useStudioNavigationState` | Hook | Navigation state |
51
+ | `useStudioBreadcrumbs` | Hook | Breadcrumb management |
52
+ | `StudioBridge` | Type | Bridge interface type |
53
+ | `BreadcrumbEntry` | Type | Single breadcrumb item |
54
+ | `BreadcrumbsController` | Type | Breadcrumb controller interface |
55
+
56
+ Individual tools (e.g. `SQLEditor`, `SchemaVisualizer`) are **not** re-exported from the barrel to preserve code splitting. Use deep imports if needed:
57
+
58
+ ```typescript
59
+ import { SQLEditor } from "@rebasepro/studio/components/SQLEditor/SQLEditor";
99
60
  ```
100
61
 
101
- ## Integration with Code-Defined Collections
102
-
103
- You can combine collections defined in code with those created in the UI:
62
+ ## Quick Start
104
63
 
105
64
  ```tsx
106
- import { mergeCollections } from "@rebasepro/admin/collection_editor";
107
-
65
+ import { RebaseStudio } from "@rebasepro/studio";
108
66
 
109
- const collectionsBuilder = useCallback(() => {
110
- // Collections defined in code
111
- const codeCollections = [productsCollection, ordersCollection];
112
-
113
- // Merge with collections from the editor UI
114
- return mergeCollections(codeCollections, collectionConfigController.collections ?? []);
115
- }, [collectionConfigController.collections]);
67
+ // Inside your Rebase app — enable all 9 tools (default)
68
+ <RebaseStudio />
116
69
 
117
- const navigationController = useBuildNavigationStateController({
118
- collections: collectionsBuilder,
119
- // Other options
120
- });
121
- ```
122
-
123
- ## Firestore Configuration Controller
124
-
125
- To persist collections in Firestore:
70
+ // Or pick specific tools
71
+ <RebaseStudio tools={["sql", "rls", "storage", "api"]} />
126
72
 
127
- ```tsx
128
- const collectionConfigController = useFirestoreCollectionsConfigController({
129
- firebaseApp,
130
-
131
- // Optional: specify where to save configs (default: "__REBASE/config/collections")
132
- configPath: "custom/config/path",
133
-
134
- // Optional: define permissions for collections
135
- permissions: ({ user }) => ({
136
- // Your permissions logic
137
- }),
138
-
139
- // Optional: custom property configurations
140
- propertyConfigs: [
141
- // Custom property types
142
- ]
143
- });
73
+ // Custom home page
74
+ <RebaseStudio homePage={<MyCustomHomePage />} />
144
75
  ```
145
76
 
146
- ## Additional Notes
147
-
148
- - Collections created through the editor are stored in Firestore and loaded dynamically
149
- - The plugin automatically adds UI elements for creating and managing collections
150
- - For a complete solution, consider using alongside other plugins like data import/export
77
+ ### StudioHomePage Props
151
78
 
152
- ## Related Plugins
79
+ | Prop | Type | Description |
80
+ |---|---|---|
81
+ | `additionalActions` | `ReactNode` | Extra actions in the top-right area |
82
+ | `additionalChildrenStart` | `ReactNode` | Content before the tool grid |
83
+ | `additionalChildrenEnd` | `ReactNode` | Content after the tool grid |
84
+ | `sections` | `HomePageSection[]` | Extra sections appended to the page |
85
+ | `hiddenGroups` | `string[]` | Groups to hide from the home page |
153
86
 
154
- Rebase offers several complementary plugins:
87
+ ## Related Packages
155
88
 
156
- - Data Import: Import data from CSV or JSON into Firestore collections
157
- - Data Export: Export collection data to CSV or JSON formats
158
- - Data Enhancement: Generate content using AI for your collections
159
- - Entity History: Track changes to your collection entities
89
+ - `@rebasepro/app` Bridge, registry, and navigation primitives
90
+ - `@rebasepro/ui` Component library used by Studio tools
91
+ - `@rebasepro/admin` The CMS layer (optional peer dep)
92
+ - `@rebasepro/types` Shared type definitions