@@ -16,6 +16,7 @@ Object {
16
16
17
17
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
18
18
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
19
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
19
20
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
20
21
#include < jsi / jsi .h >
21
22
@@ -30,7 +31,8 @@ JSI_EXPORT extern const char ArrayPropsNativeComponentViewComponentName[];
30
31
using ArrayPropsNativeComponentViewShadowNode = ConcreteViewShadowNode<
31
32
ArrayPropsNativeComponentViewComponentName,
32
33
ArrayPropsNativeComponentViewProps ,
33
- ArrayPropsNativeComponentViewEventEmitter>;
34
+ ArrayPropsNativeComponentViewEventEmitter ,
35
+ ArrayPropsNativeComponentViewState>;
34
36
35
37
} // namespace react
36
38
} // namespace facebook
@@ -54,6 +56,7 @@ Object {
54
56
55
57
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
56
58
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
59
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
57
60
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
58
61
#include < jsi / jsi .h >
59
62
@@ -68,7 +71,8 @@ JSI_EXPORT extern const char BooleanPropNativeComponentViewComponentName[];
68
71
using BooleanPropNativeComponentViewShadowNode = ConcreteViewShadowNode<
69
72
BooleanPropNativeComponentViewComponentName,
70
73
BooleanPropNativeComponentViewProps ,
71
- BooleanPropNativeComponentViewEventEmitter>;
74
+ BooleanPropNativeComponentViewEventEmitter ,
75
+ BooleanPropNativeComponentViewState>;
72
76
73
77
} // namespace react
74
78
} // namespace facebook
@@ -92,6 +96,7 @@ Object {
92
96
93
97
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
94
98
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
99
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
95
100
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
96
101
#include < jsi / jsi .h >
97
102
@@ -106,7 +111,8 @@ JSI_EXPORT extern const char ColorPropNativeComponentViewComponentName[];
106
111
using ColorPropNativeComponentViewShadowNode = ConcreteViewShadowNode<
107
112
ColorPropNativeComponentViewComponentName,
108
113
ColorPropNativeComponentViewProps ,
109
- ColorPropNativeComponentViewEventEmitter>;
114
+ ColorPropNativeComponentViewEventEmitter ,
115
+ ColorPropNativeComponentViewState>;
110
116
111
117
} // namespace react
112
118
} // namespace facebook
@@ -130,6 +136,7 @@ Object {
130
136
131
137
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
132
138
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
139
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
133
140
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
134
141
#include < jsi / jsi .h >
135
142
@@ -144,7 +151,8 @@ JSI_EXPORT extern const char EdgeInsetsPropNativeComponentViewComponentName[];
144
151
using EdgeInsetsPropNativeComponentViewShadowNode = ConcreteViewShadowNode<
145
152
EdgeInsetsPropNativeComponentViewComponentName,
146
153
EdgeInsetsPropNativeComponentViewProps ,
147
- EdgeInsetsPropNativeComponentViewEventEmitter>;
154
+ EdgeInsetsPropNativeComponentViewEventEmitter ,
155
+ EdgeInsetsPropNativeComponentViewState>;
148
156
149
157
} // namespace react
150
158
} // namespace facebook
@@ -168,6 +176,7 @@ Object {
168
176
169
177
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
170
178
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
179
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
171
180
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
172
181
#include < jsi / jsi .h >
173
182
@@ -182,7 +191,8 @@ JSI_EXPORT extern const char EnumPropNativeComponentViewComponentName[];
182
191
using EnumPropNativeComponentViewShadowNode = ConcreteViewShadowNode<
183
192
EnumPropNativeComponentViewComponentName,
184
193
EnumPropNativeComponentViewProps ,
185
- EnumPropNativeComponentViewEventEmitter>;
194
+ EnumPropNativeComponentViewEventEmitter ,
195
+ EnumPropNativeComponentViewState>;
186
196
187
197
} // namespace react
188
198
} // namespace facebook
@@ -206,6 +216,7 @@ Object {
206
216
207
217
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
208
218
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
219
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
209
220
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
210
221
#include < jsi / jsi .h >
211
222
@@ -220,7 +231,8 @@ JSI_EXPORT extern const char EventNestedObjectPropsNativeComponentViewComponentN
220
231
using EventNestedObjectPropsNativeComponentViewShadowNode = ConcreteViewShadowNode<
221
232
EventNestedObjectPropsNativeComponentViewComponentName,
222
233
EventNestedObjectPropsNativeComponentViewProps ,
223
- EventNestedObjectPropsNativeComponentViewEventEmitter>;
234
+ EventNestedObjectPropsNativeComponentViewEventEmitter ,
235
+ EventNestedObjectPropsNativeComponentViewState>;
224
236
225
237
} // namespace react
226
238
} // namespace facebook
@@ -244,6 +256,7 @@ Object {
244
256
245
257
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
246
258
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
259
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
247
260
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
248
261
#include < jsi / jsi .h >
249
262
@@ -258,7 +271,8 @@ JSI_EXPORT extern const char EventPropsNativeComponentViewComponentName[];
258
271
using EventPropsNativeComponentViewShadowNode = ConcreteViewShadowNode<
259
272
EventPropsNativeComponentViewComponentName,
260
273
EventPropsNativeComponentViewProps ,
261
- EventPropsNativeComponentViewEventEmitter>;
274
+ EventPropsNativeComponentViewEventEmitter ,
275
+ EventPropsNativeComponentViewState>;
262
276
263
277
} // namespace react
264
278
} // namespace facebook
@@ -282,6 +296,7 @@ Object {
282
296
283
297
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
284
298
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
299
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
285
300
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
286
301
#include < jsi / jsi .h >
287
302
@@ -296,7 +311,8 @@ JSI_EXPORT extern const char FloatPropsNativeComponentViewComponentName[];
296
311
using FloatPropsNativeComponentViewShadowNode = ConcreteViewShadowNode<
297
312
FloatPropsNativeComponentViewComponentName,
298
313
FloatPropsNativeComponentViewProps ,
299
- FloatPropsNativeComponentViewEventEmitter>;
314
+ FloatPropsNativeComponentViewEventEmitter ,
315
+ FloatPropsNativeComponentViewState>;
300
316
301
317
} // namespace react
302
318
} // namespace facebook
@@ -320,6 +336,7 @@ Object {
320
336
321
337
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
322
338
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
339
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
323
340
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
324
341
#include < jsi / jsi .h >
325
342
@@ -334,7 +351,8 @@ JSI_EXPORT extern const char ImagePropNativeComponentViewComponentName[];
334
351
using ImagePropNativeComponentViewShadowNode = ConcreteViewShadowNode<
335
352
ImagePropNativeComponentViewComponentName,
336
353
ImagePropNativeComponentViewProps ,
337
- ImagePropNativeComponentViewEventEmitter>;
354
+ ImagePropNativeComponentViewEventEmitter ,
355
+ ImagePropNativeComponentViewState>;
338
356
339
357
} // namespace react
340
358
} // namespace facebook
@@ -358,6 +376,7 @@ Object {
358
376
359
377
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
360
378
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
379
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
361
380
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
362
381
#include < jsi / jsi .h >
363
382
@@ -372,7 +391,8 @@ JSI_EXPORT extern const char IntegerPropNativeComponentViewComponentName[];
372
391
using IntegerPropNativeComponentViewShadowNode = ConcreteViewShadowNode<
373
392
IntegerPropNativeComponentViewComponentName,
374
393
IntegerPropNativeComponentViewProps ,
375
- IntegerPropNativeComponentViewEventEmitter>;
394
+ IntegerPropNativeComponentViewEventEmitter ,
395
+ IntegerPropNativeComponentViewState>;
376
396
377
397
} // namespace react
378
398
} // namespace facebook
@@ -396,6 +416,7 @@ Object {
396
416
397
417
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
398
418
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
419
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
399
420
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
400
421
#include < jsi / jsi .h >
401
422
@@ -426,6 +447,7 @@ Object {
426
447
427
448
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
428
449
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
450
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
429
451
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
430
452
#include < jsi / jsi .h >
431
453
@@ -440,7 +462,8 @@ JSI_EXPORT extern const char MultiNativePropNativeComponentViewComponentName[];
440
462
using MultiNativePropNativeComponentViewShadowNode = ConcreteViewShadowNode<
441
463
MultiNativePropNativeComponentViewComponentName,
442
464
MultiNativePropNativeComponentViewProps ,
443
- MultiNativePropNativeComponentViewEventEmitter>;
465
+ MultiNativePropNativeComponentViewEventEmitter ,
466
+ MultiNativePropNativeComponentViewState>;
444
467
445
468
} // namespace react
446
469
} // namespace facebook
@@ -464,6 +487,7 @@ Object {
464
487
465
488
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
466
489
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
490
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
467
491
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
468
492
#include < jsi / jsi .h >
469
493
@@ -478,7 +502,8 @@ JSI_EXPORT extern const char NoPropsNoEventsNativeComponentViewComponentName[];
478
502
using NoPropsNoEventsNativeComponentViewShadowNode = ConcreteViewShadowNode<
479
503
NoPropsNoEventsNativeComponentViewComponentName,
480
504
NoPropsNoEventsNativeComponentViewProps ,
481
- NoPropsNoEventsNativeComponentViewEventEmitter>;
505
+ NoPropsNoEventsNativeComponentViewEventEmitter ,
506
+ NoPropsNoEventsNativeComponentViewState>;
482
507
483
508
} // namespace react
484
509
} // namespace facebook
@@ -502,6 +527,7 @@ Object {
502
527
503
528
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
504
529
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
530
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
505
531
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
506
532
#include < jsi / jsi .h >
507
533
@@ -516,7 +542,8 @@ JSI_EXPORT extern const char ObjectPropsNativeComponentComponentName[];
516
542
using ObjectPropsNativeComponentShadowNode = ConcreteViewShadowNode<
517
543
ObjectPropsNativeComponentComponentName,
518
544
ObjectPropsNativeComponentProps ,
519
- ObjectPropsNativeComponentEventEmitter>;
545
+ ObjectPropsNativeComponentEventEmitter ,
546
+ ObjectPropsNativeComponentState>;
520
547
521
548
} // namespace react
522
549
} // namespace facebook
@@ -540,6 +567,7 @@ Object {
540
567
541
568
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
542
569
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
570
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
543
571
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
544
572
#include < jsi / jsi .h >
545
573
@@ -554,7 +582,8 @@ JSI_EXPORT extern const char PointPropNativeComponentViewComponentName[];
554
582
using PointPropNativeComponentViewShadowNode = ConcreteViewShadowNode<
555
583
PointPropNativeComponentViewComponentName,
556
584
PointPropNativeComponentViewProps ,
557
- PointPropNativeComponentViewEventEmitter>;
585
+ PointPropNativeComponentViewEventEmitter ,
586
+ PointPropNativeComponentViewState>;
558
587
559
588
} // namespace react
560
589
} // namespace facebook
@@ -578,6 +607,7 @@ Object {
578
607
579
608
#include < react / renderer / components / RNCodegenModuleFixtures / EventEmitters .h >
580
609
#include < react / renderer / components / RNCodegenModuleFixtures / Props .h >
610
+ #include < react / renderer / components / RNCodegenModuleFixtures / States .h >
581
611
#include < react / renderer / components / view / ConcreteViewShadowNode .h >
582
612
#include < jsi / jsi .h >
583
613
@@ -592,7 +622,8 @@ JSI_EXPORT extern const char StringPropNativeComponentViewComponentName[];
592
622
using StringPropNativeComponentViewShadowNode = ConcreteViewShadowNode<
593
623
StringPropNativeComponentViewComponentName,
594
624
StringPropNativeComponentViewProps ,
595
- StringPropNativeComponentViewEventEmitter>;
625
+ StringPropNativeComponentViewEventEmitter ,
626
+ StringPropNativeComponentViewState>;
596
627
597
628
} // namespace react
598
629
} // namespace facebook
0 commit comments