box-content-preview 3.62.1 → 3.63.0

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/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  [![Mergify Status](https://img.shields.io/endpoint.svg?url=https://gh.mergify.io/badges/box/box-content-preview&style=flat)](https://mergify.io)
3
3
  [![Styled With Prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
4
4
  [![build status](https://img.shields.io/travis/box/box-content-preview/master.svg?style=flat-square)](https://travis-ci.org/box/box-content-preview)
5
- [![version](https://img.shields.io/badge/version-v3.62.1-blue.svg?style=flat-square)](https://github.com/box/box-content-preview)
5
+ [![version](https://img.shields.io/badge/version-v3.63.0-blue.svg?style=flat-square)](https://github.com/box/box-content-preview)
6
6
  [![npm version](https://img.shields.io/npm/v/box-ui-elements.svg?style=flat-square)](https://www.npmjs.com/package/box-ui-elements)
7
7
 
8
8
  # [Box Content Preview](https://developer.box.com/docs/box-content-preview)
@@ -22,11 +22,11 @@ We encourage all users to update their applications to utilize modern browsers f
22
22
 
23
23
  ## Current Version
24
24
 
25
- - Version: v3.62.1
25
+ - Version: v3.63.0
26
26
  - Locale: en-US
27
27
 
28
- https://cdn01.boxcdn.net/platform/preview/3.62.1/en-US/preview.js
29
- https://cdn01.boxcdn.net/platform/preview/3.62.1/en-US/preview.css
28
+ https://cdn01.boxcdn.net/platform/preview/3.63.0/en-US/preview.js
29
+ https://cdn01.boxcdn.net/platform/preview/3.63.0/en-US/preview.css
30
30
 
31
31
  ## Supported Locales
32
32
 
@@ -52,10 +52,10 @@ You can self-host the Box Content Preview library or reference the versions avai
52
52
  <title>Box Content Preview Demo</title>
53
53
 
54
54
  <!-- Latest version of Preview SDK for your locale -->
55
- <script src="https://cdn01.boxcdn.net/platform/preview/3.62.1/en-US/preview.js"></script>
55
+ <script src="https://cdn01.boxcdn.net/platform/preview/3.63.0/en-US/preview.js"></script>
56
56
  <link
57
57
  rel="stylesheet"
58
- href="https://cdn01.boxcdn.net/platform/preview/3.62.1/en-US/preview.css"
58
+ href="https://cdn01.boxcdn.net/platform/preview/3.63.0/en-US/preview.css"
59
59
  />
60
60
  </head>
61
61
  <body>
@@ -76,7 +76,7 @@ To self-host the Box Content Preview library, follow these steps:
76
76
 
77
77
  1. Either fork the repo and check out the version you want to host or download the specific version as a zip:
78
78
 
79
- - Check out a specific version with `git checkout v3.62.1`
79
+ - Check out a specific version with `git checkout v3.63.0`
80
80
  - Download a specific version as a zip from https://github.com/box/box-content-preview/releases
81
81
 
82
82
  2. Install dependencies and build the library with `yarn install && yarn build:i18n && yarn build:prod`
package/dist/lib/index.js CHANGED
@@ -17412,7 +17412,7 @@ function util_toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var
17412
17412
  const CLIENT_NAME = "box-content-preview"; // eslint-disable-line no-undef
17413
17413
  const CLIENT_NAME_KEY = 'box_client_name';
17414
17414
  const CLIENT_VERSION_KEY = 'box_client_version';
17415
- const CLIENT_VERSION = "3.62.1"; // eslint-disable-line no-undef
17415
+ const CLIENT_VERSION = "3.63.0"; // eslint-disable-line no-undef
17416
17416
  const HEADER_CLIENT_NAME = 'X-Box-Client-Name';
17417
17417
  const HEADER_CLIENT_VERSION = 'X-Box-Client-Version';
17418
17418
  const PROMISE_MAP = {};
@@ -19137,7 +19137,7 @@ class Browser {
19137
19137
  ;// ./src/lib/Logger.js
19138
19138
  /* eslint-disable no-undef */
19139
19139
  const Logger_CLIENT_NAME = "box-content-preview";
19140
- const Logger_CLIENT_VERSION = "3.62.1";
19140
+ const Logger_CLIENT_VERSION = "3.63.0";
19141
19141
  /* eslint-enable no-undef */
19142
19142
 
19143
19143
  class Logger {
@@ -34512,7 +34512,7 @@ class VideoBaseViewer extends media_MediaBaseViewer {
34512
34512
  this.bufferingSpinnerEl = this.mediaContainerEl.appendChild(document.createElement('div'));
34513
34513
  this.bufferingSpinnerEl.classList.add('bp-media-buffering-spinner');
34514
34514
  this.bufferingSpinnerEl.classList.add(CLASS_HIDDEN);
34515
- if (this.useReactControls()) {
34515
+ if (this.useReactControls() && !this.featureEnabled('videoPlayerV2.enabled')) {
34516
34516
  // Shift up by half the control bar + half the spinner to visually center above the controls
34517
34517
  this.bufferingSpinnerEl.style.marginTop = `-${VIDEO_PLAYER_CONTROL_BAR_HEIGHT / 2 + SPINNER_HALF_SIZE}px`;
34518
34518
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "box-content-preview",
3
- "version": "3.62.1",
3
+ "version": "3.63.0",
4
4
  "description": "Box Content Preview UI Element",
5
5
  "author": "Box (https://www.box.com/)",
6
6
  "license": "SEE LICENSE IN LICENSE",