@digipair/skill-web-font-awesome 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-font-awesome",
|
|
5
|
+
"summary": "Display of font-awesome icons",
|
|
6
|
+
"description": "Display of font-awesome icons.",
|
|
7
|
+
"version": "0.1.0",
|
|
8
|
+
"x-icon": "🎨"
|
|
9
|
+
},
|
|
10
|
+
"paths": {
|
|
11
|
+
"/digipair-font-awesome-icon": {
|
|
12
|
+
"post": {
|
|
13
|
+
"tags": ["web"],
|
|
14
|
+
"summary": "Font-awesome icon",
|
|
15
|
+
"description": "Font-awesome 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": "category",
|
|
28
|
+
"summary": "Icon category",
|
|
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": "Location of the icon",
|
|
40
|
+
"schema": {
|
|
41
|
+
"type": "string"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"x-events": []
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"components": {
|
|
50
|
+
"schemas": {}
|
|
51
|
+
}
|
|
52
|
+
}
|