@mapbox/mapbox-gl-style-spec 14.25.0 → 14.26.0-rc.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/dist/index.d.ts CHANGED
@@ -223,6 +223,12 @@ export type SourcesSpecification = {
223
223
  export type ModelsSpecification = {
224
224
  [_: string]: ModelSpecification;
225
225
  };
226
+ export type ModelLightOverridesSpecification = {
227
+ "light-ambient-color"?: ColorSpecification;
228
+ "light-ambient-intensity"?: number;
229
+ "light-directional-color"?: ColorSpecification;
230
+ "light-directional-intensity"?: number;
231
+ };
226
232
  export type ModelNodeOverrideSpecification = {
227
233
  "orientation"?: [
228
234
  number,
@@ -256,6 +262,7 @@ export type ModelSourceModelSpecification = {
256
262
  number,
257
263
  number
258
264
  ];
265
+ "lightOverrides"?: ModelLightOverridesSpecification;
259
266
  "nodeOverrides"?: ModelNodeOverridesSpecification;
260
267
  "materialOverrides"?: ModelMaterialOverridesSpecification;
261
268
  "nodeOverrideNames"?: Array<string>;
@@ -426,8 +433,7 @@ export type RainSpecification = {
426
433
  "distortion-strength-transition"?: TransitionSpecification;
427
434
  };
428
435
  export type CameraSpecification = {
429
- "camera-projection"?: PropertyValueSpecification<"perspective" | "orthographic">;
430
- "camera-projection-transition"?: TransitionSpecification;
436
+ "camera-projection"?: "perspective" | "orthographic";
431
437
  };
432
438
  export type ColorThemeSpecification = {
433
439
  "data"?: string | ExpressionSpecification;