@markuplint/ml-core 4.12.2 → 4.12.3

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/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.12.3](https://github.com/markuplint/markuplint/compare/@markuplint/ml-core@4.12.2...@markuplint/ml-core@4.12.3) (2025-03-09)
7
+
8
+ **Note:** Version bump only for package @markuplint/ml-core
9
+
6
10
  ## [4.12.2](https://github.com/markuplint/markuplint/compare/@markuplint/ml-core@4.12.1...@markuplint/ml-core@4.12.2) (2025-02-27)
7
11
 
8
12
  **Note:** Version bump only for package @markuplint/ml-core
@@ -291,6 +291,14 @@ export declare class MLElement<T extends RuleConfigValue, O extends PlainData =
291
291
  * @implements DOM API: `Element`
292
292
  */
293
293
  get ariaRequired(): string | null;
294
+ /**
295
+ * **IT THROWS AN ERROR WHEN CALLING THIS.**
296
+ *
297
+ * @deprecated
298
+ * @unsupported
299
+ * @implements DOM API: `Element`
300
+ */
301
+ get ariaRelevant(): string | null;
294
302
  /**
295
303
  * **IT THROWS AN ERROR WHEN CALLING THIS.**
296
304
  *
@@ -369,6 +369,16 @@ export class MLElement extends MLParentNode {
369
369
  get ariaRequired() {
370
370
  throw new UnexpectedCallError('Not supported "ariaRequired" property');
371
371
  }
372
+ /**
373
+ * **IT THROWS AN ERROR WHEN CALLING THIS.**
374
+ *
375
+ * @deprecated
376
+ * @unsupported
377
+ * @implements DOM API: `Element`
378
+ */
379
+ get ariaRelevant() {
380
+ throw new UnexpectedCallError('Not supported "ariaRelevant" property');
381
+ }
372
382
  /**
373
383
  * **IT THROWS AN ERROR WHEN CALLING THIS.**
374
384
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/ml-core",
3
- "version": "4.12.2",
3
+ "version": "4.12.3",
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>",
@@ -29,19 +29,19 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@markuplint/config-presets": "4.5.12",
32
- "@markuplint/html-parser": "4.6.17",
33
- "@markuplint/html-spec": "4.14.0",
32
+ "@markuplint/html-parser": "4.6.18",
33
+ "@markuplint/html-spec": "4.14.1",
34
34
  "@markuplint/i18n": "4.6.0",
35
35
  "@markuplint/ml-ast": "4.4.9",
36
- "@markuplint/ml-config": "4.8.9",
37
- "@markuplint/ml-spec": "4.9.4",
38
- "@markuplint/parser-utils": "4.8.5",
39
- "@markuplint/selector": "4.7.2",
36
+ "@markuplint/ml-config": "4.8.10",
37
+ "@markuplint/ml-spec": "4.9.5",
38
+ "@markuplint/parser-utils": "4.8.6",
39
+ "@markuplint/selector": "4.7.3",
40
40
  "@markuplint/shared": "4.4.10",
41
41
  "@types/debug": "4.1.12",
42
42
  "debug": "4.4.0",
43
43
  "is-plain-object": "5.0.0",
44
- "type-fest": "4.35.0"
44
+ "type-fest": "4.37.0"
45
45
  },
46
- "gitHead": "1b71e44a0a372662abca460ef77888053b66a78d"
46
+ "gitHead": "04924b5471e60820d28c1f48c2f09a537a1e9825"
47
47
  }