@kkcompany/player 2.25.0-canary.22 → 2.25.0-canary.23

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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [2.25.0-canary.23](https://gitlab.kkinternal.com/playback/web-playcraft/compare/v2.25.0-canary.22...v2.25.0-canary.23) (2026-01-13)
6
+
5
7
  ## [2.25.0-canary.22](https://gitlab.kkinternal.com/playback/web-playcraft/compare/v2.25.0-canary.21...v2.25.0-canary.22) (2026-01-12)
6
8
 
7
9
 
package/dist/core.mjs CHANGED
@@ -37,7 +37,7 @@ const waitFor = (check, handler) => {
37
37
  function getVersion() {
38
38
  try {
39
39
  // eslint-disable-next-line no-undef
40
- return "2.25.0-canary.22";
40
+ return "2.25.0-canary.23";
41
41
  } catch (e) {
42
42
  return undefined;
43
43
  }
package/dist/index.js CHANGED
@@ -5745,7 +5745,7 @@ $$5({ target: 'Array', proto: true, forced: FORCED }, {
5745
5745
  function getVersion() {
5746
5746
  try {
5747
5747
  // eslint-disable-next-line no-undef
5748
- return "2.25.0-canary.22";
5748
+ return "2.25.0-canary.23";
5749
5749
  } catch (e) {
5750
5750
  return undefined;
5751
5751
  }
@@ -6055,6 +6055,8 @@ const matchTracks = (tracks, sorted) => {
6055
6055
  tracks.forEach(track => {
6056
6056
  lookup["".concat(track.language, "|").concat(track.label)] = track;
6057
6057
  lookup["".concat(track.language, "|")] = track;
6058
+ lookup["".concat(track.originalLanguage, "|").concat(track.label)] = track;
6059
+ lookup["".concat(track.originalLanguage, "|")] = track;
6058
6060
  lookup["|".concat(track.label)] = track;
6059
6061
  });
6060
6062
  const matched = sorted.map(info => {
package/dist/index.mjs CHANGED
@@ -811,7 +811,7 @@ function convertToSeconds(timeString) {
811
811
  function getVersion() {
812
812
  try {
813
813
  // eslint-disable-next-line no-undef
814
- return "2.25.0-canary.22";
814
+ return "2.25.0-canary.23";
815
815
  } catch (e) {
816
816
  return undefined;
817
817
  }
@@ -1109,6 +1109,8 @@ const matchTracks = (tracks, sorted) => {
1109
1109
  tracks.forEach(track => {
1110
1110
  lookup[`${track.language}|${track.label}`] = track;
1111
1111
  lookup[`${track.language}|`] = track;
1112
+ lookup[`${track.originalLanguage}|${track.label}`] = track;
1113
+ lookup[`${track.originalLanguage}|`] = track;
1112
1114
  lookup[`|${track.label}`] = track;
1113
1115
  });
1114
1116
  const matched = sorted.map(info => {
package/dist/modules.mjs CHANGED
@@ -991,7 +991,7 @@ const mapLogEvents$1 = ({
991
991
  function getVersion() {
992
992
  try {
993
993
  // eslint-disable-next-line no-undef
994
- return "2.25.0-canary.22";
994
+ return "2.25.0-canary.23";
995
995
  } catch (e) {
996
996
  return undefined;
997
997
  }
@@ -1413,7 +1413,7 @@ const createAnalytics = ({
1413
1413
  const logTarget = mapLogEvents({
1414
1414
  video,
1415
1415
  playerName: 'shaka',
1416
- version: "2.25.0-canary.22"
1416
+ version: "2.25.0-canary.23"
1417
1417
  });
1418
1418
  logTarget.all((type, data) => {
1419
1419
  const payload = {
package/dist/react.mjs CHANGED
@@ -2419,7 +2419,7 @@ function convertToSeconds(timeString) {
2419
2419
  function getVersion() {
2420
2420
  try {
2421
2421
  // eslint-disable-next-line no-undef
2422
- return "2.25.0-canary.22";
2422
+ return "2.25.0-canary.23";
2423
2423
  } catch (e) {
2424
2424
  return undefined;
2425
2425
  }
@@ -9091,6 +9091,8 @@ const matchTracks = (tracks, sorted) => {
9091
9091
  tracks.forEach(track => {
9092
9092
  lookup[`${track.language}|${track.label}`] = track;
9093
9093
  lookup[`${track.language}|`] = track;
9094
+ lookup[`${track.originalLanguage}|${track.label}`] = track;
9095
+ lookup[`${track.originalLanguage}|`] = track;
9094
9096
  lookup[`|${track.label}`] = track;
9095
9097
  });
9096
9098
  const matched = sorted.map(info => {
@@ -11856,7 +11858,7 @@ const PremiumPlusPlayer = ({
11856
11858
  const restPlayerName = ['shaka', 'bitmovin'].find(name => name in rest);
11857
11859
  logTarget.current = mapLogEvents({
11858
11860
  playerName: restPlayerName || 'shaka',
11859
- version: "2.25.0-canary.22",
11861
+ version: "2.25.0-canary.23",
11860
11862
  video: videoRef.current,
11861
11863
  getPlaybackStatus: () => getMediaTime(videoRef.current, {
11862
11864
  player: corePlayerRef.current,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kkcompany/player",
3
- "version": "2.25.0-canary.22",
3
+ "version": "2.25.0-canary.23",
4
4
  "module": "dist/index.mjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",