@@ -134,6 +134,19 @@ void YogaStylableProps::setProp(
134
134
REBUILD_FIELD_YG_EDGES (border, " border" , " Width" );
135
135
136
136
// Aliases
137
+ RAW_SET_PROP_SWITCH_CASE (inset, " inset" , CompactValue::ofUndefined ());
138
+ RAW_SET_PROP_SWITCH_CASE (
139
+ insetBlock, " insetBlock" , CompactValue::ofUndefined ());
140
+ RAW_SET_PROP_SWITCH_CASE (
141
+ insetBlockEnd, " insetBlockEnd" , CompactValue::ofUndefined ());
142
+ RAW_SET_PROP_SWITCH_CASE (
143
+ insetBlockStart, " insetBlockStart" , CompactValue::ofUndefined ());
144
+ RAW_SET_PROP_SWITCH_CASE (
145
+ insetInline, " insetInline" , CompactValue::ofUndefined ());
146
+ RAW_SET_PROP_SWITCH_CASE (
147
+ insetInlineEnd, " insetInlineEnd" , CompactValue::ofUndefined ());
148
+ RAW_SET_PROP_SWITCH_CASE (
149
+ insetInlineStart, " insetInlineStart" , CompactValue::ofUndefined ());
137
150
RAW_SET_PROP_SWITCH_CASE (
138
151
marginInline, " marginInline" , CompactValue::ofUndefined ());
139
152
RAW_SET_PROP_SWITCH_CASE (
@@ -245,6 +258,48 @@ void YogaStylableProps::convertRawPropAliases(
245
258
const PropsParserContext &context,
246
259
YogaStylableProps const &sourceProps,
247
260
RawProps const &rawProps) {
261
+ inset = convertRawProp (
262
+ context,
263
+ rawProps,
264
+ " inset" ,
265
+ sourceProps.inset ,
266
+ CompactValue::ofUndefined ());
267
+ insetBlock = convertRawProp (
268
+ context,
269
+ rawProps,
270
+ " insetBlock" ,
271
+ sourceProps.insetBlock ,
272
+ CompactValue::ofUndefined ());
273
+ insetBlockEnd = convertRawProp (
274
+ context,
275
+ rawProps,
276
+ " insetBlockEnd" ,
277
+ sourceProps.insetBlockEnd ,
278
+ CompactValue::ofUndefined ());
279
+ insetBlockStart = convertRawProp (
280
+ context,
281
+ rawProps,
282
+ " insetBlockStart" ,
283
+ sourceProps.insetBlockStart ,
284
+ CompactValue::ofUndefined ());
285
+ insetInline = convertRawProp (
286
+ context,
287
+ rawProps,
288
+ " insetInline" ,
289
+ sourceProps.insetInline ,
290
+ CompactValue::ofUndefined ());
291
+ insetInlineEnd = convertRawProp (
292
+ context,
293
+ rawProps,
294
+ " insetInlineEnd" ,
295
+ sourceProps.insetInlineEnd ,
296
+ CompactValue::ofUndefined ());
297
+ insetInlineStart = convertRawProp (
298
+ context,
299
+ rawProps,
300
+ " insetInlineStart" ,
301
+ sourceProps.insetInlineStart ,
302
+ CompactValue::ofUndefined ());
248
303
marginInline = convertRawProp (
249
304
context,
250
305
rawProps,
0 commit comments