@markuplint/html-spec 4.11.0 → 4.12.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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.0](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.11.1...@markuplint/html-spec@4.12.0) (2025-02-04)
7
+
8
+ ### Features
9
+
10
+ - **html-spec:** add the `closedby` attr to the `dialog` element ([6f4812f](https://github.com/markuplint/markuplint/commit/6f4812f50829d21d6c1ffdcebdd2595b74180728))
11
+ - **html-spec:** add the `hint` enum value to the `popover` attribute ([1de0000](https://github.com/markuplint/markuplint/commit/1de00003160c9271ab9805bb4c6d0253b3d1f515))
12
+
13
+ ## [4.11.1](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.11.0...@markuplint/html-spec@4.11.1) (2024-12-04)
14
+
15
+ **Note:** Version bump only for package @markuplint/html-spec
16
+
6
17
  # [4.11.0](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.10.2...@markuplint/html-spec@4.11.0) (2024-11-17)
7
18
 
8
19
  ### Features
package/index.json CHANGED
@@ -342,7 +342,7 @@
342
342
  },
343
343
  "popover": {
344
344
  "type": {
345
- "enum": ["", "auto", "manual"],
345
+ "enum": ["", "auto", "manual", "hint"],
346
346
  "disallowToSurroundBySpaces": true,
347
347
  "invalidValueDefault": "manual",
348
348
  "missingValueDefault": "no popover",
@@ -36441,6 +36441,13 @@
36441
36441
  "#HTMLGlobalAttrs": true
36442
36442
  },
36443
36443
  "attributes": {
36444
+ "closedby": {
36445
+ "type": {
36446
+ "enum": ["any", "closerequest", "none"],
36447
+ "invalidValueDefault": "auto",
36448
+ "missingValueDefault": "auto"
36449
+ }
36450
+ },
36444
36451
  "open": {
36445
36452
  "type": "Boolean"
36446
36453
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/html-spec",
3
- "version": "4.11.0",
3
+ "version": "4.12.0",
4
4
  "description": "A specification of HTML Living Standard for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -27,11 +27,11 @@
27
27
  "gen:prettier": "prettier --write index.json"
28
28
  },
29
29
  "devDependencies": {
30
- "@markuplint/spec-generator": "4.6.13",
31
- "@markuplint/test-tools": "4.5.13"
30
+ "@markuplint/spec-generator": "4.6.15",
31
+ "@markuplint/test-tools": "4.5.15"
32
32
  },
33
33
  "dependencies": {
34
- "@markuplint/ml-spec": "4.9.0"
34
+ "@markuplint/ml-spec": "4.9.2"
35
35
  },
36
- "gitHead": "b2154ecf1e67559a3791991752f45c9c0283801a"
36
+ "gitHead": "687a84e00546b8f1f2ed88125fe507239723c8d8"
37
37
  }