File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -116,8 +116,6 @@ export const passChildrenWhenCloningPersistedNodes = false;
116
116
117
117
export const enableUseDeferredValueInitialArg = __EXPERIMENTAL__ ;
118
118
119
- export const enableRenderableContext = false ;
120
-
121
119
export const enableServerComponentLogs = __EXPERIMENTAL__ ;
122
120
123
121
/**
@@ -202,6 +200,9 @@ export const disableLegacyMode = __NEXT_MAJOR__;
202
200
// result in false property i.e. break existing usage.
203
201
export const enableNewBooleanProps = __NEXT_MAJOR__ ;
204
202
203
+ // Make <Context> equivalent to <Context.Provider> instead of <Context.Consumer>
204
+ export const enableRenderableContext = __NEXT_MAJOR__ ;
205
+
205
206
// -----------------------------------------------------------------------------
206
207
// Chopping Block
207
208
//
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ export const enableComponentStackLocations = true;
44
44
export const enableLegacyFBSupport = false ;
45
45
export const enableFilterEmptyStringAttributesDOM = true ;
46
46
export const enableGetInspectorDataForInstanceInProduction = false ;
47
- export const enableRenderableContext = false ;
48
47
49
48
export const enableRetryLaneExpiration = false ;
50
49
export const retryLaneExpirationMs = 5000 ;
@@ -97,6 +96,7 @@ export const disableLegacyMode = __NEXT_MAJOR__;
97
96
export const disableLegacyContext = __NEXT_MAJOR__ ;
98
97
export const enableNewBooleanProps = __NEXT_MAJOR__ ;
99
98
export const disableModulePatternComponents = __NEXT_MAJOR__ ;
99
+ export const enableRenderableContext = __NEXT_MAJOR__ ;
100
100
101
101
// Flow magic to verify the exports of this file match the original version.
102
102
( ( ( ( null : any ) : ExportsType ) : FeatureFlagsType ) : ExportsType ) ;
You can’t perform that action at this time.
0 commit comments