indicator-ui 0.1.42 → 0.1.44

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 (23) hide show
  1. package/dist/index.css +31 -14
  2. package/dist/index.css.map +1 -1
  3. package/dist/index.js +368 -295
  4. package/dist/index.js.map +1 -1
  5. package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-color.scss +1 -1
  6. package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-gray.scss +1 -1
  7. package/dist/types/src/hooks/ui-animations/assets/carouselAnimations.d.ts +3 -0
  8. package/dist/types/src/hooks/ui-animations/useCarousel.d.ts +4 -2
  9. package/dist/types/src/ui/MediaViewer/types/MediaViewerTypes.d.ts +0 -4
  10. package/dist/types/src/ui/MediaViewer/types/components/index.d.ts +0 -3
  11. package/dist/types/src/ui/MediaViewer/ui/MediaViewer.d.ts +1 -1
  12. package/dist/types/src/ui/MediaViewer/ui/components/ControlBar.d.ts +7 -2
  13. package/dist/types/src/ui/MediaViewer/ui/components/ImageViewer.d.ts +7 -2
  14. package/dist/types/src/ui/MediaViewer/ui/components/VideoViewer.d.ts +14 -2
  15. package/dist/types/src/ui/Toggle/types/ToggleTypes.d.ts +2 -0
  16. package/dist/types/src/ui/VideoPlayerBase/index.d.ts +0 -1
  17. package/dist/types/src/ui/VideoPlayerBase/ui/VideoPlayerBase.d.ts +68 -2
  18. package/package.json +1 -1
  19. package/dist/types/src/ui/MediaViewer/types/components/ControlBarTypes.d.ts +0 -9
  20. package/dist/types/src/ui/MediaViewer/types/components/ImageViewerTypes.d.ts +0 -3
  21. package/dist/types/src/ui/MediaViewer/types/components/VideoViewerTypes.d.ts +0 -6
  22. package/dist/types/src/ui/VideoPlayerBase/types/VideoPlayerBaseTypes.d.ts +0 -77
  23. package/dist/types/src/ui/VideoPlayerBase/types/index.d.ts +0 -1
package/dist/index.css CHANGED
@@ -411,7 +411,7 @@
411
411
  opacity: 0.5;
412
412
  }
413
413
  .Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU {
414
- background-color: var(--base-black);
414
+ background-color: transparent;
415
415
  border: 1px solid var(--rose-900);
416
416
  }
417
417
  .Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU .Buttons-module__icon___U2AOU svg * {
@@ -466,7 +466,7 @@
466
466
  opacity: 0.5;
467
467
  }
468
468
  .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy {
469
- background-color: var(--gray-iron-950);
469
+ background-color: transparent;
470
470
  border: 1px solid var(--gray-iron-700);
471
471
  }
472
472
  .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy .Buttons-module__icon___U2AOU svg * {
@@ -3891,6 +3891,7 @@
3891
3891
  height: 8px;
3892
3892
  background-color: rgba(0, 0, 0, 0.4);
3893
3893
  position: relative;
3894
+ cursor: pointer;
3894
3895
  }
3895
3896
  .VideoProgressBar-module__videoProgressBar___QrnSp .VideoProgressBar-module__progressBar___m_P6t {
3896
3897
  height: 100%;
@@ -3910,7 +3911,9 @@
3910
3911
  \**************************************************************************************************************************************************************************************************************************************************************************************/
3911
3912
  .VideoViewer-module__VideoViewer___DnYgG {
3912
3913
  width: fit-content;
3913
- height: 100%;
3914
+ height: fit-content;
3915
+ max-width: 100%;
3916
+ max-height: 100%;
3914
3917
  position: relative;
3915
3918
  overflow: hidden;
3916
3919
  }
@@ -3955,36 +3958,53 @@
3955
3958
  position: absolute;
3956
3959
  bottom: 0;
3957
3960
  }
3961
+ .VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__actions___TZ3Mm {
3962
+ width: 100%;
3963
+ height: fit-content;
3964
+ position: absolute;
3965
+ bottom: 32px;
3966
+ padding: 0 20px;
3967
+ }
3968
+ .VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__actions___TZ3Mm {
3969
+ display: flex;
3970
+ justify-content: space-between;
3971
+ }
3958
3972
  .VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__content___jnFwK {
3959
3973
  flex: none;
3960
3974
  max-width: 100%;
3961
- height: 100%;
3975
+ max-height: 100%;
3962
3976
  object-fit: scale-down;
3963
3977
  }
3964
3978
  .VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__playButton___Sb91y {
3965
- display: none;
3966
3979
  opacity: 0;
3967
3980
  position: absolute;
3968
3981
  top: 50%;
3969
3982
  left: 50%;
3970
3983
  z-index: 1;
3971
3984
  transform: translate(-50%, -50%);
3985
+ cursor: default;
3972
3986
  }
3973
3987
  .VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__playButton___Sb91y {
3974
3988
  display: flex;
3975
3989
  align-items: center;
3976
3990
  justify-content: center;
3977
3991
  }
3992
+ .VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__playButton___Sb91y:not(.VideoViewer-module__show___GsvfN) {
3993
+ display: none;
3994
+ }
3978
3995
  .VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__playButton___Sb91y.VideoViewer-module__show___GsvfN {
3996
+ cursor: pointer;
3979
3997
  animation: VideoViewer-module__appearance___GGxuv ease-out 200ms forwards;
3980
3998
  }
3981
3999
 
3982
4000
  @keyframes VideoViewer-module__appearance___GGxuv {
3983
- from {
3984
- display: block;
4001
+ 0% {
4002
+ display: flex;
4003
+ }
4004
+ 1% {
3985
4005
  opacity: 0;
3986
4006
  }
3987
- to {
4007
+ 100% {
3988
4008
  opacity: 1;
3989
4009
  }
3990
4010
  }
@@ -4028,14 +4048,11 @@
4028
4048
  justify-content: center;
4029
4049
  }
4030
4050
  .MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__control___MB3Xg {
4031
- width: 100%;
4051
+ width: fit-content;
4032
4052
  position: absolute;
4053
+ left: 50%;
4033
4054
  bottom: 32px;
4034
- }
4035
- .MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__control___MB3Xg {
4036
- display: flex;
4037
- align-items: center;
4038
- justify-content: center;
4055
+ transform: translateX(-50%);
4039
4056
  }
4040
4057
  /*!*************************************************************************************************************************************************************************************************************************************************************************!*\
4041
4058
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/PlayButton/styles/PlayButton.module.scss ***!