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.
Files changed (53) hide show
  1. package/CONTRIBUTING.md +2 -0
  2. package/dist/explorer.css +1 -1
  3. package/dist/explorer.js +11 -11
  4. package/dist/openwith.js +4 -4
  5. package/dist/picker.js +7 -7
  6. package/dist/preview.css +1 -1
  7. package/dist/preview.js +9 -9
  8. package/dist/sharing.js +7 -7
  9. package/dist/sidebar.css +1 -1
  10. package/dist/sidebar.js +9 -9
  11. package/dist/uploader.js +5 -5
  12. package/es/components/date-picker/DatePicker.js +15 -7
  13. package/es/components/date-picker/DatePicker.js.map +1 -1
  14. package/es/components/flyout/Flyout.scss +18 -9
  15. package/es/components/flyout/OverlayHeader.scss +3 -11
  16. package/es/components/flyout/_variables.scss +1 -0
  17. package/es/features/collapsible-sidebar/CollapsibleSidebar.js +1 -4
  18. package/es/features/collapsible-sidebar/CollapsibleSidebar.js.flow +2 -3
  19. package/es/features/collapsible-sidebar/CollapsibleSidebar.js.map +1 -1
  20. package/es/features/collapsible-sidebar/CollapsibleSidebar.scss +35 -3
  21. package/es/features/header-flyout/HeaderFlyout.js +8 -10
  22. package/es/features/header-flyout/HeaderFlyout.js.flow +4 -8
  23. package/es/features/header-flyout/HeaderFlyout.js.map +1 -1
  24. package/es/features/header-flyout/styles/HeaderFlyout.scss +54 -15
  25. package/es/features/header-flyout/styles/_variables.scss +4 -0
  26. package/es/features/unified-share-modal/SharedLinkSection.js +6 -2
  27. package/es/features/unified-share-modal/SharedLinkSection.js.flow +3 -2
  28. package/es/features/unified-share-modal/SharedLinkSection.js.map +1 -1
  29. package/es/features/unified-share-modal/UnifiedShareForm.js +4 -1
  30. package/es/features/unified-share-modal/UnifiedShareForm.js.flow +3 -1
  31. package/es/features/unified-share-modal/UnifiedShareForm.js.map +1 -1
  32. package/es/icons/file-icon/FileIcon.js +2 -2
  33. package/es/icons/file-icon/FileIcon.js.flow +2 -2
  34. package/es/icons/file-icon/FileIcon.js.map +1 -1
  35. package/es/src/components/date-picker/DatePicker.d.ts +3 -1
  36. package/package.json +1 -1
  37. package/src/components/date-picker/DatePicker.tsx +23 -5
  38. package/src/components/flyout/Flyout.scss +18 -9
  39. package/src/components/flyout/OverlayHeader.scss +3 -11
  40. package/src/components/flyout/_variables.scss +1 -0
  41. package/src/features/collapsible-sidebar/CollapsibleSidebar.js +2 -3
  42. package/src/features/collapsible-sidebar/CollapsibleSidebar.scss +35 -3
  43. package/src/features/header-flyout/HeaderFlyout.js +4 -8
  44. package/src/features/header-flyout/__tests__/__snapshots__/HeaderFlyout.test.js.snap +11 -11
  45. package/src/features/header-flyout/styles/HeaderFlyout.scss +54 -15
  46. package/src/features/header-flyout/styles/_variables.scss +4 -0
  47. package/src/features/unified-share-modal/SharedLinkSection.js +3 -2
  48. package/src/features/unified-share-modal/UnifiedShareForm.js +3 -1
  49. package/src/features/unified-share-modal/__tests__/SharedLinkSection.test.js +14 -0
  50. package/src/features/unified-share-modal/__tests__/UnifiedShareForm.test.js +29 -1
  51. package/src/features/unified-share-modal/__tests__/__snapshots__/SharedLinkSection.test.js.snap +9 -0
  52. package/src/icons/file-icon/FileIcon.js.flow +2 -2
  53. 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.