-
-
Notifications
You must be signed in to change notification settings - Fork 32.6k
[website] Implement the latest price changes proposal #47606
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
DanailH
merged 14 commits into
mui:master
from
DanailH:website/implement-pricing-changes
Feb 20, 2026
Merged
Changes from 12 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
c4cf8c4
Implement latest price changes proposal
DanailH 7114b11
remove unneeded file
DanailH 5a73866
Merge branch 'master' into website/implement-pricing-changes
DanailH ff9bbea
Update docs/src/components/pricing/PricingCards.tsx
DanailH 6b52b2a
Update docs/src/components/pricing/PricingCards.tsx
DanailH 299b94a
Update docs/src/components/pricing/PricingTable.tsx
DanailH d34db77
Update docs/src/components/pricing/PricingTable.tsx
DanailH 8e82348
Update docs/src/components/pricing/PricingCards.tsx
DanailH b8cc84a
fix linting and adress PR comments
DanailH a4e5c42
Merge branch 'master' of https://github.com/mui/material-ui into webs…
DanailH 1b73ea6
update switch and use provider correctly
noraleonte b51a9d5
fix inconsistencies and mobile view
noraleonte 46cf574
PR review
DanailH fe62ff2
more PR comments
DanailH 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| import * as React from 'react'; | ||
|
|
||
| const MultiApp = React.createContext<{ | ||
| multiApp: boolean; | ||
| setMultiApp: React.Dispatch<React.SetStateAction<boolean>>; | ||
| }>(undefined as any); | ||
|
|
||
| if (process.env.NODE_ENV !== 'production') { | ||
| MultiApp.displayName = 'MultiApp'; | ||
| } | ||
|
|
||
| export function MultiAppProvider(props: any) { | ||
| const [multiApp, setMultiApp] = React.useState<boolean>(false); | ||
| const value = React.useMemo(() => ({ multiApp, setMultiApp }), [multiApp, setMultiApp]); | ||
| return <MultiApp.Provider value={value}>{props.children}</MultiApp.Provider>; | ||
| } | ||
|
|
||
| export function useMultiApp() { | ||
| return React.useContext(MultiApp); | ||
| } |
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
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.