@digipair/skill-web-editor 0.5.0 → 0.5.1

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.cjs2.js CHANGED
@@ -3042,6 +3042,32 @@ const schemas = {
3042
3042
  }
3043
3043
  ]
3044
3044
  }
3045
+ },
3046
+ '/span': {
3047
+ post: {
3048
+ tags: [
3049
+ 'web'
3050
+ ],
3051
+ summary: 'Span',
3052
+ parameters: [
3053
+ {
3054
+ name: 'textContent',
3055
+ summary: 'Texte',
3056
+ description: 'Texte du span',
3057
+ schema: {
3058
+ type: 'string'
3059
+ }
3060
+ },
3061
+ {
3062
+ name: 'slot',
3063
+ summary: 'Position',
3064
+ description: "Position du span dans l'élément parent",
3065
+ schema: {
3066
+ type: 'string'
3067
+ }
3068
+ }
3069
+ ]
3070
+ }
3045
3071
  }
3046
3072
  },
3047
3073
  components: {
package/index.esm2.js CHANGED
@@ -3040,6 +3040,32 @@ const schemas = {
3040
3040
  }
3041
3041
  ]
3042
3042
  }
3043
+ },
3044
+ '/span': {
3045
+ post: {
3046
+ tags: [
3047
+ 'web'
3048
+ ],
3049
+ summary: 'Span',
3050
+ parameters: [
3051
+ {
3052
+ name: 'textContent',
3053
+ summary: 'Texte',
3054
+ description: 'Texte du span',
3055
+ schema: {
3056
+ type: 'string'
3057
+ }
3058
+ },
3059
+ {
3060
+ name: 'slot',
3061
+ summary: 'Position',
3062
+ description: "Position du span dans l'élément parent",
3063
+ schema: {
3064
+ type: 'string'
3065
+ }
3066
+ }
3067
+ ]
3068
+ }
3043
3069
  }
3044
3070
  },
3045
3071
  components: {
@@ -22,6 +22,20 @@ export declare const schemas: {
22
22
  }[];
23
23
  };
24
24
  };
25
+ '/span': {
26
+ post: {
27
+ tags: string[];
28
+ summary: string;
29
+ parameters: {
30
+ name: string;
31
+ summary: string;
32
+ description: string;
33
+ schema: {
34
+ type: string;
35
+ };
36
+ }[];
37
+ };
38
+ };
25
39
  };
26
40
  components: {
27
41
  schemas: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-web-editor",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "dependencies": {},
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js"