create-interview-cockpit 0.27.0 → 0.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template/client/src/codeowners.ts +792 -0
- package/template/client/src/components/CodeContextPanel.tsx +44 -0
- package/template/client/src/components/DiagramsModal.tsx +839 -0
- package/template/client/src/components/GithubActionsLabModal.tsx +291 -264
- package/template/client/src/components/LabsPanel.tsx +3 -3
- package/template/client/src/components/PullRequestPanel.tsx +1142 -0
- package/template/client/src/components/SettingsPanel.tsx +1395 -0
- package/template/client/src/githubActionsLab.ts +461 -3
- package/template/client/src/types.ts +219 -0
- package/template/client/tsconfig.tsbuildinfo +1 -1
- package/template/cockpit.json +1 -1
- package/template/server/src/gha-runner.ts +1 -1
|
@@ -678,11 +678,11 @@ export default function LabsPanel() {
|
|
|
678
678
|
bgClass="bg-cyan-500/10 border border-cyan-500/20"
|
|
679
679
|
/>
|
|
680
680
|
<Section
|
|
681
|
-
title="GitHub
|
|
681
|
+
title="GitHub"
|
|
682
682
|
icon={GitBranch}
|
|
683
683
|
iconColor="text-amber-400/70"
|
|
684
684
|
origin="github-actions"
|
|
685
|
-
emptyText="Save a GitHub
|
|
685
|
+
emptyText="Save a GitHub lab to reopen it here"
|
|
686
686
|
newLabMenu={[
|
|
687
687
|
{
|
|
688
688
|
label: "React Vite TypeScript Starter",
|
|
@@ -698,7 +698,7 @@ export default function LabsPanel() {
|
|
|
698
698
|
},
|
|
699
699
|
]}
|
|
700
700
|
onOpen={openGhaFile}
|
|
701
|
-
openTitle="Open in GitHub
|
|
701
|
+
openTitle="Open in GitHub Lab"
|
|
702
702
|
accentClass="text-amber-200"
|
|
703
703
|
bgClass="bg-amber-500/10 border border-amber-500/20"
|
|
704
704
|
/>
|