@magic/tags 0.0.14 → 0.0.16
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/README.md +9 -1
- package/package.json +9 -7
- package/types/index.d.ts +2 -2
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic/tags",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"author": "Wizards & Witches",
|
|
5
5
|
"description": "exports arrays of all html and svg tags.",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
@@ -16,8 +16,10 @@
|
|
|
16
16
|
"serve": "magic serve",
|
|
17
17
|
"dev": "magic dev --watch src",
|
|
18
18
|
"format": "f -w --exclude docs",
|
|
19
|
-
"test": "t --exclude docs example config.js",
|
|
20
|
-
"calls": "calls"
|
|
19
|
+
"test": "t --exclude docs docsrc example config.js",
|
|
20
|
+
"calls": "calls",
|
|
21
|
+
"tsc": "tsc --noEmit",
|
|
22
|
+
"check": "npm run tsc"
|
|
21
23
|
},
|
|
22
24
|
"files": [
|
|
23
25
|
"src",
|
|
@@ -41,10 +43,10 @@
|
|
|
41
43
|
"@magic-modules/no-spy": "0.0.9",
|
|
42
44
|
"@magic-modules/pre": "0.0.12",
|
|
43
45
|
"@magic-themes/docs": "0.0.15",
|
|
44
|
-
"@magic/core": "0.0.
|
|
45
|
-
"@magic/format": "0.0.
|
|
46
|
-
"@magic/test": "0.
|
|
47
|
-
"typescript": "
|
|
46
|
+
"@magic/core": "0.0.159",
|
|
47
|
+
"@magic/format": "0.0.74",
|
|
48
|
+
"@magic/test": "0.3.21",
|
|
49
|
+
"typescript": "6.0.3"
|
|
48
50
|
},
|
|
49
51
|
"keywords": [
|
|
50
52
|
"html",
|
package/types/index.d.ts
CHANGED
|
@@ -221,15 +221,15 @@ export const tags: (
|
|
|
221
221
|
| 'code'
|
|
222
222
|
| 'data'
|
|
223
223
|
| 'time'
|
|
224
|
+
| 'source'
|
|
224
225
|
| 'progress'
|
|
226
|
+
| 'discard'
|
|
225
227
|
| 'stop'
|
|
226
228
|
| 'track'
|
|
227
|
-
| 'source'
|
|
228
229
|
| 'button'
|
|
229
230
|
| 'address'
|
|
230
231
|
| 'unknown'
|
|
231
232
|
| 'view'
|
|
232
|
-
| 'discard'
|
|
233
233
|
| 'clipPath'
|
|
234
234
|
| 'marker'
|
|
235
235
|
| 'mask'
|