Skip to content

Releases: box/box-ui-elements

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')	
);	

v9.1.1

31 Jan 21:46
02ef9f4
Compare
Choose a tag to compare

9.1.1 (2019-01-31)

Bug Fixes

  • openwith: Correctly handle box edit execution failure (#816) (dfa3fdd)
  • uploader: Corrected key for logging failed upload parts (#820) (e61fc0b)

Performance Improvements

v9.1.0

25 Jan 21:45
9110abc
Compare
Choose a tag to compare

9.1.0 (2019-01-25)

Bug Fixes

  • openwith: Completely reset state on component update (9fd6dae)
  • openwith: Use fallback UI if an uncaught exception occurs (#811) (9110abc)
  • sidebar: Scroll to end of input when there is task assignee overflow (7d8646e)
  • uploader: Handle errors with calling logging endpoint (#803) (9752dc7)

Features

  • preview: Enable thumbnails sidebar in Content Preview (#805) (984ee0f)
  • tasks: Add "add task" button and modal in Activity Sidebar (#807) (5fdd818)

v9.0.3

25 Jan 19:10
Compare
Choose a tag to compare

9.0.3 (2019-01-25)

Bug Fixes

  • uploader: Handle errors with calling logging endpoint (#803) (e661edb)

v9.0.2

18 Jan 18:39
7aa67da
Compare
Choose a tag to compare

9.0.2 (2019-01-18)

Bug Fixes

  • openwith: Clear integrations from state on component update (92d7454)
  • openwith: Fix passing locale header to Open With API (#797) (c03e001)
  • preview: Disable annotations in preview by default (#798) (f334eaa)
  • sidebar: Don't display @mentions without getMentionWithQuery prop (#746) (ba8c418)

v9.0.1

16 Jan 01:13
a2278d7
Compare
Choose a tag to compare

9.0.1 (2019-01-16)

Bug Fixes

  • build: revert back to allowing even node 8 temporarily (#789) (a2278d7)

v9.0.0

16 Jan 00:15
962679b
Compare
Choose a tag to compare

9.0.0 (2019-01-16)

Bug Fixes

  • build: use es instead of lib (#783) (c608c00)
  • openwith: Add codes to OpenWith errors to fix ErrorBoundary (#776) (7ea8b3c)
  • uploader: ContentUploader did not properly handle multiput errors (#778) (2e7c53e)

chore

BREAKING CHANGES

  • Version requirements have changed for React/ReactDOM (min version 16.7) and node (min version 10)
  • Internal folder structure has changed for folks doing imports based on full path. See #766

v8.10.2

15 Jan 17:02
Compare
Choose a tag to compare

8.10.2 (2019-01-15)

Bug Fixes

  • uploader: ContentUploader did not properly handle multiput errors (#778) (b5323bb)