@postgres.ai/shared 4.0.3 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (686) hide show
  1. package/.gitlab-ci.yml +77 -0
  2. package/components/AlertSnackbar/index.tsx +23 -0
  3. package/components/AlertSnackbar/useAlertSnackbar.tsx +65 -0
  4. package/components/Button/index.tsx +79 -0
  5. package/components/Button2/index.tsx +43 -0
  6. package/components/DestroyCloneModal/index.tsx +52 -0
  7. package/components/DestroyCloneRestrictionModal/index.tsx +50 -0
  8. package/components/ErrorStub/index.tsx +83 -0
  9. package/components/FormattedText/index.tsx +44 -0
  10. package/components/GatewayLink/index.tsx +33 -0
  11. package/components/HorizontalScrollContainer/index.tsx +131 -0
  12. package/components/HorizontalScrollContainer/types.ts +12 -0
  13. package/components/HorizontalScrollContainer/utils.ts +16 -0
  14. package/components/ImportantText/index.tsx +29 -0
  15. package/components/Link2/index.tsx +31 -0
  16. package/components/MenuButton/index.tsx +88 -0
  17. package/components/Modal/index.tsx +93 -0
  18. package/components/PageSpinner/index.tsx +18 -0
  19. package/components/ResetCloneModal/index.tsx +149 -0
  20. package/components/SectionTitle/index.tsx +74 -0
  21. package/components/Select/index.tsx +43 -0
  22. package/components/SimpleModalControls/index.tsx +56 -0
  23. package/components/Spinner/icon.tsx +29 -0
  24. package/components/Spinner/index.tsx +16 -0
  25. package/components/Status/index.tsx +61 -0
  26. package/components/StubContainer/index.tsx +41 -0
  27. package/components/StubSpinner/index.tsx +49 -0
  28. package/components/StubSpinnerFlex/index.tsx +20 -0
  29. package/components/SyntaxHighlight/index.tsx +107 -0
  30. package/components/Table/RowMenu/index.tsx +111 -0
  31. package/components/Table/index.tsx +140 -0
  32. package/components/Text/index.tsx +28 -0
  33. package/components/TextField/index.tsx +119 -0
  34. package/components/Tooltip/index.tsx +52 -0
  35. package/config/index.ts +32 -0
  36. package/config/links.ts +6 -0
  37. package/dist/components/Button2/styles.module.scss +82 -0
  38. package/dist/components/FormattedText/styles.module.scss +34 -0
  39. package/dist/components/Link2/styles.module.scss +12 -0
  40. package/dist/components/MenuButton/styles.module.scss +42 -0
  41. package/dist/components/PageSpinner/styles.module.scss +13 -0
  42. package/{components → dist/components}/Select/index.d.ts +1 -0
  43. package/dist/components/Spinner/styles.module.scss +33 -0
  44. package/dist/components/Status/styles.module.scss +45 -0
  45. package/dist/components/StubSpinnerFlex/styles.module.scss +20 -0
  46. package/{components → dist/components}/TextField/index.d.ts +2 -1
  47. package/{components → dist/components}/TextField/index.js +1 -1
  48. package/dist/helpers/getEntropy.d.ts +11 -0
  49. package/{helpers → dist/helpers}/getEntropy.js +39 -0
  50. package/dist/icons/PostgresSQL/index.js +2 -0
  51. package/dist/meta.json +1 -0
  52. package/dist/package.json +54 -0
  53. package/{pages → dist/pages}/Clone/index.js +49 -6
  54. package/{pages → dist/pages}/Clone/stores/Main.d.ts +1 -1
  55. package/{pages → dist/pages}/Clone/stores/Main.js +8 -2
  56. package/{pages → dist/pages}/CreateBranch/useForm.d.ts +1 -1
  57. package/{pages → dist/pages}/CreateClone/index.js +75 -24
  58. package/{pages → dist/pages}/CreateClone/stores/Main.d.ts +1 -1
  59. package/{pages → dist/pages}/CreateClone/stores/Main.js +2 -1
  60. package/dist/pages/CreateClone/styles.module.scss +128 -0
  61. package/{pages → dist/pages}/CreateClone/useForm.d.ts +3 -2
  62. package/{pages → dist/pages}/CreateClone/useForm.js +3 -2
  63. package/{pages → dist/pages}/CreateClone/utils/index.d.ts +1 -1
  64. package/dist/pages/CreateClone/utils/index.js +29 -0
  65. package/{pages → dist/pages}/CreateSnapshot/useForm.d.ts +1 -1
  66. package/dist/pages/Instance/Clones/ClonesList/styles.module.scss +42 -0
  67. package/dist/pages/Instance/Clones/Header/Item/styles.module.scss +17 -0
  68. package/dist/pages/Instance/Clones/Header/styles.module.scss +14 -0
  69. package/{pages → dist/pages}/Instance/Configuration/index.js +3 -1
  70. package/dist/pages/Instance/Configuration/styles.module.scss +122 -0
  71. package/{pages → dist/pages}/Instance/Configuration/useForm.d.ts +1 -1
  72. package/{pages → dist/pages}/Instance/Info/Disks/Disk/ProgressBar/index.d.ts +2 -1
  73. package/{pages → dist/pages}/Instance/Info/Disks/Disk/ProgressBar/index.js +1 -1
  74. package/{pages/Instance/Info/Disks/Disk → dist/pages/Instance/Info/Disks/PoolSection/DatasetRow}/index.d.ts +6 -8
  75. package/dist/pages/Instance/Info/Disks/PoolSection/DatasetRow/index.js +52 -0
  76. package/dist/pages/Instance/Info/Disks/PoolSection/index.d.ts +10 -0
  77. package/dist/pages/Instance/Info/Disks/PoolSection/index.js +64 -0
  78. package/dist/pages/Instance/Info/Disks/index.js +68 -0
  79. package/dist/pages/Instance/Info/Retrieval/RefreshFailedAlert/styles.module.scss +33 -0
  80. package/dist/pages/Instance/Info/Retrieval/RetrievalModal/styles.module.scss +6 -0
  81. package/dist/pages/Instance/Info/Retrieval/RetrievalTable/styles.module.scss +29 -0
  82. package/dist/pages/Instance/Info/Status/InstanceResponseModal/styles.module.scss +3 -0
  83. package/dist/pages/Instance/Info/Status/styles.module.scss +12 -0
  84. package/dist/pages/Instance/Info/components/Property/styles.module.scss +21 -0
  85. package/{pages → dist/pages}/Instance/Snapshots/components/SnapshotsList/index.js +1 -1
  86. package/dist/pages/Instance/styles.scss +37 -0
  87. package/dist/react-app-env.d.ts +64 -0
  88. package/dist/styles/global.scss +29 -0
  89. package/dist/styles/mixins.scss +30 -0
  90. package/dist/styles/vars.scss +43 -0
  91. package/dist/tsconfig.build.json +36 -0
  92. package/dist/tsconfig.json +30 -0
  93. package/{types → dist/types}/api/endpoints/createClone.d.ts +1 -1
  94. package/{types → dist/types}/api/endpoints/updateClone.d.ts +1 -0
  95. package/{types → dist/types}/api/entities/clone.d.ts +7 -0
  96. package/{types → dist/types}/api/entities/clone.js +1 -0
  97. package/{types → dist/types}/api/entities/config.js +8 -8
  98. package/{types → dist/types}/api/entities/instance.d.ts +6 -0
  99. package/{types → dist/types}/api/entities/instanceState.d.ts +8 -0
  100. package/{types → dist/types}/api/entities/instanceState.js +4 -2
  101. package/helpers/getEntropy.ts +278 -0
  102. package/helpers/localStorage.ts +15 -0
  103. package/helpers/request.ts +47 -0
  104. package/hooks/useWindowDimensions.ts +16 -0
  105. package/icons/ArrowDropDown/index.tsx +31 -0
  106. package/icons/Circle/index.tsx +27 -0
  107. package/icons/External/index.tsx +14 -0
  108. package/icons/Info/index.tsx +12 -0
  109. package/icons/PostgresSQL/index.tsx +18 -0
  110. package/icons/Renewable/index.tsx +65 -0
  111. package/icons/Shield/index.tsx +33 -0
  112. package/icons/Warning/index.tsx +29 -0
  113. package/package.json +25 -18
  114. package/pages/Branches/Branch/context.ts +25 -0
  115. package/pages/Branches/Branch/index.tsx +434 -0
  116. package/pages/Branches/Branch/stores/Main.ts +138 -0
  117. package/pages/Branches/Branch/useCreatedStores.ts +10 -0
  118. package/pages/Branches/components/BranchesTable/index.tsx +194 -0
  119. package/pages/Branches/components/Modals/DeleteBranchModal/index.tsx +84 -0
  120. package/pages/Branches/components/Modals/types.ts +4 -0
  121. package/pages/Branches/index.tsx +128 -0
  122. package/pages/Clone/Status/index.tsx +73 -0
  123. package/pages/Clone/context.ts +24 -0
  124. package/pages/Clone/index.tsx +756 -0
  125. package/pages/Clone/stores/Main.ts +215 -0
  126. package/pages/Clone/useCreatedStores.ts +11 -0
  127. package/pages/Clone/utils/index.ts +15 -0
  128. package/pages/CreateBranch/index.tsx +322 -0
  129. package/pages/CreateBranch/stores/Main.ts +99 -0
  130. package/pages/CreateBranch/useCreatedStores.ts +11 -0
  131. package/pages/CreateBranch/useForm.ts +60 -0
  132. package/pages/CreateBranch/utils/index.ts +18 -0
  133. package/pages/CreateClone/index.tsx +520 -0
  134. package/pages/CreateClone/stores/Main.ts +139 -0
  135. package/pages/CreateClone/styles.module.scss +14 -0
  136. package/pages/CreateClone/useCreatedStores.ts +11 -0
  137. package/pages/CreateClone/useForm.ts +51 -0
  138. package/pages/CreateClone/utils/index.ts +38 -0
  139. package/pages/CreateSnapshot/index.tsx +253 -0
  140. package/pages/CreateSnapshot/stores/Main.ts +70 -0
  141. package/pages/CreateSnapshot/useCreatedStores.ts +11 -0
  142. package/pages/CreateSnapshot/useForm.ts +34 -0
  143. package/pages/CreateSnapshot/utils/index.ts +8 -0
  144. package/pages/Instance/Clones/ClonesList/ConnectionModal/index.tsx +196 -0
  145. package/pages/Instance/Clones/ClonesList/MenuCell/index.tsx +98 -0
  146. package/pages/Instance/Clones/ClonesList/MenuCell/utils.ts +21 -0
  147. package/pages/Instance/Clones/ClonesList/index.tsx +246 -0
  148. package/pages/Instance/Clones/ClonesModal/index.tsx +71 -0
  149. package/pages/Instance/Clones/ClonesModal/utils.ts +21 -0
  150. package/pages/Instance/Clones/Header/Item/index.tsx +15 -0
  151. package/pages/Instance/Clones/Header/index.tsx +74 -0
  152. package/pages/Instance/Clones/index.tsx +141 -0
  153. package/pages/Instance/Configuration/Header/index.tsx +84 -0
  154. package/pages/Instance/Configuration/InputWithTooltip/index.tsx +240 -0
  155. package/pages/Instance/Configuration/ResponseMessage/index.tsx +71 -0
  156. package/pages/Instance/Configuration/configOptions.ts +60 -0
  157. package/pages/Instance/Configuration/index.tsx +1233 -0
  158. package/pages/Instance/Configuration/tooltipText.tsx +170 -0
  159. package/pages/Instance/Configuration/useForm.ts +108 -0
  160. package/pages/Instance/Configuration/utils/index.ts +236 -0
  161. package/pages/Instance/InactiveInstance/index.tsx +157 -0
  162. package/pages/Instance/InactiveInstance/utils.ts +9 -0
  163. package/pages/Instance/Info/Connection/ConnectModal/Content/index.tsx +176 -0
  164. package/pages/Instance/Info/Connection/ConnectModal/Content/utils.ts +24 -0
  165. package/pages/Instance/Info/Connection/ConnectModal/index.tsx +36 -0
  166. package/pages/Instance/Info/Connection/index.tsx +81 -0
  167. package/pages/Instance/Info/Details/index.tsx +20 -0
  168. package/pages/Instance/Info/Disks/Disk/ActionsMenu/index.tsx +100 -0
  169. package/pages/Instance/Info/Disks/Disk/ProgressBar/PointerIcon.tsx +20 -0
  170. package/pages/Instance/Info/Disks/Disk/ProgressBar/index.tsx +76 -0
  171. package/pages/Instance/Info/Disks/Disk/Status/index.tsx +75 -0
  172. package/pages/Instance/Info/Disks/PoolSection/DatasetRow/index.tsx +117 -0
  173. package/pages/Instance/Info/Disks/PoolSection/index.tsx +112 -0
  174. package/pages/Instance/Info/Disks/index.tsx +114 -0
  175. package/pages/Instance/Info/Icons/index.tsx +39 -0
  176. package/pages/Instance/Info/Retrieval/ConfirmFullRefreshModal/index.tsx +109 -0
  177. package/pages/Instance/Info/Retrieval/RefreshFailedAlert/index.tsx +32 -0
  178. package/pages/Instance/Info/Retrieval/RetrievalModal/index.tsx +43 -0
  179. package/pages/Instance/Info/Retrieval/RetrievalTable/index.tsx +53 -0
  180. package/pages/Instance/Info/Retrieval/index.tsx +113 -0
  181. package/pages/Instance/Info/Retrieval/utils.ts +10 -0
  182. package/pages/Instance/Info/Snapshots/Calendar/Day/index.tsx +125 -0
  183. package/pages/Instance/Info/Snapshots/Calendar/index.tsx +133 -0
  184. package/pages/Instance/Info/Snapshots/Calendar/utils.ts +74 -0
  185. package/pages/Instance/Info/Snapshots/TimeLine/Day/index.tsx +79 -0
  186. package/pages/Instance/Info/Snapshots/TimeLine/index.tsx +57 -0
  187. package/pages/Instance/Info/Snapshots/index.tsx +102 -0
  188. package/pages/Instance/Info/Snapshots/utils.ts +31 -0
  189. package/pages/Instance/Info/Status/InstanceResponseModal/index.tsx +32 -0
  190. package/pages/Instance/Info/Status/index.tsx +89 -0
  191. package/pages/Instance/Info/Status/utils.ts +24 -0
  192. package/pages/Instance/Info/components/Property/index.tsx +32 -0
  193. package/pages/Instance/Info/components/Section/index.tsx +50 -0
  194. package/pages/Instance/Info/components/ValueStatus/index.tsx +51 -0
  195. package/pages/Instance/Info/index.tsx +137 -0
  196. package/pages/Instance/Snapshots/components/SnapshotHeader/index.tsx +77 -0
  197. package/pages/Instance/Snapshots/components/SnapshotsList/index.tsx +285 -0
  198. package/pages/Instance/Snapshots/components/SnapshotsModal/utils.ts +17 -0
  199. package/pages/Instance/Snapshots/components/SnapshotsTable/index.tsx +231 -0
  200. package/pages/Instance/Snapshots/index.tsx +171 -0
  201. package/pages/Instance/Snapshots/utils/index.ts +39 -0
  202. package/pages/Instance/SnapshotsModal/index.tsx +159 -0
  203. package/pages/Instance/Tabs/PlatformTabs.tsx +83 -0
  204. package/pages/Instance/Tabs/index.tsx +140 -0
  205. package/pages/Instance/Tabs/styles.ts +68 -0
  206. package/pages/Instance/components/ErrorStub/index.tsx +77 -0
  207. package/pages/Instance/components/ModalReloadButton/index.tsx +42 -0
  208. package/pages/Instance/components/Tags/Tag/index.tsx +60 -0
  209. package/pages/Instance/components/Tags/index.tsx +42 -0
  210. package/pages/Instance/context.ts +46 -0
  211. package/pages/Instance/index.tsx +257 -0
  212. package/pages/Instance/stores/ClonesModal.ts +35 -0
  213. package/pages/Instance/stores/Main.ts +484 -0
  214. package/pages/Instance/stores/SnapshotsModal.ts +35 -0
  215. package/pages/Instance/useCreatedStores.ts +14 -0
  216. package/pages/Logs/Icons/PlusIcon.tsx +9 -0
  217. package/pages/Logs/constants/index.ts +7 -0
  218. package/pages/Logs/hooks/useWsScroll.tsx +47 -0
  219. package/pages/Logs/index.tsx +287 -0
  220. package/pages/Logs/utils/index.ts +20 -0
  221. package/pages/Logs/wsLogs.ts +126 -0
  222. package/pages/Logs/wsSnackbar.ts +26 -0
  223. package/pages/Snapshots/Snapshot/DestorySnapshotModal/index.tsx +144 -0
  224. package/pages/Snapshots/Snapshot/context.ts +26 -0
  225. package/pages/Snapshots/Snapshot/index.tsx +485 -0
  226. package/pages/Snapshots/Snapshot/stores/Main.ts +120 -0
  227. package/pages/Snapshots/Snapshot/useCreatedStores.ts +10 -0
  228. package/postgres.ai-shared-4.1.0.tgz +0 -0
  229. package/react-app-env.d.ts +0 -7
  230. package/scripts/copy-assets.js +30 -0
  231. package/scripts/pack.js +70 -0
  232. package/stores/Snapshots.ts +97 -0
  233. package/styles/colors.ts +67 -0
  234. package/styles/icons.tsx +1917 -0
  235. package/styles/styles.ts +87 -0
  236. package/styles/theme.ts +53 -0
  237. package/styles/vars.ts +40 -0
  238. package/tsconfig.build.json +0 -1
  239. package/types/api/endpoints/createBranch.ts +14 -0
  240. package/types/api/endpoints/createClone.ts +11 -0
  241. package/types/api/endpoints/createSnapshot.ts +10 -0
  242. package/types/api/endpoints/deleteBranch.ts +4 -0
  243. package/types/api/endpoints/destroyClone.ts +7 -0
  244. package/types/api/endpoints/destroySnapshot.ts +8 -0
  245. package/types/api/endpoints/fullRefresh.ts +6 -0
  246. package/types/api/endpoints/getBranchSnapshot.ts +6 -0
  247. package/types/api/endpoints/getBranches.ts +22 -0
  248. package/types/api/endpoints/getClone.ts +6 -0
  249. package/types/api/endpoints/getConfig.ts +6 -0
  250. package/types/api/endpoints/getEngine.ts +13 -0
  251. package/types/api/endpoints/getFullConfig.ts +4 -0
  252. package/types/api/endpoints/getInstance.ts +6 -0
  253. package/types/api/endpoints/getInstanceRetrieval.ts +6 -0
  254. package/types/api/endpoints/getSeImages.ts +22 -0
  255. package/types/api/endpoints/getSnapshotList.ts +14 -0
  256. package/types/api/endpoints/getSnapshots.ts +6 -0
  257. package/types/api/endpoints/getWSToken.ts +6 -0
  258. package/types/api/endpoints/initWS.ts +1 -0
  259. package/types/api/endpoints/refreshInstance.ts +4 -0
  260. package/types/api/endpoints/resetClone.ts +8 -0
  261. package/types/api/endpoints/testDbSource.ts +48 -0
  262. package/types/api/endpoints/updateClone.ts +11 -0
  263. package/types/api/endpoints/updateConfig.ts +9 -0
  264. package/types/api/entities/branchSnapshot.ts +8 -0
  265. package/types/api/entities/branchSnapshots.ts +10 -0
  266. package/types/api/entities/clone.ts +47 -0
  267. package/types/api/entities/config.ts +117 -0
  268. package/types/api/entities/createBranch.ts +7 -0
  269. package/types/api/entities/createSnapshot.ts +7 -0
  270. package/types/api/entities/dbSource.ts +14 -0
  271. package/types/api/entities/instance.ts +67 -0
  272. package/types/api/entities/instanceRetrieval.ts +46 -0
  273. package/types/api/entities/instanceState.ts +106 -0
  274. package/types/api/entities/pool.ts +27 -0
  275. package/types/api/entities/snapshot.ts +22 -0
  276. package/types/api/entities/wsToken.ts +7 -0
  277. package/types/byte-size/index.d.ts +22 -0
  278. package/utils/api.ts +30 -0
  279. package/utils/clone.ts +31 -0
  280. package/utils/connection.ts +38 -0
  281. package/utils/date.ts +136 -0
  282. package/utils/instance.ts +10 -0
  283. package/utils/numbers.ts +11 -0
  284. package/utils/react.ts +10 -0
  285. package/utils/snapshot.ts +8 -0
  286. package/utils/strings.ts +11 -0
  287. package/utils/units.ts +23 -0
  288. package/helpers/getEntropy.d.ts +0 -3
  289. package/icons/PostgresSQL/index.js +0 -40
  290. package/pages/CreateClone/utils/index.js +0 -17
  291. package/pages/Instance/Info/Disks/Disk/Marker/index.d.ts +0 -6
  292. package/pages/Instance/Info/Disks/Disk/Marker/index.js +0 -15
  293. package/pages/Instance/Info/Disks/Disk/index.js +0 -71
  294. package/pages/Instance/Info/Disks/index.js +0 -24
  295. /package/{components → dist/components}/AlertSnackbar/index.d.ts +0 -0
  296. /package/{components → dist/components}/AlertSnackbar/index.js +0 -0
  297. /package/{components → dist/components}/AlertSnackbar/useAlertSnackbar.d.ts +0 -0
  298. /package/{components → dist/components}/AlertSnackbar/useAlertSnackbar.js +0 -0
  299. /package/{components → dist/components}/Button/index.d.ts +0 -0
  300. /package/{components → dist/components}/Button/index.js +0 -0
  301. /package/{components → dist/components}/Button2/index.d.ts +0 -0
  302. /package/{components → dist/components}/Button2/index.js +0 -0
  303. /package/{components → dist/components}/DestroyCloneModal/index.d.ts +0 -0
  304. /package/{components → dist/components}/DestroyCloneModal/index.js +0 -0
  305. /package/{components → dist/components}/DestroyCloneRestrictionModal/index.d.ts +0 -0
  306. /package/{components → dist/components}/DestroyCloneRestrictionModal/index.js +0 -0
  307. /package/{components → dist/components}/ErrorStub/index.d.ts +0 -0
  308. /package/{components → dist/components}/ErrorStub/index.js +0 -0
  309. /package/{components → dist/components}/FormattedText/index.d.ts +0 -0
  310. /package/{components → dist/components}/FormattedText/index.js +0 -0
  311. /package/{components → dist/components}/GatewayLink/index.d.ts +0 -0
  312. /package/{components → dist/components}/GatewayLink/index.js +0 -0
  313. /package/{components → dist/components}/HorizontalScrollContainer/index.d.ts +0 -0
  314. /package/{components → dist/components}/HorizontalScrollContainer/index.js +0 -0
  315. /package/{components → dist/components}/HorizontalScrollContainer/types.d.ts +0 -0
  316. /package/{components → dist/components}/HorizontalScrollContainer/types.js +0 -0
  317. /package/{components → dist/components}/HorizontalScrollContainer/utils.d.ts +0 -0
  318. /package/{components → dist/components}/HorizontalScrollContainer/utils.js +0 -0
  319. /package/{components → dist/components}/ImportantText/index.d.ts +0 -0
  320. /package/{components → dist/components}/ImportantText/index.js +0 -0
  321. /package/{components → dist/components}/Link2/index.d.ts +0 -0
  322. /package/{components → dist/components}/Link2/index.js +0 -0
  323. /package/{components → dist/components}/MenuButton/index.d.ts +0 -0
  324. /package/{components → dist/components}/MenuButton/index.js +0 -0
  325. /package/{components → dist/components}/Modal/index.d.ts +0 -0
  326. /package/{components → dist/components}/Modal/index.js +0 -0
  327. /package/{components → dist/components}/PageSpinner/index.d.ts +0 -0
  328. /package/{components → dist/components}/PageSpinner/index.js +0 -0
  329. /package/{components → dist/components}/ResetCloneModal/index.d.ts +0 -0
  330. /package/{components → dist/components}/ResetCloneModal/index.js +0 -0
  331. /package/{components → dist/components}/SectionTitle/index.d.ts +0 -0
  332. /package/{components → dist/components}/SectionTitle/index.js +0 -0
  333. /package/{components → dist/components}/Select/index.js +0 -0
  334. /package/{components → dist/components}/SimpleModalControls/index.d.ts +0 -0
  335. /package/{components → dist/components}/SimpleModalControls/index.js +0 -0
  336. /package/{components → dist/components}/Spinner/icon.d.ts +0 -0
  337. /package/{components → dist/components}/Spinner/icon.js +0 -0
  338. /package/{components → dist/components}/Spinner/index.d.ts +0 -0
  339. /package/{components → dist/components}/Spinner/index.js +0 -0
  340. /package/{components → dist/components}/Status/index.d.ts +0 -0
  341. /package/{components → dist/components}/Status/index.js +0 -0
  342. /package/{components → dist/components}/StubContainer/index.d.ts +0 -0
  343. /package/{components → dist/components}/StubContainer/index.js +0 -0
  344. /package/{components → dist/components}/StubSpinner/index.d.ts +0 -0
  345. /package/{components → dist/components}/StubSpinner/index.js +0 -0
  346. /package/{components → dist/components}/StubSpinnerFlex/index.d.ts +0 -0
  347. /package/{components → dist/components}/StubSpinnerFlex/index.js +0 -0
  348. /package/{components → dist/components}/SyntaxHighlight/index.d.ts +0 -0
  349. /package/{components → dist/components}/SyntaxHighlight/index.js +0 -0
  350. /package/{components → dist/components}/Table/RowMenu/index.d.ts +0 -0
  351. /package/{components → dist/components}/Table/RowMenu/index.js +0 -0
  352. /package/{components → dist/components}/Table/index.d.ts +0 -0
  353. /package/{components → dist/components}/Table/index.js +0 -0
  354. /package/{components → dist/components}/Text/index.d.ts +0 -0
  355. /package/{components → dist/components}/Text/index.js +0 -0
  356. /package/{components → dist/components}/Tooltip/index.d.ts +0 -0
  357. /package/{components → dist/components}/Tooltip/index.js +0 -0
  358. /package/{config → dist/config}/index.d.ts +0 -0
  359. /package/{config → dist/config}/index.js +0 -0
  360. /package/{config → dist/config}/links.d.ts +0 -0
  361. /package/{config → dist/config}/links.js +0 -0
  362. /package/{helpers → dist/helpers}/localStorage.d.ts +0 -0
  363. /package/{helpers → dist/helpers}/localStorage.js +0 -0
  364. /package/{helpers → dist/helpers}/request.d.ts +0 -0
  365. /package/{helpers → dist/helpers}/request.js +0 -0
  366. /package/{hooks → dist/hooks}/useWindowDimensions.d.ts +0 -0
  367. /package/{hooks → dist/hooks}/useWindowDimensions.js +0 -0
  368. /package/{icons → dist/icons}/ArrowDropDown/index.d.ts +0 -0
  369. /package/{icons → dist/icons}/ArrowDropDown/index.js +0 -0
  370. /package/{icons → dist/icons}/Circle/index.d.ts +0 -0
  371. /package/{icons → dist/icons}/Circle/index.js +0 -0
  372. /package/{icons → dist/icons}/External/index.d.ts +0 -0
  373. /package/{icons → dist/icons}/External/index.js +0 -0
  374. /package/{icons → dist/icons}/Info/index.d.ts +0 -0
  375. /package/{icons → dist/icons}/Info/index.js +0 -0
  376. /package/{icons → dist/icons}/PostgresSQL/index.d.ts +0 -0
  377. /package/{icons → dist/icons}/Renewable/index.d.ts +0 -0
  378. /package/{icons → dist/icons}/Renewable/index.js +0 -0
  379. /package/{icons → dist/icons}/Shield/index.d.ts +0 -0
  380. /package/{icons → dist/icons}/Shield/index.js +0 -0
  381. /package/{icons → dist/icons}/Warning/index.d.ts +0 -0
  382. /package/{icons → dist/icons}/Warning/index.js +0 -0
  383. /package/{pages → dist/pages}/Branches/Branch/context.d.ts +0 -0
  384. /package/{pages → dist/pages}/Branches/Branch/context.js +0 -0
  385. /package/{pages → dist/pages}/Branches/Branch/index.d.ts +0 -0
  386. /package/{pages → dist/pages}/Branches/Branch/index.js +0 -0
  387. /package/{pages → dist/pages}/Branches/Branch/stores/Main.d.ts +0 -0
  388. /package/{pages → dist/pages}/Branches/Branch/stores/Main.js +0 -0
  389. /package/{pages → dist/pages}/Branches/Branch/useCreatedStores.d.ts +0 -0
  390. /package/{pages → dist/pages}/Branches/Branch/useCreatedStores.js +0 -0
  391. /package/{pages → dist/pages}/Branches/components/BranchesTable/index.d.ts +0 -0
  392. /package/{pages → dist/pages}/Branches/components/BranchesTable/index.js +0 -0
  393. /package/{pages → dist/pages}/Branches/components/Modals/DeleteBranchModal/index.d.ts +0 -0
  394. /package/{pages → dist/pages}/Branches/components/Modals/DeleteBranchModal/index.js +0 -0
  395. /package/{pages → dist/pages}/Branches/components/Modals/types.d.ts +0 -0
  396. /package/{pages → dist/pages}/Branches/components/Modals/types.js +0 -0
  397. /package/{pages → dist/pages}/Branches/index.d.ts +0 -0
  398. /package/{pages → dist/pages}/Branches/index.js +0 -0
  399. /package/{pages → dist/pages}/Clone/Status/index.d.ts +0 -0
  400. /package/{pages → dist/pages}/Clone/Status/index.js +0 -0
  401. /package/{pages → dist/pages}/Clone/context.d.ts +0 -0
  402. /package/{pages → dist/pages}/Clone/context.js +0 -0
  403. /package/{pages → dist/pages}/Clone/index.d.ts +0 -0
  404. /package/{pages → dist/pages}/Clone/useCreatedStores.d.ts +0 -0
  405. /package/{pages → dist/pages}/Clone/useCreatedStores.js +0 -0
  406. /package/{pages → dist/pages}/Clone/utils/index.d.ts +0 -0
  407. /package/{pages → dist/pages}/Clone/utils/index.js +0 -0
  408. /package/{pages → dist/pages}/CreateBranch/index.d.ts +0 -0
  409. /package/{pages → dist/pages}/CreateBranch/index.js +0 -0
  410. /package/{pages → dist/pages}/CreateBranch/stores/Main.d.ts +0 -0
  411. /package/{pages → dist/pages}/CreateBranch/stores/Main.js +0 -0
  412. /package/{pages → dist/pages}/CreateBranch/useCreatedStores.d.ts +0 -0
  413. /package/{pages → dist/pages}/CreateBranch/useCreatedStores.js +0 -0
  414. /package/{pages → dist/pages}/CreateBranch/useForm.js +0 -0
  415. /package/{pages → dist/pages}/CreateBranch/utils/index.d.ts +0 -0
  416. /package/{pages → dist/pages}/CreateBranch/utils/index.js +0 -0
  417. /package/{pages → dist/pages}/CreateClone/index.d.ts +0 -0
  418. /package/{pages → dist/pages}/CreateClone/useCreatedStores.d.ts +0 -0
  419. /package/{pages → dist/pages}/CreateClone/useCreatedStores.js +0 -0
  420. /package/{pages → dist/pages}/CreateSnapshot/index.d.ts +0 -0
  421. /package/{pages → dist/pages}/CreateSnapshot/index.js +0 -0
  422. /package/{pages → dist/pages}/CreateSnapshot/stores/Main.d.ts +0 -0
  423. /package/{pages → dist/pages}/CreateSnapshot/stores/Main.js +0 -0
  424. /package/{pages → dist/pages}/CreateSnapshot/useCreatedStores.d.ts +0 -0
  425. /package/{pages → dist/pages}/CreateSnapshot/useCreatedStores.js +0 -0
  426. /package/{pages → dist/pages}/CreateSnapshot/useForm.js +0 -0
  427. /package/{pages → dist/pages}/CreateSnapshot/utils/index.d.ts +0 -0
  428. /package/{pages → dist/pages}/CreateSnapshot/utils/index.js +0 -0
  429. /package/{pages → dist/pages}/Instance/Clones/ClonesList/ConnectionModal/index.d.ts +0 -0
  430. /package/{pages → dist/pages}/Instance/Clones/ClonesList/ConnectionModal/index.js +0 -0
  431. /package/{pages → dist/pages}/Instance/Clones/ClonesList/MenuCell/index.d.ts +0 -0
  432. /package/{pages → dist/pages}/Instance/Clones/ClonesList/MenuCell/index.js +0 -0
  433. /package/{pages → dist/pages}/Instance/Clones/ClonesList/MenuCell/utils.d.ts +0 -0
  434. /package/{pages → dist/pages}/Instance/Clones/ClonesList/MenuCell/utils.js +0 -0
  435. /package/{pages → dist/pages}/Instance/Clones/ClonesList/index.d.ts +0 -0
  436. /package/{pages → dist/pages}/Instance/Clones/ClonesList/index.js +0 -0
  437. /package/{pages → dist/pages}/Instance/Clones/ClonesModal/index.d.ts +0 -0
  438. /package/{pages → dist/pages}/Instance/Clones/ClonesModal/index.js +0 -0
  439. /package/{pages → dist/pages}/Instance/Clones/ClonesModal/utils.d.ts +0 -0
  440. /package/{pages → dist/pages}/Instance/Clones/ClonesModal/utils.js +0 -0
  441. /package/{pages → dist/pages}/Instance/Clones/Header/Item/index.d.ts +0 -0
  442. /package/{pages → dist/pages}/Instance/Clones/Header/Item/index.js +0 -0
  443. /package/{pages → dist/pages}/Instance/Clones/Header/index.d.ts +0 -0
  444. /package/{pages → dist/pages}/Instance/Clones/Header/index.js +0 -0
  445. /package/{pages → dist/pages}/Instance/Clones/index.d.ts +0 -0
  446. /package/{pages → dist/pages}/Instance/Clones/index.js +0 -0
  447. /package/{pages → dist/pages}/Instance/Configuration/Header/index.d.ts +0 -0
  448. /package/{pages → dist/pages}/Instance/Configuration/Header/index.js +0 -0
  449. /package/{pages → dist/pages}/Instance/Configuration/InputWithTooltip/index.d.ts +0 -0
  450. /package/{pages → dist/pages}/Instance/Configuration/InputWithTooltip/index.js +0 -0
  451. /package/{pages → dist/pages}/Instance/Configuration/ResponseMessage/index.d.ts +0 -0
  452. /package/{pages → dist/pages}/Instance/Configuration/ResponseMessage/index.js +0 -0
  453. /package/{pages → dist/pages}/Instance/Configuration/configOptions.d.ts +0 -0
  454. /package/{pages → dist/pages}/Instance/Configuration/configOptions.js +0 -0
  455. /package/{pages → dist/pages}/Instance/Configuration/index.d.ts +0 -0
  456. /package/{pages → dist/pages}/Instance/Configuration/tooltipText.d.ts +0 -0
  457. /package/{pages → dist/pages}/Instance/Configuration/tooltipText.js +0 -0
  458. /package/{pages → dist/pages}/Instance/Configuration/useForm.js +0 -0
  459. /package/{pages → dist/pages}/Instance/Configuration/utils/index.d.ts +0 -0
  460. /package/{pages → dist/pages}/Instance/Configuration/utils/index.js +0 -0
  461. /package/{pages → dist/pages}/Instance/InactiveInstance/index.d.ts +0 -0
  462. /package/{pages → dist/pages}/Instance/InactiveInstance/index.js +0 -0
  463. /package/{pages → dist/pages}/Instance/InactiveInstance/utils.d.ts +0 -0
  464. /package/{pages → dist/pages}/Instance/InactiveInstance/utils.js +0 -0
  465. /package/{pages → dist/pages}/Instance/Info/Connection/ConnectModal/Content/index.d.ts +0 -0
  466. /package/{pages → dist/pages}/Instance/Info/Connection/ConnectModal/Content/index.js +0 -0
  467. /package/{pages → dist/pages}/Instance/Info/Connection/ConnectModal/Content/utils.d.ts +0 -0
  468. /package/{pages → dist/pages}/Instance/Info/Connection/ConnectModal/Content/utils.js +0 -0
  469. /package/{pages → dist/pages}/Instance/Info/Connection/ConnectModal/index.d.ts +0 -0
  470. /package/{pages → dist/pages}/Instance/Info/Connection/ConnectModal/index.js +0 -0
  471. /package/{pages → dist/pages}/Instance/Info/Connection/index.d.ts +0 -0
  472. /package/{pages → dist/pages}/Instance/Info/Connection/index.js +0 -0
  473. /package/{pages → dist/pages}/Instance/Info/Details/index.d.ts +0 -0
  474. /package/{pages → dist/pages}/Instance/Info/Details/index.js +0 -0
  475. /package/{pages → dist/pages}/Instance/Info/Disks/Disk/ActionsMenu/index.d.ts +0 -0
  476. /package/{pages → dist/pages}/Instance/Info/Disks/Disk/ActionsMenu/index.js +0 -0
  477. /package/{pages → dist/pages}/Instance/Info/Disks/Disk/ProgressBar/PointerIcon.d.ts +0 -0
  478. /package/{pages → dist/pages}/Instance/Info/Disks/Disk/ProgressBar/PointerIcon.js +0 -0
  479. /package/{pages → dist/pages}/Instance/Info/Disks/Disk/Status/index.d.ts +0 -0
  480. /package/{pages → dist/pages}/Instance/Info/Disks/Disk/Status/index.js +0 -0
  481. /package/{pages → dist/pages}/Instance/Info/Disks/index.d.ts +0 -0
  482. /package/{pages → dist/pages}/Instance/Info/Icons/index.d.ts +0 -0
  483. /package/{pages → dist/pages}/Instance/Info/Icons/index.js +0 -0
  484. /package/{pages → dist/pages}/Instance/Info/Retrieval/ConfirmFullRefreshModal/index.d.ts +0 -0
  485. /package/{pages → dist/pages}/Instance/Info/Retrieval/ConfirmFullRefreshModal/index.js +0 -0
  486. /package/{pages → dist/pages}/Instance/Info/Retrieval/RefreshFailedAlert/index.d.ts +0 -0
  487. /package/{pages → dist/pages}/Instance/Info/Retrieval/RefreshFailedAlert/index.js +0 -0
  488. /package/{pages → dist/pages}/Instance/Info/Retrieval/RetrievalModal/index.d.ts +0 -0
  489. /package/{pages → dist/pages}/Instance/Info/Retrieval/RetrievalModal/index.js +0 -0
  490. /package/{pages → dist/pages}/Instance/Info/Retrieval/RetrievalTable/index.d.ts +0 -0
  491. /package/{pages → dist/pages}/Instance/Info/Retrieval/RetrievalTable/index.js +0 -0
  492. /package/{pages → dist/pages}/Instance/Info/Retrieval/index.d.ts +0 -0
  493. /package/{pages → dist/pages}/Instance/Info/Retrieval/index.js +0 -0
  494. /package/{pages → dist/pages}/Instance/Info/Retrieval/utils.d.ts +0 -0
  495. /package/{pages → dist/pages}/Instance/Info/Retrieval/utils.js +0 -0
  496. /package/{pages → dist/pages}/Instance/Info/Snapshots/Calendar/Day/index.d.ts +0 -0
  497. /package/{pages → dist/pages}/Instance/Info/Snapshots/Calendar/Day/index.js +0 -0
  498. /package/{pages → dist/pages}/Instance/Info/Snapshots/Calendar/index.d.ts +0 -0
  499. /package/{pages → dist/pages}/Instance/Info/Snapshots/Calendar/index.js +0 -0
  500. /package/{pages → dist/pages}/Instance/Info/Snapshots/Calendar/utils.d.ts +0 -0
  501. /package/{pages → dist/pages}/Instance/Info/Snapshots/Calendar/utils.js +0 -0
  502. /package/{pages → dist/pages}/Instance/Info/Snapshots/TimeLine/Day/index.d.ts +0 -0
  503. /package/{pages → dist/pages}/Instance/Info/Snapshots/TimeLine/Day/index.js +0 -0
  504. /package/{pages → dist/pages}/Instance/Info/Snapshots/TimeLine/index.d.ts +0 -0
  505. /package/{pages → dist/pages}/Instance/Info/Snapshots/TimeLine/index.js +0 -0
  506. /package/{pages → dist/pages}/Instance/Info/Snapshots/index.d.ts +0 -0
  507. /package/{pages → dist/pages}/Instance/Info/Snapshots/index.js +0 -0
  508. /package/{pages → dist/pages}/Instance/Info/Snapshots/utils.d.ts +0 -0
  509. /package/{pages → dist/pages}/Instance/Info/Snapshots/utils.js +0 -0
  510. /package/{pages → dist/pages}/Instance/Info/Status/InstanceResponseModal/index.d.ts +0 -0
  511. /package/{pages → dist/pages}/Instance/Info/Status/InstanceResponseModal/index.js +0 -0
  512. /package/{pages → dist/pages}/Instance/Info/Status/index.d.ts +0 -0
  513. /package/{pages → dist/pages}/Instance/Info/Status/index.js +0 -0
  514. /package/{pages → dist/pages}/Instance/Info/Status/utils.d.ts +0 -0
  515. /package/{pages → dist/pages}/Instance/Info/Status/utils.js +0 -0
  516. /package/{pages → dist/pages}/Instance/Info/components/Property/index.d.ts +0 -0
  517. /package/{pages → dist/pages}/Instance/Info/components/Property/index.js +0 -0
  518. /package/{pages → dist/pages}/Instance/Info/components/Section/index.d.ts +0 -0
  519. /package/{pages → dist/pages}/Instance/Info/components/Section/index.js +0 -0
  520. /package/{pages → dist/pages}/Instance/Info/components/ValueStatus/index.d.ts +0 -0
  521. /package/{pages → dist/pages}/Instance/Info/components/ValueStatus/index.js +0 -0
  522. /package/{pages → dist/pages}/Instance/Info/index.d.ts +0 -0
  523. /package/{pages → dist/pages}/Instance/Info/index.js +0 -0
  524. /package/{pages → dist/pages}/Instance/Snapshots/components/SnapshotHeader/index.d.ts +0 -0
  525. /package/{pages → dist/pages}/Instance/Snapshots/components/SnapshotHeader/index.js +0 -0
  526. /package/{pages → dist/pages}/Instance/Snapshots/components/SnapshotsList/index.d.ts +0 -0
  527. /package/{pages → dist/pages}/Instance/Snapshots/components/SnapshotsModal/utils.d.ts +0 -0
  528. /package/{pages → dist/pages}/Instance/Snapshots/components/SnapshotsModal/utils.js +0 -0
  529. /package/{pages → dist/pages}/Instance/Snapshots/components/SnapshotsTable/index.d.ts +0 -0
  530. /package/{pages → dist/pages}/Instance/Snapshots/components/SnapshotsTable/index.js +0 -0
  531. /package/{pages → dist/pages}/Instance/Snapshots/index.d.ts +0 -0
  532. /package/{pages → dist/pages}/Instance/Snapshots/index.js +0 -0
  533. /package/{pages → dist/pages}/Instance/Snapshots/utils/index.d.ts +0 -0
  534. /package/{pages → dist/pages}/Instance/Snapshots/utils/index.js +0 -0
  535. /package/{pages → dist/pages}/Instance/SnapshotsModal/index.d.ts +0 -0
  536. /package/{pages → dist/pages}/Instance/SnapshotsModal/index.js +0 -0
  537. /package/{pages → dist/pages}/Instance/Tabs/PlatformTabs.d.ts +0 -0
  538. /package/{pages → dist/pages}/Instance/Tabs/PlatformTabs.js +0 -0
  539. /package/{pages → dist/pages}/Instance/Tabs/index.d.ts +0 -0
  540. /package/{pages → dist/pages}/Instance/Tabs/index.js +0 -0
  541. /package/{pages → dist/pages}/Instance/Tabs/styles.d.ts +0 -0
  542. /package/{pages → dist/pages}/Instance/Tabs/styles.js +0 -0
  543. /package/{pages → dist/pages}/Instance/components/ErrorStub/index.d.ts +0 -0
  544. /package/{pages → dist/pages}/Instance/components/ErrorStub/index.js +0 -0
  545. /package/{pages → dist/pages}/Instance/components/ModalReloadButton/index.d.ts +0 -0
  546. /package/{pages → dist/pages}/Instance/components/ModalReloadButton/index.js +0 -0
  547. /package/{pages → dist/pages}/Instance/components/Tags/Tag/index.d.ts +0 -0
  548. /package/{pages → dist/pages}/Instance/components/Tags/Tag/index.js +0 -0
  549. /package/{pages → dist/pages}/Instance/components/Tags/index.d.ts +0 -0
  550. /package/{pages → dist/pages}/Instance/components/Tags/index.js +0 -0
  551. /package/{pages → dist/pages}/Instance/context.d.ts +0 -0
  552. /package/{pages → dist/pages}/Instance/context.js +0 -0
  553. /package/{pages → dist/pages}/Instance/index.d.ts +0 -0
  554. /package/{pages → dist/pages}/Instance/index.js +0 -0
  555. /package/{pages → dist/pages}/Instance/stores/ClonesModal.d.ts +0 -0
  556. /package/{pages → dist/pages}/Instance/stores/ClonesModal.js +0 -0
  557. /package/{pages → dist/pages}/Instance/stores/Main.d.ts +0 -0
  558. /package/{pages → dist/pages}/Instance/stores/Main.js +0 -0
  559. /package/{pages → dist/pages}/Instance/stores/SnapshotsModal.d.ts +0 -0
  560. /package/{pages → dist/pages}/Instance/stores/SnapshotsModal.js +0 -0
  561. /package/{pages → dist/pages}/Instance/useCreatedStores.d.ts +0 -0
  562. /package/{pages → dist/pages}/Instance/useCreatedStores.js +0 -0
  563. /package/{pages → dist/pages}/Logs/Icons/PlusIcon.d.ts +0 -0
  564. /package/{pages → dist/pages}/Logs/Icons/PlusIcon.js +0 -0
  565. /package/{pages → dist/pages}/Logs/constants/index.d.ts +0 -0
  566. /package/{pages → dist/pages}/Logs/constants/index.js +0 -0
  567. /package/{pages → dist/pages}/Logs/hooks/useWsScroll.d.ts +0 -0
  568. /package/{pages → dist/pages}/Logs/hooks/useWsScroll.js +0 -0
  569. /package/{pages → dist/pages}/Logs/index.d.ts +0 -0
  570. /package/{pages → dist/pages}/Logs/index.js +0 -0
  571. /package/{pages → dist/pages}/Logs/utils/index.d.ts +0 -0
  572. /package/{pages → dist/pages}/Logs/utils/index.js +0 -0
  573. /package/{pages → dist/pages}/Logs/wsLogs.d.ts +0 -0
  574. /package/{pages → dist/pages}/Logs/wsLogs.js +0 -0
  575. /package/{pages → dist/pages}/Logs/wsSnackbar.d.ts +0 -0
  576. /package/{pages → dist/pages}/Logs/wsSnackbar.js +0 -0
  577. /package/{pages → dist/pages}/Snapshots/Snapshot/DestorySnapshotModal/index.d.ts +0 -0
  578. /package/{pages → dist/pages}/Snapshots/Snapshot/DestorySnapshotModal/index.js +0 -0
  579. /package/{pages → dist/pages}/Snapshots/Snapshot/context.d.ts +0 -0
  580. /package/{pages → dist/pages}/Snapshots/Snapshot/context.js +0 -0
  581. /package/{pages → dist/pages}/Snapshots/Snapshot/index.d.ts +0 -0
  582. /package/{pages → dist/pages}/Snapshots/Snapshot/index.js +0 -0
  583. /package/{pages → dist/pages}/Snapshots/Snapshot/stores/Main.d.ts +0 -0
  584. /package/{pages → dist/pages}/Snapshots/Snapshot/stores/Main.js +0 -0
  585. /package/{pages → dist/pages}/Snapshots/Snapshot/useCreatedStores.d.ts +0 -0
  586. /package/{pages → dist/pages}/Snapshots/Snapshot/useCreatedStores.js +0 -0
  587. /package/{stores → dist/stores}/Snapshots.d.ts +0 -0
  588. /package/{stores → dist/stores}/Snapshots.js +0 -0
  589. /package/{styles → dist/styles}/colors.d.ts +0 -0
  590. /package/{styles → dist/styles}/colors.js +0 -0
  591. /package/{styles → dist/styles}/icons.d.ts +0 -0
  592. /package/{styles → dist/styles}/icons.js +0 -0
  593. /package/{styles → dist/styles}/styles.d.ts +0 -0
  594. /package/{styles → dist/styles}/styles.js +0 -0
  595. /package/{styles → dist/styles}/theme.d.ts +0 -0
  596. /package/{styles → dist/styles}/theme.js +0 -0
  597. /package/{styles → dist/styles}/vars.d.ts +0 -0
  598. /package/{styles → dist/styles}/vars.js +0 -0
  599. /package/{types → dist/types}/api/endpoints/createBranch.d.ts +0 -0
  600. /package/{types → dist/types}/api/endpoints/createBranch.js +0 -0
  601. /package/{types → dist/types}/api/endpoints/createClone.js +0 -0
  602. /package/{types → dist/types}/api/endpoints/createSnapshot.d.ts +0 -0
  603. /package/{types → dist/types}/api/endpoints/createSnapshot.js +0 -0
  604. /package/{types → dist/types}/api/endpoints/deleteBranch.d.ts +0 -0
  605. /package/{types → dist/types}/api/endpoints/deleteBranch.js +0 -0
  606. /package/{types → dist/types}/api/endpoints/destroyClone.d.ts +0 -0
  607. /package/{types → dist/types}/api/endpoints/destroyClone.js +0 -0
  608. /package/{types → dist/types}/api/endpoints/destroySnapshot.d.ts +0 -0
  609. /package/{types → dist/types}/api/endpoints/destroySnapshot.js +0 -0
  610. /package/{types → dist/types}/api/endpoints/fullRefresh.d.ts +0 -0
  611. /package/{types → dist/types}/api/endpoints/fullRefresh.js +0 -0
  612. /package/{types → dist/types}/api/endpoints/getBranchSnapshot.d.ts +0 -0
  613. /package/{types → dist/types}/api/endpoints/getBranchSnapshot.js +0 -0
  614. /package/{types → dist/types}/api/endpoints/getBranches.d.ts +0 -0
  615. /package/{types → dist/types}/api/endpoints/getBranches.js +0 -0
  616. /package/{types → dist/types}/api/endpoints/getClone.d.ts +0 -0
  617. /package/{types → dist/types}/api/endpoints/getClone.js +0 -0
  618. /package/{types → dist/types}/api/endpoints/getConfig.d.ts +0 -0
  619. /package/{types → dist/types}/api/endpoints/getConfig.js +0 -0
  620. /package/{types → dist/types}/api/endpoints/getEngine.d.ts +0 -0
  621. /package/{types → dist/types}/api/endpoints/getEngine.js +0 -0
  622. /package/{types → dist/types}/api/endpoints/getFullConfig.d.ts +0 -0
  623. /package/{types → dist/types}/api/endpoints/getFullConfig.js +0 -0
  624. /package/{types → dist/types}/api/endpoints/getInstance.d.ts +0 -0
  625. /package/{types → dist/types}/api/endpoints/getInstance.js +0 -0
  626. /package/{types → dist/types}/api/endpoints/getInstanceRetrieval.d.ts +0 -0
  627. /package/{types → dist/types}/api/endpoints/getInstanceRetrieval.js +0 -0
  628. /package/{types → dist/types}/api/endpoints/getSeImages.d.ts +0 -0
  629. /package/{types → dist/types}/api/endpoints/getSeImages.js +0 -0
  630. /package/{types → dist/types}/api/endpoints/getSnapshotList.d.ts +0 -0
  631. /package/{types → dist/types}/api/endpoints/getSnapshotList.js +0 -0
  632. /package/{types → dist/types}/api/endpoints/getSnapshots.d.ts +0 -0
  633. /package/{types → dist/types}/api/endpoints/getSnapshots.js +0 -0
  634. /package/{types → dist/types}/api/endpoints/getWSToken.d.ts +0 -0
  635. /package/{types → dist/types}/api/endpoints/getWSToken.js +0 -0
  636. /package/{types → dist/types}/api/endpoints/initWS.d.ts +0 -0
  637. /package/{types → dist/types}/api/endpoints/initWS.js +0 -0
  638. /package/{types → dist/types}/api/endpoints/refreshInstance.d.ts +0 -0
  639. /package/{types → dist/types}/api/endpoints/refreshInstance.js +0 -0
  640. /package/{types → dist/types}/api/endpoints/resetClone.d.ts +0 -0
  641. /package/{types → dist/types}/api/endpoints/resetClone.js +0 -0
  642. /package/{types → dist/types}/api/endpoints/testDbSource.d.ts +0 -0
  643. /package/{types → dist/types}/api/endpoints/testDbSource.js +0 -0
  644. /package/{types → dist/types}/api/endpoints/updateClone.js +0 -0
  645. /package/{types → dist/types}/api/endpoints/updateConfig.d.ts +0 -0
  646. /package/{types → dist/types}/api/endpoints/updateConfig.js +0 -0
  647. /package/{types → dist/types}/api/entities/branchSnapshot.d.ts +0 -0
  648. /package/{types → dist/types}/api/entities/branchSnapshot.js +0 -0
  649. /package/{types → dist/types}/api/entities/branchSnapshots.d.ts +0 -0
  650. /package/{types → dist/types}/api/entities/branchSnapshots.js +0 -0
  651. /package/{types → dist/types}/api/entities/config.d.ts +0 -0
  652. /package/{types → dist/types}/api/entities/createBranch.d.ts +0 -0
  653. /package/{types → dist/types}/api/entities/createBranch.js +0 -0
  654. /package/{types → dist/types}/api/entities/createSnapshot.d.ts +0 -0
  655. /package/{types → dist/types}/api/entities/createSnapshot.js +0 -0
  656. /package/{types → dist/types}/api/entities/dbSource.d.ts +0 -0
  657. /package/{types → dist/types}/api/entities/dbSource.js +0 -0
  658. /package/{types → dist/types}/api/entities/instance.js +0 -0
  659. /package/{types → dist/types}/api/entities/instanceRetrieval.d.ts +0 -0
  660. /package/{types → dist/types}/api/entities/instanceRetrieval.js +0 -0
  661. /package/{types → dist/types}/api/entities/pool.d.ts +0 -0
  662. /package/{types → dist/types}/api/entities/pool.js +0 -0
  663. /package/{types → dist/types}/api/entities/snapshot.d.ts +0 -0
  664. /package/{types → dist/types}/api/entities/snapshot.js +0 -0
  665. /package/{types → dist/types}/api/entities/wsToken.d.ts +0 -0
  666. /package/{types → dist/types}/api/entities/wsToken.js +0 -0
  667. /package/{utils → dist/utils}/api.d.ts +0 -0
  668. /package/{utils → dist/utils}/api.js +0 -0
  669. /package/{utils → dist/utils}/clone.d.ts +0 -0
  670. /package/{utils → dist/utils}/clone.js +0 -0
  671. /package/{utils → dist/utils}/connection.d.ts +0 -0
  672. /package/{utils → dist/utils}/connection.js +0 -0
  673. /package/{utils → dist/utils}/date.d.ts +0 -0
  674. /package/{utils → dist/utils}/date.js +0 -0
  675. /package/{utils → dist/utils}/instance.d.ts +0 -0
  676. /package/{utils → dist/utils}/instance.js +0 -0
  677. /package/{utils → dist/utils}/numbers.d.ts +0 -0
  678. /package/{utils → dist/utils}/numbers.js +0 -0
  679. /package/{utils → dist/utils}/react.d.ts +0 -0
  680. /package/{utils → dist/utils}/react.js +0 -0
  681. /package/{utils → dist/utils}/snapshot.d.ts +0 -0
  682. /package/{utils → dist/utils}/snapshot.js +0 -0
  683. /package/{utils → dist/utils}/strings.d.ts +0 -0
  684. /package/{utils → dist/utils}/strings.js +0 -0
  685. /package/{utils → dist/utils}/units.d.ts +0 -0
  686. /package/{utils → dist/utils}/units.js +0 -0
@@ -0,0 +1,47 @@
1
+ import 'whatwg-fetch'
2
+
3
+ type RequestParams = Record<string, unknown>
4
+
5
+ export type RequestOptions = RequestInit & {
6
+ params?: RequestParams
7
+ }
8
+
9
+ const serializeParams = (params: RequestParams | null) => {
10
+ if (!params) return null
11
+
12
+ const searchParams = new URLSearchParams()
13
+
14
+ Object.entries(params).map((param) => {
15
+ const [key, value] = param
16
+ searchParams.append(key, String(value))
17
+ })
18
+
19
+ return searchParams.toString()
20
+ }
21
+
22
+ const createUrl = (path: string, params: RequestParams | null) => {
23
+ const serializedParams = serializeParams(params)
24
+ const queryString = serializedParams ? `?${serializedParams}` : ''
25
+ return `${path}${queryString}`
26
+ }
27
+
28
+ export const request = async (path: string, options?: RequestOptions) => {
29
+ const { params = null, ...requestInit } = options ?? {}
30
+
31
+ const url = createUrl(path, params)
32
+
33
+ try {
34
+ return await window.fetch(url, {
35
+ ...requestInit,
36
+ headers: {
37
+ 'Content-Type': 'application/json',
38
+ ...requestInit?.headers,
39
+ },
40
+ })
41
+ } catch (e) {
42
+ return new Response(null, {
43
+ status: 500,
44
+ statusText: `Unknown error`,
45
+ })
46
+ }
47
+ }
@@ -0,0 +1,16 @@
1
+ import { useEffect, useState } from 'react'
2
+
3
+ export const useWindowDimensions = () => {
4
+ const [windowDimensions, setWindowDimensions] = useState(window.innerWidth)
5
+
6
+ useEffect(() => {
7
+ const handleResize = () => {
8
+ setWindowDimensions(window.innerWidth)
9
+ }
10
+
11
+ window.addEventListener('resize', handleResize)
12
+ return () => window.removeEventListener('resize', handleResize)
13
+ }, [])
14
+
15
+ return windowDimensions
16
+ }
@@ -0,0 +1,31 @@
1
+ /*--------------------------------------------------------------------------
2
+ * Copyright (c) 2019-2021, Postgres.ai, Nikolay Samokhvalov nik@postgres.ai
3
+ * All Rights Reserved. Proprietary and confidential.
4
+ * Unauthorized copying of this file, via any medium is strictly prohibited
5
+ *--------------------------------------------------------------------------
6
+ */
7
+
8
+ import React from 'react'
9
+
10
+ type Props = {
11
+ className?: string
12
+ onClick?: () => void
13
+ }
14
+
15
+ export const ArrowDropDownIcon = (props: Props) => {
16
+ return (
17
+ <svg
18
+ className={props.className}
19
+ viewBox="0 0 8 6"
20
+ fill="none"
21
+ xmlns="http://www.w3.org/2000/svg"
22
+ onClick={props.onClick}
23
+ >
24
+ <path
25
+ // eslint-disable-next-line max-len
26
+ d="M7.8515 0.898419C7.75261 0.799446 7.63538 0.75 7.49994 0.75H0.500038C0.364534 0.75 0.247392 0.799446 0.148419 0.898419C0.0494455 0.997501 0 1.11464 0 1.25006C0 1.38546 0.0494455 1.5026 0.148419 1.6016L3.64838 5.10156C3.74746 5.20054 3.86461 5.25009 4 5.25009C4.13539 5.25009 4.25265 5.20054 4.35154 5.10156L7.8515 1.60157C7.95036 1.5026 8 1.38546 8 1.25004C8 1.11464 7.95036 0.997501 7.8515 0.898419Z"
27
+ fill="currentColor"
28
+ />
29
+ </svg>
30
+ )
31
+ }
@@ -0,0 +1,27 @@
1
+ /*--------------------------------------------------------------------------
2
+ * Copyright (c) 2019-2021, Postgres.ai, Nikolay Samokhvalov nik@postgres.ai
3
+ * All Rights Reserved. Proprietary and confidential.
4
+ * Unauthorized copying of this file, via any medium is strictly prohibited
5
+ *--------------------------------------------------------------------------
6
+ */
7
+
8
+ import React from 'react'
9
+
10
+ type Props = {
11
+ className?: string
12
+ }
13
+
14
+ export const CircleIcon = (props: Props) => {
15
+ const { className } = props
16
+
17
+ return (
18
+ <svg
19
+ className={className}
20
+ viewBox="0 0 10 10"
21
+ version="1.1"
22
+ xmlns="http://www.w3.org/2000/svg"
23
+ >
24
+ <circle cx="5" cy="5" r="5" fill="currentColor"></circle>
25
+ </svg>
26
+ )
27
+ }
@@ -0,0 +1,14 @@
1
+ export const ExternalIcon = ({ className }: { className: string }) => (
2
+ <svg
3
+ width="24px"
4
+ height="24px"
5
+ viewBox="0 0 24 24"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ className={className}
8
+ >
9
+ <path
10
+ fill="#551A8B"
11
+ d="M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z"
12
+ />
13
+ </svg>
14
+ )
@@ -0,0 +1,12 @@
1
+ export const InfoIcon = ({ className }: { className?: string }) => (
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ viewBox="0 0 12 12"
5
+ className={className}
6
+ >
7
+ <g fill="currentColor" fillRule="nonzero">
8
+ <path d="M6 0C2.692 0 0 2.692 0 6s2.692 6 6 6 6-2.692 6-6-2.692-6-6-6Zm0 10.91A4.915 4.915 0 0 1 1.09 6 4.915 4.915 0 0 1 6 1.09 4.915 4.915 0 0 1 10.91 6 4.915 4.915 0 0 1 6 10.91Z" />
9
+ <path d="M6 2.545A.728.728 0 0 0 6 4a.728.728 0 0 0 0-1.455ZM6 5.09a.545.545 0 0 0-.545.546V8.91a.545.545 0 0 0 1.09 0V5.636A.545.545 0 0 0 6 5.091Z" />
10
+ </g>
11
+ </svg>
12
+ )
@@ -0,0 +1,18 @@
1
+ export const PostgresSQLIcon = () => (
2
+ <svg
3
+ className="postgres-logo"
4
+ viewBox="0 0 128 128"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ >
7
+ <path d="M93.809 92.112c.785-6.533.55-7.492 5.416-6.433l1.235.108c3.742.17 8.637-.602 11.513-1.938 6.191-2.873 9.861-7.668 3.758-6.409-13.924 2.873-14.881-1.842-14.881-1.842 14.703-21.815 20.849-49.508 15.543-56.287-14.47-18.489-39.517-9.746-39.936-9.52l-.134.025c-2.751-.571-5.83-.912-9.289-.968-6.301-.104-11.082 1.652-14.709 4.402 0 0-44.683-18.409-42.604 23.151.442 8.841 12.672 66.898 27.26 49.362 5.332-6.412 10.484-11.834 10.484-11.834 2.558 1.699 5.622 2.567 8.834 2.255l.249-.212c-.078.796-.044 1.575.099 2.497-3.757 4.199-2.653 4.936-10.166 6.482-7.602 1.566-3.136 4.355-.221 5.084 3.535.884 11.712 2.136 17.238-5.598l-.22.882c1.474 1.18 1.375 8.477 1.583 13.69.209 5.214.558 10.079 1.621 12.948 1.063 2.868 2.317 10.256 12.191 8.14 8.252-1.764 14.561-4.309 15.136-27.985" />
8
+ <path d="M75.458 125.256c-4.367 0-7.211-1.689-8.938-3.32-2.607-2.46-3.641-5.629-4.259-7.522l-.267-.79c-1.244-3.358-1.666-8.193-1.916-14.419-.038-.935-.064-1.898-.093-2.919-.021-.747-.047-1.684-.085-2.664a18.8 18.8 0 01-4.962 1.568c-3.079.526-6.389.356-9.84-.507-2.435-.609-4.965-1.871-6.407-3.82-4.203 3.681-8.212 3.182-10.396 2.453-3.853-1.285-7.301-4.896-10.542-11.037-2.309-4.375-4.542-10.075-6.638-16.943-3.65-11.96-5.969-24.557-6.175-28.693C4.292 23.698 7.777 14.44 15.296 9.129 27.157.751 45.128 5.678 51.68 7.915c4.402-2.653 9.581-3.944 15.433-3.851 3.143.051 6.136.327 8.916.823 2.9-.912 8.628-2.221 15.185-2.139 12.081.144 22.092 4.852 28.949 13.615 4.894 6.252 2.474 19.381.597 26.651-2.642 10.226-7.271 21.102-12.957 30.57 1.544.011 3.781-.174 6.961-.831 6.274-1.295 8.109 2.069 8.607 3.575 1.995 6.042-6.677 10.608-9.382 11.864-3.466 1.609-9.117 2.589-13.745 2.377l-.202-.013-1.216-.107-.12 1.014-.116.991c-.311 11.999-2.025 19.598-5.552 24.619-3.697 5.264-8.835 6.739-13.361 7.709-1.544.33-2.947.474-4.219.474zm-9.19-43.671c2.819 2.256 3.066 6.501 3.287 14.434.028.99.054 1.927.089 2.802.106 2.65.355 8.855 1.327 11.477.137.371.26.747.39 1.146 1.083 3.316 1.626 4.979 6.309 3.978 3.931-.843 5.952-1.599 7.534-3.851 2.299-3.274 3.585-9.86 3.821-19.575l4.783.116-4.75-.57.14-1.186c.455-3.91.783-6.734 3.396-8.602 2.097-1.498 4.486-1.353 6.389-1.01-2.091-1.58-2.669-3.433-2.823-4.193l-.399-1.965 1.121-1.663c6.457-9.58 11.781-21.354 14.609-32.304 2.906-11.251 2.02-17.226 1.134-18.356-11.729-14.987-32.068-8.799-34.192-8.097l-.359.194-1.8.335-.922-.191c-2.542-.528-5.366-.82-8.393-.869-4.756-.08-8.593 1.044-11.739 3.431l-2.183 1.655-2.533-1.043c-5.412-2.213-21.308-6.662-29.696-.721-4.656 3.298-6.777 9.76-6.305 19.207.156 3.119 2.275 14.926 5.771 26.377 4.831 15.825 9.221 21.082 11.054 21.693.32.108 1.15-.537 1.976-1.529a270.708 270.708 0 0110.694-12.07l2.77-2.915 3.349 2.225c1.35.897 2.839 1.406 4.368 1.502l7.987-6.812-1.157 11.808c-.026.265-.039.626.065 1.296l.348 2.238-1.51 1.688-.174.196 4.388 2.025 1.836-2.301z" />
9
+ <path
10
+ fill="#336791"
11
+ d="M115.731 77.44c-13.925 2.873-14.882-1.842-14.882-1.842 14.703-21.816 20.849-49.51 15.545-56.287C101.924.823 76.875 9.566 76.457 9.793l-.135.024c-2.751-.571-5.83-.911-9.291-.967-6.301-.103-11.08 1.652-14.707 4.402 0 0-44.684-18.408-42.606 23.151.442 8.842 12.672 66.899 27.26 49.363 5.332-6.412 10.483-11.834 10.483-11.834 2.559 1.699 5.622 2.567 8.833 2.255l.25-.212c-.078.796-.042 1.575.1 2.497-3.758 4.199-2.654 4.936-10.167 6.482-7.602 1.566-3.136 4.355-.22 5.084 3.534.884 11.712 2.136 17.237-5.598l-.221.882c1.473 1.18 2.507 7.672 2.334 13.557-.174 5.885-.29 9.926.871 13.082 1.16 3.156 2.316 10.256 12.192 8.14 8.252-1.768 12.528-6.351 13.124-13.995.422-5.435 1.377-4.631 1.438-9.49l.767-2.3c.884-7.367.14-9.743 5.225-8.638l1.235.108c3.742.17 8.639-.602 11.514-1.938 6.19-2.871 9.861-7.667 3.758-6.408z"
12
+ />
13
+ <path
14
+ fill="#fff"
15
+ d="M75.957 122.307c-8.232 0-10.84-6.519-11.907-9.185-1.562-3.907-1.899-19.069-1.551-31.503a1.59 1.59 0 011.64-1.55 1.594 1.594 0 011.55 1.639c-.401 14.341.168 27.337 1.324 30.229 1.804 4.509 4.54 8.453 12.275 6.796 7.343-1.575 10.093-4.359 11.318-11.46.94-5.449 2.799-20.951 3.028-24.01a1.593 1.593 0 011.71-1.472 1.597 1.597 0 011.472 1.71c-.239 3.185-2.089 18.657-3.065 24.315-1.446 8.387-5.185 12.191-13.794 14.037-1.463.313-2.792.453-4 .454zM31.321 90.466a6.71 6.71 0 01-2.116-.35c-5.347-1.784-10.44-10.492-15.138-25.885-3.576-11.717-5.842-23.947-6.041-27.922-.589-11.784 2.445-20.121 9.02-24.778 13.007-9.216 34.888-.44 35.813-.062a1.596 1.596 0 01-1.207 2.955c-.211-.086-21.193-8.492-32.768-.285-5.622 3.986-8.203 11.392-7.672 22.011.167 3.349 2.284 15.285 5.906 27.149 4.194 13.742 8.967 22.413 13.096 23.79.648.216 2.62.873 5.439-2.517A245.272 245.272 0 0145.88 73.046a1.596 1.596 0 012.304 2.208c-.048.05-4.847 5.067-10.077 11.359-2.477 2.979-4.851 3.853-6.786 3.853zm69.429-13.445a1.596 1.596 0 01-1.322-2.487c14.863-22.055 20.08-48.704 15.612-54.414-5.624-7.186-13.565-10.939-23.604-11.156-7.433-.16-13.341 1.738-14.307 2.069l-.243.099c-.971.305-1.716-.227-1.997-.849a1.6 1.6 0 01.631-2.025c.046-.027.192-.089.429-.176l-.021.006.021-.007c1.641-.601 7.639-2.4 15.068-2.315 11.108.118 20.284 4.401 26.534 12.388 2.957 3.779 2.964 12.485.019 23.887-3.002 11.625-8.651 24.118-15.497 34.277-.306.457-.81.703-1.323.703zm.76 10.21c-2.538 0-4.813-.358-6.175-1.174-1.4-.839-1.667-1.979-1.702-2.584-.382-6.71 3.32-7.878 5.208-8.411-.263-.398-.637-.866-1.024-1.349-1.101-1.376-2.609-3.26-3.771-6.078-.182-.44-.752-1.463-1.412-2.648-3.579-6.418-11.026-19.773-6.242-26.612 2.214-3.165 6.623-4.411 13.119-3.716C97.6 28.837 88.5 10.625 66.907 10.271c-6.494-.108-11.82 1.889-15.822 5.93-8.96 9.049-8.636 25.422-8.631 25.586a1.595 1.595 0 11-3.19.084c-.02-.727-.354-17.909 9.554-27.916C53.455 9.272 59.559 6.96 66.96 7.081c13.814.227 22.706 7.25 27.732 13.101 5.479 6.377 8.165 13.411 8.386 15.759.165 1.746-1.088 2.095-1.341 2.147l-.576.013c-6.375-1.021-10.465-.312-12.156 2.104-3.639 5.201 3.406 17.834 6.414 23.229.768 1.376 1.322 2.371 1.576 2.985.988 2.396 2.277 4.006 3.312 5.3.911 1.138 1.7 2.125 1.982 3.283.131.23 1.99 2.98 13.021.703 2.765-.57 4.423-.083 4.93 1.45.997 3.015-4.597 6.532-7.694 7.97-2.775 1.29-7.204 2.106-11.036 2.106zm-4.696-4.021c.35.353 2.101.962 5.727.806 3.224-.138 6.624-.839 8.664-1.786 2.609-1.212 4.351-2.567 5.253-3.492l-.5.092c-7.053 1.456-12.042 1.262-14.828-.577a6.162 6.162 0 01-.54-.401c-.302.119-.581.197-.78.253-1.58.443-3.214.902-2.996 5.105zm-45.562 8.915c-1.752 0-3.596-.239-5.479-.71-1.951-.488-5.24-1.957-5.19-4.37.057-2.707 3.994-3.519 5.476-3.824 5.354-1.103 5.703-1.545 7.376-3.67.488-.619 1.095-1.39 1.923-2.314 1.229-1.376 2.572-2.073 3.992-2.073.989 0 1.8.335 2.336.558 1.708.708 3.133 2.42 3.719 4.467.529 1.847.276 3.625-.71 5.006-3.237 4.533-7.886 6.93-13.443 6.93zm-7.222-4.943c.481.372 1.445.869 2.518 1.137 1.631.408 3.213.615 4.705.615 4.546 0 8.196-1.882 10.847-5.594.553-.774.387-1.757.239-2.274-.31-1.083-1.08-2.068-1.873-2.397-.43-.178-.787-.314-1.115-.314-.176 0-.712 0-1.614 1.009a41.146 41.146 0 00-1.794 2.162c-2.084 2.646-3.039 3.544-9.239 4.821-1.513.31-2.289.626-2.674.835zm12.269-7.36a1.596 1.596 0 01-1.575-1.354 8.218 8.218 0 01-.08-.799c-4.064-.076-7.985-1.82-10.962-4.926-3.764-3.927-5.477-9.368-4.699-14.927.845-6.037.529-11.366.359-14.229-.047-.796-.081-1.371-.079-1.769.003-.505.013-1.844 4.489-4.113 1.592-.807 4.784-2.215 8.271-2.576 5.777-.597 9.585 1.976 10.725 7.246 3.077 14.228.244 20.521-1.825 25.117-.385.856-.749 1.664-1.04 2.447l-.257.69c-1.093 2.931-2.038 5.463-1.748 7.354a1.595 1.595 0 01-1.335 1.819l-.244.02zM42.464 42.26l.062 1.139c.176 2.974.504 8.508-.384 14.86-.641 4.585.759 9.06 3.843 12.276 2.437 2.542 5.644 3.945 8.94 3.945h.068c.369-1.555.982-3.197 1.642-4.966l.255-.686c.329-.884.714-1.74 1.122-2.646 1.991-4.424 4.47-9.931 1.615-23.132-.565-2.615-1.936-4.128-4.189-4.627-4.628-1.022-11.525 2.459-12.974 3.837zm9.63-.677c-.08.564 1.033 2.07 2.485 2.271 1.449.203 2.689-.975 2.768-1.539.079-.564-1.033-1.186-2.485-1.388-1.451-.202-2.691.092-2.768.656zm2.818 2.826l-.407-.028c-.9-.125-1.81-.692-2.433-1.518-.219-.29-.576-.852-.505-1.354.101-.736.999-1.177 2.4-1.177.313 0 .639.023.967.069.766.106 1.477.327 2.002.62.91.508.977 1.075.936 1.368-.112.813-1.405 2.02-2.96 2.02zm-2.289-2.732c.045.348.907 1.496 2.029 1.651l.261.018c1.036 0 1.81-.815 1.901-1.082-.096-.182-.762-.634-2.025-.81a5.823 5.823 0 00-.821-.059c-.812 0-1.243.183-1.345.282zm43.605-1.245c.079.564-1.033 2.07-2.484 2.272-1.45.202-2.691-.975-2.771-1.539-.076-.564 1.036-1.187 2.486-1.388 1.45-.203 2.689.092 2.769.655zm-2.819 2.56c-1.396 0-2.601-1.086-2.7-1.791-.115-.846 1.278-1.489 2.712-1.688.316-.044.629-.066.93-.066 1.238 0 2.058.363 2.14.949.053.379-.238.964-.739 1.492-.331.347-1.026.948-1.973 1.079l-.37.025zm.943-3.013c-.276 0-.564.021-.856.061-1.441.201-2.301.779-2.259 1.089.048.341.968 1.332 2.173 1.332l.297-.021c.787-.109 1.378-.623 1.66-.919.443-.465.619-.903.598-1.052-.028-.198-.56-.49-1.613-.49zm3.965 32.843a1.594 1.594 0 01-1.324-2.483c3.398-5.075 2.776-10.25 2.175-15.255-.257-2.132-.521-4.337-.453-6.453.07-2.177.347-3.973.614-5.71.317-2.058.617-4.002.493-6.31a1.595 1.595 0 113.186-.172c.142 2.638-.197 4.838-.525 6.967-.253 1.643-.515 3.342-.578 5.327-.061 1.874.178 3.864.431 5.97.64 5.322 1.365 11.354-2.691 17.411a1.596 1.596 0 01-1.328.708z"
16
+ />
17
+ </svg>
18
+ )
@@ -0,0 +1,65 @@
1
+ /*--------------------------------------------------------------------------
2
+ * Copyright (c) 2019-2021, Postgres.ai, Nikolay Samokhvalov nik@postgres.ai
3
+ * All Rights Reserved. Proprietary and confidential.
4
+ * Unauthorized copying of this file, via any medium is strictly prohibited
5
+ *--------------------------------------------------------------------------
6
+ */
7
+
8
+ import React from 'react'
9
+
10
+ type Props = {
11
+ className?: string
12
+ }
13
+
14
+ export const RenewableIcon = React.forwardRef<SVGSVGElement, Props>(
15
+ (props, ref) => {
16
+ const { className, ...hiddenProps } = props
17
+ return (
18
+ <svg
19
+ {...hiddenProps}
20
+ ref={ref}
21
+ className={className}
22
+ viewBox="0 0 10 10"
23
+ fill="none"
24
+ xmlns="http://www.w3.org/2000/svg"
25
+ >
26
+ <path
27
+ fillRule="evenodd"
28
+ clipRule="evenodd"
29
+ d="M6.14337 0L8.19809 2.9755L4.59387 3.26718L5.16139 2.07055C4.22847 2.10806 3.3161 2.48386 2.66614 3.18795L2.20594 2.76312C3.05679 1.84141 4.26977 1.40592 5.45883 1.44339L6.14337 0Z"
30
+ fill="currentColor"
31
+ />
32
+ <path
33
+ fillRule="evenodd"
34
+ clipRule="evenodd"
35
+ d="M9.7343 9.13905L6.12728 9.39371L7.71025 6.14261L8.45158 7.24009C8.89401 6.4179 9.03479 5.44126 8.75942 4.52346L9.35931 4.34347C9.71979 5.54495 9.47743 6.81074 8.8401 7.81527L9.7343 9.13905Z"
36
+ fill="currentColor"
37
+ />
38
+ <path
39
+ fillRule="evenodd"
40
+ clipRule="evenodd"
41
+ d="M0 7.57495L1.61898 4.34163L3.60962 7.36037L2.28757 7.43896C2.76953 8.23862 3.53811 8.85742 4.46813 9.08819L4.3173 9.69607C3.09983 9.39397 2.13422 8.54041 1.59468 7.48015L0 7.57495Z"
42
+ fill="currentColor"
43
+ />
44
+ <path
45
+ fillRule="evenodd"
46
+ clipRule="evenodd"
47
+ d="M6.26612 2.51078C5.07868 2.17637 3.73747 2.48899 2.89616 3.40036L1.97575 2.55072C3.17071 1.25624 5.01514 0.857134 6.60567 1.30506L6.26612 2.51078Z"
48
+ fill="currentColor"
49
+ />
50
+ <path
51
+ fillRule="evenodd"
52
+ clipRule="evenodd"
53
+ d="M7.33938 8.11969C8.34588 7.28131 8.83847 5.87691 8.45939 4.61345L9.65917 4.25348C10.1969 6.04581 9.49312 7.95595 8.14107 9.08215L7.33938 8.11969Z"
54
+ fill="currentColor"
55
+ />
56
+ <path
57
+ fillRule="evenodd"
58
+ clipRule="evenodd"
59
+ d="M2.07072 5.82736C2.20416 7.20026 3.19328 8.44922 4.54348 8.78425L4.24181 10C2.32911 9.5254 1.00387 7.79934 0.823976 5.94853L2.07072 5.82736Z"
60
+ fill="currentColor"
61
+ />
62
+ </svg>
63
+ )
64
+ },
65
+ )
@@ -0,0 +1,33 @@
1
+ /*--------------------------------------------------------------------------
2
+ * Copyright (c) 2019-2021, Postgres.ai, Nikolay Samokhvalov nik@postgres.ai
3
+ * All Rights Reserved. Proprietary and confidential.
4
+ * Unauthorized copying of this file, via any medium is strictly prohibited
5
+ *--------------------------------------------------------------------------
6
+ */
7
+
8
+ import React from 'react'
9
+
10
+ type Props = {
11
+ className?: string
12
+ }
13
+
14
+ export const ShieldIcon = React.forwardRef<SVGSVGElement, Props>(
15
+ (props, ref) => {
16
+ const { className, ...hiddenProps } = props
17
+ return (
18
+ <svg
19
+ {...hiddenProps}
20
+ ref={ref}
21
+ className={className}
22
+ viewBox="0 0 8 10"
23
+ fill="none"
24
+ xmlns="http://www.w3.org/2000/svg"
25
+ >
26
+ <path
27
+ d="M4.00195 0L0.251953 1.66667V4.16667C0.251953 6.47917 1.85195 8.64167 4.00195 9.16667C6.15195 8.64167 7.75195 6.47917 7.75195 4.16667V1.66667L4.00195 0ZM3.16862 6.66667L1.50195 5L2.08945 4.4125L3.16862 5.4875L5.91445 2.74167L6.50195 3.33333L3.16862 6.66667Z"
28
+ fill="currentColor"
29
+ />
30
+ </svg>
31
+ )
32
+ },
33
+ )
@@ -0,0 +1,29 @@
1
+ /*--------------------------------------------------------------------------
2
+ * Copyright (c) 2019-2021, Postgres.ai, Nikolay Samokhvalov nik@postgres.ai
3
+ * All Rights Reserved. Proprietary and confidential.
4
+ * Unauthorized copying of this file, via any medium is strictly prohibited
5
+ *--------------------------------------------------------------------------
6
+ */
7
+
8
+ import React from 'react'
9
+
10
+ type Props = {
11
+ className?: string
12
+ }
13
+
14
+ export const WarningIcon = (props: Props) => {
15
+ return (
16
+ <svg
17
+ className={props.className}
18
+ viewBox="0 0 10 10"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ >
22
+ <path
23
+ // eslint-disable-next-line max-len
24
+ d="M9.79222 7.49885L6.2597 1.00518C5.69214 0.04969 4.30861 0.0484205 3.74029 1.00518L0.207947 7.49885C-0.372248 8.4752 0.330193 9.71157 1.46736 9.71157H8.53251C9.66873 9.71157 10.3724 8.47619 9.79222 7.49885ZM5 8.53969C4.67699 8.53969 4.41406 8.27676 4.41406 7.95375C4.41406 7.63074 4.67699 7.36782 5 7.36782C5.323 7.36782 5.58593 7.63074 5.58593 7.95375C5.58593 8.27676 5.323 8.53969 5 8.53969ZM5.58593 6.19594C5.58593 6.51895 5.323 6.78188 5 6.78188C4.67699 6.78188 4.41406 6.51895 4.41406 6.19594V3.26625C4.41406 2.94324 4.67699 2.68032 5 2.68032C5.323 2.68032 5.58593 2.94324 5.58593 3.26625V6.19594Z"
25
+ fill="currentColor"
26
+ />
27
+ </svg>
28
+ )
29
+ }
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@postgres.ai/shared",
3
- "version": "4.0.3",
4
- "main": "index.js",
5
- "types": "index.d.ts",
6
- "peerDependencies": {
7
- "react": "^17.0.0 || ^18.0.0"
3
+ "version": "4.1.0",
4
+ "scripts": {
5
+ "build": "tsc -p tsconfig.build.json && node scripts/copy-assets.js",
6
+ "pack": "node scripts/pack.js"
7
+ },
8
+ "publishConfig": {
9
+ "access": "public"
8
10
  },
9
11
  "dependencies": {
10
- "@babel/core": "^7.13.0",
11
- "@craco/craco": "^7.0.0-alpha.7",
12
- "@emotion/react": "^11.10.5",
13
- "@emotion/styled": "^11.10.5",
12
+ "@emotion/react": "^11.14.0",
13
+ "@emotion/styled": "^11.14.0",
14
14
  "@material-ui/core": "^4.11.4",
15
15
  "@material-ui/icons": "^4.11.2",
16
16
  "@material-ui/lab": "^4.0.0-alpha.61",
@@ -22,14 +22,13 @@
22
22
  "@types/react-dom": "^17.0.10",
23
23
  "@types/react-router": "^5.1.17",
24
24
  "@types/react-router-dom": "^5.3.1",
25
- "@types/react-syntax-highlighter": "^15.5.6",
25
+ "@types/react-syntax-highlighter": "^15.5.13",
26
+ "byte-size": "^9.0.1",
26
27
  "classnames": "^2.3.1",
27
- "clsx": "^1.1.1",
28
+ "clsx": "^2.1.1",
28
29
  "copy-to-clipboard": "^3.3.1",
29
- "create-file-webpack": "^1.0.2",
30
- "crypto-browserify": "^3.12.0",
31
30
  "date-fns": "^2.22.1",
32
- "formik": "^2.2.9",
31
+ "formik": "^2.4.9",
33
32
  "get-user-locale": "^1.4.0",
34
33
  "mobx": "^6.3.5",
35
34
  "mobx-react-lite": "^3.2.1",
@@ -37,11 +36,19 @@
37
36
  "prop-types": "^15.7.2",
38
37
  "react": "^17.0.2",
39
38
  "react-countdown-hook": "^1.1.0",
40
- "react-scripts": "^5.0.0",
41
- "react-syntax-highlighter": "^15.5.0",
42
- "stream-browserify": "^3.0.0",
39
+ "react-dom": "^17.0.2",
40
+ "react-router": "^5.1.2",
41
+ "react-router-dom": "^5.1.2",
42
+ "react-syntax-highlighter": "^15.6.6",
43
43
  "typescript": "^4.8.3",
44
44
  "use-timer": "^2.0.1",
45
+ "whatwg-fetch": "^3.6.2",
45
46
  "yup": "^0.32.11"
47
+ },
48
+ "peerDependencies": {
49
+ "react": "^17.0.0 || ^18.0.0"
50
+ },
51
+ "devDependencies": {
52
+ "glob": "^11.1.0"
46
53
  }
47
- }
54
+ }
@@ -0,0 +1,25 @@
1
+ import { createStrictContext } from '@postgres.ai/shared/utils/react'
2
+
3
+ import { Api } from './stores/Main'
4
+ import { Stores } from './useCreatedStores'
5
+
6
+ export type Host = {
7
+ branchId: string
8
+ instanceId: string
9
+ routes: {
10
+ branch: () => string
11
+ branches: () => string
12
+ snapshot: (snapshotId: string) => string
13
+ createClone: (branchId: string) => string
14
+ }
15
+ api: Api
16
+ elements: {
17
+ breadcrumbs: React.ReactNode
18
+ }
19
+ }
20
+
21
+ export const { useStrictContext: useHost, Provider: HostProvider } =
22
+ createStrictContext<Host>()
23
+
24
+ export const { useStrictContext: useStores, Provider: StoresProvider } =
25
+ createStrictContext<Stores>()