@digipair/skill-web-jsoneditor 0.8.12
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/index.cjs.d.ts +1 -0
- package/index.cjs.js +84610 -0
- package/index.d.ts +1 -0
- package/libs/skill-web-jsoneditor/src/index.d.ts +1 -0
- package/libs/skill-web-jsoneditor/src/lib/jsoneditor.element.d.ts +6 -0
- package/libs/skill-web-jsoneditor/src/lib/skill-web-jsoneditor.d.ts +1 -0
- package/package.json +8 -0
- package/schema.json +47 -0
- package/vanilla-picker.cjs.js +1047 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './libs/skill-web-jsoneditor/src/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/skill-web-jsoneditor';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './jsoneditor.element';
|
package/package.json
ADDED
package/schema.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "@digipair/skill-web-jsoneditor",
|
|
5
|
+
"summary": "Editeur JSON",
|
|
6
|
+
"description": "Cette compétence permet d'afficher un éditeur JSON dans une page web. L'utilisateur peut modifier le contenu JSON et récupérer le contenu modifié.",
|
|
7
|
+
"version": "0.1.0",
|
|
8
|
+
"x-icon": "📐"
|
|
9
|
+
},
|
|
10
|
+
"paths": {
|
|
11
|
+
"/digipair-jsoneditor": {
|
|
12
|
+
"post": {
|
|
13
|
+
"tags": ["web"],
|
|
14
|
+
"summary": "Editeur JSON",
|
|
15
|
+
"description": "Editeur JSON",
|
|
16
|
+
"parameters": [
|
|
17
|
+
{
|
|
18
|
+
"name": "content",
|
|
19
|
+
"summary": "Contenu JSON",
|
|
20
|
+
"required": false,
|
|
21
|
+
"description": "Contenu json à afficher dans l'éditeur",
|
|
22
|
+
"schema": {
|
|
23
|
+
"type": "object"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"x-events": [
|
|
28
|
+
{
|
|
29
|
+
"name": "change",
|
|
30
|
+
"summary": "Lors d'un changement",
|
|
31
|
+
"required": false,
|
|
32
|
+
"description": "Action déclenchée lors d'un changement dans l'éditeur",
|
|
33
|
+
"schema": {
|
|
34
|
+
"type": "array",
|
|
35
|
+
"items": {
|
|
36
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"components": {
|
|
45
|
+
"schemas": {}
|
|
46
|
+
}
|
|
47
|
+
}
|