@digipair/skill-html 0.97.1 → 0.98.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/index.cjs.js CHANGED
@@ -23923,14 +23923,14 @@ function indent(str, spaces) {
23923
23923
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23924
23924
  // match is required
23925
23925
  if (!match) {
23926
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23926
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23927
23927
  v: nextMatch1
23928
23928
  };
23929
23929
  }
23930
23930
  var token = match.token, offset = match.offset;
23931
23931
  i1 += offset;
23932
23932
  if (token === " ") {
23933
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23933
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23934
23934
  }
23935
23935
  tokens1 = _to_consumable_array$1(tokens1).concat([
23936
23936
  token
@@ -23949,7 +23949,7 @@ function indent(str, spaces) {
23949
23949
  if (contextKeys.some(function(el) {
23950
23950
  return el.startsWith(name);
23951
23951
  })) {
23952
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23952
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23953
23953
  }
23954
23954
  if (dateTimeIdentifiers.some(function(el) {
23955
23955
  return el === name;
@@ -23968,9 +23968,9 @@ function indent(str, spaces) {
23968
23968
  if (dateTimeIdentifiers.some(function(el) {
23969
23969
  return el.startsWith(name);
23970
23970
  })) {
23971
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23971
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23972
23972
  }
23973
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23973
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23974
23974
  v: nextMatch1
23975
23975
  };
23976
23976
  };
package/index.esm.js CHANGED
@@ -23901,14 +23901,14 @@ function indent(str, spaces) {
23901
23901
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23902
23902
  // match is required
23903
23903
  if (!match) {
23904
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23904
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23905
23905
  v: nextMatch1
23906
23906
  };
23907
23907
  }
23908
23908
  var token = match.token, offset = match.offset;
23909
23909
  i1 += offset;
23910
23910
  if (token === " ") {
23911
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23911
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23912
23912
  }
23913
23913
  tokens1 = _to_consumable_array$1(tokens1).concat([
23914
23914
  token
@@ -23927,7 +23927,7 @@ function indent(str, spaces) {
23927
23927
  if (contextKeys.some(function(el) {
23928
23928
  return el.startsWith(name);
23929
23929
  })) {
23930
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23930
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23931
23931
  }
23932
23932
  if (dateTimeIdentifiers.some(function(el) {
23933
23933
  return el === name;
@@ -23946,9 +23946,9 @@ function indent(str, spaces) {
23946
23946
  if (dateTimeIdentifiers.some(function(el) {
23947
23947
  return el.startsWith(name);
23948
23948
  })) {
23949
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23949
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23950
23950
  }
23951
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23951
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23952
23952
  v: nextMatch1
23953
23953
  };
23954
23954
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-html",
3
- "version": "0.97.1",
3
+ "version": "0.98.2",
4
4
  "keywords": [
5
5
  "digipair",
6
6
  "service",
package/schema.fr.json CHANGED
@@ -41,7 +41,10 @@
41
41
  "content": {
42
42
  "application/json": {
43
43
  "schema": {
44
- "$ref": "#/components/schemas/PinsList"
44
+ "type": "array",
45
+ "items": {
46
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
47
+ }
45
48
  }
46
49
  }
47
50
  }
@@ -116,47 +119,7 @@
116
119
  }
117
120
  },
118
121
  "components": {
119
- "schemas": {
120
- "PinsList": {
121
- "type": "array",
122
- "description": "Tableau d'objets pins convertis à partir du HTML",
123
- "items": {
124
- "$ref": "#/components/schemas/PinsObject"
125
- }
126
- },
127
- "PinsObject": {
128
- "type": "object",
129
- "description": "Objet pins individuel représentant un élément HTML",
130
- "properties": {
131
- "library": {
132
- "type": "string",
133
- "description": "Nom de la bibliothèque pour l'élément pins"
134
- },
135
- "element": {
136
- "type": "string",
137
- "description": "Nom de la balise de l'élément HTML"
138
- },
139
- "properties": {
140
- "type": "object",
141
- "description": "Attributs et propriétés de l'élément",
142
- "additionalProperties": true
143
- },
144
- "pins": {
145
- "type": "array",
146
- "description": "Objets pins enfants",
147
- "items": {
148
- "$ref": "#/components/schemas/PinsObject"
149
- }
150
- }
151
- },
152
- "required": [
153
- "library",
154
- "element",
155
- "properties",
156
- "pins"
157
- ]
158
- }
159
- }
122
+ "schemas": {}
160
123
  },
161
124
  "x-scene-blocks": {}
162
125
  }
package/schema.json CHANGED
@@ -41,7 +41,10 @@
41
41
  "content": {
42
42
  "application/json": {
43
43
  "schema": {
44
- "$ref": "#/components/schemas/PinsList"
44
+ "type": "array",
45
+ "items": {
46
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
47
+ }
45
48
  }
46
49
  }
47
50
  }
@@ -116,47 +119,7 @@
116
119
  }
117
120
  },
118
121
  "components": {
119
- "schemas": {
120
- "PinsList": {
121
- "type": "array",
122
- "description": "Array of pins objects converted from HTML",
123
- "items": {
124
- "$ref": "#/components/schemas/PinsObject"
125
- }
126
- },
127
- "PinsObject": {
128
- "type": "object",
129
- "description": "Individual pins object representing an HTML element",
130
- "properties": {
131
- "library": {
132
- "type": "string",
133
- "description": "Library name for the pins element"
134
- },
135
- "element": {
136
- "type": "string",
137
- "description": "HTML element tag name"
138
- },
139
- "properties": {
140
- "type": "object",
141
- "description": "Element attributes and properties",
142
- "additionalProperties": true
143
- },
144
- "pins": {
145
- "type": "array",
146
- "description": "Child pins objects",
147
- "items": {
148
- "$ref": "#/components/schemas/PinsObject"
149
- }
150
- }
151
- },
152
- "required": [
153
- "library",
154
- "element",
155
- "properties",
156
- "pins"
157
- ]
158
- }
159
- }
122
+ "schemas": {}
160
123
  },
161
124
  "x-scene-blocks": {}
162
125
  }