@lookiero/checkout 8.18.0 → 8.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/cypress/support/interceptListReturnQuestionsByCheckoutItemId.ts +1 -1
  2. package/dist/src/infrastructure/projection/returnQuestion/httpReturnQuestionsByCheckoutItemIdView.js +1 -1
  3. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/ReturnQuestion.js +3 -1
  4. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/behaviors/isChildReturnQuestion.js +2 -1
  5. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/behaviors/useReturnQuestionItem.d.ts +3 -3
  6. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/ReturnQuestionItem.d.ts +4 -3
  7. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionFeedbackItem/HostDefaultReturnQuestionFeedbackItem.d.ts +2 -1
  8. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionFeedbackItem/HostDefaultReturnQuestionFeedbackItem.js +1 -0
  9. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionItem/HostDefaultReturnQuestionItem.d.ts +2 -1
  10. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionItem/HostDefaultReturnQuestionItem.js +8 -6
  11. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostRadioGroupReturnQuestionItem/HostRadioGroupReturnQuestionItem.d.ts +2 -1
  12. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostRadioGroupReturnQuestionItem/HostRadioGroupReturnQuestionItem.js +2 -1
  13. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostSelectReturnQuestionItem/HostSelectReturnQuestionItem.d.ts +2 -1
  14. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostSelectReturnQuestionItem/HostSelectReturnQuestionItem.js +2 -1
  15. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/form/HostStackReturnQuestionItem.d.ts +2 -1
  16. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/form/HostStackReturnQuestionItem.js +1 -0
  17. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/modal/HostStackReturnQuestionItem.d.ts +2 -1
  18. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/modal/HostStackReturnQuestionItem.js +5 -3
  19. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/modalOptionReturnQuestionItems/ModalOptionReturnQuestionItems.js +4 -2
  20. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/optionReturnQuestionItem/OptionReturnQuestionItem.d.ts +2 -1
  21. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/optionReturnQuestionItem/OptionReturnQuestionItem.js +2 -1
  22. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.d.ts +2 -1
  23. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.js +2 -1
  24. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.d.ts +2 -1
  25. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.js +2 -1
  26. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/textareaReturnQuestionItem/TextareaReturnQuestionItem.d.ts +2 -1
  27. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/textareaReturnQuestionItem/TextareaReturnQuestionItem.js +2 -1
  28. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/util/returnQuestionFeedback.js +18 -9
  29. package/dist/src/infrastructure/ui/views/item/components/returnQuestionsFeedback/ReturnQuestionsFeedback.js +1 -1
  30. package/dist/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.js +1 -1
  31. package/dist/src/projection/returnQuestion/returnQuestion.constants.d.ts +9 -0
  32. package/dist/src/projection/returnQuestion/returnQuestion.constants.js +10 -0
  33. package/dist/src/projection/returnQuestion/returnQuestion.d.ts +23 -16
  34. package/dist/src/projection/returnQuestion/returnQuestion.js +1 -11
  35. package/dist/src/projection/returnQuestion/returnQuestion.metadata.d.ts +12 -0
  36. package/dist/src/projection/returnQuestion/returnQuestion.metadata.js +1 -0
  37. package/dist/src/projection/returnQuestion/returnQuestion.typeguard.d.ts +5 -0
  38. package/dist/src/projection/returnQuestion/returnQuestion.typeguard.js +10 -0
  39. package/dist/src/version.d.ts +1 -1
  40. package/dist/src/version.js +1 -1
  41. package/package.json +1 -1
  42. package/src/infrastructure/projection/returnQuestion/httpReturnQuestionsByCheckoutItemIdView.ts +1 -1
  43. package/src/infrastructure/projection/returnQuestion/react/useListReturnQuestionsByCheckoutItemId.test.ts +4 -9
  44. package/src/infrastructure/projection/returnQuestion/returnQuestions.mock.ts +72 -117
  45. package/src/infrastructure/ui/components/organisms/returnQuestions/ReturnQuestion.test.tsx +10 -12
  46. package/src/infrastructure/ui/components/organisms/returnQuestions/ReturnQuestion.tsx +10 -8
  47. package/src/infrastructure/ui/components/organisms/returnQuestions/ReturnQuestions.test.tsx +10 -9
  48. package/src/infrastructure/ui/components/organisms/returnQuestions/behaviors/isChildReturnQuestion.ts +2 -1
  49. package/src/infrastructure/ui/components/organisms/returnQuestions/behaviors/useReturnQuestionItem.test.tsx +7 -9
  50. package/src/infrastructure/ui/components/organisms/returnQuestions/behaviors/useReturnQuestionItem.tsx +3 -3
  51. package/src/infrastructure/ui/components/organisms/returnQuestions/components/ReturnQuestionItem.ts +4 -3
  52. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionFeedbackItem/HostDefaultReturnQuestionFeedbackItem.test.tsx +7 -13
  53. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionFeedbackItem/HostDefaultReturnQuestionFeedbackItem.tsx +4 -2
  54. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionItem/HostDefaultReturnQuestionItem.test.tsx +8 -14
  55. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionItem/HostDefaultReturnQuestionItem.tsx +13 -7
  56. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostRadioGroupReturnQuestionItem/HostRadioGroupReturnQuestionItem.tsx +7 -5
  57. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostSelectReturnQuestionItem/HostSelectReturnQuestionItem.test.tsx +10 -14
  58. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostSelectReturnQuestionItem/HostSelectReturnQuestionItem.tsx +7 -5
  59. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/form/HostStackReturnQuestionItem.tsx +5 -3
  60. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/modal/HostStackReturnQuestionItem.test.tsx +43 -36
  61. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/modal/HostStackReturnQuestionItem.tsx +10 -7
  62. package/src/infrastructure/ui/components/organisms/returnQuestions/components/modalOptionReturnQuestionItems/ModalOptionReturnQuestionItems.tsx +11 -9
  63. package/src/infrastructure/ui/components/organisms/returnQuestions/components/optionReturnQuestionItem/OptionReturnQuestionItem.test.tsx +8 -14
  64. package/src/infrastructure/ui/components/organisms/returnQuestions/components/optionReturnQuestionItem/OptionReturnQuestionItem.tsx +6 -4
  65. package/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.tsx +6 -4
  66. package/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.test.tsx +23 -25
  67. package/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.tsx +5 -3
  68. package/src/infrastructure/ui/components/organisms/returnQuestions/components/textareaReturnQuestionItem/TextareaReturnQuestionItem.test.tsx +9 -29
  69. package/src/infrastructure/ui/components/organisms/returnQuestions/components/textareaReturnQuestionItem/TextareaReturnQuestionItem.tsx +7 -5
  70. package/src/infrastructure/ui/components/organisms/returnQuestions/util/__snapshots__/returnQuestionFeedback.test.ts.snap +5 -4
  71. package/src/infrastructure/ui/components/organisms/returnQuestions/util/returnQuestionFeedback.ts +32 -18
  72. package/src/infrastructure/ui/views/item/components/productVariantSlider/__snapshots__/ProductVariantSlider.test.tsx.snap +212 -254
  73. package/src/infrastructure/ui/views/item/components/returnQuestionsFeedback/ReturnQuestionsFeedback.tsx +2 -4
  74. package/src/infrastructure/ui/views/item/views/productVariant/__snapshots__/ProductVariant.test.tsx.snap +636 -762
  75. package/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.tsx +1 -1
  76. package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/__snapshots__/CheckoutItemsTabs.test.tsx.snap +1169 -1211
  77. package/src/projection/returnQuestion/listReturnQuestionsByCheckoutItemId.test.ts +4 -12
  78. package/src/projection/returnQuestion/returnQuestion.constants.ts +10 -0
  79. package/src/projection/returnQuestion/returnQuestion.metadata.ts +17 -0
  80. package/src/projection/returnQuestion/returnQuestion.ts +42 -20
  81. package/src/projection/returnQuestion/returnQuestion.typeguard.ts +24 -0
@@ -100,170 +100,149 @@ exports[`ProductVariantSlider matches the snapshot 1`] = `
100
100
  }
101
101
  testID="carousel-item"
102
102
  >
103
- <RNGestureHandlerButton
104
- collapsable={false}
105
- delayLongPress={600}
106
- enabled={true}
107
- exclusive={true}
108
- handlerTag={2}
109
- handlerType="NativeViewGestureHandler"
110
- onGestureEvent={[Function]}
111
- onGestureHandlerEvent={[Function]}
112
- onGestureHandlerStateChange={[Function]}
113
- onHandlerStateChange={[Function]}
114
- rippleColor={0}
115
- touchSoundDisabled={false}
103
+ <View
104
+ onLayout={[Function]}
116
105
  >
117
106
  <View
118
- accessible={true}
119
- collapsable={false}
120
- style={{}}
107
+ style={
108
+ [
109
+ {
110
+ "height": undefined,
111
+ "width": undefined,
112
+ },
113
+ {
114
+ "alignSelf": undefined,
115
+ "marginTop": 0,
116
+ },
117
+ ]
118
+ }
121
119
  >
122
120
  <View
123
- onLayout={[Function]}
121
+ style={
122
+ [
123
+ {
124
+ "position": "relative",
125
+ },
126
+ [
127
+ {
128
+ "flex": 1,
129
+ },
130
+ null,
131
+ ],
132
+ ]
133
+ }
134
+ testID="product-variant-image"
124
135
  >
125
136
  <View
126
137
  style={
127
138
  [
128
139
  {
129
- "height": undefined,
130
- "width": undefined,
131
- },
132
- {
133
- "alignSelf": undefined,
134
- "marginTop": 0,
140
+ "flex": 1,
135
141
  },
136
142
  ]
137
143
  }
144
+ testID="lazy-image-skeleton"
138
145
  >
139
146
  <View
147
+ onLayout={[Function]}
140
148
  style={
141
149
  [
142
150
  {
143
- "position": "relative",
151
+ "backgroundColor": "#F8F7F7",
152
+ "flex": 1,
153
+ "height": undefined,
154
+ "overflow": "hidden",
155
+ "width": undefined,
144
156
  },
145
- [
146
- {
147
- "flex": 1,
148
- },
149
- null,
150
- ],
151
157
  ]
152
158
  }
153
- testID="product-variant-image"
154
159
  >
155
160
  <View
161
+ collapsable={false}
162
+ duration={1200}
156
163
  style={
157
- [
158
- {
159
- "flex": 1,
160
- },
161
- ]
164
+ {
165
+ "height": "100%",
166
+ "left": 0,
167
+ "transform": [
168
+ {
169
+ "translateX": -375,
170
+ },
171
+ ],
172
+ "width": "100%",
173
+ }
162
174
  }
163
- testID="lazy-image-skeleton"
164
175
  >
165
176
  <View
166
- onLayout={[Function]}
167
- style={
177
+ colors={
168
178
  [
169
- {
170
- "backgroundColor": "#F8F7F7",
171
- "flex": 1,
172
- "height": undefined,
173
- "overflow": "hidden",
174
- "width": undefined,
175
- },
179
+ "rgba(255, 255, 255, 0)",
180
+ "#DAD8D8",
181
+ "#DAD8D8",
182
+ "rgba(255, 255, 255, 0)",
176
183
  ]
177
184
  }
178
- >
179
- <View
180
- collapsable={false}
181
- duration={1200}
182
- style={
183
- {
184
- "height": "100%",
185
- "left": 0,
186
- "transform": [
187
- {
188
- "translateX": -375,
189
- },
190
- ],
191
- "width": "100%",
192
- }
185
+ end={
186
+ {
187
+ "x": 1,
188
+ "y": 0,
193
189
  }
194
- >
195
- <View
196
- colors={
197
- [
198
- "rgba(255, 255, 255, 0)",
199
- "#DAD8D8",
200
- "#DAD8D8",
201
- "rgba(255, 255, 255, 0)",
202
- ]
203
- }
204
- end={
205
- {
206
- "x": 1,
207
- "y": 0,
208
- }
209
- }
210
- locations={
211
- [
212
- 0,
213
- 0.25,
214
- 0.75,
215
- 1,
216
- ]
217
- }
218
- start={
219
- {
220
- "x": 0,
221
- "y": 0,
222
- }
223
- }
224
- style={
225
- {
226
- "height": "100%",
227
- "width": "100%",
228
- }
229
- }
230
- />
231
- </View>
232
- </View>
233
- </View>
234
- <Image
235
- collapsable={false}
236
- jestAnimatedStyle={
237
- {
238
- "value": {
239
- "opacity": 0,
240
- },
241
190
  }
242
- }
243
- onLoad={[Function]}
244
- resizeMode="stretch"
245
- source={
246
- {
247
- "uri": "https://cdn-catalog-back-prod.envs.lookiero.tech/1a/28/1a28f712-a76c-4172-8a11-f15002981dc0.jpg?w=600&f=auto",
191
+ locations={
192
+ [
193
+ 0,
194
+ 0.25,
195
+ 0.75,
196
+ 1,
197
+ ]
248
198
  }
249
- }
250
- style={
251
- {
252
- "flex": 1,
253
- "height": "100%",
254
- "opacity": 0,
255
- "position": "absolute",
256
- "width": "100%",
257
- "zIndex": 10,
199
+ start={
200
+ {
201
+ "x": 0,
202
+ "y": 0,
203
+ }
258
204
  }
259
- }
260
- testID="lazy-image-main-image"
261
- />
205
+ style={
206
+ {
207
+ "height": "100%",
208
+ "width": "100%",
209
+ }
210
+ }
211
+ />
212
+ </View>
262
213
  </View>
263
214
  </View>
215
+ <Image
216
+ collapsable={false}
217
+ jestAnimatedStyle={
218
+ {
219
+ "value": {
220
+ "opacity": 0,
221
+ },
222
+ }
223
+ }
224
+ onLoad={[Function]}
225
+ resizeMode="stretch"
226
+ source={
227
+ {
228
+ "uri": "https://cdn-catalog-back-prod.envs.lookiero.tech/1a/28/1a28f712-a76c-4172-8a11-f15002981dc0.jpg?w=600&f=auto",
229
+ }
230
+ }
231
+ style={
232
+ {
233
+ "flex": 1,
234
+ "height": "100%",
235
+ "opacity": 0,
236
+ "position": "absolute",
237
+ "width": "100%",
238
+ "zIndex": 10,
239
+ }
240
+ }
241
+ testID="lazy-image-main-image"
242
+ />
264
243
  </View>
265
244
  </View>
266
- </RNGestureHandlerButton>
245
+ </View>
267
246
  </View>
268
247
  <View
269
248
  collapsable={false}
@@ -280,170 +259,149 @@ exports[`ProductVariantSlider matches the snapshot 1`] = `
280
259
  }
281
260
  testID="carousel-item"
282
261
  >
283
- <RNGestureHandlerButton
284
- collapsable={false}
285
- delayLongPress={600}
286
- enabled={true}
287
- exclusive={true}
288
- handlerTag={3}
289
- handlerType="NativeViewGestureHandler"
290
- onGestureEvent={[Function]}
291
- onGestureHandlerEvent={[Function]}
292
- onGestureHandlerStateChange={[Function]}
293
- onHandlerStateChange={[Function]}
294
- rippleColor={0}
295
- touchSoundDisabled={false}
262
+ <View
263
+ onLayout={[Function]}
296
264
  >
297
265
  <View
298
- accessible={true}
299
- collapsable={false}
300
- style={{}}
266
+ style={
267
+ [
268
+ {
269
+ "height": undefined,
270
+ "width": undefined,
271
+ },
272
+ {
273
+ "alignSelf": undefined,
274
+ "marginTop": 0,
275
+ },
276
+ ]
277
+ }
301
278
  >
302
279
  <View
303
- onLayout={[Function]}
280
+ style={
281
+ [
282
+ {
283
+ "position": "relative",
284
+ },
285
+ [
286
+ {
287
+ "flex": 1,
288
+ },
289
+ null,
290
+ ],
291
+ ]
292
+ }
293
+ testID="product-variant-image"
304
294
  >
305
295
  <View
306
296
  style={
307
297
  [
308
298
  {
309
- "height": undefined,
310
- "width": undefined,
311
- },
312
- {
313
- "alignSelf": undefined,
314
- "marginTop": 0,
299
+ "flex": 1,
315
300
  },
316
301
  ]
317
302
  }
303
+ testID="lazy-image-skeleton"
318
304
  >
319
305
  <View
306
+ onLayout={[Function]}
320
307
  style={
321
308
  [
322
309
  {
323
- "position": "relative",
310
+ "backgroundColor": "#F8F7F7",
311
+ "flex": 1,
312
+ "height": undefined,
313
+ "overflow": "hidden",
314
+ "width": undefined,
324
315
  },
325
- [
326
- {
327
- "flex": 1,
328
- },
329
- null,
330
- ],
331
316
  ]
332
317
  }
333
- testID="product-variant-image"
334
318
  >
335
319
  <View
320
+ collapsable={false}
321
+ duration={1200}
336
322
  style={
337
- [
338
- {
339
- "flex": 1,
340
- },
341
- ]
323
+ {
324
+ "height": "100%",
325
+ "left": 0,
326
+ "transform": [
327
+ {
328
+ "translateX": -375,
329
+ },
330
+ ],
331
+ "width": "100%",
332
+ }
342
333
  }
343
- testID="lazy-image-skeleton"
344
334
  >
345
335
  <View
346
- onLayout={[Function]}
347
- style={
336
+ colors={
348
337
  [
349
- {
350
- "backgroundColor": "#F8F7F7",
351
- "flex": 1,
352
- "height": undefined,
353
- "overflow": "hidden",
354
- "width": undefined,
355
- },
338
+ "rgba(255, 255, 255, 0)",
339
+ "#DAD8D8",
340
+ "#DAD8D8",
341
+ "rgba(255, 255, 255, 0)",
356
342
  ]
357
343
  }
358
- >
359
- <View
360
- collapsable={false}
361
- duration={1200}
362
- style={
363
- {
364
- "height": "100%",
365
- "left": 0,
366
- "transform": [
367
- {
368
- "translateX": -375,
369
- },
370
- ],
371
- "width": "100%",
372
- }
344
+ end={
345
+ {
346
+ "x": 1,
347
+ "y": 0,
373
348
  }
374
- >
375
- <View
376
- colors={
377
- [
378
- "rgba(255, 255, 255, 0)",
379
- "#DAD8D8",
380
- "#DAD8D8",
381
- "rgba(255, 255, 255, 0)",
382
- ]
383
- }
384
- end={
385
- {
386
- "x": 1,
387
- "y": 0,
388
- }
389
- }
390
- locations={
391
- [
392
- 0,
393
- 0.25,
394
- 0.75,
395
- 1,
396
- ]
397
- }
398
- start={
399
- {
400
- "x": 0,
401
- "y": 0,
402
- }
403
- }
404
- style={
405
- {
406
- "height": "100%",
407
- "width": "100%",
408
- }
409
- }
410
- />
411
- </View>
412
- </View>
413
- </View>
414
- <Image
415
- collapsable={false}
416
- jestAnimatedStyle={
417
- {
418
- "value": {
419
- "opacity": 0,
420
- },
421
349
  }
422
- }
423
- onLoad={[Function]}
424
- resizeMode="stretch"
425
- source={
426
- {
427
- "uri": "https://cdn-catalog-back-prod.envs.lookiero.tech/15/ac/15aca112-4e71-4646-8db5-7f9723bc0130.jpg?w=600&f=auto",
350
+ locations={
351
+ [
352
+ 0,
353
+ 0.25,
354
+ 0.75,
355
+ 1,
356
+ ]
428
357
  }
429
- }
430
- style={
431
- {
432
- "flex": 1,
433
- "height": "100%",
434
- "opacity": 0,
435
- "position": "absolute",
436
- "width": "100%",
437
- "zIndex": 10,
358
+ start={
359
+ {
360
+ "x": 0,
361
+ "y": 0,
362
+ }
438
363
  }
439
- }
440
- testID="lazy-image-main-image"
441
- />
364
+ style={
365
+ {
366
+ "height": "100%",
367
+ "width": "100%",
368
+ }
369
+ }
370
+ />
371
+ </View>
442
372
  </View>
443
373
  </View>
374
+ <Image
375
+ collapsable={false}
376
+ jestAnimatedStyle={
377
+ {
378
+ "value": {
379
+ "opacity": 0,
380
+ },
381
+ }
382
+ }
383
+ onLoad={[Function]}
384
+ resizeMode="stretch"
385
+ source={
386
+ {
387
+ "uri": "https://cdn-catalog-back-prod.envs.lookiero.tech/15/ac/15aca112-4e71-4646-8db5-7f9723bc0130.jpg?w=600&f=auto",
388
+ }
389
+ }
390
+ style={
391
+ {
392
+ "flex": 1,
393
+ "height": "100%",
394
+ "opacity": 0,
395
+ "position": "absolute",
396
+ "width": "100%",
397
+ "zIndex": 10,
398
+ }
399
+ }
400
+ testID="lazy-image-main-image"
401
+ />
444
402
  </View>
445
403
  </View>
446
- </RNGestureHandlerButton>
404
+ </View>
447
405
  </View>
448
406
  </View>
449
407
  </View>
@@ -2,10 +2,8 @@ import React, { FC } from "react";
2
2
  import { View } from "react-native";
3
3
  import { ButtonIcon, Text } from "@lookiero/aurora";
4
4
  import { useI18nMessage } from "@lookiero/i18n-react";
5
- import {
6
- ReturnQuestionProjection,
7
- ReturnQuestionType,
8
- } from "../../../../../../projection/returnQuestion/returnQuestion";
5
+ import { ReturnQuestionProjection } from "../../../../../../projection/returnQuestion/returnQuestion";
6
+ import { ReturnQuestionType } from "../../../../../../projection/returnQuestion/returnQuestion.constants";
9
7
  import { ReturnQuestions } from "../../../../components/organisms/returnQuestions/ReturnQuestions";
10
8
  import {
11
9
  ReturnQuestionItemProvider,