Skip to content

Releases: box/box-ui-elements

v10.0.0-beta.10

13 Mar 23:24
Compare
Choose a tag to compare
v10.0.0-beta.10 Pre-release
Pre-release

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

11 Mar 18:26
f9b1b8d
Compare
Choose a tag to compare
v10.0.0-beta.9 Pre-release
Pre-release

10.0.0-beta.9 (2019-03-11)

Bug Fixes

  • badgeable: align badges (#942) (d55d643)
  • link-settings: Use checkbox to check and load/reset vanity URLs (#943) (f9b1b8d)

v10.0.0-beta.8

09 Mar 01:34
ea5597b
Compare
Choose a tag to compare
v10.0.0-beta.8 Pre-release
Pre-release

10.0.0-beta.8 (2019-03-09)

Bug Fixes

Features

  • tasks: connect delete-task api for new task cards (#935) (ea5597b)

v10.0.0-beta.7

08 Mar 20:22
Compare
Choose a tag to compare
v10.0.0-beta.7 Pre-release
Pre-release

10.0.0-beta.7 (2019-03-08)

Bug Fixes

Features

  • unified-share-modal: remove beta badge from USM (#888) (322603e)
  • versions: Add version history panel components and routes (#928) (ce0d767)

v10.0.0-beta.6

06 Mar 18:39
Compare
Choose a tag to compare
v10.0.0-beta.6 Pre-release
Pre-release

10.0.0-beta.6 (2019-03-06)

Bug Fixes

  • unified-share-modal: Add correct permission for editable box notes (#908) (276fd6e)

Features

v10.0.0-beta.5

05 Mar 01:54
be7eca8
Compare
Choose a tag to compare
v10.0.0-beta.5 Pre-release
Pre-release

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

  • features: add feature consumer HOC (#899) (cd08b9f)
  • pill-selector-dropdown: add prop for filtering suggested pills (#913) (5b3df36)
  • query-bar: Implement multi enum in filter button (#910) (f9ab654)
  • sidebar: Render additional provided tabs (#892) (7c29c7e)

v10.0.0-beta.4

21 Feb 23:05
Compare
Choose a tag to compare
v10.0.0-beta.4 Pre-release
Pre-release

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

  • query-bar: implement connector dropdown (#862) (d955251)

v10.0.0-beta.3

14 Feb 23:37
5db989e
Compare
Choose a tag to compare
v10.0.0-beta.3 Pre-release
Pre-release

10.0.0-beta.3 (2019-02-14)

Bug Fixes

  • metadata query bar fixes and styling (#855) (99f8d73)

Features

  • add suggested collaborators support to UnifiedShareModal (#851) (d0c626f)

v10.0.0-beta.2

12 Feb 21:58
52ff788
Compare
Choose a tag to compare
v10.0.0-beta.2 Pre-release
Pre-release

10.0.0-beta.2 (2019-02-12)

Bug Fixes

  • uploader: refactor anti pattern in addFilesToUploadQueue (#716) (d4e4976)
  • shared link precedence in quick search (#853) (52ff788)

Features

  • add suggested pills to PillSelectorDropdown (#847) (19fcd4e)

v10.0.0-beta.1

08 Feb 06:47
Compare
Choose a tag to compare
v10.0.0-beta.1 Pre-release
Pre-release

10.0.0-beta.1 (2019-02-08)

Bug Fixes

Build System

  • include scss imports within babel compiled output (#836) (26865ed)

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 as import './ContentPreview.scss' from the babel compiled version of ContentPreview.js. This forced customers to manually include styles via import 'box-ui-elements/dist/preview.css'. With this change, the babel compiled output will now include import './ContentPreview.scss' and no manual import of preview.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')	
);