contentoh-components-library 21.2.84 → 21.2.86
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 +6 -1
- package/dist/assets/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/dist/assets/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/dist/assets/images/defaultImages/Spinner.gif +0 -0
- package/dist/assets/images/defaultImages/notFound.svg +124 -0
- package/dist/components/atoms/ButtonFileChooser/ButtonFileChooser.stories.js +72 -0
- package/dist/components/atoms/ButtonFileChooser/index.js +116 -0
- package/dist/components/atoms/ButtonFileChooser/styles.js +20 -0
- package/dist/components/atoms/ButtonV2/ButtonV2.stories.js +66 -0
- package/dist/components/atoms/ButtonV2/index.js +109 -0
- package/dist/components/atoms/ButtonV2/styles.js +53 -0
- package/dist/components/atoms/CustomIcon/CustomIcon.stories.js +50 -0
- package/dist/components/atoms/CustomIcon/index.js +38 -0
- package/dist/components/atoms/CustomIcon/styles.js +33 -0
- package/dist/components/atoms/IconFile/IconFile.stories.js +48 -0
- package/dist/components/atoms/IconFile/index.js +251 -0
- package/dist/components/atoms/IconFile/styles.js +23 -0
- package/dist/components/atoms/Image/Image.stories.js +63 -0
- package/dist/components/atoms/Image/index.js +72 -0
- package/dist/components/atoms/Image/styles.js +40 -0
- package/dist/components/atoms/ImageLink/ImageLink.stories.js +63 -0
- package/dist/components/atoms/ImageLink/index.js +75 -0
- package/dist/components/atoms/ImageLink/styles.js +40 -0
- package/dist/components/atoms/ImagePreview/ImagePreview.stories.js +70 -0
- package/dist/components/atoms/ImagePreview/index.js +220 -0
- package/dist/components/atoms/ImagePreview/styles.js +44 -0
- package/dist/components/atoms/InputText/InputText.stories.js +62 -0
- package/dist/components/atoms/InputText/index.js +64 -0
- package/dist/components/atoms/InputText/styles.js +32 -0
- package/dist/components/atoms/NotFound/NotFound.stories.js +36 -0
- package/dist/components/atoms/NotFound/index.js +73 -0
- package/dist/components/atoms/NotFound/styles.js +20 -0
- package/dist/components/atoms/Tooltip/Tooltip.stories.js +36 -6
- package/dist/components/atoms/Tooltip/index.js +41 -26
- package/dist/components/atoms/Tooltip/styles.js +3 -1
- package/dist/components/molecules/ButtonDownloadFile/DownloadFile.stories.js +66 -0
- package/dist/components/molecules/ButtonDownloadFile/index.js +179 -0
- package/dist/components/molecules/ButtonDownloadFile/styles.js +23 -0
- package/dist/components/molecules/CustomSelect/CustomSelect.stories.js +21 -22
- package/dist/components/molecules/CustomSelect/SelectItem.js +10 -1
- package/dist/components/molecules/HeaderTop/index.js +12 -5
- package/dist/components/molecules/HeaderTop/styles.js +1 -1
- package/dist/components/molecules/ImageTooltip/ImageTooltip.stories.js +72 -0
- package/dist/components/molecules/ImageTooltip/index.js +84 -0
- package/dist/components/molecules/ImageTooltip/styles.js +33 -0
- package/dist/components/organisms/Chat/Chat.stories.js +215 -0
- package/dist/components/organisms/Chat/ChatLists/ChatLists.stories.js +83 -0
- package/dist/components/organisms/Chat/ChatLists/index.js +158 -0
- package/dist/components/organisms/Chat/ChatLists/styles.js +29 -0
- package/dist/components/organisms/Chat/ContainerItems/ContainerItems.stories.js +176 -0
- package/dist/components/organisms/Chat/ContainerItems/index.js +570 -0
- package/dist/components/organisms/Chat/ContainerItems/styles.js +20 -0
- package/dist/components/organisms/Chat/ContentChat/ContentChat.stories.js +142 -0
- package/dist/components/organisms/Chat/ContentChat/index.js +1422 -0
- package/dist/components/organisms/Chat/ContentChat/styles.js +20 -0
- package/dist/components/organisms/Chat/Footer/Footer.stories.js +43 -0
- package/dist/components/organisms/Chat/Footer/index.js +983 -0
- package/dist/components/organisms/Chat/Footer/styles.js +32 -0
- package/dist/components/organisms/Chat/Header/Header.stories.js +96 -0
- package/dist/components/organisms/Chat/Header/index.js +84 -0
- package/dist/components/organisms/Chat/Header/styles.js +20 -0
- package/dist/components/organisms/Chat/index.js +325 -0
- package/dist/components/organisms/Chat/styles.js +29 -0
- package/dist/components/organisms/Modal/Modal.stories.js +66 -0
- package/dist/components/organisms/Modal/index.js +95 -0
- package/dist/components/organisms/Modal/styles.js +20 -0
- package/dist/components/pages/Dashboard/Dashboard.stories.js +16 -44
- package/dist/components/pages/Dashboard/index.js +10 -17
- package/dist/components/pages/ProviderProductEdition/index.js +3 -2
- package/dist/components/pages/RetailerProductEdition/index.js +4 -7
- package/dist/global-files/fonts.css +18 -0
- package/dist/global-files/handle_http.js +383 -0
- package/dist/global-files/utils.js +472 -0
- package/dist/global-files/variables.js +3 -1
- package/dist/index.js +52 -39
- package/package.json +13 -1
- package/src/assets/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/src/assets/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/src/assets/images/chatPopup/Spinner.gif +0 -0
- package/src/assets/images/chatPopup/close.svg +3 -0
- package/src/assets/images/chatPopup/defaultImage.png +0 -0
- package/src/assets/images/chatPopup/defaultProfile.png +0 -0
- package/src/assets/images/chatPopup/doc.svg +1 -0
- package/src/assets/images/chatPopup/document.svg +1 -0
- package/src/assets/images/chatPopup/iconChat.svg +19 -0
- package/src/assets/images/chatPopup/iconPlus.svg +3 -0
- package/src/assets/images/chatPopup/pdf.svg +75 -0
- package/src/assets/images/chatPopup/remove.svg +4 -0
- package/src/assets/images/chatPopup/send.svg +3 -0
- package/src/assets/images/chatPopup/svgIcon.svg +109 -0
- package/src/assets/images/chatPopup/upload_file.svg +3 -0
- package/src/assets/images/chatPopup/xls.svg +53 -0
- package/src/assets/images/customSelect/starIcon.svg +14 -0
- package/src/assets/images/defaultImages/Spinner.gif +0 -0
- package/src/assets/images/defaultImages/notFound.svg +124 -0
- package/src/components/atoms/ButtonFileChooser/ButtonFileChooser.stories.js +47 -0
- package/src/components/atoms/ButtonFileChooser/index.js +70 -0
- package/src/components/atoms/ButtonFileChooser/styles.js +4 -0
- package/src/components/atoms/ButtonV2/ButtonV2.stories.js +50 -0
- package/src/components/atoms/ButtonV2/index.js +74 -0
- package/src/components/atoms/ButtonV2/styles.js +187 -0
- package/src/components/atoms/CustomIcon/CustomIcon.stories.js +36 -0
- package/src/components/atoms/CustomIcon/index.js +41 -0
- package/src/components/atoms/CustomIcon/styles.js +85 -0
- package/src/components/atoms/IconFile/IconFile.stories.js +35 -0
- package/src/components/atoms/IconFile/index.js +120 -0
- package/src/components/atoms/IconFile/styles.js +67 -0
- package/src/components/atoms/Image/Image.stories.js +43 -0
- package/src/components/atoms/Image/index.js +54 -0
- package/src/components/atoms/Image/styles.js +25 -0
- package/src/components/atoms/ImageLink/ImageLink.stories.js +43 -0
- package/src/components/atoms/ImageLink/index.js +58 -0
- package/src/components/atoms/ImageLink/styles.js +30 -0
- package/src/components/atoms/ImagePreview/ImagePreview.stories.js +52 -0
- package/src/components/atoms/ImagePreview/index.js +192 -0
- package/src/components/atoms/ImagePreview/styles.js +77 -0
- package/src/components/atoms/InputText/InputText.stories.js +40 -0
- package/src/components/atoms/InputText/index.js +63 -0
- package/src/components/atoms/InputText/styles.js +89 -0
- package/src/components/atoms/NotFound/NotFound.stories.js +19 -0
- package/src/components/atoms/NotFound/index.js +53 -0
- package/src/components/atoms/NotFound/styles.js +55 -0
- package/src/components/atoms/Tooltip/Tooltip.stories.js +51 -0
- package/src/components/atoms/Tooltip/index.js +59 -0
- package/src/components/atoms/Tooltip/styles.js +42 -0
- package/src/components/molecules/ButtonDownloadFile/DownloadFile.stories.js +54 -0
- package/src/components/molecules/ButtonDownloadFile/index.js +113 -0
- package/src/components/molecules/ButtonDownloadFile/styles.js +66 -0
- package/src/components/molecules/CustomSelect/CustomSelect.stories.js +20 -12
- package/src/components/molecules/CustomSelect/SelectItem.js +7 -0
- package/src/components/molecules/HeaderTop/index.js +11 -6
- package/src/components/molecules/HeaderTop/styles.js +4 -0
- package/src/components/molecules/ImageTooltip/ImageTooltip.stories.js +46 -0
- package/src/components/molecules/ImageTooltip/index.js +64 -0
- package/src/components/molecules/ImageTooltip/styles.js +18 -0
- package/src/components/organisms/Chat/Chat.stories.js +199 -0
- package/src/components/organisms/Chat/ChatLists/ChatLists.stories.js +65 -0
- package/src/components/organisms/Chat/ChatLists/Rotoplas.jpeg +0 -0
- package/src/components/organisms/Chat/ChatLists/THD.png +0 -0
- package/src/components/organisms/Chat/ChatLists/index.js +141 -0
- package/src/components/organisms/Chat/ChatLists/styles.js +162 -0
- package/src/components/organisms/Chat/ContainerItems/ContainerItems.stories.js +142 -0
- package/src/components/organisms/Chat/ContainerItems/index.js +551 -0
- package/src/components/organisms/Chat/ContainerItems/styles.js +336 -0
- package/src/components/organisms/Chat/ContentChat/ContentChat.stories.js +102 -0
- package/src/components/organisms/Chat/ContentChat/Rotoplas.jpeg +0 -0
- package/src/components/organisms/Chat/ContentChat/THD.png +0 -0
- package/src/components/organisms/Chat/ContentChat/index.js +900 -0
- package/src/components/organisms/Chat/ContentChat/styles.js +41 -0
- package/src/components/organisms/Chat/Footer/Footer.stories.js +22 -0
- package/src/components/organisms/Chat/Footer/index.js +669 -0
- package/src/components/organisms/Chat/Footer/styles.js +286 -0
- package/src/components/organisms/Chat/Header/Header.stories.js +66 -0
- package/src/components/organisms/Chat/Header/index.js +94 -0
- package/src/components/organisms/Chat/Header/styles.js +49 -0
- package/src/components/organisms/Chat/index.js +295 -0
- package/src/components/organisms/Chat/styles.js +42 -0
- package/src/components/organisms/Modal/Modal.stories.js +55 -0
- package/src/components/organisms/Modal/index.js +97 -0
- package/src/components/organisms/Modal/styles.js +103 -0
- package/src/components/pages/Dashboard/Dashboard.stories.js +16 -47
- package/src/components/pages/Dashboard/index.js +4 -13
- package/src/components/pages/ProviderProductEdition/index.js +6 -7
- package/src/components/pages/RetailerProductEdition/index.js +5 -4
- package/src/global-files/fonts.css +18 -0
- package/src/global-files/handle_http.js +231 -0
- package/src/global-files/utils.js +300 -0
- package/src/global-files/variables.js +2 -0
- package/src/index.js +1 -0
- package/dist/components/atoms/ChatPopUp/ChatPopUp.stories.js +0 -28
- package/dist/components/atoms/ChatPopUp/index.js +0 -841
- package/dist/components/atoms/ChatPopUp/styles.js +0 -27
- package/dist/components/atoms/ChatPopUp/utils/handlersChat.js +0 -182
- package/dist/components/atoms/StatusTag/StatusTag.stories.js +0 -48
- package/dist/components/atoms/StatusTag/index.js +0 -58
- package/dist/components/atoms/StatusTag/styles.js +0 -20
- package/dist/components/pages/RegistrationLoginFirstStep/RegistrationLoginFirstStep.stories.js +0 -37
- package/dist/components/pages/RegistrationLoginFirstStep/index.js +0 -269
- package/dist/components/pages/RegistrationLoginFirstStep/styles.js +0 -20
package/dist/index.js
CHANGED
|
@@ -316,7 +316,7 @@ Object.keys(_index24).forEach(function (key) {
|
|
|
316
316
|
});
|
|
317
317
|
});
|
|
318
318
|
|
|
319
|
-
var _index25 = require("./components/
|
|
319
|
+
var _index25 = require("./components/atoms/ButtonV2/index");
|
|
320
320
|
|
|
321
321
|
Object.keys(_index25).forEach(function (key) {
|
|
322
322
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -329,33 +329,33 @@ Object.keys(_index25).forEach(function (key) {
|
|
|
329
329
|
});
|
|
330
330
|
});
|
|
331
331
|
|
|
332
|
-
var
|
|
332
|
+
var _index26 = require("./components/molecules/AvatarAndValidation/index");
|
|
333
333
|
|
|
334
|
-
Object.keys(
|
|
334
|
+
Object.keys(_index26).forEach(function (key) {
|
|
335
335
|
if (key === "default" || key === "__esModule") return;
|
|
336
|
-
if (key in exports && exports[key] ===
|
|
336
|
+
if (key in exports && exports[key] === _index26[key]) return;
|
|
337
337
|
Object.defineProperty(exports, key, {
|
|
338
338
|
enumerable: true,
|
|
339
339
|
get: function get() {
|
|
340
|
-
return
|
|
340
|
+
return _index26[key];
|
|
341
341
|
}
|
|
342
342
|
});
|
|
343
343
|
});
|
|
344
344
|
|
|
345
|
-
var
|
|
345
|
+
var _CarouselImagesLogin = require("./components/molecules/CarouselImagesLogin");
|
|
346
346
|
|
|
347
|
-
Object.keys(
|
|
347
|
+
Object.keys(_CarouselImagesLogin).forEach(function (key) {
|
|
348
348
|
if (key === "default" || key === "__esModule") return;
|
|
349
|
-
if (key in exports && exports[key] ===
|
|
349
|
+
if (key in exports && exports[key] === _CarouselImagesLogin[key]) return;
|
|
350
350
|
Object.defineProperty(exports, key, {
|
|
351
351
|
enumerable: true,
|
|
352
352
|
get: function get() {
|
|
353
|
-
return
|
|
353
|
+
return _CarouselImagesLogin[key];
|
|
354
354
|
}
|
|
355
355
|
});
|
|
356
356
|
});
|
|
357
357
|
|
|
358
|
-
var _index27 = require("./components/molecules/
|
|
358
|
+
var _index27 = require("./components/molecules/EditionActiveImage/index");
|
|
359
359
|
|
|
360
360
|
Object.keys(_index27).forEach(function (key) {
|
|
361
361
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -368,7 +368,7 @@ Object.keys(_index27).forEach(function (key) {
|
|
|
368
368
|
});
|
|
369
369
|
});
|
|
370
370
|
|
|
371
|
-
var _index28 = require("./components/molecules/
|
|
371
|
+
var _index28 = require("./components/molecules/EmailResetPasswordLogin/index");
|
|
372
372
|
|
|
373
373
|
Object.keys(_index28).forEach(function (key) {
|
|
374
374
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -381,7 +381,7 @@ Object.keys(_index28).forEach(function (key) {
|
|
|
381
381
|
});
|
|
382
382
|
});
|
|
383
383
|
|
|
384
|
-
var _index29 = require("./components/molecules/
|
|
384
|
+
var _index29 = require("./components/molecules/FeaturesBar/index");
|
|
385
385
|
|
|
386
386
|
Object.keys(_index29).forEach(function (key) {
|
|
387
387
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -394,7 +394,7 @@ Object.keys(_index29).forEach(function (key) {
|
|
|
394
394
|
});
|
|
395
395
|
});
|
|
396
396
|
|
|
397
|
-
var _index30 = require("./components/molecules/
|
|
397
|
+
var _index30 = require("./components/molecules/GalleryElement/index");
|
|
398
398
|
|
|
399
399
|
Object.keys(_index30).forEach(function (key) {
|
|
400
400
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -407,7 +407,7 @@ Object.keys(_index30).forEach(function (key) {
|
|
|
407
407
|
});
|
|
408
408
|
});
|
|
409
409
|
|
|
410
|
-
var _index31 = require("./components/molecules/
|
|
410
|
+
var _index31 = require("./components/molecules/HeaderTop/index");
|
|
411
411
|
|
|
412
412
|
Object.keys(_index31).forEach(function (key) {
|
|
413
413
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -420,7 +420,7 @@ Object.keys(_index31).forEach(function (key) {
|
|
|
420
420
|
});
|
|
421
421
|
});
|
|
422
422
|
|
|
423
|
-
var _index32 = require("./components/molecules/
|
|
423
|
+
var _index32 = require("./components/molecules/ImageSelector/index");
|
|
424
424
|
|
|
425
425
|
Object.keys(_index32).forEach(function (key) {
|
|
426
426
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -433,7 +433,7 @@ Object.keys(_index32).forEach(function (key) {
|
|
|
433
433
|
});
|
|
434
434
|
});
|
|
435
435
|
|
|
436
|
-
var _index33 = require("./components/molecules/
|
|
436
|
+
var _index33 = require("./components/molecules/LoginPasswordStrength/index");
|
|
437
437
|
|
|
438
438
|
Object.keys(_index33).forEach(function (key) {
|
|
439
439
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -446,7 +446,7 @@ Object.keys(_index33).forEach(function (key) {
|
|
|
446
446
|
});
|
|
447
447
|
});
|
|
448
448
|
|
|
449
|
-
var _index34 = require("./components/molecules/
|
|
449
|
+
var _index34 = require("./components/molecules/LogoLoading/index");
|
|
450
450
|
|
|
451
451
|
Object.keys(_index34).forEach(function (key) {
|
|
452
452
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -459,7 +459,7 @@ Object.keys(_index34).forEach(function (key) {
|
|
|
459
459
|
});
|
|
460
460
|
});
|
|
461
461
|
|
|
462
|
-
var _index35 = require("./components/molecules/
|
|
462
|
+
var _index35 = require("./components/molecules/PlanSelection/index");
|
|
463
463
|
|
|
464
464
|
Object.keys(_index35).forEach(function (key) {
|
|
465
465
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -472,7 +472,7 @@ Object.keys(_index35).forEach(function (key) {
|
|
|
472
472
|
});
|
|
473
473
|
});
|
|
474
474
|
|
|
475
|
-
var _index36 = require("./components/molecules/
|
|
475
|
+
var _index36 = require("./components/molecules/ProductNameHeader/index");
|
|
476
476
|
|
|
477
477
|
Object.keys(_index36).forEach(function (key) {
|
|
478
478
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -485,7 +485,7 @@ Object.keys(_index36).forEach(function (key) {
|
|
|
485
485
|
});
|
|
486
486
|
});
|
|
487
487
|
|
|
488
|
-
var _index37 = require("./components/molecules/
|
|
488
|
+
var _index37 = require("./components/molecules/RegistrationFirstStep/index");
|
|
489
489
|
|
|
490
490
|
Object.keys(_index37).forEach(function (key) {
|
|
491
491
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -498,7 +498,7 @@ Object.keys(_index37).forEach(function (key) {
|
|
|
498
498
|
});
|
|
499
499
|
});
|
|
500
500
|
|
|
501
|
-
var _index38 = require("./components/molecules/
|
|
501
|
+
var _index38 = require("./components/molecules/RegistrationSecondStep/index");
|
|
502
502
|
|
|
503
503
|
Object.keys(_index38).forEach(function (key) {
|
|
504
504
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -511,7 +511,7 @@ Object.keys(_index38).forEach(function (key) {
|
|
|
511
511
|
});
|
|
512
512
|
});
|
|
513
513
|
|
|
514
|
-
var _index39 = require("./components/molecules/
|
|
514
|
+
var _index39 = require("./components/molecules/RegistrationThirdStep/index");
|
|
515
515
|
|
|
516
516
|
Object.keys(_index39).forEach(function (key) {
|
|
517
517
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -524,7 +524,7 @@ Object.keys(_index39).forEach(function (key) {
|
|
|
524
524
|
});
|
|
525
525
|
});
|
|
526
526
|
|
|
527
|
-
var _index40 = require("./components/molecules/
|
|
527
|
+
var _index40 = require("./components/molecules/SignInLogin/index");
|
|
528
528
|
|
|
529
529
|
Object.keys(_index40).forEach(function (key) {
|
|
530
530
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -537,7 +537,7 @@ Object.keys(_index40).forEach(function (key) {
|
|
|
537
537
|
});
|
|
538
538
|
});
|
|
539
539
|
|
|
540
|
-
var _index41 = require("./components/molecules/
|
|
540
|
+
var _index41 = require("./components/molecules/StatusAsignationInfo/index");
|
|
541
541
|
|
|
542
542
|
Object.keys(_index41).forEach(function (key) {
|
|
543
543
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -550,7 +550,7 @@ Object.keys(_index41).forEach(function (key) {
|
|
|
550
550
|
});
|
|
551
551
|
});
|
|
552
552
|
|
|
553
|
-
var _index42 = require("./components/molecules/
|
|
553
|
+
var _index42 = require("./components/molecules/TableHeader/index");
|
|
554
554
|
|
|
555
555
|
Object.keys(_index42).forEach(function (key) {
|
|
556
556
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -563,7 +563,7 @@ Object.keys(_index42).forEach(function (key) {
|
|
|
563
563
|
});
|
|
564
564
|
});
|
|
565
565
|
|
|
566
|
-
var _index43 = require("./components/molecules/
|
|
566
|
+
var _index43 = require("./components/molecules/TableRow/index");
|
|
567
567
|
|
|
568
568
|
Object.keys(_index43).forEach(function (key) {
|
|
569
569
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -576,7 +576,7 @@ Object.keys(_index43).forEach(function (key) {
|
|
|
576
576
|
});
|
|
577
577
|
});
|
|
578
578
|
|
|
579
|
-
var _index44 = require("./components/molecules/
|
|
579
|
+
var _index44 = require("./components/molecules/TabsMenu/index");
|
|
580
580
|
|
|
581
581
|
Object.keys(_index44).forEach(function (key) {
|
|
582
582
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -589,7 +589,7 @@ Object.keys(_index44).forEach(function (key) {
|
|
|
589
589
|
});
|
|
590
590
|
});
|
|
591
591
|
|
|
592
|
-
var _index45 = require("./components/molecules/
|
|
592
|
+
var _index45 = require("./components/molecules/TagAndInput/index");
|
|
593
593
|
|
|
594
594
|
Object.keys(_index45).forEach(function (key) {
|
|
595
595
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -602,7 +602,7 @@ Object.keys(_index45).forEach(function (key) {
|
|
|
602
602
|
});
|
|
603
603
|
});
|
|
604
604
|
|
|
605
|
-
var _index46 = require("./components/molecules/
|
|
605
|
+
var _index46 = require("./components/molecules/VerificationCodeResetPasswordLogin/index");
|
|
606
606
|
|
|
607
607
|
Object.keys(_index46).forEach(function (key) {
|
|
608
608
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -615,7 +615,7 @@ Object.keys(_index46).forEach(function (key) {
|
|
|
615
615
|
});
|
|
616
616
|
});
|
|
617
617
|
|
|
618
|
-
var _index47 = require("./components/molecules/
|
|
618
|
+
var _index47 = require("./components/molecules/RetailerSelector/index");
|
|
619
619
|
|
|
620
620
|
Object.keys(_index47).forEach(function (key) {
|
|
621
621
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -628,7 +628,7 @@ Object.keys(_index47).forEach(function (key) {
|
|
|
628
628
|
});
|
|
629
629
|
});
|
|
630
630
|
|
|
631
|
-
var _index48 = require("./components/
|
|
631
|
+
var _index48 = require("./components/molecules/CustomSelect/index");
|
|
632
632
|
|
|
633
633
|
Object.keys(_index48).forEach(function (key) {
|
|
634
634
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -641,7 +641,7 @@ Object.keys(_index48).forEach(function (key) {
|
|
|
641
641
|
});
|
|
642
642
|
});
|
|
643
643
|
|
|
644
|
-
var _index49 = require("./components/organisms/
|
|
644
|
+
var _index49 = require("./components/organisms/ChangePassword/index");
|
|
645
645
|
|
|
646
646
|
Object.keys(_index49).forEach(function (key) {
|
|
647
647
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -654,7 +654,7 @@ Object.keys(_index49).forEach(function (key) {
|
|
|
654
654
|
});
|
|
655
655
|
});
|
|
656
656
|
|
|
657
|
-
var _index50 = require("./components/organisms/
|
|
657
|
+
var _index50 = require("./components/organisms/Fullplan/index");
|
|
658
658
|
|
|
659
659
|
Object.keys(_index50).forEach(function (key) {
|
|
660
660
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -667,7 +667,7 @@ Object.keys(_index50).forEach(function (key) {
|
|
|
667
667
|
});
|
|
668
668
|
});
|
|
669
669
|
|
|
670
|
-
var _index51 = require("./components/organisms/
|
|
670
|
+
var _index51 = require("./components/organisms/FullProductNameHeader/index");
|
|
671
671
|
|
|
672
672
|
Object.keys(_index51).forEach(function (key) {
|
|
673
673
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -680,7 +680,7 @@ Object.keys(_index51).forEach(function (key) {
|
|
|
680
680
|
});
|
|
681
681
|
});
|
|
682
682
|
|
|
683
|
-
var _index52 = require("./components/organisms/
|
|
683
|
+
var _index52 = require("./components/organisms/FullTabsMenu/index");
|
|
684
684
|
|
|
685
685
|
Object.keys(_index52).forEach(function (key) {
|
|
686
686
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -693,7 +693,7 @@ Object.keys(_index52).forEach(function (key) {
|
|
|
693
693
|
});
|
|
694
694
|
});
|
|
695
695
|
|
|
696
|
-
var _index53 = require("./components/organisms/
|
|
696
|
+
var _index53 = require("./components/organisms/ImageDataTable/index");
|
|
697
697
|
|
|
698
698
|
Object.keys(_index53).forEach(function (key) {
|
|
699
699
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -706,7 +706,7 @@ Object.keys(_index53).forEach(function (key) {
|
|
|
706
706
|
});
|
|
707
707
|
});
|
|
708
708
|
|
|
709
|
-
var _index54 = require("./components/organisms/
|
|
709
|
+
var _index54 = require("./components/organisms/ImagePreviewer/index");
|
|
710
710
|
|
|
711
711
|
Object.keys(_index54).forEach(function (key) {
|
|
712
712
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -719,7 +719,7 @@ Object.keys(_index54).forEach(function (key) {
|
|
|
719
719
|
});
|
|
720
720
|
});
|
|
721
721
|
|
|
722
|
-
var _index55 = require("./components/organisms/
|
|
722
|
+
var _index55 = require("./components/organisms/ImagesGroup/index");
|
|
723
723
|
|
|
724
724
|
Object.keys(_index55).forEach(function (key) {
|
|
725
725
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -732,7 +732,7 @@ Object.keys(_index55).forEach(function (key) {
|
|
|
732
732
|
});
|
|
733
733
|
});
|
|
734
734
|
|
|
735
|
-
var _index56 = require("./components/organisms/
|
|
735
|
+
var _index56 = require("./components/organisms/InputGroup/index");
|
|
736
736
|
|
|
737
737
|
Object.keys(_index56).forEach(function (key) {
|
|
738
738
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -745,6 +745,19 @@ Object.keys(_index56).forEach(function (key) {
|
|
|
745
745
|
});
|
|
746
746
|
});
|
|
747
747
|
|
|
748
|
+
var _index57 = require("./components/organisms/ProductImageModal/index");
|
|
749
|
+
|
|
750
|
+
Object.keys(_index57).forEach(function (key) {
|
|
751
|
+
if (key === "default" || key === "__esModule") return;
|
|
752
|
+
if (key in exports && exports[key] === _index57[key]) return;
|
|
753
|
+
Object.defineProperty(exports, key, {
|
|
754
|
+
enumerable: true,
|
|
755
|
+
get: function get() {
|
|
756
|
+
return _index57[key];
|
|
757
|
+
}
|
|
758
|
+
});
|
|
759
|
+
});
|
|
760
|
+
|
|
748
761
|
var _ChangePasswordLogin = require("./components/pages/ChangePasswordLogin");
|
|
749
762
|
|
|
750
763
|
Object.keys(_ChangePasswordLogin).forEach(function (key) {
|
package/package.json
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contentoh-components-library",
|
|
3
|
-
"version": "21.2.
|
|
3
|
+
"version": "21.2.86",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@aws-amplify/auth": "^4.5.3",
|
|
6
6
|
"@aws-amplify/datastore": "^3.11.0",
|
|
7
7
|
"@aws-amplify/ui-react": "^2.17.0",
|
|
8
8
|
"@babel/runtime": "^7.17.2",
|
|
9
|
+
"@emotion/react": "^11.10.4",
|
|
10
|
+
"@emotion/styled": "^11.10.4",
|
|
11
|
+
"@fortawesome/fontawesome-svg-core": "^6.2.0",
|
|
12
|
+
"@fortawesome/free-regular-svg-icons": "^6.2.0",
|
|
13
|
+
"@fortawesome/free-solid-svg-icons": "^6.2.0",
|
|
14
|
+
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
15
|
+
"@mui/material": "^5.10.8",
|
|
16
|
+
"@mui/styled-engine-sc": "^5.10.6",
|
|
9
17
|
"@storybook/addon-postcss": "^2.0.0",
|
|
10
18
|
"@testing-library/jest-dom": "^5.11.4",
|
|
11
19
|
"@testing-library/react": "^11.1.0",
|
|
@@ -19,6 +27,7 @@
|
|
|
19
27
|
"draft-js": "^0.11.7",
|
|
20
28
|
"file-saver": "^2.0.5",
|
|
21
29
|
"js-base64": "^3.7.2",
|
|
30
|
+
"moment": "^2.29.4",
|
|
22
31
|
"prop-types": "^15.7.2",
|
|
23
32
|
"react": "^17.0.2",
|
|
24
33
|
"react-chartjs-2": "^4.0.1",
|
|
@@ -29,7 +38,10 @@
|
|
|
29
38
|
"react-image-fallback": "^8.0.0",
|
|
30
39
|
"react-quill": "^1.3.5",
|
|
31
40
|
"react-router-dom": "^5.3.3",
|
|
41
|
+
"react-scroll": "^1.8.8",
|
|
42
|
+
"react-transition-group": "^4.4.5",
|
|
32
43
|
"styled-components": "^5.3.3",
|
|
44
|
+
"swiper": "^8.4.4",
|
|
33
45
|
"uuid": "^8.3.2",
|
|
34
46
|
"web-vitals": "^1.0.1"
|
|
35
47
|
},
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14">
|
|
2
|
+
<path id="close_FILL0_wght400_GRAD0_opsz48" d="M6.385,19.308,5.308,18.231l5.923-5.923L5.308,6.385,6.385,5.308l5.923,5.923,5.923-5.923,1.077,1.077-5.923,5.923,5.923,5.923-1.077,1.077-5.923-5.923Z" transform="translate(-5.308 -5.308)" fill="#fff"/>
|
|
3
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 51 65" fill="#fff" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round"><use xlink:href="#C" x=".5" y=".5"/><defs><filter id="A" x="-6%" y="-4.6875%" width="116%" height="112.5%"><feGaussianBlur in="SourceAlpha" stdDeviation="1"/><feOffset dx="2" dy="2" result="B"/><feFlood flood-color="#000" flood-opacity=".2"/><feComposite in2="B" operator="in" result="C"/><feMerge><feMergeNode in="C"/><feMergeNode in="SourceGraphic"/></feMerge></filter><filter id="B" x="-27.5%" y="-32.5%" width="160%" height="160%"><feGaussianBlur in="SourceAlpha" stdDeviation="2"/><feOffset dx="1" dy="-1" result="B"/><feFlood flood-color="#000" flood-opacity=".2"/><feComposite in2="B" operator="in" result="C"/><feMerge><feMergeNode in="C"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><symbol id="C" overflow="visible"><path d="M50 20L30 0H5a4.99 4.99 0 0 0-5 5v54a4.99 4.99 0 0 0 5 5h40a4.99 4.99 0 0 0 5-5z" fill="#2196f3" stroke="none" filter="url(#A)"/><defs/><g transform="matrix(-1 0 0 -1 50 20)"><path d="M20 20L0 0h15a4.99 4.99 0 0 1 5 5z" fill="#90caf9" stroke="none" filter="url(#B)"/><defs/></g><path d="M10 17.5h17.5V20H10zm0 10h27.5V30H10zm0 10h27.5V40H10zm0 10h27.5V50H10z" stroke="none"/></symbol></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 66 81" fill="#fff" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round"><use xlink:href="#A" x=".5" y=".5"/><symbol id="A" overflow="visible"><path d="M44.674 0H0v79.977h65V20.012L44.674 0zM60.93 75.993H4.07V4.007h38.593v18.008h18.291v53.978zm-10.151-40H14.221v-3.984h36.558zm0 9.995H14.221v-3.984h36.558zm0 10.017H14.221v-4.007h36.558zm0 9.994H14.221v-4.007h36.558z" fill="#2a3282" stroke="none"/></symbol></svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14" viewBox="0 0 14 14">
|
|
2
|
+
<defs>
|
|
3
|
+
<style>
|
|
4
|
+
.cls-1 {
|
|
5
|
+
fill: #707070;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.cls-2 {
|
|
9
|
+
clip-path: url(#clip-path);
|
|
10
|
+
}
|
|
11
|
+
</style>
|
|
12
|
+
<clipPath id="clip-path">
|
|
13
|
+
<rect id="Rectángulo_368" data-name="Rectángulo 368" class="cls-1" width="14" height="14" transform="translate(1737 869)"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
<g id="Enmascarar_grupo_83" data-name="Enmascarar grupo 83" class="cls-2" transform="translate(-1737 -869)">
|
|
17
|
+
<path id="forum_FILL0_wght400_GRAD0_opsz48" class="cls-1" d="M1.4,11.9V2.135a.728.728,0,0,1,.228-.49A.651.651,0,0,1,2.1,1.4h9.082a.675.675,0,0,1,.49.236.714.714,0,0,1,.227.5v6.23a.728.728,0,0,1-.227.49.666.666,0,0,1-.49.245H4.2Zm3.518.7a.678.678,0,0,1-.481-.245.716.716,0,0,1-.236-.49V10.15h8.75V4.2H14.7a.651.651,0,0,1,.472.245.744.744,0,0,1,.227.508v10.43L12.617,12.6ZM10.85,2.45H2.45V9.363L3.763,8.05H10.85Zm-8.4,0v0Z" transform="translate(1735.6 867.609)"/>
|
|
18
|
+
</g>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
|
2
|
+
<path id="Icono_cargar_más" data-name="Icono, cargar más" d="M18,28a9.64,9.64,0,0,1-7.078-2.922A9.64,9.64,0,0,1,8,18a9.64,9.64,0,0,1,2.922-7.078A9.64,9.64,0,0,1,18,8a9.665,9.665,0,0,1,4.656,1.078,11.027,11.027,0,0,1,3.469,2.953V8H28v7.938H20.063V14.063h5.25a9.572,9.572,0,0,0-3.031-3.031A7.888,7.888,0,0,0,18,9.875,8.056,8.056,0,0,0,9.875,18,8.056,8.056,0,0,0,18,26.125a8.2,8.2,0,0,0,4.75-1.484,7.72,7.72,0,0,0,3-3.922h1.937A9.576,9.576,0,0,1,24.094,26,9.947,9.947,0,0,1,18,28Z" transform="translate(-8 -8)" fill="#8a6caa"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 303.188 303.188" style="enable-background:new 0 0 303.188 303.188;" xml:space="preserve">
|
|
5
|
+
<g>
|
|
6
|
+
<polygon style="fill:#E8E8E8;" points="219.821,0 32.842,0 32.842,303.188 270.346,303.188 270.346,50.525 "/>
|
|
7
|
+
<path style="fill:#FB3449;" d="M230.013,149.935c-3.643-6.493-16.231-8.533-22.006-9.451c-4.552-0.724-9.199-0.94-13.803-0.936
|
|
8
|
+
c-3.615-0.024-7.177,0.154-10.693,0.354c-1.296,0.087-2.579,0.199-3.861,0.31c-1.314-1.36-2.584-2.765-3.813-4.202
|
|
9
|
+
c-7.82-9.257-14.134-19.755-19.279-30.664c1.366-5.271,2.459-10.772,3.119-16.485c1.205-10.427,1.619-22.31-2.288-32.251
|
|
10
|
+
c-1.349-3.431-4.946-7.608-9.096-5.528c-4.771,2.392-6.113,9.169-6.502,13.973c-0.313,3.883-0.094,7.776,0.558,11.594
|
|
11
|
+
c0.664,3.844,1.733,7.494,2.897,11.139c1.086,3.342,2.283,6.658,3.588,9.943c-0.828,2.586-1.707,5.127-2.63,7.603
|
|
12
|
+
c-2.152,5.643-4.479,11.004-6.717,16.161c-1.18,2.557-2.335,5.06-3.465,7.507c-3.576,7.855-7.458,15.566-11.815,23.02
|
|
13
|
+
c-10.163,3.585-19.283,7.741-26.857,12.625c-4.063,2.625-7.652,5.476-10.641,8.603c-2.822,2.952-5.69,6.783-5.941,11.024
|
|
14
|
+
c-0.141,2.394,0.807,4.717,2.768,6.137c2.697,2.015,6.271,1.881,9.4,1.225c10.25-2.15,18.121-10.961,24.824-18.387
|
|
15
|
+
c4.617-5.115,9.872-11.61,15.369-19.465c0.012-0.018,0.024-0.036,0.037-0.054c9.428-2.923,19.689-5.391,30.579-7.205
|
|
16
|
+
c4.975-0.825,10.082-1.5,15.291-1.974c3.663,3.431,7.621,6.555,11.939,9.164c3.363,2.069,6.94,3.816,10.684,5.119
|
|
17
|
+
c3.786,1.237,7.595,2.247,11.528,2.886c1.986,0.284,4.017,0.413,6.092,0.335c4.631-0.175,11.278-1.951,11.714-7.57
|
|
18
|
+
C231.127,152.765,230.756,151.257,230.013,149.935z M119.144,160.245c-2.169,3.36-4.261,6.382-6.232,9.041
|
|
19
|
+
c-4.827,6.568-10.34,14.369-18.322,17.286c-1.516,0.554-3.512,1.126-5.616,1.002c-1.874-0.11-3.722-0.937-3.637-3.065
|
|
20
|
+
c0.042-1.114,0.587-2.535,1.423-3.931c0.915-1.531,2.048-2.935,3.275-4.226c2.629-2.762,5.953-5.439,9.777-7.918
|
|
21
|
+
c5.865-3.805,12.867-7.23,20.672-10.286C120.035,158.858,119.587,159.564,119.144,160.245z M146.366,75.985
|
|
22
|
+
c-0.602-3.514-0.693-7.077-0.323-10.503c0.184-1.713,0.533-3.385,1.038-4.952c0.428-1.33,1.352-4.576,2.826-4.993
|
|
23
|
+
c2.43-0.688,3.177,4.529,3.452,6.005c1.566,8.396,0.186,17.733-1.693,25.969c-0.299,1.31-0.632,2.599-0.973,3.883
|
|
24
|
+
c-0.582-1.601-1.137-3.207-1.648-4.821C147.945,83.048,146.939,79.482,146.366,75.985z M163.049,142.265
|
|
25
|
+
c-9.13,1.48-17.815,3.419-25.979,5.708c0.983-0.275,5.475-8.788,6.477-10.555c4.721-8.315,8.583-17.042,11.358-26.197
|
|
26
|
+
c4.9,9.691,10.847,18.962,18.153,27.214c0.673,0.749,1.357,1.489,2.053,2.22C171.017,141.096,166.988,141.633,163.049,142.265z
|
|
27
|
+
M224.793,153.959c-0.334,1.805-4.189,2.837-5.988,3.121c-5.316,0.836-10.94,0.167-16.028-1.542
|
|
28
|
+
c-3.491-1.172-6.858-2.768-10.057-4.688c-3.18-1.921-6.155-4.181-8.936-6.673c3.429-0.206,6.9-0.341,10.388-0.275
|
|
29
|
+
c3.488,0.035,7.003,0.211,10.475,0.664c6.511,0.726,13.807,2.961,18.932,7.186C224.588,152.585,224.91,153.321,224.793,153.959z"/>
|
|
30
|
+
<polygon style="fill:#FB3449;" points="227.64,25.263 32.842,25.263 32.842,0 219.821,0 "/>
|
|
31
|
+
<g>
|
|
32
|
+
<path style="fill:#A4A9AD;" d="M126.841,241.152c0,5.361-1.58,9.501-4.742,12.421c-3.162,2.921-7.652,4.381-13.472,4.381h-3.643
|
|
33
|
+
v15.917H92.022v-47.979h16.606c6.06,0,10.611,1.324,13.652,3.971C125.321,232.51,126.841,236.273,126.841,241.152z
|
|
34
|
+
M104.985,247.387h2.363c1.947,0,3.495-0.546,4.644-1.641c1.149-1.094,1.723-2.604,1.723-4.529c0-3.238-1.794-4.857-5.382-4.857
|
|
35
|
+
h-3.348C104.985,236.36,104.985,247.387,104.985,247.387z"/>
|
|
36
|
+
<path style="fill:#A4A9AD;" d="M175.215,248.864c0,8.007-2.205,14.177-6.613,18.509s-10.606,6.498-18.591,6.498h-15.523v-47.979
|
|
37
|
+
h16.606c7.701,0,13.646,1.969,17.836,5.907C173.119,235.737,175.215,241.426,175.215,248.864z M161.76,249.324
|
|
38
|
+
c0-4.398-0.87-7.657-2.609-9.78c-1.739-2.122-4.381-3.183-7.926-3.183h-3.773v26.877h2.888c3.939,0,6.826-1.143,8.664-3.43
|
|
39
|
+
C160.841,257.523,161.76,254.028,161.76,249.324z"/>
|
|
40
|
+
<path style="fill:#A4A9AD;" d="M196.579,273.871h-12.766v-47.979h28.355v10.403h-15.589v9.156h14.374v10.403h-14.374
|
|
41
|
+
L196.579,273.871L196.579,273.871z"/>
|
|
42
|
+
</g>
|
|
43
|
+
<polygon style="fill:#D1D3D3;" points="219.821,50.525 270.346,50.525 219.821,0 "/>
|
|
44
|
+
</g>
|
|
45
|
+
<g>
|
|
46
|
+
</g>
|
|
47
|
+
<g>
|
|
48
|
+
</g>
|
|
49
|
+
<g>
|
|
50
|
+
</g>
|
|
51
|
+
<g>
|
|
52
|
+
</g>
|
|
53
|
+
<g>
|
|
54
|
+
</g>
|
|
55
|
+
<g>
|
|
56
|
+
</g>
|
|
57
|
+
<g>
|
|
58
|
+
</g>
|
|
59
|
+
<g>
|
|
60
|
+
</g>
|
|
61
|
+
<g>
|
|
62
|
+
</g>
|
|
63
|
+
<g>
|
|
64
|
+
</g>
|
|
65
|
+
<g>
|
|
66
|
+
</g>
|
|
67
|
+
<g>
|
|
68
|
+
</g>
|
|
69
|
+
<g>
|
|
70
|
+
</g>
|
|
71
|
+
<g>
|
|
72
|
+
</g>
|
|
73
|
+
<g>
|
|
74
|
+
</g>
|
|
75
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="15" height="15" viewBox="0 0 30 31" fill="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line x1="7.70711" y1="7.5" x2="23" y2="22.7929" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M23 7.5L8 22.5" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="11.124" height="11.008" viewBox="0 0 11.124 11.008">
|
|
2
|
+
<path id="arrow_upward_FILL1_wght400_GRAD0_opsz48" d="M9.18,14.829V6.34l-4,4L4.5,9.664,9.664,4.5l5.164,5.164-.678.678-4-4v8.489Z" transform="translate(-4.102 -4.102)" fill="#fff" stroke="#fff" stroke-width="0.563"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
|
5
|
+
<g>
|
|
6
|
+
<rect x="370.759" y="406.069" style="fill:#E4EAF6;" width="17.655" height="17.655"/>
|
|
7
|
+
<path style="fill:#E4EAF6;" d="M355.326,346.052c-0.255-0.582-0.491-1.174-0.704-1.777h-1.577
|
|
8
|
+
C353.815,344.855,354.575,345.449,355.326,346.052z"/>
|
|
9
|
+
<rect x="211.862" y="406.069" style="fill:#E4EAF6;" width="17.655" height="17.655"/>
|
|
10
|
+
<path style="fill:#E4EAF6;" d="M388.414,335.448c0-4.871-3.961-8.828-8.828-8.828s-8.828,3.957-8.828,8.828
|
|
11
|
+
c0,4.871,3.961,8.828,8.828,8.828S388.414,340.319,388.414,335.448z"/>
|
|
12
|
+
<path style="fill:#E4EAF6;" d="M245.654,344.276c-0.214,0.602-0.448,1.194-0.704,1.775c0.75-0.604,1.51-1.196,2.28-1.775H245.654z"
|
|
13
|
+
/>
|
|
14
|
+
<path style="fill:#E4EAF6;" d="M406.069,105.931c-14.626,0-26.483-11.857-26.483-26.483V0H141.241
|
|
15
|
+
c-14.626,0-26.483,11.857-26.483,26.483v61.793h220.69c9.751,0,17.655,7.905,17.655,17.655v123.586
|
|
16
|
+
c0,9.75-7.904,17.655-17.655,17.655h-220.69v238.345c0,14.626,11.857,26.483,26.483,26.483h317.793
|
|
17
|
+
c14.626,0,26.483-11.857,26.483-26.483V105.931H406.069z M384.351,388.414h12.886c4.875,0,8.828,3.948,8.828,8.828v35.31
|
|
18
|
+
c0,4.879-3.953,8.828-8.828,8.828h-35.31c-4.875,0-8.828-3.948-8.828-8.828v-35.31c0-4.879,3.953-8.828,8.828-8.828h3.677
|
|
19
|
+
c-7.17-17.661-21.325-31.817-38.983-38.988v3.678c0,4.879-3.953,8.828-8.828,8.828h-35.31c-4.875,0-8.828-3.948-8.828-8.828v-3.679
|
|
20
|
+
c-17.656,7.17-31.812,21.327-38.986,38.989h3.676c4.875,0,8.828,3.948,8.828,8.828v35.31c0,4.879-3.953,8.828-8.828,8.828h-35.31
|
|
21
|
+
c-4.875,0-8.828-3.948-8.828-8.828v-35.31c0-4.879,3.953-8.828,8.828-8.828h12.887c3.322-10.549,8.586-20.259,15.374-28.706
|
|
22
|
+
c-3.25,1.426-6.836,2.223-10.606,2.223c-14.603,0-26.483-11.88-26.483-26.483c0-14.603,11.88-26.483,26.483-26.483
|
|
23
|
+
c11.509,0,21.321,7.38,24.964,17.655h28.001v-8.828c0-4.879,3.953-8.828,8.828-8.828h35.31c4.875,0,8.828,3.948,8.828,8.828v8.828
|
|
24
|
+
h28.001c3.644-10.275,13.455-17.655,24.964-17.655c14.603,0,26.483,11.88,26.483,26.483c0,14.603-11.88,26.483-26.483,26.483
|
|
25
|
+
c-3.772,0-7.358-0.798-10.607-2.225C375.766,368.153,381.03,377.865,384.351,388.414z"/>
|
|
26
|
+
<rect x="291.31" y="326.621" style="fill:#E4EAF6;" width="17.655" height="17.655"/>
|
|
27
|
+
<path style="fill:#E4EAF6;" d="M220.69,326.621c-4.866,0-8.828,3.957-8.828,8.828c0,4.871,3.961,8.828,8.828,8.828
|
|
28
|
+
s8.828-3.957,8.828-8.828C229.517,330.578,225.556,326.621,220.69,326.621z"/>
|
|
29
|
+
</g>
|
|
30
|
+
<path style="fill:#D2DCF0;" d="M406.069,105.931h79.448L379.586,0v79.448C379.586,94.074,391.443,105.931,406.069,105.931z"/>
|
|
31
|
+
<g>
|
|
32
|
+
<path style="fill:#464655;" d="M353.103,229.517V105.931c0-9.75-7.904-17.655-17.655-17.655h-220.69H44.138
|
|
33
|
+
c-9.751,0-17.655,7.905-17.655,17.655v123.586c0,9.75,7.904,17.655,17.655,17.655h70.621h220.69
|
|
34
|
+
C345.199,247.172,353.103,239.267,353.103,229.517z M114.759,211.862H70.621c-4.875,0-8.828-3.948-8.828-8.828
|
|
35
|
+
s3.953-8.828,8.828-8.828h44.138c4.866,0,8.828-3.957,8.828-8.828c0-4.871-3.961-8.828-8.828-8.828H88.276
|
|
36
|
+
c-14.603,0-26.483-11.88-26.483-26.483s11.88-26.483,26.483-26.483h35.31c4.875,0,8.828,3.948,8.828,8.828
|
|
37
|
+
c0,4.879-3.953,8.828-8.828,8.828h-35.31c-4.866,0-8.828,3.957-8.828,8.828s3.961,8.828,8.828,8.828h26.483
|
|
38
|
+
c14.603,0,26.483,11.88,26.483,26.483S129.362,211.862,114.759,211.862z M229.255,134.552l-14.444,57.775
|
|
39
|
+
c-2.876,11.5-13.164,19.534-25.017,19.534c-11.853,0-22.142-8.034-25.017-19.534l-14.444-57.775
|
|
40
|
+
c-1.181-4.724,1.694-9.517,6.422-10.698c4.724-1.19,9.522,1.681,10.707,6.422l14.444,57.775c0.905,3.62,4.151,6.155,7.887,6.155
|
|
41
|
+
s6.983-2.535,7.887-6.155l14.444-57.775c1.185-4.742,6.001-7.612,10.707-6.422C227.561,125.035,230.435,129.827,229.255,134.552z
|
|
42
|
+
M317.793,176.552c0,19.474-15.84,35.31-35.31,35.31h-8.828c-19.47,0-35.31-15.837-35.31-35.31v-17.655
|
|
43
|
+
c0-19.474,15.84-35.31,35.31-35.31h8.828c10.035,0,19.629,4.294,26.319,11.767c3.25,3.638,2.935,9.216-0.698,12.466
|
|
44
|
+
c-3.634,3.258-9.207,2.94-12.466-0.69c-3.34-3.742-8.138-5.888-13.155-5.888h-8.828c-9.737,0-17.655,7.923-17.655,17.655v17.655
|
|
45
|
+
c0,9.732,7.918,17.655,17.655,17.655h8.828c9.737,0,17.655-7.923,17.655-17.655h-17.655c-4.875,0-8.828-3.948-8.828-8.828
|
|
46
|
+
s3.953-8.828,8.828-8.828h26.483c4.875,0,8.828,3.948,8.828,8.828V176.552z"/>
|
|
47
|
+
<path style="fill:#464655;" d="M406.069,335.448c0-14.603-11.88-26.483-26.483-26.483c-11.509,0-21.321,7.38-24.964,17.655h-28.001
|
|
48
|
+
v-8.828c0-4.879-3.953-8.828-8.828-8.828h-35.31c-4.875,0-8.828,3.948-8.828,8.828v8.828h-28.001
|
|
49
|
+
c-3.644-10.275-13.455-17.655-24.964-17.655c-14.603,0-26.483,11.88-26.483,26.483c0,14.603,11.88,26.483,26.483,26.483
|
|
50
|
+
c3.77,0,7.357-0.798,10.606-2.223c-6.788,8.447-12.052,18.157-15.374,28.706h-12.887c-4.875,0-8.828,3.948-8.828,8.828v35.31
|
|
51
|
+
c0,4.879,3.953,8.828,8.828,8.828h35.31c4.875,0,8.828-3.948,8.828-8.828v-35.31c0-4.879-3.953-8.828-8.828-8.828h-3.676
|
|
52
|
+
c7.172-17.662,21.329-31.819,38.986-38.989v3.679c0,4.879,3.953,8.828,8.828,8.828h35.31c4.875,0,8.828-3.948,8.828-8.828v-3.678
|
|
53
|
+
c17.657,7.171,31.812,21.327,38.983,38.988h-3.677c-4.875,0-8.828,3.948-8.828,8.828v35.31c0,4.879,3.953,8.828,8.828,8.828h35.31
|
|
54
|
+
c4.875,0,8.828-3.948,8.828-8.828v-35.31c0-4.879-3.953-8.828-8.828-8.828h-12.886c-3.321-10.549-8.585-20.26-15.373-28.707
|
|
55
|
+
c3.25,1.427,6.837,2.225,10.607,2.225C394.189,361.931,406.069,350.051,406.069,335.448z M229.517,423.724h-17.655v-17.655h17.655
|
|
56
|
+
V423.724z M388.409,423.724h-17.655v-17.655h17.655V423.724z M355.326,346.052c-0.751-0.604-1.511-1.197-2.282-1.777h1.577
|
|
57
|
+
C354.836,344.878,355.071,345.471,355.326,346.052z M245.654,344.276h1.576c-0.77,0.579-1.529,1.172-2.28,1.775
|
|
58
|
+
C245.206,345.47,245.44,344.878,245.654,344.276z M220.69,344.276c-4.866,0-8.828-3.957-8.828-8.828
|
|
59
|
+
c0-4.871,3.961-8.828,8.828-8.828s8.828,3.957,8.828,8.828C229.517,340.319,225.556,344.276,220.69,344.276z M308.966,344.276
|
|
60
|
+
H291.31v-17.655h17.655V344.276z M370.759,335.448c0-4.871,3.961-8.828,8.828-8.828s8.828,3.957,8.828,8.828
|
|
61
|
+
c0,4.871-3.961,8.828-8.828,8.828S370.759,340.319,370.759,335.448z"/>
|
|
62
|
+
</g>
|
|
63
|
+
<g>
|
|
64
|
+
<path style="fill:#FF9646;" d="M114.759,158.897H88.276c-4.866,0-8.828-3.957-8.828-8.828s3.961-8.828,8.828-8.828h35.31
|
|
65
|
+
c4.875,0,8.828-3.948,8.828-8.828c0-4.879-3.953-8.828-8.828-8.828h-35.31c-14.603,0-26.483,11.88-26.483,26.483
|
|
66
|
+
s11.88,26.483,26.483,26.483h26.483c4.866,0,8.828,3.957,8.828,8.828c0,4.871-3.961,8.828-8.828,8.828H70.621
|
|
67
|
+
c-4.875,0-8.828,3.948-8.828,8.828s3.953,8.828,8.828,8.828h44.138c14.603,0,26.483-11.88,26.483-26.483
|
|
68
|
+
S129.362,158.897,114.759,158.897z"/>
|
|
69
|
+
<path style="fill:#FF9646;" d="M308.966,158.897h-26.483c-4.875,0-8.828,3.948-8.828,8.828s3.953,8.828,8.828,8.828h17.655
|
|
70
|
+
c0,9.732-7.918,17.655-17.655,17.655h-8.828c-9.737,0-17.655-7.923-17.655-17.655v-17.655c0-9.732,7.918-17.655,17.655-17.655
|
|
71
|
+
h8.828c5.017,0,9.815,2.146,13.155,5.888c3.258,3.629,8.832,3.948,12.466,0.69c3.634-3.25,3.948-8.828,0.698-12.466
|
|
72
|
+
c-6.69-7.474-16.285-11.767-26.319-11.767h-8.828c-19.47,0-35.31,15.837-35.31,35.31v17.655c0,19.474,15.84,35.31,35.31,35.31
|
|
73
|
+
h8.828c19.47,0,35.31-15.837,35.31-35.31v-8.828C317.793,162.845,313.841,158.897,308.966,158.897z"/>
|
|
74
|
+
<path style="fill:#FF9646;" d="M222.831,123.853c-4.707-1.19-9.522,1.681-10.707,6.422l-14.444,57.775
|
|
75
|
+
c-0.905,3.62-4.151,6.155-7.887,6.155c-3.736,0-6.983-2.535-7.887-6.155l-14.444-57.775c-1.185-4.742-5.983-7.612-10.707-6.422
|
|
76
|
+
c-4.728,1.181-7.604,5.974-6.422,10.698l14.444,57.775c2.874,11.501,13.163,19.535,25.016,19.535
|
|
77
|
+
c11.853,0,22.142-8.034,25.017-19.534l14.444-57.775C230.435,129.827,227.561,125.035,222.831,123.853z"/>
|
|
78
|
+
</g>
|
|
79
|
+
<g>
|
|
80
|
+
</g>
|
|
81
|
+
<g>
|
|
82
|
+
</g>
|
|
83
|
+
<g>
|
|
84
|
+
</g>
|
|
85
|
+
<g>
|
|
86
|
+
</g>
|
|
87
|
+
<g>
|
|
88
|
+
</g>
|
|
89
|
+
<g>
|
|
90
|
+
</g>
|
|
91
|
+
<g>
|
|
92
|
+
</g>
|
|
93
|
+
<g>
|
|
94
|
+
</g>
|
|
95
|
+
<g>
|
|
96
|
+
</g>
|
|
97
|
+
<g>
|
|
98
|
+
</g>
|
|
99
|
+
<g>
|
|
100
|
+
</g>
|
|
101
|
+
<g>
|
|
102
|
+
</g>
|
|
103
|
+
<g>
|
|
104
|
+
</g>
|
|
105
|
+
<g>
|
|
106
|
+
</g>
|
|
107
|
+
<g>
|
|
108
|
+
</g>
|
|
109
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="12.213" height="15.267" viewBox="0 0 12.213 15.267">
|
|
2
|
+
<path id="upload_file_FILL0_wght400_GRAD0_opsz48" d="M7.972,14.139H9.117V10.3l1.565,1.565.8-.8-2.977-2.9L5.568,11.1l.8.8,1.6-1.6ZM3.545,16.467a1.1,1.1,0,0,1-.8-.344,1.1,1.1,0,0,1-.344-.8V2.345a1.1,1.1,0,0,1,.344-.8,1.1,1.1,0,0,1,.8-.344h6.889l4.179,4.179v9.942a1.174,1.174,0,0,1-1.145,1.145ZM9.862,5.895V2.345H3.545V15.322h9.923V5.895ZM3.545,2.345v0Z" transform="translate(-2.4 -1.2)" fill="#707070"/>
|
|
3
|
+
</svg>
|