contentoh-components-library 21.3.30 → 21.3.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/.env.development +3 -0
  2. package/.env.production +2 -3
  3. package/dist/assets/images/generalButton/closeIcon.svg +2 -2
  4. package/dist/components/atoms/ProgressBar/index.js +36 -6
  5. package/dist/components/atoms/ProgressBar/styles.js +11 -3
  6. package/dist/components/molecules/CustomSelect/CustomSelect.stories.js +21 -22
  7. package/dist/components/molecules/CustomSelect/SelectItem.js +10 -1
  8. package/dist/components/molecules/GalleryElement/index.js +1 -1
  9. package/dist/components/molecules/HeaderTop/styles.js +1 -1
  10. package/dist/components/molecules/ProductNameHeader/index.js +6 -4
  11. package/dist/components/molecules/StatusAsignationInfo/index.js +1 -1
  12. package/dist/components/organisms/FullProductNameHeader/index.js +1 -0
  13. package/dist/components/organisms/ProductImageModal/index.js +10 -3
  14. package/dist/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +214 -30
  15. package/dist/components/pages/ProviderProductEdition/index.js +88 -66
  16. package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +73 -41
  17. package/dist/components/pages/RetailerProductEdition/index.js +20 -15
  18. package/dist/components/pages/RetailerProductEdition/utils.js +1 -1
  19. package/dist/global-files/data.js +18 -23
  20. package/dist/global-files/fonts.css +6 -0
  21. package/dist/global-files/variables.js +2 -0
  22. package/dist/index.js +267 -46
  23. package/package.json +13 -1
  24. package/src/assets/images/customSelect/starIcon.svg +14 -0
  25. package/src/assets/images/defaultImages/Spinner.gif +0 -0
  26. package/src/assets/images/defaultImages/notFound.svg +124 -0
  27. package/src/assets/images/generalButton/closeIcon.svg +2 -2
  28. package/src/assets/sounds/newMessage.mp3 +0 -0
  29. package/src/components/atoms/ButtonFileChooser/ButtonFileChooser.stories.js +47 -0
  30. package/src/components/atoms/ButtonFileChooser/index.js +68 -0
  31. package/src/components/atoms/ButtonFileChooser/styles.js +4 -0
  32. package/src/components/atoms/ButtonV2/ButtonV2.stories.js +53 -0
  33. package/src/components/atoms/ButtonV2/index.js +85 -0
  34. package/src/components/atoms/ButtonV2/styles.js +217 -0
  35. package/src/components/atoms/CustomIcon/CustomIcon.stories.js +36 -0
  36. package/src/components/atoms/CustomIcon/index.js +41 -0
  37. package/src/components/atoms/CustomIcon/styles.js +85 -0
  38. package/src/components/atoms/IconFile/IconFile.stories.js +35 -0
  39. package/src/components/atoms/IconFile/index.js +119 -0
  40. package/src/components/atoms/IconFile/styles.js +67 -0
  41. package/src/components/atoms/Image/Image.stories.js +51 -0
  42. package/src/components/atoms/Image/index.js +55 -0
  43. package/src/components/atoms/Image/styles.js +34 -0
  44. package/src/components/atoms/ImageLink/ImageLink.stories.js +43 -0
  45. package/src/components/atoms/ImageLink/index.js +57 -0
  46. package/src/components/atoms/ImageLink/styles.js +30 -0
  47. package/src/components/atoms/ImagePreview/ImagePreview.stories.js +52 -0
  48. package/src/components/atoms/ImagePreview/index.js +178 -0
  49. package/src/components/atoms/ImagePreview/styles.js +77 -0
  50. package/src/components/atoms/InputText/InputText.stories.js +39 -0
  51. package/src/components/atoms/InputText/index.js +61 -0
  52. package/src/components/atoms/InputText/styles.js +89 -0
  53. package/src/components/atoms/NotFound/NotFound.stories.js +19 -0
  54. package/src/components/atoms/NotFound/index.js +52 -0
  55. package/src/components/atoms/NotFound/styles.js +55 -0
  56. package/src/components/atoms/ProgressBar/index.js +40 -5
  57. package/src/components/atoms/ProgressBar/styles.js +24 -0
  58. package/src/components/atoms/SelectItemV2/SelectItemV2.stories.js +26 -0
  59. package/src/components/atoms/SelectItemV2/index.js +61 -0
  60. package/src/components/atoms/SelectItemV2/styles.js +90 -0
  61. package/src/components/atoms/Tooltip/Tooltip.stories.js +51 -0
  62. package/src/components/atoms/Tooltip/index.js +59 -0
  63. package/src/components/atoms/Tooltip/styles.js +42 -0
  64. package/src/components/molecules/ButtonDownloadFile/DownloadFile.stories.js +54 -0
  65. package/src/components/molecules/ButtonDownloadFile/index.js +109 -0
  66. package/src/components/molecules/ButtonDownloadFile/styles.js +66 -0
  67. package/src/components/molecules/CustomSelect/CustomSelect.stories.js +20 -12
  68. package/src/components/molecules/CustomSelect/SelectItem.js +7 -0
  69. package/src/components/molecules/Dropdown/Dropdown.stories.js +103 -0
  70. package/src/components/molecules/Dropdown/index.js +150 -0
  71. package/src/components/molecules/Dropdown/styles.js +75 -0
  72. package/src/components/molecules/GalleryElement/index.js +1 -1
  73. package/src/components/molecules/HeaderTop/styles.js +5 -2
  74. package/src/components/molecules/ImageTooltip/ImageTooltip.stories.js +68 -0
  75. package/src/components/molecules/ImageTooltip/index.js +63 -0
  76. package/src/components/molecules/ImageTooltip/styles.js +18 -0
  77. package/src/components/molecules/ProductNameHeader/index.js +7 -2
  78. package/src/components/molecules/SelectV2/SelectV2.stories.js +115 -0
  79. package/src/components/molecules/SelectV2/index.js +357 -0
  80. package/src/components/molecules/SelectV2/styles.js +105 -0
  81. package/src/components/molecules/SelectV2/test.js +60 -0
  82. package/src/components/molecules/SelectV2/test.stories.js +10 -0
  83. package/src/components/molecules/StatusAsignationInfo/index.js +11 -9
  84. package/src/components/organisms/Chat/Chat.stories.js +149 -0
  85. package/src/components/organisms/Chat/ChatLists/ChatLists.stories.js +65 -0
  86. package/src/components/organisms/Chat/ChatLists/Rotoplas.jpeg +0 -0
  87. package/src/components/organisms/Chat/ChatLists/THD.png +0 -0
  88. package/src/components/organisms/Chat/ChatLists/index.js +141 -0
  89. package/src/components/organisms/Chat/ChatLists/styles.js +162 -0
  90. package/src/components/organisms/Chat/ContainerItems/ContainerItems.stories.js +142 -0
  91. package/src/components/organisms/Chat/ContainerItems/index.js +522 -0
  92. package/src/components/organisms/Chat/ContainerItems/styles.js +348 -0
  93. package/src/components/organisms/Chat/ContentChat/ContentChat.stories.js +102 -0
  94. package/src/components/organisms/Chat/ContentChat/Rotoplas.jpeg +0 -0
  95. package/src/components/organisms/Chat/ContentChat/THD.png +0 -0
  96. package/src/components/organisms/Chat/ContentChat/index.js +922 -0
  97. package/src/components/organisms/Chat/ContentChat/styles.js +41 -0
  98. package/src/components/organisms/Chat/Footer/Footer.stories.js +22 -0
  99. package/src/components/organisms/Chat/Footer/index.js +661 -0
  100. package/src/components/organisms/Chat/Footer/styles.js +286 -0
  101. package/src/components/organisms/Chat/Header/Header.stories.js +66 -0
  102. package/src/components/organisms/Chat/Header/index.js +93 -0
  103. package/src/components/organisms/Chat/Header/styles.js +49 -0
  104. package/src/components/organisms/Chat/index.js +238 -0
  105. package/src/components/organisms/Chat/styles.js +42 -0
  106. package/src/components/organisms/FullProductNameHeader/index.js +1 -0
  107. package/src/components/organisms/Modal/Modal.stories.js +55 -0
  108. package/src/components/organisms/Modal/index.js +97 -0
  109. package/src/components/organisms/Modal/styles.js +103 -0
  110. package/src/components/organisms/ProductImageModal/index.js +6 -3
  111. package/src/components/organisms/RangeCalendar/RangeCalendar.stories.js +16 -0
  112. package/src/components/organisms/RangeCalendar/index.js +121 -0
  113. package/src/components/organisms/RangeCalendar/styles.js +883 -0
  114. package/src/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +239 -32
  115. package/src/components/pages/ProviderProductEdition/index.js +88 -67
  116. package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +78 -41
  117. package/src/components/pages/RetailerProductEdition/index.js +19 -21
  118. package/src/components/pages/RetailerProductEdition/utils.js +2 -1
  119. package/src/global-files/data.js +18 -23
  120. package/src/global-files/fonts.css +6 -0
  121. package/src/global-files/handle_http.js +225 -0
  122. package/src/global-files/handle_userTech.js +7 -0
  123. package/src/global-files/utils.js +330 -0
  124. package/src/global-files/variables.js +2 -0
  125. package/src/index.js +17 -0
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/molecules/AvatarAndValidation/index");
319
+ var _index25 = require("./components/atoms/ButtonFileChooser/index");
320
320
 
321
321
  Object.keys(_index25).forEach(function (key) {
322
322
  if (key === "default" || key === "__esModule") return;
@@ -329,20 +329,7 @@ Object.keys(_index25).forEach(function (key) {
329
329
  });
330
330
  });
331
331
 
332
- var _CarouselImagesLogin = require("./components/molecules/CarouselImagesLogin");
333
-
334
- Object.keys(_CarouselImagesLogin).forEach(function (key) {
335
- if (key === "default" || key === "__esModule") return;
336
- if (key in exports && exports[key] === _CarouselImagesLogin[key]) return;
337
- Object.defineProperty(exports, key, {
338
- enumerable: true,
339
- get: function get() {
340
- return _CarouselImagesLogin[key];
341
- }
342
- });
343
- });
344
-
345
- var _index26 = require("./components/molecules/EditionActiveImage/index");
332
+ var _index26 = require("./components/atoms/ButtonV2/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/EmailResetPasswordLogin/index");
345
+ var _index27 = require("./components/atoms/CustomIcon/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/FeaturesBar/index");
358
+ var _index28 = require("./components/atoms/IconFile/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/GalleryElement/index");
371
+ var _index29 = require("./components/atoms/Image/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/HeaderTop/index");
384
+ var _index30 = require("./components/atoms/ImageLink/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/ImageSelector/index");
397
+ var _index31 = require("./components/atoms/ImagePreview/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/LoginPasswordStrength/index");
410
+ var _index32 = require("./components/atoms/InputText/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/LogoLoading/index");
423
+ var _index33 = require("./components/atoms/NotFound/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/PlanSelection/index");
436
+ var _index34 = require("./components/atoms/Tooltip/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/molecules/ProductNameHeader/index");
449
+ var _index35 = require("./components/molecules/AvatarAndValidation/index");
463
450
 
464
451
  Object.keys(_index35).forEach(function (key) {
465
452
  if (key === "default" || key === "__esModule") return;
@@ -472,7 +459,20 @@ Object.keys(_index35).forEach(function (key) {
472
459
  });
473
460
  });
474
461
 
475
- var _index36 = require("./components/molecules/RegistrationFirstStep/index");
462
+ var _CarouselImagesLogin = require("./components/molecules/CarouselImagesLogin");
463
+
464
+ Object.keys(_CarouselImagesLogin).forEach(function (key) {
465
+ if (key === "default" || key === "__esModule") return;
466
+ if (key in exports && exports[key] === _CarouselImagesLogin[key]) return;
467
+ Object.defineProperty(exports, key, {
468
+ enumerable: true,
469
+ get: function get() {
470
+ return _CarouselImagesLogin[key];
471
+ }
472
+ });
473
+ });
474
+
475
+ var _index36 = require("./components/molecules/EditionActiveImage/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/RegistrationSecondStep/index");
488
+ var _index37 = require("./components/molecules/EmailResetPasswordLogin/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/RegistrationThirdStep/index");
501
+ var _index38 = require("./components/molecules/FeaturesBar/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/SignInLogin/index");
514
+ var _index39 = require("./components/molecules/GalleryElement/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/StatusAsignationInfo/index");
527
+ var _index40 = require("./components/molecules/HeaderTop/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/TableHeader/index");
540
+ var _index41 = require("./components/molecules/ImageSelector/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/TableRow/index");
553
+ var _index42 = require("./components/molecules/LoginPasswordStrength/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/TabsMenu/index");
566
+ var _index43 = require("./components/molecules/LogoLoading/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/TagAndInput/index");
579
+ var _index44 = require("./components/molecules/PlanSelection/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/VerificationCodeResetPasswordLogin/index");
592
+ var _index45 = require("./components/molecules/ProductNameHeader/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/RetailerSelector/index");
605
+ var _index46 = require("./components/molecules/RegistrationFirstStep/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/CustomSelect/index");
618
+ var _index47 = require("./components/molecules/RegistrationSecondStep/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/organisms/ChangePassword/index");
631
+ var _index48 = require("./components/molecules/RegistrationThirdStep/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/Fullplan/index");
644
+ var _index49 = require("./components/molecules/SignInLogin/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/FullProductNameHeader/index");
657
+ var _index50 = require("./components/molecules/StatusAsignationInfo/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/FullTabsMenu/index");
670
+ var _index51 = require("./components/molecules/TableHeader/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/ImageDataTable/index");
683
+ var _index52 = require("./components/molecules/TableRow/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/ImagePreviewer/index");
696
+ var _index53 = require("./components/molecules/TabsMenu/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/ImagesGroup/index");
709
+ var _index54 = require("./components/molecules/TagAndInput/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/InputGroup/index");
722
+ var _index55 = require("./components/molecules/VerificationCodeResetPasswordLogin/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/ProductImageModal/index");
735
+ var _index56 = require("./components/molecules/RetailerSelector/index");
736
736
 
737
737
  Object.keys(_index56).forEach(function (key) {
738
738
  if (key === "default" || key === "__esModule") return;
@@ -745,7 +745,7 @@ Object.keys(_index56).forEach(function (key) {
745
745
  });
746
746
  });
747
747
 
748
- var _index57 = require("./components/organisms/OrderDetail/index");
748
+ var _index57 = require("./components/molecules/CustomSelect/index");
749
749
 
750
750
  Object.keys(_index57).forEach(function (key) {
751
751
  if (key === "default" || key === "__esModule") return;
@@ -758,6 +758,227 @@ Object.keys(_index57).forEach(function (key) {
758
758
  });
759
759
  });
760
760
 
761
+ var _index58 = require("./components/molecules/ButtonDownloadFile/index");
762
+
763
+ Object.keys(_index58).forEach(function (key) {
764
+ if (key === "default" || key === "__esModule") return;
765
+ if (key in exports && exports[key] === _index58[key]) return;
766
+ Object.defineProperty(exports, key, {
767
+ enumerable: true,
768
+ get: function get() {
769
+ return _index58[key];
770
+ }
771
+ });
772
+ });
773
+
774
+ var _index59 = require("./components/molecules/ImageTooltip/index");
775
+
776
+ Object.keys(_index59).forEach(function (key) {
777
+ if (key === "default" || key === "__esModule") return;
778
+ if (key in exports && exports[key] === _index59[key]) return;
779
+ Object.defineProperty(exports, key, {
780
+ enumerable: true,
781
+ get: function get() {
782
+ return _index59[key];
783
+ }
784
+ });
785
+ });
786
+
787
+ var _index60 = require("./components/molecules/SelectV2/index");
788
+
789
+ Object.keys(_index60).forEach(function (key) {
790
+ if (key === "default" || key === "__esModule") return;
791
+ if (key in exports && exports[key] === _index60[key]) return;
792
+ Object.defineProperty(exports, key, {
793
+ enumerable: true,
794
+ get: function get() {
795
+ return _index60[key];
796
+ }
797
+ });
798
+ });
799
+
800
+ var _index61 = require("./components/molecules/Dropdown/index");
801
+
802
+ Object.keys(_index61).forEach(function (key) {
803
+ if (key === "default" || key === "__esModule") return;
804
+ if (key in exports && exports[key] === _index61[key]) return;
805
+ Object.defineProperty(exports, key, {
806
+ enumerable: true,
807
+ get: function get() {
808
+ return _index61[key];
809
+ }
810
+ });
811
+ });
812
+
813
+ var _index62 = require("./components/organisms/ChangePassword/index");
814
+
815
+ Object.keys(_index62).forEach(function (key) {
816
+ if (key === "default" || key === "__esModule") return;
817
+ if (key in exports && exports[key] === _index62[key]) return;
818
+ Object.defineProperty(exports, key, {
819
+ enumerable: true,
820
+ get: function get() {
821
+ return _index62[key];
822
+ }
823
+ });
824
+ });
825
+
826
+ var _index63 = require("./components/organisms/Fullplan/index");
827
+
828
+ Object.keys(_index63).forEach(function (key) {
829
+ if (key === "default" || key === "__esModule") return;
830
+ if (key in exports && exports[key] === _index63[key]) return;
831
+ Object.defineProperty(exports, key, {
832
+ enumerable: true,
833
+ get: function get() {
834
+ return _index63[key];
835
+ }
836
+ });
837
+ });
838
+
839
+ var _index64 = require("./components/organisms/FullProductNameHeader/index");
840
+
841
+ Object.keys(_index64).forEach(function (key) {
842
+ if (key === "default" || key === "__esModule") return;
843
+ if (key in exports && exports[key] === _index64[key]) return;
844
+ Object.defineProperty(exports, key, {
845
+ enumerable: true,
846
+ get: function get() {
847
+ return _index64[key];
848
+ }
849
+ });
850
+ });
851
+
852
+ var _index65 = require("./components/organisms/FullTabsMenu/index");
853
+
854
+ Object.keys(_index65).forEach(function (key) {
855
+ if (key === "default" || key === "__esModule") return;
856
+ if (key in exports && exports[key] === _index65[key]) return;
857
+ Object.defineProperty(exports, key, {
858
+ enumerable: true,
859
+ get: function get() {
860
+ return _index65[key];
861
+ }
862
+ });
863
+ });
864
+
865
+ var _index66 = require("./components/organisms/ImageDataTable/index");
866
+
867
+ Object.keys(_index66).forEach(function (key) {
868
+ if (key === "default" || key === "__esModule") return;
869
+ if (key in exports && exports[key] === _index66[key]) return;
870
+ Object.defineProperty(exports, key, {
871
+ enumerable: true,
872
+ get: function get() {
873
+ return _index66[key];
874
+ }
875
+ });
876
+ });
877
+
878
+ var _index67 = require("./components/organisms/ImagePreviewer/index");
879
+
880
+ Object.keys(_index67).forEach(function (key) {
881
+ if (key === "default" || key === "__esModule") return;
882
+ if (key in exports && exports[key] === _index67[key]) return;
883
+ Object.defineProperty(exports, key, {
884
+ enumerable: true,
885
+ get: function get() {
886
+ return _index67[key];
887
+ }
888
+ });
889
+ });
890
+
891
+ var _index68 = require("./components/organisms/ImagesGroup/index");
892
+
893
+ Object.keys(_index68).forEach(function (key) {
894
+ if (key === "default" || key === "__esModule") return;
895
+ if (key in exports && exports[key] === _index68[key]) return;
896
+ Object.defineProperty(exports, key, {
897
+ enumerable: true,
898
+ get: function get() {
899
+ return _index68[key];
900
+ }
901
+ });
902
+ });
903
+
904
+ var _index69 = require("./components/organisms/InputGroup/index");
905
+
906
+ Object.keys(_index69).forEach(function (key) {
907
+ if (key === "default" || key === "__esModule") return;
908
+ if (key in exports && exports[key] === _index69[key]) return;
909
+ Object.defineProperty(exports, key, {
910
+ enumerable: true,
911
+ get: function get() {
912
+ return _index69[key];
913
+ }
914
+ });
915
+ });
916
+
917
+ var _index70 = require("./components/organisms/ProductImageModal/index");
918
+
919
+ Object.keys(_index70).forEach(function (key) {
920
+ if (key === "default" || key === "__esModule") return;
921
+ if (key in exports && exports[key] === _index70[key]) return;
922
+ Object.defineProperty(exports, key, {
923
+ enumerable: true,
924
+ get: function get() {
925
+ return _index70[key];
926
+ }
927
+ });
928
+ });
929
+
930
+ var _index71 = require("./components/organisms/Chat/index");
931
+
932
+ Object.keys(_index71).forEach(function (key) {
933
+ if (key === "default" || key === "__esModule") return;
934
+ if (key in exports && exports[key] === _index71[key]) return;
935
+ Object.defineProperty(exports, key, {
936
+ enumerable: true,
937
+ get: function get() {
938
+ return _index71[key];
939
+ }
940
+ });
941
+ });
942
+
943
+ var _index72 = require("./components/organisms/Modal/index");
944
+
945
+ Object.keys(_index72).forEach(function (key) {
946
+ if (key === "default" || key === "__esModule") return;
947
+ if (key in exports && exports[key] === _index72[key]) return;
948
+ Object.defineProperty(exports, key, {
949
+ enumerable: true,
950
+ get: function get() {
951
+ return _index72[key];
952
+ }
953
+ });
954
+ });
955
+
956
+ var _index73 = require("./components/organisms/OrderDetail/index");
957
+
958
+ Object.keys(_index73).forEach(function (key) {
959
+ if (key === "default" || key === "__esModule") return;
960
+ if (key in exports && exports[key] === _index73[key]) return;
961
+ Object.defineProperty(exports, key, {
962
+ enumerable: true,
963
+ get: function get() {
964
+ return _index73[key];
965
+ }
966
+ });
967
+ });
968
+
969
+ var _RangeCalendar = require("./components/organisms/RangeCalendar");
970
+
971
+ Object.keys(_RangeCalendar).forEach(function (key) {
972
+ if (key === "default" || key === "__esModule") return;
973
+ if (key in exports && exports[key] === _RangeCalendar[key]) return;
974
+ Object.defineProperty(exports, key, {
975
+ enumerable: true,
976
+ get: function get() {
977
+ return _RangeCalendar[key];
978
+ }
979
+ });
980
+ });
981
+
761
982
  var _ChangePasswordLogin = require("./components/pages/ChangePasswordLogin");
762
983
 
763
984
  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.3.30",
3
+ "version": "21.3.31",
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.5",
10
+ "@emotion/styled": "^11.10.5",
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.11.1",
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",
@@ -27,11 +35,15 @@
27
35
  "react-dom": "^17.0.2",
28
36
  "react-draft-wysiwyg": "^1.14.7",
29
37
  "react-dropzone": "^12.0.4",
38
+ "react-howler": "^5.2.0",
30
39
  "react-image-fallback": "^8.0.0",
31
40
  "react-quill": "^1.3.5",
32
41
  "react-router-dom": "^5.3.3",
42
+ "react-scroll": "^1.8.8",
43
+ "react-transition-group": "^4.4.5",
33
44
  "storybook-addon-external-links": "^2.0.3",
34
45
  "styled-components": "^5.3.3",
46
+ "swiper": "^8.4.4",
35
47
  "uuid": "^8.3.2",
36
48
  "web-vitals": "^1.0.1"
37
49
  },
@@ -0,0 +1,14 @@
1
+ <svg id="Componente_34_12" data-name="Componente 34 – 12" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16">
2
+ <defs>
3
+ <clipPath id="clip-path">
4
+ <rect id="Rectángulo_107" data-name="Rectángulo 107" width="10" height="10" transform="translate(3 3)" fill="#b3b3b3" stroke="#b3b3b3" stroke-width="1"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g id="Rectángulo_287" data-name="Rectángulo 287" fill="#fff" stroke="#f0f0f0" stroke-width="1">
8
+ <rect width="16" height="16" rx="8" stroke="none"/>
9
+ <rect x="0.5" y="0.5" width="15" height="15" rx="7.5" fill="none"/>
10
+ </g>
11
+ <g id="Enmascarar_grupo_79" data-name="Enmascarar grupo 79" clip-path="url(#clip-path)">
12
+ <path id="star_FILL0_wght400_GRAD0_opsz48" d="M4.037,9.438,6,8.262,7.963,9.45,7.438,7.225l1.725-1.5-2.275-.2L6,3.425,5.113,5.512l-2.275.2,1.725,1.5ZM2.912,11l.813-3.512L1,5.125l3.6-.312L6,1.5,7.4,4.813l3.6.313L8.275,7.488,9.087,11,6,9.137ZM6,6.563Z" transform="translate(2 1.5)" fill="#b3b3b3"/>
13
+ </g>
14
+ </svg>