@markuplint/ml-core 4.3.1-alpha.0 → 4.4.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/ml-dom/node/document.d.ts +2 -2
- package/package.json +12 -12
|
@@ -12,7 +12,7 @@ import type { Walker } from '../helper/walkers.js';
|
|
|
12
12
|
import type { MLToken } from '../token/token.js';
|
|
13
13
|
import type { EndTagType, MLASTDocument } from '@markuplint/ml-ast';
|
|
14
14
|
import type { PlainData, Pretender, RuleConfigValue } from '@markuplint/ml-config';
|
|
15
|
-
import type { MLMLSpec } from '@markuplint/ml-spec';
|
|
15
|
+
import type { ARIAVersion, MLMLSpec } from '@markuplint/ml-spec';
|
|
16
16
|
import { MLParentNode } from './parent-node.js';
|
|
17
17
|
export declare class MLDocument<T extends RuleConfigValue, O extends PlainData = undefined> extends MLParentNode<T, O> implements Document {
|
|
18
18
|
#private;
|
|
@@ -1439,7 +1439,7 @@ export declare class MLDocument<T extends RuleConfigValue, O extends PlainData =
|
|
|
1439
1439
|
* @implements DOM API: `Document`
|
|
1440
1440
|
*/
|
|
1441
1441
|
exitPointerLock(): void;
|
|
1442
|
-
getAccessibilityProp(node: MLNode<T, O>, ariaVersion?:
|
|
1442
|
+
getAccessibilityProp(node: MLNode<T, O>, ariaVersion?: ARIAVersion): AccessibilityProperties | null;
|
|
1443
1443
|
/**
|
|
1444
1444
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1445
1445
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/ml-core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "The core module of markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -28,19 +28,19 @@
|
|
|
28
28
|
"./lib/configs.js": "./lib/configs.browser.js"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@markuplint/config-presets": "4.
|
|
32
|
-
"@markuplint/html-parser": "4.
|
|
33
|
-
"@markuplint/html-spec": "4.
|
|
34
|
-
"@markuplint/i18n": "4.
|
|
35
|
-
"@markuplint/ml-ast": "4.
|
|
36
|
-
"@markuplint/ml-config": "4.
|
|
37
|
-
"@markuplint/ml-spec": "4.
|
|
38
|
-
"@markuplint/parser-utils": "4.
|
|
39
|
-
"@markuplint/selector": "4.
|
|
31
|
+
"@markuplint/config-presets": "4.2.0",
|
|
32
|
+
"@markuplint/html-parser": "4.3.0",
|
|
33
|
+
"@markuplint/html-spec": "4.4.0",
|
|
34
|
+
"@markuplint/i18n": "4.2.0",
|
|
35
|
+
"@markuplint/ml-ast": "4.1.0",
|
|
36
|
+
"@markuplint/ml-config": "4.3.0",
|
|
37
|
+
"@markuplint/ml-spec": "4.2.0",
|
|
38
|
+
"@markuplint/parser-utils": "4.3.0",
|
|
39
|
+
"@markuplint/selector": "4.3.0",
|
|
40
40
|
"@types/debug": "4.1.12",
|
|
41
41
|
"debug": "4.3.4",
|
|
42
42
|
"is-plain-object": "5.0.0",
|
|
43
|
-
"type-fest": "4.
|
|
43
|
+
"type-fest": "4.14.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "fe251a0257345255ee887dd2302b889ac32a22a5"
|
|
46
46
|
}
|