@primer/components 0.0.0-2021828205354 → 0.0.0-202182821115

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 (52) hide show
  1. package/CHANGELOG.md +5 -3
  2. package/dist/browser.esm.js +186 -177
  3. package/dist/browser.esm.js.map +1 -1
  4. package/dist/browser.umd.js +187 -178
  5. package/dist/browser.umd.js.map +1 -1
  6. package/lib/AvatarStack.d.ts +4 -8
  7. package/lib/AvatarStack.js +6 -7
  8. package/lib/Button/Button.d.ts +3 -2
  9. package/lib/Button/Button.js +6 -2
  10. package/lib/Button/ButtonBase.d.ts +8 -5
  11. package/lib/Button/ButtonBase.js +5 -1
  12. package/lib/Button/ButtonClose.d.ts +45 -2
  13. package/lib/Button/ButtonClose.js +1 -1
  14. package/lib/Button/ButtonDanger.d.ts +3 -2
  15. package/lib/Button/ButtonDanger.js +6 -2
  16. package/lib/Button/ButtonInvisible.d.ts +3 -2
  17. package/lib/Button/ButtonInvisible.js +6 -2
  18. package/lib/Button/ButtonOutline.d.ts +3 -2
  19. package/lib/Button/ButtonOutline.js +6 -2
  20. package/lib/Button/ButtonPrimary.d.ts +3 -2
  21. package/lib/Button/ButtonPrimary.js +6 -2
  22. package/lib/Button/ButtonTableList.d.ts +2 -1
  23. package/lib/Button/ButtonTableList.js +1 -1
  24. package/lib/Dialog/ConfirmationDialog.js +3 -3
  25. package/lib/Dialog/Dialog.d.ts +5 -0
  26. package/lib/Dialog/Dialog.js +16 -4
  27. package/lib/Dropdown.d.ts +90 -2
  28. package/lib/DropdownMenu/DropdownButton.d.ts +46 -2
  29. package/lib-esm/AvatarStack.d.ts +4 -8
  30. package/lib-esm/AvatarStack.js +7 -8
  31. package/lib-esm/Button/Button.d.ts +3 -2
  32. package/lib-esm/Button/Button.js +2 -2
  33. package/lib-esm/Button/ButtonBase.d.ts +8 -5
  34. package/lib-esm/Button/ButtonBase.js +3 -1
  35. package/lib-esm/Button/ButtonClose.d.ts +45 -2
  36. package/lib-esm/Button/ButtonClose.js +2 -2
  37. package/lib-esm/Button/ButtonDanger.d.ts +3 -2
  38. package/lib-esm/Button/ButtonDanger.js +2 -2
  39. package/lib-esm/Button/ButtonInvisible.d.ts +3 -2
  40. package/lib-esm/Button/ButtonInvisible.js +2 -2
  41. package/lib-esm/Button/ButtonOutline.d.ts +3 -2
  42. package/lib-esm/Button/ButtonOutline.js +2 -2
  43. package/lib-esm/Button/ButtonPrimary.d.ts +3 -2
  44. package/lib-esm/Button/ButtonPrimary.js +2 -2
  45. package/lib-esm/Button/ButtonTableList.d.ts +2 -1
  46. package/lib-esm/Button/ButtonTableList.js +2 -2
  47. package/lib-esm/Dialog/ConfirmationDialog.js +3 -3
  48. package/lib-esm/Dialog/Dialog.d.ts +5 -0
  49. package/lib-esm/Dialog/Dialog.js +17 -5
  50. package/lib-esm/Dropdown.d.ts +90 -2
  51. package/lib-esm/DropdownMenu/DropdownButton.d.ts +46 -2
  52. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # @primer/components
2
2
 
3
- ## 0.0.0-2021828205354
3
+ ## 0.0.0-202182821115
4
4
 
5
5
  ### Major Changes
6
6
 
7
7
  - [#1448](https://github.com/primer/react/pull/1448) [`1a39fb02`](https://github.com/primer/react/commit/1a39fb0284c5e19324d378629d09a343be4cde05) Thanks [@SferaDev](https://github.com/SferaDev)! - Remove `.Breadcrumb` classname from the root element of the `Breadcrumbs` component. This change shouldn't break anything unless you have styles, scripts, or tests that reference the `.Breadcrumb` classname.
8
8
 
9
- * [#1475](https://github.com/primer/react/pull/1475) [`22181779`](https://github.com/primer/react/commit/221817798d5f82304d07ff9b4b61929a738ca243) Thanks [@jfuchs](https://github.com/jfuchs)! - Buttons no longer accept styled props
9
+ * [#1468](https://github.com/primer/react/pull/1468) [`dc15763c`](https://github.com/primer/react/commit/dc15763c733994ea9baa3475139b9bf3c2111e5b) Thanks [@jfuchs](https://github.com/jfuchs)! - AvatarStack no longer accepts styled props or DOM props
10
10
 
11
11
  ### Patch Changes
12
12
 
@@ -14,7 +14,9 @@
14
14
 
15
15
  * [#1448](https://github.com/primer/react/pull/1448) [`1a39fb02`](https://github.com/primer/react/commit/1a39fb0284c5e19324d378629d09a343be4cde05) Thanks [@SferaDev](https://github.com/SferaDev)! - Rename `Breadcrumb` component to `Breadcrumbs`
16
16
 
17
- - [#1470](https://github.com/primer/react/pull/1470) [`f2e29a08`](https://github.com/primer/react/commit/f2e29a08e2aab9e98a460eb073229933f6ae050b) Thanks [@pksjce](https://github.com/pksjce)! - Fix ActionList.Item color
17
+ - [#1471](https://github.com/primer/react/pull/1471) [`4d3c1f1e`](https://github.com/primer/react/commit/4d3c1f1e1bfd8ab989396ba678b03c0a25ea1249) Thanks [@smockle](https://github.com/smockle)! - Change the button which receives focus when a 'ConfirmationDialog' opens from the secondary (e.g. 'Cancel') to the primary (e.g. 'OK'). Fixes github/primer#313.
18
+
19
+ * [#1470](https://github.com/primer/react/pull/1470) [`f2e29a08`](https://github.com/primer/react/commit/f2e29a08e2aab9e98a460eb073229933f6ae050b) Thanks [@pksjce](https://github.com/pksjce)! - Fix ActionList.Item color
18
20
 
19
21
  ## 29.1.1
20
22