contentoh-components-library 21.0.5 → 21.0.8

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 (87) hide show
  1. package/dist/components/atoms/CharCounter/CharCounter.stories.js +31 -0
  2. package/dist/components/atoms/CharCounter/index.js +22 -0
  3. package/dist/components/atoms/CharCounter/styles.js +20 -0
  4. package/dist/components/atoms/GeneralInput/index.js +78 -49
  5. package/dist/components/atoms/GeneralInput/styles.js +4 -1
  6. package/dist/components/atoms/GradientPanel/styles.js +2 -2
  7. package/dist/components/atoms/InputFormatter/index.js +132 -66
  8. package/dist/components/atoms/InputFormatter/styles.js +2 -2
  9. package/dist/components/atoms/ProgressBar/styles.js +1 -1
  10. package/dist/components/atoms/Select/index.js +4 -2
  11. package/dist/components/atoms/Select/style.js +1 -1
  12. package/dist/components/atoms/StatusTag/styles.js +1 -1
  13. package/dist/components/molecules/CarouselImagesLogin/CarouselImagesLogin.stories.js +37 -0
  14. package/dist/components/molecules/CarouselImagesLogin/index.js +94 -0
  15. package/dist/components/molecules/CarouselImagesLogin/styles.js +21 -0
  16. package/dist/components/molecules/LoginPasswordStrength/LoginPasswordStrength.stories.js +28 -0
  17. package/dist/components/molecules/LoginPasswordStrength/index.js +131 -0
  18. package/dist/components/molecules/LoginPasswordStrength/styles.js +78 -0
  19. package/dist/components/molecules/TagAndInput/index.js +4 -2
  20. package/dist/components/organisms/InputGroup/index.js +12 -10
  21. package/dist/components/pages/ChangePasswordLogin/ChangePasswordLogin.stories.js +38 -0
  22. package/dist/components/pages/ChangePasswordLogin/index.js +131 -0
  23. package/dist/components/pages/ChangePasswordLogin/styles.js +18 -0
  24. package/dist/components/pages/EmailResetPassword/EmailResetPassword.stories.js +37 -0
  25. package/dist/components/pages/EmailResetPassword/index.js +130 -0
  26. package/dist/components/pages/EmailResetPassword/styles.js +20 -0
  27. package/dist/components/pages/RegistrationLoginFirstStep/RegistrationLoginFirstStep.stories.js +37 -0
  28. package/dist/components/pages/RegistrationLoginFirstStep/index.js +269 -0
  29. package/dist/components/pages/RegistrationLoginFirstStep/styles.js +20 -0
  30. package/dist/components/pages/RegistrationLoginSecondStep/RegistrationLoginSecondStep.stories.js +38 -0
  31. package/dist/components/pages/RegistrationLoginSecondStep/index.js +176 -0
  32. package/dist/components/pages/RegistrationLoginSecondStep/styles.js +20 -0
  33. package/dist/components/pages/RegistrationLoginThirdStep/RegistrationLoginThirdStep.stories.js +37 -0
  34. package/dist/components/pages/RegistrationLoginThirdStep/index.js +178 -0
  35. package/dist/components/pages/RegistrationLoginThirdStep/styles.js +20 -0
  36. package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +15 -37
  37. package/dist/components/pages/RetailerProductEdition/index.js +92 -56
  38. package/dist/components/pages/VerificationCodeResetPassword/VerificationCodeResetPassword.stories.js +37 -0
  39. package/dist/components/pages/VerificationCodeResetPassword/index.js +121 -0
  40. package/dist/components/pages/VerificationCodeResetPassword/styles.js +20 -0
  41. package/dist/components/pages/VerificationCodeResetPassword/utils.js +69 -0
  42. package/package.json +2 -2
  43. package/src/assets/images/carouselImagesLogin/login2.svg +117 -0
  44. package/src/assets/images/carouselImagesLogin/login3.svg +147 -0
  45. package/src/assets/images/carouselImagesLogin/loginImage.svg +301 -0
  46. package/src/components/atoms/CharCounter/CharCounter.stories.js +11 -0
  47. package/src/components/atoms/CharCounter/index.js +13 -0
  48. package/src/components/atoms/CharCounter/styles.js +10 -0
  49. package/src/components/atoms/GeneralInput/index.js +74 -50
  50. package/src/components/atoms/GeneralInput/styles.js +9 -0
  51. package/src/components/atoms/GradientPanel/styles.js +7 -1
  52. package/src/components/atoms/InputFormatter/index.js +109 -46
  53. package/src/components/atoms/InputFormatter/styles.js +6 -0
  54. package/src/components/atoms/ProgressBar/styles.js +2 -1
  55. package/src/components/atoms/Select/index.js +3 -1
  56. package/src/components/atoms/Select/style.js +1 -2
  57. package/src/components/atoms/StatusTag/styles.js +2 -1
  58. package/src/components/molecules/CarouselImagesLogin/CarouselImagesLogin.stories.js +17 -0
  59. package/src/components/molecules/CarouselImagesLogin/index.js +68 -0
  60. package/src/components/molecules/CarouselImagesLogin/styles.js +60 -0
  61. package/src/components/molecules/LoginPasswordStrength/LoginPasswordStrength.stories.js +8 -0
  62. package/src/components/molecules/LoginPasswordStrength/index.js +89 -0
  63. package/src/components/molecules/LoginPasswordStrength/styles.js +87 -0
  64. package/src/components/molecules/TagAndInput/index.js +2 -0
  65. package/src/components/organisms/FullTabsMenu/index.js +1 -1
  66. package/src/components/organisms/InputGroup/index.js +19 -4
  67. package/src/components/pages/ChangePasswordLogin/ChangePasswordLogin.stories.js +18 -0
  68. package/src/components/pages/ChangePasswordLogin/index.js +78 -0
  69. package/src/components/pages/ChangePasswordLogin/styles.js +20 -0
  70. package/src/components/pages/EmailResetPassword/EmailResetPassword.stories.js +17 -0
  71. package/src/components/pages/EmailResetPassword/index.js +77 -0
  72. package/src/components/pages/EmailResetPassword/styles.js +27 -0
  73. package/src/components/pages/RegistrationLoginFirstStep/RegistrationLoginFirstStep.stories.js +17 -0
  74. package/src/components/pages/RegistrationLoginFirstStep/index.js +160 -0
  75. package/src/components/pages/RegistrationLoginFirstStep/styles.js +85 -0
  76. package/src/components/pages/RegistrationLoginSecondStep/RegistrationLoginSecondStep.stories.js +18 -0
  77. package/src/components/pages/RegistrationLoginSecondStep/index.js +111 -0
  78. package/src/components/pages/RegistrationLoginSecondStep/styles.js +64 -0
  79. package/src/components/pages/RegistrationLoginThirdStep/RegistrationLoginThirdStep.stories.js +17 -0
  80. package/src/components/pages/RegistrationLoginThirdStep/index.js +106 -0
  81. package/src/components/pages/RegistrationLoginThirdStep/styles.js +48 -0
  82. package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +27 -51
  83. package/src/components/pages/RetailerProductEdition/index.js +172 -52
  84. package/src/components/pages/VerificationCodeResetPassword/VerificationCodeResetPassword.stories.js +17 -0
  85. package/src/components/pages/VerificationCodeResetPassword/index.js +92 -0
  86. package/src/components/pages/VerificationCodeResetPassword/styles.js +54 -0
  87. package/src/components/pages/VerificationCodeResetPassword/utils.js +56 -0
@@ -0,0 +1,17 @@
1
+ import { RegistrationLoginThirdStep } from "./index";
2
+ import LoginImage from "../../../assets/images/carouselImagesLogin/loginImage.svg";
3
+ import Login2 from "../../../assets/images/carouselImagesLogin/login2.svg";
4
+ import Login3 from "../../../assets/images/carouselImagesLogin/login3.svg";
5
+
6
+ export default {
7
+ title: "Components/pages/RegistrationLoginThirdStep",
8
+ component: RegistrationLoginThirdStep,
9
+ };
10
+ const Template = (args) => <RegistrationLoginThirdStep {...args} />;
11
+
12
+ export const RegistrationLoginThirdStepDefault = Template.bind({});
13
+
14
+ RegistrationLoginThirdStepDefault.args = {
15
+ imageArrayCarousel: [LoginImage, Login2, Login3],
16
+ textCarousel: "Elige la plataforma que conecta proovedores y retailers",
17
+ };
@@ -0,0 +1,106 @@
1
+ import { Container } from "./styles";
2
+ import { GradientPanel } from "../../atoms/GradientPanel";
3
+ import { CarouselImagesLogin } from "../../molecules/CarouselImagesLogin";
4
+ import { useState } from "react";
5
+ import { LogoImage } from "../../atoms/LogoImage";
6
+ import { ScreenHeader } from "../../atoms/ScreenHeader";
7
+ import { GlobalColors, FontFamily } from "../../../global-files/variables";
8
+ import { TagAndInput } from "../../molecules/TagAndInput";
9
+ import { Button } from "../../atoms/GeneralButton";
10
+
11
+ export const RegistrationLoginThirdStep = ({
12
+ imageArrayCarousel = [],
13
+ textCarousel,
14
+ backogroundColorCarousel,
15
+ }) => {
16
+ const [emptyCommercialName, setEmptyCommercialName] = useState(false);
17
+ const [emptyBussinesName, setEmptyBussinesName] = useState(false);
18
+ const [emptyRFC, setEmptyRFC] = useState(false);
19
+ const [emptyFiscalAddress, setEmptyFiscalAddress] = useState(false);
20
+ const validate = async (e) => {
21
+ e.preventDefault();
22
+ const commercialName = document.querySelector("#commercialNameInput").value;
23
+ const bussinesName = document.querySelector("#bussinesNameInput").value;
24
+ const RFC = document.querySelector("#rfcInput").value;
25
+ const FiscalAddress = document.querySelector("#fiscalAddressInput").value;
26
+ commercialName === "" ? setEmptyCommercialName(true) : setEmptyCommercialName(false);
27
+ bussinesName === "" ? setEmptyBussinesName(true) : setEmptyBussinesName(false);
28
+ RFC === "" ? setEmptyRFC(true) : setEmptyRFC(false);
29
+ FiscalAddress === "" ? setEmptyFiscalAddress(true) : setEmptyFiscalAddress(false);
30
+ };
31
+ const loginRight = [
32
+ <LogoImage key="1" />,
33
+ <div className="credenciales" key={"2"}>
34
+ <ScreenHeader
35
+ fontFamily={FontFamily.AvenirNext}
36
+ color={GlobalColors.s5}
37
+ text={"Ingresa tus credenciales"}
38
+ />
39
+ </div>,
40
+ <div className="user" key="3">
41
+ <TagAndInput
42
+ inputType={"text"}
43
+ inputId={"commercialNameInput"}
44
+ label={"Nombre comercial"}
45
+ inputPlaceHolder={"Nombre comercial"}
46
+ />
47
+ {emptyCommercialName && <label>Ingrese el nombre comercial de la empresa</label>}
48
+ <TagAndInput
49
+ inputType={"text"}
50
+ inputId={"bussinesNameInput"}
51
+ label={"Razón social"}
52
+ inputPlaceHolder={"Razón social"}
53
+ />
54
+ {emptyBussinesName && <label>Ingrese la razón social de la empresa</label>}
55
+ <TagAndInput
56
+ inputType={"text"}
57
+ inputId={"rfcInput"}
58
+ label={"RFC"}
59
+ inputPlaceHolder={"RFC"}
60
+ />
61
+ {emptyRFC && <label>El RFC es requerido</label>}
62
+ <TagAndInput
63
+ inputType={"text"}
64
+ inputId={"fiscalAddressInput"}
65
+ label={"Direccion fiscal"}
66
+ inputPlaceHolder={"Dirección fiscal"}
67
+ />
68
+ {emptyFiscalAddress && <label>Ingrese la direccion fiscal de la empresa</label>}
69
+ </div>,
70
+ <div className="button-end" key="4">
71
+ <Button
72
+ buttonType={"general-default-button"}
73
+ label={"Enviar"}
74
+ onClick={(e) => validate(e)}
75
+ />
76
+ </div>,
77
+ <div className="progress-bar" key="5">
78
+ <div className="progress-bar-step-check"></div>
79
+ <div className="progress-bar-registration"></div>
80
+ </div>,
81
+ <ScreenHeader text={"Paso 3"} headerType={"date-header"} color={GlobalColors.s4} key="6"/>,
82
+ <div className="new-login" key="7">
83
+ <p className="pre-registro">
84
+ ¿Ya tienes una cuenta?<span> Inicia Sesión</span>
85
+ </p>
86
+ </div>,
87
+ ];
88
+ return (
89
+ <Container>
90
+ <div className="home-retailer">
91
+ <CarouselImagesLogin
92
+ panelImg={imageArrayCarousel}
93
+ panelText={textCarousel}
94
+ panelColor={backogroundColorCarousel}
95
+ />
96
+ </div>
97
+ <div className="home-login-retailer">
98
+ <GradientPanel
99
+ componentsArray={loginRight}
100
+ panelType={"home-login"}
101
+ panelColor={GlobalColors.white}
102
+ />
103
+ </div>
104
+ </Container>
105
+ );
106
+ };
@@ -0,0 +1,48 @@
1
+ import styled from "styled-components";
2
+ import { FontFamily, GlobalColors } from "../../../global-files/variables";
3
+
4
+ export const Container = styled.div`
5
+ display: flex;
6
+ width: 100%;
7
+ height: 100vh;
8
+ .user {
9
+ .input-name-header {
10
+ margin-top: 10px;
11
+ }
12
+ }
13
+ .button-end {
14
+ text-align: end;
15
+ .general-default-button {
16
+ width: 160px;
17
+ }
18
+ & + * {
19
+ margin-top: 10px;
20
+ }
21
+ }
22
+ .home-login-retailer,
23
+ .home-retailer {
24
+ width: 50%;
25
+ }
26
+ .progress-bar {
27
+ width: 100%;
28
+ height: 8px;
29
+ display: flex;
30
+ justify-content: space-between;
31
+ .progress-bar-step-check {
32
+ width: 66.66%;
33
+ background-color: ${GlobalColors.exported};
34
+ }
35
+ .progress-bar-registration {
36
+ background-color: rgb(196, 196, 196);
37
+ width: 33.33%;
38
+ }
39
+ }
40
+ .date-header {
41
+ margin-left: 66.66%;
42
+ .new-login {
43
+ & + * {
44
+ margin-top: 20px;
45
+ }
46
+ }
47
+ }
48
+ `;
@@ -44,7 +44,7 @@ RetailerProductEditionDefault.args = {
44
44
  Imágenes: false,
45
45
  },
46
46
  token:
47
- "eyJraWQiOiJkQWJkZCtlclwvTlwveVRQUWNvUlVyOCtrNUd2M1hMM2N1MWUzQ09zWExVRnc9IiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJjOTRhNzMwNS05MzY1LTQ2ZmYtYTQyMy00YjRiYzNiOGIxODAiLCJjb2duaXRvOmdyb3VwcyI6WyJjb2xhYm9yYWRvcmVzX2NvbnRlbnRvaCJdLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiaXNzIjoiaHR0cHM6XC9cL2NvZ25pdG8taWRwLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tXC91cy1lYXN0LTFfWE1aUWRxa0dqIiwicGhvbmVfbnVtYmVyX3ZlcmlmaWVkIjp0cnVlLCJjb2duaXRvOnVzZXJuYW1lIjoiYzk0YTczMDUtOTM2NS00NmZmLWE0MjMtNGI0YmMzYjhiMTgwIiwiY29nbml0bzpyb2xlcyI6WyJhcm46YXdzOmlhbTo6ODk4NjcwMjMyODA3OnJvbGVcL2NvbnRlbnRvaC1kZXYtdXMtZWFzdC0xLWxhbWJkYVJvbGUiXSwiYXVkIjoiNWFjOHRwZ3M2Z2JzcTEzZnJ2cnBpZWVwNDAiLCJldmVudF9pZCI6IjU2M2I0NTFlLTVhZDQtNGMzNy1iNjIzLTc3NjMwM2Y3YjJiNSIsInRva2VuX3VzZSI6ImlkIiwiYXV0aF90aW1lIjoxNjQ4NzYwODcwLCJuYW1lIjoiQ29sYWJvcmFkb3IiLCJwaG9uZV9udW1iZXIiOiIrNTIxMTExIiwiZXhwIjoxNjQ4NzY0NDcwLCJpYXQiOjE2NDg3NjA4NzAsImVtYWlsIjoic2FsbWVyb24uNUBob3RtYWlsLmNvbSJ9.Y2gmN-9KDeYyvvSJOzKJUP-WL8O4AmZhdLnfHxSB_9lAXQFns6uJUbX1nzE75cuqeQ3NeiNZy4hu8y5Y7hckPuQFy01nY3OoY3SfD06W0SciNz0txNSR7oN6KH_c_9FOwQiQ0mnOs9udo9nDM4faFFUuu9UD6RMVfeLW1gfZmtyc3lfmy6YO6feJcS3opSSQpXH4Mgh415fXFjbyz344ssd5nl7Onyh8jq5i-LAex3OPXhKzjrBnDRpGg3BQPIfpsquGZNKBiWqyos--CuohFBeyevMLGoKOcU-Ga-zIdEfonTtDVRe6CQLgOZJ2xTPdswlzRPby1gFoZjNebeeRVw",
47
+ "eyJraWQiOiJkQWJkZCtlclwvTlwveVRQUWNvUlVyOCtrNUd2M1hMM2N1MWUzQ09zWExVRnc9IiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJiMmNlNWIyYS02MDljLTRlNzktOWVhOS0yZjc0Y2ZmNDM4ODkiLCJjb2duaXRvOmdyb3VwcyI6WyJjb2xhYm9yYWRvcmVzX2NvbnRlbnRvaCJdLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiaXNzIjoiaHR0cHM6XC9cL2NvZ25pdG8taWRwLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tXC91cy1lYXN0LTFfWE1aUWRxa0dqIiwiY29nbml0bzp1c2VybmFtZSI6ImIyY2U1YjJhLTYwOWMtNGU3OS05ZWE5LTJmNzRjZmY0Mzg4OSIsImNvZ25pdG86cm9sZXMiOlsiYXJuOmF3czppYW06Ojg5ODY3MDIzMjgwNzpyb2xlXC9jb250ZW50b2gtZGV2LXVzLWVhc3QtMS1sYW1iZGFSb2xlIl0sImF1ZCI6IjVhYzh0cGdzNmdic3ExM2ZydnJwaWVlcDQwIiwiZXZlbnRfaWQiOiJkMGQ0NDUxYS01ODg1LTQ0ZTctYjZhNi0xODdkY2NjNDI4MTgiLCJ0b2tlbl91c2UiOiJpZCIsImF1dGhfdGltZSI6MTY1MTIyMDI2NiwibmFtZSI6IkNvbGFib3JhZG9yIiwicGhvbmVfbnVtYmVyIjoiKzUyMTExMSIsImV4cCI6MTY1MTIyMzg2NiwiaWF0IjoxNjUxMjIwMjY2LCJlbWFpbCI6ImF6YXJhdGVAY29udGVudG9oLmNvbSJ9.lhlgp4NoHgFu4LrpIWiGCTD08MIHo-mLQ17SNx1rAmyHP5YosGp9LKJXEgNcpAIaVfFiy4Zd-YGTf2QExMcP9kAYksoKHI1G6jSg87yh3Pg3V3aGE6X6JkuOOflz2M8jZgyYMRvbkJfG7oi6uj_nZ-tCjq7VMnmZyfWL4LjTvF5E0EqzVC93fcPViwW5ozqr51VvGhIoXGHiG01i4CPbsorp0jJjlU795cq4ETNw6i0d61Wz9pLDUttYmt5RCEMrbCp3ctSymtxHuz3eJTXzsF330KAmGL2SG4hJ8l-kdyoYRSlkGy3PTy4tYdFVrcubpHL3LOFzJWMrmLn98J3MoA",
48
48
  articleId: 238,
49
49
  category: 846,
50
50
  version: 2,
@@ -54,99 +54,75 @@ RetailerProductEditionDefault.args = {
54
54
  descriptions: 1,
55
55
  images: 1,
56
56
  },
57
- orderId: 113,
57
+ orderId: 125,
58
58
  status: "IN_PROGRESS",
59
- datasheet_status: "IN_PROGRESS",
59
+ datasheet_status: "QF",
60
60
  prio: "none",
61
61
  version: 2,
62
- description_status: "IN_PROGRESS",
62
+ description_status: "QF",
63
63
  images_status: "IN_PROGRESS",
64
64
  article: {
65
- id_article: 324,
66
- id_category: "684",
67
- name: "Crema dental ",
68
- upc: "154161",
69
- timestamp: "2022-04-12T14:46:42.000Z",
65
+ id_article: 109483,
66
+ id_category: "2046",
67
+ name: "Celular",
68
+ upc: "31313131",
69
+ timestamp: "2022-04-28T21:42:27.000Z",
70
70
  id_user: 28,
71
71
  status: "NULL",
72
72
  active: 1,
73
73
  company_id: 1,
74
74
  company_name: "COMPANY DEV",
75
75
  country: "Colombia",
76
- id_order: 113,
77
- id_datasheet_especialist: 36,
76
+ id_order: 125,
77
+ id_datasheet_especialist: 54,
78
78
  id_datasheet_facilitator: 52,
79
- id_description_especialist: 36,
79
+ id_description_especialist: 54,
80
80
  id_description_facilitator: 52,
81
81
  id_images_especialist: 55,
82
82
  id_images_facilitator: 53,
83
83
  id_auditor: 30,
84
84
  id_recepcionist: null,
85
- category: "SALUD Y BELLEZA|CUIDADO BUCAL|PASTAS DENTALES Y ASEO BUCAL",
85
+ category: "ELÉCTRICO|ELECTRÓNICA|ANTENAS Y ACCESORIOS",
86
86
  missingAttributes: null,
87
87
  missingDescriptions: null,
88
88
  missingImages: null,
89
89
  },
90
90
  retailers: [
91
91
  {
92
- id: 4,
93
- name: "Walmart Super y Superama",
92
+ id: 58,
93
+ name: "The Home Depot",
94
94
  country: "México",
95
95
  id_region: 1,
96
96
  active: 1,
97
97
  },
98
98
  {
99
- id: 5,
100
- name: "Chedraui",
101
- country: "México",
102
- id_region: 1,
103
- active: 1,
104
- },
105
- {
106
- id: 6,
107
- name: "HEB",
108
- country: "México",
109
- id_region: 1,
110
- active: 1,
111
- },
112
- {
113
- id: 12,
114
- name: "La Comer",
99
+ id: 59,
100
+ name: "Home Depot Platinum",
115
101
  country: "México",
116
102
  id_region: 1,
117
103
  active: 1,
118
104
  },
119
105
  ],
120
106
  country: "Colombia",
121
- modal: false,
122
- modalCadenas: false,
123
- totalCadenas: false,
124
- modalAsig1: false,
125
- modalFD: false,
126
- modalAsig2: false,
127
- modalAsig3: false,
128
- modalAsig4: false,
129
- modalAsig5: false,
130
- modalFI: false,
131
- modalQA: false,
107
+ upc: "31313131",
132
108
  },
133
109
  user: {
134
- id_user: 30,
135
- name: "Admin",
136
- last_name: "Ulises",
137
- email: "salmeron.5@hotmail.com",
138
- position: "Admin",
110
+ id_user: 52,
111
+ name: "FACILITADOR TXT PRUEBA",
112
+ last_name: "",
113
+ email: "azarate@contentoh.com",
114
+ position: null,
139
115
  telephone: null,
140
- country: "México",
116
+ country: null,
141
117
  id_company: 2,
142
- id_cognito: "c94a7305-9365-46ff-a423-4b4bc3b8b180",
118
+ id_cognito: "b2ce5b2a-609c-4e79-9ea9-2f74cff43889",
143
119
  birth_Date: null,
144
120
  about_me: null,
145
121
  zip_code: null,
146
122
  address: null,
147
123
  job: null,
148
124
  id_stripe: null,
149
- id_role: 6,
125
+ id_role: 4,
150
126
  active: 1,
151
127
  is_retailer: 0,
152
128
  membership: {
@@ -160,6 +136,6 @@ RetailerProductEditionDefault.args = {
160
136
  products_limit: "3",
161
137
  type: "PyMES",
162
138
  },
163
- src: "https://content-management-profile.s3.amazonaws.com/id-30/30.png?1649434410216",
139
+ src: "https://content-management-profile.s3.amazonaws.com/id-52/52.png?1651207506986",
164
140
  },
165
141
  };