contentoh-components-library 0.1.1 → 6.0.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 (185) hide show
  1. package/.env.development +16 -3
  2. package/.env.production +14 -1
  3. package/CHANGELOG.md +40 -0
  4. package/package.json +10 -4
  5. package/src/assets/images/arrow/arrowIcon.svg +3 -0
  6. package/src/assets/images/arrow/polygon.svg +3 -0
  7. package/src/assets/images/card/masterCardIcon.svg +5 -0
  8. package/src/assets/images/componentAssigned/assignedImage1.svg +9 -0
  9. package/src/assets/images/componentAssigned/assignedImage2.svg +9 -0
  10. package/src/assets/images/componentAssigned/clock.svg +4 -0
  11. package/src/assets/images/componentAssigned/flag.svg +3 -0
  12. package/src/assets/images/defaultImages/defaultUpdate.png +0 -0
  13. package/src/assets/images/editField/editField.svg +3 -0
  14. package/src/assets/images/generalButton/deleteIcon.svg +13 -0
  15. package/src/assets/images/generalButton/deleteIconHover.svg +13 -0
  16. package/src/assets/images/generalButton/saveIcon.svg +3 -0
  17. package/src/assets/images/generalButton/saveIconHover.svg +3 -0
  18. package/src/assets/images/generalImage/assigned.svg +14 -0
  19. package/src/assets/images/generalImage/bags.svg +25 -0
  20. package/src/assets/images/generalImage/clock.svg +4 -0
  21. package/src/assets/images/generalImage/flag.svg +3 -0
  22. package/src/assets/images/genericModal/genericModalCheck.svg +3 -0
  23. package/src/assets/images/genericModal/genericModalClose.svg +3 -0
  24. package/src/assets/images/genericModal/genericModalDown.svg +3 -0
  25. package/src/assets/images/genericModal/genericModalUp.svg +3 -0
  26. package/src/assets/images/genericModal/genericModalWarning.svg +12 -0
  27. package/src/assets/images/logo/logoLogin.svg +15 -0
  28. package/src/assets/images/menuNotification/menuNotificationComment.svg +3 -0
  29. package/src/assets/images/menuNotification/menuNotificationProduct.svg +3 -0
  30. package/src/assets/images/menuProfile/logOut.svg +3 -0
  31. package/src/assets/images/menuProfile/myAccount.svg +3 -0
  32. package/src/assets/images/menuProfile/settings.svg +3 -0
  33. package/src/assets/images/modalsSVGs/attributesSent.svg +208 -0
  34. package/src/assets/images/modalsSVGs/descriptionSent.svg +237 -0
  35. package/src/assets/images/modalsSVGs/providerSent.svg +445 -0
  36. package/src/assets/images/modalsSVGs/uploadingImages.svg +148 -0
  37. package/src/assets/images/productNotification/productNotification.svg +3 -0
  38. package/src/assets/images/profileHeader/profilePicture.svg +9 -0
  39. package/src/components/atoms/AsignationOption/index.js +6 -4
  40. package/src/components/atoms/AsignationOption/styles.js +3 -1
  41. package/src/components/atoms/AtomList/index.js +4 -2
  42. package/src/components/atoms/AtomList/styles.js +4 -2
  43. package/src/components/atoms/Avatar/index.js +2 -1
  44. package/src/components/atoms/Card/Card.stories.js +12 -0
  45. package/src/components/atoms/Card/index.js +9 -0
  46. package/src/components/atoms/Card/styles.js +8 -0
  47. package/src/components/atoms/CheckBox/index.js +1 -1
  48. package/src/components/atoms/Commentary/Commentary.stories.js +0 -0
  49. package/src/components/atoms/Commentary/index.js +9 -0
  50. package/src/components/atoms/Commentary/styles.js +15 -0
  51. package/src/components/atoms/CustomerTypeImage/index.js +1 -1
  52. package/src/components/atoms/EditField/EditField.stories.js +13 -0
  53. package/src/components/atoms/EditField/index.js +15 -0
  54. package/src/components/atoms/EditField/styles.js +35 -0
  55. package/src/components/atoms/GeneralButton/GeneralButton.stories.js +3 -0
  56. package/src/components/atoms/GeneralButton/index.js +7 -1
  57. package/src/components/atoms/GeneralButton/styles.js +56 -9
  58. package/src/components/atoms/GeneralInput/index.js +62 -9
  59. package/src/components/atoms/GeneralInput/styles.js +3 -1
  60. package/src/components/atoms/GeneralTextBox/index.js +7 -6
  61. package/src/components/atoms/GeneralTextBox/styles.js +1 -1
  62. package/src/components/atoms/GenericModal/GenericModal.stories.js +140 -0
  63. package/src/components/atoms/GenericModal/index.js +12 -0
  64. package/src/components/atoms/GenericModal/styles.js +126 -0
  65. package/src/components/atoms/GradientPanel/GradientPanel.stories.js +110 -3
  66. package/src/components/atoms/GradientPanel/index.js +4 -2
  67. package/src/components/atoms/GradientPanel/styles.js +111 -8
  68. package/src/components/atoms/Graphic/Graphic.stories.js +21 -0
  69. package/src/components/atoms/Graphic/index.js +18 -0
  70. package/src/components/atoms/Graphic/styles.js +4 -0
  71. package/src/components/atoms/Input/index.js +14 -0
  72. package/src/components/atoms/Input/style.js +27 -0
  73. package/src/components/atoms/LabelToInput/index.js +27 -0
  74. package/src/components/atoms/LabelToInput/style.js +30 -0
  75. package/src/components/atoms/LoadImageMenu/LoadImageMenu.stories.js +17 -0
  76. package/src/components/atoms/LoadImageMenu/index.js +58 -0
  77. package/src/components/atoms/LoadImageMenu/styles.js +72 -0
  78. package/src/components/atoms/LogoImage/LogoImage.stories.js +10 -0
  79. package/src/components/atoms/LogoImage/index.js +10 -0
  80. package/src/components/atoms/LogoImage/styles.js +12 -0
  81. package/src/components/atoms/MenuNotification/MenuNotification.stories.js +17 -0
  82. package/src/components/atoms/MenuNotification/index.js +30 -0
  83. package/src/components/atoms/MenuNotification/styles.js +50 -0
  84. package/src/components/atoms/MenuProfile/MenuProfile.stories.js +13 -0
  85. package/src/components/atoms/MenuProfile/index.js +31 -0
  86. package/src/components/atoms/MenuProfile/styles.js +57 -0
  87. package/src/components/atoms/Notification/Notification.stories.js +16 -0
  88. package/src/components/atoms/Notification/index.js +20 -0
  89. package/src/components/atoms/Notification/styles.js +42 -0
  90. package/src/components/atoms/Percent/Percent.stories.js +38 -0
  91. package/src/components/atoms/Percent/index.js +15 -0
  92. package/src/components/atoms/Percent/styles.js +79 -0
  93. package/src/components/atoms/PriorityFlag/index.js +1 -1
  94. package/src/components/atoms/ProductImage/styles.js +1 -1
  95. package/src/components/atoms/ProgressBar/index.js +2 -2
  96. package/src/components/atoms/ProgressBar/styles.js +53 -3
  97. package/src/components/atoms/ScreenHeader/ScreenHeader.stories.js +9 -0
  98. package/src/components/atoms/ScreenHeader/index.js +4 -1
  99. package/src/components/atoms/ScreenHeader/styles.js +17 -6
  100. package/src/components/atoms/Select/index.js +33 -0
  101. package/src/components/atoms/Select/style.js +77 -0
  102. package/src/components/atoms/StatusTag/styles.js +9 -1
  103. package/src/components/atoms/ValidationPanel/index.js +3 -3
  104. package/src/components/molecules/AddProvidersAndProducts/AddProvidersAndProducts.stories.js +16 -0
  105. package/src/components/molecules/AddProvidersAndProducts/index.js +19 -0
  106. package/src/components/molecules/AddProvidersAndProducts/styles.js +23 -0
  107. package/src/components/molecules/AssignedWork/AssignedWork.stories.js +41 -0
  108. package/src/components/molecules/AssignedWork/index.js +40 -0
  109. package/src/components/molecules/AssignedWork/styles.js +111 -0
  110. package/src/components/molecules/AvatarAndValidation/index.js +24 -6
  111. package/src/components/molecules/AvatarAndValidation/styles.js +1 -1
  112. package/src/components/molecules/EditionActiveImage/index.js +5 -2
  113. package/src/components/molecules/FeaturesBar/index.js +21 -8
  114. package/src/components/molecules/FeaturesBar/styles.js +9 -2
  115. package/src/components/molecules/GalleryElement/index.js +59 -37
  116. package/src/components/molecules/GalleryElement/styles.js +38 -11
  117. package/src/components/molecules/GalleryHeader/GalleryHeader.stories.js +10 -0
  118. package/src/components/molecules/GalleryHeader/index.js +19 -0
  119. package/src/components/molecules/GalleryHeader/styles.js +45 -0
  120. package/src/components/molecules/ImageSelector/index.js +14 -11
  121. package/src/components/molecules/ParentComponent/ParentComponent.stories.js +18 -0
  122. package/src/components/molecules/ParentComponent/index.js +66 -0
  123. package/src/components/molecules/ParentComponent/styles.js +7 -0
  124. package/src/components/molecules/PayMethod/PayMethod.stories.js +12 -0
  125. package/src/components/molecules/PayMethod/index.js +46 -0
  126. package/src/components/molecules/PayMethod/styles.js +31 -0
  127. package/src/components/molecules/PlanSelection/PlanSelection.stories.js +1 -3
  128. package/src/components/molecules/PlanSelection/index.js +1 -1
  129. package/src/components/molecules/PlanSelection/styles.js +2 -2
  130. package/src/components/molecules/ProductNameHeader/index.js +1 -2
  131. package/src/components/molecules/ProductNotification/ProductNotification.stories.js +13 -0
  132. package/src/components/molecules/ProductNotification/index.js +53 -0
  133. package/src/components/molecules/ProductNotification/styles.js +37 -0
  134. package/src/components/molecules/ProfileHeader/ProfileHeader.stories.js +16 -0
  135. package/src/components/molecules/ProfileHeader/index.js +54 -0
  136. package/src/components/molecules/ProfileHeader/styles.js +30 -0
  137. package/src/components/molecules/RetailerSelector/RetailerSelector.stories.js +35 -0
  138. package/src/components/molecules/RetailerSelector/index.js +63 -0
  139. package/src/components/molecules/RetailerSelector/styles.js +18 -0
  140. package/src/components/molecules/SidebarNotification/SidebarNotification.stories.js +101 -0
  141. package/src/components/molecules/SidebarNotification/index.js +95 -0
  142. package/src/components/molecules/SidebarNotification/styles.js +63 -0
  143. package/src/components/molecules/StatusAsignationInfo/index.js +55 -19
  144. package/src/components/molecules/StatusAsignationInfo/styles.js +10 -0
  145. package/src/components/molecules/TableHeader/index.js +5 -2
  146. package/src/components/molecules/TabsMenu/index.js +6 -2
  147. package/src/components/molecules/TagAndInput/index.js +35 -2
  148. package/src/components/molecules/TagAndInput/styles.js +1 -1
  149. package/src/components/organisms/FullProductNameHeader/index.js +28 -7
  150. package/src/components/organisms/FullTabsMenu/index.js +13 -2
  151. package/src/components/organisms/FullTabsMenu/styles.js +1 -1
  152. package/src/components/organisms/Fullplan/FullPlan.stories.js +7 -9
  153. package/src/components/organisms/Fullplan/index.js +1 -1
  154. package/src/components/organisms/Fullplan/styles.js +2 -2
  155. package/src/components/organisms/ImageDataTable/index.js +77 -11
  156. package/src/components/organisms/ImageDataTable/styles.js +8 -0
  157. package/src/components/organisms/ImagePreviewer/index.js +5 -10
  158. package/src/components/organisms/InputGroup/index.js +56 -11
  159. package/src/components/organisms/InputGroup/styles.js +3 -0
  160. package/src/components/organisms/ProductImageModal/ProductImageModal.stories.js +77 -74
  161. package/src/components/organisms/ProductImageModal/index.js +29 -12
  162. package/src/components/organisms/ProductImageModal/styles.js +4 -0
  163. package/src/components/pages/CustomerLogin/CustomerLogin.stories.js +76 -0
  164. package/src/components/pages/CustomerLogin/index.js +22 -0
  165. package/src/components/pages/CustomerLogin/styles.js +12 -0
  166. package/src/components/pages/CustomerPayMethod/CustomerPayMethod.stories.js +56 -0
  167. package/src/components/pages/CustomerPayMethod/index.js +23 -0
  168. package/src/components/pages/CustomerPayMethod/styles.js +21 -0
  169. package/src/components/pages/CustomerType/CustomerType.stories.js +8 -8
  170. package/src/components/pages/CustomerType/styles.js +1 -1
  171. package/src/components/pages/OnboardPlan/OnboardPlan.stories.js +36 -21
  172. package/src/components/pages/OnboardPlan/index.js +8 -9
  173. package/src/components/pages/OnboardPlan/styles.js +16 -10
  174. package/src/components/pages/RetailerPlan/RetailerPlan.stories.js +49 -0
  175. package/src/components/pages/RetailerPlan/index.js +24 -0
  176. package/src/components/pages/RetailerPlan/styles.js +27 -0
  177. package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +104 -317
  178. package/src/components/pages/RetailerProductEdition/index.js +809 -34
  179. package/src/components/pages/RetailerProductEdition/styles.js +54 -5
  180. package/src/global-files/data.js +152 -0
  181. package/src/global-files/global-styles.css +10 -0
  182. package/src/global-files/variables.js +1 -0
  183. package/src/components/molecules/TextAndGradient/TextAndGradient.stories.js +0 -23
  184. package/src/components/molecules/TextAndGradient/index.js +0 -23
  185. package/src/components/molecules/TextAndGradient/styles.js +0 -37
@@ -37,327 +37,114 @@ RetailerProductEditionDefault.args = {
37
37
  image: {
38
38
  src: "https://image.shutterstock.com/image-illustration/3d-render-generic-drug-pills-260nw-709112806.jpg",
39
39
  },
40
- services: {
41
- Descripción: [
42
- {
43
- inputGroup: {
44
- name: "Información básica del producto",
45
- inputs: [
46
- {
47
- label: "Item",
48
- value: "1234567890",
49
- placeholder: "Ingresar valor",
50
- },
51
- {
52
- label: "Item",
53
- value: "1234567890",
54
- placeholder: "Ingresar valor",
55
- },
56
- {
57
- label: "Item",
58
- value: "1234567890",
59
- placeholder: "Ingresar valor",
60
- },
61
- {
62
- label: "Item",
63
- value: "1234567890",
64
- placeholder: "Ingresar valor",
65
- },
66
- {
67
- label: "Item",
68
- value: "1234567890",
69
- placeholder: "Ingresar valor",
70
- },
71
- {
72
- label: "Item",
73
- value: "1234567890",
74
- placeholder: "Ingresar valor",
75
- },
76
- {
77
- label: "Item",
78
- value: "1234567890",
79
- placeholder: "Ingresar valor",
80
- },
81
- {
82
- label: "Item",
83
- value: "1234567890",
84
- placeholder: "Ingresar valor",
85
- },
86
- ],
87
- },
88
- },
89
- ],
90
- "Ficha técnica": [
91
- {
92
- inputGroup: {
93
- name: "Información básica del producto",
94
- inputs: [
95
- {
96
- label: "Item",
97
- value: "1234567890",
98
- placeholder: "Ingresar valor",
99
- },
100
- {
101
- label: "Item",
102
- value: "1234567890",
103
- placeholder: "Ingresar valor",
104
- },
105
- {
106
- label: "Item",
107
- value: "1234567890",
108
- placeholder: "Ingresar valor",
109
- },
110
- {
111
- label: "Item",
112
- value: "1234567890",
113
- placeholder: "Ingresar valor",
114
- },
115
- {
116
- label: "Item",
117
- value: "1234567890",
118
- placeholder: "Ingresar valor",
119
- },
120
- {
121
- label: "Item",
122
- value: "1234567890",
123
- placeholder: "Ingresar valor",
124
- },
125
- {
126
- label: "Item",
127
- value: "1234567890",
128
- placeholder: "Ingresar valor",
129
- },
130
- {
131
- label: "Item",
132
- value: "1234567890",
133
- placeholder: "Ingresar valor",
134
- },
135
- ],
136
- },
137
- },
138
- {
139
- inputGroup: {
140
- name: "Información básica del producto",
141
- inputs: [
142
- {
143
- label: "Item",
144
- value: "1234567890",
145
- placeholder: "Ingresar valor",
146
- },
147
- {
148
- label: "Item",
149
- value: "1234567890",
150
- placeholder: "Ingresar valor",
151
- },
152
- {
153
- label: "Item",
154
- value: "1234567890",
155
- placeholder: "Ingresar valor",
156
- },
157
- {
158
- label: "Item",
159
- value: "1234567890",
160
- placeholder: "Ingresar valor",
161
- },
162
- {
163
- label: "Item",
164
- value: "1234567890",
165
- placeholder: "Ingresar valor",
166
- },
167
- {
168
- label: "Item",
169
- value: "1234567890",
170
- placeholder: "Ingresar valor",
171
- },
172
- {
173
- label: "Item",
174
- value: "1234567890",
175
- placeholder: "Ingresar valor",
176
- },
177
- {
178
- label: "Item",
179
- value: "1234567890",
180
- placeholder: "Ingresar valor",
181
- },
182
- ],
183
- },
184
- },
185
- {
186
- inputGroup: {
187
- name: "Información básica del producto",
188
- inputs: [
189
- {
190
- label: "Item",
191
- value: "1234567890",
192
- placeholder: "Ingresar valor",
193
- },
194
- {
195
- label: "Item",
196
- value: "1234567890",
197
- placeholder: "Ingresar valor",
198
- },
199
- {
200
- label: "Item",
201
- value: "1234567890",
202
- placeholder: "Ingresar valor",
203
- },
204
- {
205
- label: "Item",
206
- value: "1234567890",
207
- placeholder: "Ingresar valor",
208
- },
209
- {
210
- label: "Item",
211
- value: "1234567890",
212
- placeholder: "Ingresar valor",
213
- },
214
- {
215
- label: "Item",
216
- value: "1234567890",
217
- placeholder: "Ingresar valor",
218
- },
219
- {
220
- label: "Item",
221
- value: "1234567890",
222
- placeholder: "Ingresar valor",
223
- },
224
- {
225
- label: "Item",
226
- value: "1234567890",
227
- placeholder: "Ingresar valor",
228
- },
229
- ],
230
- },
231
- },
232
- {
233
- inputGroup: {
234
- name: "Información básica del producto",
235
- inputs: [
236
- {
237
- label: "Item",
238
- value: "1234567890",
239
- placeholder: "Ingresar valor",
240
- },
241
- {
242
- label: "Item",
243
- value: "1234567890",
244
- placeholder: "Ingresar valor",
245
- },
246
- {
247
- label: "Item",
248
- value: "1234567890",
249
- placeholder: "Ingresar valor",
250
- },
251
- {
252
- label: "Item",
253
- value: "1234567890",
254
- placeholder: "Ingresar valor",
255
- },
256
- {
257
- label: "Item",
258
- value: "1234567890",
259
- placeholder: "Ingresar valor",
260
- },
261
- {
262
- label: "Item",
263
- value: "1234567890",
264
- placeholder: "Ingresar valor",
265
- },
266
- {
267
- label: "Item",
268
- value: "1234567890",
269
- placeholder: "Ingresar valor",
270
- },
271
- {
272
- label: "Item",
273
- value: "1234567890",
274
- placeholder: "Ingresar valor",
275
- },
276
- ],
277
- },
278
- },
279
- ],
280
- Imágenes: [
281
- {
282
- img: "https://image.shutterstock.com/image-illustration/3d-render-generic-drug-pills-260nw-709112806.jpg",
283
- alt: "img",
284
- name: "Hero",
285
- data: [
286
- { feature: "Tamaño de imagen", value: "1000x10000" },
287
- { feature: "Formato", value: "jpg" },
288
- { feature: "Resolución", value: "300dpi" },
289
- { feature: "Tipo de imagen", value: "Tipo de imagen" },
290
- { feature: "Identificador", value: "F261" },
291
- ],
292
- },
293
- {
294
- img: "https://www.muycomputer.com/wp-content/uploads/2020/12/google.png",
295
- alt: "img",
296
- name: "Hero2",
297
- data: [
298
- { feature: "Tamaño de imagen", value: "1000x10000" },
299
- { feature: "Formato", value: "jpg" },
300
- { feature: "Resolución", value: "300dpi" },
301
- { feature: "Tipo de imagen", value: "Tipo de imagen" },
302
- { feature: "Identificador", value: "F261" },
303
- ],
304
- },
305
- {
306
- img: "https://www.ionos.es/digitalguide/fileadmin/DigitalGuide/Teaser/bildergalerie-online-t.jpg",
307
- alt: "img",
308
- name: "Hero3",
309
- data: [
310
- { feature: "Tamaño de imagen", value: "1000x10000" },
311
- { feature: "Formato", value: "jpg" },
312
- { feature: "Resolución", value: "300dpi" },
313
- { feature: "Tipo de imagen", value: "Tipo de imagen" },
314
- { feature: "Identificador", value: "F261" },
315
- ],
316
- },
317
- {
318
- img: "https://i.pinimg.com/originals/d0/b9/28/d0b928df15d3a3bf1905865a8fedb257.jpg",
319
- alt: "img",
320
- name: "Hero4",
321
- data: [
322
- { feature: "Tamaño de imagen", value: "1000x10000" },
323
- { feature: "Formato", value: "jpg" },
324
- { feature: "Resolución", value: "300dpi" },
325
- { feature: "Tipo de imagen", value: "Tipo de imagen" },
326
- { feature: "Identificador", value: "F261" },
327
- ],
328
- },
329
- {
330
- img: "https://memegenerator.net/img/images/72798198.jpg",
331
- alt: "img",
332
- name: "Hero5",
333
- data: [
334
- { feature: "Tamaño de imagen", value: "1000x10000" },
335
- { feature: "Formato", value: "jpg" },
336
- { feature: "Resolución", value: "300dpi" },
337
- { feature: "Tipo de imagen", value: "Tipo de imagen" },
338
- { feature: "Identificador", value: "F261" },
339
- ],
340
- },
341
- {
342
- img: "http://www.dumpaday.com/wp-content/uploads/2016/02/funny-pictures-621.jpg",
343
- alt: "img",
344
- name: "Hero6",
345
- data: [
346
- { feature: "Tamaño de imagen", value: "1000x10000" },
347
- { feature: "Formato", value: "jpg" },
348
- { feature: "Resolución", value: "300dpi" },
349
- { feature: "Tipo de imagen", value: "Tipo de imagen" },
350
- { feature: "Identificador", value: "F261" },
351
- ],
352
- },
353
- ],
354
- "Golden SKU": {},
355
- },
356
40
  },
357
41
  tabsSections: {
358
42
  Descripción: true,
359
43
  "Ficha técnica": false,
360
44
  Imágenes: false,
361
- "Golden SKU": false,
45
+ },
46
+ articleId: 238,
47
+ category: 846,
48
+ version: 2,
49
+ productSelected: {
50
+ services: {
51
+ datasheets: 1,
52
+ descriptions: 1,
53
+ images: 1,
54
+ },
55
+ orderId: 101,
56
+ status: "RP",
57
+ datasheet_status: "AP",
58
+ prio: "none",
59
+ version: 2,
60
+ description_status: "RP",
61
+ images_status: "AP",
62
+ article: {
63
+ id_article: 292,
64
+ id_category: "697",
65
+ name: "SHAMPOO ANTIFRIZ",
66
+ upc: "7491989462",
67
+ timestamp: "2022-03-09T19:35:51.000Z",
68
+ id_user: 28,
69
+ status: "NULL",
70
+ active: 1,
71
+ company_id: 1,
72
+ company_name: "COMPANY DEV",
73
+ country: "Colombia",
74
+ id_order: 101,
75
+ id_datasheet_especialist: 54,
76
+ id_datasheet_facilitator: 52,
77
+ id_description_especialist: 54,
78
+ id_description_facilitator: 52,
79
+ id_images_especialist: 55,
80
+ id_images_facilitator: 53,
81
+ id_auditor: 30,
82
+ id_recepcionist: null,
83
+ category:
84
+ "SALUD Y BELLEZA|CUIDADO DEL CABELLO|SHAMPOOS Y ACONDICIONADORES",
85
+ missingAttributes: null,
86
+ missingDescriptions: null,
87
+ missingImages: null,
88
+ },
89
+ retailers: [
90
+ {
91
+ id: 4,
92
+ name: "Walmart Super y Superama",
93
+ country: "México",
94
+ id_region: 1,
95
+ active: 1,
96
+ },
97
+ {
98
+ id: 6,
99
+ name: "HEB",
100
+ country: "México",
101
+ id_region: 1,
102
+ active: 1,
103
+ },
104
+ ],
105
+ country: "Colombia",
106
+ modal: false,
107
+ modalCadenas: false,
108
+ totalCadenas: false,
109
+ modalAsig1: false,
110
+ modalFD: false,
111
+ modalAsig2: false,
112
+ modalAsig3: false,
113
+ modalAsig4: false,
114
+ modalAsig5: false,
115
+ modalFI: false,
116
+ modalQA: false,
117
+ },
118
+ user: {
119
+ id_user: 30,
120
+ name: "Admin",
121
+ last_name: "Ulises",
122
+ email: "salmeron.5@hotmail.com",
123
+ position: "Admin",
124
+ telephone: null,
125
+ country: "México",
126
+ id_company: 2,
127
+ id_cognito: "c94a7305-9365-46ff-a423-4b4bc3b8b180",
128
+ birth_Date: null,
129
+ about_me: null,
130
+ zip_code: null,
131
+ address: null,
132
+ job: null,
133
+ id_stripe: null,
134
+ id_role: 6,
135
+ active: 1,
136
+ is_retailer: 0,
137
+ membership: {
138
+ id: 2,
139
+ start_date: "2021-11-05T02:35:12.000Z",
140
+ end_date: "2022-11-05T02:34:49.000Z",
141
+ planID: 1,
142
+ plan: "prod_KtkvuFFLpOdP6e",
143
+ name: "Plan Free",
144
+ user_limit: "1",
145
+ products_limit: "3",
146
+ type: "PyMES",
147
+ },
148
+ src: "https://content-management-profile.s3.amazonaws.com/id-30/30.png?1647395550234",
362
149
  },
363
150
  };