eslint-plugin-primer-react 5.4.0-rc.27e12cc → 5.4.0-rc.61b506f

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/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@
6
6
 
7
7
  - [#103](https://github.com/primer/eslint-plugin-primer-react/pull/103) [`8617a66`](https://github.com/primer/eslint-plugin-primer-react/commit/8617a66b2afe7e4e7a8608dbf5744999fffd9140) Thanks [@broccolinisoup](https://github.com/broccolinisoup)! - Add a11y-use-next-tooltip rule that warns against using Tooltip v1 (Not the accessible one)
8
8
 
9
+ ### Patch Changes
10
+
11
+ - [#202](https://github.com/primer/eslint-plugin-primer-react/pull/202) [`0293fdc`](https://github.com/primer/eslint-plugin-primer-react/commit/0293fdc8da74c2296a22be93eceac7ff14772b1a) Thanks [@keithamus](https://github.com/keithamus)! - Allow ActionMenu.Button alignContent prop
12
+
9
13
  ## 5.3.0
10
14
 
11
15
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-primer-react",
3
- "version": "5.4.0-rc.27e12cc",
3
+ "version": "5.4.0-rc.61b506f",
4
4
  "description": "ESLint rules for Primer React",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -15,6 +15,7 @@ const utilityComponents = new Set(['Box', 'Text'])
15
15
  // Components for which we allow a set of prop names
16
16
  const excludedComponentProps = new Map([
17
17
  ['ActionMenu.Overlay', new Set(['width', 'height', 'maxHeight', 'position', 'top', 'right', 'bottom', 'left'])],
18
+ ['ActionMenu.Button', new Set(['alignContent'])],
18
19
  ['Autocomplete.Overlay', new Set(['width', 'height', 'maxHeight', 'position', 'top', 'right', 'bottom', 'left'])],
19
20
  ['AnchoredOverlay', new Set(['width', 'height'])],
20
21
  ['Avatar', new Set(['size'])],