@colijnit/configurator 259.1.2 → 259.1.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.
Files changed (33) hide show
  1. package/app/components/selections/selections.component.d.ts +1 -1
  2. package/bundles/colijnit-configurator.umd.js +225 -135
  3. package/bundles/colijnit-configurator.umd.js.map +1 -1
  4. package/colijnit-configurator.metadata.json +1 -1
  5. package/esm2015/app/builder.js +81 -43
  6. package/esm2015/app/components/selections/selections.component.js +2 -2
  7. package/esm2015/app/services/configurator.service.js +15 -11
  8. package/esm2015/app/utils/object.utils.js +14 -12
  9. package/esm2015/helper/variation-helper.js +5 -9
  10. package/esm2015/utils/base-utils.js +9 -0
  11. package/esm2015/utils/image.utils.js +27 -29
  12. package/esm2015/utils/scene-utils.js +38 -15
  13. package/esm2015/utils/threed.utils.js +14 -12
  14. package/esm2015/utils/variation-utils.js +1 -1
  15. package/fesm2015/colijnit-configurator.js +196 -126
  16. package/fesm2015/colijnit-configurator.js.map +1 -1
  17. package/helper/variation-helper.d.ts +2 -3
  18. package/package.json +4 -4
  19. package/utils/base-utils.d.ts +4 -0
  20. package/utils/image.utils.d.ts +2 -1
  21. package/utils/threed.utils.d.ts +2 -2
  22. package/colijnit-configurator-259.1.1.tgz +0 -0
  23. package/configurator/index.html +0 -14
  24. package/configurator/main.js +0 -3555
  25. package/configurator/main.js.map +0 -1
  26. package/configurator/polyfills.js +0 -5683
  27. package/configurator/polyfills.js.map +0 -1
  28. package/configurator/runtime.js +0 -149
  29. package/configurator/runtime.js.map +0 -1
  30. package/configurator/styles.css +0 -48
  31. package/configurator/styles.css.map +0 -1
  32. package/configurator/vendor.js +0 -210213
  33. package/configurator/vendor.js.map +0 -1
@@ -10,8 +10,8 @@ declare class SelectionViewModel {
10
10
  export declare class SelectionsComponent {
11
11
  private _builder;
12
12
  set selections(value: Selection[]);
13
- selectionViewModels: SelectionViewModel[];
14
13
  selectionClick: EventEmitter<Selection>;
14
+ selectionViewModels: SelectionViewModel[];
15
15
  constructor(_builder: Builder);
16
16
  expandClicked(selectionViewModel: SelectionViewModel, mouseEvent: MouseEvent): void;
17
17
  selectSelection(selection: Selection, mouseEvent: MouseEvent): void;