eslint-plugin-primer-react 0.0.0-20251124040729 → 0.0.0-20251124154156

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
@@ -1,6 +1,6 @@
1
1
  # eslint-plugin-primer-react
2
2
 
3
- ## 0.0.0-20251124040729
3
+ ## 0.0.0-20251124154156
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -8,6 +8,8 @@
8
8
 
9
9
  ### Patch Changes
10
10
 
11
+ - [#435](https://github.com/primer/eslint-plugin-primer-react/pull/435) [`6d9fca0`](https://github.com/primer/eslint-plugin-primer-react/commit/6d9fca0f4ea255d7ec4b64f1d374955ae879f852) Thanks [@TylerJDev](https://github.com/TylerJDev)! - Adds `width` and `height` to `no-system-props` for `ConfirmationDialog`
12
+
11
13
  - Fake entry to force publishing
12
14
 
13
15
  - [#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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-primer-react",
3
- "version": "0.0.0-20251124040729",
3
+ "version": "0.0.0-20251124154156",
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'])],