@out-of-order/core 0.1.0 → 0.1.1

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/dist/index.d.ts CHANGED
@@ -108,7 +108,7 @@ type AuditFormat = "by-element" | "text";
108
108
  /** A single rule failure on one element. */
109
109
  interface Issue {
110
110
  /** Stable rule identifier. */
111
- rule: RuleId | (string & {});
111
+ rule: AnyRuleId;
112
112
  /** How serious this finding is. */
113
113
  severity: Severity;
114
114
  /** Human-readable description of what's wrong. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@out-of-order/core",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Pure focus & keyboard-accessibility analyzer. Wraps tabbable, returns a plain result.",
5
5
  "keywords": [
6
6
  "a11y",
package/src/types.ts CHANGED
@@ -11,7 +11,7 @@ export type AuditFormat = "by-element" | "text";
11
11
  /** A single rule failure on one element. */
12
12
  export interface Issue {
13
13
  /** Stable rule identifier. */
14
- rule: RuleId | (string & {});
14
+ rule: AnyRuleId;
15
15
  /** How serious this finding is. */
16
16
  severity: Severity;
17
17
  /** Human-readable description of what's wrong. */