@markuplint/parser-utils 3.1.0 → 3.3.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.
@@ -108,6 +108,10 @@ const idlContentMap = {
108
108
  pattern: 'pattern',
109
109
  placeholder: 'placeholder',
110
110
  playsInline: 'playsinline',
111
+ popover: 'popover',
112
+ popoverHideTarget: 'popoverhidetarget',
113
+ popoverShowTarget: 'popovershowtarget',
114
+ popoverToggleTarget: 'popovertoggletarget',
111
115
  poster: 'poster',
112
116
  preload: 'preload',
113
117
  profile: 'profile',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/parser-utils",
3
- "version": "3.1.0",
3
+ "version": "3.3.0",
4
4
  "description": "Utility module for markuplint parser plugin",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -11,6 +11,9 @@
11
11
  "publishConfig": {
12
12
  "access": "public"
13
13
  },
14
+ "typedoc": {
15
+ "entryPoint": "./src/index.ts"
16
+ },
14
17
  "scripts": {
15
18
  "build": "tsc",
16
19
  "clean": "tsc --build --clean"
@@ -19,13 +22,13 @@
19
22
  "@types/uuid": "^9.0.0"
20
23
  },
21
24
  "dependencies": {
22
- "@markuplint/ml-ast": "3.0.0-rc.5",
23
- "@markuplint/types": "3.0.0",
25
+ "@markuplint/ml-ast": "3.0.0",
26
+ "@markuplint/types": "3.2.0",
24
27
  "tslib": "^2.4.1",
25
28
  "uuid": "^9.0.0"
26
29
  },
27
30
  "peerDependencies": {
28
31
  "@markuplint/ml-core": "3.x"
29
32
  },
30
- "gitHead": "0e75df6944f453bc19d2a6e05ad264788a8dc149"
33
+ "gitHead": "791fb22a4df7acb985ced3808923fba0cd95c28a"
31
34
  }