Socket
Socket
Sign inDemoInstall

@sa11y/format

Package Overview
Dependencies
Maintainers
0
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.10.1 to 6.10.2-alpha.1

7

dist/format.d.ts

@@ -46,2 +46,9 @@ import { AxeResults } from '@sa11y/common';

}
export declare class AxeError extends Error {
/**
* Throw error with Axe error
*/
constructor(message: string);
static throwAxeError(e: Error): void;
}
//# sourceMappingURL=format.d.ts.map

16

dist/format.js

@@ -9,3 +9,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.A11yError = void 0;
exports.AxeError = exports.A11yError = void 0;
const common_1 = require("@sa11y/common");

@@ -72,2 +72,16 @@ const result_1 = require("./result");

exports.A11yError = A11yError;
class AxeError extends Error {
/**
* Throw error with Axe error
*/
constructor(message) {
super(message);
this.name = AxeError.name;
this.message = message;
}
static throwAxeError(e) {
throw new AxeError(`${e.message}`);
}
}
exports.AxeError = AxeError;
//# sourceMappingURL=format.js.map

2

dist/index.d.ts

@@ -1,4 +0,4 @@

export { A11yError, Options } from './format';
export { A11yError, AxeError, Options } from './format';
export { exceptionListFilter, exceptionListFilterSelectorKeywords } from './filter';
export { A11yResult, A11yResults, appendWcag } from './result';
//# sourceMappingURL=index.d.ts.map

@@ -9,5 +9,6 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.appendWcag = exports.A11yResults = exports.A11yResult = exports.exceptionListFilterSelectorKeywords = exports.exceptionListFilter = exports.A11yError = void 0;
exports.appendWcag = exports.A11yResults = exports.A11yResult = exports.exceptionListFilterSelectorKeywords = exports.exceptionListFilter = exports.AxeError = exports.A11yError = void 0;
var format_1 = require("./format");
Object.defineProperty(exports, "A11yError", { enumerable: true, get: function () { return format_1.A11yError; } });
Object.defineProperty(exports, "AxeError", { enumerable: true, get: function () { return format_1.AxeError; } });
var filter_1 = require("./filter");

@@ -14,0 +15,0 @@ Object.defineProperty(exports, "exceptionListFilter", { enumerable: true, get: function () { return filter_1.exceptionListFilter; } });

{
"name": "@sa11y/format",
"version": "6.10.1",
"version": "6.10.2-alpha.1",
"description": "Accessibility results re-formatter",

@@ -27,4 +27,4 @@ "license": "BSD-3-Clause",

"dependencies": {
"@sa11y/common": "6.10.1",
"@sa11y/preset-rules": "6.10.1",
"@sa11y/common": "6.10.2-alpha.1",
"@sa11y/preset-rules": "6.10.2-alpha.1",
"axe-core": "4.9.0"

@@ -34,3 +34,3 @@ },

"@jest/globals": "28.1.3",
"@sa11y/test-utils": "6.10.1"
"@sa11y/test-utils": "6.10.2-alpha.1"
},

@@ -43,3 +43,3 @@ "publishConfig": {

},
"gitHead": "a3e1f7bfe5aeea4a4aa70d2726cc608e92ecf366"
"gitHead": "b1713e40024a017f5ae489b2b9ffbae0649f7ea3"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc