@combeenation/3d-viewer 7.1.3-alpha1 → 7.1.3-rc1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@combeenation/3d-viewer",
3
- "version": "7.1.3-alpha1",
3
+ "version": "7.1.3-rc1",
4
4
  "description": "Combeenation 3D Viewer",
5
5
  "homepage": "https://github.com/Combeenation/3d-viewer#readme",
6
6
  "bugs": {
@@ -36,7 +36,7 @@
36
36
  "generate-profile": "cross-env NODE_ENV='dev' webpack --config build/webpack.conf.js --profile --json > dist/webpack-stats.json",
37
37
  "lint": "eslint src/**",
38
38
  "pack": "npm run dist-cjs && npm pack",
39
- "pack-to-cjs": "npm run dist-cjs && npm pack --pack-destination=\"/mnt/c/Data/dev/custom-js/MichaelTest/TextureLoadEventsTest/\"",
39
+ "pack-to-cjs": "npm run dist-cjs && npm pack --pack-destination=\"/mnt/c/Data/dev/custom-js/MichaelTest/ViewerCtrlTests//\"",
40
40
  "pub-alpha": "npm run dist-cjs && npm publish --tag alpha",
41
41
  "pub-beta": "npm run dist-cjs && npm publish --tag beta",
42
42
  "pub-final": "npm run dist-cjs && npm publish",
@@ -136,13 +136,9 @@ export class Viewer extends EventBroadcaster {
136
136
  /**
137
137
  * Exports all modules which are exported by our index file.
138
138
  * Needed by the Combeenation viewer control in situations where the viewer is injected from external code.
139
- * See [Combeenation docs](https://docs.combeenation.com/) for more details.
139
+ * See [Combeenation docs](https://docs.combeenation.com/docs/3d-viewer-control-with-custom-js) for more details.
140
140
  */
141
- // TODO Now: Naming + use a link to a dedicated page once it exists.
142
- public static getViewerCtrlDependencies() {
143
- // TODO Now, to discuss: Are there any downsides in importing * from `index` & simply export everything here?
144
- // Pro: We don't have to adjust this if the viewer ctrl ever needs access to "more" (as long
145
- // the newly required dep is exported from `index`)...
141
+ public static getAllViewerModules() {
146
142
  return Index;
147
143
  }
148
144