@smplrspace/smplr-loader 2.18.3-beta.2 → 2.18.3-beta.4
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.
|
@@ -385,7 +385,7 @@ declare enum NumericScale {
|
|
|
385
385
|
PuOr = "PuOr"
|
|
386
386
|
}
|
|
387
387
|
|
|
388
|
-
declare const numericScale: ({ name, domain, invert, padding, gamma, brighten, saturate, nodata, classes, }: NumericScaleOptions) => (n: number | null | undefined) => string;
|
|
388
|
+
declare const numericScale: ({ name, domain, invert, padding, gamma, brighten, saturate, nodata, classes, zeroAsNoData, }: NumericScaleOptions) => (n: number | null | undefined) => string;
|
|
389
389
|
|
|
390
390
|
declare interface NumericScaleOptions {
|
|
391
391
|
name: NumericScale | string;
|
|
@@ -397,6 +397,7 @@ declare interface NumericScaleOptions {
|
|
|
397
397
|
saturate?: number;
|
|
398
398
|
nodata?: string;
|
|
399
399
|
classes?: number | number[];
|
|
400
|
+
zeroAsNoData?: boolean;
|
|
400
401
|
}
|
|
401
402
|
|
|
402
403
|
declare type OnPickFn = (args: { coordinates: SmplrCoord3d; furnitureId?: string }) => void
|
|
@@ -834,7 +835,7 @@ declare interface Vector3Coord extends Vector2Coord {
|
|
|
834
835
|
z: number;
|
|
835
836
|
}
|
|
836
837
|
|
|
837
|
-
export declare const version = "2.18.3-beta.
|
|
838
|
+
export declare const version = "2.18.3-beta.4";
|
|
838
839
|
|
|
839
840
|
declare interface ViewerOptions {
|
|
840
841
|
mode?: CameraMode;
|