forked from superset-sh/superset
-
Notifications
You must be signed in to change notification settings - Fork 1
upstream 取り込み PR #2: v2 UI 小粒 / marketing / 9 commits #398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
e762999
fix(desktop): trigger macOS Local Network permission on startup (#3551)
Kitenite 0b7e88f
feat(desktop): restore Tasks link in v2 dashboard sidebar (#3553)
saddlepaddle c7b24e4
fix(desktop): dedupe DevicePicker in new-workspace modal and match Pr…
Kitenite 633d65f
fix(desktop): wire v2 sidebar project settings to settings route (#3592)
Kitenite ad36775
fix(desktop): wrap and truncate long workspace names in v1 hover card…
AviPeltz aa468ed
fix(desktop): spread dev dock-icon colors across full hue range (#3622)
Kitenite 2849a16
fix(desktop): make v2 new-workspace project dropdown scrollable (#3628)
Kitenite 6d2082d
polish(marketing): hero font, pixel-dithered demos, testimonials, CTA…
Kitenite e89630f
feat(marketing): add /pricing page and redesign header/footer IA (#3639)
saddlepaddle 4f991f4
fix(desktop): drop upstream needsSetup warning not available in fork
MocA-Love File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
37 changes: 37 additions & 0 deletions
37
...aturesSection/components/FeatureDemo/components/DitheredBackground/DitheredBackground.tsx
This file contains hidden or 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,37 @@ | ||
| "use client"; | ||
|
|
||
| import { lazy, Suspense } from "react"; | ||
|
|
||
| const Dithering = lazy(() => | ||
| import("@paper-design/shaders-react").then((mod) => ({ | ||
| default: mod.Dithering, | ||
| })), | ||
| ); | ||
|
|
||
| interface DitheredBackgroundProps { | ||
| colors: readonly [string, string, string, string]; | ||
| className?: string; | ||
| } | ||
|
|
||
| export function DitheredBackground({ | ||
| colors, | ||
| className = "", | ||
| }: DitheredBackgroundProps) { | ||
| return ( | ||
| <div | ||
| className={`${className} pointer-events-none opacity-30 mix-blend-screen`} | ||
| > | ||
| <Suspense fallback={null}> | ||
| <Dithering | ||
| colorBack="#00000000" | ||
| colorFront={colors[0]} | ||
| shape="warp" | ||
| type="4x4" | ||
| speed={0.15} | ||
| className="size-full" | ||
| minPixelRatio={1} | ||
| /> | ||
| </Suspense> | ||
| </div> | ||
| ); | ||
| } |
1 change: 1 addition & 0 deletions
1
.../components/FeaturesSection/components/FeatureDemo/components/DitheredBackground/index.ts
This file contains hidden or 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 @@ | ||
| export { DitheredBackground } from "./DitheredBackground"; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.