eslint-plugin-primer-react 8.5.0-rc.8aa385c → 8.5.0

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.
@@ -31,7 +31,7 @@ jobs:
31
31
  with:
32
32
  app-id: ${{ vars.PRIMER_APP_ID_SHARED }}
33
33
  private-key: ${{ secrets.PRIMER_APP_PRIVATE_KEY_SHARED }}
34
-
34
+
35
35
  - name: Set up Node.js
36
36
  uses: actions/setup-node@v6
37
37
  with:
package/CHANGELOG.md CHANGED
@@ -8,6 +8,8 @@
8
8
 
9
9
  ### Patch Changes
10
10
 
11
+ - [#435](https://github.com/primer/eslint-plugin-primer-react/pull/435) [`aa12209`](https://github.com/primer/eslint-plugin-primer-react/commit/aa12209a5ede77f01217ff044192c2b4b15ae2ab) Thanks [@TylerJDev](https://github.com/TylerJDev)! - Adds `width` and `height` to `no-system-props` for `ConfirmationDialog`
12
+
11
13
  - [#454](https://github.com/primer/eslint-plugin-primer-react/pull/454) [`917f344`](https://github.com/primer/eslint-plugin-primer-react/commit/917f344f61beeb8bd5817e89456a135769319003) Thanks [@francinelucca](https://github.com/francinelucca)! - no-system-props: allow 'overflow' prop in Breadcrumbs
12
14
 
13
15
  ## 8.4.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-primer-react",
3
- "version": "8.5.0-rc.8aa385c",
3
+ "version": "8.5.0",
4
4
  "description": "ESLint rules for Primer React",
5
5
  "main": "src/index.js",
6
6
  "engines": {
@@ -24,6 +24,7 @@ const excludedComponentProps = new Map([
24
24
  ['Breadcrumbs', new Set(['overflow'])],
25
25
  ['Button', new Set(['alignContent'])],
26
26
  ['CircleOcticon', new Set(['size'])],
27
+ ['ConfirmationDialog', new Set(['width', 'height'])],
27
28
  ['Dialog', new Set(['width', 'height', 'position'])],
28
29
  ['IssueLabelToken', new Set(['size'])],
29
30
  ['Overlay', new Set(['width', 'height', 'maxHeight', 'position', 'top', 'right', 'bottom', 'left'])],