Skip to content

Commit 35c544c

Browse files
sakrolekgithub-actions[bot]
authored andcommitted
Remove experimental label from appearances
GitOrigin-RevId: 8ea1377382e070b62d7809d1a9795f9e17b771e6
1 parent c7348c8 commit 35c544c

2 files changed

Lines changed: 0 additions & 46 deletions

File tree

src/style-spec/reference/v8.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1702,7 +1702,6 @@
17021702
"type": "array",
17031703
"value": "appearance",
17041704
"supported-layer-types": ["symbol"],
1705-
"experimental": true,
17061705
"doc": "Conditional styling applied to symbol layer features based on dynamic conditions. If multiple conditions are true, only the first matching appearance will be applied. Only properties marked with 'Works with appearances' are supported. Known issue: at the moment having both `appearances` and `text-variable-anchor` in the same layer doesn't work correctly."
17071706
}
17081707
},

src/style-spec/types.ts

Lines changed: 0 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -674,9 +674,6 @@ export type FillLayerSpecification = {
674674
"fill-tunnel-structure-color-transition"?: TransitionSpecification,
675675
"fill-tunnel-structure-color-use-theme"?: PropertyValueSpecification<string>
676676
},
677-
/**
678-
* @experimental This property is experimental and subject to change in future versions.
679-
*/
680677
"appearances"?: Array<AppearanceSpecification>
681678
};
682679

@@ -771,9 +768,6 @@ export type LineLayerSpecification = {
771768
*/
772769
"line-blend-additive-clamp"?: PropertyValueSpecification<number>
773770
},
774-
/**
775-
* @experimental This property is experimental and subject to change in future versions.
776-
*/
777771
"appearances"?: Array<AppearanceSpecification>
778772
};
779773

@@ -905,9 +899,6 @@ export type SymbolLayerSpecification = {
905899
"symbol-z-offset"?: DataDrivenPropertyValueSpecification<number>,
906900
"symbol-z-offset-transition"?: TransitionSpecification
907901
},
908-
/**
909-
* @experimental This property is experimental and subject to change in future versions.
910-
*/
911902
"appearances"?: Array<AppearanceSpecification>
912903
};
913904

@@ -964,9 +955,6 @@ export type CircleLayerSpecification = {
964955
"circle-emissive-strength"?: PropertyValueSpecification<number>,
965956
"circle-emissive-strength-transition"?: TransitionSpecification
966957
},
967-
/**
968-
* @experimental This property is experimental and subject to change in future versions.
969-
*/
970958
"appearances"?: Array<AppearanceSpecification>
971959
};
972960

@@ -1004,9 +992,6 @@ export type HeatmapLayerSpecification = {
1004992
"heatmap-opacity"?: PropertyValueSpecification<number>,
1005993
"heatmap-opacity-transition"?: TransitionSpecification
1006994
},
1007-
/**
1008-
* @experimental This property is experimental and subject to change in future versions.
1009-
*/
1010995
"appearances"?: Array<AppearanceSpecification>
1011996
};
1012997

@@ -1133,9 +1118,6 @@ export type FillExtrusionLayerSpecification = {
11331118
"fill-extrusion-line-width-transition"?: TransitionSpecification,
11341119
"fill-extrusion-cast-shadows"?: boolean
11351120
},
1136-
/**
1137-
* @experimental This property is experimental and subject to change in future versions.
1138-
*/
11391121
"appearances"?: Array<AppearanceSpecification>
11401122
};
11411123

@@ -1208,9 +1190,6 @@ export type BuildingLayerSpecification = {
12081190
"building-flood-light-ground-attenuation"?: PropertyValueSpecification<number>,
12091191
"building-flood-light-ground-attenuation-transition"?: TransitionSpecification
12101192
},
1211-
/**
1212-
* @experimental This property is experimental and subject to change in future versions.
1213-
*/
12141193
"appearances"?: Array<AppearanceSpecification>
12151194
};
12161195

@@ -1274,9 +1253,6 @@ export type RasterLayerSpecification = {
12741253
*/
12751254
"raster-elevation-reference"?: "sea" | "ground" | ExpressionSpecification
12761255
},
1277-
/**
1278-
* @experimental This property is experimental and subject to change in future versions.
1279-
*/
12801256
"appearances"?: Array<AppearanceSpecification>
12811257
};
12821258

@@ -1317,9 +1293,6 @@ export type RasterParticleLayerSpecification = {
13171293
"raster-particle-elevation"?: PropertyValueSpecification<number>,
13181294
"raster-particle-elevation-transition"?: TransitionSpecification
13191295
},
1320-
/**
1321-
* @experimental This property is experimental and subject to change in future versions.
1322-
*/
13231296
"appearances"?: Array<AppearanceSpecification>
13241297
};
13251298

@@ -1363,9 +1336,6 @@ export type HillshadeLayerSpecification = {
13631336
"hillshade-emissive-strength"?: PropertyValueSpecification<number>,
13641337
"hillshade-emissive-strength-transition"?: TransitionSpecification
13651338
},
1366-
/**
1367-
* @experimental This property is experimental and subject to change in future versions.
1368-
*/
13691339
"appearances"?: Array<AppearanceSpecification>
13701340
};
13711341

@@ -1430,9 +1400,6 @@ export type ModelLayerSpecification = {
14301400
*/
14311401
"model-line-cutout-mode"?: "enabled" | "disabled" | "enabled-above-cutout" | ExpressionSpecification
14321402
},
1433-
/**
1434-
* @experimental This property is experimental and subject to change in future versions.
1435-
*/
14361403
"appearances"?: Array<AppearanceSpecification>
14371404
};
14381405

@@ -1473,9 +1440,6 @@ export type BackgroundLayerSpecification = {
14731440
"background-emissive-strength"?: PropertyValueSpecification<number>,
14741441
"background-emissive-strength-transition"?: TransitionSpecification
14751442
},
1476-
/**
1477-
* @experimental This property is experimental and subject to change in future versions.
1478-
*/
14791443
"appearances"?: Array<AppearanceSpecification>
14801444
};
14811445

@@ -1517,9 +1481,6 @@ export type SkyLayerSpecification = {
15171481
"sky-opacity"?: PropertyValueSpecification<number>,
15181482
"sky-opacity-transition"?: TransitionSpecification
15191483
},
1520-
/**
1521-
* @experimental This property is experimental and subject to change in future versions.
1522-
*/
15231484
"appearances"?: Array<AppearanceSpecification>
15241485
};
15251486

@@ -1543,9 +1504,6 @@ export type SlotLayerSpecification = {
15431504
"minzoom"?: never,
15441505
"maxzoom"?: never,
15451506
"filter"?: never,
1546-
/**
1547-
* @experimental This property is experimental and subject to change in future versions.
1548-
*/
15491507
"appearances"?: Array<AppearanceSpecification>,
15501508
"layout"?: never,
15511509
"paint"?: never
@@ -1566,9 +1524,6 @@ export type ClipLayerSpecification = {
15661524
"clip-layer-scope"?: Array<string> | ExpressionSpecification,
15671525
"visibility"?: "visible" | "none" | ExpressionSpecification
15681526
},
1569-
/**
1570-
* @experimental This property is experimental and subject to change in future versions.
1571-
*/
15721527
"appearances"?: Array<AppearanceSpecification>,
15731528
"paint"?: never
15741529
};

0 commit comments

Comments
 (0)