@markuplint/ml-spec 4.1.1-alpha.0 → 4.2.1-dev.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.
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const ariaVersions: readonly ["1.1", "1.2", "1.3"];
|
|
2
|
-
export declare const ARIA_RECOMMENDED_VERSION
|
|
2
|
+
export declare const ARIA_RECOMMENDED_VERSION = "1.2";
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ImplicitRole } from '../types/aria.js';
|
|
1
2
|
import type { ARIAVersion, ComputedRole, MLMLSpec } from '../types/index.js';
|
|
2
3
|
export declare function getImplicitRole(specs: MLMLSpec, el: Element, version: ARIAVersion): ComputedRole;
|
|
3
|
-
export declare function getImplicitRoleName(el: Element, version: ARIAVersion, specs: MLMLSpec):
|
|
4
|
+
export declare function getImplicitRoleName(el: Element, version: ARIAVersion, specs: MLMLSpec): ImplicitRole;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/ml-spec",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.1-dev.1+98cb4470a",
|
|
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>",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"schema:prettier": "prettier --write \"./schemas/*.json\" \"./src/types/*.ts\" --log-level warn"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@markuplint/ml-ast": "4.
|
|
36
|
-
"@markuplint/types": "4.
|
|
35
|
+
"@markuplint/ml-ast": "4.1.1-dev.1+98cb4470a",
|
|
36
|
+
"@markuplint/types": "4.1.1-dev.1+98cb4470a",
|
|
37
37
|
"dom-accessibility-api": "0.6.3",
|
|
38
38
|
"is-plain-object": "5.0.0",
|
|
39
|
-
"type-fest": "4.
|
|
39
|
+
"type-fest": "4.14.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@markuplint/test-tools": "4.
|
|
42
|
+
"@markuplint/test-tools": "4.2.0",
|
|
43
43
|
"json-schema-to-typescript": "13.1.2"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "98cb4470ad994275f52b0c3919f8d27dda8c38bc"
|
|
46
46
|
}
|