contentoh-components-library 21.0.70 → 21.0.73
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.
- package/.env.development +20 -5
- package/.env.production +18 -3
- package/CHANGELOG.md +31 -33
- package/dist/assets/images/generalButton/downloadIcon.svg +3 -0
- package/dist/assets/images/genericModal/closeWhite.svg +3 -0
- package/dist/assets/images/genericModal/errorModal.svg +3 -0
- package/dist/assets/images/genericModal/yellowAlert.svg +12 -0
- package/dist/assets/images/modalsSVGs/attributesSent.svg +208 -0
- package/dist/assets/images/modalsSVGs/descriptionSent.svg +237 -0
- package/dist/assets/images/modalsSVGs/providerSent.svg +445 -0
- package/dist/assets/images/modalsSVGs/uploadingImages.svg +148 -0
- package/dist/components/atoms/AsignationOption/index.js +9 -5
- package/dist/components/atoms/AsignationOption/styles.js +1 -1
- package/dist/components/{molecules/SignInLogin/SignInLogin.stories.js → atoms/CharCounter/CharCounter.stories.js} +10 -7
- package/dist/components/atoms/CharCounter/index.js +22 -0
- package/dist/components/{molecules/LogoLoading → atoms/CharCounter}/styles.js +3 -1
- package/dist/components/atoms/CheckBox/index.js +4 -2
- package/dist/components/atoms/Commentary/Commentary.stories.js +1 -0
- package/dist/components/atoms/Commentary/index.js +23 -0
- package/dist/components/{organisms/ChangePassword → atoms/Commentary}/styles.js +6 -1
- package/dist/components/atoms/GeneralButton/index.js +5 -0
- package/dist/components/atoms/GeneralButton/styles.js +4 -2
- package/dist/components/atoms/GeneralInput/index.js +72 -25
- package/dist/components/atoms/GeneralInput/styles.js +7 -1
- package/dist/components/atoms/GenericModal/index.js +4 -2
- package/dist/components/atoms/GenericModal/styles.js +1 -1
- package/dist/components/atoms/GradientPanel/styles.js +1 -1
- package/dist/components/atoms/Input/index.js +26 -0
- package/dist/components/atoms/Input/style.js +26 -0
- package/dist/components/{organisms/ChangePassword/ChangePassword.stories.js → atoms/InputFormatter/Wysiwyg.stories.js} +9 -7
- package/dist/components/atoms/InputFormatter/index.js +184 -0
- package/dist/components/atoms/InputFormatter/styles.js +33 -0
- package/dist/components/atoms/LabelToInput/index.js +53 -0
- package/dist/components/atoms/LabelToInput/style.js +22 -0
- package/dist/components/atoms/Loading/index.js +0 -1
- package/dist/components/atoms/LogoImage/index.js +0 -1
- package/dist/components/atoms/Percent/Percent.stories.js +39 -0
- package/dist/components/atoms/Percent/index.js +39 -0
- package/dist/components/atoms/Percent/styles.js +20 -0
- package/dist/components/atoms/PriorityFlag/index.js +1 -1
- package/dist/components/atoms/ProductImage/styles.js +1 -1
- package/dist/components/atoms/ProgressBar/index.js +2 -2
- package/dist/components/atoms/ProgressBar/styles.js +3 -5
- package/dist/components/atoms/ScreenHeader/index.js +1 -1
- package/dist/components/atoms/ScreenHeader/styles.js +1 -1
- package/dist/components/atoms/Select/index.js +39 -0
- package/dist/components/atoms/Select/style.js +32 -0
- package/dist/components/atoms/StatusTag/index.js +37 -2
- package/dist/components/atoms/StatusTag/styles.js +1 -1
- package/dist/components/atoms/ValidationPanel/index.js +5 -3
- package/dist/components/molecules/AvatarAndValidation/index.js +17 -7
- package/dist/components/molecules/AvatarAndValidation/styles.js +1 -1
- package/dist/components/molecules/CarouselImagesLogin/index.js +42 -40
- package/dist/components/molecules/FeaturesBar/index.js +1 -1
- package/dist/components/molecules/GalleryElement/index.js +80 -21
- package/dist/components/molecules/GalleryElement/styles.js +1 -1
- package/dist/components/molecules/GalleryHeader/index.js +28 -6
- package/dist/components/molecules/GalleryHeader/styles.js +1 -1
- package/dist/components/molecules/ImageSelector/index.js +2 -4
- package/dist/components/molecules/LoginPasswordStrength/index.js +6 -6
- package/dist/components/molecules/LoginPasswordStrength/styles.js +1 -1
- package/dist/components/molecules/ProductNameHeader/index.js +1 -2
- package/dist/components/molecules/RetailerSelector/RetailerSelector.stories.js +48 -0
- package/dist/components/molecules/RetailerSelector/index.js +74 -0
- package/dist/components/{atoms/MenuCommercialRetailers → molecules/RetailerSelector}/styles.js +1 -1
- package/dist/components/molecules/StatusAsignationInfo/index.js +46 -28
- package/dist/components/molecules/StatusAsignationInfo/styles.js +1 -1
- package/dist/components/molecules/TableHeader/index.js +12 -5
- package/dist/components/molecules/TableHeader/styles.js +1 -1
- package/dist/components/molecules/TagAndInput/index.js +24 -2
- package/dist/components/molecules/TextAndGradient/TextAndGradient.stories.js +31 -0
- package/dist/components/molecules/TextAndGradient/index.js +36 -0
- package/dist/components/molecules/TextAndGradient/styles.js +18 -0
- package/dist/components/organisms/FullProductNameHeader/index.js +31 -9
- package/dist/components/organisms/FullTabsMenu/index.js +18 -5
- package/dist/components/organisms/GlobalModal/index.js +73 -0
- package/dist/components/organisms/GlobalModal/styles.js +66 -0
- package/dist/components/organisms/ImageDataTable/index.js +90 -14
- package/dist/components/organisms/InputGroup/index.js +34 -13
- package/dist/components/organisms/InputGroup/styles.js +1 -1
- package/dist/components/organisms/ProductImageModal/index.js +13 -10
- package/dist/components/organisms/ProductImageModal/styles.js +1 -1
- package/dist/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +135 -0
- package/dist/components/pages/ProviderProductEdition/index.js +1979 -0
- package/dist/components/pages/ProviderProductEdition/styles.js +23 -0
- package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +91 -347
- package/dist/components/pages/RetailerProductEdition/index.js +1610 -60
- package/dist/components/pages/RetailerProductEdition/styles.js +1 -1
- package/dist/global-files/data.js +213 -53
- package/dist/global-files/global-styles.css +1 -0
- package/dist/global-files/variables.js +1 -0
- package/dist/index.js +30 -277
- package/package.json +17 -18
- package/src/assets/images/generalButton/downloadIcon.svg +3 -0
- package/src/assets/images/genericModal/closeWhite.svg +3 -0
- package/src/assets/images/genericModal/errorModal.svg +3 -0
- package/src/assets/images/genericModal/yellowAlert.svg +12 -0
- package/src/assets/images/modalsSVGs/attributesSent.svg +208 -0
- package/src/assets/images/modalsSVGs/descriptionSent.svg +237 -0
- package/src/assets/images/modalsSVGs/providerSent.svg +445 -0
- package/src/assets/images/modalsSVGs/uploadingImages.svg +148 -0
- package/src/components/atoms/AsignationOption/index.js +7 -5
- package/src/components/atoms/AsignationOption/styles.js +9 -1
- package/src/components/atoms/CharCounter/CharCounter.stories.js +11 -0
- package/src/components/atoms/CharCounter/index.js +13 -0
- package/src/components/atoms/CharCounter/styles.js +10 -0
- package/src/components/atoms/CheckBox/index.js +8 -2
- package/src/components/atoms/Commentary/Commentary.stories.js +0 -0
- package/src/components/atoms/Commentary/index.js +9 -0
- package/src/components/atoms/Commentary/styles.js +16 -0
- package/src/components/atoms/GeneralButton/index.js +9 -2
- package/src/components/atoms/GeneralButton/styles.js +23 -0
- package/src/components/atoms/GeneralInput/index.js +71 -23
- package/src/components/atoms/GeneralInput/styles.js +11 -1
- package/src/components/atoms/GenericModal/index.js +2 -2
- package/src/components/atoms/GenericModal/styles.js +10 -2
- package/src/components/atoms/GradientPanel/styles.js +0 -1
- package/src/components/atoms/Input/index.js +15 -0
- package/src/components/atoms/Input/style.js +31 -0
- package/src/components/atoms/InputFormatter/Wysiwyg.stories.js +12 -0
- package/src/components/atoms/InputFormatter/index.js +144 -0
- package/src/components/atoms/InputFormatter/styles.js +40 -0
- package/src/components/atoms/LabelToInput/index.js +26 -0
- package/src/components/atoms/LabelToInput/style.js +41 -0
- package/src/components/atoms/Loading/index.js +2 -3
- package/src/components/atoms/LogoImage/index.js +1 -1
- package/src/components/atoms/PriorityFlag/index.js +1 -1
- package/src/components/atoms/ProductImage/styles.js +1 -1
- package/src/components/atoms/ProgressBar/index.js +2 -2
- package/src/components/atoms/ProgressBar/styles.js +54 -3
- package/src/components/atoms/ScreenHeader/index.js +7 -3
- package/src/components/atoms/ScreenHeader/styles.js +9 -2
- package/src/components/atoms/Select/index.js +35 -0
- package/src/components/atoms/Select/style.js +76 -0
- package/src/components/atoms/StatusTag/index.js +30 -2
- package/src/components/atoms/StatusTag/styles.js +15 -3
- package/src/components/atoms/ValidationPanel/index.js +4 -3
- package/src/components/molecules/AvatarAndValidation/index.js +23 -6
- package/src/components/molecules/AvatarAndValidation/styles.js +1 -1
- package/src/components/molecules/CarouselImagesLogin/index.js +37 -34
- package/src/components/molecules/FeaturesBar/index.js +10 -7
- package/src/components/molecules/GalleryElement/index.js +75 -36
- package/src/components/molecules/GalleryElement/styles.js +38 -11
- package/src/components/molecules/GalleryHeader/index.js +14 -8
- package/src/components/molecules/GalleryHeader/styles.js +16 -0
- package/src/components/molecules/ImageSelector/index.js +2 -3
- package/src/components/molecules/LoginPasswordStrength/index.js +3 -8
- package/src/components/molecules/LoginPasswordStrength/styles.js +0 -3
- package/src/components/molecules/ProductNameHeader/index.js +1 -2
- package/src/components/molecules/RetailerSelector/RetailerSelector.stories.js +35 -0
- package/src/components/molecules/RetailerSelector/index.js +63 -0
- package/src/components/molecules/RetailerSelector/styles.js +18 -0
- package/src/components/molecules/StatusAsignationInfo/index.js +64 -39
- package/src/components/molecules/StatusAsignationInfo/styles.js +12 -2
- package/src/components/molecules/TableHeader/index.js +16 -3
- package/src/components/molecules/TableHeader/styles.js +5 -0
- package/src/components/molecules/TagAndInput/index.js +24 -2
- package/src/components/organisms/FullProductNameHeader/index.js +38 -8
- package/src/components/organisms/FullTabsMenu/index.js +15 -3
- package/src/components/organisms/GlobalModal/index.js +68 -0
- package/src/components/organisms/GlobalModal/styles.js +113 -0
- package/src/components/organisms/ImageDataTable/index.js +89 -11
- package/src/components/organisms/InputGroup/index.js +46 -11
- package/src/components/organisms/InputGroup/styles.js +3 -0
- package/src/components/organisms/ProductImageModal/index.js +19 -12
- package/src/components/organisms/ProductImageModal/styles.js +3 -0
- package/src/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +123 -0
- package/src/components/pages/ProviderProductEdition/index.js +1493 -0
- package/src/components/pages/ProviderProductEdition/styles.js +118 -0
- package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +91 -343
- package/src/components/pages/RetailerProductEdition/index.js +1245 -48
- package/src/components/pages/RetailerProductEdition/styles.js +67 -4
- package/src/global-files/data.js +158 -57
- package/src/global-files/global-styles.css +1 -0
- package/src/global-files/variables.js +1 -0
- package/src/index.js +1 -20
- package/dist/assets/images/editField/showPassword.png +0 -0
- package/dist/assets/images/sliderToolTip/infoIcon.svg +0 -4
- package/dist/assets/images/sliderToolTip/slide1.svg +0 -5
- package/dist/assets/images/sliderToolTip/slide2.svg +0 -9
- package/dist/assets/images/sliderToolTip/slide3.svg +0 -9
- package/dist/assets/images/sliderToolTip/slide4.svg +0 -9
- package/dist/assets/images/sliderToolTip/slide5.svg +0 -40
- package/dist/components/atoms/ListCommercialRetailers/ListCommercialRetailers.stories.js +0 -36
- package/dist/components/atoms/ListCommercialRetailers/index.js +0 -64
- package/dist/components/atoms/ListCommercialRetailers/styles.js +0 -20
- package/dist/components/atoms/Loading/Loading.stories.js +0 -28
- package/dist/components/atoms/MenuCommercialRetailers/MenuCommercialRetailers.stories.js +0 -37
- package/dist/components/atoms/MenuCommercialRetailers/index.js +0 -25
- package/dist/components/atoms/MenuProductImage/MenuProductImage.stories.js +0 -28
- package/dist/components/atoms/MenuProductImage/index.js +0 -88
- package/dist/components/atoms/MenuProductImage/styles.js +0 -20
- package/dist/components/atoms/SliderToolTip/SliderToolTip.stories.js +0 -47
- package/dist/components/atoms/SliderToolTip/index.js +0 -200
- package/dist/components/atoms/SliderToolTip/styles.js +0 -24
- package/dist/components/atoms/VerticalSideMenuMainPage/VerticalSideMenuMainPage.stories.js +0 -22
- package/dist/components/atoms/VerticalSideMenuMainPage/index.js +0 -49
- package/dist/components/atoms/VerticalSideMenuMainPage/styles.js +0 -18
- package/dist/components/molecules/ApproveRejetPanel/ApproveRejetPanel.stories.js +0 -25
- package/dist/components/molecules/ApproveRejetPanel/index.js +0 -49
- package/dist/components/molecules/ApproveRejetPanel/styles.js +0 -18
- package/dist/components/molecules/EmailResetPasswordLogin/EmailResetPasswordLogin.stories.js +0 -28
- package/dist/components/molecules/EmailResetPasswordLogin/index.js +0 -153
- package/dist/components/molecules/EmailResetPasswordLogin/styles.js +0 -20
- package/dist/components/molecules/LogoLoading/Loading.stories.js +0 -28
- package/dist/components/molecules/LogoLoading/index.js +0 -22
- package/dist/components/molecules/RegistrationFirstStep/RegistrationFirstStep.stories.js +0 -28
- package/dist/components/molecules/RegistrationFirstStep/index.js +0 -308
- package/dist/components/molecules/RegistrationFirstStep/styles.js +0 -20
- package/dist/components/molecules/RegistrationSecondStep/RegistrationSecondStep.stories.js +0 -28
- package/dist/components/molecules/RegistrationSecondStep/index.js +0 -169
- package/dist/components/molecules/RegistrationSecondStep/styles.js +0 -20
- package/dist/components/molecules/RegistrationThirdStep/RegistrationThirdStep.stories.js +0 -28
- package/dist/components/molecules/RegistrationThirdStep/index.js +0 -155
- package/dist/components/molecules/RegistrationThirdStep/styles.js +0 -20
- package/dist/components/molecules/SignInLogin/index.js +0 -321
- package/dist/components/molecules/SignInLogin/styles.js +0 -20
- package/dist/components/molecules/SignInLoginCreationApp/SignInLogin.stories.js +0 -28
- package/dist/components/molecules/SignInLoginCreationApp/index.js +0 -270
- package/dist/components/molecules/SignInLoginCreationApp/styles.js +0 -20
- package/dist/components/molecules/VerificationCodeResetPasswordLogin/VerificationCodeResetPasswordLogin.stories.js +0 -28
- package/dist/components/molecules/VerificationCodeResetPasswordLogin/index.js +0 -210
- package/dist/components/molecules/VerificationCodeResetPasswordLogin/styles.js +0 -20
- package/dist/components/molecules/VerificationCodeResetPasswordLogin/utils.js +0 -69
- package/dist/components/organisms/ChangePassword/index.js +0 -123
- package/src/assets/images/editField/showPassword.png +0 -0
- package/src/assets/images/sliderToolTip/infoIcon.svg +0 -4
- package/src/assets/images/sliderToolTip/slide1.svg +0 -5
- package/src/assets/images/sliderToolTip/slide2.svg +0 -9
- package/src/assets/images/sliderToolTip/slide3.svg +0 -9
- package/src/assets/images/sliderToolTip/slide4.svg +0 -9
- package/src/assets/images/sliderToolTip/slide5.svg +0 -40
- package/src/components/atoms/Loading/Loading.stories.js +0 -10
- package/src/components/atoms/SliderToolTip/SliderToolTip.stories.js +0 -23
- package/src/components/atoms/SliderToolTip/index.js +0 -182
- package/src/components/atoms/SliderToolTip/styles.js +0 -168
- package/src/components/molecules/EmailResetPasswordLogin/EmailResetPasswordLogin.stories.js +0 -11
- package/src/components/molecules/EmailResetPasswordLogin/index.js +0 -85
- package/src/components/molecules/EmailResetPasswordLogin/styles.js +0 -23
- package/src/components/molecules/LogoLoading/Loading.stories.js +0 -10
- package/src/components/molecules/LogoLoading/index.js +0 -12
- package/src/components/molecules/LogoLoading/styles.js +0 -16
- package/src/components/molecules/RegistrationFirstStep/RegistrationFirstStep.stories.js +0 -11
- package/src/components/molecules/RegistrationFirstStep/index.js +0 -227
- package/src/components/molecules/RegistrationFirstStep/styles.js +0 -87
- package/src/components/molecules/RegistrationSecondStep/RegistrationSecondStep.stories.js +0 -11
- package/src/components/molecules/RegistrationSecondStep/index.js +0 -130
- package/src/components/molecules/RegistrationSecondStep/styles.js +0 -59
- package/src/components/molecules/RegistrationThirdStep/RegistrationThirdStep.stories.js +0 -11
- package/src/components/molecules/RegistrationThirdStep/index.js +0 -130
- package/src/components/molecules/RegistrationThirdStep/styles.js +0 -44
- package/src/components/molecules/SignInLogin/SignInLogin.stories.js +0 -11
- package/src/components/molecules/SignInLogin/index.js +0 -226
- package/src/components/molecules/SignInLogin/styles.js +0 -120
- package/src/components/molecules/VerificationCodeResetPasswordLogin/VerificationCodeResetPasswordLogin.stories.js +0 -11
- package/src/components/molecules/VerificationCodeResetPasswordLogin/index.js +0 -170
- package/src/components/molecules/VerificationCodeResetPasswordLogin/styles.js +0 -51
- package/src/components/molecules/VerificationCodeResetPasswordLogin/utils.js +0 -54
- package/src/components/organisms/ChangePassword/ChangePassword.stories.js +0 -11
- package/src/components/organisms/ChangePassword/index.js +0 -76
- package/src/components/organisms/ChangePassword/styles.js +0 -13
package/dist/index.js
CHANGED
|
@@ -160,7 +160,7 @@ Object.keys(_index12).forEach(function (key) {
|
|
|
160
160
|
});
|
|
161
161
|
});
|
|
162
162
|
|
|
163
|
-
var _index13 = require("./components/atoms/
|
|
163
|
+
var _index13 = require("./components/atoms/PriorityFlag/index");
|
|
164
164
|
|
|
165
165
|
Object.keys(_index13).forEach(function (key) {
|
|
166
166
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -173,7 +173,7 @@ Object.keys(_index13).forEach(function (key) {
|
|
|
173
173
|
});
|
|
174
174
|
});
|
|
175
175
|
|
|
176
|
-
var _index14 = require("./components/atoms/
|
|
176
|
+
var _index14 = require("./components/atoms/ProductImage/index");
|
|
177
177
|
|
|
178
178
|
Object.keys(_index14).forEach(function (key) {
|
|
179
179
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -186,7 +186,7 @@ Object.keys(_index14).forEach(function (key) {
|
|
|
186
186
|
});
|
|
187
187
|
});
|
|
188
188
|
|
|
189
|
-
var _index15 = require("./components/atoms/
|
|
189
|
+
var _index15 = require("./components/atoms/ProgressBar/index");
|
|
190
190
|
|
|
191
191
|
Object.keys(_index15).forEach(function (key) {
|
|
192
192
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -199,7 +199,7 @@ Object.keys(_index15).forEach(function (key) {
|
|
|
199
199
|
});
|
|
200
200
|
});
|
|
201
201
|
|
|
202
|
-
var _index16 = require("./components/atoms/
|
|
202
|
+
var _index16 = require("./components/atoms/ScreenHeader/index");
|
|
203
203
|
|
|
204
204
|
Object.keys(_index16).forEach(function (key) {
|
|
205
205
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -212,7 +212,7 @@ Object.keys(_index16).forEach(function (key) {
|
|
|
212
212
|
});
|
|
213
213
|
});
|
|
214
214
|
|
|
215
|
-
var _index17 = require("./components/atoms/
|
|
215
|
+
var _index17 = require("./components/atoms/SideMenuButton/index");
|
|
216
216
|
|
|
217
217
|
Object.keys(_index17).forEach(function (key) {
|
|
218
218
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -225,7 +225,7 @@ Object.keys(_index17).forEach(function (key) {
|
|
|
225
225
|
});
|
|
226
226
|
});
|
|
227
227
|
|
|
228
|
-
var _index18 = require("./components/atoms/
|
|
228
|
+
var _index18 = require("./components/atoms/StatusTag/index");
|
|
229
229
|
|
|
230
230
|
Object.keys(_index18).forEach(function (key) {
|
|
231
231
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -238,7 +238,7 @@ Object.keys(_index18).forEach(function (key) {
|
|
|
238
238
|
});
|
|
239
239
|
});
|
|
240
240
|
|
|
241
|
-
var _index19 = require("./components/atoms/
|
|
241
|
+
var _index19 = require("./components/atoms/TabSection/index");
|
|
242
242
|
|
|
243
243
|
Object.keys(_index19).forEach(function (key) {
|
|
244
244
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -251,7 +251,7 @@ Object.keys(_index19).forEach(function (key) {
|
|
|
251
251
|
});
|
|
252
252
|
});
|
|
253
253
|
|
|
254
|
-
var _index20 = require("./components/atoms/
|
|
254
|
+
var _index20 = require("./components/atoms/ValidationPanel/index");
|
|
255
255
|
|
|
256
256
|
Object.keys(_index20).forEach(function (key) {
|
|
257
257
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -264,7 +264,7 @@ Object.keys(_index20).forEach(function (key) {
|
|
|
264
264
|
});
|
|
265
265
|
});
|
|
266
266
|
|
|
267
|
-
var _index21 = require("./components/
|
|
267
|
+
var _index21 = require("./components/molecules/AvatarAndValidation/index");
|
|
268
268
|
|
|
269
269
|
Object.keys(_index21).forEach(function (key) {
|
|
270
270
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -277,7 +277,7 @@ Object.keys(_index21).forEach(function (key) {
|
|
|
277
277
|
});
|
|
278
278
|
});
|
|
279
279
|
|
|
280
|
-
var _index22 = require("./components/
|
|
280
|
+
var _index22 = require("./components/molecules/EditionActiveImage/index");
|
|
281
281
|
|
|
282
282
|
Object.keys(_index22).forEach(function (key) {
|
|
283
283
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -290,7 +290,7 @@ Object.keys(_index22).forEach(function (key) {
|
|
|
290
290
|
});
|
|
291
291
|
});
|
|
292
292
|
|
|
293
|
-
var _index23 = require("./components/
|
|
293
|
+
var _index23 = require("./components/molecules/FeaturesBar/index");
|
|
294
294
|
|
|
295
295
|
Object.keys(_index23).forEach(function (key) {
|
|
296
296
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -303,7 +303,7 @@ Object.keys(_index23).forEach(function (key) {
|
|
|
303
303
|
});
|
|
304
304
|
});
|
|
305
305
|
|
|
306
|
-
var _index24 = require("./components/molecules/
|
|
306
|
+
var _index24 = require("./components/molecules/GalleryElement/index");
|
|
307
307
|
|
|
308
308
|
Object.keys(_index24).forEach(function (key) {
|
|
309
309
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -316,20 +316,7 @@ Object.keys(_index24).forEach(function (key) {
|
|
|
316
316
|
});
|
|
317
317
|
});
|
|
318
318
|
|
|
319
|
-
var
|
|
320
|
-
|
|
321
|
-
Object.keys(_CarouselImagesLogin).forEach(function (key) {
|
|
322
|
-
if (key === "default" || key === "__esModule") return;
|
|
323
|
-
if (key in exports && exports[key] === _CarouselImagesLogin[key]) return;
|
|
324
|
-
Object.defineProperty(exports, key, {
|
|
325
|
-
enumerable: true,
|
|
326
|
-
get: function get() {
|
|
327
|
-
return _CarouselImagesLogin[key];
|
|
328
|
-
}
|
|
329
|
-
});
|
|
330
|
-
});
|
|
331
|
-
|
|
332
|
-
var _index25 = require("./components/molecules/EditionActiveImage/index");
|
|
319
|
+
var _index25 = require("./components/molecules/HeaderTop/index");
|
|
333
320
|
|
|
334
321
|
Object.keys(_index25).forEach(function (key) {
|
|
335
322
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -342,7 +329,7 @@ Object.keys(_index25).forEach(function (key) {
|
|
|
342
329
|
});
|
|
343
330
|
});
|
|
344
331
|
|
|
345
|
-
var _index26 = require("./components/molecules/
|
|
332
|
+
var _index26 = require("./components/molecules/ImageSelector/index");
|
|
346
333
|
|
|
347
334
|
Object.keys(_index26).forEach(function (key) {
|
|
348
335
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -355,7 +342,7 @@ Object.keys(_index26).forEach(function (key) {
|
|
|
355
342
|
});
|
|
356
343
|
});
|
|
357
344
|
|
|
358
|
-
var _index27 = require("./components/molecules/
|
|
345
|
+
var _index27 = require("./components/molecules/PlanSelection/index");
|
|
359
346
|
|
|
360
347
|
Object.keys(_index27).forEach(function (key) {
|
|
361
348
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -368,7 +355,7 @@ Object.keys(_index27).forEach(function (key) {
|
|
|
368
355
|
});
|
|
369
356
|
});
|
|
370
357
|
|
|
371
|
-
var _index28 = require("./components/molecules/
|
|
358
|
+
var _index28 = require("./components/molecules/ProductNameHeader/index");
|
|
372
359
|
|
|
373
360
|
Object.keys(_index28).forEach(function (key) {
|
|
374
361
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -381,7 +368,7 @@ Object.keys(_index28).forEach(function (key) {
|
|
|
381
368
|
});
|
|
382
369
|
});
|
|
383
370
|
|
|
384
|
-
var _index29 = require("./components/molecules/
|
|
371
|
+
var _index29 = require("./components/molecules/StatusAsignationInfo/index");
|
|
385
372
|
|
|
386
373
|
Object.keys(_index29).forEach(function (key) {
|
|
387
374
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -394,7 +381,7 @@ Object.keys(_index29).forEach(function (key) {
|
|
|
394
381
|
});
|
|
395
382
|
});
|
|
396
383
|
|
|
397
|
-
var _index30 = require("./components/molecules/
|
|
384
|
+
var _index30 = require("./components/molecules/TableHeader/index");
|
|
398
385
|
|
|
399
386
|
Object.keys(_index30).forEach(function (key) {
|
|
400
387
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -407,7 +394,7 @@ Object.keys(_index30).forEach(function (key) {
|
|
|
407
394
|
});
|
|
408
395
|
});
|
|
409
396
|
|
|
410
|
-
var _index31 = require("./components/molecules/
|
|
397
|
+
var _index31 = require("./components/molecules/TableRow/index");
|
|
411
398
|
|
|
412
399
|
Object.keys(_index31).forEach(function (key) {
|
|
413
400
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -420,7 +407,7 @@ Object.keys(_index31).forEach(function (key) {
|
|
|
420
407
|
});
|
|
421
408
|
});
|
|
422
409
|
|
|
423
|
-
var _index32 = require("./components/molecules/
|
|
410
|
+
var _index32 = require("./components/molecules/TabsMenu/index");
|
|
424
411
|
|
|
425
412
|
Object.keys(_index32).forEach(function (key) {
|
|
426
413
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -433,7 +420,7 @@ Object.keys(_index32).forEach(function (key) {
|
|
|
433
420
|
});
|
|
434
421
|
});
|
|
435
422
|
|
|
436
|
-
var _index33 = require("./components/molecules/
|
|
423
|
+
var _index33 = require("./components/molecules/TagAndInput/index");
|
|
437
424
|
|
|
438
425
|
Object.keys(_index33).forEach(function (key) {
|
|
439
426
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -446,7 +433,7 @@ Object.keys(_index33).forEach(function (key) {
|
|
|
446
433
|
});
|
|
447
434
|
});
|
|
448
435
|
|
|
449
|
-
var _index34 = require("./components/molecules/
|
|
436
|
+
var _index34 = require("./components/molecules/TextAndGradient/index");
|
|
450
437
|
|
|
451
438
|
Object.keys(_index34).forEach(function (key) {
|
|
452
439
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -459,7 +446,7 @@ Object.keys(_index34).forEach(function (key) {
|
|
|
459
446
|
});
|
|
460
447
|
});
|
|
461
448
|
|
|
462
|
-
var _index35 = require("./components/
|
|
449
|
+
var _index35 = require("./components/organisms/Fullplan/index");
|
|
463
450
|
|
|
464
451
|
Object.keys(_index35).forEach(function (key) {
|
|
465
452
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -472,7 +459,7 @@ Object.keys(_index35).forEach(function (key) {
|
|
|
472
459
|
});
|
|
473
460
|
});
|
|
474
461
|
|
|
475
|
-
var _index36 = require("./components/
|
|
462
|
+
var _index36 = require("./components/organisms/FullProductNameHeader/index");
|
|
476
463
|
|
|
477
464
|
Object.keys(_index36).forEach(function (key) {
|
|
478
465
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -485,7 +472,7 @@ Object.keys(_index36).forEach(function (key) {
|
|
|
485
472
|
});
|
|
486
473
|
});
|
|
487
474
|
|
|
488
|
-
var _index37 = require("./components/
|
|
475
|
+
var _index37 = require("./components/organisms/FullTabsMenu/index");
|
|
489
476
|
|
|
490
477
|
Object.keys(_index37).forEach(function (key) {
|
|
491
478
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -498,7 +485,7 @@ Object.keys(_index37).forEach(function (key) {
|
|
|
498
485
|
});
|
|
499
486
|
});
|
|
500
487
|
|
|
501
|
-
var _index38 = require("./components/
|
|
488
|
+
var _index38 = require("./components/organisms/ImageDataTable/index");
|
|
502
489
|
|
|
503
490
|
Object.keys(_index38).forEach(function (key) {
|
|
504
491
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -511,7 +498,7 @@ Object.keys(_index38).forEach(function (key) {
|
|
|
511
498
|
});
|
|
512
499
|
});
|
|
513
500
|
|
|
514
|
-
var _index39 = require("./components/
|
|
501
|
+
var _index39 = require("./components/organisms/ImagePreviewer/index");
|
|
515
502
|
|
|
516
503
|
Object.keys(_index39).forEach(function (key) {
|
|
517
504
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -524,7 +511,7 @@ Object.keys(_index39).forEach(function (key) {
|
|
|
524
511
|
});
|
|
525
512
|
});
|
|
526
513
|
|
|
527
|
-
var _index40 = require("./components/
|
|
514
|
+
var _index40 = require("./components/organisms/ImagesGroup/index");
|
|
528
515
|
|
|
529
516
|
Object.keys(_index40).forEach(function (key) {
|
|
530
517
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -537,7 +524,7 @@ Object.keys(_index40).forEach(function (key) {
|
|
|
537
524
|
});
|
|
538
525
|
});
|
|
539
526
|
|
|
540
|
-
var _index41 = require("./components/
|
|
527
|
+
var _index41 = require("./components/organisms/InputGroup/index");
|
|
541
528
|
|
|
542
529
|
Object.keys(_index41).forEach(function (key) {
|
|
543
530
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -550,7 +537,7 @@ Object.keys(_index41).forEach(function (key) {
|
|
|
550
537
|
});
|
|
551
538
|
});
|
|
552
539
|
|
|
553
|
-
var _index42 = require("./components/
|
|
540
|
+
var _index42 = require("./components/organisms/ProductImageModal/index");
|
|
554
541
|
|
|
555
542
|
Object.keys(_index42).forEach(function (key) {
|
|
556
543
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -563,175 +550,6 @@ Object.keys(_index42).forEach(function (key) {
|
|
|
563
550
|
});
|
|
564
551
|
});
|
|
565
552
|
|
|
566
|
-
var _index43 = require("./components/molecules/TagAndInput/index");
|
|
567
|
-
|
|
568
|
-
Object.keys(_index43).forEach(function (key) {
|
|
569
|
-
if (key === "default" || key === "__esModule") return;
|
|
570
|
-
if (key in exports && exports[key] === _index43[key]) return;
|
|
571
|
-
Object.defineProperty(exports, key, {
|
|
572
|
-
enumerable: true,
|
|
573
|
-
get: function get() {
|
|
574
|
-
return _index43[key];
|
|
575
|
-
}
|
|
576
|
-
});
|
|
577
|
-
});
|
|
578
|
-
|
|
579
|
-
var _index44 = require("./components/molecules/VerificationCodeResetPasswordLogin/index");
|
|
580
|
-
|
|
581
|
-
Object.keys(_index44).forEach(function (key) {
|
|
582
|
-
if (key === "default" || key === "__esModule") return;
|
|
583
|
-
if (key in exports && exports[key] === _index44[key]) return;
|
|
584
|
-
Object.defineProperty(exports, key, {
|
|
585
|
-
enumerable: true,
|
|
586
|
-
get: function get() {
|
|
587
|
-
return _index44[key];
|
|
588
|
-
}
|
|
589
|
-
});
|
|
590
|
-
});
|
|
591
|
-
|
|
592
|
-
var _index45 = require("./components/organisms/ChangePassword/index");
|
|
593
|
-
|
|
594
|
-
Object.keys(_index45).forEach(function (key) {
|
|
595
|
-
if (key === "default" || key === "__esModule") return;
|
|
596
|
-
if (key in exports && exports[key] === _index45[key]) return;
|
|
597
|
-
Object.defineProperty(exports, key, {
|
|
598
|
-
enumerable: true,
|
|
599
|
-
get: function get() {
|
|
600
|
-
return _index45[key];
|
|
601
|
-
}
|
|
602
|
-
});
|
|
603
|
-
});
|
|
604
|
-
|
|
605
|
-
var _index46 = require("./components/organisms/Fullplan/index");
|
|
606
|
-
|
|
607
|
-
Object.keys(_index46).forEach(function (key) {
|
|
608
|
-
if (key === "default" || key === "__esModule") return;
|
|
609
|
-
if (key in exports && exports[key] === _index46[key]) return;
|
|
610
|
-
Object.defineProperty(exports, key, {
|
|
611
|
-
enumerable: true,
|
|
612
|
-
get: function get() {
|
|
613
|
-
return _index46[key];
|
|
614
|
-
}
|
|
615
|
-
});
|
|
616
|
-
});
|
|
617
|
-
|
|
618
|
-
var _index47 = require("./components/organisms/FullProductNameHeader/index");
|
|
619
|
-
|
|
620
|
-
Object.keys(_index47).forEach(function (key) {
|
|
621
|
-
if (key === "default" || key === "__esModule") return;
|
|
622
|
-
if (key in exports && exports[key] === _index47[key]) return;
|
|
623
|
-
Object.defineProperty(exports, key, {
|
|
624
|
-
enumerable: true,
|
|
625
|
-
get: function get() {
|
|
626
|
-
return _index47[key];
|
|
627
|
-
}
|
|
628
|
-
});
|
|
629
|
-
});
|
|
630
|
-
|
|
631
|
-
var _index48 = require("./components/organisms/FullTabsMenu/index");
|
|
632
|
-
|
|
633
|
-
Object.keys(_index48).forEach(function (key) {
|
|
634
|
-
if (key === "default" || key === "__esModule") return;
|
|
635
|
-
if (key in exports && exports[key] === _index48[key]) return;
|
|
636
|
-
Object.defineProperty(exports, key, {
|
|
637
|
-
enumerable: true,
|
|
638
|
-
get: function get() {
|
|
639
|
-
return _index48[key];
|
|
640
|
-
}
|
|
641
|
-
});
|
|
642
|
-
});
|
|
643
|
-
|
|
644
|
-
var _index49 = require("./components/organisms/ImageDataTable/index");
|
|
645
|
-
|
|
646
|
-
Object.keys(_index49).forEach(function (key) {
|
|
647
|
-
if (key === "default" || key === "__esModule") return;
|
|
648
|
-
if (key in exports && exports[key] === _index49[key]) return;
|
|
649
|
-
Object.defineProperty(exports, key, {
|
|
650
|
-
enumerable: true,
|
|
651
|
-
get: function get() {
|
|
652
|
-
return _index49[key];
|
|
653
|
-
}
|
|
654
|
-
});
|
|
655
|
-
});
|
|
656
|
-
|
|
657
|
-
var _index50 = require("./components/organisms/ImagePreviewer/index");
|
|
658
|
-
|
|
659
|
-
Object.keys(_index50).forEach(function (key) {
|
|
660
|
-
if (key === "default" || key === "__esModule") return;
|
|
661
|
-
if (key in exports && exports[key] === _index50[key]) return;
|
|
662
|
-
Object.defineProperty(exports, key, {
|
|
663
|
-
enumerable: true,
|
|
664
|
-
get: function get() {
|
|
665
|
-
return _index50[key];
|
|
666
|
-
}
|
|
667
|
-
});
|
|
668
|
-
});
|
|
669
|
-
|
|
670
|
-
var _index51 = require("./components/organisms/ImagesGroup/index");
|
|
671
|
-
|
|
672
|
-
Object.keys(_index51).forEach(function (key) {
|
|
673
|
-
if (key === "default" || key === "__esModule") return;
|
|
674
|
-
if (key in exports && exports[key] === _index51[key]) return;
|
|
675
|
-
Object.defineProperty(exports, key, {
|
|
676
|
-
enumerable: true,
|
|
677
|
-
get: function get() {
|
|
678
|
-
return _index51[key];
|
|
679
|
-
}
|
|
680
|
-
});
|
|
681
|
-
});
|
|
682
|
-
|
|
683
|
-
var _index52 = require("./components/organisms/InputGroup/index");
|
|
684
|
-
|
|
685
|
-
Object.keys(_index52).forEach(function (key) {
|
|
686
|
-
if (key === "default" || key === "__esModule") return;
|
|
687
|
-
if (key in exports && exports[key] === _index52[key]) return;
|
|
688
|
-
Object.defineProperty(exports, key, {
|
|
689
|
-
enumerable: true,
|
|
690
|
-
get: function get() {
|
|
691
|
-
return _index52[key];
|
|
692
|
-
}
|
|
693
|
-
});
|
|
694
|
-
});
|
|
695
|
-
|
|
696
|
-
var _index53 = require("./components/organisms/ProductImageModal/index");
|
|
697
|
-
|
|
698
|
-
Object.keys(_index53).forEach(function (key) {
|
|
699
|
-
if (key === "default" || key === "__esModule") return;
|
|
700
|
-
if (key in exports && exports[key] === _index53[key]) return;
|
|
701
|
-
Object.defineProperty(exports, key, {
|
|
702
|
-
enumerable: true,
|
|
703
|
-
get: function get() {
|
|
704
|
-
return _index53[key];
|
|
705
|
-
}
|
|
706
|
-
});
|
|
707
|
-
});
|
|
708
|
-
|
|
709
|
-
var _ChangePasswordLogin = require("./components/pages/ChangePasswordLogin");
|
|
710
|
-
|
|
711
|
-
Object.keys(_ChangePasswordLogin).forEach(function (key) {
|
|
712
|
-
if (key === "default" || key === "__esModule") return;
|
|
713
|
-
if (key in exports && exports[key] === _ChangePasswordLogin[key]) return;
|
|
714
|
-
Object.defineProperty(exports, key, {
|
|
715
|
-
enumerable: true,
|
|
716
|
-
get: function get() {
|
|
717
|
-
return _ChangePasswordLogin[key];
|
|
718
|
-
}
|
|
719
|
-
});
|
|
720
|
-
});
|
|
721
|
-
|
|
722
|
-
var _CustomerLogin = require("./components/pages/CustomerLogin");
|
|
723
|
-
|
|
724
|
-
Object.keys(_CustomerLogin).forEach(function (key) {
|
|
725
|
-
if (key === "default" || key === "__esModule") return;
|
|
726
|
-
if (key in exports && exports[key] === _CustomerLogin[key]) return;
|
|
727
|
-
Object.defineProperty(exports, key, {
|
|
728
|
-
enumerable: true,
|
|
729
|
-
get: function get() {
|
|
730
|
-
return _CustomerLogin[key];
|
|
731
|
-
}
|
|
732
|
-
});
|
|
733
|
-
});
|
|
734
|
-
|
|
735
553
|
var _CustomerType = require("./components/pages/CustomerType");
|
|
736
554
|
|
|
737
555
|
Object.keys(_CustomerType).forEach(function (key) {
|
|
@@ -745,19 +563,6 @@ Object.keys(_CustomerType).forEach(function (key) {
|
|
|
745
563
|
});
|
|
746
564
|
});
|
|
747
565
|
|
|
748
|
-
var _EmailResetPassword = require("./components/pages/EmailResetPassword");
|
|
749
|
-
|
|
750
|
-
Object.keys(_EmailResetPassword).forEach(function (key) {
|
|
751
|
-
if (key === "default" || key === "__esModule") return;
|
|
752
|
-
if (key in exports && exports[key] === _EmailResetPassword[key]) return;
|
|
753
|
-
Object.defineProperty(exports, key, {
|
|
754
|
-
enumerable: true,
|
|
755
|
-
get: function get() {
|
|
756
|
-
return _EmailResetPassword[key];
|
|
757
|
-
}
|
|
758
|
-
});
|
|
759
|
-
});
|
|
760
|
-
|
|
761
566
|
var _OnboardPlan = require("./components/pages/OnboardPlan");
|
|
762
567
|
|
|
763
568
|
Object.keys(_OnboardPlan).forEach(function (key) {
|
|
@@ -771,45 +576,6 @@ Object.keys(_OnboardPlan).forEach(function (key) {
|
|
|
771
576
|
});
|
|
772
577
|
});
|
|
773
578
|
|
|
774
|
-
var _RegistrationLoginFirstStep = require("./components/pages/RegistrationLoginFirstStep");
|
|
775
|
-
|
|
776
|
-
Object.keys(_RegistrationLoginFirstStep).forEach(function (key) {
|
|
777
|
-
if (key === "default" || key === "__esModule") return;
|
|
778
|
-
if (key in exports && exports[key] === _RegistrationLoginFirstStep[key]) return;
|
|
779
|
-
Object.defineProperty(exports, key, {
|
|
780
|
-
enumerable: true,
|
|
781
|
-
get: function get() {
|
|
782
|
-
return _RegistrationLoginFirstStep[key];
|
|
783
|
-
}
|
|
784
|
-
});
|
|
785
|
-
});
|
|
786
|
-
|
|
787
|
-
var _RegistrationLoginSecondStep = require("./components/pages/RegistrationLoginSecondStep");
|
|
788
|
-
|
|
789
|
-
Object.keys(_RegistrationLoginSecondStep).forEach(function (key) {
|
|
790
|
-
if (key === "default" || key === "__esModule") return;
|
|
791
|
-
if (key in exports && exports[key] === _RegistrationLoginSecondStep[key]) return;
|
|
792
|
-
Object.defineProperty(exports, key, {
|
|
793
|
-
enumerable: true,
|
|
794
|
-
get: function get() {
|
|
795
|
-
return _RegistrationLoginSecondStep[key];
|
|
796
|
-
}
|
|
797
|
-
});
|
|
798
|
-
});
|
|
799
|
-
|
|
800
|
-
var _RegistrationLoginThirdStep = require("./components/pages/RegistrationLoginThirdStep");
|
|
801
|
-
|
|
802
|
-
Object.keys(_RegistrationLoginThirdStep).forEach(function (key) {
|
|
803
|
-
if (key === "default" || key === "__esModule") return;
|
|
804
|
-
if (key in exports && exports[key] === _RegistrationLoginThirdStep[key]) return;
|
|
805
|
-
Object.defineProperty(exports, key, {
|
|
806
|
-
enumerable: true,
|
|
807
|
-
get: function get() {
|
|
808
|
-
return _RegistrationLoginThirdStep[key];
|
|
809
|
-
}
|
|
810
|
-
});
|
|
811
|
-
});
|
|
812
|
-
|
|
813
579
|
var _RetailerProductEdition = require("./components/pages/RetailerProductEdition");
|
|
814
580
|
|
|
815
581
|
Object.keys(_RetailerProductEdition).forEach(function (key) {
|
|
@@ -821,17 +587,4 @@ Object.keys(_RetailerProductEdition).forEach(function (key) {
|
|
|
821
587
|
return _RetailerProductEdition[key];
|
|
822
588
|
}
|
|
823
589
|
});
|
|
824
|
-
});
|
|
825
|
-
|
|
826
|
-
var _VerificationCodeResetPassword = require("./components/pages/VerificationCodeResetPassword");
|
|
827
|
-
|
|
828
|
-
Object.keys(_VerificationCodeResetPassword).forEach(function (key) {
|
|
829
|
-
if (key === "default" || key === "__esModule") return;
|
|
830
|
-
if (key in exports && exports[key] === _VerificationCodeResetPassword[key]) return;
|
|
831
|
-
Object.defineProperty(exports, key, {
|
|
832
|
-
enumerable: true,
|
|
833
|
-
get: function get() {
|
|
834
|
-
return _VerificationCodeResetPassword[key];
|
|
835
|
-
}
|
|
836
|
-
});
|
|
837
590
|
});
|
package/package.json
CHANGED
|
@@ -1,35 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contentoh-components-library",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.73",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@aws-amplify/auth": "^4.5.3",
|
|
6
|
-
"@aws-amplify/datastore": "^3.11.0",
|
|
7
|
-
"@aws-amplify/ui-react": "^2.17.0",
|
|
8
5
|
"@babel/runtime": "^7.17.2",
|
|
9
6
|
"@storybook/addon-postcss": "^2.0.0",
|
|
10
7
|
"@testing-library/jest-dom": "^5.11.4",
|
|
11
8
|
"@testing-library/react": "^11.1.0",
|
|
12
9
|
"@testing-library/user-event": "^12.1.10",
|
|
13
|
-
"aws-
|
|
14
|
-
"aws-sdk": "^2.959.0",
|
|
10
|
+
"aws-sdk": "^2.1088.0",
|
|
15
11
|
"axios": "^0.25.0",
|
|
16
12
|
"babel-preset-react-app": "^10.0.1",
|
|
17
13
|
"chart.js": "^3.7.1",
|
|
14
|
+
"draft-js": "^0.11.7",
|
|
15
|
+
"file-saver": "^2.0.5",
|
|
18
16
|
"js-base64": "^3.7.2",
|
|
19
17
|
"prop-types": "^15.7.2",
|
|
20
18
|
"react": "^17.0.2",
|
|
21
|
-
"react-chartjs-2": "^4.1
|
|
19
|
+
"react-chartjs-2": "^4.0.1",
|
|
22
20
|
"react-dom": "^17.0.2",
|
|
21
|
+
"react-draft-wysiwyg": "^1.14.7",
|
|
22
|
+
"react-dropzone": "^12.0.4",
|
|
23
23
|
"react-image-fallback": "^8.0.0",
|
|
24
|
-
"react-
|
|
24
|
+
"react-quill": "^1.3.5",
|
|
25
|
+
"react-router-dom": "^6.3.0",
|
|
25
26
|
"styled-components": "^5.3.3",
|
|
27
|
+
"uuid": "^8.3.2",
|
|
26
28
|
"web-vitals": "^1.0.1"
|
|
27
29
|
},
|
|
28
30
|
"scripts": {
|
|
29
31
|
"start": "start-storybook -p 6006",
|
|
30
32
|
"build": "cross-env BABEL_ENV=production babel src -d dist",
|
|
31
|
-
"chromatic": "npx chromatic --project-token=d7bb0c8ba831"
|
|
32
|
-
"release": "auto shipit --base-branch=main"
|
|
33
|
+
"chromatic": "npx chromatic --project-token=d7bb0c8ba831"
|
|
33
34
|
},
|
|
34
35
|
"eslintConfig": {
|
|
35
36
|
"extends": [
|
|
@@ -67,23 +68,21 @@
|
|
|
67
68
|
]
|
|
68
69
|
},
|
|
69
70
|
"devDependencies": {
|
|
70
|
-
"@babel/cli": "^7.17.
|
|
71
|
+
"@babel/cli": "^7.17.6",
|
|
71
72
|
"@babel/core": "^7.16.0",
|
|
72
|
-
"@storybook/addon-actions": "^6.
|
|
73
|
-
"@storybook/addon-essentials": "^6.
|
|
74
|
-
"@storybook/addon-links": "^6.
|
|
75
|
-
"@storybook/react": "^6.
|
|
76
|
-
"auth": "^0.0.9",
|
|
73
|
+
"@storybook/addon-actions": "^6.5.7",
|
|
74
|
+
"@storybook/addon-essentials": "^6.5.7",
|
|
75
|
+
"@storybook/addon-links": "^6.5.7",
|
|
76
|
+
"@storybook/react": "^6.5.7",
|
|
77
77
|
"auto": "^10.36.5",
|
|
78
78
|
"babel-loader": "^8.2.3",
|
|
79
79
|
"chromatic": "^6.3.3",
|
|
80
|
-
"contentoh-components-library": "21.0.61",
|
|
81
80
|
"cross-env": "^7.0.3",
|
|
82
81
|
"storybook-css-modules-preset": "^1.1.1"
|
|
83
82
|
},
|
|
84
83
|
"description": "contentoh components packed library.",
|
|
85
84
|
"main": "dist/index.js",
|
|
86
|
-
"repository": "git@github.com:Content-oh/components-library.git",
|
|
85
|
+
"repository": "https://git@github.com:Content-oh/components-library.git",
|
|
87
86
|
"author": "asael06 <asael.mb@hotmail.com>",
|
|
88
87
|
"license": "MIT"
|
|
89
88
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="17" height="18" viewBox="0 0 17 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.7063 7.61134C13.2246 5.16759 11.0783 3.33301 8.5 3.33301C6.45292 3.33301 4.675 4.49467 3.78958 6.19467C1.6575 6.42134 0 8.22759 0 10.4163C0 12.7609 1.90542 14.6663 4.25 14.6663H13.4583C15.4133 14.6663 17 13.0797 17 11.1247C17 9.25467 15.5479 7.73884 13.7063 7.61134ZM12.0417 9.70801L8.5 13.2497L4.95833 9.70801H7.08333V6.87467H9.91667V9.70801H12.0417Z" fill="#817393"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M75.3243 36.333L60.0002 51.6572L44.676 36.333L36.3335 44.6755L51.6577 59.9997L36.3335 75.3238L44.676 83.6663L60.0002 68.3422L75.3243 83.6663L83.6668 75.3238L68.3427 59.9997L83.6668 44.6755L75.3243 36.333ZM60.0002 0.833008C27.281 0.833008 0.833496 27.2805 0.833496 59.9997C0.833496 92.7188 27.281 119.166 60.0002 119.166C92.7193 119.166 119.167 92.7188 119.167 59.9997C119.167 27.2805 92.7193 0.833008 60.0002 0.833008ZM60.0002 107.333C33.9077 107.333 12.6668 86.0922 12.6668 59.9997C12.6668 33.9072 33.9077 12.6663 60.0002 12.6663C86.0927 12.6663 107.334 33.9072 107.334 59.9997C107.334 86.0922 86.0927 107.333 60.0002 107.333Z" fill="#FC3030"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="81" height="81" viewBox="0 0 81 81" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clipPath="url(#clip0)">
|
|
3
|
+
<path d="M79.7088 62.5501L48.7485 8.92531C47.0269 5.9435 43.9434 4.16309 40.5 4.16309C37.0567 4.16309 33.973 5.9435 32.2514 8.92531L1.29129 62.5499C-0.43043 65.532 -0.43043 69.0925 1.29129 72.0745C3.01301 75.0565 6.09639 76.8367 9.53983 76.8367H71.4601C74.9034 76.8367 77.9869 75.0563 79.7088 72.0747C81.4305 69.0925 81.4305 65.532 79.7088 62.5501ZM75.599 69.7019C74.7351 71.1982 73.1878 72.0914 71.4601 72.0914H9.53983C7.81194 72.0914 6.26471 71.1982 5.40093 69.7019C4.53714 68.2056 4.53714 66.4192 5.40093 64.9229L36.3614 11.2982C37.2252 9.80191 38.7724 8.9087 40.5001 8.9087C42.2277 8.9087 43.7751 9.80191 44.6389 11.2982L75.5992 64.9229C76.4628 66.4192 76.4628 68.2056 75.599 69.7019Z" fill="#EDD34D"/>
|
|
4
|
+
<path d="M42.8724 27.8452H38.127V51.5729H42.8724V27.8452Z" fill="#EDD34D"/>
|
|
5
|
+
<path d="M40.4997 56.3179C38.7552 56.3179 37.3359 57.7371 37.3359 59.4816C37.3359 61.2261 38.7552 62.6454 40.4997 62.6454C42.2441 62.6454 43.6635 61.2261 43.6635 59.4816C43.6635 57.7371 42.2442 56.3179 40.4997 56.3179Z" fill="#EDD34D"/>
|
|
6
|
+
</g>
|
|
7
|
+
<defs>
|
|
8
|
+
<clipPath id="clip0">
|
|
9
|
+
<rect width="81" height="81" fill="white"/>
|
|
10
|
+
</clipPath>
|
|
11
|
+
</defs>
|
|
12
|
+
</svg>
|