@digipair/skill-web-material-icons 0.28.13 → 0.29.2
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/package.json +1 -1
- package/schema.en.json +52 -0
package/package.json
CHANGED
package/schema.en.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "@digipair/skill-web-material-icons",
|
|
5
|
+
"summary": "Display of material icons",
|
|
6
|
+
"description": "Display of material icons.",
|
|
7
|
+
"version": "0.1.0",
|
|
8
|
+
"x-icon": "🎨"
|
|
9
|
+
},
|
|
10
|
+
"paths": {
|
|
11
|
+
"/digipair-material-icons-icon": {
|
|
12
|
+
"post": {
|
|
13
|
+
"tags": ["web"],
|
|
14
|
+
"summary": "Material icon",
|
|
15
|
+
"description": "Google Material icon",
|
|
16
|
+
"parameters": [
|
|
17
|
+
{
|
|
18
|
+
"name": "name",
|
|
19
|
+
"summary": "Name",
|
|
20
|
+
"required": true,
|
|
21
|
+
"description": "Name of the icon",
|
|
22
|
+
"schema": {
|
|
23
|
+
"type": "string"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "iconStyle",
|
|
28
|
+
"summary": "Custom style",
|
|
29
|
+
"required": false,
|
|
30
|
+
"description": "Custom style of the icon",
|
|
31
|
+
"schema": {
|
|
32
|
+
"type": "object"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "slot",
|
|
37
|
+
"summary": "Slot",
|
|
38
|
+
"required": false,
|
|
39
|
+
"description": "Placement of the icon",
|
|
40
|
+
"schema": {
|
|
41
|
+
"type": "string"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"x-events": []
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"components": {
|
|
50
|
+
"schemas": {}
|
|
51
|
+
}
|
|
52
|
+
}
|