@mapbox/mapbox-gl-style-spec 14.7.0 → 14.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mapbox/mapbox-gl-style-spec",
3
- "version": "14.7.0",
3
+ "version": "14.7.1",
4
4
  "description": "a specification for mapbox gl styles",
5
5
  "author": "Mapbox",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
package/reference/v8.json CHANGED
@@ -230,6 +230,10 @@
230
230
  },
231
231
  "featureset": {
232
232
  "experimental": true,
233
+ "metadata": {
234
+ "type": "*",
235
+ "doc": "Arbitrary properties useful to track with the stylesheet, but do not influence rendering. Properties should be prefixed to avoid collisions, like 'mapbox:'."
236
+ },
233
237
  "selectors": {
234
238
  "type": "array",
235
239
  "value": "selector",
package/types.ts CHANGED
@@ -198,6 +198,7 @@ export type FeaturesetsSpecification = {
198
198
  * @experimental This is experimental and subject to change in future versions.
199
199
  */
200
200
  export type FeaturesetSpecification = {
201
+ "metadata"?: unknown,
201
202
  "selectors"?: Array<SelectorSpecification>
202
203
  }
203
204