@markuplint/ml-spec 3.8.0 → 3.9.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.
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -0
- package/lib/types/aria.js +0 -1
- package/lib/types/attributes.js +0 -1
- package/lib/types/permitted-structures.js +0 -1
- package/package.json +8 -8
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getAttrSpecsByNames = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
5
|
+
var get_attr_specs_1 = require("./specs/get-attr-specs");
|
|
6
|
+
Object.defineProperty(exports, "getAttrSpecsByNames", { enumerable: true, get: function () { return get_attr_specs_1.getAttrSpecs; } });
|
|
4
7
|
tslib_1.__exportStar(require("./constant/aria-version"), exports);
|
|
5
8
|
tslib_1.__exportStar(require("./dom-traverse/accname-computation"), exports);
|
|
6
9
|
tslib_1.__exportStar(require("./dom-traverse/get-attr-specs"), exports);
|
package/lib/types/aria.js
CHANGED
package/lib/types/attributes.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/ml-spec",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
4
4
|
"description": "Types and schema that specs of the Markup languages for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -26,15 +26,15 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@markuplint/ml-ast": "3.1.0",
|
|
29
|
-
"@markuplint/types": "3.
|
|
30
|
-
"dom-accessibility-api": "^0.5.
|
|
29
|
+
"@markuplint/types": "3.7.0",
|
|
30
|
+
"dom-accessibility-api": "^0.5.16",
|
|
31
31
|
"is-plain-object": "^5.0.0",
|
|
32
|
-
"tslib": "^2.
|
|
33
|
-
"type-fest": "^3.
|
|
32
|
+
"tslib": "^2.5.0",
|
|
33
|
+
"type-fest": "^3.10.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@markuplint/test-tools": "3.
|
|
37
|
-
"json-schema-to-typescript": "
|
|
36
|
+
"@markuplint/test-tools": "3.4.0",
|
|
37
|
+
"json-schema-to-typescript": "13.0.1"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "af370797bfc887e5a5a2ff57fbaa8392ac98ead2"
|
|
40
40
|
}
|