@prostgles/prostgles 2.3.6-dev.1786548258
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.
- package/.dockerignore +14 -0
- package/.eslintrc.common.js +71 -0
- package/.gitattributes +2 -0
- package/.github/ISSUE_TEMPLATE/BUG.yml +52 -0
- package/.github/ISSUE_TEMPLATE/CUSTOM.yml +13 -0
- package/.github/ISSUE_TEMPLATE/FEATURE.yml +27 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +9 -0
- package/.github/ISSUE_TEMPLATE/config.yml +5 -0
- package/.github/ISSUE_TEMPLATE/custom.md +3 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +5 -0
- package/.github/workflows/docker_test.yml +46 -0
- package/.github/workflows/electron_build_linux.yml +40 -0
- package/.github/workflows/electron_build_macos.yml +36 -0
- package/.github/workflows/electron_build_windows.yml +34 -0
- package/.github/workflows/electron_linux_test.yml +24 -0
- package/.github/workflows/electron_macos_test.yml +25 -0
- package/.github/workflows/linux_test.yml +127 -0
- package/.github/workflows/macos_test.yml +63 -0
- package/.github/workflows/on_release.yml +185 -0
- package/.github/workflows/package_version_increased.yml +66 -0
- package/.github/workflows/publish_release.yml +67 -0
- package/.github/workflows/windows_test.yml +48 -0
- package/.prettierignore +5 -0
- package/.prettierrc +3 -0
- package/.vscode/settings.json +46 -0
- package/CODE_OF_CONDUCT +47 -0
- package/CONTRIBUTING +59 -0
- package/DB.Dockerfile +11 -0
- package/Dockerfile +31 -0
- package/LICENSE +661 -0
- package/PRIVACY +28 -0
- package/README.md +132 -0
- package/SECURITY.md +8 -0
- package/changelog/v1.0.0.md +5 -0
- package/changelog/v2.0.0.md +25 -0
- package/changelog/v2.2.0.md +13 -0
- package/changelog/v2.2.1.md +4 -0
- package/changelog/v2.2.2.md +3 -0
- package/changelog/v2.2.3.md +2 -0
- package/changelog/v2.2.4.md +3 -0
- package/changelog/v2.3.0.md +5 -0
- package/changelog/v2.3.1.md +1 -0
- package/changelog/v2.3.2.md +1 -0
- package/changelog/v2.3.3.md +2 -0
- package/changelog/v2.3.4.md +2 -0
- package/changelog/v2.3.5.md +2 -0
- package/changelog/v2.3.6.md +2 -0
- package/client/build.sh +1 -0
- package/client/eslint.config.mjs +114 -0
- package/client/package-lock.json +16513 -0
- package/client/package.json +108 -0
- package/client/public/manifest.json +12 -0
- package/client/public/robots.txt +3 -0
- package/client/setup-icons.js +59 -0
- package/client/src/App.css +31 -0
- package/client/src/App.tsx +364 -0
- package/client/src/Testing.ts +724 -0
- package/client/src/app/CommandPalette/CommandPalette.css +11 -0
- package/client/src/app/CommandPalette/CommandPalette.tsx +119 -0
- package/client/src/app/CommandPalette/Documentation.css +3 -0
- package/client/src/app/CommandPalette/Documentation.tsx +77 -0
- package/client/src/app/CommandPalette/DynamicComponent.tsx +87 -0
- package/client/src/app/CommandPalette/getDocumentation.ts +175 -0
- package/client/src/app/CommandPalette/getUIDocShortestPath.ts +62 -0
- package/client/src/app/CommandPalette/useCommandPaletteState.tsx +188 -0
- package/client/src/app/CommandPalette/useGoToUI.tsx +147 -0
- package/client/src/app/CommandPalette/useHighlightDocItem.ts +89 -0
- package/client/src/app/CommandPalette/utils.ts +111 -0
- package/client/src/app/UIDocs/UIInstallationUIDoc.ts +43 -0
- package/client/src/app/UIDocs/accountUIDoc.ts +128 -0
- package/client/src/app/UIDocs/commandPaletteUIDoc.ts +40 -0
- package/client/src/app/UIDocs/connection/AIAssistantUIDoc.ts +309 -0
- package/client/src/app/UIDocs/connection/agenticWorkflowsUIDoc.ts +37 -0
- package/client/src/app/UIDocs/connection/config/accessControlUIDoc.ts +44 -0
- package/client/src/app/UIDocs/connection/config/apiUIDoc.ts +95 -0
- package/client/src/app/UIDocs/connection/config/authentication.UIDoc.ts +96 -0
- package/client/src/app/UIDocs/connection/config/backupAndRestoreUIDoc.ts +238 -0
- package/client/src/app/UIDocs/connection/config/fileStorageUIDoc.ts +27 -0
- package/client/src/app/UIDocs/connection/connectionConfigUIDoc.ts +79 -0
- package/client/src/app/UIDocs/connection/dashboard/dashboardContentUIDoc.ts +27 -0
- package/client/src/app/UIDocs/connection/dashboard/dashboardMenuUIDoc.ts +189 -0
- package/client/src/app/UIDocs/connection/dashboard/mapUIDoc.ts +172 -0
- package/client/src/app/UIDocs/connection/dashboard/schemaGraphUIDoc.ts +66 -0
- package/client/src/app/UIDocs/connection/dashboard/serverSideFunctionUIDoc.ts +27 -0
- package/client/src/app/UIDocs/connection/dashboard/sqlEditorUIDoc.ts +284 -0
- package/client/src/app/UIDocs/connection/dashboard/table/addColumnMenuUIDoc.ts +250 -0
- package/client/src/app/UIDocs/connection/dashboard/table/columnMenuUIDoc.ts +123 -0
- package/client/src/app/UIDocs/connection/dashboard/table/paginationUIDoc.ts +56 -0
- package/client/src/app/UIDocs/connection/dashboard/table/smartFilterBarUIDoc.ts +126 -0
- package/client/src/app/UIDocs/connection/dashboard/table/smartFormUIDoc.ts +168 -0
- package/client/src/app/UIDocs/connection/dashboard/table/tableMenuUIDoc.ts +228 -0
- package/client/src/app/UIDocs/connection/dashboard/table/tableUIDoc.ts +90 -0
- package/client/src/app/UIDocs/connection/dashboard/timechartUIDoc.ts +169 -0
- package/client/src/app/UIDocs/connection/dashboardUIDoc.ts +176 -0
- package/client/src/app/UIDocs/connection/getCommonViewHeaderUIDoc.ts +146 -0
- package/client/src/app/UIDocs/connectionsUIDoc.ts +261 -0
- package/client/src/app/UIDocs/desktopInstallation.ts +32 -0
- package/client/src/app/UIDocs/editConnectionUIDoc.ts +131 -0
- package/client/src/app/UIDocs/navbarUIDoc.ts +145 -0
- package/client/src/app/UIDocs/overviewUIDoc.ts +31 -0
- package/client/src/app/UIDocs/serverSettingsUIDoc.ts +64 -0
- package/client/src/app/UIDocs.ts +274 -0
- package/client/src/app/XRealIpSpoofableAlert.tsx +39 -0
- package/client/src/app/domToSVG/SVGif/addSVGifCaption.ts +112 -0
- package/client/src/app/domToSVG/SVGif/addSVGifPointer.ts +59 -0
- package/client/src/app/domToSVG/SVGif/addSVGifTimelineControls.ts +94 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifCursorAnimationHandler.ts +162 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifCustomAnimation.ts +53 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifPropertiesAnimation.ts +50 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifTypeAnimation.ts +105 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifZoomToAnimation.ts +114 -0
- package/client/src/app/domToSVG/SVGif/compressSVGif.ts +86 -0
- package/client/src/app/domToSVG/SVGif/getSVGif.ts +111 -0
- package/client/src/app/domToSVG/SVGif/getSVGifAnimations.ts +318 -0
- package/client/src/app/domToSVG/SVGif/getSVGifKeyframes.ts +42 -0
- package/client/src/app/domToSVG/SVGif/getSVGifParsedScenes.ts +52 -0
- package/client/src/app/domToSVG/SVGif/getSVGifRevealKeyframes.ts +73 -0
- package/client/src/app/domToSVG/SVGif/getSVGifTargetBBox.ts +36 -0
- package/client/src/app/domToSVG/addFragmentViewBoxes.ts +43 -0
- package/client/src/app/domToSVG/containers/addOverflowClipPath.ts +117 -0
- package/client/src/app/domToSVG/containers/bgAndBorderToSVG.ts +204 -0
- package/client/src/app/domToSVG/containers/deduplicateSVGPaths.ts +128 -0
- package/client/src/app/domToSVG/containers/elementToSVG.ts +231 -0
- package/client/src/app/domToSVG/containers/rectangleToSVG.ts +196 -0
- package/client/src/app/domToSVG/containers/shadowToSVG.ts +52 -0
- package/client/src/app/domToSVG/domToSVG.ts +263 -0
- package/client/src/app/domToSVG/domToSvg2.ts +129 -0
- package/client/src/app/domToSVG/domToThemeAwareSVG.ts +361 -0
- package/client/src/app/domToSVG/getCorrespondingDarkNode.ts +87 -0
- package/client/src/app/domToSVG/graphics/fontIconToSVG.ts +141 -0
- package/client/src/app/domToSVG/graphics/getForeignObject.ts +43 -0
- package/client/src/app/domToSVG/graphics/imgToSVG.ts +140 -0
- package/client/src/app/domToSVG/setThemeForSVGScreenshot.ts +82 -0
- package/client/src/app/domToSVG/text/getTextForSVG.ts +243 -0
- package/client/src/app/domToSVG/text/textToSVG.ts +264 -0
- package/client/src/app/domToSVG/utils/addNewChildren.ts +55 -0
- package/client/src/app/domToSVG/utils/canvasToDataURL.ts +6 -0
- package/client/src/app/domToSVG/utils/copyAnimationStylesToSvg.ts +127 -0
- package/client/src/app/domToSVG/utils/getWhatToRenderOnSVG.ts +218 -0
- package/client/src/app/domToSVG/utils/isElementVisible.ts +144 -0
- package/client/src/app/domToSVG/utils/toFixed.ts +3 -0
- package/client/src/appUtils.ts +135 -0
- package/client/src/components/AlertProvider.tsx +99 -0
- package/client/src/components/Animations.css +207 -0
- package/client/src/components/Animations.tsx +130 -0
- package/client/src/components/Btn.css +235 -0
- package/client/src/components/Btn.tsx +603 -0
- package/client/src/components/ButtonBar.tsx +29 -0
- package/client/src/components/ButtonGroup.tsx +135 -0
- package/client/src/components/Chat/Chat.css +116 -0
- package/client/src/components/Chat/Chat.tsx +200 -0
- package/client/src/components/Chat/ChatFileAttachments/ChatFileAttachments.tsx +126 -0
- package/client/src/components/Chat/ChatMessage.tsx +38 -0
- package/client/src/components/Chat/ChatSendControls.tsx +117 -0
- package/client/src/components/Chat/ChatSpeech/ChatSpeech.tsx +201 -0
- package/client/src/components/Chat/ChatSpeech/ChatSpeechSetup.tsx +75 -0
- package/client/src/components/Chat/ChatSpeech/hooks/SpeechRecorder.ts +295 -0
- package/client/src/components/Chat/ChatSpeech/hooks/renderSpeechAudioLevelsIcon.ts +67 -0
- package/client/src/components/Chat/ChatSpeech/hooks/useSpeechRecorder.ts +59 -0
- package/client/src/components/Chat/ChatSpeech/hooks/useSpeechToTextWeb.ts +125 -0
- package/client/src/components/Chat/ChatSpeech/useChatSpeechSetup.ts +106 -0
- package/client/src/components/Chat/Marked.tsx +258 -0
- package/client/src/components/Chat/MonacoCodeInMarkdown/MarkdownMonacoCodeHeader.tsx +179 -0
- package/client/src/components/Chat/MonacoCodeInMarkdown/MonacoCodeInMarkdown.tsx +162 -0
- package/client/src/components/Chat/MonacoCodeInMarkdown/useOnRunSQL.ts +70 -0
- package/client/src/components/Chat/useChatFileUpload.ts +167 -0
- package/client/src/components/Chat/useChatOnPaste.ts +102 -0
- package/client/src/components/Chat/useChatState.ts +118 -0
- package/client/src/components/Checkbox.css +24 -0
- package/client/src/components/Checkbox.tsx +152 -0
- package/client/src/components/Chip.css +78 -0
- package/client/src/components/Chip.tsx +150 -0
- package/client/src/components/ClickCatch.tsx +49 -0
- package/client/src/components/ClickCatchOverlay.css +7 -0
- package/client/src/components/ClickCatchOverlay.tsx +30 -0
- package/client/src/components/CodeFileBrowser/CodeFileBrowser.tsx +85 -0
- package/client/src/components/CodeFileBrowser/ProjectCodeEditor.tsx +89 -0
- package/client/src/components/CodeFileBrowser/WebAppFileBrowser.tsx +96 -0
- package/client/src/components/CompactTabs/CompactTabs.tsx +101 -0
- package/client/src/components/ConfirmationDialog.tsx +90 -0
- package/client/src/components/CopyToClipboardBtn.tsx +24 -0
- package/client/src/components/DragOverUpload/DragOverUpload.css +36 -0
- package/client/src/components/DragOverUpload/DragOverUpload.tsx +46 -0
- package/client/src/components/DraggableLI.tsx +182 -0
- package/client/src/components/ElectronSearchBar.tsx +335 -0
- package/client/src/components/ErrorComponent.tsx +240 -0
- package/client/src/components/ExpandSection.tsx +55 -0
- package/client/src/components/Expander.tsx +16 -0
- package/client/src/components/FileInput/DropZone.tsx +23 -0
- package/client/src/components/FileInput/FileInput.tsx +363 -0
- package/client/src/components/FileInput/FileInputMedia.tsx +144 -0
- package/client/src/components/FileInput/useFileDropZone.ts +51 -0
- package/client/src/components/FileTree/FILE_EXTENSION_TO_ICON_INFO.ts +687 -0
- package/client/src/components/FileTree/FileIcon.tsx +31 -0
- package/client/src/components/FileTree/FileTree.tsx +147 -0
- package/client/src/components/FileTree/FileTreeCurrentDirectory.tsx +135 -0
- package/client/src/components/FileTree/FileTreeNode.css +12 -0
- package/client/src/components/FileTree/FileTreeNode.tsx +264 -0
- package/client/src/components/FileTree/FileTreeNodeCheckbox.tsx +48 -0
- package/client/src/components/FileTree/FileTreeSearchBar.tsx +121 -0
- package/client/src/components/FileTree/FileTreeSelectedItems.tsx +73 -0
- package/client/src/components/FileTree/FolderIcon.tsx +18 -0
- package/client/src/components/FileTree/fileSystemTreeUtils.ts +15 -0
- package/client/src/components/FileTree/useFileTree.ts +255 -0
- package/client/src/components/FileTree/useFileTreeChecked.ts +158 -0
- package/client/src/components/FlashMessage.tsx +64 -0
- package/client/src/components/Flex.tsx +76 -0
- package/client/src/components/FormField/FormField.css +91 -0
- package/client/src/components/FormField/FormField.tsx +748 -0
- package/client/src/components/FormField/FormFieldCodeEditor.tsx +97 -0
- package/client/src/components/FormField/FormFieldDebounced.tsx +60 -0
- package/client/src/components/FormField/FormFieldSkeleton.tsx +206 -0
- package/client/src/components/FormField/onFormFieldKeyDown.ts +124 -0
- package/client/src/components/FullscreenWrapper/FullscreenWrapper.tsx +154 -0
- package/client/src/components/FullscreenWrapper/useFullscreen.ts +46 -0
- package/client/src/components/HeaderSection.tsx +36 -0
- package/client/src/components/Hotkey.css +12 -0
- package/client/src/components/Hotkey.tsx +26 -0
- package/client/src/components/IFrame/IFrame.tsx +54 -0
- package/client/src/components/Icon/Icon.tsx +138 -0
- package/client/src/components/IconPalette/IconPalette.tsx +194 -0
- package/client/src/components/InfoRow.tsx +64 -0
- package/client/src/components/Input.tsx +63 -0
- package/client/src/components/JSONBSchema/JSONBSchema.tsx +182 -0
- package/client/src/components/JSONBSchema/JSONBSchemaAllowedOptions.tsx +112 -0
- package/client/src/components/JSONBSchema/JSONBSchemaArray.tsx +172 -0
- package/client/src/components/JSONBSchema/JSONBSchemaLookup.tsx +249 -0
- package/client/src/components/JSONBSchema/JSONBSchemaObject.tsx +130 -0
- package/client/src/components/JSONBSchema/JSONBSchemaOneOfType.tsx +155 -0
- package/client/src/components/JSONBSchema/JSONBSchemaPrimitive.tsx +209 -0
- package/client/src/components/JSONBSchema/JSONBSchemaRecord.tsx +78 -0
- package/client/src/components/JSONBSchema/isCompleteJSONB.ts +54 -0
- package/client/src/components/Label.css +10 -0
- package/client/src/components/Label.tsx +152 -0
- package/client/src/components/LabeledRow.tsx +51 -0
- package/client/src/components/List.css +51 -0
- package/client/src/components/List.tsx +170 -0
- package/client/src/components/Loader/Loading.css +141 -0
- package/client/src/components/Loader/Loading.tsx +254 -0
- package/client/src/components/Loader/SpinnerV2.tsx +121 -0
- package/client/src/components/Loader/SpinnerV3.tsx +58 -0
- package/client/src/components/Loader/SpinnerV4.tsx +31 -0
- package/client/src/components/MarkdownWithPlugins/MarkdownWithPlugins.tsx +99 -0
- package/client/src/components/MarkdownWithPlugins/Marked.css +72 -0
- package/client/src/components/MarkdownWithPlugins/preserveDisallowedHtmlAsText.ts +76 -0
- package/client/src/components/MediaViewer/MediaViewer.tsx +252 -0
- package/client/src/components/MediaViewer/MediaViewerContent.tsx +223 -0
- package/client/src/components/MediaViewer/managedTableUtils.ts +99 -0
- package/client/src/components/MenuList.css +3 -0
- package/client/src/components/MenuList.tsx +237 -0
- package/client/src/components/MenuListItem.tsx +126 -0
- package/client/src/components/MonacoEditor/MonacoEditor.tsx +273 -0
- package/client/src/components/MonacoEditor/monacoHackyFixes.ts +56 -0
- package/client/src/components/MonacoEditor/useMonacoEditorAddActions.ts +56 -0
- package/client/src/components/MonacoEditor/useWhyDidYouUpdate.ts +80 -0
- package/client/src/components/MonacoLogs/MonacoLogs.tsx +98 -0
- package/client/src/components/MonacoLogs/MonacoLogsWithFullscreen.tsx +124 -0
- package/client/src/components/MonacoLogs/setAnsiLogContent.ts +163 -0
- package/client/src/components/NavBar/NavBar.css +110 -0
- package/client/src/components/NavBar/NavBar.tsx +152 -0
- package/client/src/components/NavBar/NavBarWrapper.tsx +55 -0
- package/client/src/components/NavBar/useNavBarItems.ts +40 -0
- package/client/src/components/Pan.tsx +63 -0
- package/client/src/components/PdfViewer/PdfViewer.css +58 -0
- package/client/src/components/PdfViewer/PdfViewer.tsx +126 -0
- package/client/src/components/PdfViewer/PdfViewerDoclingTextOverlay.tsx +44 -0
- package/client/src/components/PdfViewer/PdfViewerHeaderControls.tsx +82 -0
- package/client/src/components/PdfViewer/PdfViewerHighlights/PdfViewerHighlights.tsx +146 -0
- package/client/src/components/PdfViewer/PdfViewerHighlights/usePdfViewerHighlights.ts +212 -0
- package/client/src/components/PdfViewer/PdfViewerSearch/PdfViewerSearch.css +21 -0
- package/client/src/components/PdfViewer/PdfViewerSearch/PdfViewerSearch.tsx +323 -0
- package/client/src/components/PdfViewer/PdfViewerWithFileTableContext.tsx +209 -0
- package/client/src/components/PdfViewer/usePdfViewer.ts +215 -0
- package/client/src/components/Popup/Footer.tsx +41 -0
- package/client/src/components/Popup/FooterButtons.tsx +60 -0
- package/client/src/components/Popup/Popup.css +14 -0
- package/client/src/components/Popup/Popup.tsx +469 -0
- package/client/src/components/Popup/PopupHeader.tsx +113 -0
- package/client/src/components/Popup/getPopupPosition.ts +137 -0
- package/client/src/components/Popup/getPopupStyle.ts +57 -0
- package/client/src/components/Popup/popupCheckPosition.ts +280 -0
- package/client/src/components/PopupMenu.tsx +106 -0
- package/client/src/components/PopupMenuList.tsx +36 -0
- package/client/src/components/PostgresInstallationInstructions.tsx +112 -0
- package/client/src/components/ProgressBar.css +29 -0
- package/client/src/components/ProgressBar.tsx +131 -0
- package/client/src/components/QRCodeImage.tsx +57 -0
- package/client/src/components/Scheduler.css +7 -0
- package/client/src/components/Scheduler.tsx +149 -0
- package/client/src/components/ScrollFade/ScrollFade.css +4 -0
- package/client/src/components/ScrollFade/ScrollFade.tsx +177 -0
- package/client/src/components/ScrollFade/useAutoScrollToBottom.ts +31 -0
- package/client/src/components/ScrollFade/useResizeObserver.ts +96 -0
- package/client/src/components/SearchList/SearchInput.tsx +143 -0
- package/client/src/components/SearchList/SearchList.css +37 -0
- package/client/src/components/SearchList/SearchList.tsx +184 -0
- package/client/src/components/SearchList/SearchListContent.tsx +285 -0
- package/client/src/components/SearchList/SearchListItems.tsx +244 -0
- package/client/src/components/SearchList/SearchListRowContent.tsx +46 -0
- package/client/src/components/SearchList/getSearchListMatchAndHighlight.tsx +162 -0
- package/client/src/components/SearchList/hooks/useSearchListItems.tsx +113 -0
- package/client/src/components/SearchList/hooks/useSearchListItemsSorting.tsx +169 -0
- package/client/src/components/SearchList/hooks/useSearchListOnClick.ts +69 -0
- package/client/src/components/SearchList/hooks/useSearchListOnKeyUpDown.ts +128 -0
- package/client/src/components/SearchList/hooks/useSearchListSearch.ts +211 -0
- package/client/src/components/SearchList/searchMatchUtils/getItemSearchRank.ts +74 -0
- package/client/src/components/SearchList/searchMatchUtils/getSearchRanking.ts +18 -0
- package/client/src/components/Section.tsx +159 -0
- package/client/src/components/SegmentedToggle.tsx +57 -0
- package/client/src/components/Select/Select.css +18 -0
- package/client/src/components/Select/Select.tsx +629 -0
- package/client/src/components/Select/SelectTriggerButton.tsx +204 -0
- package/client/src/components/ShorterText.tsx +56 -0
- package/client/src/components/SidePanel.tsx +49 -0
- package/client/src/components/Slider.css +65 -0
- package/client/src/components/Slider.tsx +66 -0
- package/client/src/components/StatusChip.tsx +34 -0
- package/client/src/components/Stepper.tsx +92 -0
- package/client/src/components/Stopwatch.tsx +121 -0
- package/client/src/components/SvgIcon.tsx +181 -0
- package/client/src/components/SwitchToggle.css +136 -0
- package/client/src/components/SwitchToggle.tsx +141 -0
- package/client/src/components/Table/Pagination.tsx +178 -0
- package/client/src/components/Table/Table.css +97 -0
- package/client/src/components/Table/Table.tsx +216 -0
- package/client/src/components/Table/TableBody.tsx +146 -0
- package/client/src/components/Table/TableHeader.tsx +491 -0
- package/client/src/components/Table/TableRow.tsx +164 -0
- package/client/src/components/Table/useVirtualisedRows.ts +160 -0
- package/client/src/components/Tabs.tsx +320 -0
- package/client/src/components/Tooltip.tsx +47 -0
- package/client/src/dashboard/API/zip.ts +151 -0
- package/client/src/dashboard/AccessControl/AccessControl.tsx +164 -0
- package/client/src/dashboard/AccessControl/AccessControlRuleEditor.tsx +373 -0
- package/client/src/dashboard/AccessControl/AccessRuleEditorFooter.tsx +241 -0
- package/client/src/dashboard/AccessControl/AccessRuleSummary.tsx +159 -0
- package/client/src/dashboard/AccessControl/ContextDataSelector.tsx +89 -0
- package/client/src/dashboard/AccessControl/ContextFilter.tsx +161 -0
- package/client/src/dashboard/AccessControl/ExistingAccessRules.tsx +168 -0
- package/client/src/dashboard/AccessControl/Methods/MethodDefinition.tsx +156 -0
- package/client/src/dashboard/AccessControl/Methods/MethodDefinitionEditAsJson.tsx +73 -0
- package/client/src/dashboard/AccessControl/Methods/MethodFunctionDefinition.tsx +97 -0
- package/client/src/dashboard/AccessControl/Methods/ReferencesDefinition.tsx +155 -0
- package/client/src/dashboard/AccessControl/Methods/useCodeEditorTsTypes.ts +152 -0
- package/client/src/dashboard/AccessControl/OptionControllers/DynamicFields.tsx +145 -0
- package/client/src/dashboard/AccessControl/OptionControllers/FieldFilterControl.tsx +193 -0
- package/client/src/dashboard/AccessControl/OptionControllers/FilterControl.tsx +207 -0
- package/client/src/dashboard/AccessControl/PasswordlessSetup.tsx +90 -0
- package/client/src/dashboard/AccessControl/PermissionTypes/PAllTables.tsx +50 -0
- package/client/src/dashboard/AccessControl/PermissionTypes/PCustomTables.tsx +237 -0
- package/client/src/dashboard/AccessControl/PermissionTypes/PRunSQL.tsx +92 -0
- package/client/src/dashboard/AccessControl/PublishedWorkspaceSelector.tsx +290 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/ComparablePGPolicies.tsx +179 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/DeleteRuleControl.tsx +95 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/ExampleComparablePolicy.tsx +112 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/InsertRuleControl.tsx +115 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/RuleToggle.tsx +19 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/SelectRuleControl.tsx +186 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/SyncRuleControl.tsx +130 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/UpdateRuleControl.tsx +207 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/getComparablePGPolicy.ts +130 -0
- package/client/src/dashboard/AccessControl/TableRules/FileTableAccessControlInfo.tsx +161 -0
- package/client/src/dashboard/AccessControl/TableRules/TablePermissionControls.tsx +251 -0
- package/client/src/dashboard/AccessControl/TableRules/TableRulesPopup.tsx +167 -0
- package/client/src/dashboard/AccessControl/TableRules/useLocalTableRulesErrors.ts +27 -0
- package/client/src/dashboard/AccessControl/UserStats.tsx +83 -0
- package/client/src/dashboard/AccessControl/UserSyncConfig.tsx +168 -0
- package/client/src/dashboard/AccessControl/UserTypeSelect.tsx +86 -0
- package/client/src/dashboard/AccessControl/useAccessControlSearchParams.ts +81 -0
- package/client/src/dashboard/AccessControl/useEditedAccessRule.ts +293 -0
- package/client/src/dashboard/AskLLM/AskLLM.tsx +91 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChat.tsx +208 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatHeader.tsx +127 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessage.tsx +77 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageContent.tsx +96 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageContentText.tsx +57 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageHeader.tsx +129 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMGroupedToolCallsMessage.tsx +122 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMSingleChatMessage.tsx +44 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMToolCallIcon.tsx +12 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Agent/Agent.tsx +161 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Agent/AgentGoalToolCall.tsx +59 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgentDefinition.tsx +206 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflow.tsx +242 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActions.tsx +245 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/AgenticWorkflowActivity.tsx +225 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/ToolCall.tsx +137 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/useAgenticWorkflowActivityItems.ts +70 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowDefinition.tsx +173 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowDetails.tsx +141 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowMessage.tsx +103 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowSchemaDrift.tsx +146 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/ContainerConfigurationEditor.tsx +184 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/McpToolAccess.tsx +156 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/UserInput.tsx +393 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/UserInputColumnValues.tsx +61 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/hooks/useAgenticWorkflowState.ts +50 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/hooks/useUserInput.ts +27 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AskUserQuestions.tsx +249 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/CreateTables.tsx +32 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DockerContainer.tsx +296 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocument.d.ts +154 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocumentViewer.tsx +98 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocumentViewerPage.tsx +42 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingTable.tsx +166 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingText.tsx +99 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingToolUseView.tsx +47 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/ExecuteSQL.tsx +34 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/LoadSuggestedDashboards.tsx +172 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RequestToolAccess.tsx +272 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RunCodeInSandbox.tsx +33 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RunTypescriptInNodejs.tsx +48 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/ToolUseResultError.tsx +29 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/Favicon.tsx +34 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/Markdown.tsx +21 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/WebSearch.tsx +70 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Webdev/CreateComponentQuickFeedbackPreview.tsx +104 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/DatabaseAccessPermissions.tsx +63 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/HeaderList.tsx +26 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useJSONBParsedData.ts +16 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useSendToolUseResult.ts +46 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useToolUseResultString.ts +27 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useTypedToolUseResultData.ts +85 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesToolUseMessage.tsx +127 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/InChatToolApprover.tsx +82 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessage.tsx +109 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageBtn.tsx +51 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageBtnTextSummary.tsx +45 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageJSONData.tsx +132 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageResult.tsx +57 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseReRunBtn.tsx +71 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/useToolUseChatMessage.ts +51 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/utils/getToolUseResult.ts +40 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/hooks/useLLMChatMessageGrouper.tsx +168 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/hooks/useLLMChatMessages.tsx +157 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/setChatPrompt.ts +116 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatSettings.tsx +88 -0
- package/client/src/dashboard/AskLLM/Chat/useAskLLMChatSend.ts +111 -0
- package/client/src/dashboard/AskLLM/Chat/useLLMChat.tsx +126 -0
- package/client/src/dashboard/AskLLM/Chat/useLLMSchemaStr.ts +207 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBar.tsx +34 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarDatabaseAccess.tsx +273 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarMCPTools.tsx +102 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarMCPToolsBtn.tsx +167 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarModelSelector.tsx +238 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarPromptSelector.tsx +206 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/PromptAndAllowedMcpToolsSchemaPreviews.tsx +85 -0
- package/client/src/dashboard/AskLLM/LLMModelSelector.tsx +270 -0
- package/client/src/dashboard/AskLLM/Setup/AddLLMPromptForm.tsx +33 -0
- package/client/src/dashboard/AskLLM/Setup/AskLLMAccessControl.tsx +246 -0
- package/client/src/dashboard/AskLLM/Setup/LLMProviderSetup.tsx +68 -0
- package/client/src/dashboard/AskLLM/Setup/LLMSetupProvider.tsx +111 -0
- package/client/src/dashboard/AskLLM/Setup/ProstglesSignup.tsx +108 -0
- package/client/src/dashboard/AskLLM/Setup/SetupLLMCredentials.tsx +89 -0
- package/client/src/dashboard/AskLLM/Tools/AskLLMToolApprover.tsx +279 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedBarchart.ts +126 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedMap.ts +58 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedTable.ts +159 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedTimechart.ts +78 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedWorkspaces.ts +168 -0
- package/client/src/dashboard/AskLLM/Tools/useAskLLMToolApprover.ts +99 -0
- package/client/src/dashboard/AskLLM/useLocalLLM.ts +84 -0
- package/client/src/dashboard/BackupAndRestore/AutomaticBackups.tsx +212 -0
- package/client/src/dashboard/BackupAndRestore/BackupsControls.tsx +291 -0
- package/client/src/dashboard/BackupAndRestore/BackupsInProgress.tsx +98 -0
- package/client/src/dashboard/BackupAndRestore/CloudStorageCredentialSelector.tsx +215 -0
- package/client/src/dashboard/BackupAndRestore/CodeConfirmation.tsx +205 -0
- package/client/src/dashboard/BackupAndRestore/CompletedBackups/DeleteAllBackups.tsx +58 -0
- package/client/src/dashboard/BackupAndRestore/CompletedBackups.tsx +276 -0
- package/client/src/dashboard/BackupAndRestore/DumpLocationOptions.tsx +40 -0
- package/client/src/dashboard/BackupAndRestore/DumpRestoreAlerts.tsx +82 -0
- package/client/src/dashboard/BackupAndRestore/PGDumpOptions.tsx +299 -0
- package/client/src/dashboard/BackupAndRestore/RenderBackupLogs.tsx +48 -0
- package/client/src/dashboard/BackupAndRestore/RenderBackupStatus.tsx +58 -0
- package/client/src/dashboard/BackupAndRestore/Restore/Restore.tsx +205 -0
- package/client/src/dashboard/BackupAndRestore/Restore/RestoreOptions.tsx +148 -0
- package/client/src/dashboard/BackupAndRestore/Restore/useRestoreDatabaseFromFile.ts +73 -0
- package/client/src/dashboard/BackupAndRestore/useBackupsControlsState.ts +39 -0
- package/client/src/dashboard/Charts/CanvasChart.ts +746 -0
- package/client/src/dashboard/Charts/TimeChart/TimeChart.tsx +232 -0
- package/client/src/dashboard/Charts/TimeChart/getBinValueLabels.ts +125 -0
- package/client/src/dashboard/Charts/TimeChart/getCssVariableValue.ts +6 -0
- package/client/src/dashboard/Charts/TimeChart/getTimeAxisTicks.ts +426 -0
- package/client/src/dashboard/Charts/TimeChart/getTimechartBinSize.ts +121 -0
- package/client/src/dashboard/Charts/TimeChart/getTimechartTooltipIntersections.ts +94 -0
- package/client/src/dashboard/Charts/TimeChart/getTimechartTooltipShapes.ts +318 -0
- package/client/src/dashboard/Charts/TimeChart/measureText.ts +34 -0
- package/client/src/dashboard/Charts/TimeChart/onDeltaTimechart.ts +65 -0
- package/client/src/dashboard/Charts/TimeChart/onRenderTimechart.ts +354 -0
- package/client/src/dashboard/Charts/TimeChart/prepareTimechartData.ts +185 -0
- package/client/src/dashboard/Charts/constants.ts +8 -0
- package/client/src/dashboard/Charts/createHiPPICanvas.ts +31 -0
- package/client/src/dashboard/Charts/drawMonotoneXCurve.ts +171 -0
- package/client/src/dashboard/Charts/drawShapes/drawLinkLine.ts +29 -0
- package/client/src/dashboard/Charts/drawShapes/drawShapes.ts +217 -0
- package/client/src/dashboard/Charts/drawShapes/drawShapesOnSVG.ts +481 -0
- package/client/src/dashboard/Charts/drawShapes/findShortestPathAroundRectangles.ts +241 -0
- package/client/src/dashboard/Charts/drawShapes/getLinkLinePoints.ts +124 -0
- package/client/src/dashboard/Charts/drawShapes/getTimechartGradientPeakSections.ts +27 -0
- package/client/src/dashboard/Charts/drawShapes/shortestLinkLineV2.ts +182 -0
- package/client/src/dashboard/Charts/roundRect.ts +42 -0
- package/client/src/dashboard/Charts.tsx +216 -0
- package/client/src/dashboard/CodeEditor/CodeEditor.tsx +288 -0
- package/client/src/dashboard/CodeEditor/CodeEditorWithSaveButton.tsx +208 -0
- package/client/src/dashboard/CodeEditor/registerLogLang.ts +128 -0
- package/client/src/dashboard/CodeEditor/utils/getMonacoJsonSchemas.ts +31 -0
- package/client/src/dashboard/CodeEditor/utils/installGoToDefinition.ts +40 -0
- package/client/src/dashboard/CodeEditor/utils/navigateTo.ts +61 -0
- package/client/src/dashboard/CodeEditor/utils/resolveDefinition..ts +33 -0
- package/client/src/dashboard/CodeEditor/utils/setMonacoErrorMarkers.ts +67 -0
- package/client/src/dashboard/CodeEditor/utils/useSetMonacoJsonSchemas.ts +60 -0
- package/client/src/dashboard/CodeEditor/utils/useSetMonacoTsLibraries.ts +157 -0
- package/client/src/dashboard/CodeExample.tsx +34 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APICodeExamples.tsx +280 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetails.tsx +111 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsHttp.tsx +123 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsTokens.tsx +137 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsWs.tsx +98 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/AllowedOriginCheck.tsx +104 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/getApiEndpoint.ts +8 -0
- package/client/src/dashboard/ConnectionConfig/ConnectionConfig.tsx +267 -0
- package/client/src/dashboard/ConnectionConfig/ConnectionConfigSync.tsx +123 -0
- package/client/src/dashboard/ConnectionConfig/ServerSideFunctions.tsx +46 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfig.tsx +90 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigComponents.tsx +47 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigFooterActions.tsx +137 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigSetup.tsx +135 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/hooks/useWebAppConfigActiveSection.ts +12 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/hooks/useWebAppConfigState.ts +76 -0
- package/client/src/dashboard/ConnectionConfig/useConnectionConfigSearchParams.ts +35 -0
- package/client/src/dashboard/ConnectionSelector.tsx +58 -0
- package/client/src/dashboard/Dashboard/CloseSaveSQLPopup.tsx +81 -0
- package/client/src/dashboard/Dashboard/DBS.ts +19 -0
- package/client/src/dashboard/Dashboard/Dashboard.tsx +667 -0
- package/client/src/dashboard/Dashboard/DashboardCenteredLayoutResizer.tsx +56 -0
- package/client/src/dashboard/Dashboard/PALETTE.ts +36 -0
- package/client/src/dashboard/Dashboard/ViewRenderer.tsx +498 -0
- package/client/src/dashboard/Dashboard/addChart.ts +261 -0
- package/client/src/dashboard/Dashboard/addLink.ts +48 -0
- package/client/src/dashboard/Dashboard/addWindow.ts +51 -0
- package/client/src/dashboard/Dashboard/cardLayout.ts +28 -0
- package/client/src/dashboard/Dashboard/cloneWorkspace.ts +102 -0
- package/client/src/dashboard/Dashboard/dashboardUtils.ts +377 -0
- package/client/src/dashboard/Dashboard/debuggingUtils.ts +112 -0
- package/client/src/dashboard/Dashboard/getTables.ts +31 -0
- package/client/src/dashboard/Dashboard/getViewRendererUtils.ts +108 -0
- package/client/src/dashboard/Dashboard/onLinkTable.ts +45 -0
- package/client/src/dashboard/Dashboard/useAddViewToWorkspace.ts +92 -0
- package/client/src/dashboard/DashboardMenu/CreateTable.tsx +307 -0
- package/client/src/dashboard/DashboardMenu/DashboardHotkeys.tsx +38 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenu.tsx +183 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuContent.tsx +203 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuHeader.tsx +86 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuHotkeys.tsx +102 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuResizer.tsx +68 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuSettings.tsx +241 -0
- package/client/src/dashboard/DashboardMenu/NewTableMenu.tsx +121 -0
- package/client/src/dashboard/DashboardMenu/SavedAgenticWorkflowsAndContainers.tsx +149 -0
- package/client/src/dashboard/DashboardMenu/SettingsSection.tsx +22 -0
- package/client/src/dashboard/DashboardMenu/TableList.tsx +141 -0
- package/client/src/dashboard/DashboardMenu/useTableSizeInfo.ts +98 -0
- package/client/src/dashboard/DatabaseAccessEditor/DatabaseAccessEditor.tsx +174 -0
- package/client/src/dashboard/DatabaseAccessEditor/DatabaseAccessEditorCustomTables.tsx +149 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessAdvancedOptions.tsx +128 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessAdvancedOptionsMenu.tsx +65 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessDetails.tsx +163 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessEditor.tsx +229 -0
- package/client/src/dashboard/DatabaseAccessEditor/getTableSchemaDriftState.ts +65 -0
- package/client/src/dashboard/DatabaseAccessEditor/useDatabaseAccessEditorTables.tsx +99 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseControl.tsx +139 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseControlRouter.tsx +192 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/AgeFilter.tsx +148 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/GeoFilter.tsx +255 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/ListFilter/ListFilter.tsx +235 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/ListFilter/fetchListFilterOptions.ts +76 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/NumberOrDateFilter.tsx +206 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterControl.tsx +157 -0
- package/client/src/dashboard/DetailedFilterControl/FTS_LANGUAGES.ts +35 -0
- package/client/src/dashboard/DetailedFilterControl/FilterWrapper.css +7 -0
- package/client/src/dashboard/DetailedFilterControl/FilterWrapper.tsx +339 -0
- package/client/src/dashboard/DetailedFilterControl/validateFilter.ts +46 -0
- package/client/src/dashboard/Feedback.tsx +145 -0
- package/client/src/dashboard/FileImporter/FileImporter.tsx +770 -0
- package/client/src/dashboard/FileImporter/FileImporterFooter.tsx +100 -0
- package/client/src/dashboard/FileImporter/checkCSVColumnDataTypes.tsx +139 -0
- package/client/src/dashboard/FileImporter/importFile.ts +303 -0
- package/client/src/dashboard/FileImporter/parseCSVFile.ts +123 -0
- package/client/src/dashboard/FileImporter/setFile.ts +251 -0
- package/client/src/dashboard/FileTableControls/CreateFileColumn.tsx +189 -0
- package/client/src/dashboard/FileTableControls/FileColumnConfigControls.tsx +191 -0
- package/client/src/dashboard/FileTableControls/FileColumnConfigEditor.tsx +251 -0
- package/client/src/dashboard/FileTableControls/FileStorageControls.tsx +294 -0
- package/client/src/dashboard/FileTableControls/FileStorageDelete.tsx +106 -0
- package/client/src/dashboard/FileTableControls/FileStorageReferencedTablesConfig.tsx +80 -0
- package/client/src/dashboard/FileTableControls/FileTableConfigControls.tsx +69 -0
- package/client/src/dashboard/FileTableControls/hooks/useFileTableConfigControls.ts +70 -0
- package/client/src/dashboard/FileTableControls/hooks/useSetFileStorage.ts +128 -0
- package/client/src/dashboard/JSONBColumnEditor.tsx +60 -0
- package/client/src/dashboard/LinkMenu.tsx +332 -0
- package/client/src/dashboard/Map/DeckGLFeatureEditor.tsx +645 -0
- package/client/src/dashboard/Map/DeckGLMap.css +45 -0
- package/client/src/dashboard/Map/DeckGLMap.tsx +576 -0
- package/client/src/dashboard/Map/DeckGLWrapped.ts +312 -0
- package/client/src/dashboard/Map/InMapControls.tsx +137 -0
- package/client/src/dashboard/Map/MVTLayerProps.ts +306 -0
- package/client/src/dashboard/Map/fitBounds.ts +63 -0
- package/client/src/dashboard/Map/mapDrawUtils.ts +129 -0
- package/client/src/dashboard/Map/mapUtils.ts +183 -0
- package/client/src/dashboard/RTComp.tsx +165 -0
- package/client/src/dashboard/RenderFilter.tsx +174 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/CommonMatchImports.ts +366 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/KEYWORDS.ts +448 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/MatchCreate.ts +294 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/MatchCreateView.ts +106 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateIndex.ts +220 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreatePolicy.ts +108 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateRule.tsx +99 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateTable.ts +336 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateTrigger.ts +84 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/MatchAlter.tsx +258 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchAlterPolicy.ts +50 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchAlterTable.ts +325 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchCreateOrAlterUser.tsx +192 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchComment.ts +86 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchCopy.ts +367 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchDrop.ts +161 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchFirst.ts +471 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchGrant.ts +331 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchInsert.tsx +123 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchLast.ts +10 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchPublication.ts +126 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchReassign.ts +35 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchReindex.ts +36 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSelect.ts +623 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSet.ts +183 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSubscription.ts +231 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchUpdate.ts +79 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchVacuum.ts +86 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchWith.ts +222 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MathDelete.ts +18 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/PSQL.ts +136 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/STARTING_KEYWORDS.ts +931 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/TableKWDs.ts +479 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/checkIfInsideDollarFunctionDefinition.ts +88 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/checkIfUnfinishedParenthesis.ts +74 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getCodeBlock.ts +627 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getQueryReturnType.ts +274 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTableExpressionReturnTypes.ts +243 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTabularExpressions.ts +428 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTokens.ts +239 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getExpected.ts +176 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getJoinSuggestions.ts +193 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getMatch.ts +62 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getPGObjects.ts +1270 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getPrevTokensNoParantheses.ts +234 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/jsonbPathSuggest.ts +188 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/monacoSQLSetup/registerHover.ts +138 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/monacoSQLSetup/registerSuggestions.ts +549 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestColumnLike.ts +251 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestCondition.ts +320 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestFuncArgs.ts +105 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestTableLike.ts +104 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestValue.ts +125 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/withKWDs.ts +507 -0
- package/client/src/dashboard/SQLEditor/SQLEditorSuggestions.ts +1883 -0
- package/client/src/dashboard/SQLEditor/SQLSmartEditor.tsx +124 -0
- package/client/src/dashboard/SQLEditor/SQL_SNIPPETS.ts +43 -0
- package/client/src/dashboard/SQLEditor/W_SQLEditor.css +15 -0
- package/client/src/dashboard/SQLEditor/W_SQLEditor.tsx +746 -0
- package/client/src/dashboard/SQLEditor/addSqlEditorFunctions.ts +74 -0
- package/client/src/dashboard/SQLEditor/defineCustomMonacoSQLTheme.ts +74 -0
- package/client/src/dashboard/SQLEditor/getFormattedSql.ts +154 -0
- package/client/src/dashboard/SQLEditor/registerFunctionSuggestions.ts +175 -0
- package/client/src/dashboard/SQLEditor/utils/scrollToLineIfNeeded.ts +17 -0
- package/client/src/dashboard/SQLEditor/utils/setMonacEditorError.ts +93 -0
- package/client/src/dashboard/SampleSchemas.tsx +50 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/ERDSchema.tsx +175 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/getInitialPlacement.ts +115 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/getInitialPlacementV2.ts +343 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useCanvasPanZoom.ts +54 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useDrawHiddenSvgForNativeTextSearch.ts +80 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useDrawSchemaShapes.ts +242 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useFetchSchemaForDiagram.ts +276 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/usePanShapes.ts +160 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useSchemaShapes.ts +352 -0
- package/client/src/dashboard/SchemaGraph/SchemaGraph.tsx +55 -0
- package/client/src/dashboard/SchemaGraph/SchemaGraphControls.tsx +226 -0
- package/client/src/dashboard/SchemaGraph/types.ts +29 -0
- package/client/src/dashboard/SearchAll/SearchAll.tsx +77 -0
- package/client/src/dashboard/SearchAll/SearchAllContent.tsx +63 -0
- package/client/src/dashboard/SearchAll/SearchAllHeader.tsx +71 -0
- package/client/src/dashboard/SearchAll/SearchMatchRow.tsx +103 -0
- package/client/src/dashboard/SearchAll/hooks/useSearchAllState.ts +46 -0
- package/client/src/dashboard/SearchAll/hooks/useSearchListProps.tsx +178 -0
- package/client/src/dashboard/SearchAll/hooks/useSearchTables.tsx +163 -0
- package/client/src/dashboard/SearchAll/hooks/useTablesAndViewsSearchItems.ts +55 -0
- package/client/src/dashboard/SilverGrid/SilverGrid.tsx +531 -0
- package/client/src/dashboard/SilverGrid/SilverGridChild.tsx +403 -0
- package/client/src/dashboard/SilverGrid/SilverGridChildHeader.tsx +235 -0
- package/client/src/dashboard/SilverGrid/SilverGridResizer.tsx +129 -0
- package/client/src/dashboard/SilverGrid/TreeBuilder.ts +261 -0
- package/client/src/dashboard/SmartCard/SmartCard.tsx +218 -0
- package/client/src/dashboard/SmartCard/SmartCardActions.tsx +113 -0
- package/client/src/dashboard/SmartCard/SmartCardColumn.tsx +49 -0
- package/client/src/dashboard/SmartCard/getSelectForFieldConfigs.ts +44 -0
- package/client/src/dashboard/SmartCard/parseFieldConfigs.tsx +165 -0
- package/client/src/dashboard/SmartCard/useFieldConfigParser.ts +55 -0
- package/client/src/dashboard/SmartCard/useSmartCardColumns.ts +46 -0
- package/client/src/dashboard/SmartCardList/SmartCardList.tsx +291 -0
- package/client/src/dashboard/SmartCardList/SmartCardListHeaderControls.tsx +130 -0
- package/client/src/dashboard/SmartCardList/SmartCardListJoinedNewRecords.tsx +97 -0
- package/client/src/dashboard/SmartCardList/useSmartCardListState.ts +273 -0
- package/client/src/dashboard/SmartFilter/AddJoinFilter.tsx +97 -0
- package/client/src/dashboard/SmartFilter/MinimisedFilter.css +13 -0
- package/client/src/dashboard/SmartFilter/MinimisedFilter.tsx +208 -0
- package/client/src/dashboard/SmartFilter/SmartAddFilter.tsx +324 -0
- package/client/src/dashboard/SmartFilter/SmartFilter.tsx +182 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/SmartSearch.css +4 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/SmartSearch.tsx +230 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/getSmartSearchRows.ts +277 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/onSearchItems.tsx +146 -0
- package/client/src/dashboard/SmartFilter/SortByControl.tsx +81 -0
- package/client/src/dashboard/SmartFilter/smartFilterUtils.ts +97 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBar.tsx +178 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarFilters.tsx +103 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarRightActions.tsx +212 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarSearch.tsx +115 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarSort.tsx +108 -0
- package/client/src/dashboard/SmartFilterBar/useSmartFilterBarState.ts +100 -0
- package/client/src/dashboard/SmartForm/ChipArrayEditor.tsx +169 -0
- package/client/src/dashboard/SmartForm/InsertButton.tsx +89 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecords.tsx +155 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecordsAddRow.tsx +182 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecordsSection.tsx +168 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/getJoinFilter.ts +31 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/useJoinedRecordsSections.ts +246 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/useJoinedSectionFieldConfigs.tsx +120 -0
- package/client/src/dashboard/SmartForm/SmartForm.tsx +368 -0
- package/client/src/dashboard/SmartForm/SmartFormField/RenderValue/RenderJson.tsx +72 -0
- package/client/src/dashboard/SmartForm/SmartFormField/RenderValue.tsx +294 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormField.tsx +349 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldFileSection.tsx +51 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldForeignKey.tsx +253 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedData.tsx +207 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataInsert/SmartFormFieldLinkedDataInsert.tsx +165 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataInsert/useSmartFormFieldLinkedDataInsert.tsx +77 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataSearch.tsx +91 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldRightButtons.tsx +110 -0
- package/client/src/dashboard/SmartForm/SmartFormField/ViewMoreSmartCardList.tsx +86 -0
- package/client/src/dashboard/SmartForm/SmartFormField/fetchColumnValueSuggestions.ts +92 -0
- package/client/src/dashboard/SmartForm/SmartFormField/fetchForeignKeyOptions.tsx +348 -0
- package/client/src/dashboard/SmartForm/SmartFormField/fieldUtils.ts +228 -0
- package/client/src/dashboard/SmartForm/SmartFormField/useNestedInsertDefaultData.ts +28 -0
- package/client/src/dashboard/SmartForm/SmartFormField/useSmartFormFieldAsJSON.tsx +87 -0
- package/client/src/dashboard/SmartForm/SmartFormField/useSmartFormFieldOnChange.ts +65 -0
- package/client/src/dashboard/SmartForm/SmartFormFieldList.tsx +190 -0
- package/client/src/dashboard/SmartForm/SmartFormFileSection.tsx +110 -0
- package/client/src/dashboard/SmartForm/SmartFormFooter/SmartFormFooterButtons.tsx +133 -0
- package/client/src/dashboard/SmartForm/SmartFormFooter/useSmartFormActions.ts +265 -0
- package/client/src/dashboard/SmartForm/SmartFormNewRowDataHandler.ts +168 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormPopupWrapper.tsx +92 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormPrevNext.tsx +33 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormViewAsMarkdown.tsx +83 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/useSmartFormPrevNext.ts +20 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/useSmartFormSubTitle.ts +44 -0
- package/client/src/dashboard/SmartForm/SmartFormUpperFooter/SmartFormUpperFooter.tsx +198 -0
- package/client/src/dashboard/SmartForm/SmartFormUpperFooter/useActiveJoinedRecordsTab.ts +65 -0
- package/client/src/dashboard/SmartForm/constants.ts +1 -0
- package/client/src/dashboard/SmartForm/useNewRowDataHandler.ts +386 -0
- package/client/src/dashboard/SmartForm/useSmartForm.ts +67 -0
- package/client/src/dashboard/SmartForm/useSmartFormColumns.ts +127 -0
- package/client/src/dashboard/SmartForm/useSmartFormMode.ts +243 -0
- package/client/src/dashboard/SmartSelect.tsx +228 -0
- package/client/src/dashboard/SmartTable.tsx +383 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitor.tsx +41 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorBlockedByPid.tsx +35 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorConnections.tsx +127 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeader.tsx +122 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeaderCpu.tsx +122 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeaderMemory.tsx +21 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorProcList.tsx +292 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorProcListControlsHeader.tsx +85 -0
- package/client/src/dashboard/TableConfig/ProcessLogs.tsx +65 -0
- package/client/src/dashboard/TableConfig/TableConfig.tsx +88 -0
- package/client/src/dashboard/TimeSeries.tsx +29 -0
- package/client/src/dashboard/UserManager.tsx +54 -0
- package/client/src/dashboard/W_Barchart/W_Barchart.tsx +104 -0
- package/client/src/dashboard/W_Barchart/fetchSQLBarchartData.ts +7 -0
- package/client/src/dashboard/W_Barchart/useBarchartData.ts +176 -0
- package/client/src/dashboard/W_Map/OSM/OverpassQuery.tsx +21 -0
- package/client/src/dashboard/W_Map/OSM/fetchOSMCountryBoundary.ts +73 -0
- package/client/src/dashboard/W_Map/OSM/getOSMData.ts +240 -0
- package/client/src/dashboard/W_Map/OSM/osmToGeoJSON.ts +198 -0
- package/client/src/dashboard/W_Map/OSM/osmTypes.ts +1856 -0
- package/client/src/dashboard/W_Map/W_Map.tsx +747 -0
- package/client/src/dashboard/W_Map/W_MapMenu.tsx +188 -0
- package/client/src/dashboard/W_Map/controls/MapBasemapOptions.tsx +268 -0
- package/client/src/dashboard/W_Map/controls/MapInfoSection.tsx +95 -0
- package/client/src/dashboard/W_Map/controls/MapOSMQuery.tsx +174 -0
- package/client/src/dashboard/W_Map/controls/MapOpacityMenu.tsx +60 -0
- package/client/src/dashboard/W_Map/fetchData/fetchMapLayerData.ts +401 -0
- package/client/src/dashboard/W_Map/fetchData/getMapData.ts +161 -0
- package/client/src/dashboard/W_Map/fetchData/getMapDataExtent.ts +86 -0
- package/client/src/dashboard/W_Map/fetchData/getMapLayerQueries.ts +232 -0
- package/client/src/dashboard/W_Map/getMapFeatureStyle.ts +160 -0
- package/client/src/dashboard/W_Map/onMapHover.ts +118 -0
- package/client/src/dashboard/W_Method/FunctionLabel.tsx +24 -0
- package/client/src/dashboard/W_Method/NewMethod.tsx +108 -0
- package/client/src/dashboard/W_Method/PublishedMethods.tsx +218 -0
- package/client/src/dashboard/W_Method/W_Method.tsx +48 -0
- package/client/src/dashboard/W_Method/W_MethodControls.tsx +338 -0
- package/client/src/dashboard/W_Method/W_MethodMenu.tsx +162 -0
- package/client/src/dashboard/W_QuickMenu.tsx +228 -0
- package/client/src/dashboard/W_SQL/CSVRender.tsx +18 -0
- package/client/src/dashboard/W_SQL/CopyResultBtn.tsx +246 -0
- package/client/src/dashboard/W_SQL/MonacoLanguageRegister.ts +701 -0
- package/client/src/dashboard/W_SQL/SQLHotkeys.tsx +23 -0
- package/client/src/dashboard/W_SQL/TestSQL.ts +52 -0
- package/client/src/dashboard/W_SQL/W_SQL.tsx +679 -0
- package/client/src/dashboard/W_SQL/W_SQLBottomBar/W_SQLBottomBar.tsx +484 -0
- package/client/src/dashboard/W_SQL/W_SQLBottomBar/W_SQLBottomBarProcStats.tsx +67 -0
- package/client/src/dashboard/W_SQL/W_SQLMenu.tsx +403 -0
- package/client/src/dashboard/W_SQL/W_SQLResults.tsx +161 -0
- package/client/src/dashboard/W_SQL/customRenderers.tsx +126 -0
- package/client/src/dashboard/W_SQL/demoScripts/createTables.ts +262 -0
- package/client/src/dashboard/W_SQL/demoScripts/mainTestScripts.ts +269 -0
- package/client/src/dashboard/W_SQL/demoScripts/testBugs.ts +596 -0
- package/client/src/dashboard/W_SQL/demoScripts/testMiscAndBugs.ts +61 -0
- package/client/src/dashboard/W_SQL/demoScripts/testSqlCharts.ts +117 -0
- package/client/src/dashboard/W_SQL/getChartableSQL.ts +169 -0
- package/client/src/dashboard/W_SQL/getDemoUtils.ts +260 -0
- package/client/src/dashboard/W_SQL/getSQLResultTableColumns.ts +56 -0
- package/client/src/dashboard/W_SQL/monacoEditorTypes.ts +13 -0
- package/client/src/dashboard/W_SQL/parseExplainResult.ts +99 -0
- package/client/src/dashboard/W_SQL/parseSQLError.ts +55 -0
- package/client/src/dashboard/W_SQL/parseSqlResultCols.ts +96 -0
- package/client/src/dashboard/W_SQL/runSQL/getQueryTotalRowCount.ts +38 -0
- package/client/src/dashboard/W_SQL/runSQL/runSQL.ts +432 -0
- package/client/src/dashboard/W_SQL/runSQLErrorHints.ts +150 -0
- package/client/src/dashboard/W_Table/CardView/CardItem/CardItemBody.tsx +151 -0
- package/client/src/dashboard/W_Table/CardView/CardItem/CardItemHeader.tsx +150 -0
- package/client/src/dashboard/W_Table/CardView/CardItem/CardViewRow.tsx +160 -0
- package/client/src/dashboard/W_Table/CardView/CardView.tsx +87 -0
- package/client/src/dashboard/W_Table/CardView/CardViewColumn.tsx +82 -0
- package/client/src/dashboard/W_Table/CardView/CardViewKanban.tsx +87 -0
- package/client/src/dashboard/W_Table/CardView/DragHeader.tsx +46 -0
- package/client/src/dashboard/W_Table/CardView/constants.ts +1 -0
- package/client/src/dashboard/W_Table/CardView/useCardViewState.ts +50 -0
- package/client/src/dashboard/W_Table/CardView/useDragHeader.ts +280 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddColumnMenu.tsx +193 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/AddComputedColMenu.tsx +650 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/FunctionColumnList.tsx +75 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/QuickAddComputedColumn.tsx +129 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/useAddComputedColumn.ts +175 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/AlterColumn.tsx +421 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/AlterColumnFileOptions.tsx +84 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/ColumnEditor.tsx +229 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/CreateColumn.tsx +150 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/ReferenceEditor.tsx +243 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/alterColumnUtilts.ts +53 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColorPicker.tsx +251 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ChipStylePalette.tsx +127 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ColumnDisplayFormat.tsx +116 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ConditionalCellIconStyleControls.tsx +140 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ConditionalCellStyleControls.tsx +235 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/NestedColumnRender.tsx +172 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/columnFormatUtils.tsx +330 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnList.tsx +291 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnMenu.tsx +537 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnQuickStats/ColumnQuickStats.tsx +176 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnQuickStats/useColumnQuickStats.ts +169 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnSelect/ColumnSelect.tsx +54 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnSelect/getColumnListItem.tsx +97 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnSortMenu.tsx +146 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnStyleControls/ColumnStyleControls.tsx +258 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnStyleControls/getValueColors.ts +101 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnsMenu.tsx +178 -0
- package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/FunctionExtraArguments.tsx +140 -0
- package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/FunctionSelector.tsx +89 -0
- package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/functions.ts +438 -0
- package/client/src/dashboard/W_Table/ColumnMenu/JoinPathSelectorV2.tsx +212 -0
- package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumn.tsx +295 -0
- package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumnFooter.tsx +94 -0
- package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumnSelect.tsx +160 -0
- package/client/src/dashboard/W_Table/ColumnMenu/NestedTimechartControls.tsx +167 -0
- package/client/src/dashboard/W_Table/ColumnMenu/SummariseColumns.tsx +126 -0
- package/client/src/dashboard/W_Table/ColumnMenu/UpdateColumnGlobalConfig.tsx +69 -0
- package/client/src/dashboard/W_Table/ColumnMenu/getNestedColumnTable.ts +83 -0
- package/client/src/dashboard/W_Table/ColumnMenu/rgba2hex.ts +36 -0
- package/client/src/dashboard/W_Table/JoinPathSelector/JoinPathItem.tsx +133 -0
- package/client/src/dashboard/W_Table/JoinPathSelector/JoinPathSelector.tsx +100 -0
- package/client/src/dashboard/W_Table/JoinPathSelector/getJoinTree.ts +79 -0
- package/client/src/dashboard/W_Table/NodeCountChecker.tsx +58 -0
- package/client/src/dashboard/W_Table/ProstglesTable.css +64 -0
- package/client/src/dashboard/W_Table/QuickFilterGroupsControl.tsx +86 -0
- package/client/src/dashboard/W_Table/RowCard.tsx +102 -0
- package/client/src/dashboard/W_Table/TableMenu/AddChartMenu.tsx +288 -0
- package/client/src/dashboard/W_Table/TableMenu/AutoRefreshMenu.tsx +118 -0
- package/client/src/dashboard/W_Table/TableMenu/TableDisplayOptionsJSON.tsx +71 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu.tsx +365 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_AccessRules.tsx +127 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Constraints.tsx +140 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_CurrentQuery.tsx +82 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_DisplayOptions.tsx +266 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Indexes.tsx +179 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Policies.tsx +197 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_TableInfo.tsx +184 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Triggers.tsx +199 -0
- package/client/src/dashboard/W_Table/TableMenu/getAndFixWColumnsConfig.tsx +116 -0
- package/client/src/dashboard/W_Table/TableMenu/getChartCols.ts +153 -0
- package/client/src/dashboard/W_Table/TableMenu/getTableMeta.ts +205 -0
- package/client/src/dashboard/W_Table/TooManyColumnsWarning.tsx +72 -0
- package/client/src/dashboard/W_Table/W_Table.tsx +772 -0
- package/client/src/dashboard/W_Table/W_Table_Content.tsx +51 -0
- package/client/src/dashboard/W_Table/colorBlend.ts +75 -0
- package/client/src/dashboard/W_Table/getTableData/getTableData.ts +291 -0
- package/client/src/dashboard/W_Table/getTableData/getTableFilter.ts +66 -0
- package/client/src/dashboard/W_Table/tableUtils/StyledTableColumn.tsx +322 -0
- package/client/src/dashboard/W_Table/tableUtils/getColWInfo.ts +48 -0
- package/client/src/dashboard/W_Table/tableUtils/getColWidth.ts +160 -0
- package/client/src/dashboard/W_Table/tableUtils/getEditColumn.tsx +143 -0
- package/client/src/dashboard/W_Table/tableUtils/getFullColumnConfig.ts +43 -0
- package/client/src/dashboard/W_Table/tableUtils/getJoinPaths.ts +89 -0
- package/client/src/dashboard/W_Table/tableUtils/getRowFilter.ts +114 -0
- package/client/src/dashboard/W_Table/tableUtils/getTableCols.tsx +258 -0
- package/client/src/dashboard/W_Table/tableUtils/getTableDataRequestSignature.ts +32 -0
- package/client/src/dashboard/W_Table/tableUtils/getTableSelect.ts +235 -0
- package/client/src/dashboard/W_Table/tableUtils/kFormatter.ts +12 -0
- package/client/src/dashboard/W_Table/tableUtils/onRenderColumn.tsx +107 -0
- package/client/src/dashboard/W_Table/tableUtils/prepareColsForRender.ts +69 -0
- package/client/src/dashboard/W_Table/tableUtils/tableUtils.ts +298 -0
- package/client/src/dashboard/W_TimeChart/AddTimeChartFilter.tsx +347 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChart.tsx +405 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChartHeaderControls.tsx +140 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChartLayerLegend.tsx +99 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChartMenu.tsx +228 -0
- package/client/src/dashboard/W_TimeChart/fetchData/constants.ts +5 -0
- package/client/src/dashboard/W_TimeChart/fetchData/fetchAndSetTimechartLayerData.ts +141 -0
- package/client/src/dashboard/W_TimeChart/fetchData/fetchTimechartLayer.ts +291 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartData.ts +163 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartLayers.ts +137 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartLayersWithBins.ts +296 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartSelectParams.ts +41 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeLayerDataSignature.ts +22 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimechartExtentFilter.ts +48 -0
- package/client/src/dashboard/Window/ChildWindowLayout.tsx +149 -0
- package/client/src/dashboard/Window/Window.tsx +322 -0
- package/client/src/dashboard/WindowControls/AddChartLayer.tsx +142 -0
- package/client/src/dashboard/WindowControls/ColorByLegend/ColorByLegend.tsx +256 -0
- package/client/src/dashboard/WindowControls/ColorByLegend/getGroupByValueColor.ts +50 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/DataLayer.tsx +182 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/DataLayerDataSource.tsx +243 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/DataLayerManager.tsx +157 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/LayerColorPicker.tsx +56 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/MapLayerStyling.tsx +192 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/useSortedLayerQueries.ts +34 -0
- package/client/src/dashboard/WindowControls/OSMLayerOptions.tsx +62 -0
- package/client/src/dashboard/WindowControls/SQLChartLayerEditor.tsx +38 -0
- package/client/src/dashboard/WindowControls/TimeChartLayerOptions.tsx +336 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceAddBtn.tsx +104 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceDeleteBtn.tsx +87 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceMenu.css +13 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceMenu.tsx +124 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceMenuDropDown.tsx +178 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceSettings.tsx +99 -0
- package/client/src/dashboard/WorkspaceMenu/useWorkspaces.ts +78 -0
- package/client/src/dashboard/getCrossFilters.ts +251 -0
- package/client/src/dashboard/localSettings.ts +94 -0
- package/client/src/dashboard/setPan.ts +358 -0
- package/client/src/dashboard/shortestPath.ts +137 -0
- package/client/src/demo/AppVideoDemo.tsx +132 -0
- package/client/src/demo/MousePointer.tsx +39 -0
- package/client/src/demo/demoUtils.ts +214 -0
- package/client/src/demo/recordDemoUtils.ts +87 -0
- package/client/src/demo/scripts/AIAssistantDemo.ts +60 -0
- package/client/src/demo/scripts/accessControlDemo.ts +44 -0
- package/client/src/demo/scripts/backupDemo.ts +50 -0
- package/client/src/demo/scripts/dashboardDemo.ts +215 -0
- package/client/src/demo/scripts/fileDemo.ts +24 -0
- package/client/src/demo/scripts/schemaDiagramDemo.ts +13 -0
- package/client/src/demo/scripts/sqlVideoDemo.ts +539 -0
- package/client/src/demo/scripts/videoDemoAccessControlScripts.ts +245 -0
- package/client/src/exports.ts +15 -0
- package/client/src/hooks/createStore.ts +24 -0
- package/client/src/hooks/useDebouncedCallback.ts +27 -0
- package/client/src/hooks/useThrottledCallback.ts +41 -0
- package/client/src/hooks/useTypedSearchParams.ts +81 -0
- package/client/src/i18n/LanguageSelector.tsx +33 -0
- package/client/src/i18n/i18nUtils.ts +187 -0
- package/client/src/i18n/translations/de.json +453 -0
- package/client/src/i18n/translations/es.json +425 -0
- package/client/src/i18n/translations/fr.json +425 -0
- package/client/src/i18n/translations/hi.json +431 -0
- package/client/src/i18n/translations/ru.json +431 -0
- package/client/src/i18n/translations/translations.ts +477 -0
- package/client/src/i18n/translations/zh.json +423 -0
- package/client/src/index.css +57 -0
- package/client/src/index.html.ejs +37 -0
- package/client/src/index.tsx +17 -0
- package/client/src/pages/Account/Account.tsx +150 -0
- package/client/src/pages/Account/ChangePassword.tsx +96 -0
- package/client/src/pages/Account/Sessions.tsx +248 -0
- package/client/src/pages/Account/Setup2FA.tsx +244 -0
- package/client/src/pages/AccountMenu.tsx +146 -0
- package/client/src/pages/Alerts.tsx +182 -0
- package/client/src/pages/AppContextProvider.tsx +26 -0
- package/client/src/pages/ComponentList.tsx +108 -0
- package/client/src/pages/ElectronSetup/ElectronSetup.tsx +122 -0
- package/client/src/pages/ElectronSetup/ElectronSetupStateDB.tsx +141 -0
- package/client/src/pages/ElectronSetup/useElectronSetup.ts +147 -0
- package/client/src/pages/Login/AuthNotifPopup.tsx +37 -0
- package/client/src/pages/Login/Login.tsx +133 -0
- package/client/src/pages/Login/LoginTotpForm.tsx +72 -0
- package/client/src/pages/Login/LoginWithProviders.tsx +62 -0
- package/client/src/pages/Login/SocialIcons.css +4 -0
- package/client/src/pages/Login/SocialIcons.tsx +85 -0
- package/client/src/pages/NewConnection/NewConnectionForm.tsx +572 -0
- package/client/src/pages/NewConnection/NewConnectionFormFields.tsx +314 -0
- package/client/src/pages/NewConnection/NewConnectionFormOptions.tsx +194 -0
- package/client/src/pages/NewConnection/SchemaFilter.tsx +87 -0
- package/client/src/pages/NewConnection/newConnectionUtils.ts +50 -0
- package/client/src/pages/NonHTTPSWarning.tsx +51 -0
- package/client/src/pages/NotFound.tsx +22 -0
- package/client/src/pages/ProjectConnection/PrglContextProvider.tsx +47 -0
- package/client/src/pages/ProjectConnection/ProjectConnection.tsx +110 -0
- package/client/src/pages/ProjectConnection/ProjectConnectionError.tsx +76 -0
- package/client/src/pages/ProjectConnection/useProjectDb.ts +253 -0
- package/client/src/pages/ProjectLogs.tsx +227 -0
- package/client/src/pages/ServerSettings/AuthProvidersSetup/AuthProvidersSetup.tsx +199 -0
- package/client/src/pages/ServerSettings/AuthProvidersSetup/useProviderProps.ts +39 -0
- package/client/src/pages/ServerSettings/EmailAuthSetup.tsx +209 -0
- package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailSMTPAndTemplateSetup.tsx +158 -0
- package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailSMTPSetup.tsx +128 -0
- package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailTemplateSetup.tsx +111 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfig.tsx +41 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigActions.tsx +187 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigAuthorizeUrlBtn.tsx +55 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigCredentials.tsx +81 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigTopControls.tsx +120 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/WebMcpConfig.tsx +162 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/useMcpServerOAuthConfigState.ts +132 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigButton.tsx +121 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigEditor.tsx +206 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigProvider.tsx +67 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/useMCPServerConfigState.tsx +107 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/useMCPServerEnable.ts +131 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServerFooterActions.tsx +108 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServerLogs.tsx +46 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServersInstall.tsx +81 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerHeaderCheckbox.tsx +120 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/MCPServerTools.tsx +95 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/MCPServerToolsGroupToggle.tsx +96 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/useMcpServerIcons.ts +87 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/useMcpToolsSelectOptions.tsx +33 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServers.tsx +140 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersHeader.tsx +47 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/AddMCPServer.tsx +196 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/MCPServersToolbar.tsx +77 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/useAddMCPServer.ts +253 -0
- package/client/src/pages/ServerSettings/MCPServers/useMCPChatAllowedTools.ts +25 -0
- package/client/src/pages/ServerSettings/MCPServers/useMCPServersListProps.tsx +118 -0
- package/client/src/pages/ServerSettings/OAuthProviderSetup.tsx +258 -0
- package/client/src/pages/ServerSettings/SecuritySettings.tsx +154 -0
- package/client/src/pages/ServerSettings/ServerSettings.tsx +151 -0
- package/client/src/pages/ServerSettings/Services.tsx +231 -0
- package/client/src/pages/ServerSettings/useEditableData.ts +55 -0
- package/client/src/pages/TopControls.tsx +182 -0
- package/client/src/pages/projectUtils.ts +0 -0
- package/client/src/theme/ThemeSelector.tsx +36 -0
- package/client/src/theme/useAppTheme.ts +47 -0
- package/client/src/theme/useSystemTheme.ts +23 -0
- package/client/src/useAppState/PrglCoreContextProvider.tsx +76 -0
- package/client/src/useAppState/useAppState.ts +92 -0
- package/client/src/useAppState/useDBSClient.ts +104 -0
- package/client/src/useAppState/useServerState.ts +62 -0
- package/client/src/useAppState/useUserData.ts +1 -0
- package/client/src/utils/colorUtils.ts +48 -0
- package/client/src/utils/hashCode.ts +52 -0
- package/client/src/utils/utils.ts +207 -0
- package/client/static/favicon-32x32.png +0 -0
- package/client/static/logos/anthropic.svg +3 -0
- package/client/static/logos/google.svg +25 -0
- package/client/static/logos/ollama.svg +7 -0
- package/client/static/logos/openai.svg +2 -0
- package/client/static/logos/openrouter.svg +1 -0
- package/client/static/mcp-oauth-close.js +5 -0
- package/client/static/prostgles-logo.svg +39 -0
- package/client/static/util.css +2024 -0
- package/client/static/v2.svg +25 -0
- package/client/tsconfig.eslint.json +5 -0
- package/client/tsconfig.json +40 -0
- package/client/tslint.json +5 -0
- package/common/DBGeneratedSchema.ts +953 -0
- package/common/DashboardTypes.ts +533 -0
- package/common/KeyObjMap.ts +100 -0
- package/common/OAuthUtils.ts +285 -0
- package/common/authTypesAndConstants.ts +1 -0
- package/common/columnDisplayFormat.schema.ts +211 -0
- package/common/electronInitTypes.ts +56 -0
- package/common/filterUtils.ts +491 -0
- package/common/getJsonSchemaAsTs.ts +335 -0
- package/common/llmUtils.ts +133 -0
- package/common/managedTableSchema.ts +38 -0
- package/common/mcp/databaseAccessSchema.ts +70 -0
- package/common/mcp/db.mcp.schema.ts +280 -0
- package/common/mcp/documents.mcp.schema.ts +45 -0
- package/common/mcp/documentsServiceInputSchema.ts +129 -0
- package/common/mcp/runCodeInSandboxSchema.ts +85 -0
- package/common/mcp/startAgenticWorkflowSchema.ts +180 -0
- package/common/mcp/tableOptionsJsonbSchema.ts +151 -0
- package/common/mcp/tablePermissionsSchema.ts +101 -0
- package/common/mcp/ui.mcp.schema.ts +496 -0
- package/common/mcp/userInputSchema.ts +87 -0
- package/common/mcp/web.mcp.schema.ts +245 -0
- package/common/mcp/webdev.mcp.schema.ts +138 -0
- package/common/mcpUtils.ts +75 -0
- package/common/prostglesApiTypes.ts +551 -0
- package/common/prostglesMcp.ts +35 -0
- package/common/psql_queries.json +657 -0
- package/common/publishUtils.ts +600 -0
- package/common/tsconfig.json +22 -0
- package/common/utils.ts +525 -0
- package/docker-compose.yml +99 -0
- package/docs/01_Overview.md +25 -0
- package/docs/02_Installation_(Docker).md +37 -0
- package/docs/03_Installation_(Desktop_Version).md +27 -0
- package/docs/04_Navigation_bar.md +37 -0
- package/docs/05_Connections.md +108 -0
- package/docs/06_Connection_dashboard.md +58 -0
- package/docs/07_Import_file.md +15 -0
- package/docs/08_Agentic_workflows.md +27 -0
- package/docs/09_Schema_diagram.md +63 -0
- package/docs/10_SQL_editor.md +69 -0
- package/docs/11_Table_view.md +188 -0
- package/docs/12_Map_view.md +56 -0
- package/docs/13_Timechart_view.md +49 -0
- package/docs/14_AI_Assistant.md +64 -0
- package/docs/15_Connection_configuration.md +20 -0
- package/docs/16_Access_control.md +12 -0
- package/docs/17_File_storage.md +8 -0
- package/docs/18_Backup_and_Restore.md +22 -0
- package/docs/19_API.md +20 -0
- package/docs/20_Server_Settings.md +28 -0
- package/docs/21_Account.md +21 -0
- package/docs/22_Command_Palette.md +10 -0
- package/docs/screenshots/table_timechart.dark.svgif.svg +375 -0
- package/docs/screenshots/table_timechart.svgif.svg +1102 -0
- package/docs/screenshots/timechart.dark.svgif.svg +221 -0
- package/docs/screenshots/timechart.svgif.svg +846 -0
- package/e2e/icon512.png +0 -0
- package/e2e/package-lock.json +401 -0
- package/e2e/package.json +31 -0
- package/e2e/playwright.config.js +65 -0
- package/e2e/playwright.config.ts +32 -0
- package/e2e/test-local.sh +5 -0
- package/e2e/tests/Testing.ts +724 -0
- package/e2e/tests/command_palette.spec.ts +114 -0
- package/e2e/tests/configTest/.env.example +10 -0
- package/e2e/tests/configTest/constants.ts +13 -0
- package/e2e/tests/configTest/functions.ts +14 -0
- package/e2e/tests/configTest/index.ts +84 -0
- package/e2e/tests/configTest/package.json +17 -0
- package/e2e/tests/configTest/tsconfig.json +13 -0
- package/e2e/tests/config_deploy.spec.ts +386 -0
- package/e2e/tests/create_docs.spec.ts +231 -0
- package/e2e/tests/create_load_test_users.spec.ts +47 -0
- package/e2e/tests/demo_video.spec.ts +139 -0
- package/e2e/tests/demo_video_setup.spec.ts +118 -0
- package/e2e/tests/fileBrowserGoToPath.ts +53 -0
- package/e2e/tests/load_test.spec.ts +53 -0
- package/e2e/tests/main.spec.ts +3820 -0
- package/e2e/tests/mockSMTPServer.ts +81 -0
- package/e2e/tests/saveDocs.ts +55 -0
- package/e2e/tests/svgScreenshots/SVG_SCREENSHOT_DETAILS.ts +132 -0
- package/e2e/tests/svgScreenshots/account.svgif.ts +14 -0
- package/e2e/tests/svgScreenshots/aiAssistant.svgif.ts +235 -0
- package/e2e/tests/svgScreenshots/aiAssistantAgenticWorkflow.svgif.ts +339 -0
- package/e2e/tests/svgScreenshots/aiAssistantAgenticWorkflowGovApi.svgif.ts +116 -0
- package/e2e/tests/svgScreenshots/backupAndRestore.svgif.ts +143 -0
- package/e2e/tests/svgScreenshots/commandPalette.svgif.ts +69 -0
- package/e2e/tests/svgScreenshots/dashboard.svgif.ts +271 -0
- package/e2e/tests/svgScreenshots/electronSetup.svgif.ts +32 -0
- package/e2e/tests/svgScreenshots/fileImporter.svgif.ts +39 -0
- package/e2e/tests/svgScreenshots/getOverviewSvgifSpecs.svgif.ts +288 -0
- package/e2e/tests/svgScreenshots/map.svgif.ts +50 -0
- package/e2e/tests/svgScreenshots/navbar.svgif.ts +22 -0
- package/e2e/tests/svgScreenshots/newConnection.svgif.ts +26 -0
- package/e2e/tests/svgScreenshots/schemaDiagram.svgif.ts +82 -0
- package/e2e/tests/svgScreenshots/sqlEditor.svgif.ts +348 -0
- package/e2e/tests/svgScreenshots/table.svgif.ts +167 -0
- package/e2e/tests/svgScreenshots/tableTimechart.svgif.ts +507 -0
- package/e2e/tests/svgScreenshots/timechart.svgif.ts +138 -0
- package/e2e/tests/svgScreenshots/utils/constants.ts +23 -0
- package/e2e/tests/svgScreenshots/utils/dedent.ts +9 -0
- package/e2e/tests/svgScreenshots/utils/getFilesFromDir.ts +30 -0
- package/e2e/tests/svgScreenshots/utils/getSceneUtils.ts +200 -0
- package/e2e/tests/svgScreenshots/utils/removeOtherElements.ts +26 -0
- package/e2e/tests/svgScreenshots/utils/saveSVGScreenshot.ts +67 -0
- package/e2e/tests/svgScreenshots/utils/saveSVGifs.ts +74 -0
- package/e2e/tests/svgScreenshots/utils/saveSVGs.ts +61 -0
- package/e2e/tests/svgScreenshots/utils/startScreencast.ts +118 -0
- package/e2e/tests/svgScreenshots/utils/svgScreenshotsCompleteReferenced.ts +98 -0
- package/e2e/tests/svgScreenshots/utils/svgifToWebm.ts +196 -0
- package/e2e/tests/svgScreenshots/utils/typeSendAddScenes.ts +86 -0
- package/e2e/tests/testAskLLM/agenticWorkflowToolUses.ts +294 -0
- package/e2e/tests/testAskLLM/createComponentToolUse.ts +49 -0
- package/e2e/tests/testAskLLM/createReceipts.ts +183 -0
- package/e2e/tests/testAskLLM/getAskUserToolUse.ts +36 -0
- package/e2e/tests/testAskLLM/hello.mp3 +0 -0
- package/e2e/tests/testAskLLM/mcpSandboxToolUse.ts +64 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/Dockerfile +32 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/package-lock.json +2120 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/package.json +20 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/server.ts +144 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/start-mock-mcp.sh +93 -0
- package/e2e/tests/testAskLLM/sample.pdf +35 -0
- package/e2e/tests/testAskLLM/sampleToolUseData.ts +1413 -0
- package/e2e/tests/testAskLLM/scenarios/geoQuestion.scenario.ts +110 -0
- package/e2e/tests/testAskLLM/scenarios/hygieneRatingsApi.scenario.ts +62 -0
- package/e2e/tests/testAskLLM/scenarios/receiptImport/receiptImport.scenario.ts +53 -0
- package/e2e/tests/testAskLLM/speechToTextTest.ts +101 -0
- package/e2e/tests/testAskLLM/stringify.ts +1 -0
- package/e2e/tests/testAskLLM/testAskLLM.ts +558 -0
- package/e2e/tests/testAskLLM/utils.ts +34 -0
- package/e2e/tests/tsconfig.json +16 -0
- package/e2e/tests/utils/constants.ts +22 -0
- package/e2e/tests/utils/goTo.ts +87 -0
- package/e2e/tests/utils/isPortFree.ts +19 -0
- package/e2e/tests/utils/utils.ts +1319 -0
- package/e2e/tsconfig.json +5 -0
- package/electron/README.md +34 -0
- package/electron/build.sh +74 -0
- package/electron/e2e-electron/electron.spec.tsx +214 -0
- package/electron/e2e-electron/tsconfig.json +10 -0
- package/electron/forge.config.js +26 -0
- package/electron/getProtocolHandler.ts +41 -0
- package/electron/handleErrors.ts +25 -0
- package/electron/icon512.png +0 -0
- package/electron/image.ico +0 -0
- package/electron/images/generate_from_svg.sh +13 -0
- package/electron/images/icon.ico +0 -0
- package/electron/images/icon512.png +0 -0
- package/electron/images/icon512notpadded.png +0 -0
- package/electron/images/loading-effect.css +43 -0
- package/electron/images/prostgles-logo-rounded.svg +46 -0
- package/electron/images/prostgles-logo.svg +39 -0
- package/electron/images/rounded/256x256.png +0 -0
- package/electron/images/rounded/512.png +0 -0
- package/electron/images/rounded/512x512.png +0 -0
- package/electron/images/rounded/64x64.png +0 -0
- package/electron/images/rounded/icon512.png +0 -0
- package/electron/loadingHTML.ts +70 -0
- package/electron/main.ts +125 -0
- package/electron/mainWindow.ts +155 -0
- package/electron/package-lock.json +3916 -0
- package/electron/package.json +111 -0
- package/electron/playwright.config.ts +17 -0
- package/electron/screenCapture.bat +275 -0
- package/electron/scripts/patch-builder.mjs +25 -0
- package/electron/setContextMenu.ts +56 -0
- package/electron/start.sh +10 -0
- package/electron/test-linux-macos.sh +1 -0
- package/electron/test-linux.sh +2 -0
- package/electron/test-setup.js +8 -0
- package/electron/test-w-debug.sh +1 -0
- package/electron/test.sh +1 -0
- package/electron/tsconfig.json +22 -0
- package/electron/win-inno-setup.ts +100 -0
- package/electron/win.js +3 -0
- package/package.json +33 -0
- package/releases/v1.0.0.md +5 -0
- package/releases/v2.0.0.md +25 -0
- package/releases/v2.2.2.md +13 -0
- package/releases/v2.2.3.md +1 -0
- package/releases/v2.2.4.md +1 -0
- package/releases/v2.2.5.md +1 -0
- package/releases/v2.3.1.md +5 -0
- package/releases/v2.3.5.md +7 -0
- package/scripts/check_release_ready.sh +53 -0
- package/scripts/demo/record-local.sh +13 -0
- package/scripts/demo/split-video.sh +6 -0
- package/scripts/get_version.sh +11 -0
- package/scripts/npm_publish_dev.sh +6 -0
- package/scripts/release.sh +35 -0
- package/scripts/start-dev-electron.sh +14 -0
- package/scripts/start-dev.sh +18 -0
- package/scripts/start-prod.sh +5 -0
- package/scripts/test.sh +62 -0
- package/scripts/update_docker_image_versions.sh +28 -0
- package/server/.vscode/settings.json +3 -0
- package/server/eslint.config.mjs +83 -0
- package/server/licenses.json +3821 -0
- package/server/package-lock.json +7252 -0
- package/server/package.json +84 -0
- package/server/sample_schemas/_crypto.sql +95 -0
- package/server/sample_schemas/cleaning.sql +49 -0
- package/server/sample_schemas/cloud_computing.sql +63 -0
- package/server/sample_schemas/countries.sql +29 -0
- package/server/sample_schemas/crypto/index.ts +3 -0
- package/server/sample_schemas/crypto/onMount.ts +802 -0
- package/server/sample_schemas/crypto/package.json +7 -0
- package/server/sample_schemas/crypto/tableConfig.ts +80 -0
- package/server/sample_schemas/crypto/tsconfig.json +12 -0
- package/server/sample_schemas/crypto/workspaceConfig.ts +261 -0
- package/server/sample_schemas/financial.sql +49 -0
- package/server/sample_schemas/food_delivery/connection.ts +1007 -0
- package/server/sample_schemas/food_delivery/databaseConfig.ts +116 -0
- package/server/sample_schemas/food_delivery/index.ts +8 -0
- package/server/sample_schemas/food_delivery/onInit.sql +1507 -0
- package/server/sample_schemas/food_delivery/onMount.ts +149 -0
- package/server/sample_schemas/food_delivery/package.json +4 -0
- package/server/sample_schemas/food_delivery/tsconfig.json +16 -0
- package/server/sample_schemas/food_delivery/workspaceConfig.ts +53 -0
- package/server/sample_schemas/lodging.sql +48 -0
- package/server/sample_schemas/maps.sql +73 -0
- package/server/sample_schemas/property_management/index.ts +2 -0
- package/server/sample_schemas/property_management/onMount.ts +55 -0
- package/server/sample_schemas/property_management/package.json +4 -0
- package/server/sample_schemas/property_management/tsconfig.json +16 -0
- package/server/sample_schemas/property_management/workspaceConfig.ts +92 -0
- package/server/sample_schemas/sales.sql +51 -0
- package/server/sample_schemas/sample.sql +72 -0
- package/server/sample_schemas/testschema.ts +21 -0
- package/server/sample_schemas/weather/index.ts +1 -0
- package/server/sample_schemas/weather/onMount.ts +284 -0
- package/server/sample_schemas/weather/package.json +4 -0
- package/server/sample_schemas/weather/tsconfig.json +16 -0
- package/server/scripts/preparePackage.mjs +18 -0
- package/server/src/BackupManager/BackupManager.ts +297 -0
- package/server/src/BackupManager/checkAutomaticBackup.ts +143 -0
- package/server/src/BackupManager/getInstalledPrograms.ts +203 -0
- package/server/src/BackupManager/pgDump.ts +242 -0
- package/server/src/BackupManager/pgRestore.ts +238 -0
- package/server/src/BackupManager/pipeFromCommand.ts +94 -0
- package/server/src/BackupManager/pipeToCommand.ts +66 -0
- package/server/src/BackupManager/utils.ts +124 -0
- package/server/src/ConnectionManager/ConnectionManager.ts +613 -0
- package/server/src/ConnectionManager/applyStartupSchemaConfig.ts +95 -0
- package/server/src/ConnectionManager/connectionManagerUtils.ts +164 -0
- package/server/src/ConnectionManager/connectionOnReady.ts +76 -0
- package/server/src/ConnectionManager/dbsConnectionOptions.ts +109 -0
- package/server/src/ConnectionManager/getConnectionAuth.ts +37 -0
- package/server/src/ConnectionManager/getConnectionHttpServer.ts +112 -0
- package/server/src/ConnectionManager/getConnectionPublish.ts +119 -0
- package/server/src/ConnectionManager/getConnectionServerFunctions.ts +108 -0
- package/server/src/ConnectionManager/getConnectionSocketPath.ts +12 -0
- package/server/src/ConnectionManager/getHotReloadConfigs.ts +161 -0
- package/server/src/ConnectionManager/getInitiatedPostgresqlPIDs.ts +84 -0
- package/server/src/ConnectionManager/getSchemaConfig.ts +84 -0
- package/server/src/ConnectionManager/initConnectionManager.ts +147 -0
- package/server/src/ConnectionManager/modifyClientSchema.ts +146 -0
- package/server/src/ConnectionManager/parseTableConfig.ts +231 -0
- package/server/src/ConnectionManager/saveCertificates.ts +68 -0
- package/server/src/ConnectionManager/startConnection.ts +353 -0
- package/server/src/ConnectionManager/startConnectionOnRequestHandler.ts +63 -0
- package/server/src/ConnectionManager/syncSchemaConfig.ts +98 -0
- package/server/src/Logger.ts +150 -0
- package/server/src/McpHub/AnthropicMcpHub/McpHub.ts +144 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/authenticateMcpServer.ts +98 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/connectToRemoteMCPServer.ts +176 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/createMcpOAuthProvider.ts +257 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/getMcpOAuthMetadata.ts +112 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/getRemoteMcpServerParameters.ts +82 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/saveServerInfo.ts +76 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/updateRemoteMcpAuthorizationCode.ts +100 -0
- package/server/src/McpHub/AnthropicMcpHub/McpTypes.ts +189 -0
- package/server/src/McpHub/AnthropicMcpHub/connectToMCPServer.ts +132 -0
- package/server/src/McpHub/AnthropicMcpHub/createMcpServerHandlers.ts +116 -0
- package/server/src/McpHub/AnthropicMcpHub/installMCPServer.ts +195 -0
- package/server/src/McpHub/AnthropicMcpHub/runShellCommand.ts +53 -0
- package/server/src/McpHub/AnthropicMcpHub/startMcpHub.ts +111 -0
- package/server/src/McpHub/DefaultMCPServers/DefaultMCPServers.ts +153 -0
- package/server/src/McpHub/DefaultMCPServers/mcpGithub.ts +968 -0
- package/server/src/McpHub/DockerSandbox/createBridgeInternalDockerNetwork.ts +35 -0
- package/server/src/McpHub/DockerSandbox/createContainer.spec.ts +195 -0
- package/server/src/McpHub/DockerSandbox/createContainer.ts +125 -0
- package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/dockerContainerAuthRegistry.ts +150 -0
- package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/dockerMCPServerProxy.ts +395 -0
- package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/getDockerGatewayIP.ts +27 -0
- package/server/src/McpHub/DockerSandbox/executeDockerCommand.ts +152 -0
- package/server/src/McpHub/DockerSandbox/getContainerLogs.ts +17 -0
- package/server/src/McpHub/DockerSandbox/getDockerRunArgs.ts +114 -0
- package/server/src/McpHub/DockerSandbox/runContainerWithProxyAccess.ts +99 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServerTypes.ts +143 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Db.mcp.ts +281 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Documents.mcp.ts +89 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/createAgenticWorkflow.ts +247 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/assertTablesExistInFutureSchema.ts +14 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/getValidatedMcpServerToolsAllowed.ts +155 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/parseDDLStatements.ts +84 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/quoteIdent.ts +139 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateAgenticWorkflowDefinitions.ts +102 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateDatabaseAccessDefinitions.ts +212 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateUserInput.ts +159 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateUserInputDefinitions.ts +36 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/execution/getVolumesFromUserInput.ts +134 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/execution/startAgenticWorkflowContainer.ts +341 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/createWorkflowExecutionHandlers.ts +155 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/getAgentConfigWithDefaults.ts +96 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/setupOrchestrationToolPermissions.ts +64 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/addInstrumentationToTsLogic.ts +350 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/callWorkflowProxy.ts +99 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflow.spec.ts +110 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflow.ts +576 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflowHandlers.ts +127 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflowHandlers.types.ts +72 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/definitionHandler.ts +104 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/ensureWorkflowIsExecuted.ts +53 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/getTsLogicSummary.ts +639 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/orchestrationToolHandlers.ts +55 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/tableHandlers.ts +108 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getAgenticWorkflowDockerCoreFiles.spec.ts +26 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getAgenticWorkflowDockerCoreFiles.ts +225 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getDefineAgenticWorkflowTsWithDbAndMcpTypes.ts +187 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getOrchestrationContainerFiles.ts +31 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getToolTypescriptSchemas.ts +84 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/startAgenticWorkflow.ts +181 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/fetchTools.ts +48 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/runCodeInSandboxContainer.ts +133 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getAgenticToolSchemas.ts +55 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getContainerToolProxyAccessInstructions.ts +22 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getContainerToolSchemas.ts +46 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/prostglesUiToolSchemas.ts +23 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/suggestDashboardsToolSchema.ts +26 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/startAgent.ts +166 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/validateCreateDashboards.ts +249 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Ui.mcp.ts +343 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/Web.mcp.ts +265 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/checkConfigAccess.spec.ts +112 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/checkConfigAccess.ts +263 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/getDocumentText.ts +34 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/WebDev.mcp.ts +114 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/createComponent.ts +94 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/createComponentQuickFeedbackPreview.ts +53 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/getWebDevChatAndConnection.ts +12 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/searchWebDevFiles.spec.ts +82 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/searchWebDevFiles.ts +118 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/utils.ts +30 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/getClientDBHandlersForChat.ts +46 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/getExistingTablesSchema.ts +230 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers.ts +30 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMcpHub.ts +244 -0
- package/server/src/McpHub/callMCPServerTool.ts +148 -0
- package/server/src/McpHub/getMcpServerParameters.ts +204 -0
- package/server/src/McpHub/insertMcpServerList.ts +49 -0
- package/server/src/McpHub/reloadMcpServerTools.ts +123 -0
- package/server/src/McpHub/testMCPServerConfig.ts +29 -0
- package/server/src/McpHub/utils.ts +1 -0
- package/server/src/ServiceManager/ServiceManager.spec.ts +27 -0
- package/server/src/ServiceManager/ServiceManager.ts +162 -0
- package/server/src/ServiceManager/ServiceManagerTypes.ts +136 -0
- package/server/src/ServiceManager/buildService.ts +138 -0
- package/server/src/ServiceManager/dockerInspect.ts +33 -0
- package/server/src/ServiceManager/enableService.ts +41 -0
- package/server/src/ServiceManager/getDockerBuildHash.ts +57 -0
- package/server/src/ServiceManager/getSelectedConfigEnvs.ts +47 -0
- package/server/src/ServiceManager/getServiceEndpoints.ts +122 -0
- package/server/src/ServiceManager/initialiseServices.ts +56 -0
- package/server/src/ServiceManager/resolveBinary.ts +41 -0
- package/server/src/ServiceManager/services/documents/documents.service.ts +178 -0
- package/server/src/ServiceManager/services/documents/documents.service.types.ts +43 -0
- package/server/src/ServiceManager/services/documents/src/Dockerfile +29 -0
- package/server/src/ServiceManager/services/documents/src/layout_postprocessor.py +707 -0
- package/server/src/ServiceManager/services/documents/src/requirements.txt +3 -0
- package/server/src/ServiceManager/services/frontendDev/frontendDev.service.ts +19 -0
- package/server/src/ServiceManager/services/frontendDev/src/.prettierrc +3 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/.env.development +1 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/Dockerfile +5 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/README.md +6 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/eslint.config.js +27 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/index.html +13 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/package.json +32 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/public/vite.svg +1 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/App.css +42 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/App.tsx +19 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/api/DBGeneratedSchema.d.ts +33 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/api/ProstglesProvider.tsx +61 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/assets/react.svg +1 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/components/SampleComponent/SampleComponent.tsx +11 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/index.css +68 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/main.tsx +23 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/pages/ComponentPreview.tsx +31 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/pages/Home.tsx +36 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.app.json +28 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.json +7 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.node.json +26 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/vite.config.ts +17 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/package.json +24 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/playwright.config.ts +36 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/coverage.ts +67 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/main.spec.ts +21 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/tsconfig.json +13 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tsconfig.json +13 -0
- package/server/src/ServiceManager/services/frontendDev/src/package.json +15 -0
- package/server/src/ServiceManager/services/frontendDev/src/tsconfig.base.json +32 -0
- package/server/src/ServiceManager/services/speechToText/TRANSCRIBE_OUTPUT_SCHEMA.ts +53 -0
- package/server/src/ServiceManager/services/speechToText/speechToText.service.ts +125 -0
- package/server/src/ServiceManager/services/speechToText/src/Dockerfile +31 -0
- package/server/src/ServiceManager/services/speechToText/src/app.py +115 -0
- package/server/src/ServiceManager/services/speechToText/src/requirements.txt +3 -0
- package/server/src/ServiceManager/services/webSearchSearxng/src/Dockerfile +12 -0
- package/server/src/ServiceManager/services/webSearchSearxng/src/limiter.toml +0 -0
- package/server/src/ServiceManager/services/webSearchSearxng/src/settings.yml +11 -0
- package/server/src/ServiceManager/services/webSearchSearxng/webSearchSearxng.service.ts +36 -0
- package/server/src/ServiceManager/startService.ts +196 -0
- package/server/src/ServiceManager/stopService.ts +23 -0
- package/server/src/ServiceManager/withRetries.ts +19 -0
- package/server/src/authConfig/OAuthProviders/getOAuthLoginProviders.ts +67 -0
- package/server/src/authConfig/OAuthProviders/loginWithProvider.ts +94 -0
- package/server/src/authConfig/authUtils.ts +19 -0
- package/server/src/authConfig/createPasswordlessAdminSessionIfNeeded.ts +86 -0
- package/server/src/authConfig/createPublicUserSessionIfAllowed.ts +48 -0
- package/server/src/authConfig/emailProvider/getEmailAuthProvider.ts +44 -0
- package/server/src/authConfig/emailProvider/getEmailSenderWithMockTest.ts +96 -0
- package/server/src/authConfig/emailProvider/onEmailRegistration.ts +116 -0
- package/server/src/authConfig/getActiveSession.ts +76 -0
- package/server/src/authConfig/getAuth.ts +171 -0
- package/server/src/authConfig/getLogin.ts +206 -0
- package/server/src/authConfig/getUser.ts +108 -0
- package/server/src/authConfig/onMagicLinkOrOTP.ts +171 -0
- package/server/src/authConfig/onUseOrSocketConnected.ts +43 -0
- package/server/src/authConfig/sessionUtils.ts +120 -0
- package/server/src/authConfig/startRateLimitedLoginAttempt.ts +201 -0
- package/server/src/authConfig/subscribeToAuthSetupChanges.ts +144 -0
- package/server/src/authConfig/upsertSession.ts +48 -0
- package/server/src/cli/cli.ts +217 -0
- package/server/src/cli/cliUtils.ts +50 -0
- package/server/src/cloudClients/cloudClients.ts +116 -0
- package/server/src/connectionUtils/getConnectionDetails.ts +76 -0
- package/server/src/connectionUtils/testDBConnection.ts +167 -0
- package/server/src/connectionUtils/validateConnection.ts +114 -0
- package/server/src/createHttpAndIOServers/createHttpServer.ts +147 -0
- package/server/src/createHttpAndIOServers/createIOWebsocketServer.ts +31 -0
- package/server/src/createHttpAndIOServers/getCorsOptions.ts +58 -0
- package/server/src/createHttpAndIOServers/setHttpAppSecurity.ts +124 -0
- package/server/src/electronConfig.ts +223 -0
- package/server/src/envVars.ts +45 -0
- package/server/src/getPSQLQueries.ts +123 -0
- package/server/src/index.ts +273 -0
- package/server/src/init/CSP_DEFAULTS.ts +41 -0
- package/server/src/init/addDevImageProxyRoute.ts +74 -0
- package/server/src/init/cleanupTestDatabases.ts +51 -0
- package/server/src/init/initExpressAndIOServers.ts +127 -0
- package/server/src/init/initUsers.ts +113 -0
- package/server/src/init/insertStateDatabase.ts +72 -0
- package/server/src/init/isRetryableError.ts +50 -0
- package/server/src/init/logOutgoingHttpRequests.ts +15 -0
- package/server/src/init/prostglesOnReady.ts +147 -0
- package/server/src/init/saveTypescriptFilesForProduction.ts +113 -0
- package/server/src/init/setDBSRoutesForElectron.ts +206 -0
- package/server/src/init/startDevHotReloadNotifier.ts +39 -0
- package/server/src/init/startProstgles.ts +220 -0
- package/server/src/init/tryStartProstgles.ts +177 -0
- package/server/src/init/utils.ts +44 -0
- package/server/src/init.sql +1 -0
- package/server/src/methods/getPidStats.ts +336 -0
- package/server/src/methods/getPidStatsFromProc.ts +125 -0
- package/server/src/methods/statusMonitorUtils.ts +148 -0
- package/server/src/publish/getPublishLLM.ts +246 -0
- package/server/src/publish/getPublishLlmChats.ts +73 -0
- package/server/src/publish/publish.ts +398 -0
- package/server/src/schemaConfig.ts +97 -0
- package/server/src/serverFunctions/adminServerFunctions/getAdminServerFunctions.ts +477 -0
- package/server/src/serverFunctions/adminServerFunctions/getAgenticWorkflowFunctions.ts +186 -0
- package/server/src/serverFunctions/adminServerFunctions/getBackupServerFunctions.ts +178 -0
- package/server/src/serverFunctions/adminServerFunctions/getDefineAdminFunction.ts +11 -0
- package/server/src/serverFunctions/adminServerFunctions/getMcpServerFunctions.ts +283 -0
- package/server/src/serverFunctions/adminServerFunctions/getWebAppServerFunctions.ts +228 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/buildWebApp.ts +38 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getReactComponents copy.ts +188 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getReactComponents.ts +287 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getReactRenderTree.ts +180 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getTemplatedWebAppConnection.ts +23 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getValidatedWebAppPath.spec.ts +77 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getValidatedWebAppPath.ts +22 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/readWebAppFiles.ts +45 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/runDockerForWebApp.ts +56 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/testWebApp.ts +30 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/writeWebAppFiles.ts +91 -0
- package/server/src/serverFunctions/applySampleSchema.ts +96 -0
- package/server/src/serverFunctions/askLLM/LLMResponseTypes.ts +315 -0
- package/server/src/serverFunctions/askLLM/agentConstants.ts +42 -0
- package/server/src/serverFunctions/askLLM/askLLM.ts +540 -0
- package/server/src/serverFunctions/askLLM/checkLLMLimit.ts +59 -0
- package/server/src/serverFunctions/askLLM/checkMaxCostLimitForChat.ts +51 -0
- package/server/src/serverFunctions/askLLM/defaultPrompts/base.prompt.ts +26 -0
- package/server/src/serverFunctions/askLLM/defaultPrompts/createAgenticWorkflow.prompt.ts +53 -0
- package/server/src/serverFunctions/askLLM/defaultPrompts/createDashboards.prompt.ts +15 -0
- package/server/src/serverFunctions/askLLM/fetchLLMResponse.ts +105 -0
- package/server/src/serverFunctions/askLLM/getCompactedMessages.ts +101 -0
- package/server/src/serverFunctions/askLLM/getFullPrompt.ts +86 -0
- package/server/src/serverFunctions/askLLM/getLLMRequestBody.ts +368 -0
- package/server/src/serverFunctions/askLLM/getLLMToolsAllowedInThisChat.ts +179 -0
- package/server/src/serverFunctions/askLLM/getLLMUsageCost.ts +91 -0
- package/server/src/serverFunctions/askLLM/getPastMessages.ts +9 -0
- package/server/src/serverFunctions/askLLM/getUserMessageCost.ts +21 -0
- package/server/src/serverFunctions/askLLM/getValidatedAskLLMChatOptions.ts +59 -0
- package/server/src/serverFunctions/askLLM/handleToolUseResultConfirmation.ts +87 -0
- package/server/src/serverFunctions/askLLM/parseLLMResponseObject.ts +206 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getDbConnectionWithPermissions.ts +94 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getMCPServerTools.ts +28 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getMcpToolsWithDynamicDescription.ts +77 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getTemplateUserConnection.ts +182 -0
- package/server/src/serverFunctions/askLLM/readFetchStream.ts +69 -0
- package/server/src/serverFunctions/askLLM/refreshModels.ts +223 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/getMostSimilar.ts +55 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/runAgentGoalTool.ts +116 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/runApprovedTools.ts +348 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/validateLastMessageToolUseRequests.ts +33 -0
- package/server/src/serverFunctions/askLLM/setupLLM.ts +176 -0
- package/server/src/serverFunctions/askLLM/setupLLMProviders.ts +186 -0
- package/server/src/serverFunctions/deleteConnection.ts +111 -0
- package/server/src/serverFunctions/getConnectionAndDatabaseConfig.ts +27 -0
- package/server/src/serverFunctions/getNodeTypes.spec.ts +80 -0
- package/server/src/serverFunctions/getNodeTypes.ts +306 -0
- package/server/src/serverFunctions/getServerFunctions.ts +163 -0
- package/server/src/serverFunctions/getServerFunctionsContext.ts +29 -0
- package/server/src/serverFunctions/prostglesSignup.ts +28 -0
- package/server/src/serverFunctions/setFileStorage.ts +107 -0
- package/server/src/serverFunctions/userServerFunctions/approveToolUse.ts +146 -0
- package/server/src/serverFunctions/userServerFunctions/getLLMAccessParams.ts +21 -0
- package/server/src/serverFunctions/userServerFunctions/getUserServerFunctions.ts +260 -0
- package/server/src/tableConfig/tableConfig.ts +374 -0
- package/server/src/tableConfig/tableConfigAccessControl.ts +212 -0
- package/server/src/tableConfig/tableConfigAgenticWorkflow.ts +174 -0
- package/server/src/tableConfig/tableConfigBackups.ts +160 -0
- package/server/src/tableConfig/tableConfigConnections.ts +182 -0
- package/server/src/tableConfig/tableConfigDatabaseConfig.ts +714 -0
- package/server/src/tableConfig/tableConfigGlobalSettings.ts +40 -0
- package/server/src/tableConfig/tableConfigLinks.ts +273 -0
- package/server/src/tableConfig/tableConfigLlm/tableConfigLlm.ts +347 -0
- package/server/src/tableConfig/tableConfigLlm/tableConfigLlmChats.ts +361 -0
- package/server/src/tableConfig/tableConfigLlm/tableConfigLlmExtraRequestData.ts +50 -0
- package/server/src/tableConfig/tableConfigMCPServers.ts +676 -0
- package/server/src/tableConfig/tableConfigMigrations.ts +26 -0
- package/server/src/tableConfig/tableConfigPublishedMethods.ts +120 -0
- package/server/src/tableConfig/tableConfigServices.ts +61 -0
- package/server/src/tableConfig/tableConfigUsers.ts +227 -0
- package/server/src/tableConfig/tableConfigWebApp.ts +17 -0
- package/server/src/tableConfig/tableConfigWindows.ts +164 -0
- package/server/src/tableConfig/tableConfigWorkspaces.ts +100 -0
- package/server/src/tableConfig/tablePermissionsSchema.ts +66 -0
- package/server/src/testElectron.ts +33 -0
- package/server/src/upsertConnection.ts +73 -0
- package/server/src/utils/assertIconExists.ts +24 -0
- package/server/src/utils/isPortFree.ts +40 -0
- package/server/src/utils/tout.ts +7 -0
- package/server/test-runner.mjs +28 -0
- package/server/tsconfig.json +45 -0
- package/server/tslint.json +8 -0
|
@@ -0,0 +1,2024 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--gray-50: #f9fafb;
|
|
3
|
+
--gray-100: #f4f5f7;
|
|
4
|
+
--gray-200: #e5e7eb;
|
|
5
|
+
--gray-300: #d2d6dc;
|
|
6
|
+
--gray-400: #9fa6b2;
|
|
7
|
+
--gray-500: #6b7280;
|
|
8
|
+
--gray-600: #4b5563;
|
|
9
|
+
--gray-700: #40454e;
|
|
10
|
+
--gray-800: #36393e;
|
|
11
|
+
--gray-900: #161e2e;
|
|
12
|
+
|
|
13
|
+
--red-50: #fdf2f2;
|
|
14
|
+
--red-100: #fde8e8;
|
|
15
|
+
--red-200: #fbd5d5;
|
|
16
|
+
--red-300: #f8b4b4;
|
|
17
|
+
--red-400: #f98080;
|
|
18
|
+
--red-500: #f05252;
|
|
19
|
+
--red-600: #e02424;
|
|
20
|
+
--red-700: #c81e1e;
|
|
21
|
+
--red-800: #9b1c1c;
|
|
22
|
+
--red-900: #771d1d;
|
|
23
|
+
--red-1000: #360202;
|
|
24
|
+
|
|
25
|
+
--yellow-50: #fdfdea;
|
|
26
|
+
--yellow-100: #fdf6b2;
|
|
27
|
+
--yellow-200: #fce96a;
|
|
28
|
+
--yellow-300: #faca15;
|
|
29
|
+
--yellow-400: #e3a008;
|
|
30
|
+
--yellow-500: #c27803;
|
|
31
|
+
--yellow-600: #9f580a;
|
|
32
|
+
--yellow-700: #8e4b10;
|
|
33
|
+
--yellow-800: #723b13;
|
|
34
|
+
--yellow-900: #633112;
|
|
35
|
+
|
|
36
|
+
--green-50: #f3faf7;
|
|
37
|
+
--green-100: #def7ec;
|
|
38
|
+
--green-200: #bcf0da;
|
|
39
|
+
--green-300: #84e1bc;
|
|
40
|
+
--green-400: #31c48d;
|
|
41
|
+
--green-500: #0e9f6e;
|
|
42
|
+
--green-600: #057a55;
|
|
43
|
+
--green-700: #046c4e;
|
|
44
|
+
--green-800: #03543f;
|
|
45
|
+
--green-900: #014737;
|
|
46
|
+
|
|
47
|
+
--teal-400: #16bdca;
|
|
48
|
+
|
|
49
|
+
--blue-50: #ebf5ff;
|
|
50
|
+
--blue-100: #e1effe;
|
|
51
|
+
--blue-200: #c3ddfd;
|
|
52
|
+
--blue-300: #a4cafe;
|
|
53
|
+
--blue-400: #76a9fa;
|
|
54
|
+
--blue-500: #3f83f8;
|
|
55
|
+
--blue-600: #1c64f2;
|
|
56
|
+
--blue-700: #1a56db;
|
|
57
|
+
--blue-800: #1e429f;
|
|
58
|
+
--blue-900: #233876;
|
|
59
|
+
|
|
60
|
+
--indigo-50: #f0f5ff;
|
|
61
|
+
--indigo-100: #e5edff;
|
|
62
|
+
--indigo-200: #cddbfe;
|
|
63
|
+
--indigo-300: #b4c6fc;
|
|
64
|
+
--indigo-400: #8da2fb;
|
|
65
|
+
--indigo-500: #6875f5;
|
|
66
|
+
--indigo-600: #5850ec;
|
|
67
|
+
--indigo-700: #5145cd;
|
|
68
|
+
--indigo-800: #42389d;
|
|
69
|
+
--indigo-900: #362f78;
|
|
70
|
+
|
|
71
|
+
--active: #00a1ff;
|
|
72
|
+
--action: var(--blue-500);
|
|
73
|
+
--active-hover: #51bfff;
|
|
74
|
+
|
|
75
|
+
--danger: var(--red-700);
|
|
76
|
+
|
|
77
|
+
--focus-color: rgb(0, 183, 255);
|
|
78
|
+
|
|
79
|
+
--li-hover-bg: #f3f3f3; /* #e5e7eb69; */
|
|
80
|
+
--li-focus-bg: #e5e7eb;
|
|
81
|
+
|
|
82
|
+
--color-uuid: rgb(87, 8, 63);
|
|
83
|
+
--color-number: rgb(0, 110, 0);
|
|
84
|
+
--color-text: #810909;
|
|
85
|
+
--color-boolean: #0000ff;
|
|
86
|
+
--color-date: rgb(25 91 239);
|
|
87
|
+
--color-geo: #0063bd;
|
|
88
|
+
--color-json: #0451a5;
|
|
89
|
+
--color-ticks-0: black;
|
|
90
|
+
--color-ticks-1: rgb(87, 87, 87);
|
|
91
|
+
--color-timechart-bg: white;
|
|
92
|
+
|
|
93
|
+
--text-warning: var(--yellow-700);
|
|
94
|
+
--text-danger: var(--red-700);
|
|
95
|
+
--text-default: var(--gray-600);
|
|
96
|
+
--text-action: var(--active);
|
|
97
|
+
|
|
98
|
+
--text-green: #057a55;
|
|
99
|
+
|
|
100
|
+
--b-warning: var(--yellow-400);
|
|
101
|
+
--b-green: var(--green-500);
|
|
102
|
+
--b-light-green: var(--green-300);
|
|
103
|
+
--b-danger: var(--red-700);
|
|
104
|
+
--b-default: var(--gray-200);
|
|
105
|
+
--b-action: var(--active);
|
|
106
|
+
|
|
107
|
+
--bg-warning: var(--yellow-100);
|
|
108
|
+
--bg-danger: var(--red-100);
|
|
109
|
+
--bg-default: var(--gray-100);
|
|
110
|
+
--bg-action: #00a2ff52;
|
|
111
|
+
--bg-popup: white;
|
|
112
|
+
--bg-popup-content: white;
|
|
113
|
+
|
|
114
|
+
--shadow0: rgb(32 33 36 / 28%);
|
|
115
|
+
--shadow1: rgba(0, 0, 0, 0.1);
|
|
116
|
+
--shadow2: rgba(0, 0, 0, 0.06);
|
|
117
|
+
|
|
118
|
+
--text-0: var(--gray-900);
|
|
119
|
+
--text-0p5: var(--gray-800);
|
|
120
|
+
--text-0p75: var(--gray-700);
|
|
121
|
+
--text-1: var(--gray-600);
|
|
122
|
+
--text-1p5: var(--gray-500);
|
|
123
|
+
--text-2: var(--gray-400);
|
|
124
|
+
--text-3: var(--gray-300);
|
|
125
|
+
|
|
126
|
+
--bg-color-0: white;
|
|
127
|
+
--bg-color-1: var(--gray-50);
|
|
128
|
+
--bg-color-2: var(--gray-100);
|
|
129
|
+
--bg-color-3: var(--gray-200);
|
|
130
|
+
--bg-color-4: var(--gray-300);
|
|
131
|
+
|
|
132
|
+
--b-color: var(--gray-300);
|
|
133
|
+
--b-color-0: var(--gray-200);
|
|
134
|
+
--b-color-1: var(--gray-100);
|
|
135
|
+
--b-color-2: var(--gray-50);
|
|
136
|
+
|
|
137
|
+
--bg-li-selected: var(--blue-100);
|
|
138
|
+
--formfield-bg-color: var(--bg-color-0);
|
|
139
|
+
|
|
140
|
+
--green: #009264;
|
|
141
|
+
--faded-green: #00c46e33;
|
|
142
|
+
|
|
143
|
+
--blue: var(--blue-600);
|
|
144
|
+
--faded-blue: #00b2ff33;
|
|
145
|
+
|
|
146
|
+
--red: #dc0000;
|
|
147
|
+
--faded-red: var(--red-100);
|
|
148
|
+
|
|
149
|
+
--yellow: #723b13;
|
|
150
|
+
--faded-yellow: #fff2a8;
|
|
151
|
+
|
|
152
|
+
--gray: var(--gray-600);
|
|
153
|
+
--faded-gray: var(--gray-100);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
:root.dark-theme {
|
|
157
|
+
--li-hover-bg: #414141; /* #55555582; */
|
|
158
|
+
--li-focus-bg: #5b5a5a;
|
|
159
|
+
--color-uuid: rgb(216, 99, 181);
|
|
160
|
+
--color-number: rgb(52, 192, 52);
|
|
161
|
+
--color-text: #fb9b9b;
|
|
162
|
+
--color-boolean: #a5a5ff;
|
|
163
|
+
--color-date: rgb(112 156 250);
|
|
164
|
+
--color-geo: #1d8ffa;
|
|
165
|
+
--color-json: #368ce8;
|
|
166
|
+
--color-ticks-0: rgb(187, 187, 187);
|
|
167
|
+
--color-ticks-1: white;
|
|
168
|
+
--color-timechart-bg: rgb(39, 39, 39);
|
|
169
|
+
|
|
170
|
+
--text-warning: #bd9500;
|
|
171
|
+
--text-danger: #eb5d5d;
|
|
172
|
+
--text-default: #c9c9c9;
|
|
173
|
+
--text-action: #00a2ff;
|
|
174
|
+
--text-green: #057a55;
|
|
175
|
+
|
|
176
|
+
--b-warning: var(--yellow-300);
|
|
177
|
+
--b-green: var(--green-500);
|
|
178
|
+
--b-light-green: var(--green-300);
|
|
179
|
+
--b-danger: var(--red-500);
|
|
180
|
+
/* var(--gray-500); */
|
|
181
|
+
--b-default: #4d4d4d;
|
|
182
|
+
--b-action: #00a2ffb0;
|
|
183
|
+
|
|
184
|
+
--bg-warning: #ae651238;
|
|
185
|
+
--bg-danger: var(--red-600);
|
|
186
|
+
--bg-default: var(--gray-600);
|
|
187
|
+
--bg-action: #0071b3;
|
|
188
|
+
--bg-popup: #2d2d2d;
|
|
189
|
+
/* --bg-popup-content: #272727; #3b3b3b; */
|
|
190
|
+
--bg-popup-content: #2d2d2d;
|
|
191
|
+
|
|
192
|
+
/*
|
|
193
|
+
--shadow0: rgba(77, 77, 78, 0.733);
|
|
194
|
+
--shadow1: rgba(206, 200, 200, 0.658);
|
|
195
|
+
--shadow2: rgba(248, 248, 248, 0.822); */
|
|
196
|
+
|
|
197
|
+
--text-0: var(--gray-100);
|
|
198
|
+
--text-0p5: var(--gray-300);
|
|
199
|
+
--text-0p75: var(--gray-400);
|
|
200
|
+
--text-1: #b4b4b4;
|
|
201
|
+
--text-1p5: var(--gray-500);
|
|
202
|
+
--text-2: var(--gray-400);
|
|
203
|
+
--text-3: var(--gray-700);
|
|
204
|
+
|
|
205
|
+
--bg-color-0: #2c2c2c; /* rgb(69, 69, 69); */
|
|
206
|
+
--bg-color-1: #212121; /* rgb(55, 55, 55); */
|
|
207
|
+
--bg-color-2: rgb(36, 36, 36);
|
|
208
|
+
--bg-color-3: #1a1919;
|
|
209
|
+
--bg-color-4: black;
|
|
210
|
+
--b-color: var(--gray-600);
|
|
211
|
+
--b-color-0: var(--gray-600);
|
|
212
|
+
--b-color-1: var(--gray-800);
|
|
213
|
+
--b-color-2: var(--gray-900);
|
|
214
|
+
|
|
215
|
+
--bg-li-selected: #2465d463;
|
|
216
|
+
--formfield-bg-color: var(--bg-color-2);
|
|
217
|
+
|
|
218
|
+
--green: #08c489;
|
|
219
|
+
--faded-green: #00b96821;
|
|
220
|
+
|
|
221
|
+
--blue: #31c1ff;
|
|
222
|
+
--faded-blue: #00b2ff33;
|
|
223
|
+
|
|
224
|
+
--red: #e35d5d;
|
|
225
|
+
--faded-red: #fd343429;
|
|
226
|
+
|
|
227
|
+
--yellow: #dabb8c;
|
|
228
|
+
--faded-yellow: #e4ce0538;
|
|
229
|
+
|
|
230
|
+
--gray: #bfbfbf;
|
|
231
|
+
--faded-gray: #ffffff17;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.formfield-bg-color {
|
|
235
|
+
background-color: var(--formfield-bg-color) !important;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.bg-faded-red {
|
|
239
|
+
background-color: var(--faded-red);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.text-0 {
|
|
243
|
+
color: var(--text-0);
|
|
244
|
+
}
|
|
245
|
+
.text-0p5 {
|
|
246
|
+
color: var(--text-0p5);
|
|
247
|
+
}
|
|
248
|
+
.text-0p75 {
|
|
249
|
+
color: var(--text-0p75);
|
|
250
|
+
}
|
|
251
|
+
.text-1 {
|
|
252
|
+
color: var(--text-1);
|
|
253
|
+
}
|
|
254
|
+
.text-1p5 {
|
|
255
|
+
color: var(--text-1p5);
|
|
256
|
+
}
|
|
257
|
+
.text-2 {
|
|
258
|
+
color: var(--text-2);
|
|
259
|
+
}
|
|
260
|
+
.text-3 {
|
|
261
|
+
color: var(--text-3);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.text-warning {
|
|
265
|
+
color: var(--text-warning);
|
|
266
|
+
}
|
|
267
|
+
.text-danger {
|
|
268
|
+
color: var(--text-danger);
|
|
269
|
+
}
|
|
270
|
+
.text-default {
|
|
271
|
+
color: var(--text-default);
|
|
272
|
+
}
|
|
273
|
+
.text-action {
|
|
274
|
+
color: var(--text-action);
|
|
275
|
+
}
|
|
276
|
+
.text-green {
|
|
277
|
+
color: var(--text-green);
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.b-warning {
|
|
281
|
+
border-color: var(--b-warning);
|
|
282
|
+
}
|
|
283
|
+
.b-danger {
|
|
284
|
+
border-color: var(--b-danger);
|
|
285
|
+
}
|
|
286
|
+
.b-default {
|
|
287
|
+
border-color: var(--b-default);
|
|
288
|
+
}
|
|
289
|
+
.b-action {
|
|
290
|
+
border-color: var(--b-action);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.b-color {
|
|
294
|
+
border-color: var(--b-color);
|
|
295
|
+
}
|
|
296
|
+
.b-color-0 {
|
|
297
|
+
border-color: var(--b-color-0);
|
|
298
|
+
}
|
|
299
|
+
.b-color-1 {
|
|
300
|
+
border-color: var(--b-color-1);
|
|
301
|
+
}
|
|
302
|
+
.b-color-2 {
|
|
303
|
+
border-color: var(--b-color-2);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.bg-warning {
|
|
307
|
+
background-color: var(--bg-warning);
|
|
308
|
+
}
|
|
309
|
+
.bg-danger {
|
|
310
|
+
background-color: var(--bg-danger);
|
|
311
|
+
}
|
|
312
|
+
.bg-default {
|
|
313
|
+
background-color: var(--bg-default);
|
|
314
|
+
}
|
|
315
|
+
.bg-action {
|
|
316
|
+
background-color: var(--bg-action);
|
|
317
|
+
}
|
|
318
|
+
.bg-popup {
|
|
319
|
+
background-color: var(--bg-popup);
|
|
320
|
+
}
|
|
321
|
+
.bg-popup-content {
|
|
322
|
+
background-color: var(--bg-popup-content);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.shadow-sm {
|
|
326
|
+
box-shadow: 0 1px 2px 0 var(--shadow2);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.shadow {
|
|
330
|
+
box-shadow:
|
|
331
|
+
0 1px 3px 0 var(--shadow1),
|
|
332
|
+
0 1px 2px 0 var(--shadow2);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.drop-shadow {
|
|
336
|
+
filter: drop-shadow(0 1px 2px var(--shadow1))
|
|
337
|
+
drop-shadow(0 1px 3px var(--shadow2));
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.shadow-l {
|
|
341
|
+
box-shadow: 0 1px 6px 0 var(--shadow0);
|
|
342
|
+
}
|
|
343
|
+
.shadow-xl {
|
|
344
|
+
box-shadow:
|
|
345
|
+
0 20px 25px -5px var(--shadow1),
|
|
346
|
+
0 10px 10px -5px var(--shadow2);
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.gap-0 {
|
|
350
|
+
gap: unset;
|
|
351
|
+
}
|
|
352
|
+
.gap-p25 {
|
|
353
|
+
gap: 0.25em;
|
|
354
|
+
}
|
|
355
|
+
.gap-p5 {
|
|
356
|
+
gap: 0.5em;
|
|
357
|
+
}
|
|
358
|
+
.gap-p75 {
|
|
359
|
+
gap: 0.75em;
|
|
360
|
+
}
|
|
361
|
+
.gap-1 {
|
|
362
|
+
gap: 1em;
|
|
363
|
+
}
|
|
364
|
+
.gap-1p5 {
|
|
365
|
+
gap: 1.5em;
|
|
366
|
+
}
|
|
367
|
+
.gap-2 {
|
|
368
|
+
gap: 2em;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.py-p75 {
|
|
372
|
+
padding-top: 0.75rem;
|
|
373
|
+
padding-bottom: 0.75rem;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.leading-5 {
|
|
377
|
+
line-height: 1.25rem;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.py-p25 {
|
|
381
|
+
padding-top: 0.25rem;
|
|
382
|
+
padding-bottom: 0.25rem;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.py-p5 {
|
|
386
|
+
padding-top: 0.5rem;
|
|
387
|
+
padding-bottom: 0.5rem;
|
|
388
|
+
}
|
|
389
|
+
.py-p75 {
|
|
390
|
+
padding-top: 0.75rem;
|
|
391
|
+
padding-bottom: 0.75rem;
|
|
392
|
+
}
|
|
393
|
+
.py-1 {
|
|
394
|
+
padding-top: 1rem;
|
|
395
|
+
padding-bottom: 1rem;
|
|
396
|
+
}
|
|
397
|
+
.py-2 {
|
|
398
|
+
padding-top: 2rem;
|
|
399
|
+
padding-bottom: 2rem;
|
|
400
|
+
}
|
|
401
|
+
.py-3 {
|
|
402
|
+
padding-top: 3rem;
|
|
403
|
+
padding-bottom: 3rem;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.px-p25 {
|
|
407
|
+
padding-left: 0.25rem;
|
|
408
|
+
padding-right: 0.25rem;
|
|
409
|
+
}
|
|
410
|
+
.px-p5 {
|
|
411
|
+
padding-left: 0.5rem;
|
|
412
|
+
padding-right: 0.5rem;
|
|
413
|
+
}
|
|
414
|
+
.px-p75 {
|
|
415
|
+
padding-left: 0.75rem;
|
|
416
|
+
padding-right: 0.75rem;
|
|
417
|
+
}
|
|
418
|
+
.px-1 {
|
|
419
|
+
padding-left: 1rem;
|
|
420
|
+
padding-right: 1rem;
|
|
421
|
+
}
|
|
422
|
+
.px-1p5 {
|
|
423
|
+
padding-left: 1.5rem;
|
|
424
|
+
padding-right: 1.5rem;
|
|
425
|
+
}
|
|
426
|
+
.px-2 {
|
|
427
|
+
padding-left: 2rem;
|
|
428
|
+
padding-right: 2rem;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.p-0 {
|
|
432
|
+
padding: 0;
|
|
433
|
+
}
|
|
434
|
+
.p-1 {
|
|
435
|
+
padding: 1em;
|
|
436
|
+
}
|
|
437
|
+
.p-2 {
|
|
438
|
+
padding: 2em;
|
|
439
|
+
}
|
|
440
|
+
.p-3 {
|
|
441
|
+
padding: 3em;
|
|
442
|
+
}
|
|
443
|
+
.p-4 {
|
|
444
|
+
padding: 4em;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.pb-0 {
|
|
448
|
+
padding-bottom: 0 !important;
|
|
449
|
+
}
|
|
450
|
+
.pb-p25 {
|
|
451
|
+
padding-bottom: 0.25em;
|
|
452
|
+
}
|
|
453
|
+
.pb-p5 {
|
|
454
|
+
padding-bottom: 0.5em;
|
|
455
|
+
}
|
|
456
|
+
.pb-p75 {
|
|
457
|
+
padding-bottom: 0.75em;
|
|
458
|
+
}
|
|
459
|
+
.pb-1 {
|
|
460
|
+
padding-bottom: 1em;
|
|
461
|
+
}
|
|
462
|
+
.pb-2 {
|
|
463
|
+
padding-bottom: 2em;
|
|
464
|
+
}
|
|
465
|
+
.pb-3 {
|
|
466
|
+
padding-bottom: 3em;
|
|
467
|
+
}
|
|
468
|
+
.pb-4 {
|
|
469
|
+
padding-bottom: 4em;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.p-p25 {
|
|
473
|
+
padding: 0.25em;
|
|
474
|
+
}
|
|
475
|
+
.p-p5 {
|
|
476
|
+
padding: 0.5em;
|
|
477
|
+
}
|
|
478
|
+
.p-p75 {
|
|
479
|
+
padding: 0.75em;
|
|
480
|
+
}
|
|
481
|
+
.pr-2 {
|
|
482
|
+
padding-right: 2em;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.m-auto {
|
|
486
|
+
margin: auto;
|
|
487
|
+
}
|
|
488
|
+
.m-0 {
|
|
489
|
+
margin: 0;
|
|
490
|
+
}
|
|
491
|
+
.m-1 {
|
|
492
|
+
margin: 1em;
|
|
493
|
+
}
|
|
494
|
+
.m-2 {
|
|
495
|
+
margin: 2em;
|
|
496
|
+
}
|
|
497
|
+
.m-3 {
|
|
498
|
+
margin: 3em;
|
|
499
|
+
}
|
|
500
|
+
.m-4 {
|
|
501
|
+
margin: 4em;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.my-auto {
|
|
505
|
+
margin-top: auto;
|
|
506
|
+
margin-bottom: auto;
|
|
507
|
+
}
|
|
508
|
+
.my-p25 {
|
|
509
|
+
margin-top: 0.25em;
|
|
510
|
+
margin-bottom: 0.25em;
|
|
511
|
+
}
|
|
512
|
+
.my-p5 {
|
|
513
|
+
margin-top: 0.5em;
|
|
514
|
+
margin-bottom: 0.5em;
|
|
515
|
+
}
|
|
516
|
+
.my-1 {
|
|
517
|
+
margin-top: 1em;
|
|
518
|
+
margin-bottom: 1em;
|
|
519
|
+
}
|
|
520
|
+
.my-2 {
|
|
521
|
+
margin-top: 2em;
|
|
522
|
+
margin-bottom: 2em;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.mx-auto {
|
|
526
|
+
margin-left: auto;
|
|
527
|
+
margin-right: auto;
|
|
528
|
+
}
|
|
529
|
+
.mx-0 {
|
|
530
|
+
margin-left: 0;
|
|
531
|
+
margin-right: 0;
|
|
532
|
+
}
|
|
533
|
+
.mx-p25 {
|
|
534
|
+
margin-left: 0.25em;
|
|
535
|
+
margin-right: 0.25em;
|
|
536
|
+
}
|
|
537
|
+
.mx-p5 {
|
|
538
|
+
margin-left: 0.5em;
|
|
539
|
+
margin-right: 0.5em;
|
|
540
|
+
}
|
|
541
|
+
.mx-1 {
|
|
542
|
+
margin-left: 1em;
|
|
543
|
+
margin-right: 1em;
|
|
544
|
+
}
|
|
545
|
+
.mx-2 {
|
|
546
|
+
margin-left: 2em;
|
|
547
|
+
margin-right: 2em;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.px-p25 {
|
|
551
|
+
padding-left: 0.25em;
|
|
552
|
+
padding-right: 0.25em;
|
|
553
|
+
}
|
|
554
|
+
.px-p5 {
|
|
555
|
+
padding-left: 0.5em;
|
|
556
|
+
padding-right: 0.5em;
|
|
557
|
+
}
|
|
558
|
+
.px-1 {
|
|
559
|
+
padding-left: 1em;
|
|
560
|
+
padding-right: 1em;
|
|
561
|
+
}
|
|
562
|
+
.px-2 {
|
|
563
|
+
padding-left: 2em;
|
|
564
|
+
padding-right: 2em;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.py-p25 {
|
|
568
|
+
padding-top: 0.25em;
|
|
569
|
+
padding-bottom: 0.25em;
|
|
570
|
+
}
|
|
571
|
+
.py-p5 {
|
|
572
|
+
padding-top: 0.5em;
|
|
573
|
+
padding-bottom: 0.5em;
|
|
574
|
+
}
|
|
575
|
+
.py-1 {
|
|
576
|
+
padding-top: 1em;
|
|
577
|
+
padding-bottom: 1em;
|
|
578
|
+
}
|
|
579
|
+
.py-2 {
|
|
580
|
+
padding-top: 2em;
|
|
581
|
+
padding-bottom: 2em;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.m-p25 {
|
|
585
|
+
margin: 0.25em;
|
|
586
|
+
}
|
|
587
|
+
.m-p5 {
|
|
588
|
+
margin: 0.5em;
|
|
589
|
+
}
|
|
590
|
+
.m-p75 {
|
|
591
|
+
margin: 0.75em;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.mt-auto {
|
|
595
|
+
margin-top: auto;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.mt-0 {
|
|
599
|
+
margin-top: 0;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.mt-p25 {
|
|
603
|
+
margin-top: 0.25em;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.mt-p5 {
|
|
607
|
+
margin-top: 0.5em;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.mt-1 {
|
|
611
|
+
margin-top: 1em;
|
|
612
|
+
}
|
|
613
|
+
.mt-2 {
|
|
614
|
+
margin-top: 2em;
|
|
615
|
+
}
|
|
616
|
+
.mt-3 {
|
|
617
|
+
margin-top: 3em;
|
|
618
|
+
}
|
|
619
|
+
.mt-4 {
|
|
620
|
+
margin-top: 4em;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.ml-auto {
|
|
624
|
+
margin-left: auto;
|
|
625
|
+
}
|
|
626
|
+
.ml-0 {
|
|
627
|
+
margin-left: 0;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.ml-1 {
|
|
631
|
+
margin-left: 1em;
|
|
632
|
+
}
|
|
633
|
+
.ml-1p5 {
|
|
634
|
+
margin-left: 1.5em;
|
|
635
|
+
}
|
|
636
|
+
.ml-2 {
|
|
637
|
+
margin-left: 2em;
|
|
638
|
+
}
|
|
639
|
+
.ml-3 {
|
|
640
|
+
margin-left: 3em;
|
|
641
|
+
}
|
|
642
|
+
.ml-4 {
|
|
643
|
+
margin-left: 4em;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.ml-p25 {
|
|
647
|
+
margin-left: 0.25em;
|
|
648
|
+
}
|
|
649
|
+
.ml-p5 {
|
|
650
|
+
margin-left: 0.5em;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.mr-p25 {
|
|
654
|
+
margin-right: 0.25em;
|
|
655
|
+
}
|
|
656
|
+
.mr-p5 {
|
|
657
|
+
margin-right: 0.5em;
|
|
658
|
+
}
|
|
659
|
+
.mr-1 {
|
|
660
|
+
margin-right: 1em;
|
|
661
|
+
}
|
|
662
|
+
.mr-2 {
|
|
663
|
+
margin-right: 2em;
|
|
664
|
+
}
|
|
665
|
+
.mr-3 {
|
|
666
|
+
margin-right: 3em;
|
|
667
|
+
}
|
|
668
|
+
.mr-auto {
|
|
669
|
+
margin-right: auto;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.mb-p25 {
|
|
673
|
+
margin-bottom: 0.25em;
|
|
674
|
+
}
|
|
675
|
+
.mb-p5 {
|
|
676
|
+
margin-bottom: 0.5em;
|
|
677
|
+
}
|
|
678
|
+
.mb-0 {
|
|
679
|
+
margin-bottom: 0;
|
|
680
|
+
}
|
|
681
|
+
.mb-1 {
|
|
682
|
+
margin-bottom: 1em;
|
|
683
|
+
}
|
|
684
|
+
.mb-2 {
|
|
685
|
+
margin-bottom: 2em;
|
|
686
|
+
}
|
|
687
|
+
.mb-3 {
|
|
688
|
+
margin-bottom: 3em;
|
|
689
|
+
}
|
|
690
|
+
.mb-auto {
|
|
691
|
+
margin-bottom: auto;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.flex-row {
|
|
695
|
+
display: flex;
|
|
696
|
+
flex-direction: row;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.flex-row-reverse {
|
|
700
|
+
display: flex;
|
|
701
|
+
flex-direction: row-reverse;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.flex-col,
|
|
705
|
+
.flex-column {
|
|
706
|
+
display: flex;
|
|
707
|
+
flex-direction: column;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.flex-row-wrap {
|
|
711
|
+
display: flex;
|
|
712
|
+
flex-flow: row wrap;
|
|
713
|
+
}
|
|
714
|
+
.flex-col-wrap {
|
|
715
|
+
display: flex;
|
|
716
|
+
flex-flow: column wrap;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.f-0 {
|
|
720
|
+
flex: none;
|
|
721
|
+
}
|
|
722
|
+
.fs-1 {
|
|
723
|
+
flex-shrink: 1;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.f-1 {
|
|
727
|
+
flex: 1;
|
|
728
|
+
min-width: 0;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.fs-1 {
|
|
732
|
+
flex-shrink: 1;
|
|
733
|
+
min-width: 0;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.ai-base {
|
|
737
|
+
align-items: baseline;
|
|
738
|
+
}
|
|
739
|
+
.ai-center {
|
|
740
|
+
align-items: safe center;
|
|
741
|
+
}
|
|
742
|
+
.ai-start {
|
|
743
|
+
align-items: start;
|
|
744
|
+
}
|
|
745
|
+
.ai-stretch {
|
|
746
|
+
align-items: stretch;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.ai-end {
|
|
750
|
+
align-items: end;
|
|
751
|
+
}
|
|
752
|
+
.ai-flex-start {
|
|
753
|
+
align-items: flex-start;
|
|
754
|
+
}
|
|
755
|
+
.ai-flex-end {
|
|
756
|
+
align-items: flex-end;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.as-center {
|
|
760
|
+
align-self: center;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.as-stretch {
|
|
764
|
+
align-self: stretch;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.js-center {
|
|
768
|
+
justify-self: center;
|
|
769
|
+
}
|
|
770
|
+
.as-start {
|
|
771
|
+
align-self: start;
|
|
772
|
+
}
|
|
773
|
+
.as-end {
|
|
774
|
+
align-self: end;
|
|
775
|
+
}
|
|
776
|
+
.as-flex-start {
|
|
777
|
+
align-self: flex-start;
|
|
778
|
+
}
|
|
779
|
+
.as-flex-end {
|
|
780
|
+
align-self: flex-end;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.round {
|
|
784
|
+
border-radius: 1000%;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.rounded-md {
|
|
788
|
+
border-radius: 0.375rem;
|
|
789
|
+
border-top-left-radius: 0.375rem;
|
|
790
|
+
border-top-right-radius: 0.375rem;
|
|
791
|
+
border-bottom-right-radius: 0.375rem;
|
|
792
|
+
border-bottom-left-radius: 0.375rem;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
:root {
|
|
796
|
+
--rounded: 0.5em;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.rounded {
|
|
800
|
+
border-radius: var(--rounded);
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.rounded-r {
|
|
804
|
+
border-top-right-radius: var(--rounded);
|
|
805
|
+
border-bottom-right-radius: var(--rounded);
|
|
806
|
+
}
|
|
807
|
+
.rounded-l {
|
|
808
|
+
border-top-left-radius: var(--rounded);
|
|
809
|
+
border-bottom-left-radius: var(--rounded);
|
|
810
|
+
}
|
|
811
|
+
.rounded-t {
|
|
812
|
+
border-top-left-radius: var(--rounded);
|
|
813
|
+
border-top-right-radius: var(--rounded);
|
|
814
|
+
}
|
|
815
|
+
.rounded-b {
|
|
816
|
+
border-bottom-left-radius: var(--rounded);
|
|
817
|
+
border-bottom-right-radius: var(--rounded);
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.bg-white {
|
|
821
|
+
background-color: white;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.br {
|
|
825
|
+
border-right-width: 1px;
|
|
826
|
+
border-right-style: solid;
|
|
827
|
+
}
|
|
828
|
+
.bb {
|
|
829
|
+
border-bottom-width: 1px;
|
|
830
|
+
border-bottom-style: solid;
|
|
831
|
+
}
|
|
832
|
+
.bb-2 {
|
|
833
|
+
border-bottom-width: 2px;
|
|
834
|
+
border-bottom-style: solid;
|
|
835
|
+
}
|
|
836
|
+
.bb-3 {
|
|
837
|
+
border-bottom-width: 3px;
|
|
838
|
+
border-bottom-style: solid;
|
|
839
|
+
}
|
|
840
|
+
.bb-4 {
|
|
841
|
+
border-bottom-width: 4px;
|
|
842
|
+
border-bottom-style: solid;
|
|
843
|
+
}
|
|
844
|
+
.bl {
|
|
845
|
+
border-left-width: 1px;
|
|
846
|
+
border-left-style: solid;
|
|
847
|
+
}
|
|
848
|
+
.bt {
|
|
849
|
+
border-top-width: 1px;
|
|
850
|
+
border-top-style: solid;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.divider-h {
|
|
854
|
+
background-color: var(--gray-300);
|
|
855
|
+
width: 100%;
|
|
856
|
+
height: 1px;
|
|
857
|
+
margin-top: 2em;
|
|
858
|
+
margin-bottom: 2em;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.noselect {
|
|
862
|
+
-webkit-touch-callout: none; /* iOS Safari */
|
|
863
|
+
-webkit-user-select: none; /* Safari */
|
|
864
|
+
-khtml-user-select: none; /* Konqueror HTML */
|
|
865
|
+
-moz-user-select: none; /* Old versions of Firefox */
|
|
866
|
+
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
867
|
+
user-select: none; /* Non-prefixed version, currently
|
|
868
|
+
supported by Chrome, Edge, Opera and Firefox */
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
textarea {
|
|
872
|
+
-webkit-appearance: none;
|
|
873
|
+
-moz-appearance: none;
|
|
874
|
+
appearance: none;
|
|
875
|
+
background-color: var(--bg-color-0);
|
|
876
|
+
border-color: var(--b-default);
|
|
877
|
+
border-width: 1px;
|
|
878
|
+
border-radius: 0.375rem;
|
|
879
|
+
padding: 0.5rem 0.75rem;
|
|
880
|
+
font-size: 1rem;
|
|
881
|
+
line-height: 1.5;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
textarea:focus {
|
|
885
|
+
outline: none;
|
|
886
|
+
}
|
|
887
|
+
.not-allowed {
|
|
888
|
+
cursor: not-allowed;
|
|
889
|
+
}
|
|
890
|
+
.pointer {
|
|
891
|
+
cursor: pointer;
|
|
892
|
+
}
|
|
893
|
+
.cursor-default {
|
|
894
|
+
cursor: default;
|
|
895
|
+
}
|
|
896
|
+
.rounded-full {
|
|
897
|
+
border-radius: 2000%;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.w-full {
|
|
901
|
+
width: 100%;
|
|
902
|
+
}
|
|
903
|
+
.min-w-full {
|
|
904
|
+
min-width: 100%;
|
|
905
|
+
}
|
|
906
|
+
.h-full {
|
|
907
|
+
height: 100%;
|
|
908
|
+
}
|
|
909
|
+
.w-fit {
|
|
910
|
+
width: fit-content;
|
|
911
|
+
}
|
|
912
|
+
.h-fit {
|
|
913
|
+
height: fit-content;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.fit {
|
|
917
|
+
width: fit-content;
|
|
918
|
+
height: fit-content;
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.max-w-fit {
|
|
922
|
+
max-width: fit-content;
|
|
923
|
+
}
|
|
924
|
+
.max-h-fit {
|
|
925
|
+
max-height: fit-content;
|
|
926
|
+
}
|
|
927
|
+
.max-h-500 {
|
|
928
|
+
max-height: 500px;
|
|
929
|
+
}
|
|
930
|
+
.max-s-fit {
|
|
931
|
+
max-height: fit-content;
|
|
932
|
+
max-width: fit-content;
|
|
933
|
+
}
|
|
934
|
+
.max-w-full {
|
|
935
|
+
max-width: 100%;
|
|
936
|
+
}
|
|
937
|
+
.max-h-full {
|
|
938
|
+
max-height: 100%;
|
|
939
|
+
}
|
|
940
|
+
.max-s-full {
|
|
941
|
+
max-height: 100%;
|
|
942
|
+
max-width: 100%;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.max-w {
|
|
946
|
+
max-width: 900px;
|
|
947
|
+
}
|
|
948
|
+
.w-2 {
|
|
949
|
+
width: 2em;
|
|
950
|
+
}
|
|
951
|
+
.h-2 {
|
|
952
|
+
height: 2em;
|
|
953
|
+
}
|
|
954
|
+
.w-1p25 {
|
|
955
|
+
width: 1.25em;
|
|
956
|
+
}
|
|
957
|
+
.h-1p25 {
|
|
958
|
+
height: 1.25em;
|
|
959
|
+
}
|
|
960
|
+
.h-p125 {
|
|
961
|
+
height: 0.125em;
|
|
962
|
+
}
|
|
963
|
+
.flex {
|
|
964
|
+
display: flex;
|
|
965
|
+
}
|
|
966
|
+
.absolute {
|
|
967
|
+
position: absolute;
|
|
968
|
+
}
|
|
969
|
+
.relative {
|
|
970
|
+
position: relative;
|
|
971
|
+
}
|
|
972
|
+
.fixed {
|
|
973
|
+
position: fixed;
|
|
974
|
+
}
|
|
975
|
+
.bg-transparent {
|
|
976
|
+
background-color: transparent;
|
|
977
|
+
}
|
|
978
|
+
.bg-inherit {
|
|
979
|
+
background-color: inherit;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.inset-0,
|
|
983
|
+
.inset-y-0 {
|
|
984
|
+
top: 0;
|
|
985
|
+
bottom: 0;
|
|
986
|
+
}
|
|
987
|
+
.inset-0 {
|
|
988
|
+
right: 0;
|
|
989
|
+
left: 0;
|
|
990
|
+
}
|
|
991
|
+
.inset-x-0 {
|
|
992
|
+
right: 0;
|
|
993
|
+
left: 0;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.top-0 {
|
|
997
|
+
top: 0;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.right-0 {
|
|
1001
|
+
right: 0;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.bottom-0 {
|
|
1005
|
+
bottom: 0;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.left-0 {
|
|
1009
|
+
left: 0;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.text-white {
|
|
1013
|
+
color: white;
|
|
1014
|
+
}
|
|
1015
|
+
.border-2 {
|
|
1016
|
+
border-width: 2px;
|
|
1017
|
+
border-style: solid;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.b-unset {
|
|
1021
|
+
border: unset;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.b-0 {
|
|
1025
|
+
border-width: 0;
|
|
1026
|
+
}
|
|
1027
|
+
.b-2 {
|
|
1028
|
+
border-width: 2px;
|
|
1029
|
+
border-style: solid;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.b-white {
|
|
1033
|
+
border-color: white;
|
|
1034
|
+
}
|
|
1035
|
+
.b-black {
|
|
1036
|
+
border-color: black;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.b-action,
|
|
1040
|
+
.b-active {
|
|
1041
|
+
border-color: var(--blue-500);
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.bg-black {
|
|
1045
|
+
background-color: black;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.bg-terminal {
|
|
1049
|
+
background-color: var(--gray-900);
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
.border-indigo-600 {
|
|
1053
|
+
border-color: #5850ec;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.ta-start {
|
|
1057
|
+
text-align: start;
|
|
1058
|
+
}
|
|
1059
|
+
.ta-end {
|
|
1060
|
+
text-align: end;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.ta-left,
|
|
1064
|
+
.text-left {
|
|
1065
|
+
text-align: left;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
.ta-center,
|
|
1069
|
+
.text-center {
|
|
1070
|
+
text-align: center;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.ta-right,
|
|
1074
|
+
.text-right {
|
|
1075
|
+
text-align: right;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
.tracking-wider {
|
|
1079
|
+
letter-spacing: 0.05em;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.b-y {
|
|
1083
|
+
border-top-width: 1px;
|
|
1084
|
+
border-bottom-width: 1px;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.b,
|
|
1088
|
+
.b-1 {
|
|
1089
|
+
border-style: solid;
|
|
1090
|
+
border-width: 1px;
|
|
1091
|
+
}
|
|
1092
|
+
.b-2 {
|
|
1093
|
+
border-style: solid;
|
|
1094
|
+
border-width: 2px;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.rounded-md {
|
|
1098
|
+
border-radius: 0.375rem;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
.transparent {
|
|
1102
|
+
opacity: 0;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.hidden {
|
|
1106
|
+
display: none;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
.text-black {
|
|
1110
|
+
color: black;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
.text-xs {
|
|
1114
|
+
font-size: 0.75rem;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
.text-sm {
|
|
1118
|
+
font-size: 0.875rem;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.text-lg {
|
|
1122
|
+
font-size: 1.125rem;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.text-xl {
|
|
1126
|
+
font-size: 1.25rem;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
.font-normal {
|
|
1130
|
+
font-weight: 400;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
.font-medium {
|
|
1134
|
+
font-weight: 500;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.font-semibold {
|
|
1138
|
+
font-weight: 600;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.font-bold {
|
|
1142
|
+
font-weight: 700;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.font-extrabold {
|
|
1146
|
+
font-weight: 800;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.overflow-auto {
|
|
1150
|
+
overflow: auto;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.not-allowed {
|
|
1154
|
+
cursor: not-allowed;
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.jc-center {
|
|
1158
|
+
justify-content: safe center;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.jc-between {
|
|
1162
|
+
justify-content: space-between;
|
|
1163
|
+
}
|
|
1164
|
+
.jc-around {
|
|
1165
|
+
justify-content: space-around;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.jc-fstart {
|
|
1169
|
+
justify-content: flex-start;
|
|
1170
|
+
}
|
|
1171
|
+
.jc-start {
|
|
1172
|
+
justify-content: start;
|
|
1173
|
+
}
|
|
1174
|
+
.ji-start {
|
|
1175
|
+
justify-items: start;
|
|
1176
|
+
}
|
|
1177
|
+
.jc-fend {
|
|
1178
|
+
justify-content: flex-end;
|
|
1179
|
+
}
|
|
1180
|
+
.jc-end {
|
|
1181
|
+
justify-content: end;
|
|
1182
|
+
}
|
|
1183
|
+
.ji-end {
|
|
1184
|
+
justify-items: end;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
.font-12 {
|
|
1188
|
+
font-size: 12px;
|
|
1189
|
+
}
|
|
1190
|
+
.font-14 {
|
|
1191
|
+
font-size: 14px;
|
|
1192
|
+
}
|
|
1193
|
+
.font-16 {
|
|
1194
|
+
font-size: 16px;
|
|
1195
|
+
}
|
|
1196
|
+
.font-18 {
|
|
1197
|
+
font-size: 18px;
|
|
1198
|
+
}
|
|
1199
|
+
.font-20 {
|
|
1200
|
+
font-size: 20px;
|
|
1201
|
+
}
|
|
1202
|
+
.font-22 {
|
|
1203
|
+
font-size: 22px;
|
|
1204
|
+
}
|
|
1205
|
+
.font-24 {
|
|
1206
|
+
font-size: 24px;
|
|
1207
|
+
}
|
|
1208
|
+
.font-26 {
|
|
1209
|
+
font-size: 26px;
|
|
1210
|
+
}
|
|
1211
|
+
.font-28 {
|
|
1212
|
+
font-size: 28px;
|
|
1213
|
+
}
|
|
1214
|
+
.font-30 {
|
|
1215
|
+
font-size: 30px;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.no-decor {
|
|
1219
|
+
text-decoration: none;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.o-auto {
|
|
1223
|
+
overflow: auto;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
.o-auto::-webkit-scrollbar {
|
|
1227
|
+
opacity: 0.5;
|
|
1228
|
+
}
|
|
1229
|
+
.o-auto:hover ::-webkit-scrollbar {
|
|
1230
|
+
opacity: 0.5;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
.o-unset {
|
|
1234
|
+
overflow: unset;
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
.ox-auto {
|
|
1238
|
+
overflow-x: auto;
|
|
1239
|
+
}
|
|
1240
|
+
.oy-auto {
|
|
1241
|
+
overflow-y: auto;
|
|
1242
|
+
}
|
|
1243
|
+
.o-hidden {
|
|
1244
|
+
overflow: hidden;
|
|
1245
|
+
}
|
|
1246
|
+
.o-visible {
|
|
1247
|
+
overflow: visible;
|
|
1248
|
+
}
|
|
1249
|
+
.ox-hidden {
|
|
1250
|
+
overflow-x: hidden;
|
|
1251
|
+
}
|
|
1252
|
+
.oy-hidden {
|
|
1253
|
+
overflow-y: hidden;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
.to-ellipsis {
|
|
1257
|
+
text-overflow: ellipsis;
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
.min-s-0 {
|
|
1261
|
+
min-height: 0;
|
|
1262
|
+
min-width: 0;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
.min-h-0 {
|
|
1266
|
+
min-height: 0;
|
|
1267
|
+
}
|
|
1268
|
+
.min-w-0 {
|
|
1269
|
+
min-width: 0;
|
|
1270
|
+
}
|
|
1271
|
+
.min-w-300 {
|
|
1272
|
+
min-width: 300px;
|
|
1273
|
+
}
|
|
1274
|
+
.min-w-0 {
|
|
1275
|
+
min-width: 0;
|
|
1276
|
+
}
|
|
1277
|
+
.min-h-fit {
|
|
1278
|
+
min-height: fit-content;
|
|
1279
|
+
}
|
|
1280
|
+
.min-w-fit {
|
|
1281
|
+
min-width: fit-content;
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
.max-h-100v {
|
|
1285
|
+
max-height: 100vh;
|
|
1286
|
+
}
|
|
1287
|
+
.max-w-100v {
|
|
1288
|
+
max-width: 100vw;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.min-w-600 {
|
|
1292
|
+
min-width: min(600px, 100vw);
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
.max-w-700 {
|
|
1296
|
+
max-width: 700px;
|
|
1297
|
+
}
|
|
1298
|
+
.max-w-800 {
|
|
1299
|
+
max-width: 800px;
|
|
1300
|
+
}
|
|
1301
|
+
.max-w-1200 {
|
|
1302
|
+
max-width: 1200px;
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.bold {
|
|
1306
|
+
font-weight: bold;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.ws-break {
|
|
1310
|
+
white-space: break-spaces;
|
|
1311
|
+
}
|
|
1312
|
+
.ws-pre {
|
|
1313
|
+
white-space: pre;
|
|
1314
|
+
}
|
|
1315
|
+
.ws-pre-line {
|
|
1316
|
+
white-space: pre-line;
|
|
1317
|
+
}
|
|
1318
|
+
.ws-pre-wrap {
|
|
1319
|
+
white-space: pre-wrap;
|
|
1320
|
+
}
|
|
1321
|
+
.ws-nowrap {
|
|
1322
|
+
white-space: nowrap;
|
|
1323
|
+
}
|
|
1324
|
+
.ws-wrap {
|
|
1325
|
+
white-space: normal;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
.no-pointer-events {
|
|
1329
|
+
touch-action: none;
|
|
1330
|
+
pointer-events: none;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
.no-interaction {
|
|
1334
|
+
opacity: 0.5;
|
|
1335
|
+
touch-action: none;
|
|
1336
|
+
pointer-events: none;
|
|
1337
|
+
|
|
1338
|
+
-webkit-touch-callout: none; /* iOS Safari */
|
|
1339
|
+
-webkit-user-select: none; /* Safari */
|
|
1340
|
+
-khtml-user-select: none; /* Konqueror HTML */
|
|
1341
|
+
-moz-user-select: none; /* Old versions of Firefox */
|
|
1342
|
+
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
1343
|
+
user-select: none; /* Non-prefixed version, currently
|
|
1344
|
+
supported by Chrome, Edge, Opera and Firefox */
|
|
1345
|
+
}
|
|
1346
|
+
.no-interaction.no-fade {
|
|
1347
|
+
opacity: 1;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
.no-scroll-bar {
|
|
1351
|
+
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
|
1352
|
+
scrollbar-width: none; /* Firefox */
|
|
1353
|
+
}
|
|
1354
|
+
.no-scroll-bar::-webkit-scrollbar {
|
|
1355
|
+
display: none; /* Safari and Chrome */
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
input.input {
|
|
1359
|
+
-webkit-appearance: none;
|
|
1360
|
+
-moz-appearance: none;
|
|
1361
|
+
appearance: none;
|
|
1362
|
+
border: none;
|
|
1363
|
+
padding: 0.5rem 0.75rem;
|
|
1364
|
+
font-size: 1rem;
|
|
1365
|
+
font-size: 0.875rem;
|
|
1366
|
+
line-height: 1.5;
|
|
1367
|
+
width: 100%;
|
|
1368
|
+
flex: 1 1;
|
|
1369
|
+
box-sizing: border-box;
|
|
1370
|
+
min-width: 150px;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
select {
|
|
1374
|
+
display: block;
|
|
1375
|
+
background: #fff;
|
|
1376
|
+
padding: 0.5rem 0.75rem;
|
|
1377
|
+
border: none;
|
|
1378
|
+
margin: 0;
|
|
1379
|
+
outline: 0;
|
|
1380
|
+
flex: 1 1;
|
|
1381
|
+
width: 100%;
|
|
1382
|
+
cursor: pointer;
|
|
1383
|
+
border: 1px solid #d2d6dc;
|
|
1384
|
+
appearance: none;
|
|
1385
|
+
-webkit-appearance: none;
|
|
1386
|
+
-moz-appearance: none;
|
|
1387
|
+
background: transparent;
|
|
1388
|
+
background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
|
|
1389
|
+
background-repeat: no-repeat;
|
|
1390
|
+
background-position-x: 100%;
|
|
1391
|
+
background-position-y: 5px;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
select:hover {
|
|
1395
|
+
border-color: #888;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
.select-button:focus,
|
|
1399
|
+
select:focus {
|
|
1400
|
+
outline: 2px solid var(--focus-color);
|
|
1401
|
+
outline-offset: -2px;
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
.form-field .select-button:focus {
|
|
1405
|
+
border-color: transparent !important;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
input[type="checkbox"]:focus-visible {
|
|
1409
|
+
border: 1px solid var(--focus-color);
|
|
1410
|
+
outline: none;
|
|
1411
|
+
box-shadow: 0 0 0 3px rgb(0 183 255 / 15%);
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
/* Set options to normal weight */
|
|
1415
|
+
select option {
|
|
1416
|
+
font-weight: normal;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
/* Support for rtl text, explicit support for Arabic and Hebrew */
|
|
1420
|
+
*[dir="rtl"] select-,
|
|
1421
|
+
:root:lang(ar) select,
|
|
1422
|
+
:root:lang(iw) select {
|
|
1423
|
+
background-position:
|
|
1424
|
+
left 0.7em top 50%,
|
|
1425
|
+
0 0;
|
|
1426
|
+
padding: 0.6em 0.8em 0.5em 1.4em;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
/* Disabled styles */
|
|
1430
|
+
select:disabled,
|
|
1431
|
+
select[aria-disabled="true"] {
|
|
1432
|
+
color: graytext;
|
|
1433
|
+
background-image:
|
|
1434
|
+
url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"),
|
|
1435
|
+
linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
select:disabled:hover,
|
|
1439
|
+
select[aria-disabled="true"] {
|
|
1440
|
+
border-color: #aaa;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
.button-css,
|
|
1444
|
+
button {
|
|
1445
|
+
--text-opacity: 1;
|
|
1446
|
+
--border-opacity: 1;
|
|
1447
|
+
--bg-opacity: 1;
|
|
1448
|
+
text-decoration: none;
|
|
1449
|
+
-webkit-font-smoothing: antialiased;
|
|
1450
|
+
box-sizing: border-box;
|
|
1451
|
+
border: 0 solid #d2d6dc;
|
|
1452
|
+
font-family: inherit;
|
|
1453
|
+
|
|
1454
|
+
text-transform: none;
|
|
1455
|
+
background-image: none;
|
|
1456
|
+
cursor: pointer;
|
|
1457
|
+
/* background-color: rgba(88,80,236,var(--bg-opacity)); */
|
|
1458
|
+
border-color: transparent;
|
|
1459
|
+
border-width: 1px;
|
|
1460
|
+
font-weight: 500;
|
|
1461
|
+
font-size: 0.875rem;
|
|
1462
|
+
line-height: 1.25rem;
|
|
1463
|
+
padding-top: 0.5rem;
|
|
1464
|
+
padding-bottom: 0.5rem;
|
|
1465
|
+
padding-left: 1rem;
|
|
1466
|
+
padding-right: 1rem;
|
|
1467
|
+
height: fit-content;
|
|
1468
|
+
user-select: none;
|
|
1469
|
+
overflow: hidden;
|
|
1470
|
+
text-overflow: ellipsis;
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.button-css:not([class*="rounded"]):not([class*="round"]),
|
|
1474
|
+
button:not([class*="rounded"]):not([class*="round"]) {
|
|
1475
|
+
border-radius: 0.375rem;
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
.button.secondary,
|
|
1479
|
+
button.secondary,
|
|
1480
|
+
button.toggle {
|
|
1481
|
+
background-color: white;
|
|
1482
|
+
background-image: none;
|
|
1483
|
+
border-color: var(--gray-300);
|
|
1484
|
+
color: var(--gray-700);
|
|
1485
|
+
}
|
|
1486
|
+
.button.secondary:hover,
|
|
1487
|
+
button.secondary:hover,
|
|
1488
|
+
button.toggle:hover {
|
|
1489
|
+
color: var(--gray-400);
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
.button.danger,
|
|
1493
|
+
button.danger {
|
|
1494
|
+
background-color: white;
|
|
1495
|
+
background-image: none;
|
|
1496
|
+
border-color: var(--red-300);
|
|
1497
|
+
color: var(--red-700);
|
|
1498
|
+
}
|
|
1499
|
+
.button.success,
|
|
1500
|
+
button.success {
|
|
1501
|
+
background-color: white;
|
|
1502
|
+
background-image: none;
|
|
1503
|
+
border-color: var(--green-300);
|
|
1504
|
+
color: var(--green-700);
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
/* .button.primary,
|
|
1508
|
+
button.primary {
|
|
1509
|
+
border-color: var(--gray-300);
|
|
1510
|
+
color: var(--gray-700);
|
|
1511
|
+
|
|
1512
|
+
} */
|
|
1513
|
+
|
|
1514
|
+
button.toggle.toggled,
|
|
1515
|
+
.button.toggle.toggled {
|
|
1516
|
+
color: var(--teal-400);
|
|
1517
|
+
border-color: var(--teal-400);
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
.active-border,
|
|
1521
|
+
.active-border-hover:hover {
|
|
1522
|
+
border-color: #a4e9fe;
|
|
1523
|
+
box-shadow: 0 0 0 3px rgb(180 235 252 / 45%);
|
|
1524
|
+
}
|
|
1525
|
+
.active-shadow,
|
|
1526
|
+
.active-shadow-hover:hover {
|
|
1527
|
+
box-shadow: 0 0 0 3px rgb(0 183 255 / 15%);
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
.focusable-inset:focus {
|
|
1531
|
+
border-width: 1px;
|
|
1532
|
+
border-style: solid;
|
|
1533
|
+
border: 1px solid var(--focus-color) !important;
|
|
1534
|
+
outline: none;
|
|
1535
|
+
box-shadow: inset 0 0 0 3px rgb(0 183 255 / 15%);
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
button,
|
|
1539
|
+
no-outline {
|
|
1540
|
+
outline: none;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
.focusable:focus,
|
|
1544
|
+
/*
|
|
1545
|
+
:has not working in firefox
|
|
1546
|
+
https://bugzilla.mozilla.org/show_bug.cgi?id=418039#c62
|
|
1547
|
+
|
|
1548
|
+
to enable for firefox: .focusable:focus-within,
|
|
1549
|
+
*/
|
|
1550
|
+
.focusable:focus-within:has(:focus-visible),
|
|
1551
|
+
.focusable:focus-visible,
|
|
1552
|
+
input.input:focus,
|
|
1553
|
+
.button:not(.toggle, .select-button, .btn-color-danger):focus,
|
|
1554
|
+
button:not(.toggle, .select-button, .btn-color-danger):focus,
|
|
1555
|
+
.input-focus:focus,
|
|
1556
|
+
a.btn:focus,
|
|
1557
|
+
.focus-border:focus-within {
|
|
1558
|
+
-webkit-appearance: none !important;
|
|
1559
|
+
outline: 2px solid var(--focus-color) !important;
|
|
1560
|
+
outline-offset: -2px !important; /** To prevent the outline being cliped by parent overflow */
|
|
1561
|
+
/* box-shadow: 0 0 0 2px var(--focus-color) !important; */
|
|
1562
|
+
border-color: transparent !important;
|
|
1563
|
+
z-index: 1;
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
input::placeholder {
|
|
1567
|
+
text-align: left;
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
.button.btn-color-danger:focus,
|
|
1571
|
+
button.btn-color-danger:focus {
|
|
1572
|
+
border: 1px solid var(--danger) !important;
|
|
1573
|
+
box-shadow: 0 0 0 1px var(--danger) !important;
|
|
1574
|
+
outline: none;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
button.toggle:focus {
|
|
1578
|
+
outline: 0;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
.text-hover:hover {
|
|
1582
|
+
color: rgb(0, 141, 197) !important;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
.card {
|
|
1586
|
+
padding: 2em;
|
|
1587
|
+
border: 1px solid var(--gray-300);
|
|
1588
|
+
box-shadow:
|
|
1589
|
+
0 1px 3px 0 rgba(0, 0, 0, 0.1),
|
|
1590
|
+
0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1591
|
+
border-radius: 0.5em;
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
.dark-theme .card {
|
|
1595
|
+
/* Border used to make select options more visible when rendered on a popup (See access rules table options) */
|
|
1596
|
+
border: 1px solid var(--b-color);
|
|
1597
|
+
/* box-shadow: 0 1px 3px 0 rgb(221 221 221 / 57%), 0 1px 2px 0 rgba(0, 0, 0, .06) */
|
|
1598
|
+
box-shadow:
|
|
1599
|
+
inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075),
|
|
1600
|
+
0 0 0 1px hsla(0, 0%, 0%, 0.05),
|
|
1601
|
+
0 0.3px 0.4px hsla(0, 0%, 0%, 0.02),
|
|
1602
|
+
0 0.9px 1.5px hsla(0, 0%, 0%, 0.045),
|
|
1603
|
+
0 3.5px 6px hsla(0, 0%, 0%, 0.09);
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
@media only screen and (max-width: 600px) {
|
|
1607
|
+
.card {
|
|
1608
|
+
padding: 1em;
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
.text-ellipsis {
|
|
1613
|
+
min-width: 0;
|
|
1614
|
+
overflow: hidden;
|
|
1615
|
+
text-overflow: ellipsis;
|
|
1616
|
+
display: block;
|
|
1617
|
+
}
|
|
1618
|
+
.text-ellipsis-left {
|
|
1619
|
+
min-width: 0;
|
|
1620
|
+
overflow: hidden;
|
|
1621
|
+
text-overflow: ellipsis;
|
|
1622
|
+
display: block;
|
|
1623
|
+
direction: rtl;
|
|
1624
|
+
text-align: left;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
.fs-0 {
|
|
1628
|
+
flex-shrink: none;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
.fs-1 {
|
|
1632
|
+
flex-shrink: 1;
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
.italic {
|
|
1636
|
+
font-style: italic;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
.f-p5 {
|
|
1640
|
+
flex: 0.5;
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
::-webkit-scrollbar {
|
|
1644
|
+
position: absolute;
|
|
1645
|
+
background: transparent;
|
|
1646
|
+
width: 12px;
|
|
1647
|
+
height: 12px;
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
::-webkit-scrollbar {
|
|
1651
|
+
opacity: 1;
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
::-webkit-scrollbar-track {
|
|
1655
|
+
background-color: transparent;
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
::-webkit-scrollbar-thumb {
|
|
1659
|
+
transition: 1s all;
|
|
1660
|
+
background-color: transparent;
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
::-webkit-scrollbar-thumb {
|
|
1664
|
+
background-color: rgba(0, 0, 0, 0.2);
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
.c--fit > * {
|
|
1668
|
+
width: fit-content;
|
|
1669
|
+
height: fit-content;
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
.pb-1 {
|
|
1673
|
+
padding-bottom: 1em;
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.pt-p5 {
|
|
1677
|
+
padding-top: 0.5em;
|
|
1678
|
+
}
|
|
1679
|
+
.pt-p25 {
|
|
1680
|
+
padding-top: 0.25em;
|
|
1681
|
+
}
|
|
1682
|
+
.pt-2 {
|
|
1683
|
+
padding-top: 2em;
|
|
1684
|
+
}
|
|
1685
|
+
.pt-1 {
|
|
1686
|
+
padding-top: 1em;
|
|
1687
|
+
}
|
|
1688
|
+
.pt-0 {
|
|
1689
|
+
padding-top: 0;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
.pl-3 {
|
|
1693
|
+
padding-left: 3em;
|
|
1694
|
+
}
|
|
1695
|
+
.pl-2 {
|
|
1696
|
+
padding-left: 2em;
|
|
1697
|
+
}
|
|
1698
|
+
.pl-1 {
|
|
1699
|
+
padding-left: 1em;
|
|
1700
|
+
}
|
|
1701
|
+
.pl-p5 {
|
|
1702
|
+
padding-left: 0.5em;
|
|
1703
|
+
}
|
|
1704
|
+
.pl-p25 {
|
|
1705
|
+
padding-left: 0.5em;
|
|
1706
|
+
}
|
|
1707
|
+
.pr-1 {
|
|
1708
|
+
padding-right: 1em;
|
|
1709
|
+
}
|
|
1710
|
+
.pr-p5 {
|
|
1711
|
+
padding-right: 0.5em;
|
|
1712
|
+
}
|
|
1713
|
+
.pr-p25 {
|
|
1714
|
+
padding-right: 0.25em;
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
.color-action {
|
|
1718
|
+
color: var(--blue-500);
|
|
1719
|
+
}
|
|
1720
|
+
.dark-theme .color-action {
|
|
1721
|
+
color: var(--blue-400);
|
|
1722
|
+
}
|
|
1723
|
+
.border-action {
|
|
1724
|
+
border-color: var(--blue-500);
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
.absolute-centered {
|
|
1728
|
+
position: absolute;
|
|
1729
|
+
left: 50%;
|
|
1730
|
+
top: 50%;
|
|
1731
|
+
transform: translate(-50%, -50%);
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
li.no-decor,
|
|
1735
|
+
ul.left-nav-list {
|
|
1736
|
+
list-style: none;
|
|
1737
|
+
padding: 0;
|
|
1738
|
+
margin: 0;
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
nav.left-nav-list a {
|
|
1742
|
+
display: flex;
|
|
1743
|
+
flex-direction: row;
|
|
1744
|
+
padding: 0.25em 0.5em;
|
|
1745
|
+
align-items: center;
|
|
1746
|
+
text-decoration: none;
|
|
1747
|
+
color: var(--gray-600);
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
nav.left-nav-list a:hover {
|
|
1751
|
+
background: aliceblue;
|
|
1752
|
+
}
|
|
1753
|
+
nav.left-nav-list a.active {
|
|
1754
|
+
background: rgb(194, 226, 253);
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
.active-drop-target {
|
|
1758
|
+
background: var(--blue-200) !important;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
.pe-none {
|
|
1762
|
+
pointer-events: none;
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
.bg-color-0 {
|
|
1766
|
+
background-color: var(--bg-color-0);
|
|
1767
|
+
}
|
|
1768
|
+
.bg-color-1 {
|
|
1769
|
+
background-color: var(--bg-color-1);
|
|
1770
|
+
}
|
|
1771
|
+
.bg-color-2 {
|
|
1772
|
+
background-color: var(--bg-color-2);
|
|
1773
|
+
}
|
|
1774
|
+
.bg-color-3 {
|
|
1775
|
+
background-color: var(--bg-color-3);
|
|
1776
|
+
}
|
|
1777
|
+
.bg-color-4 {
|
|
1778
|
+
background-color: var(--bg-color-4);
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
.bg-li.selected {
|
|
1782
|
+
background: var(--bg-li-selected);
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
.w-800 {
|
|
1786
|
+
width: 800px;
|
|
1787
|
+
}
|
|
1788
|
+
.w-700 {
|
|
1789
|
+
width: 700px;
|
|
1790
|
+
}
|
|
1791
|
+
.w-600 {
|
|
1792
|
+
width: 600px;
|
|
1793
|
+
}
|
|
1794
|
+
.w-500 {
|
|
1795
|
+
width: 500px;
|
|
1796
|
+
}
|
|
1797
|
+
.w-400 {
|
|
1798
|
+
width: 400px;
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
.dark-theme a[target="_blank"]:link {
|
|
1802
|
+
color: lightskyblue;
|
|
1803
|
+
}
|
|
1804
|
+
.dark-theme a[target="_blank"]:visited {
|
|
1805
|
+
color: #cdaaed;
|
|
1806
|
+
}
|
|
1807
|
+
.dark-theme a[target="_blank"]:hover {
|
|
1808
|
+
color: #ffffff;
|
|
1809
|
+
}
|
|
1810
|
+
.dark-theme a[target="_blank"]:active {
|
|
1811
|
+
color: #ff4040;
|
|
1812
|
+
text-decoration: none;
|
|
1813
|
+
font-weight: normal;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
@media all and (max-width: 1024px) {
|
|
1817
|
+
/*styles for narrow desktop browsers and iPad landscape */
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
@media all and (max-width: 700px) {
|
|
1821
|
+
.w-800 {
|
|
1822
|
+
width: 700px;
|
|
1823
|
+
}
|
|
1824
|
+
}
|
|
1825
|
+
@media all and (max-width: 600px) {
|
|
1826
|
+
.w-800 {
|
|
1827
|
+
width: 600px;
|
|
1828
|
+
}
|
|
1829
|
+
.w-700 {
|
|
1830
|
+
width: 600px;
|
|
1831
|
+
}
|
|
1832
|
+
}
|
|
1833
|
+
@media all and (max-width: 500px) {
|
|
1834
|
+
.w-800 {
|
|
1835
|
+
width: 500px;
|
|
1836
|
+
}
|
|
1837
|
+
.w-700 {
|
|
1838
|
+
width: 500px;
|
|
1839
|
+
}
|
|
1840
|
+
.w-600 {
|
|
1841
|
+
width: 500px;
|
|
1842
|
+
}
|
|
1843
|
+
}
|
|
1844
|
+
@media all and (max-width: 400px) {
|
|
1845
|
+
.w-800 {
|
|
1846
|
+
width: 400px;
|
|
1847
|
+
}
|
|
1848
|
+
.w-700 {
|
|
1849
|
+
width: 400px;
|
|
1850
|
+
}
|
|
1851
|
+
.w-600 {
|
|
1852
|
+
width: 400px;
|
|
1853
|
+
}
|
|
1854
|
+
.w-500 {
|
|
1855
|
+
width: 400px;
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
@media all and (max-width: 320px) {
|
|
1860
|
+
/*styles for iPhone/Android portrait*/
|
|
1861
|
+
.w-800 {
|
|
1862
|
+
width: 320px;
|
|
1863
|
+
}
|
|
1864
|
+
.w-700 {
|
|
1865
|
+
width: 320px;
|
|
1866
|
+
}
|
|
1867
|
+
.w-600 {
|
|
1868
|
+
width: 320px;
|
|
1869
|
+
}
|
|
1870
|
+
.w-500 {
|
|
1871
|
+
width: 320px;
|
|
1872
|
+
}
|
|
1873
|
+
.w-400 {
|
|
1874
|
+
width: 320px;
|
|
1875
|
+
}
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.text-active {
|
|
1879
|
+
color: var(--active);
|
|
1880
|
+
}
|
|
1881
|
+
.b-active {
|
|
1882
|
+
border-color: var(--active);
|
|
1883
|
+
}
|
|
1884
|
+
.bg-active {
|
|
1885
|
+
background-color: var(--active);
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.text-active-hover:hover {
|
|
1889
|
+
color: var(--blue-600);
|
|
1890
|
+
}
|
|
1891
|
+
.b-active.hover:hover {
|
|
1892
|
+
border-color: var(--active-hover);
|
|
1893
|
+
}
|
|
1894
|
+
.bg-active.hover:hover {
|
|
1895
|
+
background-color: var(--active-hover);
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
.show-on-parent-hover:not(.hover) {
|
|
1899
|
+
opacity: 0;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
.show-on-hover {
|
|
1903
|
+
opacity: 0;
|
|
1904
|
+
}
|
|
1905
|
+
.show-on-hover:hover {
|
|
1906
|
+
opacity: 1;
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
.show-on-parent-hover:focus-within {
|
|
1910
|
+
opacity: 1 !important;
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
/* .parent-hover:hover .show-on-parent-hover, */
|
|
1914
|
+
*:hover > .show-on-parent-hover,
|
|
1915
|
+
*:focus > .show-on-parent-hover,
|
|
1916
|
+
*:focus-within > .show-on-parent-hover {
|
|
1917
|
+
opacity: 1;
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
.display-on-trigger-hover {
|
|
1921
|
+
width: 0;
|
|
1922
|
+
margin-right: -10px;
|
|
1923
|
+
transition: width 0.35s;
|
|
1924
|
+
overflow: hidden;
|
|
1925
|
+
}
|
|
1926
|
+
.trigger-hover:hover .display-on-trigger-hover,
|
|
1927
|
+
.trigger-hover:focus .display-on-trigger-hover {
|
|
1928
|
+
width: 250px;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
.show-on-trigger-hover {
|
|
1932
|
+
opacity: 0;
|
|
1933
|
+
}
|
|
1934
|
+
.trigger-hover:hover .show-on-trigger-hover,
|
|
1935
|
+
.trigger-hover:focus .show-on-trigger-hover,
|
|
1936
|
+
.trigger-hover:focus-within .show-on-trigger-hover,
|
|
1937
|
+
.trigger-hover-force .show-on-trigger-hover {
|
|
1938
|
+
opacity: 1 !important;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
/* Disable on touch-only because there's no hover */
|
|
1942
|
+
@media (pointer: coarse) {
|
|
1943
|
+
.show-on-hover,
|
|
1944
|
+
.show-on-parent-hover,
|
|
1945
|
+
.show-on-trigger-hover {
|
|
1946
|
+
opacity: 1 !important;
|
|
1947
|
+
}
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
.shrink-label {
|
|
1951
|
+
max-width: fit-content;
|
|
1952
|
+
max-height: fit-content;
|
|
1953
|
+
white-space: nowrap;
|
|
1954
|
+
flex: 1;
|
|
1955
|
+
min-width: 0;
|
|
1956
|
+
text-overflow: ellipsis;
|
|
1957
|
+
overflow: hidden;
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
.disabled:not(.no-fade):not(.hidden) {
|
|
1961
|
+
/* pointer-events: none;
|
|
1962
|
+
touch-action: none; */
|
|
1963
|
+
opacity: 0.5;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
.disabled,
|
|
1967
|
+
.disabled * {
|
|
1968
|
+
cursor: not-allowed !important;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
/** Merging these rules will not work */
|
|
1972
|
+
input[type="file"]::file-selector-button {
|
|
1973
|
+
background: transparent;
|
|
1974
|
+
border: unset;
|
|
1975
|
+
cursor: pointer;
|
|
1976
|
+
font-weight: bold;
|
|
1977
|
+
|
|
1978
|
+
/* Vertical centering */
|
|
1979
|
+
display: inline-flex;
|
|
1980
|
+
align-items: center;
|
|
1981
|
+
justify-content: center;
|
|
1982
|
+
height: 100%;
|
|
1983
|
+
}
|
|
1984
|
+
input[type="file"]::-webkit-file-upload-button {
|
|
1985
|
+
background: transparent;
|
|
1986
|
+
border: unset;
|
|
1987
|
+
cursor: pointer;
|
|
1988
|
+
font-weight: bold;
|
|
1989
|
+
|
|
1990
|
+
/* Vertical centering */
|
|
1991
|
+
display: inline-flex;
|
|
1992
|
+
align-items: center;
|
|
1993
|
+
justify-content: center;
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
/* Base skeleton */
|
|
1997
|
+
.skeleton {
|
|
1998
|
+
position: relative;
|
|
1999
|
+
overflow: hidden;
|
|
2000
|
+
background: var(--bg-color-1);
|
|
2001
|
+
border-radius: 4px;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
/* Shimmer layer */
|
|
2005
|
+
.skeleton::after {
|
|
2006
|
+
content: "";
|
|
2007
|
+
position: absolute;
|
|
2008
|
+
inset: 0;
|
|
2009
|
+
transform: translateX(-100%);
|
|
2010
|
+
background: linear-gradient(
|
|
2011
|
+
90deg,
|
|
2012
|
+
transparent,
|
|
2013
|
+
rgba(255, 255, 255, 0.4),
|
|
2014
|
+
transparent
|
|
2015
|
+
);
|
|
2016
|
+
animation: shimmer 1.2s infinite;
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
/* GPU-friendly transform animation */
|
|
2020
|
+
@keyframes shimmer {
|
|
2021
|
+
100% {
|
|
2022
|
+
transform: translateX(100%);
|
|
2023
|
+
}
|
|
2024
|
+
}
|