-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update-setup-install-button
- Loading branch information
Showing
26 changed files
with
585 additions
and
544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
25 changes: 14 additions & 11 deletions
25
webview/src/setup/components/experiments/DvcLiveExamples.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@import '../../../shared/variables'; | ||
|
||
.codeSlider { | ||
.dvcLiveExamples { | ||
margin-top: 40px; | ||
|
||
vscode-panels { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import React from 'react' | ||
import { StorageSlider } from './StorageSlider' | ||
import { SupportedStorage } from './SupportedStorage' | ||
import { EmptyState } from '../../../shared/components/emptyState/EmptyState' | ||
import { FocusDvcSection } from '../shared/FocusDvcSection' | ||
|
||
export const DvcUninitialized: React.FC<{}> = () => ( | ||
<EmptyState isFullScreen={false}> | ||
<h1>DVC is not initialized</h1> | ||
<FocusDvcSection /> | ||
<StorageSlider /> | ||
<SupportedStorage /> | ||
</EmptyState> | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import React from 'react' | ||
import styles from './styles.module.scss' | ||
import { Icon } from '../../../shared/components/Icon' | ||
import { Extensions } from '../../../shared/components/icons' | ||
|
||
export const ShowExtension: React.FC<{ id: string; name: string }> = ({ | ||
id, | ||
name | ||
}) => { | ||
const idQuery = `"@id:${id}"` | ||
|
||
return ( | ||
<p> | ||
<Icon | ||
icon={Extensions} | ||
width={16} | ||
height={16} | ||
className={styles.infoIcon} | ||
/>{' '} | ||
View the{' '} | ||
<a | ||
href={`command:workbench.extensions.search?${encodeURIComponent( | ||
idQuery | ||
)}`} | ||
> | ||
{name} | ||
</a>{' '} | ||
extension. | ||
</p> | ||
) | ||
} |
Oops, something went wrong.