├── .coderabbit.yaml ├── .env.example ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── teams.yml └── workflows │ ├── check-links.yml │ ├── claude-code-review.yml │ ├── claude.yml │ ├── codex-comment.yml │ ├── playwright.yml │ ├── release.yml │ ├── stale-prs.yml │ └── unit-tests.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── AGENTS.md ├── CLAUDE.md ├── README.md ├── e2e-tests └── example.spec.ts ├── index.html ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── postcss.config.js ├── public └── favicon.ico ├── scripts ├── check-links.js ├── check-links.sh └── types.js ├── src ├── App.tsx ├── app │ ├── 404.tsx │ ├── activate-server │ │ ├── PasswordStep.tsx │ │ ├── ServerActivationContext.tsx │ │ ├── ServerNameStep.tsx │ │ ├── Wizard.tsx │ │ └── page.tsx │ ├── activate-user │ │ ├── AccountDetailsStep.tsx │ │ ├── ActivationContext.tsx │ │ ├── PasswordStep.tsx │ │ ├── Wizard.tsx │ │ ├── ai-challenge-step.tsx │ │ ├── page.tsx │ │ └── primary-role-step.tsx │ ├── artifacts │ │ ├── Fragments.tsx │ │ └── page.tsx │ ├── components │ │ ├── StackComponentList.tsx │ │ ├── [componentId] │ │ │ ├── edit │ │ │ │ ├── form-step.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── button-group.tsx │ │ ├── columns.tsx │ │ ├── component-dropdown.tsx │ │ ├── create │ │ │ ├── breadcrumb.ts │ │ │ ├── config-step.tsx │ │ │ ├── flavor-step.tsx │ │ │ ├── header.tsx │ │ │ ├── page.tsx │ │ │ ├── type-step.tsx │ │ │ └── wizard.tsx │ │ ├── page.tsx │ │ ├── selector-context.tsx │ │ └── service.ts │ ├── deployments │ │ ├── [deploymentId] │ │ │ ├── _components │ │ │ │ ├── code-collapsible.tsx │ │ │ │ ├── command-builder.spec.ts │ │ │ │ ├── command-builder.ts │ │ │ │ ├── common.tsx │ │ │ │ ├── config-collapsible.tsx │ │ │ │ ├── deployment-detail.tsx │ │ │ │ ├── docker-build-collapsible.tsx │ │ │ │ ├── endpoint.tsx │ │ │ │ ├── fetch-wrapper.tsx │ │ │ │ └── stack-collapsible.tsx │ │ │ ├── _layout │ │ │ │ └── header │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── info-subrow.tsx │ │ │ │ │ ├── info.tsx │ │ │ │ │ ├── not-available-tag.tsx │ │ │ │ │ ├── pipeline-tag.tsx │ │ │ │ │ ├── tabs.tsx │ │ │ │ │ ├── use-active-tab.ts │ │ │ │ │ └── use-breadcrumb.ts │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ ├── playground │ │ │ │ ├── _components │ │ │ │ │ ├── error.tsx │ │ │ │ │ ├── inputs │ │ │ │ │ │ ├── editor.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── invoke-form.ts │ │ │ │ │ ├── loader.tsx │ │ │ │ │ └── outputs │ │ │ │ │ │ ├── content.tsx │ │ │ │ │ │ ├── delete-alert.tsx │ │ │ │ │ │ ├── empty-state.tsx │ │ │ │ │ │ ├── footer.tsx │ │ │ │ │ │ ├── header.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── outputs-switcher.tsx │ │ │ │ │ │ ├── run-card-avatar.tsx │ │ │ │ │ │ ├── run-card.tsx │ │ │ │ │ │ └── types.ts │ │ │ │ ├── page.content.tsx │ │ │ │ └── page.tsx │ │ │ └── runs │ │ │ │ ├── page.content.tsx │ │ │ │ └── page.tsx │ │ ├── columns.tsx │ │ ├── page.content.tsx │ │ └── page.tsx │ ├── devices │ │ └── verify │ │ │ ├── ConfirmationForm.tsx │ │ │ ├── DeviceInfo.tsx │ │ │ ├── Success.tsx │ │ │ ├── page.tsx │ │ │ └── service.ts │ ├── login │ │ ├── LoginForm.tsx │ │ └── page.tsx │ ├── models │ │ ├── Fragments.tsx │ │ └── page.tsx │ ├── onboarding │ │ ├── Header.tsx │ │ ├── Setup │ │ │ ├── Items.tsx │ │ │ ├── helpbox.tsx │ │ │ ├── index.tsx │ │ │ ├── pipeline-snippet.tsx │ │ │ └── set-project.tsx │ │ ├── page.tsx │ │ └── progress-indicator.tsx │ ├── overview │ │ ├── next-steps.tsx │ │ ├── page.tsx │ │ ├── pipelines-grid │ │ │ ├── index.tsx │ │ │ ├── pipeline-item.tsx │ │ │ ├── pipeline-sheet.tsx │ │ │ └── progressbar.tsx │ │ ├── success-banner.tsx │ │ ├── support-resources.tsx │ │ ├── templates.tsx │ │ └── welcome.tsx │ ├── pipelines │ │ ├── [pipelineId] │ │ │ ├── _layout │ │ │ │ ├── header.tsx │ │ │ │ ├── name-section.tsx │ │ │ │ ├── tabs.tsx │ │ │ │ ├── use-active-tab.ts │ │ │ │ └── use-breadcrumb.ts │ │ │ ├── deployments │ │ │ │ ├── columns.tsx │ │ │ │ ├── page.content.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── runs │ │ │ │ ├── RunsTable.tsx │ │ │ │ ├── breadcrumb.ts │ │ │ │ ├── columns.tsx │ │ │ │ ├── content.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── runs-table-toolbar.tsx │ │ │ │ └── service.ts │ │ │ └── snapshots │ │ │ │ ├── columns.tsx │ │ │ │ ├── page.content.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── use-breadcrumbs.ts │ │ ├── _components │ │ │ ├── ButtonGroup.tsx │ │ │ ├── DeletePipelineAlert.tsx │ │ │ ├── PipelineDropdown.tsx │ │ │ ├── PipelineSelectorContext.tsx │ │ │ ├── PipelinesBody.tsx │ │ │ ├── columns.tsx │ │ │ └── service.ts │ │ └── page.tsx │ ├── projects │ │ ├── page.tsx │ │ ├── project-item.tsx │ │ ├── project-list.tsx │ │ ├── project-menu.tsx │ │ ├── searchbar.tsx │ │ └── set-default-project.tsx │ ├── runs │ │ ├── ButtonGroup.tsx │ │ ├── DeleteRunAlert.tsx │ │ ├── RunDropdown.tsx │ │ ├── RunsBody.tsx │ │ ├── RunsSelectorContext.tsx │ │ ├── [id] │ │ │ ├── DeleteRunAlert.tsx │ │ │ ├── Header.tsx │ │ │ ├── RunActionMenu.tsx │ │ │ ├── breadcrumbs.ts │ │ │ ├── create-snapshot │ │ │ │ ├── breadcrumb.ts │ │ │ │ └── page.tsx │ │ │ ├── detail-tabs.tsx │ │ │ ├── expand-panel-button.tsx │ │ │ ├── not-found.tsx │ │ │ ├── page.tsx │ │ │ └── pipeline-viz │ │ │ │ ├── DagViewConfirmationDialog.tsx │ │ │ │ ├── dag │ │ │ │ ├── index.tsx │ │ │ │ └── useDag.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── timeline │ │ │ │ ├── components │ │ │ │ │ ├── timeline-artifact-node.tsx │ │ │ │ │ ├── timeline-duration-indicator.tsx │ │ │ │ │ ├── timeline-empty-state.tsx │ │ │ │ │ ├── timeline-header.tsx │ │ │ │ │ ├── timeline-item-collapsible-content.tsx │ │ │ │ │ ├── timeline-list-item.tsx │ │ │ │ │ ├── timeline-list.tsx │ │ │ │ │ ├── timeline-placeholder-list-items.tsx │ │ │ │ │ ├── timeline-step-node.tsx │ │ │ │ │ └── timeline-triggered-run-node.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── use-timelie-item.ts │ │ │ │ │ └── use-timeline-realtime.ts │ │ │ │ ├── services │ │ │ │ │ ├── timeline-data-builder.ts │ │ │ │ │ ├── timeline-duration-calculation.ts │ │ │ │ │ ├── timeline-empty-state-message.spec.ts │ │ │ │ │ ├── timeline-empty-state-message.ts │ │ │ │ │ ├── timeline-search.spec.ts │ │ │ │ │ ├── timeline-search.ts │ │ │ │ │ ├── timeline-virtualize-items.spec.ts │ │ │ │ │ └── timeline-virtualize-items.ts │ │ │ │ └── timeline-view.tsx │ │ │ │ ├── types.ts │ │ │ │ ├── use-visualization.ts │ │ │ │ └── view-switcher.tsx │ │ ├── columns.tsx │ │ ├── page.tsx │ │ └── service.ts │ ├── settings │ │ ├── api-tokens │ │ │ ├── APITokenModal.tsx │ │ │ ├── CreateTokenButton.tsx │ │ │ ├── DisabledTokenButton.tsx │ │ │ └── page.tsx │ │ ├── connectors │ │ │ ├── [id] │ │ │ │ ├── components │ │ │ │ │ └── page.tsx │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── params.tsx │ │ │ │ └── resources │ │ │ │ │ ├── loading-dialog.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── resources-list.tsx │ │ │ │ │ ├── verify-box.tsx │ │ │ │ │ └── verify-button.tsx │ │ │ ├── button-group.tsx │ │ │ ├── columns.tsx │ │ │ ├── connector-dropdown.tsx │ │ │ ├── connector-list.tsx │ │ │ ├── create │ │ │ │ ├── breadcrumbs.ts │ │ │ │ ├── common │ │ │ │ │ └── footer-buttons.tsx │ │ │ │ ├── configuration │ │ │ │ │ ├── auth-method-section.tsx │ │ │ │ │ ├── config-section.tsx │ │ │ │ │ ├── debounced-check.ts │ │ │ │ │ ├── helper.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── name-schema.ts │ │ │ │ │ ├── name-section.tsx │ │ │ │ │ ├── resource-type-section.tsx │ │ │ │ │ ├── schema.ts │ │ │ │ │ ├── skip-verify.tsx │ │ │ │ │ ├── use-verify-button.ts │ │ │ │ │ └── verify-connector-button.tsx │ │ │ │ ├── connector-type │ │ │ │ │ ├── description.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── list.tsx │ │ │ │ │ └── schema.ts │ │ │ │ ├── create-context.tsx │ │ │ │ ├── header.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── success │ │ │ │ │ ├── columns.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── success-box.tsx │ │ │ │ │ └── table.tsx │ │ │ │ └── wizard.tsx │ │ │ ├── header.tsx │ │ │ ├── list-content.tsx │ │ │ ├── new-connector-button.tsx │ │ │ ├── page.tsx │ │ │ ├── searchbar.tsx │ │ │ ├── selector-context.ts │ │ │ └── use-connector-params.ts │ │ ├── general │ │ │ ├── GeneralForm.tsx │ │ │ ├── GeneralFormSchema.ts │ │ │ └── page.tsx │ │ ├── members │ │ │ ├── AddMemberDialog.tsx │ │ │ ├── DeleteMemberAlert.tsx │ │ │ ├── MemberDropdown.tsx │ │ │ ├── MembersTable.tsx │ │ │ ├── columns.tsx │ │ │ ├── page.tsx │ │ │ └── service.ts │ │ ├── notifications │ │ │ ├── NotificationsForm.tsx │ │ │ └── page.tsx │ │ ├── profile │ │ │ ├── UpdatePasswordDialog.tsx │ │ │ ├── UpdateProfileForm.tsx │ │ │ ├── UpdateProfileSchema.ts │ │ │ ├── edit-avatar-dialog.tsx │ │ │ └── page.tsx │ │ ├── repositories │ │ │ ├── Fragments.tsx │ │ │ └── page.tsx │ │ ├── secrets │ │ │ ├── AddSecretDialog.tsx │ │ │ ├── DeleteSecretAlert.tsx │ │ │ ├── EditSecretDialog.tsx │ │ │ ├── SecretTooltip.tsx │ │ │ ├── SecretsDropdown.tsx │ │ │ ├── SecretsTable.tsx │ │ │ ├── [id] │ │ │ │ ├── DeleteKeyAlert.tsx │ │ │ │ ├── SecretDetailTable.tsx │ │ │ │ ├── SecretTableDropDown.tsx │ │ │ │ ├── breadcrumbs.ts │ │ │ │ ├── columns.tsx │ │ │ │ └── page.tsx │ │ │ ├── columns.tsx │ │ │ ├── form-schema.ts │ │ │ ├── page.tsx │ │ │ └── service.ts │ │ └── service-accounts │ │ │ ├── AddServiceAccount.tsx │ │ │ ├── ButtonGroup.tsx │ │ │ ├── DeleteAlert.tsx │ │ │ ├── Dropdown.tsx │ │ │ ├── Fallback.tsx │ │ │ ├── SelectorContext.tsx │ │ │ ├── Table.tsx │ │ │ ├── ToggleServiceAccount.tsx │ │ │ ├── [service-account-id] │ │ │ ├── AddApiKeyDialog.tsx │ │ │ ├── ButtonGroup.tsx │ │ │ ├── DeleteApiKeyDialog.tsx │ │ │ ├── Dropdown.tsx │ │ │ ├── Fallback.tsx │ │ │ ├── RotateKeyDialog.tsx │ │ │ ├── SelectorContext.tsx │ │ │ ├── Success.tsx │ │ │ ├── Table.tsx │ │ │ ├── ToggleApiKey.tsx │ │ │ ├── breadcrumb.ts │ │ │ ├── columns.tsx │ │ │ ├── header.tsx │ │ │ └── page.tsx │ │ │ ├── columns.tsx │ │ │ ├── form-schema.ts │ │ │ ├── page.tsx │ │ │ └── service.ts │ ├── snapshots │ │ ├── [snapshotId] │ │ │ ├── _components │ │ │ │ ├── code.tsx │ │ │ │ ├── fetch-wrapper.tsx │ │ │ │ ├── snapshot-detail.tsx │ │ │ │ └── snapshot-stack.tsx │ │ │ ├── _layout │ │ │ │ └── header │ │ │ │ │ ├── breadcrumbs.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── info.tsx │ │ │ │ │ ├── tabs.tsx │ │ │ │ │ └── use-active-tab.ts │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── runs │ │ │ │ ├── page.content.tsx │ │ │ │ └── page.tsx │ │ ├── columns.tsx │ │ ├── create │ │ │ ├── breadcrumbs.ts │ │ │ └── page.tsx │ │ ├── page.content.tsx │ │ └── page.tsx │ ├── stacks │ │ ├── ActionsDropdown.tsx │ │ ├── DeleteStackModal.tsx │ │ ├── DialogItems.tsx │ │ ├── ResumeBanner.tsx │ │ ├── ResumeStackBanner.tsx │ │ ├── ResumeTerraformBanner.tsx │ │ ├── StackList.tsx │ │ ├── columns.tsx │ │ ├── create │ │ │ ├── ExistingInfra.tsx │ │ │ ├── LocalOverlay.tsx │ │ │ ├── NewInfra.tsx │ │ │ ├── OptionCard.tsx │ │ │ ├── breadcrumb.ts │ │ │ ├── components │ │ │ │ ├── CancelButton.tsx │ │ │ │ ├── ProviderRadio.tsx │ │ │ │ ├── RadioItem.tsx │ │ │ │ ├── StackName.tsx │ │ │ │ ├── WizardFooter.tsx │ │ │ │ └── sharedSchema.ts │ │ │ ├── existing-infrastructure │ │ │ │ ├── ExistingInfraContext.tsx │ │ │ │ ├── FlavorIcon.tsx │ │ │ │ ├── Wizard.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── steps │ │ │ │ │ ├── artifact_store │ │ │ │ │ ├── Form.tsx │ │ │ │ │ ├── Header.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── useArtifactStore.ts │ │ │ │ │ ├── connect │ │ │ │ │ ├── AuthMethodSelect.tsx │ │ │ │ │ ├── AuthenticationMethod.tsx │ │ │ │ │ ├── Configuration.tsx │ │ │ │ │ ├── LoadingModal.tsx │ │ │ │ │ ├── NewConnectorForm.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── useNewConnector.ts │ │ │ │ │ ├── container_registry │ │ │ │ │ ├── Form.tsx │ │ │ │ │ ├── Header.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── useContainerRegistry.tsx │ │ │ │ │ ├── final │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── orchestrator │ │ │ │ │ ├── Form.tsx │ │ │ │ │ ├── Header.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── useOrchestrator.ts │ │ │ │ │ └── provider │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── schema.ts │ │ │ ├── layout.tsx │ │ │ ├── manual │ │ │ │ ├── ComponentSelection.tsx │ │ │ │ ├── ComponentsTooltip.tsx │ │ │ │ ├── TypeOverview.tsx │ │ │ │ ├── TypeOverviewItem.tsx │ │ │ │ ├── create-component-modal │ │ │ │ │ ├── configuration-step.tsx │ │ │ │ │ ├── flavor-select.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── schema.ts │ │ │ │ └── useManualStack.tsx │ │ │ ├── new-infrastructure │ │ │ │ ├── CloudProvider.tsx │ │ │ │ ├── NewInfraFormContext.tsx │ │ │ │ ├── Providers │ │ │ │ │ ├── AWS.tsx │ │ │ │ │ ├── Azure.tsx │ │ │ │ │ ├── GCP.tsx │ │ │ │ │ ├── PermissionsCard.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Steps │ │ │ │ │ ├── Configuration │ │ │ │ │ │ ├── LocationSelect.tsx │ │ │ │ │ │ ├── Partials.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Deploy │ │ │ │ │ │ ├── ButtonStep.tsx │ │ │ │ │ │ ├── ProvisioningStep.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Provider.tsx │ │ │ │ │ ├── Success │ │ │ │ │ │ ├── SuccessList.tsx │ │ │ │ │ │ └── SuccessStep.tsx │ │ │ │ │ └── schemas.ts │ │ │ │ ├── Wizard.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── persist.ts │ │ │ ├── page.tsx │ │ │ └── terraform │ │ │ │ ├── TerraformContext.tsx │ │ │ │ ├── TerraformWizard.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── persist.ts │ │ │ │ └── steps │ │ │ │ ├── configuration │ │ │ │ └── index.tsx │ │ │ │ ├── deploy │ │ │ │ ├── Pollingstep.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── usePollinglist.ts │ │ │ │ ├── provider │ │ │ │ ├── index.tsx │ │ │ │ └── schema.ts │ │ │ │ └── success │ │ │ │ └── index.tsx │ │ ├── page.tsx │ │ ├── service.ts │ │ └── useDeleteStack.tsx │ ├── survey │ │ ├── AccountDetailsStep.tsx │ │ ├── SurveyUserContext.tsx │ │ ├── Wizard.tsx │ │ ├── ai-challenge-step.tsx │ │ ├── loader.ts │ │ ├── page.tsx │ │ └── primary-role-step.tsx │ └── upgrade │ │ ├── components │ │ ├── Context.tsx │ │ ├── Success.tsx │ │ └── form │ │ │ ├── Form.tsx │ │ │ ├── Steps.tsx │ │ │ ├── Wrapper.tsx │ │ │ ├── index.tsx │ │ │ ├── schema.ts │ │ │ └── useUpgradeForm.ts │ │ └── page.tsx ├── assets │ ├── icons │ │ ├── Lock.svg │ │ ├── alert-circle.svg │ │ ├── alert-triangle.svg │ │ ├── analysis.svg │ │ ├── annotation-alert.svg │ │ ├── announcement.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── bar-chart-square-check.svg │ │ ├── bar-chart.svg │ │ ├── building.svg │ │ ├── cached.svg │ │ ├── calendar.svg │ │ ├── check-circle.svg │ │ ├── check.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left-double.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right-double.svg │ │ ├── chevron-right.svg │ │ ├── chip.svg │ │ ├── clipboard.svg │ │ ├── clock.svg │ │ ├── close.svg │ │ ├── cloud-tenant.svg │ │ ├── cloud.svg │ │ ├── code-box.svg │ │ ├── code-browser.svg │ │ ├── code-square.svg │ │ ├── coin.svg │ │ ├── collapse-text.svg │ │ ├── collapse.svg │ │ ├── collapse_lines.svg │ │ ├── connector-add.svg │ │ ├── container.svg │ │ ├── copy.svg │ │ ├── credit-card.svg │ │ ├── database.svg │ │ ├── dataflow-03.svg │ │ ├── dataflow-2.svg │ │ ├── dataflow.svg │ │ ├── dots-circle.svg │ │ ├── dots-horizontal.svg │ │ ├── download-01.svg │ │ ├── edit.svg │ │ ├── expand-full.svg │ │ ├── expand.svg │ │ ├── expand_lines.svg │ │ ├── eye-off.svg │ │ ├── eye.svg │ │ ├── file-question.svg │ │ ├── file-text.svg │ │ ├── file.svg │ │ ├── folder.svg │ │ ├── github.svg │ │ ├── gitlab.svg │ │ ├── hash.svg │ │ ├── hat.svg │ │ ├── help.svg │ │ ├── info.svg │ │ ├── key-icon.svg │ │ ├── layout.svg │ │ ├── link-external.svg │ │ ├── logout.svg │ │ ├── logs.svg │ │ ├── long-arrow-right.svg │ │ ├── mail.svg │ │ ├── maximize.svg │ │ ├── message-chat-square.svg │ │ ├── minus.svg │ │ ├── ml_model.svg │ │ ├── model_artifacts.svg │ │ ├── name.svg │ │ ├── overlap.svg │ │ ├── package-plus.svg │ │ ├── package-search.svg │ │ ├── package.svg │ │ ├── pin-01.svg │ │ ├── pin.svg │ │ ├── pipeline.svg │ │ ├── play-circle.svg │ │ ├── plus.svg │ │ ├── redirect.svg │ │ ├── refresh.svg │ │ ├── rerun.svg │ │ ├── retried.svg │ │ ├── robot.svg │ │ ├── rocket.svg │ │ ├── route.svg │ │ ├── running.svg │ │ ├── search.svg │ │ ├── services │ │ │ ├── aws.svg │ │ │ ├── azure.svg │ │ │ ├── docker.svg │ │ │ ├── gcp.svg │ │ │ ├── slack.svg │ │ │ └── terraform.svg │ │ ├── settings.svg │ │ ├── side-collapse.svg │ │ ├── side-expand.svg │ │ ├── slash-circle.svg │ │ ├── slash-divider.svg │ │ ├── snapshot.svg │ │ ├── spinner.svg │ │ ├── stack.svg │ │ ├── stars.svg │ │ ├── stop-circle.svg │ │ ├── stopped.svg │ │ ├── storefront.svg │ │ ├── switch-horizontal.svg │ │ ├── terminal-square.svg │ │ ├── terminal.svg │ │ ├── tick-circle.svg │ │ ├── tool-02.svg │ │ ├── tool.svg │ │ ├── transform.svg │ │ ├── trash.svg │ │ ├── trigger.svg │ │ ├── user-eng.svg │ │ ├── user-lead.svg │ │ ├── user-plus.svg │ │ ├── user.svg │ │ ├── users.svg │ │ ├── zenml-icon.svg │ │ └── zenml.svg │ ├── illustrations │ │ ├── cloud-squares.svg │ │ └── connectivity.webp │ ├── images │ │ ├── acp.webp │ │ ├── cursor.webp │ │ ├── gradient_bg.webp │ │ ├── mcp.webp │ │ ├── portraits │ │ │ ├── adam.webp │ │ │ ├── alex.webp │ │ │ ├── baris.webp │ │ │ ├── hamza.webp │ │ │ └── stefan.webp │ │ ├── product-tour │ │ │ ├── settings_preview.webp │ │ │ └── tour-cover.webp │ │ ├── upgrade-form.webp │ │ └── vs-code.webp │ └── styles │ │ ├── index.css │ │ └── prism-github-light.css ├── components │ ├── Analytics.tsx │ ├── ArtifactIcon.tsx │ ├── CodeHighlighter.tsx │ ├── CodeSnippet.tsx │ ├── CollapsibleCard.tsx │ ├── ComponentIcon.tsx │ ├── CopyButton.tsx │ ├── DeleteAlertDialog.tsx │ ├── DisplayDate.tsx │ ├── EmptyState.tsx │ ├── Error.tsx │ ├── ExecutionStatus.tsx │ ├── Infobox.tsx │ ├── InlineAvatar.tsx │ ├── KeyValue.tsx │ ├── Markdown.tsx │ ├── MetadataCards.tsx │ ├── NavLink.tsx │ ├── NestedCollapsible.tsx │ ├── NumberBox.tsx │ ├── PageHeader.tsx │ ├── Pagination.tsx │ ├── ProviderIcon.tsx │ ├── SearchField.tsx │ ├── Tick.tsx │ ├── admin-badge.tsx │ ├── alerts │ │ └── delete-selected-item-alert.tsx │ ├── announcements │ │ ├── announcement-highlight │ │ │ ├── index.tsx │ │ │ ├── page-indicator.tsx │ │ │ └── use-new-highlights.ts │ │ ├── announcement-image.tsx │ │ ├── announcement-indicator.tsx │ │ ├── announcement-label.tsx │ │ ├── announcement-links.tsx │ │ ├── announcement-list │ │ │ ├── announcement-dialog-header.tsx │ │ │ ├── announcement-dialog-search-bar.tsx │ │ │ ├── announcement-dialog.tsx │ │ │ ├── announcement-empty-state.tsx │ │ │ ├── announcement-item.tsx │ │ │ ├── get-filtered-items.ts │ │ │ └── use-announcement-search.ts │ │ ├── announcement-video.tsx │ │ ├── label-utils.ts │ │ ├── persist-announcement.ts │ │ ├── use-announcement-item-analytics.ts │ │ ├── use-last-seen.ts │ │ └── use-new-announcements.ts │ ├── artifacts │ │ ├── CsvVizualization.tsx │ │ ├── HtmlVisualization.tsx │ │ ├── ImageVisualization.tsx │ │ ├── JsonVisualization.tsx │ │ ├── MarkdownVisualization.tsx │ │ ├── Visualization.tsx │ │ ├── artifact-node-sheet │ │ │ ├── DetailCards.tsx │ │ │ ├── DetailsTab.tsx │ │ │ ├── MetadataTab.tsx │ │ │ ├── SheetContent.tsx │ │ │ └── VisualizationTab.tsx │ │ ├── download-artifact-button.tsx │ │ ├── visualization-combobox.tsx │ │ └── visualization-download-button.tsx │ ├── avatar-stack.tsx │ ├── avatars │ │ ├── service-account-avatar.tsx │ │ └── user-or-service-account.tsx │ ├── bot-badge.tsx │ ├── breadcrumbs │ │ ├── Breadcrumbs.tsx │ │ ├── library.ts │ │ ├── project-link.tsx │ │ ├── types.ts │ │ └── workspace-link.tsx │ ├── button-group │ │ └── button-group-basic.tsx │ ├── buttons │ │ └── update-button-content.tsx │ ├── collapsible-chevron.tsx │ ├── collapsibles │ │ ├── docker-image-collapsible.tsx │ │ ├── docker-image.spec.ts │ │ ├── docker-image.ts │ │ └── dockerfile-snippet.tsx │ ├── copy-metadata-button.tsx │ ├── dag-visualizer │ │ ├── ArtifactNode.tsx │ │ ├── BaseNode.tsx │ │ ├── Controls.tsx │ │ ├── NodeCopyButton.tsx │ │ ├── PreviewArtifact.tsx │ │ ├── PreviewStep.tsx │ │ ├── StepNode.tsx │ │ ├── TriggeredRunNode.tsx │ │ ├── elk-edge.tsx │ │ ├── global-sheets.tsx │ │ ├── layout.ts │ │ ├── layout │ │ │ ├── compute.ts │ │ │ └── status.ts │ │ ├── node-types.ts │ │ ├── search │ │ │ ├── index.tsx │ │ │ └── use-node-search.tsx │ │ └── sheet-context.tsx │ ├── debounced-input.tsx │ ├── deployments │ │ ├── deployment-status-tag.tsx │ │ ├── list │ │ │ ├── button-group.tsx │ │ │ ├── column-definitions.tsx │ │ │ ├── table.tsx │ │ │ ├── toolbar.tsx │ │ │ └── use-deployment-queryparams.ts │ │ ├── playground │ │ │ ├── playground-view-switcher-button.tsx │ │ │ ├── playground-view-switcher-tabs.tsx │ │ │ └── preview-visualization │ │ │ │ ├── components │ │ │ │ ├── array-value.tsx │ │ │ │ ├── boolean-value.tsx │ │ │ │ ├── collapsible-string-value.tsx │ │ │ │ ├── expand-collapse-icon.tsx │ │ │ │ ├── object-value.tsx │ │ │ │ ├── playground-value-collapsible.tsx │ │ │ │ └── simple-value.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── services │ │ │ │ ├── sort-json-keys.ts │ │ │ │ └── string-threshold.ts │ │ └── selector-context.ts │ ├── dropdown-trigger-button.tsx │ ├── fallback-pages │ │ ├── Cards.tsx │ │ ├── Commands.tsx │ │ └── Helpbox.tsx │ ├── fallback │ │ └── icon.tsx │ ├── form │ │ ├── FieldHint.tsx │ │ ├── array-field-renderer.tsx │ │ ├── boolean-field-renderer.tsx │ │ ├── common.tsx │ │ ├── enum-field-renderer.tsx │ │ ├── form.tsx │ │ ├── helper.spec.ts │ │ ├── helper.ts │ │ ├── integer-field-renderer.tsx │ │ ├── object-field-renderer.tsx │ │ ├── sensitive-text-renderer.tsx │ │ └── text-field-renderer.tsx │ ├── icons │ │ └── rerunning-wrapper.tsx │ ├── login-command.tsx │ ├── logs │ │ ├── empty-state-logs.tsx │ │ ├── enhanced-log-viewer.tsx │ │ ├── loading-logs.tsx │ │ ├── log-level-select.tsx │ │ ├── log-line.tsx │ │ ├── toolbar.tsx │ │ ├── use-log-search.tsx │ │ ├── use-loglevel-filter.ts │ │ └── use-logpage-input.ts │ ├── not-available.tsx │ ├── onboarding │ │ ├── ChecklistItem.tsx │ │ ├── SkippedStep.tsx │ │ └── floating-progress-link.tsx │ ├── password │ │ ├── PasswordChecker.tsx │ │ └── UpdatePasswordSchemas.ts │ ├── pipeline-snapshots │ │ ├── create │ │ │ ├── _form-components │ │ │ │ ├── create-snapshot-form-footer.tsx │ │ │ │ └── create-snapshot-form-header.tsx │ │ │ ├── form-schema.ts │ │ │ ├── form.tsx │ │ │ ├── pipeline-select.tsx │ │ │ ├── run-select.tsx │ │ │ └── use-submit-handler.ts │ │ ├── delete-alert.tsx │ │ ├── list │ │ │ ├── button-group.tsx │ │ │ ├── column-definitions.tsx │ │ │ ├── table.tsx │ │ │ ├── toolbar.tsx │ │ │ └── use-queryparams.ts │ │ ├── selector-context.ts │ │ ├── snapshot-link.tsx │ │ └── table-actions.tsx │ ├── pipelines │ │ └── pipeline-link.tsx │ ├── pro │ │ └── ProCta.tsx │ ├── repositories │ │ └── RepoBadge.tsx │ ├── runs │ │ ├── auth-required.tsx │ │ ├── detail-tabs │ │ │ ├── Configuration │ │ │ │ ├── CodeCollapsible.tsx │ │ │ │ ├── EnvironmentCollapsible.tsx │ │ │ │ ├── ParameterCollapsible.tsx │ │ │ │ └── index.tsx │ │ │ ├── LogTab │ │ │ │ ├── boundary.tsx │ │ │ │ ├── combobox.tsx │ │ │ │ └── logs.tsx │ │ │ ├── Metadata │ │ │ │ └── index.tsx │ │ │ ├── Overview │ │ │ │ ├── AlertPanels.tsx │ │ │ │ ├── Details.tsx │ │ │ │ ├── Orchestrator.tsx │ │ │ │ ├── deployment-tag.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── schedule.tsx │ │ │ ├── Stack │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── refresh-group │ │ │ ├── deep-refresh.ts │ │ │ ├── dropdown.tsx │ │ │ └── index.tsx │ │ ├── run-sheet │ │ │ ├── headline.tsx │ │ │ └── index.tsx │ │ └── stop-group │ │ │ ├── index.tsx │ │ │ ├── stop-alert.tsx │ │ │ ├── stop-button.tsx │ │ │ ├── stop-dropdown.tsx │ │ │ └── use-stop-run.tsx │ ├── sensitive-value.tsx │ ├── service-connectors │ │ ├── connector-tag.tsx │ │ ├── connector-type-tooltip.tsx │ │ ├── create-fallback.tsx │ │ ├── delete-connector.tsx │ │ ├── expiry.tsx │ │ ├── resource-name-tooltip.tsx │ │ ├── resource-tyes-list.tsx │ │ └── resource-type-tooltip.tsx │ ├── sheet │ │ ├── SheetHeader.tsx │ │ └── resizable-sheet.tsx │ ├── stack-components │ │ ├── ComponentBadge.tsx │ │ ├── component-detail │ │ │ ├── ConfigTab.tsx │ │ │ ├── Header.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── hooks.ts │ │ │ └── service.ts │ │ ├── component-sheet │ │ │ ├── index.tsx │ │ │ ├── runs-tab │ │ │ │ ├── RunsList.tsx │ │ │ │ └── columns.tsx │ │ │ └── stacks-tab │ │ │ │ ├── StackList.tsx │ │ │ │ └── columns.tsx │ │ ├── create-component │ │ │ ├── configuration-form.tsx │ │ │ ├── connector-section.tsx │ │ │ ├── connector-select.tsx │ │ │ ├── flavor-select.tsx │ │ │ ├── info-tile.tsx │ │ │ └── schema.ts │ │ └── delete-component │ │ │ └── delete-alert.tsx │ ├── stacks │ │ ├── Sheet │ │ │ ├── IntegrationsContext.tsx │ │ │ ├── index.tsx │ │ │ └── update-stacks-dialog.tsx │ │ ├── info │ │ │ ├── sort-component.ts │ │ │ ├── stack-info-collapsible.tsx │ │ │ ├── stack-info-component-list-item.tsx │ │ │ ├── stack-info-component-list.tsx │ │ │ └── stack-info-full.tsx │ │ ├── new-infra │ │ │ └── TerraformCommands.tsx │ │ └── update-stack-dialog.tsx │ ├── steps │ │ └── step-sheet │ │ │ ├── CodeTab.tsx │ │ │ ├── ConfigurationTab.tsx │ │ │ ├── DetailsTab.tsx │ │ │ ├── LogsTab.tsx │ │ │ ├── MetadataTab.tsx │ │ │ ├── SheetContent.tsx │ │ │ ├── StacksTab.tsx │ │ │ ├── sheet-headline.tsx │ │ │ └── step-status-tooltip.tsx │ ├── survey │ │ ├── AccountDetailsForm.tsx │ │ ├── ServerName.tsx │ │ ├── SetPassword.tsx │ │ ├── SlackStep.tsx │ │ ├── StepDisplay.tsx │ │ ├── SuccessStep.tsx │ │ ├── SurveyContext.tsx │ │ ├── ai-challenge.tsx │ │ ├── form-schemas.ts │ │ └── primary-role.tsx │ ├── tab-icon.tsx │ ├── tables │ │ ├── action-cell.tsx │ │ └── helper.tsx │ ├── tabs │ │ └── scrolling-tabs-list.tsx │ ├── tour │ │ ├── StartTourDialog.tsx │ │ ├── Tour.tsx │ │ └── TourContext.tsx │ ├── triggers │ │ └── schedule-tag.tsx │ └── wizard │ │ ├── LeftSideMenu.tsx │ │ └── Wizard.tsx ├── contents │ ├── components.tsx │ ├── repositories.ts │ ├── secrets.ts │ └── stack.ts ├── context │ ├── AuthContext.tsx │ ├── SchemaContext.tsx │ ├── VisualizationConfirmationContext.tsx │ └── WizardContext.tsx ├── data │ ├── analytics │ │ └── event.ts │ ├── announcements │ │ └── announcements.ts │ ├── api.ts │ ├── artifact-versions │ │ ├── artifact-download-token.ts │ │ ├── artifact-version-detail-query.ts │ │ └── artifact-visualization-query.ts │ ├── auth │ │ └── create-api-token.ts │ ├── code-repositories │ │ └── code-repositories-detail-query.ts │ ├── components │ │ ├── component-detail-query.ts │ │ ├── components-list.ts │ │ ├── create-component.ts │ │ ├── delete-component.ts │ │ ├── index.ts │ │ └── update-component.ts │ ├── deployment-invocations │ │ ├── invoke-client.ts │ │ └── invoke.ts │ ├── deployments │ │ ├── fetch-detail.ts │ │ ├── fetch-list.ts │ │ └── index.ts │ ├── devices │ │ ├── device-detail-query.ts │ │ └── device-verify-mutation.ts │ ├── fetch.ts │ ├── flavors │ │ ├── flavor-detail.ts │ │ ├── flavors-list.ts │ │ └── index.ts │ ├── github │ │ ├── pipeline-content.ts │ │ ├── pipeline-summary.ts │ │ └── pipelines.ts │ ├── pipeline-builds │ │ └── all-pipeline-builds-query.ts │ ├── pipeline-runs │ │ ├── all-pipeline-runs-query.ts │ │ ├── delete-run.ts │ │ ├── pipeline-run-detail-query.ts │ │ ├── refresh-run.ts │ │ ├── run-dag.ts │ │ ├── run-logs.ts │ │ └── stop-run.ts │ ├── pipeline-snapshots │ │ ├── fetch-snapshot-detail.ts │ │ ├── index.ts │ │ ├── list-snapshots.ts │ │ └── update-snapshot.ts │ ├── pipelines │ │ ├── delete-pipeline.ts │ │ ├── index.ts │ │ ├── pipeline-detail.ts │ │ └── pipeline-list-query.ts │ ├── projects │ │ ├── index.ts │ │ ├── project-detail.ts │ │ └── project-statistics.ts │ ├── secrets │ │ ├── create-secret-query.ts │ │ ├── delete-secret-query.ts │ │ ├── get-secret-detail.ts │ │ ├── index.ts │ │ ├── secrets-all-query.ts │ │ └── update-secret-query.ts │ ├── server │ │ ├── activate-server-mutation.ts │ │ ├── get-server-settings.ts │ │ ├── info-query.ts │ │ ├── onboarding-state.ts │ │ └── update-server-settings-mutation.ts │ ├── service-accounts │ │ ├── create-api-key.ts │ │ ├── create-service-account.ts │ │ ├── delete-api-key.ts │ │ ├── delete-service-account.ts │ │ ├── get-api-key.ts │ │ ├── get-service-account.ts │ │ ├── index.ts │ │ ├── list-api-keys.ts │ │ ├── list-service-accounts.ts │ │ ├── rotate-api-key.ts │ │ ├── update-api-key.ts │ │ └── update-service-account.ts │ ├── service-connectors │ │ ├── connector-detail.ts │ │ ├── connector-list.ts │ │ ├── connector-type-detail.ts │ │ ├── connector-type-list.ts │ │ ├── create-service-connector.ts │ │ ├── delete-service-connector.ts │ │ ├── index.ts │ │ ├── resources-info.ts │ │ ├── verify-config.ts │ │ └── verify-existing-connectors.ts │ ├── session │ │ ├── login-mutation.ts │ │ └── logout-mutation.ts │ ├── stacks │ │ ├── create-stack.ts │ │ ├── delete-stack.ts │ │ ├── index.ts │ │ ├── stack-deployment-config.ts │ │ ├── stack-deployment-info.ts │ │ ├── stack-deployment-stack.ts │ │ ├── stack-detail-query.ts │ │ └── stacklist-query.ts │ ├── steps │ │ ├── step-detail-query.ts │ │ └── step-logs-query.ts │ └── users │ │ ├── activate-user-mutation.ts │ │ ├── create-user-mutation.ts │ │ ├── current-user-query.ts │ │ ├── delete-user-mutation.ts │ │ ├── update-current-user-mutation.ts │ │ └── users-all-query.ts ├── error-boundaries │ ├── PageBoundary.tsx │ └── RootBoundary.tsx ├── hooks │ ├── use-route-segment.tsx │ └── usePageTitle.ts ├── layouts │ ├── AuthenticatedLayout │ │ ├── AuthenticatedHeader.tsx │ │ ├── BreadcrumbsContext.tsx │ │ ├── LocalBanner.tsx │ │ ├── UserDropdown.tsx │ │ ├── back-button.tsx │ │ ├── index.tsx │ │ ├── use-announcement.ts │ │ └── whats-new-button.tsx │ ├── GradientLayout.tsx │ ├── RootLayout.tsx │ ├── connectors-detail │ │ ├── breadcrumbs.ts │ │ ├── header.tsx │ │ ├── layout.tsx │ │ ├── resources-context.tsx │ │ └── tabs.tsx │ ├── non-project-scoped │ │ ├── dropdown.tsx │ │ ├── header.tsx │ │ ├── layout.tsx │ │ ├── name-section.tsx │ │ ├── server-members.tsx │ │ └── tabs.tsx │ ├── project-tabs │ │ ├── header.tsx │ │ ├── id-section.tsx │ │ ├── layout.tsx │ │ ├── name-section.tsx │ │ └── tabs.tsx │ └── settings │ │ ├── Menu.tsx │ │ ├── project-settings │ │ ├── layout.tsx │ │ └── project-display.tsx │ │ └── settings-layout │ │ ├── LayoutSidebar.tsx │ │ ├── VersionDisplay.tsx │ │ └── layout.tsx ├── lib │ ├── analytics.ts │ ├── bulk-delete.tsx │ ├── code-snippets.ts │ ├── common.ts │ ├── components.ts │ ├── constants.ts │ ├── copy.ts │ ├── dates.ts │ ├── deployments.ts │ ├── environment.ts │ ├── fetch-error.ts │ ├── forms.spec.ts │ ├── forms.ts │ ├── images.ts │ ├── json-faker.ts │ ├── login-command.ts │ ├── logs.spec.ts │ ├── logs.ts │ ├── monaco-editor │ │ └── github-light.ts │ ├── name.ts │ ├── not-found-error.ts │ ├── onboarding.spec.ts │ ├── onboarding.ts │ ├── provider.ts │ ├── search.spec.ts │ ├── search.ts │ ├── server.spec.ts │ ├── server.ts │ ├── service-connectors.ts │ ├── sessions.ts │ ├── stacks.ts │ ├── strings.spec.ts │ ├── strings.ts │ ├── timeline │ │ ├── calculate.spec.ts │ │ ├── calculate.ts │ │ ├── mapping.ts │ │ └── types.ts │ ├── type-guards.ts │ ├── url.ts │ ├── user.spec.ts │ └── user.ts ├── main.tsx ├── monaco-setup.ts ├── router │ ├── ProtectedRoute.tsx │ ├── Router.tsx │ ├── loaders.ts │ ├── queryclient.ts │ └── routes.tsx ├── types │ ├── .gitkeep │ ├── analytics.ts │ ├── announcements.ts │ ├── artifact-versions.ts │ ├── auth.ts │ ├── code-repository.ts │ ├── common.ts │ ├── components.ts │ ├── core.ts │ ├── dag-visualizer.ts │ ├── deployment-invocations.ts │ ├── deployments.ts │ ├── devices.ts │ ├── flavors.ts │ ├── forms.ts │ ├── logs.ts │ ├── onboarding.ts │ ├── pipeline-builds.ts │ ├── pipeline-deployments.ts │ ├── pipeline-runs.ts │ ├── pipeline-snapshots.ts │ ├── pipelines.ts │ ├── projects.ts │ ├── reodotdev.d.ts │ ├── secret.ts │ ├── server.ts │ ├── service-accounts.ts │ ├── service-connectors.ts │ ├── session.ts │ ├── stack.ts │ ├── steps.ts │ └── user.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/teams.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.github/teams.yml -------------------------------------------------------------------------------- /.github/workflows/check-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.github/workflows/check-links.yml -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/codex-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.github/workflows/codex-comment.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.github/workflows/stale-prs.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/.prettierrc -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /e2e-tests/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/e2e-tests/example.spec.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /scripts/check-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/scripts/check-links.js -------------------------------------------------------------------------------- /scripts/check-links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/scripts/check-links.sh -------------------------------------------------------------------------------- /scripts/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/scripts/types.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/app/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/404.tsx -------------------------------------------------------------------------------- /src/app/activate-server/PasswordStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-server/PasswordStep.tsx -------------------------------------------------------------------------------- /src/app/activate-server/ServerActivationContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-server/ServerActivationContext.tsx -------------------------------------------------------------------------------- /src/app/activate-server/ServerNameStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-server/ServerNameStep.tsx -------------------------------------------------------------------------------- /src/app/activate-server/Wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-server/Wizard.tsx -------------------------------------------------------------------------------- /src/app/activate-server/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-server/page.tsx -------------------------------------------------------------------------------- /src/app/activate-user/AccountDetailsStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-user/AccountDetailsStep.tsx -------------------------------------------------------------------------------- /src/app/activate-user/ActivationContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-user/ActivationContext.tsx -------------------------------------------------------------------------------- /src/app/activate-user/PasswordStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-user/PasswordStep.tsx -------------------------------------------------------------------------------- /src/app/activate-user/Wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-user/Wizard.tsx -------------------------------------------------------------------------------- /src/app/activate-user/ai-challenge-step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-user/ai-challenge-step.tsx -------------------------------------------------------------------------------- /src/app/activate-user/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-user/page.tsx -------------------------------------------------------------------------------- /src/app/activate-user/primary-role-step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/activate-user/primary-role-step.tsx -------------------------------------------------------------------------------- /src/app/artifacts/Fragments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/artifacts/Fragments.tsx -------------------------------------------------------------------------------- /src/app/artifacts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/artifacts/page.tsx -------------------------------------------------------------------------------- /src/app/components/StackComponentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/StackComponentList.tsx -------------------------------------------------------------------------------- /src/app/components/[componentId]/edit/form-step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/[componentId]/edit/form-step.tsx -------------------------------------------------------------------------------- /src/app/components/[componentId]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/[componentId]/edit/page.tsx -------------------------------------------------------------------------------- /src/app/components/[componentId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/[componentId]/layout.tsx -------------------------------------------------------------------------------- /src/app/components/[componentId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/[componentId]/page.tsx -------------------------------------------------------------------------------- /src/app/components/button-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/button-group.tsx -------------------------------------------------------------------------------- /src/app/components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/columns.tsx -------------------------------------------------------------------------------- /src/app/components/component-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/component-dropdown.tsx -------------------------------------------------------------------------------- /src/app/components/create/breadcrumb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/create/breadcrumb.ts -------------------------------------------------------------------------------- /src/app/components/create/config-step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/create/config-step.tsx -------------------------------------------------------------------------------- /src/app/components/create/flavor-step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/create/flavor-step.tsx -------------------------------------------------------------------------------- /src/app/components/create/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/create/header.tsx -------------------------------------------------------------------------------- /src/app/components/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/create/page.tsx -------------------------------------------------------------------------------- /src/app/components/create/type-step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/create/type-step.tsx -------------------------------------------------------------------------------- /src/app/components/create/wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/create/wizard.tsx -------------------------------------------------------------------------------- /src/app/components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/page.tsx -------------------------------------------------------------------------------- /src/app/components/selector-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/selector-context.tsx -------------------------------------------------------------------------------- /src/app/components/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/components/service.ts -------------------------------------------------------------------------------- /src/app/deployments/[deploymentId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/deployments/[deploymentId]/layout.tsx -------------------------------------------------------------------------------- /src/app/deployments/[deploymentId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/deployments/[deploymentId]/page.tsx -------------------------------------------------------------------------------- /src/app/deployments/[deploymentId]/playground/_components/outputs/types.ts: -------------------------------------------------------------------------------- 1 | export type PlaygroundOutputsView = "preview" | "json"; 2 | -------------------------------------------------------------------------------- /src/app/deployments/[deploymentId]/playground/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/deployments/[deploymentId]/playground/page.tsx -------------------------------------------------------------------------------- /src/app/deployments/[deploymentId]/runs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/deployments/[deploymentId]/runs/page.tsx -------------------------------------------------------------------------------- /src/app/deployments/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/deployments/columns.tsx -------------------------------------------------------------------------------- /src/app/deployments/page.content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/deployments/page.content.tsx -------------------------------------------------------------------------------- /src/app/deployments/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/deployments/page.tsx -------------------------------------------------------------------------------- /src/app/devices/verify/ConfirmationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/devices/verify/ConfirmationForm.tsx -------------------------------------------------------------------------------- /src/app/devices/verify/DeviceInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/devices/verify/DeviceInfo.tsx -------------------------------------------------------------------------------- /src/app/devices/verify/Success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/devices/verify/Success.tsx -------------------------------------------------------------------------------- /src/app/devices/verify/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/devices/verify/page.tsx -------------------------------------------------------------------------------- /src/app/devices/verify/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/devices/verify/service.ts -------------------------------------------------------------------------------- /src/app/login/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/login/LoginForm.tsx -------------------------------------------------------------------------------- /src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/login/page.tsx -------------------------------------------------------------------------------- /src/app/models/Fragments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/models/Fragments.tsx -------------------------------------------------------------------------------- /src/app/models/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/models/page.tsx -------------------------------------------------------------------------------- /src/app/onboarding/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/onboarding/Header.tsx -------------------------------------------------------------------------------- /src/app/onboarding/Setup/Items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/onboarding/Setup/Items.tsx -------------------------------------------------------------------------------- /src/app/onboarding/Setup/helpbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/onboarding/Setup/helpbox.tsx -------------------------------------------------------------------------------- /src/app/onboarding/Setup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/onboarding/Setup/index.tsx -------------------------------------------------------------------------------- /src/app/onboarding/Setup/pipeline-snippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/onboarding/Setup/pipeline-snippet.tsx -------------------------------------------------------------------------------- /src/app/onboarding/Setup/set-project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/onboarding/Setup/set-project.tsx -------------------------------------------------------------------------------- /src/app/onboarding/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/onboarding/page.tsx -------------------------------------------------------------------------------- /src/app/onboarding/progress-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/onboarding/progress-indicator.tsx -------------------------------------------------------------------------------- /src/app/overview/next-steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/overview/next-steps.tsx -------------------------------------------------------------------------------- /src/app/overview/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/overview/page.tsx -------------------------------------------------------------------------------- /src/app/overview/pipelines-grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/overview/pipelines-grid/index.tsx -------------------------------------------------------------------------------- /src/app/overview/pipelines-grid/pipeline-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/overview/pipelines-grid/pipeline-item.tsx -------------------------------------------------------------------------------- /src/app/overview/pipelines-grid/pipeline-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/overview/pipelines-grid/pipeline-sheet.tsx -------------------------------------------------------------------------------- /src/app/overview/pipelines-grid/progressbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/overview/pipelines-grid/progressbar.tsx -------------------------------------------------------------------------------- /src/app/overview/success-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/overview/success-banner.tsx -------------------------------------------------------------------------------- /src/app/overview/support-resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/overview/support-resources.tsx -------------------------------------------------------------------------------- /src/app/overview/templates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/overview/templates.tsx -------------------------------------------------------------------------------- /src/app/overview/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/overview/welcome.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/_layout/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/_layout/header.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/_layout/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/_layout/tabs.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/deployments/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/deployments/columns.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/deployments/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/deployments/page.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/layout.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/runs/RunsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/runs/RunsTable.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/runs/breadcrumb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/runs/breadcrumb.ts -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/runs/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/runs/columns.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/runs/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/runs/content.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/runs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/runs/page.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/runs/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/runs/service.ts -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/snapshots/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/snapshots/columns.tsx -------------------------------------------------------------------------------- /src/app/pipelines/[pipelineId]/snapshots/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/[pipelineId]/snapshots/page.tsx -------------------------------------------------------------------------------- /src/app/pipelines/_components/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/_components/ButtonGroup.tsx -------------------------------------------------------------------------------- /src/app/pipelines/_components/DeletePipelineAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/_components/DeletePipelineAlert.tsx -------------------------------------------------------------------------------- /src/app/pipelines/_components/PipelineDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/_components/PipelineDropdown.tsx -------------------------------------------------------------------------------- /src/app/pipelines/_components/PipelinesBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/_components/PipelinesBody.tsx -------------------------------------------------------------------------------- /src/app/pipelines/_components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/_components/columns.tsx -------------------------------------------------------------------------------- /src/app/pipelines/_components/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/_components/service.ts -------------------------------------------------------------------------------- /src/app/pipelines/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/pipelines/page.tsx -------------------------------------------------------------------------------- /src/app/projects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/projects/page.tsx -------------------------------------------------------------------------------- /src/app/projects/project-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/projects/project-item.tsx -------------------------------------------------------------------------------- /src/app/projects/project-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/projects/project-list.tsx -------------------------------------------------------------------------------- /src/app/projects/project-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/projects/project-menu.tsx -------------------------------------------------------------------------------- /src/app/projects/searchbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/projects/searchbar.tsx -------------------------------------------------------------------------------- /src/app/projects/set-default-project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/projects/set-default-project.tsx -------------------------------------------------------------------------------- /src/app/runs/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/ButtonGroup.tsx -------------------------------------------------------------------------------- /src/app/runs/DeleteRunAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/DeleteRunAlert.tsx -------------------------------------------------------------------------------- /src/app/runs/RunDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/RunDropdown.tsx -------------------------------------------------------------------------------- /src/app/runs/RunsBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/RunsBody.tsx -------------------------------------------------------------------------------- /src/app/runs/RunsSelectorContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/RunsSelectorContext.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/DeleteRunAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/DeleteRunAlert.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/Header.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/RunActionMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/RunActionMenu.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/breadcrumbs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/breadcrumbs.ts -------------------------------------------------------------------------------- /src/app/runs/[id]/create-snapshot/breadcrumb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/create-snapshot/breadcrumb.ts -------------------------------------------------------------------------------- /src/app/runs/[id]/create-snapshot/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/create-snapshot/page.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/detail-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/detail-tabs.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/expand-panel-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/expand-panel-button.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/not-found.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/pipeline-viz/dag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/pipeline-viz/dag/index.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/pipeline-viz/dag/useDag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/pipeline-viz/dag/useDag.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/pipeline-viz/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/pipeline-viz/index.tsx -------------------------------------------------------------------------------- /src/app/runs/[id]/pipeline-viz/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/pipeline-viz/types.ts -------------------------------------------------------------------------------- /src/app/runs/[id]/pipeline-viz/use-visualization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/pipeline-viz/use-visualization.ts -------------------------------------------------------------------------------- /src/app/runs/[id]/pipeline-viz/view-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/[id]/pipeline-viz/view-switcher.tsx -------------------------------------------------------------------------------- /src/app/runs/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/columns.tsx -------------------------------------------------------------------------------- /src/app/runs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/page.tsx -------------------------------------------------------------------------------- /src/app/runs/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/runs/service.ts -------------------------------------------------------------------------------- /src/app/settings/api-tokens/APITokenModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/api-tokens/APITokenModal.tsx -------------------------------------------------------------------------------- /src/app/settings/api-tokens/CreateTokenButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/api-tokens/CreateTokenButton.tsx -------------------------------------------------------------------------------- /src/app/settings/api-tokens/DisabledTokenButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/api-tokens/DisabledTokenButton.tsx -------------------------------------------------------------------------------- /src/app/settings/api-tokens/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/api-tokens/page.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/[id]/components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/[id]/components/page.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/[id]/resources/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/[id]/resources/page.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/button-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/button-group.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/columns.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/connector-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/connector-dropdown.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/connector-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/connector-list.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/create/breadcrumbs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/create/breadcrumbs.ts -------------------------------------------------------------------------------- /src/app/settings/connectors/create/create-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/create/create-context.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/create/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/create/header.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/create/page.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/create/success/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/create/success/columns.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/create/success/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/create/success/index.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/create/success/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/create/success/table.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/create/wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/create/wizard.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/header.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/list-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/list-content.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/new-connector-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/new-connector-button.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/page.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/searchbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/searchbar.tsx -------------------------------------------------------------------------------- /src/app/settings/connectors/selector-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/selector-context.ts -------------------------------------------------------------------------------- /src/app/settings/connectors/use-connector-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/connectors/use-connector-params.ts -------------------------------------------------------------------------------- /src/app/settings/general/GeneralForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/general/GeneralForm.tsx -------------------------------------------------------------------------------- /src/app/settings/general/GeneralFormSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/general/GeneralFormSchema.ts -------------------------------------------------------------------------------- /src/app/settings/general/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/general/page.tsx -------------------------------------------------------------------------------- /src/app/settings/members/AddMemberDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/members/AddMemberDialog.tsx -------------------------------------------------------------------------------- /src/app/settings/members/DeleteMemberAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/members/DeleteMemberAlert.tsx -------------------------------------------------------------------------------- /src/app/settings/members/MemberDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/members/MemberDropdown.tsx -------------------------------------------------------------------------------- /src/app/settings/members/MembersTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/members/MembersTable.tsx -------------------------------------------------------------------------------- /src/app/settings/members/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/members/columns.tsx -------------------------------------------------------------------------------- /src/app/settings/members/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/members/page.tsx -------------------------------------------------------------------------------- /src/app/settings/members/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/members/service.ts -------------------------------------------------------------------------------- /src/app/settings/notifications/NotificationsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/notifications/NotificationsForm.tsx -------------------------------------------------------------------------------- /src/app/settings/notifications/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/notifications/page.tsx -------------------------------------------------------------------------------- /src/app/settings/profile/UpdatePasswordDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/profile/UpdatePasswordDialog.tsx -------------------------------------------------------------------------------- /src/app/settings/profile/UpdateProfileForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/profile/UpdateProfileForm.tsx -------------------------------------------------------------------------------- /src/app/settings/profile/UpdateProfileSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/profile/UpdateProfileSchema.ts -------------------------------------------------------------------------------- /src/app/settings/profile/edit-avatar-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/profile/edit-avatar-dialog.tsx -------------------------------------------------------------------------------- /src/app/settings/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/profile/page.tsx -------------------------------------------------------------------------------- /src/app/settings/repositories/Fragments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/repositories/Fragments.tsx -------------------------------------------------------------------------------- /src/app/settings/repositories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/repositories/page.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/AddSecretDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/AddSecretDialog.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/DeleteSecretAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/DeleteSecretAlert.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/EditSecretDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/EditSecretDialog.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/SecretTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/SecretTooltip.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/SecretsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/SecretsDropdown.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/SecretsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/SecretsTable.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/[id]/DeleteKeyAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/[id]/DeleteKeyAlert.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/[id]/SecretDetailTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/[id]/SecretDetailTable.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/[id]/SecretTableDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/[id]/SecretTableDropDown.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/[id]/breadcrumbs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/[id]/breadcrumbs.ts -------------------------------------------------------------------------------- /src/app/settings/secrets/[id]/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/[id]/columns.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/columns.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/form-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/form-schema.ts -------------------------------------------------------------------------------- /src/app/settings/secrets/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/page.tsx -------------------------------------------------------------------------------- /src/app/settings/secrets/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/secrets/service.ts -------------------------------------------------------------------------------- /src/app/settings/service-accounts/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/service-accounts/ButtonGroup.tsx -------------------------------------------------------------------------------- /src/app/settings/service-accounts/DeleteAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/service-accounts/DeleteAlert.tsx -------------------------------------------------------------------------------- /src/app/settings/service-accounts/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/service-accounts/Dropdown.tsx -------------------------------------------------------------------------------- /src/app/settings/service-accounts/Fallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/service-accounts/Fallback.tsx -------------------------------------------------------------------------------- /src/app/settings/service-accounts/SelectorContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/service-accounts/SelectorContext.tsx -------------------------------------------------------------------------------- /src/app/settings/service-accounts/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/service-accounts/Table.tsx -------------------------------------------------------------------------------- /src/app/settings/service-accounts/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/service-accounts/columns.tsx -------------------------------------------------------------------------------- /src/app/settings/service-accounts/form-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/service-accounts/form-schema.ts -------------------------------------------------------------------------------- /src/app/settings/service-accounts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/service-accounts/page.tsx -------------------------------------------------------------------------------- /src/app/settings/service-accounts/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/settings/service-accounts/service.ts -------------------------------------------------------------------------------- /src/app/snapshots/[snapshotId]/_components/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/[snapshotId]/_components/code.tsx -------------------------------------------------------------------------------- /src/app/snapshots/[snapshotId]/_layout/header/info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/[snapshotId]/_layout/header/info.tsx -------------------------------------------------------------------------------- /src/app/snapshots/[snapshotId]/_layout/header/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/[snapshotId]/_layout/header/tabs.tsx -------------------------------------------------------------------------------- /src/app/snapshots/[snapshotId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/[snapshotId]/layout.tsx -------------------------------------------------------------------------------- /src/app/snapshots/[snapshotId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/[snapshotId]/page.tsx -------------------------------------------------------------------------------- /src/app/snapshots/[snapshotId]/runs/page.content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/[snapshotId]/runs/page.content.tsx -------------------------------------------------------------------------------- /src/app/snapshots/[snapshotId]/runs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/[snapshotId]/runs/page.tsx -------------------------------------------------------------------------------- /src/app/snapshots/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/columns.tsx -------------------------------------------------------------------------------- /src/app/snapshots/create/breadcrumbs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/create/breadcrumbs.ts -------------------------------------------------------------------------------- /src/app/snapshots/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/create/page.tsx -------------------------------------------------------------------------------- /src/app/snapshots/page.content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/page.content.tsx -------------------------------------------------------------------------------- /src/app/snapshots/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/snapshots/page.tsx -------------------------------------------------------------------------------- /src/app/stacks/ActionsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/ActionsDropdown.tsx -------------------------------------------------------------------------------- /src/app/stacks/DeleteStackModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/DeleteStackModal.tsx -------------------------------------------------------------------------------- /src/app/stacks/DialogItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/DialogItems.tsx -------------------------------------------------------------------------------- /src/app/stacks/ResumeBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/ResumeBanner.tsx -------------------------------------------------------------------------------- /src/app/stacks/ResumeStackBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/ResumeStackBanner.tsx -------------------------------------------------------------------------------- /src/app/stacks/ResumeTerraformBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/ResumeTerraformBanner.tsx -------------------------------------------------------------------------------- /src/app/stacks/StackList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/StackList.tsx -------------------------------------------------------------------------------- /src/app/stacks/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/columns.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/ExistingInfra.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/ExistingInfra.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/LocalOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/LocalOverlay.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/NewInfra.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/NewInfra.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/OptionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/OptionCard.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/breadcrumb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/breadcrumb.ts -------------------------------------------------------------------------------- /src/app/stacks/create/components/CancelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/components/CancelButton.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/components/ProviderRadio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/components/ProviderRadio.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/components/RadioItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/components/RadioItem.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/components/StackName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/components/StackName.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/components/WizardFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/components/WizardFooter.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/components/sharedSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/components/sharedSchema.ts -------------------------------------------------------------------------------- /src/app/stacks/create/existing-infrastructure/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/existing-infrastructure/page.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/layout.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/manual/ComponentSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/manual/ComponentSelection.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/manual/ComponentsTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/manual/ComponentsTooltip.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/manual/TypeOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/manual/TypeOverview.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/manual/TypeOverviewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/manual/TypeOverviewItem.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/manual/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/manual/page.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/manual/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/manual/schema.ts -------------------------------------------------------------------------------- /src/app/stacks/create/manual/useManualStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/manual/useManualStack.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/new-infrastructure/Wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/new-infrastructure/Wizard.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/new-infrastructure/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/new-infrastructure/page.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/new-infrastructure/persist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/new-infrastructure/persist.ts -------------------------------------------------------------------------------- /src/app/stacks/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/page.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/terraform/TerraformContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/terraform/TerraformContext.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/terraform/TerraformWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/terraform/TerraformWizard.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/terraform/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/terraform/page.tsx -------------------------------------------------------------------------------- /src/app/stacks/create/terraform/persist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/terraform/persist.ts -------------------------------------------------------------------------------- /src/app/stacks/create/terraform/steps/deploy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/create/terraform/steps/deploy/index.tsx -------------------------------------------------------------------------------- /src/app/stacks/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/page.tsx -------------------------------------------------------------------------------- /src/app/stacks/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/service.ts -------------------------------------------------------------------------------- /src/app/stacks/useDeleteStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/stacks/useDeleteStack.tsx -------------------------------------------------------------------------------- /src/app/survey/AccountDetailsStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/survey/AccountDetailsStep.tsx -------------------------------------------------------------------------------- /src/app/survey/SurveyUserContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/survey/SurveyUserContext.tsx -------------------------------------------------------------------------------- /src/app/survey/Wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/survey/Wizard.tsx -------------------------------------------------------------------------------- /src/app/survey/ai-challenge-step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/survey/ai-challenge-step.tsx -------------------------------------------------------------------------------- /src/app/survey/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/survey/loader.ts -------------------------------------------------------------------------------- /src/app/survey/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/survey/page.tsx -------------------------------------------------------------------------------- /src/app/survey/primary-role-step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/survey/primary-role-step.tsx -------------------------------------------------------------------------------- /src/app/upgrade/components/Context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/upgrade/components/Context.tsx -------------------------------------------------------------------------------- /src/app/upgrade/components/Success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/upgrade/components/Success.tsx -------------------------------------------------------------------------------- /src/app/upgrade/components/form/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/upgrade/components/form/Form.tsx -------------------------------------------------------------------------------- /src/app/upgrade/components/form/Steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/upgrade/components/form/Steps.tsx -------------------------------------------------------------------------------- /src/app/upgrade/components/form/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/upgrade/components/form/Wrapper.tsx -------------------------------------------------------------------------------- /src/app/upgrade/components/form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/upgrade/components/form/index.tsx -------------------------------------------------------------------------------- /src/app/upgrade/components/form/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/upgrade/components/form/schema.ts -------------------------------------------------------------------------------- /src/app/upgrade/components/form/useUpgradeForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/upgrade/components/form/useUpgradeForm.ts -------------------------------------------------------------------------------- /src/app/upgrade/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/app/upgrade/page.tsx -------------------------------------------------------------------------------- /src/assets/icons/Lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/Lock.svg -------------------------------------------------------------------------------- /src/assets/icons/alert-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/alert-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/alert-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/alert-triangle.svg -------------------------------------------------------------------------------- /src/assets/icons/analysis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/analysis.svg -------------------------------------------------------------------------------- /src/assets/icons/annotation-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/annotation-alert.svg -------------------------------------------------------------------------------- /src/assets/icons/announcement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/announcement.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/arrow-left.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/arrow-right.svg -------------------------------------------------------------------------------- /src/assets/icons/bar-chart-square-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/bar-chart-square-check.svg -------------------------------------------------------------------------------- /src/assets/icons/bar-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/bar-chart.svg -------------------------------------------------------------------------------- /src/assets/icons/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/building.svg -------------------------------------------------------------------------------- /src/assets/icons/cached.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/cached.svg -------------------------------------------------------------------------------- /src/assets/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/calendar.svg -------------------------------------------------------------------------------- /src/assets/icons/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/check-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/check.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/chevron-down.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-left-double.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/chevron-left-double.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/chevron-left.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-right-double.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/chevron-right-double.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/chevron-right.svg -------------------------------------------------------------------------------- /src/assets/icons/chip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/chip.svg -------------------------------------------------------------------------------- /src/assets/icons/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/clipboard.svg -------------------------------------------------------------------------------- /src/assets/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/clock.svg -------------------------------------------------------------------------------- /src/assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/close.svg -------------------------------------------------------------------------------- /src/assets/icons/cloud-tenant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/cloud-tenant.svg -------------------------------------------------------------------------------- /src/assets/icons/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/cloud.svg -------------------------------------------------------------------------------- /src/assets/icons/code-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/code-box.svg -------------------------------------------------------------------------------- /src/assets/icons/code-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/code-browser.svg -------------------------------------------------------------------------------- /src/assets/icons/code-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/code-square.svg -------------------------------------------------------------------------------- /src/assets/icons/coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/coin.svg -------------------------------------------------------------------------------- /src/assets/icons/collapse-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/collapse-text.svg -------------------------------------------------------------------------------- /src/assets/icons/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/collapse.svg -------------------------------------------------------------------------------- /src/assets/icons/collapse_lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/collapse_lines.svg -------------------------------------------------------------------------------- /src/assets/icons/connector-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/connector-add.svg -------------------------------------------------------------------------------- /src/assets/icons/container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/container.svg -------------------------------------------------------------------------------- /src/assets/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/copy.svg -------------------------------------------------------------------------------- /src/assets/icons/credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/credit-card.svg -------------------------------------------------------------------------------- /src/assets/icons/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/database.svg -------------------------------------------------------------------------------- /src/assets/icons/dataflow-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/dataflow-03.svg -------------------------------------------------------------------------------- /src/assets/icons/dataflow-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/dataflow-2.svg -------------------------------------------------------------------------------- /src/assets/icons/dataflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/dataflow.svg -------------------------------------------------------------------------------- /src/assets/icons/dots-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/dots-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/dots-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/dots-horizontal.svg -------------------------------------------------------------------------------- /src/assets/icons/download-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/download-01.svg -------------------------------------------------------------------------------- /src/assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/edit.svg -------------------------------------------------------------------------------- /src/assets/icons/expand-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/expand-full.svg -------------------------------------------------------------------------------- /src/assets/icons/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/expand.svg -------------------------------------------------------------------------------- /src/assets/icons/expand_lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/expand_lines.svg -------------------------------------------------------------------------------- /src/assets/icons/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/eye-off.svg -------------------------------------------------------------------------------- /src/assets/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/eye.svg -------------------------------------------------------------------------------- /src/assets/icons/file-question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/file-question.svg -------------------------------------------------------------------------------- /src/assets/icons/file-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/file-text.svg -------------------------------------------------------------------------------- /src/assets/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/file.svg -------------------------------------------------------------------------------- /src/assets/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/folder.svg -------------------------------------------------------------------------------- /src/assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/github.svg -------------------------------------------------------------------------------- /src/assets/icons/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/gitlab.svg -------------------------------------------------------------------------------- /src/assets/icons/hash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/hash.svg -------------------------------------------------------------------------------- /src/assets/icons/hat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/hat.svg -------------------------------------------------------------------------------- /src/assets/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/help.svg -------------------------------------------------------------------------------- /src/assets/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/info.svg -------------------------------------------------------------------------------- /src/assets/icons/key-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/key-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/layout.svg -------------------------------------------------------------------------------- /src/assets/icons/link-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/link-external.svg -------------------------------------------------------------------------------- /src/assets/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/logout.svg -------------------------------------------------------------------------------- /src/assets/icons/logs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/logs.svg -------------------------------------------------------------------------------- /src/assets/icons/long-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/long-arrow-right.svg -------------------------------------------------------------------------------- /src/assets/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/mail.svg -------------------------------------------------------------------------------- /src/assets/icons/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/maximize.svg -------------------------------------------------------------------------------- /src/assets/icons/message-chat-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/message-chat-square.svg -------------------------------------------------------------------------------- /src/assets/icons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/minus.svg -------------------------------------------------------------------------------- /src/assets/icons/ml_model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/ml_model.svg -------------------------------------------------------------------------------- /src/assets/icons/model_artifacts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/model_artifacts.svg -------------------------------------------------------------------------------- /src/assets/icons/name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/name.svg -------------------------------------------------------------------------------- /src/assets/icons/overlap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/overlap.svg -------------------------------------------------------------------------------- /src/assets/icons/package-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/package-plus.svg -------------------------------------------------------------------------------- /src/assets/icons/package-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/package-search.svg -------------------------------------------------------------------------------- /src/assets/icons/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/package.svg -------------------------------------------------------------------------------- /src/assets/icons/pin-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/pin-01.svg -------------------------------------------------------------------------------- /src/assets/icons/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/pin.svg -------------------------------------------------------------------------------- /src/assets/icons/pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/pipeline.svg -------------------------------------------------------------------------------- /src/assets/icons/play-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/play-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/plus.svg -------------------------------------------------------------------------------- /src/assets/icons/redirect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/redirect.svg -------------------------------------------------------------------------------- /src/assets/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/refresh.svg -------------------------------------------------------------------------------- /src/assets/icons/rerun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/rerun.svg -------------------------------------------------------------------------------- /src/assets/icons/retried.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/retried.svg -------------------------------------------------------------------------------- /src/assets/icons/robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/robot.svg -------------------------------------------------------------------------------- /src/assets/icons/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/rocket.svg -------------------------------------------------------------------------------- /src/assets/icons/route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/route.svg -------------------------------------------------------------------------------- /src/assets/icons/running.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/running.svg -------------------------------------------------------------------------------- /src/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/search.svg -------------------------------------------------------------------------------- /src/assets/icons/services/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/services/aws.svg -------------------------------------------------------------------------------- /src/assets/icons/services/azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/services/azure.svg -------------------------------------------------------------------------------- /src/assets/icons/services/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/services/docker.svg -------------------------------------------------------------------------------- /src/assets/icons/services/gcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/services/gcp.svg -------------------------------------------------------------------------------- /src/assets/icons/services/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/services/slack.svg -------------------------------------------------------------------------------- /src/assets/icons/services/terraform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/services/terraform.svg -------------------------------------------------------------------------------- /src/assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/settings.svg -------------------------------------------------------------------------------- /src/assets/icons/side-collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/side-collapse.svg -------------------------------------------------------------------------------- /src/assets/icons/side-expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/side-expand.svg -------------------------------------------------------------------------------- /src/assets/icons/slash-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/slash-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/slash-divider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/slash-divider.svg -------------------------------------------------------------------------------- /src/assets/icons/snapshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/snapshot.svg -------------------------------------------------------------------------------- /src/assets/icons/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/spinner.svg -------------------------------------------------------------------------------- /src/assets/icons/stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/stack.svg -------------------------------------------------------------------------------- /src/assets/icons/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/stars.svg -------------------------------------------------------------------------------- /src/assets/icons/stop-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/stop-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/stopped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/stopped.svg -------------------------------------------------------------------------------- /src/assets/icons/storefront.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/storefront.svg -------------------------------------------------------------------------------- /src/assets/icons/switch-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/switch-horizontal.svg -------------------------------------------------------------------------------- /src/assets/icons/terminal-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/terminal-square.svg -------------------------------------------------------------------------------- /src/assets/icons/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/terminal.svg -------------------------------------------------------------------------------- /src/assets/icons/tick-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/tick-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/tool-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/tool-02.svg -------------------------------------------------------------------------------- /src/assets/icons/tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/tool.svg -------------------------------------------------------------------------------- /src/assets/icons/transform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/transform.svg -------------------------------------------------------------------------------- /src/assets/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/trash.svg -------------------------------------------------------------------------------- /src/assets/icons/trigger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/trigger.svg -------------------------------------------------------------------------------- /src/assets/icons/user-eng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/user-eng.svg -------------------------------------------------------------------------------- /src/assets/icons/user-lead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/user-lead.svg -------------------------------------------------------------------------------- /src/assets/icons/user-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/user-plus.svg -------------------------------------------------------------------------------- /src/assets/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/user.svg -------------------------------------------------------------------------------- /src/assets/icons/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/users.svg -------------------------------------------------------------------------------- /src/assets/icons/zenml-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/zenml-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/zenml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/icons/zenml.svg -------------------------------------------------------------------------------- /src/assets/illustrations/cloud-squares.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/illustrations/cloud-squares.svg -------------------------------------------------------------------------------- /src/assets/illustrations/connectivity.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/illustrations/connectivity.webp -------------------------------------------------------------------------------- /src/assets/images/acp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/acp.webp -------------------------------------------------------------------------------- /src/assets/images/cursor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/cursor.webp -------------------------------------------------------------------------------- /src/assets/images/gradient_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/gradient_bg.webp -------------------------------------------------------------------------------- /src/assets/images/mcp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/mcp.webp -------------------------------------------------------------------------------- /src/assets/images/portraits/adam.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/portraits/adam.webp -------------------------------------------------------------------------------- /src/assets/images/portraits/alex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/portraits/alex.webp -------------------------------------------------------------------------------- /src/assets/images/portraits/baris.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/portraits/baris.webp -------------------------------------------------------------------------------- /src/assets/images/portraits/hamza.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/portraits/hamza.webp -------------------------------------------------------------------------------- /src/assets/images/portraits/stefan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/portraits/stefan.webp -------------------------------------------------------------------------------- /src/assets/images/product-tour/settings_preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/product-tour/settings_preview.webp -------------------------------------------------------------------------------- /src/assets/images/product-tour/tour-cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/product-tour/tour-cover.webp -------------------------------------------------------------------------------- /src/assets/images/upgrade-form.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/upgrade-form.webp -------------------------------------------------------------------------------- /src/assets/images/vs-code.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/images/vs-code.webp -------------------------------------------------------------------------------- /src/assets/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/styles/index.css -------------------------------------------------------------------------------- /src/assets/styles/prism-github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/assets/styles/prism-github-light.css -------------------------------------------------------------------------------- /src/components/Analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/Analytics.tsx -------------------------------------------------------------------------------- /src/components/ArtifactIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/ArtifactIcon.tsx -------------------------------------------------------------------------------- /src/components/CodeHighlighter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/CodeHighlighter.tsx -------------------------------------------------------------------------------- /src/components/CodeSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/CodeSnippet.tsx -------------------------------------------------------------------------------- /src/components/CollapsibleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/CollapsibleCard.tsx -------------------------------------------------------------------------------- /src/components/ComponentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/ComponentIcon.tsx -------------------------------------------------------------------------------- /src/components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/CopyButton.tsx -------------------------------------------------------------------------------- /src/components/DeleteAlertDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/DeleteAlertDialog.tsx -------------------------------------------------------------------------------- /src/components/DisplayDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/DisplayDate.tsx -------------------------------------------------------------------------------- /src/components/EmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/EmptyState.tsx -------------------------------------------------------------------------------- /src/components/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/Error.tsx -------------------------------------------------------------------------------- /src/components/ExecutionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/ExecutionStatus.tsx -------------------------------------------------------------------------------- /src/components/Infobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/Infobox.tsx -------------------------------------------------------------------------------- /src/components/InlineAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/InlineAvatar.tsx -------------------------------------------------------------------------------- /src/components/KeyValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/KeyValue.tsx -------------------------------------------------------------------------------- /src/components/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/Markdown.tsx -------------------------------------------------------------------------------- /src/components/MetadataCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/MetadataCards.tsx -------------------------------------------------------------------------------- /src/components/NavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/NavLink.tsx -------------------------------------------------------------------------------- /src/components/NestedCollapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/NestedCollapsible.tsx -------------------------------------------------------------------------------- /src/components/NumberBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/NumberBox.tsx -------------------------------------------------------------------------------- /src/components/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/PageHeader.tsx -------------------------------------------------------------------------------- /src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/Pagination.tsx -------------------------------------------------------------------------------- /src/components/ProviderIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/ProviderIcon.tsx -------------------------------------------------------------------------------- /src/components/SearchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/SearchField.tsx -------------------------------------------------------------------------------- /src/components/Tick.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/Tick.tsx -------------------------------------------------------------------------------- /src/components/admin-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/admin-badge.tsx -------------------------------------------------------------------------------- /src/components/alerts/delete-selected-item-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/alerts/delete-selected-item-alert.tsx -------------------------------------------------------------------------------- /src/components/announcements/announcement-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/announcements/announcement-image.tsx -------------------------------------------------------------------------------- /src/components/announcements/announcement-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/announcements/announcement-label.tsx -------------------------------------------------------------------------------- /src/components/announcements/announcement-links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/announcements/announcement-links.tsx -------------------------------------------------------------------------------- /src/components/announcements/announcement-video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/announcements/announcement-video.tsx -------------------------------------------------------------------------------- /src/components/announcements/label-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/announcements/label-utils.ts -------------------------------------------------------------------------------- /src/components/announcements/persist-announcement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/announcements/persist-announcement.ts -------------------------------------------------------------------------------- /src/components/announcements/use-last-seen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/announcements/use-last-seen.ts -------------------------------------------------------------------------------- /src/components/announcements/use-new-announcements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/announcements/use-new-announcements.ts -------------------------------------------------------------------------------- /src/components/artifacts/CsvVizualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/artifacts/CsvVizualization.tsx -------------------------------------------------------------------------------- /src/components/artifacts/HtmlVisualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/artifacts/HtmlVisualization.tsx -------------------------------------------------------------------------------- /src/components/artifacts/ImageVisualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/artifacts/ImageVisualization.tsx -------------------------------------------------------------------------------- /src/components/artifacts/JsonVisualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/artifacts/JsonVisualization.tsx -------------------------------------------------------------------------------- /src/components/artifacts/MarkdownVisualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/artifacts/MarkdownVisualization.tsx -------------------------------------------------------------------------------- /src/components/artifacts/Visualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/artifacts/Visualization.tsx -------------------------------------------------------------------------------- /src/components/artifacts/download-artifact-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/artifacts/download-artifact-button.tsx -------------------------------------------------------------------------------- /src/components/artifacts/visualization-combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/artifacts/visualization-combobox.tsx -------------------------------------------------------------------------------- /src/components/avatar-stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/avatar-stack.tsx -------------------------------------------------------------------------------- /src/components/avatars/service-account-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/avatars/service-account-avatar.tsx -------------------------------------------------------------------------------- /src/components/avatars/user-or-service-account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/avatars/user-or-service-account.tsx -------------------------------------------------------------------------------- /src/components/bot-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/bot-badge.tsx -------------------------------------------------------------------------------- /src/components/breadcrumbs/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/breadcrumbs/Breadcrumbs.tsx -------------------------------------------------------------------------------- /src/components/breadcrumbs/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/breadcrumbs/library.ts -------------------------------------------------------------------------------- /src/components/breadcrumbs/project-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/breadcrumbs/project-link.tsx -------------------------------------------------------------------------------- /src/components/breadcrumbs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/breadcrumbs/types.ts -------------------------------------------------------------------------------- /src/components/breadcrumbs/workspace-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/breadcrumbs/workspace-link.tsx -------------------------------------------------------------------------------- /src/components/button-group/button-group-basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/button-group/button-group-basic.tsx -------------------------------------------------------------------------------- /src/components/buttons/update-button-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/buttons/update-button-content.tsx -------------------------------------------------------------------------------- /src/components/collapsible-chevron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/collapsible-chevron.tsx -------------------------------------------------------------------------------- /src/components/collapsibles/docker-image.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/collapsibles/docker-image.spec.ts -------------------------------------------------------------------------------- /src/components/collapsibles/docker-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/collapsibles/docker-image.ts -------------------------------------------------------------------------------- /src/components/collapsibles/dockerfile-snippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/collapsibles/dockerfile-snippet.tsx -------------------------------------------------------------------------------- /src/components/copy-metadata-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/copy-metadata-button.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/ArtifactNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/ArtifactNode.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/BaseNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/BaseNode.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/Controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/Controls.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/NodeCopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/NodeCopyButton.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/PreviewArtifact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/PreviewArtifact.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/PreviewStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/PreviewStep.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/StepNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/StepNode.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/TriggeredRunNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/TriggeredRunNode.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/elk-edge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/elk-edge.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/global-sheets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/global-sheets.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/layout.ts -------------------------------------------------------------------------------- /src/components/dag-visualizer/layout/compute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/layout/compute.ts -------------------------------------------------------------------------------- /src/components/dag-visualizer/layout/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/layout/status.ts -------------------------------------------------------------------------------- /src/components/dag-visualizer/node-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/node-types.ts -------------------------------------------------------------------------------- /src/components/dag-visualizer/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/search/index.tsx -------------------------------------------------------------------------------- /src/components/dag-visualizer/sheet-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dag-visualizer/sheet-context.tsx -------------------------------------------------------------------------------- /src/components/debounced-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/debounced-input.tsx -------------------------------------------------------------------------------- /src/components/deployments/deployment-status-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/deployments/deployment-status-tag.tsx -------------------------------------------------------------------------------- /src/components/deployments/list/button-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/deployments/list/button-group.tsx -------------------------------------------------------------------------------- /src/components/deployments/list/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/deployments/list/table.tsx -------------------------------------------------------------------------------- /src/components/deployments/list/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/deployments/list/toolbar.tsx -------------------------------------------------------------------------------- /src/components/deployments/selector-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/deployments/selector-context.ts -------------------------------------------------------------------------------- /src/components/dropdown-trigger-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/dropdown-trigger-button.tsx -------------------------------------------------------------------------------- /src/components/fallback-pages/Cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/fallback-pages/Cards.tsx -------------------------------------------------------------------------------- /src/components/fallback-pages/Commands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/fallback-pages/Commands.tsx -------------------------------------------------------------------------------- /src/components/fallback-pages/Helpbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/fallback-pages/Helpbox.tsx -------------------------------------------------------------------------------- /src/components/fallback/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/fallback/icon.tsx -------------------------------------------------------------------------------- /src/components/form/FieldHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/FieldHint.tsx -------------------------------------------------------------------------------- /src/components/form/array-field-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/array-field-renderer.tsx -------------------------------------------------------------------------------- /src/components/form/boolean-field-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/boolean-field-renderer.tsx -------------------------------------------------------------------------------- /src/components/form/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/common.tsx -------------------------------------------------------------------------------- /src/components/form/enum-field-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/enum-field-renderer.tsx -------------------------------------------------------------------------------- /src/components/form/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/form.tsx -------------------------------------------------------------------------------- /src/components/form/helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/helper.spec.ts -------------------------------------------------------------------------------- /src/components/form/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/helper.ts -------------------------------------------------------------------------------- /src/components/form/integer-field-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/integer-field-renderer.tsx -------------------------------------------------------------------------------- /src/components/form/object-field-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/object-field-renderer.tsx -------------------------------------------------------------------------------- /src/components/form/sensitive-text-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/sensitive-text-renderer.tsx -------------------------------------------------------------------------------- /src/components/form/text-field-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/form/text-field-renderer.tsx -------------------------------------------------------------------------------- /src/components/icons/rerunning-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/icons/rerunning-wrapper.tsx -------------------------------------------------------------------------------- /src/components/login-command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/login-command.tsx -------------------------------------------------------------------------------- /src/components/logs/empty-state-logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/logs/empty-state-logs.tsx -------------------------------------------------------------------------------- /src/components/logs/enhanced-log-viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/logs/enhanced-log-viewer.tsx -------------------------------------------------------------------------------- /src/components/logs/loading-logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/logs/loading-logs.tsx -------------------------------------------------------------------------------- /src/components/logs/log-level-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/logs/log-level-select.tsx -------------------------------------------------------------------------------- /src/components/logs/log-line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/logs/log-line.tsx -------------------------------------------------------------------------------- /src/components/logs/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/logs/toolbar.tsx -------------------------------------------------------------------------------- /src/components/logs/use-log-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/logs/use-log-search.tsx -------------------------------------------------------------------------------- /src/components/logs/use-loglevel-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/logs/use-loglevel-filter.ts -------------------------------------------------------------------------------- /src/components/logs/use-logpage-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/logs/use-logpage-input.ts -------------------------------------------------------------------------------- /src/components/not-available.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/not-available.tsx -------------------------------------------------------------------------------- /src/components/onboarding/ChecklistItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/onboarding/ChecklistItem.tsx -------------------------------------------------------------------------------- /src/components/onboarding/SkippedStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/onboarding/SkippedStep.tsx -------------------------------------------------------------------------------- /src/components/password/PasswordChecker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/password/PasswordChecker.tsx -------------------------------------------------------------------------------- /src/components/password/UpdatePasswordSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/password/UpdatePasswordSchemas.ts -------------------------------------------------------------------------------- /src/components/pipeline-snapshots/create/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/pipeline-snapshots/create/form.tsx -------------------------------------------------------------------------------- /src/components/pipeline-snapshots/delete-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/pipeline-snapshots/delete-alert.tsx -------------------------------------------------------------------------------- /src/components/pipeline-snapshots/list/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/pipeline-snapshots/list/table.tsx -------------------------------------------------------------------------------- /src/components/pipeline-snapshots/list/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/pipeline-snapshots/list/toolbar.tsx -------------------------------------------------------------------------------- /src/components/pipeline-snapshots/snapshot-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/pipeline-snapshots/snapshot-link.tsx -------------------------------------------------------------------------------- /src/components/pipeline-snapshots/table-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/pipeline-snapshots/table-actions.tsx -------------------------------------------------------------------------------- /src/components/pipelines/pipeline-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/pipelines/pipeline-link.tsx -------------------------------------------------------------------------------- /src/components/pro/ProCta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/pro/ProCta.tsx -------------------------------------------------------------------------------- /src/components/repositories/RepoBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/repositories/RepoBadge.tsx -------------------------------------------------------------------------------- /src/components/runs/auth-required.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/auth-required.tsx -------------------------------------------------------------------------------- /src/components/runs/detail-tabs/LogTab/boundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/detail-tabs/LogTab/boundary.tsx -------------------------------------------------------------------------------- /src/components/runs/detail-tabs/LogTab/combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/detail-tabs/LogTab/combobox.tsx -------------------------------------------------------------------------------- /src/components/runs/detail-tabs/LogTab/logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/detail-tabs/LogTab/logs.tsx -------------------------------------------------------------------------------- /src/components/runs/detail-tabs/Metadata/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/detail-tabs/Metadata/index.tsx -------------------------------------------------------------------------------- /src/components/runs/detail-tabs/Overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/detail-tabs/Overview/index.tsx -------------------------------------------------------------------------------- /src/components/runs/detail-tabs/Stack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/detail-tabs/Stack/index.tsx -------------------------------------------------------------------------------- /src/components/runs/detail-tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/detail-tabs/index.tsx -------------------------------------------------------------------------------- /src/components/runs/detail-tabs/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/detail-tabs/service.ts -------------------------------------------------------------------------------- /src/components/runs/refresh-group/deep-refresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/refresh-group/deep-refresh.ts -------------------------------------------------------------------------------- /src/components/runs/refresh-group/dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/refresh-group/dropdown.tsx -------------------------------------------------------------------------------- /src/components/runs/refresh-group/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/refresh-group/index.tsx -------------------------------------------------------------------------------- /src/components/runs/run-sheet/headline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/run-sheet/headline.tsx -------------------------------------------------------------------------------- /src/components/runs/run-sheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/run-sheet/index.tsx -------------------------------------------------------------------------------- /src/components/runs/stop-group/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/stop-group/index.tsx -------------------------------------------------------------------------------- /src/components/runs/stop-group/stop-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/stop-group/stop-alert.tsx -------------------------------------------------------------------------------- /src/components/runs/stop-group/stop-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/stop-group/stop-button.tsx -------------------------------------------------------------------------------- /src/components/runs/stop-group/stop-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/stop-group/stop-dropdown.tsx -------------------------------------------------------------------------------- /src/components/runs/stop-group/use-stop-run.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/runs/stop-group/use-stop-run.tsx -------------------------------------------------------------------------------- /src/components/sensitive-value.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/sensitive-value.tsx -------------------------------------------------------------------------------- /src/components/service-connectors/connector-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/service-connectors/connector-tag.tsx -------------------------------------------------------------------------------- /src/components/service-connectors/expiry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/service-connectors/expiry.tsx -------------------------------------------------------------------------------- /src/components/sheet/SheetHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/sheet/SheetHeader.tsx -------------------------------------------------------------------------------- /src/components/sheet/resizable-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/sheet/resizable-sheet.tsx -------------------------------------------------------------------------------- /src/components/stack-components/ComponentBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/stack-components/ComponentBadge.tsx -------------------------------------------------------------------------------- /src/components/stacks/Sheet/IntegrationsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/stacks/Sheet/IntegrationsContext.tsx -------------------------------------------------------------------------------- /src/components/stacks/Sheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/stacks/Sheet/index.tsx -------------------------------------------------------------------------------- /src/components/stacks/info/sort-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/stacks/info/sort-component.ts -------------------------------------------------------------------------------- /src/components/stacks/info/stack-info-full.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/stacks/info/stack-info-full.tsx -------------------------------------------------------------------------------- /src/components/stacks/update-stack-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/stacks/update-stack-dialog.tsx -------------------------------------------------------------------------------- /src/components/steps/step-sheet/CodeTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/steps/step-sheet/CodeTab.tsx -------------------------------------------------------------------------------- /src/components/steps/step-sheet/DetailsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/steps/step-sheet/DetailsTab.tsx -------------------------------------------------------------------------------- /src/components/steps/step-sheet/LogsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/steps/step-sheet/LogsTab.tsx -------------------------------------------------------------------------------- /src/components/steps/step-sheet/MetadataTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/steps/step-sheet/MetadataTab.tsx -------------------------------------------------------------------------------- /src/components/steps/step-sheet/SheetContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/steps/step-sheet/SheetContent.tsx -------------------------------------------------------------------------------- /src/components/steps/step-sheet/StacksTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/steps/step-sheet/StacksTab.tsx -------------------------------------------------------------------------------- /src/components/steps/step-sheet/sheet-headline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/steps/step-sheet/sheet-headline.tsx -------------------------------------------------------------------------------- /src/components/survey/AccountDetailsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/survey/AccountDetailsForm.tsx -------------------------------------------------------------------------------- /src/components/survey/ServerName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/survey/ServerName.tsx -------------------------------------------------------------------------------- /src/components/survey/SetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/survey/SetPassword.tsx -------------------------------------------------------------------------------- /src/components/survey/SlackStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/survey/SlackStep.tsx -------------------------------------------------------------------------------- /src/components/survey/StepDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/survey/StepDisplay.tsx -------------------------------------------------------------------------------- /src/components/survey/SuccessStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/survey/SuccessStep.tsx -------------------------------------------------------------------------------- /src/components/survey/SurveyContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/survey/SurveyContext.tsx -------------------------------------------------------------------------------- /src/components/survey/ai-challenge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/survey/ai-challenge.tsx -------------------------------------------------------------------------------- /src/components/survey/form-schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/survey/form-schemas.ts -------------------------------------------------------------------------------- /src/components/survey/primary-role.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/survey/primary-role.tsx -------------------------------------------------------------------------------- /src/components/tab-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/tab-icon.tsx -------------------------------------------------------------------------------- /src/components/tables/action-cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/tables/action-cell.tsx -------------------------------------------------------------------------------- /src/components/tables/helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/tables/helper.tsx -------------------------------------------------------------------------------- /src/components/tabs/scrolling-tabs-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/tabs/scrolling-tabs-list.tsx -------------------------------------------------------------------------------- /src/components/tour/StartTourDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/tour/StartTourDialog.tsx -------------------------------------------------------------------------------- /src/components/tour/Tour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/tour/Tour.tsx -------------------------------------------------------------------------------- /src/components/tour/TourContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/tour/TourContext.tsx -------------------------------------------------------------------------------- /src/components/triggers/schedule-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/triggers/schedule-tag.tsx -------------------------------------------------------------------------------- /src/components/wizard/LeftSideMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/wizard/LeftSideMenu.tsx -------------------------------------------------------------------------------- /src/components/wizard/Wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/components/wizard/Wizard.tsx -------------------------------------------------------------------------------- /src/contents/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/contents/components.tsx -------------------------------------------------------------------------------- /src/contents/repositories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/contents/repositories.ts -------------------------------------------------------------------------------- /src/contents/secrets.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/contents/stack.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/context/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/context/AuthContext.tsx -------------------------------------------------------------------------------- /src/context/SchemaContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/context/SchemaContext.tsx -------------------------------------------------------------------------------- /src/context/VisualizationConfirmationContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/context/VisualizationConfirmationContext.tsx -------------------------------------------------------------------------------- /src/context/WizardContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/context/WizardContext.tsx -------------------------------------------------------------------------------- /src/data/analytics/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/analytics/event.ts -------------------------------------------------------------------------------- /src/data/announcements/announcements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/announcements/announcements.ts -------------------------------------------------------------------------------- /src/data/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/api.ts -------------------------------------------------------------------------------- /src/data/auth/create-api-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/auth/create-api-token.ts -------------------------------------------------------------------------------- /src/data/components/component-detail-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/components/component-detail-query.ts -------------------------------------------------------------------------------- /src/data/components/components-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/components/components-list.ts -------------------------------------------------------------------------------- /src/data/components/create-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/components/create-component.ts -------------------------------------------------------------------------------- /src/data/components/delete-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/components/delete-component.ts -------------------------------------------------------------------------------- /src/data/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/components/index.ts -------------------------------------------------------------------------------- /src/data/components/update-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/components/update-component.ts -------------------------------------------------------------------------------- /src/data/deployment-invocations/invoke-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/deployment-invocations/invoke-client.ts -------------------------------------------------------------------------------- /src/data/deployment-invocations/invoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/deployment-invocations/invoke.ts -------------------------------------------------------------------------------- /src/data/deployments/fetch-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/deployments/fetch-detail.ts -------------------------------------------------------------------------------- /src/data/deployments/fetch-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/deployments/fetch-list.ts -------------------------------------------------------------------------------- /src/data/deployments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/deployments/index.ts -------------------------------------------------------------------------------- /src/data/devices/device-detail-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/devices/device-detail-query.ts -------------------------------------------------------------------------------- /src/data/devices/device-verify-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/devices/device-verify-mutation.ts -------------------------------------------------------------------------------- /src/data/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/fetch.ts -------------------------------------------------------------------------------- /src/data/flavors/flavor-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/flavors/flavor-detail.ts -------------------------------------------------------------------------------- /src/data/flavors/flavors-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/flavors/flavors-list.ts -------------------------------------------------------------------------------- /src/data/flavors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/flavors/index.ts -------------------------------------------------------------------------------- /src/data/github/pipeline-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/github/pipeline-content.ts -------------------------------------------------------------------------------- /src/data/github/pipeline-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/github/pipeline-summary.ts -------------------------------------------------------------------------------- /src/data/github/pipelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/github/pipelines.ts -------------------------------------------------------------------------------- /src/data/pipeline-runs/all-pipeline-runs-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipeline-runs/all-pipeline-runs-query.ts -------------------------------------------------------------------------------- /src/data/pipeline-runs/delete-run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipeline-runs/delete-run.ts -------------------------------------------------------------------------------- /src/data/pipeline-runs/pipeline-run-detail-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipeline-runs/pipeline-run-detail-query.ts -------------------------------------------------------------------------------- /src/data/pipeline-runs/refresh-run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipeline-runs/refresh-run.ts -------------------------------------------------------------------------------- /src/data/pipeline-runs/run-dag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipeline-runs/run-dag.ts -------------------------------------------------------------------------------- /src/data/pipeline-runs/run-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipeline-runs/run-logs.ts -------------------------------------------------------------------------------- /src/data/pipeline-runs/stop-run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipeline-runs/stop-run.ts -------------------------------------------------------------------------------- /src/data/pipeline-snapshots/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipeline-snapshots/index.ts -------------------------------------------------------------------------------- /src/data/pipeline-snapshots/list-snapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipeline-snapshots/list-snapshots.ts -------------------------------------------------------------------------------- /src/data/pipeline-snapshots/update-snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipeline-snapshots/update-snapshot.ts -------------------------------------------------------------------------------- /src/data/pipelines/delete-pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipelines/delete-pipeline.ts -------------------------------------------------------------------------------- /src/data/pipelines/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipelines/index.ts -------------------------------------------------------------------------------- /src/data/pipelines/pipeline-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipelines/pipeline-detail.ts -------------------------------------------------------------------------------- /src/data/pipelines/pipeline-list-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/pipelines/pipeline-list-query.ts -------------------------------------------------------------------------------- /src/data/projects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/projects/index.ts -------------------------------------------------------------------------------- /src/data/projects/project-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/projects/project-detail.ts -------------------------------------------------------------------------------- /src/data/projects/project-statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/projects/project-statistics.ts -------------------------------------------------------------------------------- /src/data/secrets/create-secret-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/secrets/create-secret-query.ts -------------------------------------------------------------------------------- /src/data/secrets/delete-secret-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/secrets/delete-secret-query.ts -------------------------------------------------------------------------------- /src/data/secrets/get-secret-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/secrets/get-secret-detail.ts -------------------------------------------------------------------------------- /src/data/secrets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/secrets/index.ts -------------------------------------------------------------------------------- /src/data/secrets/secrets-all-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/secrets/secrets-all-query.ts -------------------------------------------------------------------------------- /src/data/secrets/update-secret-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/secrets/update-secret-query.ts -------------------------------------------------------------------------------- /src/data/server/activate-server-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/server/activate-server-mutation.ts -------------------------------------------------------------------------------- /src/data/server/get-server-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/server/get-server-settings.ts -------------------------------------------------------------------------------- /src/data/server/info-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/server/info-query.ts -------------------------------------------------------------------------------- /src/data/server/onboarding-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/server/onboarding-state.ts -------------------------------------------------------------------------------- /src/data/server/update-server-settings-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/server/update-server-settings-mutation.ts -------------------------------------------------------------------------------- /src/data/service-accounts/create-api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/create-api-key.ts -------------------------------------------------------------------------------- /src/data/service-accounts/create-service-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/create-service-account.ts -------------------------------------------------------------------------------- /src/data/service-accounts/delete-api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/delete-api-key.ts -------------------------------------------------------------------------------- /src/data/service-accounts/delete-service-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/delete-service-account.ts -------------------------------------------------------------------------------- /src/data/service-accounts/get-api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/get-api-key.ts -------------------------------------------------------------------------------- /src/data/service-accounts/get-service-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/get-service-account.ts -------------------------------------------------------------------------------- /src/data/service-accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/index.ts -------------------------------------------------------------------------------- /src/data/service-accounts/list-api-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/list-api-keys.ts -------------------------------------------------------------------------------- /src/data/service-accounts/list-service-accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/list-service-accounts.ts -------------------------------------------------------------------------------- /src/data/service-accounts/rotate-api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/rotate-api-key.ts -------------------------------------------------------------------------------- /src/data/service-accounts/update-api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/update-api-key.ts -------------------------------------------------------------------------------- /src/data/service-accounts/update-service-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-accounts/update-service-account.ts -------------------------------------------------------------------------------- /src/data/service-connectors/connector-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-connectors/connector-detail.ts -------------------------------------------------------------------------------- /src/data/service-connectors/connector-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-connectors/connector-list.ts -------------------------------------------------------------------------------- /src/data/service-connectors/connector-type-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-connectors/connector-type-list.ts -------------------------------------------------------------------------------- /src/data/service-connectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-connectors/index.ts -------------------------------------------------------------------------------- /src/data/service-connectors/resources-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-connectors/resources-info.ts -------------------------------------------------------------------------------- /src/data/service-connectors/verify-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/service-connectors/verify-config.ts -------------------------------------------------------------------------------- /src/data/session/login-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/session/login-mutation.ts -------------------------------------------------------------------------------- /src/data/session/logout-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/session/logout-mutation.ts -------------------------------------------------------------------------------- /src/data/stacks/create-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/stacks/create-stack.ts -------------------------------------------------------------------------------- /src/data/stacks/delete-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/stacks/delete-stack.ts -------------------------------------------------------------------------------- /src/data/stacks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/stacks/index.ts -------------------------------------------------------------------------------- /src/data/stacks/stack-deployment-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/stacks/stack-deployment-config.ts -------------------------------------------------------------------------------- /src/data/stacks/stack-deployment-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/stacks/stack-deployment-info.ts -------------------------------------------------------------------------------- /src/data/stacks/stack-deployment-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/stacks/stack-deployment-stack.ts -------------------------------------------------------------------------------- /src/data/stacks/stack-detail-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/stacks/stack-detail-query.ts -------------------------------------------------------------------------------- /src/data/stacks/stacklist-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/stacks/stacklist-query.ts -------------------------------------------------------------------------------- /src/data/steps/step-detail-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/steps/step-detail-query.ts -------------------------------------------------------------------------------- /src/data/steps/step-logs-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/steps/step-logs-query.ts -------------------------------------------------------------------------------- /src/data/users/activate-user-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/users/activate-user-mutation.ts -------------------------------------------------------------------------------- /src/data/users/create-user-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/users/create-user-mutation.ts -------------------------------------------------------------------------------- /src/data/users/current-user-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/users/current-user-query.ts -------------------------------------------------------------------------------- /src/data/users/delete-user-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/users/delete-user-mutation.ts -------------------------------------------------------------------------------- /src/data/users/update-current-user-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/users/update-current-user-mutation.ts -------------------------------------------------------------------------------- /src/data/users/users-all-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/data/users/users-all-query.ts -------------------------------------------------------------------------------- /src/error-boundaries/PageBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/error-boundaries/PageBoundary.tsx -------------------------------------------------------------------------------- /src/error-boundaries/RootBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/error-boundaries/RootBoundary.tsx -------------------------------------------------------------------------------- /src/hooks/use-route-segment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/hooks/use-route-segment.tsx -------------------------------------------------------------------------------- /src/hooks/usePageTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/hooks/usePageTitle.ts -------------------------------------------------------------------------------- /src/layouts/AuthenticatedLayout/LocalBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/AuthenticatedLayout/LocalBanner.tsx -------------------------------------------------------------------------------- /src/layouts/AuthenticatedLayout/UserDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/AuthenticatedLayout/UserDropdown.tsx -------------------------------------------------------------------------------- /src/layouts/AuthenticatedLayout/back-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/AuthenticatedLayout/back-button.tsx -------------------------------------------------------------------------------- /src/layouts/AuthenticatedLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/AuthenticatedLayout/index.tsx -------------------------------------------------------------------------------- /src/layouts/AuthenticatedLayout/use-announcement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/AuthenticatedLayout/use-announcement.ts -------------------------------------------------------------------------------- /src/layouts/GradientLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/GradientLayout.tsx -------------------------------------------------------------------------------- /src/layouts/RootLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/RootLayout.tsx -------------------------------------------------------------------------------- /src/layouts/connectors-detail/breadcrumbs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/connectors-detail/breadcrumbs.ts -------------------------------------------------------------------------------- /src/layouts/connectors-detail/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/connectors-detail/header.tsx -------------------------------------------------------------------------------- /src/layouts/connectors-detail/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/connectors-detail/layout.tsx -------------------------------------------------------------------------------- /src/layouts/connectors-detail/resources-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/connectors-detail/resources-context.tsx -------------------------------------------------------------------------------- /src/layouts/connectors-detail/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/connectors-detail/tabs.tsx -------------------------------------------------------------------------------- /src/layouts/non-project-scoped/dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/non-project-scoped/dropdown.tsx -------------------------------------------------------------------------------- /src/layouts/non-project-scoped/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/non-project-scoped/header.tsx -------------------------------------------------------------------------------- /src/layouts/non-project-scoped/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/non-project-scoped/layout.tsx -------------------------------------------------------------------------------- /src/layouts/non-project-scoped/name-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/non-project-scoped/name-section.tsx -------------------------------------------------------------------------------- /src/layouts/non-project-scoped/server-members.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/non-project-scoped/server-members.tsx -------------------------------------------------------------------------------- /src/layouts/non-project-scoped/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/non-project-scoped/tabs.tsx -------------------------------------------------------------------------------- /src/layouts/project-tabs/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/project-tabs/header.tsx -------------------------------------------------------------------------------- /src/layouts/project-tabs/id-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/project-tabs/id-section.tsx -------------------------------------------------------------------------------- /src/layouts/project-tabs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/project-tabs/layout.tsx -------------------------------------------------------------------------------- /src/layouts/project-tabs/name-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/project-tabs/name-section.tsx -------------------------------------------------------------------------------- /src/layouts/project-tabs/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/project-tabs/tabs.tsx -------------------------------------------------------------------------------- /src/layouts/settings/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/settings/Menu.tsx -------------------------------------------------------------------------------- /src/layouts/settings/project-settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/settings/project-settings/layout.tsx -------------------------------------------------------------------------------- /src/layouts/settings/settings-layout/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/layouts/settings/settings-layout/layout.tsx -------------------------------------------------------------------------------- /src/lib/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/analytics.ts -------------------------------------------------------------------------------- /src/lib/bulk-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/bulk-delete.tsx -------------------------------------------------------------------------------- /src/lib/code-snippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/code-snippets.ts -------------------------------------------------------------------------------- /src/lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/common.ts -------------------------------------------------------------------------------- /src/lib/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/components.ts -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/constants.ts -------------------------------------------------------------------------------- /src/lib/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/copy.ts -------------------------------------------------------------------------------- /src/lib/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/dates.ts -------------------------------------------------------------------------------- /src/lib/deployments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/deployments.ts -------------------------------------------------------------------------------- /src/lib/environment.ts: -------------------------------------------------------------------------------- 1 | export const IS_SAFARI = /^((?!chrome|android).)*safari/i.test(navigator.userAgent); 2 | -------------------------------------------------------------------------------- /src/lib/fetch-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/fetch-error.ts -------------------------------------------------------------------------------- /src/lib/forms.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/forms.spec.ts -------------------------------------------------------------------------------- /src/lib/forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/forms.ts -------------------------------------------------------------------------------- /src/lib/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/images.ts -------------------------------------------------------------------------------- /src/lib/json-faker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/json-faker.ts -------------------------------------------------------------------------------- /src/lib/login-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/login-command.ts -------------------------------------------------------------------------------- /src/lib/logs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/logs.spec.ts -------------------------------------------------------------------------------- /src/lib/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/logs.ts -------------------------------------------------------------------------------- /src/lib/monaco-editor/github-light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/monaco-editor/github-light.ts -------------------------------------------------------------------------------- /src/lib/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/name.ts -------------------------------------------------------------------------------- /src/lib/not-found-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/not-found-error.ts -------------------------------------------------------------------------------- /src/lib/onboarding.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/onboarding.spec.ts -------------------------------------------------------------------------------- /src/lib/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/onboarding.ts -------------------------------------------------------------------------------- /src/lib/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/provider.ts -------------------------------------------------------------------------------- /src/lib/search.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/search.spec.ts -------------------------------------------------------------------------------- /src/lib/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/search.ts -------------------------------------------------------------------------------- /src/lib/server.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/server.spec.ts -------------------------------------------------------------------------------- /src/lib/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/server.ts -------------------------------------------------------------------------------- /src/lib/service-connectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/service-connectors.ts -------------------------------------------------------------------------------- /src/lib/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/sessions.ts -------------------------------------------------------------------------------- /src/lib/stacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/stacks.ts -------------------------------------------------------------------------------- /src/lib/strings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/strings.spec.ts -------------------------------------------------------------------------------- /src/lib/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/strings.ts -------------------------------------------------------------------------------- /src/lib/timeline/calculate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/timeline/calculate.spec.ts -------------------------------------------------------------------------------- /src/lib/timeline/calculate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/timeline/calculate.ts -------------------------------------------------------------------------------- /src/lib/timeline/mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/timeline/mapping.ts -------------------------------------------------------------------------------- /src/lib/timeline/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/timeline/types.ts -------------------------------------------------------------------------------- /src/lib/type-guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/type-guards.ts -------------------------------------------------------------------------------- /src/lib/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/url.ts -------------------------------------------------------------------------------- /src/lib/user.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/user.spec.ts -------------------------------------------------------------------------------- /src/lib/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/lib/user.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/monaco-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/monaco-setup.ts -------------------------------------------------------------------------------- /src/router/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/router/ProtectedRoute.tsx -------------------------------------------------------------------------------- /src/router/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/router/Router.tsx -------------------------------------------------------------------------------- /src/router/loaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/router/loaders.ts -------------------------------------------------------------------------------- /src/router/queryclient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/router/queryclient.ts -------------------------------------------------------------------------------- /src/router/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/router/routes.tsx -------------------------------------------------------------------------------- /src/types/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/types/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/analytics.ts -------------------------------------------------------------------------------- /src/types/announcements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/announcements.ts -------------------------------------------------------------------------------- /src/types/artifact-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/artifact-versions.ts -------------------------------------------------------------------------------- /src/types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/auth.ts -------------------------------------------------------------------------------- /src/types/code-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/code-repository.ts -------------------------------------------------------------------------------- /src/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/common.ts -------------------------------------------------------------------------------- /src/types/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/components.ts -------------------------------------------------------------------------------- /src/types/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/core.ts -------------------------------------------------------------------------------- /src/types/dag-visualizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/dag-visualizer.ts -------------------------------------------------------------------------------- /src/types/deployment-invocations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/deployment-invocations.ts -------------------------------------------------------------------------------- /src/types/deployments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/deployments.ts -------------------------------------------------------------------------------- /src/types/devices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/devices.ts -------------------------------------------------------------------------------- /src/types/flavors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/flavors.ts -------------------------------------------------------------------------------- /src/types/forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/forms.ts -------------------------------------------------------------------------------- /src/types/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/logs.ts -------------------------------------------------------------------------------- /src/types/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/onboarding.ts -------------------------------------------------------------------------------- /src/types/pipeline-builds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/pipeline-builds.ts -------------------------------------------------------------------------------- /src/types/pipeline-deployments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/pipeline-deployments.ts -------------------------------------------------------------------------------- /src/types/pipeline-runs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/pipeline-runs.ts -------------------------------------------------------------------------------- /src/types/pipeline-snapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/pipeline-snapshots.ts -------------------------------------------------------------------------------- /src/types/pipelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/pipelines.ts -------------------------------------------------------------------------------- /src/types/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/projects.ts -------------------------------------------------------------------------------- /src/types/reodotdev.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/reodotdev.d.ts -------------------------------------------------------------------------------- /src/types/secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/secret.ts -------------------------------------------------------------------------------- /src/types/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/server.ts -------------------------------------------------------------------------------- /src/types/service-accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/service-accounts.ts -------------------------------------------------------------------------------- /src/types/service-connectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/service-connectors.ts -------------------------------------------------------------------------------- /src/types/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/session.ts -------------------------------------------------------------------------------- /src/types/stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/stack.ts -------------------------------------------------------------------------------- /src/types/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/steps.ts -------------------------------------------------------------------------------- /src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/types/user.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenml-io/zenml-dashboard/HEAD/vite.config.ts --------------------------------------------------------------------------------