contentoh-components-library 21.3.68 → 21.3.69

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 (82) hide show
  1. package/.env.development +4 -0
  2. package/.env.production +3 -0
  3. package/dist/components/atoms/ButtonV2/styles.js +1 -1
  4. package/dist/components/atoms/Card/index.js +47 -7
  5. package/dist/components/atoms/Card/styles.js +3 -1
  6. package/dist/components/atoms/CheckBox/index.js +4 -2
  7. package/dist/components/atoms/InputFormatter/styles.js +1 -1
  8. package/dist/components/molecules/CarouselImagesLogin/index.js +1 -1
  9. package/dist/components/molecules/HeaderTop/index.js +68 -11
  10. package/dist/components/molecules/StripeCardForm/StripeCardForm.stories.js +31 -0
  11. package/dist/components/molecules/StripeCardForm/index.js +81 -0
  12. package/dist/components/molecules/StripeCardForm/paymentForm.js +187 -0
  13. package/dist/components/molecules/StripeCardForm/styles.js +24 -0
  14. package/dist/components/molecules/StripeCardSelector/CardSelector.stories.js +30 -0
  15. package/dist/components/molecules/StripeCardSelector/index.js +103 -0
  16. package/dist/components/molecules/StripeCardSelector/styles.js +19 -0
  17. package/dist/components/molecules/StripeCardSelector/utils.js +56 -0
  18. package/dist/components/molecules/TabsMenu/index.js +128 -13
  19. package/dist/components/molecules/TagAndInput/index.js +1 -1
  20. package/dist/components/organisms/Chat/Chat.stories.js +21 -1
  21. package/dist/components/organisms/Chat/ContainerItems/index.js +19 -3
  22. package/dist/components/organisms/Chat/ContainerItems/styles.js +1 -1
  23. package/dist/components/organisms/Chat/ContentChat/index.js +343 -191
  24. package/dist/components/organisms/Chat/Footer/index.js +48 -39
  25. package/dist/components/organisms/Chat/index.js +48 -3
  26. package/dist/components/organisms/FullProductNameHeader/index.js +2 -2
  27. package/dist/components/organisms/FullTabsMenu/index.js +27 -2
  28. package/dist/components/organisms/ImageDataTable/index.js +2 -0
  29. package/dist/components/organisms/Modal/styles.js +1 -1
  30. package/dist/components/organisms/SideModal/index.js +11 -0
  31. package/dist/components/organisms/SideModal/styles.js +1 -1
  32. package/dist/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +171 -96
  33. package/dist/components/pages/ProviderProductEdition/index.js +226 -184
  34. package/dist/components/pages/ProviderProductEdition/styles.js +1 -1
  35. package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +40 -28
  36. package/dist/components/pages/RetailerProductEdition/index.js +298 -273
  37. package/dist/components/pages/RetailerProductEdition/styles.js +1 -1
  38. package/dist/components/pages/RetailerProductEdition/utils.js +61 -2
  39. package/dist/index.js +51 -12
  40. package/package.json +1 -1
  41. package/src/components/atoms/ButtonV2/styles.js +1 -1
  42. package/src/components/atoms/Card/index.js +35 -2
  43. package/src/components/atoms/Card/styles.js +41 -5
  44. package/src/components/atoms/CheckBox/index.js +2 -0
  45. package/src/components/atoms/InputFormatter/styles.js +2 -1
  46. package/src/components/molecules/AvatarAndValidation/index.js +1 -1
  47. package/src/components/molecules/CarouselImagesLogin/index.js +1 -1
  48. package/src/components/molecules/GalleryElement/index.js +5 -0
  49. package/src/components/molecules/HeaderTop/index.js +52 -6
  50. package/src/components/molecules/StripeCardForm/StripeCardForm.stories.js +13 -0
  51. package/src/components/molecules/StripeCardForm/index.js +33 -0
  52. package/src/components/molecules/StripeCardForm/paymentForm.js +121 -0
  53. package/src/components/molecules/StripeCardForm/styles.js +72 -0
  54. package/src/components/molecules/StripeCardSelector/CardSelector.stories.js +12 -0
  55. package/src/components/molecules/StripeCardSelector/index.js +42 -0
  56. package/src/components/molecules/StripeCardSelector/styles.js +4 -0
  57. package/src/components/molecules/StripeCardSelector/utils.js +17 -0
  58. package/src/components/molecules/TabsMenu/index.js +126 -3
  59. package/src/components/molecules/TagAndInput/index.js +12 -8
  60. package/src/components/organisms/Chat/Chat.stories.js +21 -0
  61. package/src/components/organisms/Chat/ContainerItems/index.js +18 -2
  62. package/src/components/organisms/Chat/ContainerItems/styles.js +10 -2
  63. package/src/components/organisms/Chat/ContentChat/index.js +81 -6
  64. package/src/components/organisms/Chat/Footer/index.js +11 -0
  65. package/src/components/organisms/Chat/index.js +47 -3
  66. package/src/components/organisms/FullProductNameHeader/index.js +1 -1
  67. package/src/components/organisms/FullTabsMenu/index.js +28 -1
  68. package/src/components/organisms/ImageDataTable/index.js +3 -0
  69. package/src/components/organisms/InputGroup/index.js +4 -1
  70. package/src/components/organisms/Modal/styles.js +4 -1
  71. package/src/components/organisms/SideModal/SideModal.stories.js +23 -0
  72. package/src/components/organisms/SideModal/index.js +50 -0
  73. package/src/components/organisms/SideModal/styles.js +30 -0
  74. package/src/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +181 -98
  75. package/src/components/pages/ProviderProductEdition/index.js +163 -133
  76. package/src/components/pages/ProviderProductEdition/styles.js +5 -1
  77. package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +38 -26
  78. package/src/components/pages/RetailerProductEdition/index.js +142 -135
  79. package/src/components/pages/RetailerProductEdition/styles.js +4 -0
  80. package/src/components/pages/RetailerProductEdition/utils.js +37 -0
  81. package/src/index.js +3 -0
  82. package/dist/assets/fonts/roboto/LICENSE.txt +0 -202
@@ -16,106 +16,194 @@ ProviderProductEditionDefault.args = {
16
16
  Imágenes: false,
17
17
  },
18
18
  token:
19
- "eyJraWQiOiJkQWJkZCtlclwvTlwveVRQUWNvUlVyOCtrNUd2M1hMM2N1MWUzQ09zWExVRnc9IiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiI1ODg0YWUzNC01OWQ2LTQ0NTQtYjk4ZS04MjE1MThiY2MzYTciLCJjb2duaXRvOmdyb3VwcyI6WyJ1c3VhcmlvX2NvbnRlbnRvaCJdLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiaXNzIjoiaHR0cHM6XC9cL2NvZ25pdG8taWRwLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tXC91cy1lYXN0LTFfWE1aUWRxa0dqIiwicGhvbmVfbnVtYmVyX3ZlcmlmaWVkIjpmYWxzZSwiY29nbml0bzp1c2VybmFtZSI6IjU4ODRhZTM0LTU5ZDYtNDQ1NC1iOThlLTgyMTUxOGJjYzNhNyIsImNvZ25pdG86cm9sZXMiOlsiYXJuOmF3czppYW06Ojg5ODY3MDIzMjgwNzpyb2xlXC9jb250ZW50b2gtZGV2LXVzLWVhc3QtMS1sYW1iZGFSb2xlIl0sImF1ZCI6IjVhYzh0cGdzNmdic3ExM2ZydnJwaWVlcDQwIiwiZXZlbnRfaWQiOiJjOWRjOWE1OS0xNTAxLTQyOTgtODRjMi03MDM4NzRhNzIxMTEiLCJ0b2tlbl91c2UiOiJpZCIsImF1dGhfdGltZSI6MTY4MjQ2Mjc4NCwibmFtZSI6IkNhZGVuYSBJc21hZWwiLCJwaG9uZV9udW1iZXIiOiIrNTIzMTExMzY2MzM2IiwiZXhwIjoxNjgyNDY2Mzg0LCJpYXQiOjE2ODI0NjI3ODQsImVtYWlsIjoiY2FkZW5hLmlzbWFlbEBhbGxmcmVlbWFpbC5uZXQifQ.ebKSsnTxKoNfWDoKGFJRlLWgNulGj4KrDe0EgsqLEIVx3Qu0lgmg43UY5tZ3FUlRE8XO2UGq0XxEgdbGOe_4nbTRYigdvxP3bh3cPQ0s68hlTDfhPRvxVJYlaO4s0rhk9rt_VVteTyLfhPHFCymrkFYYDB8bVvKnxUUCX_nJvqGQkl48JiYgvYVLpuus5FvRkGwi1u-jTtMoKiUK-jw9MxI18hD0FWXVnJr-q9ftf2d0bv4JRv4XJ_tRh1N6jps5n3c_KKZswqRfGLU-8MS2X3DU6pDqEP2BZAGXksiFYXYH_uHE6BKJAl7EEhkDTqZsx_jWtVSXTdDg_QDKrOw0Kg",
19
+ "eyJraWQiOiJkQWJkZCtlclwvTlwveVRQUWNvUlVyOCtrNUd2M1hMM2N1MWUzQ09zWExVRnc9IiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJmNTkyN2Y4ZS1jYmY3LTQ5MjItOWUwOS1lNjllYzBiMjczMWEiLCJjb2duaXRvOmdyb3VwcyI6WyJ1c3VhcmlvX2NvbnRlbnRvaCJdLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiaXNzIjoiaHR0cHM6XC9cL2NvZ25pdG8taWRwLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tXC91cy1lYXN0LTFfWE1aUWRxa0dqIiwicGhvbmVfbnVtYmVyX3ZlcmlmaWVkIjpmYWxzZSwiY29nbml0bzp1c2VybmFtZSI6ImY1OTI3ZjhlLWNiZjctNDkyMi05ZTA5LWU2OWVjMGIyNzMxYSIsImNvZ25pdG86cm9sZXMiOlsiYXJuOmF3czppYW06Ojg5ODY3MDIzMjgwNzpyb2xlXC9jb250ZW50b2gtZGV2LXVzLWVhc3QtMS1sYW1iZGFSb2xlIl0sImF1ZCI6IjVhYzh0cGdzNmdic3ExM2ZydnJwaWVlcDQwIiwiZXZlbnRfaWQiOiIyM2Q1NTlmYi1jMzIwLTRhMjItYjJmNy1lOThhYTFhZGEyNmYiLCJ0b2tlbl91c2UiOiJpZCIsImF1dGhfdGltZSI6MTY4MzkyNjgyMSwibmFtZSI6IklzbWFlbCBMb3BleiIsInBob25lX251bWJlciI6Iis1MjMxMTEzNjYzMzYiLCJleHAiOjE2ODM5MzA0MjEsImlhdCI6MTY4MzkyNjgyMSwiZW1haWwiOiJpbG9wZXpAY29udGVudG9oLmNvbSJ9.TvCoaKoctj5mypXWMz3NyV1Vm1ToBV0vJmpVyZSQw4-ikTChkxcZ5tFYvqhk1GdvNCFttfSQIqM-14dAYYBc28YwwKP86gqOuzB1fG41rN5x1Yx3tkJq6hiVRgiBbSHWtThA9c8VnxNQbrJiaRTvvkDiM5KNTEst1oxQHL5Ct9_iKQMJMRFie7Xv0xnyS0qZ6QHK4Q2A9OHsnDkAuumALZJcE19Zh6VgSitgWrZiz3x5Text4Q-U-R48NUAzUFirAzYZzJN_fCme5pGf1AnUaZjeUjPsmrV5TBVzPEYwXO0KG8lYjL8id80D7tbGs28ZIK6B4rf3-eqI_ngmBB4CjQ",
20
20
  articleId: 238,
21
21
  category: 846,
22
22
  version: 2,
23
23
  productSelected: {
24
- orderId: 15195,
25
- article_status: "AP",
26
- datasheet_status: "AP",
27
- description_status: "AP",
28
- images_status: "AP",
24
+ orderId: 15142,
25
+ status: "AA",
26
+ datasheet_status: "AA",
29
27
  prio: "none",
30
28
  version: 3,
31
- brand: null,
29
+ description_status: "AA",
30
+ images_status: "AA",
31
+ brand: "Garnier",
32
+ retailerOrder: 0,
33
+ missing: {
34
+ datasheet: null,
35
+ descriptions: null,
36
+ images: null,
37
+ },
38
+ services: {
39
+ datasheets: 1,
40
+ descriptions: 1,
41
+ images: 1,
42
+ },
32
43
  article: {
33
44
  category:
34
- "Abarrotes Básicos|Abarrotes Básicos y Procesados|Abarrotes Básicos y Procesados",
35
- company_name: "Financiado Bodega",
36
- id_company: 912,
45
+ "Salud y Belleza|Cuidado del Cabello|Shampoos y Acondicionadores",
46
+ company_name: "GRUPO BRAHMA",
37
47
  country: "México",
38
- id_category: "4004",
39
- id_article: 39372,
40
- name: "PRUEBA04BA",
41
- upc: "001213",
48
+ id_category: "697",
49
+ id_datasheet_especialist: 54,
50
+ id_datasheet_facilitator: 52,
51
+ id_description_especialist: 54,
52
+ id_description_facilitator: 52,
53
+ id_images_especialist: 55,
54
+ id_images_facilitator: 53,
55
+ id_order: 15142,
56
+ id_article: 39270,
57
+ id_auditor: 37,
58
+ name: "Acondicionador Garnier Fructis 650 ml",
59
+ timestamp: "2023-03-27T18:37:48.000Z",
60
+ upc: "750955287656712",
42
61
  },
43
62
  retailers: [
44
63
  {
45
- id: 70,
46
- name: "Bodega Aurrera",
64
+ id: 12,
65
+ name: "La Comer",
66
+ },
67
+ {
68
+ id: 29,
69
+ name: "Farmacias del Ahorro",
70
+ },
71
+ {
72
+ id: 63,
73
+ name: "DAX",
47
74
  },
48
75
  ],
49
- services: {
50
- datasheets: 1,
51
- descriptions: 1,
52
- images: 1,
53
- },
54
76
  statusByRetailer: {
55
- 70: {
56
- datasheet: "AP",
57
- description: "AP",
58
- images: "AP",
77
+ 12: {
78
+ datasheet: "AA",
79
+ description: "AA",
80
+ images: "AA",
81
+ },
82
+ 29: {
83
+ datasheet: "AA",
84
+ description: "AA",
85
+ images: "AA",
86
+ },
87
+ 63: {
88
+ datasheet: "AA",
89
+ description: "AA",
90
+ images: "AA",
59
91
  },
60
92
  },
61
- retailersWithService: ["70"],
62
- id_article: 39372,
93
+ checked: false,
63
94
  retailersAvailable: [
64
95
  {
65
- id: 70,
66
- name: "Bodega Aurrera",
96
+ id: 12,
97
+ name: "La Comer",
98
+ },
99
+ {
100
+ id: 29,
101
+ name: "Farmacias del Ahorro",
102
+ },
103
+ {
104
+ id: 63,
105
+ name: "DAX",
67
106
  },
68
107
  ],
108
+ categoryName:
109
+ "Salud y Belleza|Cuidado del Cabello|Shampoos y Acondicionadores",
110
+ upc: "750955287656712",
111
+ id_article: 39270,
112
+ id_order: 15142,
69
113
  },
70
114
  productToEdit: {
71
- ArticleId: 39372,
72
- idCategory: "4004",
115
+ ArticleId: 39270,
116
+ idCategory: "697",
73
117
  product: {
74
- orderId: 15195,
75
- article_status: "AP",
76
- datasheet_status: "AP",
77
- description_status: "AP",
78
- images_status: "AP",
118
+ orderId: 15142,
119
+ status: "AA",
120
+ datasheet_status: "AA",
79
121
  prio: "none",
80
122
  version: 3,
81
- brand: null,
123
+ description_status: "AA",
124
+ images_status: "AA",
125
+ brand: "Garnier",
126
+ retailerOrder: 0,
127
+ missing: {
128
+ datasheet: null,
129
+ descriptions: null,
130
+ images: null,
131
+ },
132
+ services: {
133
+ datasheets: 1,
134
+ descriptions: 1,
135
+ images: 1,
136
+ },
82
137
  article: {
83
138
  category:
84
- "Abarrotes Básicos|Abarrotes Básicos y Procesados|Abarrotes Básicos y Procesados",
85
- company_name: "Financiado Bodega",
86
- id_company: 912,
139
+ "Salud y Belleza|Cuidado del Cabello|Shampoos y Acondicionadores",
140
+ company_name: "GRUPO BRAHMA",
87
141
  country: "México",
88
- id_category: "4004",
89
- id_article: 39372,
90
- name: "PRUEBA04BA",
91
- upc: "001213",
142
+ id_category: "697",
143
+ id_datasheet_especialist: 54,
144
+ id_datasheet_facilitator: 52,
145
+ id_description_especialist: 54,
146
+ id_description_facilitator: 52,
147
+ id_images_especialist: 55,
148
+ id_images_facilitator: 53,
149
+ id_order: 15142,
150
+ id_article: 39270,
151
+ id_auditor: 37,
152
+ name: "Acondicionador Garnier Fructis 650 ml",
153
+ timestamp: "2023-03-27T18:37:48.000Z",
154
+ upc: "750955287656712",
92
155
  },
93
156
  retailers: [
94
157
  {
95
- id: 70,
96
- name: "Bodega Aurrera",
158
+ id: 12,
159
+ name: "La Comer",
160
+ },
161
+ {
162
+ id: 29,
163
+ name: "Farmacias del Ahorro",
164
+ },
165
+ {
166
+ id: 63,
167
+ name: "DAX",
97
168
  },
98
169
  ],
99
- services: {
100
- datasheets: 1,
101
- descriptions: 1,
102
- images: 1,
103
- },
104
170
  statusByRetailer: {
105
- 70: {
106
- datasheet: "AP",
107
- description: "AP",
108
- images: "AP",
171
+ 12: {
172
+ datasheet: "AA",
173
+ description: "AA",
174
+ images: "AA",
175
+ },
176
+ 29: {
177
+ datasheet: "AA",
178
+ description: "AA",
179
+ images: "AA",
180
+ },
181
+ 63: {
182
+ datasheet: "AA",
183
+ description: "AA",
184
+ images: "AA",
109
185
  },
110
186
  },
111
- retailersWithService: ["70"],
112
- id_article: 39372,
187
+ checked: false,
113
188
  retailersAvailable: [
114
189
  {
115
- id: 70,
116
- name: "Bodega Aurrera",
190
+ id: 12,
191
+ name: "La Comer",
192
+ },
193
+ {
194
+ id: 29,
195
+ name: "Farmacias del Ahorro",
196
+ },
197
+ {
198
+ id: 63,
199
+ name: "DAX",
117
200
  },
118
201
  ],
202
+ categoryName:
203
+ "Salud y Belleza|Cuidado del Cabello|Shampoos y Acondicionadores",
204
+ upc: "750955287656712",
205
+ id_article: 39270,
206
+ id_order: 15142,
119
207
  },
120
208
  },
121
209
  location: {
@@ -123,35 +211,37 @@ ProviderProductEditionDefault.args = {
123
211
  search: "",
124
212
  hash: "",
125
213
  state: {
214
+ withChat: true,
215
+ chatType: "product_status",
126
216
  origin: "RequestWithContentoh",
127
217
  },
128
218
  key: "24vwut",
129
219
  },
130
220
  user: {
131
- id_user: 132,
132
- name: "Bodega",
133
- last_name: "Aurrera",
134
- email: "cadenabodega@allfreemail.net",
135
- position: "TI",
136
- telephone: "+529999999999",
221
+ id_user: 28,
222
+ name: "Ismael",
223
+ last_name: "López",
224
+ email: "ilopez@contentoh.com",
225
+ position: "Test States",
226
+ telephone: "+523111366336",
137
227
  country: "México",
138
- id_company: 912,
139
- id_cognito: "fb2304ef-e1a2-4c2b-8874-eb754e4f6332",
228
+ id_company: 1,
229
+ id_cognito: "f5927f8e-cbf7-4922-9e09-e69ec0b2731a",
140
230
  birth_Date: null,
141
- about_me: null,
142
- zip_code: null,
143
- address: null,
144
- job: null,
145
- id_stripe: null,
231
+ about_me: "",
232
+ zip_code: "",
233
+ address: "",
234
+ job: "",
235
+ id_stripe: "cus_KuEt6R6vwmN09f",
146
236
  id_role: 0,
147
237
  active: 1,
148
- is_retailer: 1,
238
+ is_retailer: 0,
149
239
  email_notify: 1,
150
- is_user_tech: null,
240
+ is_user_tech: "ADMIN-AS",
151
241
  membership: {
152
- id: 101,
153
- start_date: "2022-12-22T19:16:53.000Z",
154
- end_date: "2023-12-22T19:16:53.000Z",
242
+ id: 76,
243
+ start_date: "2022-01-18T17:25:35.000Z",
244
+ end_date: "2023-01-18T17:25:35.000Z",
155
245
  planID: 8,
156
246
  plan: "prod_KtlhECVSFG2iro",
157
247
  name: "Plan Pro",
@@ -159,33 +249,26 @@ ProviderProductEditionDefault.args = {
159
249
  products_limit: "5000",
160
250
  type: "Enterprise",
161
251
  },
162
- src: "https://content-management-profile.s3.amazonaws.com/id-132/132.png?1685370125086",
252
+ src: "https://content-management-profile.s3.amazonaws.com/id-28/28.png?1683926822779",
163
253
  },
164
254
  company: {
165
- id_company: 912,
166
- trade_name: "Financiado Bodega",
167
- company_name: "Bodega",
168
- rfc: "9395jwhs",
169
- adress: "Toluca",
170
- about_company: null,
171
- telephone: null,
172
- web_site: null,
173
- zip_code: null,
255
+ id_company: 1,
256
+ trade_name: "GRUPO BRAHMA",
257
+ company_name: "GRUPO BRAHMA",
258
+ rfc: "XAXX010101000",
259
+ adress: "AA",
260
+ about_company: "",
261
+ telephone: "",
262
+ web_site: "",
263
+ zip_code: "",
174
264
  email: null,
175
- social_link: null,
265
+ social_link: "",
176
266
  is_retailer: 0,
177
- financedRetailers: [
178
- {
179
- id: 70,
180
- name: "Bodega Aurrera",
181
- country: "México",
182
- },
183
- ],
184
267
  retailers: [
185
268
  {
186
- id: 70,
187
- name: "Bodega Aurrera",
188
- country: "México",
269
+ id: null,
270
+ name: null,
271
+ country: null,
189
272
  },
190
273
  ],
191
274
  },