@adobe/helix-config-storage 2.0.0 → 2.0.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 +8 -0
- package/package.json +1 -1
- package/src/schemas/sidekick.schema.json +37 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [2.0.1](https://github.com/adobe/helix-config-storage/compare/v2.0.0...v2.0.1) (2025-03-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add review environment, popover and badges ([8a85edd](https://github.com/adobe/helix-config-storage/commit/8a85eddd7af9162b533eedefa479b744a792e072))
|
|
7
|
+
* dependentRequired ([88d54ce](https://github.com/adobe/helix-config-storage/commit/88d54ce7c52c2a4ff3c49fd3b3870066f7360ec1))
|
|
8
|
+
|
|
1
9
|
# [2.0.0](https://github.com/adobe/helix-config-storage/compare/v1.15.4...v2.0.0) (2025-03-03)
|
|
2
10
|
|
|
3
11
|
|
package/package.json
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"type": "array",
|
|
27
27
|
"items": {
|
|
28
28
|
"type": "string",
|
|
29
|
-
"enum": ["any", "dev", "admin", "edit", "preview", "live", "prod"]
|
|
29
|
+
"enum": ["any", "dev", "admin", "edit", "preview", "live", "prod", "review"]
|
|
30
30
|
},
|
|
31
31
|
"description": "The environments to display this plugin in",
|
|
32
32
|
"default": "any"
|
|
@@ -69,6 +69,14 @@
|
|
|
69
69
|
"type": "string",
|
|
70
70
|
"description": "he dimensions and position of a palette box"
|
|
71
71
|
},
|
|
72
|
+
"isPopover": {
|
|
73
|
+
"type": "boolean",
|
|
74
|
+
"description": "Opens the URL in a popover instead of a new tab"
|
|
75
|
+
},
|
|
76
|
+
"popoverRect": {
|
|
77
|
+
"type": "string",
|
|
78
|
+
"description": "The dimensions of a popover, delimited by a semicolon (width, height)"
|
|
79
|
+
},
|
|
72
80
|
"titleI18n": {
|
|
73
81
|
"type": "object",
|
|
74
82
|
"description": "The button text in other supported languages",
|
|
@@ -88,6 +96,30 @@
|
|
|
88
96
|
"passReferrer": {
|
|
89
97
|
"type": "boolean",
|
|
90
98
|
"description": "Append the referrer URL as a query param on new URL button click"
|
|
99
|
+
},
|
|
100
|
+
"isBadge": {
|
|
101
|
+
"type": "boolean",
|
|
102
|
+
"description": "Opens the URL in a palette instead of a new tab"
|
|
103
|
+
},
|
|
104
|
+
"badgeVariant": {
|
|
105
|
+
"type": "string",
|
|
106
|
+
"description": "The variant of the badge following the Adobe Spectrum badge variants",
|
|
107
|
+
"enum": [
|
|
108
|
+
"gray",
|
|
109
|
+
"red",
|
|
110
|
+
"orange",
|
|
111
|
+
"yellow",
|
|
112
|
+
"chartreuse",
|
|
113
|
+
"celery",
|
|
114
|
+
"green",
|
|
115
|
+
"seafoam",
|
|
116
|
+
"cyan",
|
|
117
|
+
"blue",
|
|
118
|
+
"indigo",
|
|
119
|
+
"purple",
|
|
120
|
+
"fuchsia",
|
|
121
|
+
"magenta"
|
|
122
|
+
]
|
|
91
123
|
}
|
|
92
124
|
},
|
|
93
125
|
"required": [
|
|
@@ -95,7 +127,10 @@
|
|
|
95
127
|
],
|
|
96
128
|
"dependentRequired": {
|
|
97
129
|
"isPalette": ["url"],
|
|
98
|
-
"paletteRect": ["isPalette"]
|
|
130
|
+
"paletteRect": ["isPalette"],
|
|
131
|
+
"isPopover": ["url"],
|
|
132
|
+
"popoverRect": ["isPopover"],
|
|
133
|
+
"badgeVariant": ["isBadge"]
|
|
99
134
|
}
|
|
100
135
|
}
|
|
101
136
|
},
|