@adobe/helix-shared-config 10.5.3 → 10.6.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/CHANGELOG.md +14 -0
- package/package.json +2 -2
- package/src/schemas/property.schema.json +19 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/helix-shared-config-v10.6.1](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v10.6.0...@adobe/helix-shared-config-v10.6.1) (2024-06-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([7819598](https://github.com/adobe/helix-shared/commit/78195989159ae57d7912f93013581b2ffdf10b00))
|
|
7
|
+
|
|
8
|
+
# [@adobe/helix-shared-config-v10.6.0](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v10.5.3...@adobe/helix-shared-config-v10.6.0) (2024-06-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* add selectFirst in query config ([#958](https://github.com/adobe/helix-shared/issues/958)) ([83d6f5f](https://github.com/adobe/helix-shared/commit/83d6f5faea513f8e45ec353e647299bae2e10bad))
|
|
14
|
+
|
|
1
15
|
# [@adobe/helix-shared-config-v10.5.3](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v10.5.2...@adobe/helix-shared-config-v10.5.3) (2024-06-15)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-shared-config",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.6.1",
|
|
4
4
|
"description": "Shared modules of the Helix Project - config",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"cookie": "0.6.0",
|
|
46
46
|
"fs-extra": "11.2.0",
|
|
47
47
|
"ignore": "5.3.1",
|
|
48
|
-
"lru-cache": "10.
|
|
48
|
+
"lru-cache": "10.3.0",
|
|
49
49
|
"object-hash": "3.0.0",
|
|
50
50
|
"uri-js": "4.4.1",
|
|
51
51
|
"yaml": "2.4.5"
|
|
@@ -19,10 +19,27 @@
|
|
|
19
19
|
"title": "Single-Value Property",
|
|
20
20
|
"description": "The property in an index. The value will be stored as a single cardinal value.",
|
|
21
21
|
"type": "object",
|
|
22
|
+
"properties": {
|
|
23
|
+
"selectFirst": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"description": "A CSS selector expression that selects the first matching node in the HTML (DOM) or Markdown (MDAST) syntax tree"
|
|
26
|
+
},
|
|
27
|
+
"value": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"description": "A ES6 template literal expression that extracts the value from the matching node(s) to be stored in the index"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"additionalProperties": false,
|
|
33
|
+
"required": ["selectFirst", "value"]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"title": "Multi-value property, concatenated to a single value",
|
|
37
|
+
"description": "The property in an index. The value will be stored as a single cardinal value.",
|
|
38
|
+
"type": "object",
|
|
22
39
|
"properties": {
|
|
23
40
|
"select": {
|
|
24
41
|
"type": "string",
|
|
25
|
-
"description": "A CSS selector expression that selects nodes in the HTML (DOM) or Markdown (MDAST) syntax tree"
|
|
42
|
+
"description": "A CSS selector expression that selects all matching nodes in the HTML (DOM) or Markdown (MDAST) syntax tree"
|
|
26
43
|
},
|
|
27
44
|
"value": {
|
|
28
45
|
"type": "string",
|
|
@@ -44,7 +61,7 @@
|
|
|
44
61
|
"properties": {
|
|
45
62
|
"select": {
|
|
46
63
|
"type": "string",
|
|
47
|
-
"description": "A CSS selector expression that selects nodes in the HTML (DOM) or Markdown (MDAST) syntax tree"
|
|
64
|
+
"description": "A CSS selector expression that selects all matching nodes in the HTML (DOM) or Markdown (MDAST) syntax tree"
|
|
48
65
|
},
|
|
49
66
|
"values": {
|
|
50
67
|
"type": "string",
|