@colijnit/configuratorcore 300.1.0 → 300.1.2

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/index.d.ts CHANGED
@@ -125,6 +125,7 @@ declare class VariationHelper extends VariationCacheHelper {
125
125
  clearCache(): void;
126
126
  loadPart(assetPath: string, parts: any[], obj: Object3D, usePbr?: boolean): Promise<void>;
127
127
  loadVariation(assetPath: string, parts: any[], obj: Object3D, usePbr?: boolean): Promise<void>;
128
+ getFileNameFromUrl(url: string): string;
128
129
  loadVariationFromLocalFile(id: string, file: any, obj: Object3D): Promise<void>;
129
130
  loadVariationForMaterial(gameObject: string): Promise<any>;
130
131
  loadVariationByAssetUrl(assetUrl: string): Promise<any>;
@@ -319,7 +320,6 @@ declare class SelectionUtils {
319
320
  }
320
321
 
321
322
  declare class ThreedUtils {
322
- clips: any;
323
323
  private _objectCache;
324
324
  clearCache(): void;
325
325
  download3DSource(fileName: string, setVisibleFalse?: boolean): Promise<THREE.Object3D>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/configuratorcore",
3
- "version": "300.1.0",
3
+ "version": "300.1.2",
4
4
  "description": "iOne configurator core specific for version 262",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,
@@ -15,12 +15,6 @@
15
15
  "@types/three": ">=0.178.1",
16
16
  "three": ">=0.178.0"
17
17
  },
18
- "dependencies": {
19
- "axios": "0.27.2",
20
- "jszip": "3.6.0",
21
- "rxjs": "~7.4.0",
22
- "tslib": "^2.3.0"
23
- },
24
18
  "module": "fesm2022/colijnit-configuratorcore.mjs",
25
19
  "typings": "index.d.ts",
26
20
  "exports": {
@@ -32,5 +26,8 @@
32
26
  "default": "./fesm2022/colijnit-configuratorcore.mjs"
33
27
  }
34
28
  },
35
- "sideEffects": false
29
+ "sideEffects": false,
30
+ "dependencies": {
31
+ "tslib": "^2.3.0"
32
+ }
36
33
  }