@magic/tags 0.0.5 → 0.0.9
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 +14 -1
- package/package.json +9 -3
- package/src/index.mjs +2 -0
package/README.md
CHANGED
|
@@ -56,5 +56,18 @@ bump required node version to 14.2.0
|
|
|
56
56
|
##### 0.0.5
|
|
57
57
|
bump required node version to 14.15.4
|
|
58
58
|
|
|
59
|
-
##### 0.0.6
|
|
59
|
+
##### 0.0.6
|
|
60
|
+
add <picture> element
|
|
61
|
+
|
|
62
|
+
##### 0.0.7
|
|
63
|
+
* update @magic/test
|
|
64
|
+
* add type: module to package.json
|
|
65
|
+
|
|
66
|
+
##### 0.0.8
|
|
67
|
+
update dependencies
|
|
68
|
+
|
|
69
|
+
##### 0.0.9
|
|
70
|
+
update dependencies
|
|
71
|
+
|
|
72
|
+
##### 0.0.10 - unreleased
|
|
60
73
|
...
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic/tags",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"author": "Wizards & Witches",
|
|
5
5
|
"description": "exports arrays of all html and svg tags.",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
7
7
|
"homepage": "https://magic.github.io/tags",
|
|
8
|
+
"type": "module",
|
|
8
9
|
"scripts": {
|
|
9
10
|
"start": "t -p",
|
|
10
11
|
"build": "NODE_ENV=production magic build",
|
|
@@ -32,8 +33,13 @@
|
|
|
32
33
|
},
|
|
33
34
|
"main": "src/index.mjs",
|
|
34
35
|
"devDependencies": {
|
|
35
|
-
"@magic/
|
|
36
|
-
"@magic/
|
|
36
|
+
"@magic-modules/light-switch": "0.0.10",
|
|
37
|
+
"@magic-modules/no-spy": "0.0.6",
|
|
38
|
+
"@magic-modules/pre": "0.0.11",
|
|
39
|
+
"@magic-themes/docs": "0.0.14",
|
|
40
|
+
"@magic/core": "0.0.133",
|
|
41
|
+
"@magic/format": "0.0.34",
|
|
42
|
+
"@magic/test": "0.2.0"
|
|
37
43
|
},
|
|
38
44
|
"keywords": [
|
|
39
45
|
"html",
|
package/src/index.mjs
CHANGED
|
@@ -342,6 +342,8 @@ export const svgTags = [
|
|
|
342
342
|
'path',
|
|
343
343
|
// The <pattern> element defines a graphics object which can be redrawn at repeated x and y-coordinate intervals ("tiled") to cover an area.
|
|
344
344
|
'pattern',
|
|
345
|
+
// The HTML <picture> element contains zero or more <source> elements and one element to offer alternative versions of an image for different display/device scenarios.
|
|
346
|
+
'picture',
|
|
345
347
|
// The <polygon> element defines a closed shape consisting of a set of connected straight line segments. The last point is connected to the first point. For open shapes see the <polyline> element.
|
|
346
348
|
'polygon',
|
|
347
349
|
// The <polyline> SVG element is an SVG basic shape that creates straight lines connecting several points. Typically a polyline is used to create open shapes as the last point doesn't have to be connected to the first point. For closed shapes see the <polygon> element.
|