@primer/components 0.0.0-202111194229 → 0.0.0-202111215914

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 (48) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/dist/browser.esm.js +147 -165
  3. package/dist/browser.esm.js.map +1 -1
  4. package/dist/browser.umd.js +154 -172
  5. package/dist/browser.umd.js.map +1 -1
  6. package/lib/ActionList2/Divider.d.ts +3 -2
  7. package/lib/ActionList2/Divider.js +10 -5
  8. package/lib/ActionList2/Item.js +21 -5
  9. package/lib/ActionList2/List.js +11 -1
  10. package/lib/ActionList2/MenuContext.d.ts +10 -0
  11. package/lib/ActionList2/MenuContext.js +15 -0
  12. package/lib/ActionList2/Selection.js +11 -0
  13. package/lib/ActionList2/index.d.ts +1 -2
  14. package/lib/ActionMenu2.d.ts +310 -0
  15. package/lib/ActionMenu2.js +91 -0
  16. package/lib/Autocomplete/Autocomplete.d.ts +2 -10
  17. package/lib/Autocomplete/AutocompleteInput.d.ts +2 -10
  18. package/lib/Checkbox.d.ts +1 -1
  19. package/lib/SelectMenu/SelectMenu.d.ts +2 -10
  20. package/lib/TextInput.d.ts +1 -8
  21. package/lib/TextInput.js +5 -16
  22. package/lib/TextInputWithTokens.d.ts +2 -10
  23. package/lib/_TextInputWrapper.d.ts +0 -3
  24. package/lib/_TextInputWrapper.js +7 -18
  25. package/lib/drafts.d.ts +1 -0
  26. package/lib/drafts.js +13 -0
  27. package/lib-esm/ActionList2/Divider.d.ts +3 -2
  28. package/lib-esm/ActionList2/Divider.js +8 -5
  29. package/lib-esm/ActionList2/Item.js +19 -5
  30. package/lib-esm/ActionList2/List.js +9 -1
  31. package/lib-esm/ActionList2/MenuContext.d.ts +10 -0
  32. package/lib-esm/ActionList2/MenuContext.js +3 -0
  33. package/lib-esm/ActionList2/Selection.js +9 -0
  34. package/lib-esm/ActionList2/index.d.ts +1 -2
  35. package/lib-esm/ActionMenu2.d.ts +310 -0
  36. package/lib-esm/ActionMenu2.js +67 -0
  37. package/lib-esm/Autocomplete/Autocomplete.d.ts +2 -10
  38. package/lib-esm/Autocomplete/AutocompleteInput.d.ts +2 -10
  39. package/lib-esm/Checkbox.d.ts +1 -1
  40. package/lib-esm/SelectMenu/SelectMenu.d.ts +2 -10
  41. package/lib-esm/TextInput.d.ts +1 -8
  42. package/lib-esm/TextInput.js +5 -16
  43. package/lib-esm/TextInputWithTokens.d.ts +2 -10
  44. package/lib-esm/_TextInputWrapper.d.ts +0 -3
  45. package/lib-esm/_TextInputWrapper.js +7 -18
  46. package/lib-esm/drafts.d.ts +1 -0
  47. package/lib-esm/drafts.js +2 -1
  48. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @primer/components
2
2
 
3
- ## 0.0.0-202111194229
3
+ ## 0.0.0-202111215914
4
4
 
5
5
  ### Major Changes
6
6
 
@@ -12,6 +12,10 @@
12
12
 
13
13
  * [#1643](https://github.com/primer/react/pull/1643) [`3938550f`](https://github.com/primer/react/commit/3938550fb3ea3fbec542a0cadaf6aeb734fba938) Thanks [@jfuchs](https://github.com/jfuchs)! - Heading no longer accepts styled-system props. Please use the `sx` prop to extend Primer component styling instead. See also https://primer.style/react/overriding-styles for information about `sx` and https://primer.style/react/system-props for context on the removal.
14
14
 
15
+ ### Minor Changes
16
+
17
+ - [#1619](https://github.com/primer/react/pull/1619) [`a13efa45`](https://github.com/primer/react/commit/a13efa457ded69656fb390b5b9b666d00157fd21) Thanks [@siddharthkp](https://github.com/siddharthkp)! - Add composable `ActionMenu` to `@primer/components/drafts`
18
+
15
19
  ### Patch Changes
16
20
 
17
21
  - [#1668](https://github.com/primer/react/pull/1668) [`98dc6336`](https://github.com/primer/react/commit/98dc633674b793edfa4fbeb88fd239e6ca40544e) Thanks [@siddharthkp](https://github.com/siddharthkp)! - ActionList: Fix multiple selection svg by overriding global shape-rendering for github.com