bitmovin-player-ui
Advanced tools
Comparing version 3.27.0 to 3.28.0
@@ -7,4 +7,9 @@ # Change Log | ||
## [3.27.0] | ||
## [3.28.0] | ||
### Fixed | ||
- VTT cue positioning when position alignment is `end` or `right` | ||
## [3.27.0] - 2021-04-11 | ||
### Added | ||
@@ -16,3 +21,3 @@ - Support for `CueUpdate` events that were introduced in player v8.60.0 | ||
## [3.26.0] | ||
## [3.26.0] - 2021-03-30 | ||
@@ -19,0 +24,0 @@ ### Fixed |
{ | ||
"name": "bitmovin-player-ui", | ||
"version": "3.27.0", | ||
"version": "3.28.0", | ||
"description": "Bitmovin Player UI Framework", | ||
@@ -5,0 +5,0 @@ "main": "./dist/js/framework/main.js", |
@@ -554,3 +554,3 @@ import { SubtitleRegionContainer, SubtitleLabel } from '../src/ts/components/subtitleoverlay'; | ||
expect(spyCss).toHaveBeenNthCalledWith(10, 'left', 'auto'); | ||
expect(spyCss).toHaveBeenNthCalledWith(11, 'right', '30%'); | ||
expect(spyCss).toHaveBeenNthCalledWith(11, 'right', '70%'); | ||
}); | ||
@@ -649,3 +649,3 @@ }); | ||
expect(spyCss).toHaveBeenNthCalledWith(11, 'top', 'auto'); | ||
expect(spyCss).toHaveBeenNthCalledWith(12, 'bottom', '30%'); | ||
expect(spyCss).toHaveBeenNthCalledWith(12, 'bottom', '70%'); | ||
}); | ||
@@ -652,0 +652,0 @@ }); |
@@ -131,3 +131,3 @@ import { SubtitleRegionContainer, SubtitleLabel } from './components/subtitleoverlay'; | ||
cueContainerDom.css(direction, 'auto'); | ||
cueContainerDom.css(DirectionPair.get(direction), `${vtt.position}%`); | ||
cueContainerDom.css(DirectionPair.get(direction), `${100 - vtt.position}%`); | ||
cueContainerDom.css('justify-content', 'flex-end'); | ||
@@ -134,0 +134,0 @@ break; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3717158
243
33632