Skip to content

Commit dd630b4

Browse files
committed
refactor(core)!: remove experimental features flag
Signed-off-by: braks <[email protected]>
1 parent b99bc20 commit dd630b4

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

packages/core/src/store/state.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,7 @@ export function useState(): State {
114114

115115
disableKeyboardA11y: false,
116116
ariaLiveMessage: '',
117-
118-
__experimentalFeatures: {
119-
nestedFlow: false,
120-
},
121-
}
122-
}
117+
}}
123118

124119
// these options will be set using the appropriate methods
125120
export const storeOptionsToSkip: (keyof Partial<FlowOptions & Omit<State, 'nodes' | 'edges' | 'modelValue'>>)[] = [

packages/core/src/types/flow.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,6 @@ export interface FlowProps {
196196

197197
autoPanOnConnect?: boolean
198198
autoPanOnNodeDrag?: boolean
199-
200-
__experimentalFeatures?: {
201-
nestedFlow?: boolean
202-
}
203199
}
204200

205201
// Todo: Remove in next major version

0 commit comments

Comments
 (0)