box-ui-elements 15.0.0-beta.56 → 15.0.0-beta.59
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/CONTRIBUTING.md +2 -0
- package/dist/explorer.css +1 -1
- package/dist/explorer.js +11 -11
- package/dist/openwith.js +4 -4
- package/dist/picker.js +7 -7
- package/dist/preview.css +1 -1
- package/dist/preview.js +9 -9
- package/dist/sharing.js +7 -7
- package/dist/sidebar.css +1 -1
- package/dist/sidebar.js +9 -9
- package/dist/uploader.js +5 -5
- package/es/components/date-picker/DatePicker.js +15 -7
- package/es/components/date-picker/DatePicker.js.map +1 -1
- package/es/components/flyout/Flyout.scss +18 -9
- package/es/components/flyout/OverlayHeader.scss +3 -11
- package/es/components/flyout/_variables.scss +1 -0
- package/es/features/collapsible-sidebar/CollapsibleSidebar.js +1 -4
- package/es/features/collapsible-sidebar/CollapsibleSidebar.js.flow +2 -3
- package/es/features/collapsible-sidebar/CollapsibleSidebar.js.map +1 -1
- package/es/features/collapsible-sidebar/CollapsibleSidebar.scss +35 -3
- package/es/features/header-flyout/HeaderFlyout.js +8 -10
- package/es/features/header-flyout/HeaderFlyout.js.flow +4 -8
- package/es/features/header-flyout/HeaderFlyout.js.map +1 -1
- package/es/features/header-flyout/styles/HeaderFlyout.scss +54 -15
- package/es/features/header-flyout/styles/_variables.scss +4 -0
- package/es/features/unified-share-modal/SharedLinkSection.js +6 -2
- package/es/features/unified-share-modal/SharedLinkSection.js.flow +3 -2
- package/es/features/unified-share-modal/SharedLinkSection.js.map +1 -1
- package/es/features/unified-share-modal/UnifiedShareForm.js +4 -1
- package/es/features/unified-share-modal/UnifiedShareForm.js.flow +3 -1
- package/es/features/unified-share-modal/UnifiedShareForm.js.map +1 -1
- package/es/icons/file-icon/FileIcon.js +2 -2
- package/es/icons/file-icon/FileIcon.js.flow +2 -2
- package/es/icons/file-icon/FileIcon.js.map +1 -1
- package/es/src/components/date-picker/DatePicker.d.ts +3 -1
- package/package.json +1 -1
- package/src/components/date-picker/DatePicker.tsx +23 -5
- package/src/components/flyout/Flyout.scss +18 -9
- package/src/components/flyout/OverlayHeader.scss +3 -11
- package/src/components/flyout/_variables.scss +1 -0
- package/src/features/collapsible-sidebar/CollapsibleSidebar.js +2 -3
- package/src/features/collapsible-sidebar/CollapsibleSidebar.scss +35 -3
- package/src/features/header-flyout/HeaderFlyout.js +4 -8
- package/src/features/header-flyout/__tests__/__snapshots__/HeaderFlyout.test.js.snap +11 -11
- package/src/features/header-flyout/styles/HeaderFlyout.scss +54 -15
- package/src/features/header-flyout/styles/_variables.scss +4 -0
- package/src/features/unified-share-modal/SharedLinkSection.js +3 -2
- package/src/features/unified-share-modal/UnifiedShareForm.js +3 -1
- package/src/features/unified-share-modal/__tests__/SharedLinkSection.test.js +14 -0
- package/src/features/unified-share-modal/__tests__/UnifiedShareForm.test.js +29 -1
- package/src/features/unified-share-modal/__tests__/__snapshots__/SharedLinkSection.test.js.snap +9 -0
- package/src/icons/file-icon/FileIcon.js.flow +2 -2
- package/src/icons/file-icon/FileIcon.tsx +2 -2
package/CONTRIBUTING.md
CHANGED
|
@@ -16,6 +16,8 @@ This project adheres to the [Box Open Code of Conduct](http://opensource.box.com
|
|
|
16
16
|
|
|
17
17
|
## How to contribute
|
|
18
18
|
|
|
19
|
+
_If you're a Box employee, you do not need to file an issue._
|
|
20
|
+
|
|
19
21
|
- **File an issue** - if you found a bug, want to request an enhancement, or want to implement something (bug fix or feature).
|
|
20
22
|
- **Make changes** - See the [developing guide](DEVELOPING.md).
|
|
21
23
|
- **Send a pull request** - if you want to contribute code. Please be sure to file an issue first.
|