-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add frameworks to onboarding part 2 (#21091)
* astro * add bubble * framer * laravel * nuxt * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * add remix * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * Update frontend/src/scenes/onboarding/sdks/feature-flags/angular.tsx * feat: Add frameworks to onboarding part 3 (#21158) * svelte * missing export * export * webflow * vue * django * flag code --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Raquel Smith <[email protected]>
- Loading branch information
1 parent
c3d261b
commit 53f5e53
Showing
59 changed files
with
1,207 additions
and
80 deletions.
There are no files selected for viewing
Binary file modified
BIN
+6.55 KB
(110%)
frontend/__snapshots__/scenes-other-onboarding--onboarding-sd-ks--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+6.53 KB
(110%)
frontend/__snapshots__/scenes-other-onboarding--onboarding-sd-ks--light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
13 changes: 13 additions & 0 deletions
13
frontend/src/scenes/onboarding/sdks/feature-flags/astro.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { SDKKey } from '~/types' | ||
|
||
import { SDKInstallAstroInstructions } from '../sdk-install-instructions/astro' | ||
import { FlagImplementationSnippet } from './flagImplementationSnippet' | ||
|
||
export function FeatureFlagsAstroInstructions(): JSX.Element { | ||
return ( | ||
<> | ||
<SDKInstallAstroInstructions /> | ||
<FlagImplementationSnippet sdkKey={SDKKey.JS_WEB} /> | ||
</> | ||
) | ||
} |
13 changes: 13 additions & 0 deletions
13
frontend/src/scenes/onboarding/sdks/feature-flags/bubble.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { SDKKey } from '~/types' | ||
|
||
import { SDKInstallBubbleInstructions } from '../sdk-install-instructions/bubble' | ||
import { FlagImplementationSnippet } from './flagImplementationSnippet' | ||
|
||
export function FeatureFlagsBubbleInstructions(): JSX.Element { | ||
return ( | ||
<> | ||
<SDKInstallBubbleInstructions /> | ||
<FlagImplementationSnippet sdkKey={SDKKey.JS_WEB} /> | ||
</> | ||
) | ||
} |
13 changes: 13 additions & 0 deletions
13
frontend/src/scenes/onboarding/sdks/feature-flags/django.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { SDKKey } from '~/types' | ||
|
||
import { SDKInstallDjangoInstructions } from '../sdk-install-instructions' | ||
import { FlagImplementationSnippet } from './flagImplementationSnippet' | ||
|
||
export function FeatureFlagsDjangoInstructions(): JSX.Element { | ||
return ( | ||
<> | ||
<SDKInstallDjangoInstructions /> | ||
<FlagImplementationSnippet sdkKey={SDKKey.PYTHON} /> | ||
</> | ||
) | ||
} |
13 changes: 13 additions & 0 deletions
13
frontend/src/scenes/onboarding/sdks/feature-flags/framer.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { SDKKey } from '~/types' | ||
|
||
import { SDKInstallFramerInstructions } from '../sdk-install-instructions/framer' | ||
import { FlagImplementationSnippet } from './flagImplementationSnippet' | ||
|
||
export function FeatureFlagsFramerInstructions(): JSX.Element { | ||
return ( | ||
<> | ||
<SDKInstallFramerInstructions /> | ||
<FlagImplementationSnippet sdkKey={SDKKey.JS_WEB} /> | ||
</> | ||
) | ||
} |
Oops, something went wrong.