File tree 3 files changed +0
-18
lines changed
packages/react-native-bridge
android/react-native-bridge/src/main/java/org/wordpress/mobile/WPAndroidGlue
3 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -54,12 +54,6 @@ data class GutenbergProps @JvmOverloads constructor(
54
54
?.let { putSerializable(PROP_FEATURES , it) }
55
55
theme.getSerializable(PROP_IS_FSE_THEME )
56
56
?.let { putSerializable(PROP_IS_FSE_THEME , it) }
57
- theme.getSerializable(PROP_GALLERY_WITH_IMAGE_BLOCKS )
58
- ?.let { putSerializable(PROP_GALLERY_WITH_IMAGE_BLOCKS , it) }
59
- theme.getSerializable(PROP_QUOTE_BLOCK_V2 )
60
- ?.let { putSerializable(PROP_QUOTE_BLOCK_V2 , it) }
61
- theme.getSerializable(PROP_LIST_BLOCK_V2 )
62
- ?.let { putSerializable(PROP_LIST_BLOCK_V2 , it) }
63
57
}
64
58
}
65
59
@@ -100,8 +94,6 @@ data class GutenbergProps @JvmOverloads constructor(
100
94
private const val PROP_COLORS = " colors"
101
95
private const val PROP_GRADIENTS = " gradients"
102
96
private const val PROP_IS_FSE_THEME = " isFSETheme"
103
- private const val PROP_QUOTE_BLOCK_V2 = " quoteBlockV2"
104
- private const val PROP_LIST_BLOCK_V2 = " listBlockV2"
105
97
106
98
const val PROP_INITIAL_TITLE = " initialTitle"
107
99
const val PROP_INITIAL_DATA = " initialData"
Original file line number Diff line number Diff line change @@ -231,14 +231,6 @@ public class Gutenberg: UIResponder {
231
231
var settingsUpdates = [ String : Any] ( )
232
232
settingsUpdates [ " isFSETheme " ] = editorSettings? . isFSETheme ?? false
233
233
234
- if let quoteBlockV2 = editorSettings? . quoteBlockV2 {
235
- settingsUpdates [ " quoteBlockV2 " ] = quoteBlockV2
236
- }
237
-
238
- if let listBlockV2 = editorSettings? . listBlockV2 {
239
- settingsUpdates [ " listBlockV2 " ] = listBlockV2
240
- }
241
-
242
234
if let rawStyles = editorSettings? . rawStyles {
243
235
settingsUpdates [ " rawStyles " ] = rawStyles
244
236
}
Original file line number Diff line number Diff line change @@ -82,8 +82,6 @@ public extension GutenbergBridgeDataSource {
82
82
83
83
public protocol GutenbergEditorSettings {
84
84
var isFSETheme : Bool { get }
85
- var quoteBlockV2 : Bool { get }
86
- var listBlockV2 : Bool { get }
87
85
var rawStyles : String ? { get }
88
86
var rawFeatures : String ? { get }
89
87
var colors : [ [ String : String ] ] ? { get }
You can’t perform that action at this time.
0 commit comments