@combeenation/3d-viewer 4.0.0-rc1 → 4.0.0

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.
Files changed (93) hide show
  1. package/README.md +114 -114
  2. package/dist/lib-cjs/api/classes/animationInterface.d.ts +8 -8
  3. package/dist/lib-cjs/api/classes/animationInterface.js +1 -1
  4. package/dist/lib-cjs/api/classes/dottedPath.d.ts +79 -79
  5. package/dist/lib-cjs/api/classes/dottedPath.js +190 -190
  6. package/dist/lib-cjs/api/classes/element.d.ts +130 -130
  7. package/dist/lib-cjs/api/classes/element.js +743 -743
  8. package/dist/lib-cjs/api/classes/elementParameterizable.d.ts +14 -14
  9. package/dist/lib-cjs/api/classes/elementParameterizable.js +134 -134
  10. package/dist/lib-cjs/api/classes/event.d.ts +326 -326
  11. package/dist/lib-cjs/api/classes/event.js +371 -371
  12. package/dist/lib-cjs/api/classes/eventBroadcaster.d.ts +26 -26
  13. package/dist/lib-cjs/api/classes/eventBroadcaster.js +53 -53
  14. package/dist/lib-cjs/api/classes/parameter.d.ts +259 -259
  15. package/dist/lib-cjs/api/classes/parameter.js +387 -387
  16. package/dist/lib-cjs/api/classes/parameterObservable.d.ts +36 -36
  17. package/dist/lib-cjs/api/classes/parameterObservable.js +101 -101
  18. package/dist/lib-cjs/api/classes/parameterizable.d.ts +15 -15
  19. package/dist/lib-cjs/api/classes/parameterizable.js +149 -149
  20. package/dist/lib-cjs/api/classes/placementAnimation.d.ts +38 -38
  21. package/dist/lib-cjs/api/classes/placementAnimation.js +149 -149
  22. package/dist/lib-cjs/api/classes/variant.d.ts +234 -234
  23. package/dist/lib-cjs/api/classes/variant.js +1147 -1147
  24. package/dist/lib-cjs/api/classes/variantInstance.d.ts +45 -45
  25. package/dist/lib-cjs/api/classes/variantInstance.js +108 -108
  26. package/dist/lib-cjs/api/classes/variantParameterizable.d.ts +17 -17
  27. package/dist/lib-cjs/api/classes/variantParameterizable.js +92 -92
  28. package/dist/lib-cjs/api/classes/viewer.d.ts +131 -131
  29. package/dist/lib-cjs/api/classes/viewer.js +567 -567
  30. package/dist/lib-cjs/api/classes/viewerLight.d.ts +66 -66
  31. package/dist/lib-cjs/api/classes/viewerLight.js +389 -389
  32. package/dist/lib-cjs/api/internal/debugViewer.d.ts +13 -13
  33. package/dist/lib-cjs/api/internal/debugViewer.js +87 -87
  34. package/dist/lib-cjs/api/internal/lensRendering.d.ts +8 -8
  35. package/dist/lib-cjs/api/internal/lensRendering.js +11 -11
  36. package/dist/lib-cjs/api/internal/sceneSetup.d.ts +10 -10
  37. package/dist/lib-cjs/api/internal/sceneSetup.js +231 -231
  38. package/dist/lib-cjs/api/manager/animationManager.d.ts +29 -29
  39. package/dist/lib-cjs/api/manager/animationManager.js +121 -121
  40. package/dist/lib-cjs/api/manager/sceneManager.d.ts +32 -32
  41. package/dist/lib-cjs/api/manager/sceneManager.js +132 -132
  42. package/dist/lib-cjs/api/manager/variantInstanceManager.d.ts +90 -90
  43. package/dist/lib-cjs/api/manager/variantInstanceManager.js +321 -321
  44. package/dist/lib-cjs/api/store/specStorage.d.ts +24 -24
  45. package/dist/lib-cjs/api/store/specStorage.js +51 -51
  46. package/dist/lib-cjs/api/util/babylonHelper.d.ts +175 -175
  47. package/dist/lib-cjs/api/util/babylonHelper.js +520 -520
  48. package/dist/lib-cjs/api/util/globalTypes.d.ts +333 -333
  49. package/dist/lib-cjs/api/util/globalTypes.js +1 -1
  50. package/dist/lib-cjs/api/util/resourceHelper.d.ts +53 -53
  51. package/dist/lib-cjs/api/util/resourceHelper.js +240 -240
  52. package/dist/lib-cjs/api/util/stringHelper.d.ts +9 -9
  53. package/dist/lib-cjs/api/util/stringHelper.js +25 -25
  54. package/dist/lib-cjs/buildinfo.json +3 -3
  55. package/dist/lib-cjs/index.d.ts +48 -48
  56. package/dist/lib-cjs/index.js +86 -86
  57. package/package.json +83 -83
  58. package/src/api/classes/animationInterface.ts +11 -11
  59. package/src/api/classes/dottedPath.ts +189 -189
  60. package/src/api/classes/element.ts +644 -644
  61. package/src/api/classes/event.ts +370 -370
  62. package/src/api/classes/eventBroadcaster.ts +54 -54
  63. package/src/api/classes/parameter.ts +408 -408
  64. package/src/api/classes/parameterObservable.ts +99 -99
  65. package/src/api/classes/parameterizable.ts +89 -89
  66. package/src/api/classes/placementAnimation.ts +143 -143
  67. package/src/api/classes/variant.ts +817 -817
  68. package/src/api/classes/variantInstance.ts +88 -88
  69. package/src/api/classes/variantParameterizable.ts +73 -73
  70. package/src/api/classes/viewer.ts +487 -487
  71. package/src/api/classes/viewerLight.ts +330 -330
  72. package/src/api/internal/debugViewer.ts +81 -81
  73. package/src/api/internal/lensRendering.ts +10 -10
  74. package/src/api/internal/sceneSetup.ts +193 -193
  75. package/src/api/manager/animationManager.ts +116 -116
  76. package/src/api/manager/sceneManager.ts +105 -105
  77. package/src/api/manager/variantInstanceManager.ts +236 -236
  78. package/src/api/store/specStorage.ts +53 -53
  79. package/src/api/util/babylonHelper.ts +555 -555
  80. package/src/api/util/globalTypes.ts +379 -379
  81. package/src/api/util/resourceHelper.ts +184 -184
  82. package/src/api/util/stringHelper.ts +25 -25
  83. package/src/buildinfo.json +2 -2
  84. package/src/commonjs.tsconfig.json +13 -13
  85. package/src/declaration.tsconfig.json +10 -10
  86. package/src/dev.ts +42 -42
  87. package/src/es6.tsconfig.json +13 -13
  88. package/src/index.ts +91 -91
  89. package/src/pagesconfig.json +61 -61
  90. package/src/tsconfig.json +43 -43
  91. package/src/tsconfig.types.json +9 -9
  92. package/src/types.d.ts +4 -4
  93. package/dist/webpack-stats.json +0 -0
package/src/index.ts CHANGED
@@ -1,91 +1,91 @@
1
- /// <reference path="api/util/globalTypes.ts" />
2
-
3
- import { Animation as BabylonAnimation } from '@babylonjs/core/Animations/animation';
4
- import { ArcRotateCamera } from '@babylonjs/core/Cameras/arcRotateCamera';
5
- import { Engine } from '@babylonjs/core/Engines/engine';
6
- import { DirectionalLight } from '@babylonjs/core/Lights/directionalLight';
7
- import { HemisphericLight } from '@babylonjs/core/Lights/hemisphericLight';
8
- import { Material } from '@babylonjs/core/Materials/material';
9
- import { PBRMaterial } from '@babylonjs/core/Materials/PBR/pbrMaterial';
10
- import { StandardMaterial } from '@babylonjs/core/Materials/standardMaterial';
11
- import { CubeTexture } from '@babylonjs/core/Materials/Textures/cubeTexture';
12
- import { DynamicTexture } from '@babylonjs/core/Materials/Textures/dynamicTexture';
13
- import { Texture } from '@babylonjs/core/Materials/Textures/texture';
14
- import { Color3, Color4 } from '@babylonjs/core/Maths/math.color';
15
- import { Vector3 } from '@babylonjs/core/Maths/math.vector';
16
- import { AbstractMesh } from '@babylonjs/core/Meshes/abstractMesh';
17
- import { InstancedMesh } from '@babylonjs/core/Meshes/instancedMesh';
18
- import { Mesh } from '@babylonjs/core/Meshes/mesh';
19
- import { MeshBuilder } from '@babylonjs/core/Meshes/meshBuilder';
20
- import { TransformNode } from '@babylonjs/core/Meshes/transformNode';
21
- import { Node } from '@babylonjs/core/node';
22
-
23
- /**
24
- * Without explicitly importing the "BoundingBoxRenderer", we're getting "scene.getBoundingBoxRenderer is undefined"
25
- * errors when creating HighlightLayer instances. Not sure why but those errors only happen when using the built
26
- * version of the viewer (e.g. when pulling it from NPM etc.)...
27
- */
28
- import '@babylonjs/core/Rendering/boundingBoxRenderer';
29
- import { Scene } from '@babylonjs/core/scene';
30
- import { Parameterizable } from './api/classes/parameterizable';
31
- import { VariantParameterizable } from './api/classes/variantParameterizable';
32
- import { EventEmitter } from 'eventemitter3';
33
- import { Element } from './api/classes/element';
34
- import { emitter, Event } from './api/classes/event';
35
- import { EventBroadcaster } from './api/classes/eventBroadcaster';
36
- import { Parameter } from './api/classes/parameter';
37
- import { ParameterObservable } from './api/classes/parameterObservable';
38
- import { PlacementAnimation } from './api/classes/placementAnimation';
39
- import { Variant } from './api/classes/variant';
40
- import { VariantInstance } from './api/classes/variantInstance';
41
- import { Viewer } from './api/classes/viewer';
42
- import { ViewerLight } from './api/classes/viewerLight';
43
- import { AnimationManager } from './api/manager/animationManager';
44
- import { SceneManager } from './api/manager/sceneManager';
45
- import { VariantInstanceManager } from './api/manager/variantInstanceManager';
46
- import * as BabylonHelper from './api/util/babylonHelper';
47
-
48
- /**
49
- * Expose some frequently used babylon modules by our consumers.
50
- */
51
- export {
52
- AnimationManager,
53
- Variant,
54
- VariantInstanceManager,
55
- Viewer,
56
- ParameterObservable,
57
- Parameterizable,
58
- VariantParameterizable,
59
- ViewerLight,
60
- emitter as Emitter,
61
- EventEmitter,
62
- Event,
63
- Parameter,
64
- VariantInstance,
65
- Color3,
66
- Color4,
67
- Vector3,
68
- AbstractMesh,
69
- InstancedMesh,
70
- Mesh,
71
- TransformNode,
72
- Node,
73
- Material,
74
- PBRMaterial,
75
- StandardMaterial,
76
- Scene,
77
- Engine,
78
- ArcRotateCamera,
79
- DynamicTexture,
80
- CubeTexture,
81
- MeshBuilder,
82
- Texture,
83
- BabylonAnimation,
84
- HemisphericLight,
85
- DirectionalLight,
86
- Element,
87
- EventBroadcaster,
88
- SceneManager,
89
- PlacementAnimation,
90
- BabylonHelper,
91
- };
1
+ /// <reference path="api/util/globalTypes.ts" />
2
+
3
+ import { Animation as BabylonAnimation } from '@babylonjs/core/Animations/animation';
4
+ import { ArcRotateCamera } from '@babylonjs/core/Cameras/arcRotateCamera';
5
+ import { Engine } from '@babylonjs/core/Engines/engine';
6
+ import { DirectionalLight } from '@babylonjs/core/Lights/directionalLight';
7
+ import { HemisphericLight } from '@babylonjs/core/Lights/hemisphericLight';
8
+ import { Material } from '@babylonjs/core/Materials/material';
9
+ import { PBRMaterial } from '@babylonjs/core/Materials/PBR/pbrMaterial';
10
+ import { StandardMaterial } from '@babylonjs/core/Materials/standardMaterial';
11
+ import { CubeTexture } from '@babylonjs/core/Materials/Textures/cubeTexture';
12
+ import { DynamicTexture } from '@babylonjs/core/Materials/Textures/dynamicTexture';
13
+ import { Texture } from '@babylonjs/core/Materials/Textures/texture';
14
+ import { Color3, Color4 } from '@babylonjs/core/Maths/math.color';
15
+ import { Vector3 } from '@babylonjs/core/Maths/math.vector';
16
+ import { AbstractMesh } from '@babylonjs/core/Meshes/abstractMesh';
17
+ import { InstancedMesh } from '@babylonjs/core/Meshes/instancedMesh';
18
+ import { Mesh } from '@babylonjs/core/Meshes/mesh';
19
+ import { MeshBuilder } from '@babylonjs/core/Meshes/meshBuilder';
20
+ import { TransformNode } from '@babylonjs/core/Meshes/transformNode';
21
+ import { Node } from '@babylonjs/core/node';
22
+
23
+ /**
24
+ * Without explicitly importing the "BoundingBoxRenderer", we're getting "scene.getBoundingBoxRenderer is undefined"
25
+ * errors when creating HighlightLayer instances. Not sure why but those errors only happen when using the built
26
+ * version of the viewer (e.g. when pulling it from NPM etc.)...
27
+ */
28
+ import '@babylonjs/core/Rendering/boundingBoxRenderer';
29
+ import { Scene } from '@babylonjs/core/scene';
30
+ import { Parameterizable } from './api/classes/parameterizable';
31
+ import { VariantParameterizable } from './api/classes/variantParameterizable';
32
+ import { EventEmitter } from 'eventemitter3';
33
+ import { Element } from './api/classes/element';
34
+ import { emitter, Event } from './api/classes/event';
35
+ import { EventBroadcaster } from './api/classes/eventBroadcaster';
36
+ import { Parameter } from './api/classes/parameter';
37
+ import { ParameterObservable } from './api/classes/parameterObservable';
38
+ import { PlacementAnimation } from './api/classes/placementAnimation';
39
+ import { Variant } from './api/classes/variant';
40
+ import { VariantInstance } from './api/classes/variantInstance';
41
+ import { Viewer } from './api/classes/viewer';
42
+ import { ViewerLight } from './api/classes/viewerLight';
43
+ import { AnimationManager } from './api/manager/animationManager';
44
+ import { SceneManager } from './api/manager/sceneManager';
45
+ import { VariantInstanceManager } from './api/manager/variantInstanceManager';
46
+ import * as BabylonHelper from './api/util/babylonHelper';
47
+
48
+ /**
49
+ * Expose some frequently used babylon modules by our consumers.
50
+ */
51
+ export {
52
+ AnimationManager,
53
+ Variant,
54
+ VariantInstanceManager,
55
+ Viewer,
56
+ ParameterObservable,
57
+ Parameterizable,
58
+ VariantParameterizable,
59
+ ViewerLight,
60
+ emitter as Emitter,
61
+ EventEmitter,
62
+ Event,
63
+ Parameter,
64
+ VariantInstance,
65
+ Color3,
66
+ Color4,
67
+ Vector3,
68
+ AbstractMesh,
69
+ InstancedMesh,
70
+ Mesh,
71
+ TransformNode,
72
+ Node,
73
+ Material,
74
+ PBRMaterial,
75
+ StandardMaterial,
76
+ Scene,
77
+ Engine,
78
+ ArcRotateCamera,
79
+ DynamicTexture,
80
+ CubeTexture,
81
+ MeshBuilder,
82
+ Texture,
83
+ BabylonAnimation,
84
+ HemisphericLight,
85
+ DirectionalLight,
86
+ Element,
87
+ EventBroadcaster,
88
+ SceneManager,
89
+ PlacementAnimation,
90
+ BabylonHelper,
91
+ };
@@ -1,61 +1,61 @@
1
- {
2
- "groups": [
3
- {
4
- "title": "Release Notes",
5
- "pages": [
6
- {
7
- "title": "Releases",
8
- "source": "./doc/release-notes/releases.md",
9
- "children": [
10
- {
11
- "title": "Version 1.1.2",
12
- "source": "./doc/release-notes/version-details/1-1-2.md"
13
- },
14
- {
15
- "title": "Version 1.2.0",
16
- "source": "./doc/release-notes/version-details/1-2-0.md"
17
- },
18
- {
19
- "title": "Version 2.0.0",
20
- "source": "./doc/release-notes/version-details/2-0-0.md"
21
- },
22
- {
23
- "title": "Version 2.1.0",
24
- "source": "./doc/release-notes/version-details/2-1-0.md"
25
- }
26
- ]
27
- }
28
- ]
29
- },
30
- {
31
- "title": "Documentation",
32
- "pages": [
33
- {
34
- "title": "Specification",
35
- "source": "./doc/documentation/Specification.md"
36
- },
37
- {
38
- "title": "Parameters",
39
- "source": "./doc/documentation/Parameters.md"
40
- },
41
- {
42
- "title": "ViewerLights",
43
- "source": "./doc/ViewerLights.md"
44
- },
45
- {
46
- "title": "Paintables",
47
- "source": "./doc/documentation/Paintables.md"
48
- }
49
- ]
50
- },
51
- {
52
- "title": "Best Practice",
53
- "pages": [
54
- {
55
- "title": "How to change custom material properties",
56
- "source": "./doc/best-practice/Custom-material-properties.md"
57
- }
58
- ]
59
- }
60
- ]
61
- }
1
+ {
2
+ "groups": [
3
+ {
4
+ "title": "Release Notes",
5
+ "pages": [
6
+ {
7
+ "title": "Releases",
8
+ "source": "./doc/release-notes/releases.md",
9
+ "children": [
10
+ {
11
+ "title": "Version 1.1.2",
12
+ "source": "./doc/release-notes/version-details/1-1-2.md"
13
+ },
14
+ {
15
+ "title": "Version 1.2.0",
16
+ "source": "./doc/release-notes/version-details/1-2-0.md"
17
+ },
18
+ {
19
+ "title": "Version 2.0.0",
20
+ "source": "./doc/release-notes/version-details/2-0-0.md"
21
+ },
22
+ {
23
+ "title": "Version 2.1.0",
24
+ "source": "./doc/release-notes/version-details/2-1-0.md"
25
+ }
26
+ ]
27
+ }
28
+ ]
29
+ },
30
+ {
31
+ "title": "Documentation",
32
+ "pages": [
33
+ {
34
+ "title": "Specification",
35
+ "source": "./doc/documentation/Specification.md"
36
+ },
37
+ {
38
+ "title": "Parameters",
39
+ "source": "./doc/documentation/Parameters.md"
40
+ },
41
+ {
42
+ "title": "ViewerLights",
43
+ "source": "./doc/ViewerLights.md"
44
+ },
45
+ {
46
+ "title": "Paintables",
47
+ "source": "./doc/documentation/Paintables.md"
48
+ }
49
+ ]
50
+ },
51
+ {
52
+ "title": "Best Practice",
53
+ "pages": [
54
+ {
55
+ "title": "How to change custom material properties",
56
+ "source": "./doc/best-practice/Custom-material-properties.md"
57
+ }
58
+ ]
59
+ }
60
+ ]
61
+ }
package/src/tsconfig.json CHANGED
@@ -1,43 +1,43 @@
1
- {
2
- "buildOnSave": false,
3
- "compileOnSave": false,
4
- "exclude": [
5
- "dist"
6
- ],
7
- "compilerOptions": {
8
- "module": "es2015",
9
- "moduleResolution": "node",
10
- "target": "es5",
11
- "removeComments": false,
12
- "preserveConstEnums": true,
13
- "sourceMap": true,
14
- "skipLibCheck": true,
15
- "strict": true,
16
- "noFallthroughCasesInSwitch": true,
17
- "baseUrl": ".",
18
- "importHelpers": true,
19
- "resolveJsonModule": true,
20
- "lib": [
21
- "es6",
22
- "dom"
23
- ]
24
- },
25
- "typedocOptions": {
26
- "name": "Combeenation 3D viewer",
27
- "entryPoints": [
28
- "src/index.ts",
29
- "src/api/util/globalTypes.ts",
30
- ],
31
- "exclude": [
32
- "src/dev.ts",
33
- "assets/"
34
- ],
35
- "excludeInternal": true,
36
- "excludePrivate": true,
37
- "excludeProtected": true,
38
- "listInvalidSymbolLinks": true,
39
- "out": "docs",
40
- "pages": "src/pagesconfig.json",
41
- "theme": "doc/cbn-docs-theme"
42
- }
43
- }
1
+ {
2
+ "buildOnSave": false,
3
+ "compileOnSave": false,
4
+ "exclude": [
5
+ "dist"
6
+ ],
7
+ "compilerOptions": {
8
+ "module": "es2015",
9
+ "moduleResolution": "node",
10
+ "target": "es5",
11
+ "removeComments": false,
12
+ "preserveConstEnums": true,
13
+ "sourceMap": true,
14
+ "skipLibCheck": true,
15
+ "strict": true,
16
+ "noFallthroughCasesInSwitch": true,
17
+ "baseUrl": ".",
18
+ "importHelpers": true,
19
+ "resolveJsonModule": true,
20
+ "lib": [
21
+ "es6",
22
+ "dom"
23
+ ]
24
+ },
25
+ "typedocOptions": {
26
+ "name": "Combeenation 3D viewer",
27
+ "entryPoints": [
28
+ "src/index.ts",
29
+ "src/api/util/globalTypes.ts",
30
+ ],
31
+ "exclude": [
32
+ "src/dev.ts",
33
+ "assets/"
34
+ ],
35
+ "excludeInternal": true,
36
+ "excludePrivate": true,
37
+ "excludeProtected": true,
38
+ "listInvalidSymbolLinks": true,
39
+ "out": "docs",
40
+ "pages": "src/pagesconfig.json",
41
+ "theme": "doc/cbn-docs-theme"
42
+ }
43
+ }
@@ -1,10 +1,10 @@
1
- {
2
- "extends": "./tsconfig",
3
- "exclude": [
4
- ],
5
- "compilerOptions": {
6
- "declaration": true,
7
- "noEmit": false,
8
- "emitDeclarationOnly": true
9
- }
1
+ {
2
+ "extends": "./tsconfig",
3
+ "exclude": [
4
+ ],
5
+ "compilerOptions": {
6
+ "declaration": true,
7
+ "noEmit": false,
8
+ "emitDeclarationOnly": true
9
+ }
10
10
  }
package/src/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- /** @ignore **/
2
- declare let IS_PRODUCTION: boolean;
3
- declare let VERSION_INFORMATION: string;
4
-
1
+ /** @ignore **/
2
+ declare let IS_PRODUCTION: boolean;
3
+ declare let VERSION_INFORMATION: string;
4
+
File without changes