mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 00:20:04 +01:00
Turn on enableRenderableContext in experimental (#28645)
Let's get this into experimental to get more usage and allow other renderers to test against the changes easier.
This commit is contained in:
parent
0a44435674
commit
738993da0b
|
|
@ -116,8 +116,6 @@ export const passChildrenWhenCloningPersistedNodes = false;
|
|||
|
||||
export const enableUseDeferredValueInitialArg = __EXPERIMENTAL__;
|
||||
|
||||
export const enableRenderableContext = false;
|
||||
|
||||
export const enableServerComponentLogs = __EXPERIMENTAL__;
|
||||
|
||||
/**
|
||||
|
|
@ -202,6 +200,9 @@ export const disableLegacyMode = __NEXT_MAJOR__;
|
|||
// result in false property i.e. break existing usage.
|
||||
export const enableNewBooleanProps = __NEXT_MAJOR__;
|
||||
|
||||
// Make <Context> equivalent to <Context.Provider> instead of <Context.Consumer>
|
||||
export const enableRenderableContext = __NEXT_MAJOR__;
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// Chopping Block
|
||||
//
|
||||
|
|
|
|||
|
|
@ -44,7 +44,6 @@ export const enableComponentStackLocations = true;
|
|||
export const enableLegacyFBSupport = false;
|
||||
export const enableFilterEmptyStringAttributesDOM = true;
|
||||
export const enableGetInspectorDataForInstanceInProduction = false;
|
||||
export const enableRenderableContext = false;
|
||||
|
||||
export const enableRetryLaneExpiration = false;
|
||||
export const retryLaneExpirationMs = 5000;
|
||||
|
|
@ -97,6 +96,7 @@ export const disableLegacyMode = __NEXT_MAJOR__;
|
|||
export const disableLegacyContext = __NEXT_MAJOR__;
|
||||
export const enableNewBooleanProps = __NEXT_MAJOR__;
|
||||
export const disableModulePatternComponents = __NEXT_MAJOR__;
|
||||
export const enableRenderableContext = __NEXT_MAJOR__;
|
||||
|
||||
// Flow magic to verify the exports of this file match the original version.
|
||||
((((null: any): ExportsType): FeatureFlagsType): ExportsType);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user