Releases: box/box-ui-elements
Releases · box/box-ui-elements
v10.0.0-beta.10
10.0.0-beta.10 (2019-03-13)
Bug Fixes
- content-sidebar: Use mixin to fix specificity for additional tabs (#945) (cab72d7)
- move-copy-modal: User navigated inside folder on click (#952) (af09478)
- tasks: improve task update/create callbacks (#954) (de6bf94)
- unified-share-modal: show public link state in modal (#953) (064b8ce)
- unified-share-modal: update ftux link (#958) (67eea6d)
- usm: Update people with link description (#951) (fe8be7c)
Features
- appactivity: Add AppActivity API Layer (#887) (cd2fbc4)
- Add two-toned icons and improve icon code/docs (#857) (85f963d)
- content-sidebar: Loading state for additional sidebar tabs (#931) (fbb24b2)
- link-settings: add ability to display current access level (#955) (3127e83)
- upload-manager: Add error case to upload manager name conflict (#948) (72c1df4)
v10.0.0-beta.9
10.0.0-beta.9 (2019-03-11)
Bug Fixes
v10.0.0-beta.8
v10.0.0-beta.7
v10.0.0-beta.6
v10.0.0-beta.5
10.0.0-beta.5 (2019-03-05)
Bug Fixes
- collaborator-avatars: Decouple Sass from UnifiedShareModal (#880) (c4d0854)
- css: extract modal resets from elements reset (#901) (0685cd5)
- flow: publish src folder for flow type references to src (#914) (4e45480)
- pill-selector-dropdown: update suggested pills filter (#911) (82c7c90)
- unified-share-modal: fix cases where shared link gets focused (#904) (e2cb52b)
Features
v10.0.0-beta.4
10.0.0-beta.4 (2019-02-21)
Bug Fixes
- dropdown: Single select field hover scroll glitch (#870) (aaf75aa)
- header-flyout: Update styles from design feedback (#875) (83639dd)
- open-with: Update Box Edit Blacklist (#871) (956a557)
- picker: Footer navigation no longer wraps on mobile devices (#813) (ef3dcfe)
- sidebar: At mentions with no link should render inline (#869) (412afff)
Features
v10.0.0-beta.3
v10.0.0-beta.2
v10.0.0-beta.1
10.0.0-beta.1 (2019-02-08)
Bug Fixes
Build System
Features
BREAKING CHANGES
- Updates react-tether peer dependency to version 1.x that uses createPortal and fixes redux provider issues inside tether-ed components.
- The babel compiled output now will include SCSS imports. This commit removes the
babel-plugin-transform-require-ignore
which was responsible for removing lines such asimport './ContentPreview.scss'
from the babel compiled version ofContentPreview.js
. This forced customers to manually include styles viaimport 'box-ui-elements/dist/preview.css'
. With this change, the babel compiled output will now includeimport './ContentPreview.scss'
and no manual import ofpreview.css
will be required. This change however requires that webpack is configured properly to handle.scss
files. As a customer, you will notice the change as shown below:
Before
Notice the import of preview.css
.
import React from 'react';
import { render } from 'react-dom';
import { ContentPreview } from 'box-ui-elements';
import messages from 'box-ui-elements/i18n/en-US';
import 'box-ui-elements/dist/preview.css';
render(
<ContentPreview
fileId='FILE_ID'
token='ACCESS_TOKEN'
language='en-US'
messages={messages}
/>,
document.querySelector('.container')
);
After
Notice no import of preview.css
.
import React from 'react';
import { render } from 'react-dom';
import { ContentPreview } from 'box-ui-elements';
import messages from 'box-ui-elements/i18n/en-US';
render(
<ContentPreview
fileId='FILE_ID'
token='ACCESS_TOKEN'
language='en-US'
messages={messages}
/>,
document.querySelector('.container')
);