1.1.8 • Published 14 days ago

@shapediver/viewer.settings v1.1.8

Weekly downloads
-
License
polyform-noncomme...
Repository
github
Last release
14 days ago

@shapediver/viewer.settings

This package is part of the @shapediver/viewer, you can find all information here.

This package contains the definition for various versions of the ShapeDiver Viewer settings. Additionally, it contains functionality for validation and conversion.

Install

npm install @shapediver/viewer.settings

Usage

Validation

import {validate} from "@shapediver/viewer.settings";

// validate with the default object of the settings v3, this will not throw an error
const defaultsV3 = DefaultsV3();
// this will attempt to extract the version from the object
validate(defaultsV3);
// with a specified version
validate(defaultsV3, "3.0");

// validate with an invalid object - this will throw an error
try {
	const notAValidSettingsObject = {
		maliciousFunction: () => {
			console.log("I am bad!");
		},
	};
	validate(notAValidSettingsObject);
} catch (e) {
	// process the error
}

Conversion

import {convert} from "@shapediver/viewer.settings";

// convert to a different version
const defaultsV3 = DefaultsV3();
const convertedV2 = convert(defaultsV3, "2.0");
const convertedV1 = convert(defaultsV3, "1.0");

Getting the target version

import {evaluateSettingsVersion} from "@shapediver/viewer.settings";

// get the target versions
const targetVersion1 = evaluateSettingsVersion("1.1000.0"); // results in '1.0'
const targetVersion2 = evaluateSettingsVersion("2.27.0"); // results in '2.0'
const targetVersion3 = evaluateSettingsVersion("3.1.1.0"); // results in '3.0'
1.1.1

5 months ago

1.1.0

5 months ago

1.1.8

14 days ago

1.1.7

14 days ago

1.1.6

4 months ago

1.1.5

4 months ago

1.1.4

4 months ago

1.1.3

4 months ago

1.1.2

5 months ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.5.7

2 years ago

0.5.4

2 years ago

0.5.6

2 years ago

0.5.5

2 years ago

0.5.0

2 years ago

0.5.2

2 years ago

0.6.0

2 years ago

0.5.1

2 years ago

0.4.3

2 years ago

0.4.2

2 years ago

0.4.1

2 years ago

0.4.0

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.39

3 years ago

0.1.37

3 years ago

0.1.38

3 years ago

0.1.36

3 years ago

0.1.30

3 years ago

0.1.31

3 years ago

0.1.32

3 years ago

0.1.33

3 years ago

0.1.34

3 years ago

0.1.35

3 years ago

0.1.27

3 years ago

0.1.28

3 years ago

0.1.29

3 years ago

0.1.22

4 years ago

0.1.23

4 years ago

0.1.13

4 years ago

0.1.25

3 years ago

0.1.14

4 years ago

0.1.26

3 years ago

0.1.17

4 years ago

0.1.18

4 years ago

0.1.19

4 years ago

0.1.12

4 years ago

0.1.11

4 years ago