kitchen-simulator 1.1.1-test.5 → 1.1.1-test.50

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 (198) hide show
  1. package/es/KitchenConfigurator.js +10 -17
  2. package/es/KitchenConfiguratorApp.js +16 -31
  3. package/es/actions/area-actions.js +1 -1
  4. package/es/actions/export.js +10 -10
  5. package/es/actions/groups-actions.js +1 -1
  6. package/es/actions/holes-actions.js +1 -1
  7. package/es/actions/items-actions.js +1 -1
  8. package/es/actions/lines-actions.js +1 -1
  9. package/es/actions/project-actions.js +1 -1
  10. package/es/actions/scene-actions.js +1 -1
  11. package/es/actions/vertices-actions.js +1 -1
  12. package/es/actions/viewer2d-actions.js +1 -1
  13. package/es/actions/viewer3d-actions.js +1 -1
  14. package/es/catalog/areas/area/planner-element.js +6 -6
  15. package/es/catalog/catalog.js +3 -3
  16. package/es/catalog/factories/area-factory-3d.js +1 -1
  17. package/es/catalog/factories/area-factory.js +3 -3
  18. package/es/catalog/factories/export.js +2 -2
  19. package/es/catalog/factories/wall-factory-3d.js +5 -5
  20. package/es/catalog/factories/wall-factory.js +6 -6
  21. package/es/catalog/holes/door-closet/planner-element.js +2 -2
  22. package/es/catalog/holes/door-exterior/planner-element.js +2 -2
  23. package/es/catalog/holes/door-interior/planner-element.js +2 -2
  24. package/es/catalog/holes/door-sliding/planner-element.js +2 -2
  25. package/es/catalog/holes/doorway-framed/planner-element.js +2 -2
  26. package/es/catalog/holes/export.js +13 -13
  27. package/es/catalog/holes/window-clear/planner-element.js +2 -2
  28. package/es/catalog/holes/window-cross/planner-element.js +2 -2
  29. package/es/catalog/holes/window-double-hung/planner-element.js +2 -2
  30. package/es/catalog/holes/window-vertical/planner-element.js +2 -2
  31. package/es/catalog/lines/wall/planner-element.js +10 -10
  32. package/es/catalog/molding/molding-dcm/planner-element.js +1 -1
  33. package/es/catalog/molding/molding-fbm/planner-element.js +1 -1
  34. package/es/catalog/molding/molding-lrm/planner-element.js +1 -1
  35. package/es/catalog/properties/export.js +9 -9
  36. package/es/catalog/properties/property-checkbox.js +64 -19
  37. package/es/catalog/properties/property-color.js +2 -2
  38. package/es/catalog/properties/property-enum.js +51 -9
  39. package/es/catalog/properties/property-lenght-measure.js +4 -4
  40. package/es/catalog/properties/property-length-measure.js +58 -9
  41. package/es/catalog/properties/property-length-measure_hole.js +4 -4
  42. package/es/catalog/properties/property-number.js +2 -2
  43. package/es/catalog/properties/property-read-only.js +2 -2
  44. package/es/catalog/properties/property-string.js +2 -2
  45. package/es/catalog/properties/property-toggle.js +2 -2
  46. package/es/catalog/utils/geom-utils.js +1 -1
  47. package/es/catalog/utils/item-loader.js +6 -6
  48. package/es/catalog/utils/load-obj.js +1 -1
  49. package/es/catalog/utils/mtl-loader.js +3 -2
  50. package/es/catalog/utils/obj-loader.js +3 -2
  51. package/es/class/area.js +2 -2
  52. package/es/class/export.js +10 -10
  53. package/es/class/group.js +4 -4
  54. package/es/class/guide.js +1 -1
  55. package/es/class/hole.js +5 -6
  56. package/es/class/item.js +10 -12
  57. package/es/class/layer.js +4 -4
  58. package/es/class/line.js +4 -4
  59. package/es/class/project.js +8 -8
  60. package/es/class/vertex.js +5 -5
  61. package/es/components/content.js +6 -5
  62. package/es/components/disclaimer/disclaimer.js +66 -86
  63. package/es/components/export.js +3 -3
  64. package/es/components/style/button.js +1 -1
  65. package/es/components/style/cancel-button.js +1 -1
  66. package/es/components/style/content-title.js +1 -1
  67. package/es/components/style/delete-button.js +2 -2
  68. package/es/components/style/export.js +14 -14
  69. package/es/components/style/form-color-input.js +1 -1
  70. package/es/components/style/form-number-input.js +32 -8
  71. package/es/components/style/form-number-input_2.js +2 -2
  72. package/es/components/style/form-select.js +56 -8
  73. package/es/components/style/form-slider.js +23 -7
  74. package/es/components/style/form-submit-button.js +2 -2
  75. package/es/components/style/form-text-input.js +31 -12
  76. package/es/components/viewer2d/area.js +5 -5
  77. package/es/components/viewer2d/export.js +14 -14
  78. package/es/components/viewer2d/grids/grids.js +1 -1
  79. package/es/components/viewer2d/group.js +2 -2
  80. package/es/components/viewer2d/item.js +5 -5
  81. package/es/components/viewer2d/layer.js +4 -4
  82. package/es/components/viewer2d/line.js +6 -9
  83. package/es/components/viewer2d/ruler.js +3 -3
  84. package/es/components/viewer2d/rulerX.js +1 -1
  85. package/es/components/viewer2d/rulerY.js +1 -1
  86. package/es/components/viewer2d/scene.js +2 -2
  87. package/es/components/viewer2d/snap.js +1 -1
  88. package/es/components/viewer2d/state.js +3 -3
  89. package/es/components/viewer2d/utils.js +38 -2
  90. package/es/components/viewer2d/vertex.js +1 -1
  91. package/es/components/viewer2d/viewer2d.js +9 -9
  92. package/es/components/viewer3d/front3D.js +2 -2
  93. package/es/components/viewer3d/grid-creator.js +2 -2
  94. package/es/components/viewer3d/grids/grid-horizontal-streak.js +1 -1
  95. package/es/components/viewer3d/grids/grid-streak.js +1 -1
  96. package/es/components/viewer3d/grids/grid-vertical-streak.js +1 -1
  97. package/es/components/viewer3d/libs/mtl-loader.js +2 -2
  98. package/es/components/viewer3d/libs/obj-loader.js +2 -2
  99. package/es/components/viewer3d/libs/orbit-controls.js +6 -5
  100. package/es/components/viewer3d/libs/pointer-lock-controls.js +5 -4
  101. package/es/components/viewer3d/pointer-lock-navigation.js +1 -1
  102. package/es/components/viewer3d/ruler-utils/itemRect.js +1 -1
  103. package/es/components/viewer3d/ruler-utils/layer3D.js +5 -5
  104. package/es/components/viewer3d/ruler-utils/ruler3D.js +1 -1
  105. package/es/components/viewer3d/ruler-utils/scene3D.js +3 -4
  106. package/es/components/viewer3d/ruler-utils/state3D.js +1 -1
  107. package/es/components/viewer3d/scene-creator.js +10 -10
  108. package/es/components/viewer3d/viewer3d-first-person.js +5 -5
  109. package/es/components/viewer3d/viewer3d.js +14 -16
  110. package/es/index.js +16 -15
  111. package/es/models.js +4 -4
  112. package/es/plugins/autosave.js +1 -1
  113. package/es/plugins/console-debugger.js +1 -1
  114. package/es/plugins/export.js +3 -3
  115. package/es/plugins/keyboard.js +2 -2
  116. package/es/reducers/areas-reducer.js +2 -2
  117. package/es/reducers/export.js +11 -11
  118. package/es/reducers/groups-reducer.js +3 -3
  119. package/es/reducers/holes-reducer.js +3 -3
  120. package/es/reducers/items-reducer.js +3 -6
  121. package/es/reducers/lines-reducer.js +3 -3
  122. package/es/reducers/project-reducer.js +3 -3
  123. package/es/reducers/reducer.js +3 -3
  124. package/es/reducers/scene-reducer.js +3 -3
  125. package/es/reducers/user-reducer.js +1 -2
  126. package/es/reducers/vertices-reducer.js +3 -3
  127. package/es/reducers/viewer2d-reducer.js +1 -1
  128. package/es/reducers/viewer3d-reducer.js +3 -3
  129. package/es/styles/export.js +1 -1
  130. package/es/translator/translator.js +3 -3
  131. package/es/utils/export.js +11 -11
  132. package/es/utils/geometry.js +5 -5
  133. package/es/utils/get-edges-of-subgraphs.js +2 -1
  134. package/es/utils/graph-cycles.js +2 -3
  135. package/es/utils/graph-inner-cycles.js +3 -3
  136. package/es/utils/graph.js +2 -1
  137. package/es/utils/helper.js +3 -71
  138. package/es/utils/id-broker.js +2 -2
  139. package/es/utils/molding.js +5 -5
  140. package/es/utils/snap-scene.js +2 -2
  141. package/es/utils/snap.js +1 -1
  142. package/lib/KitchenConfigurator.js +20 -27
  143. package/lib/KitchenConfiguratorApp.js +32 -46
  144. package/lib/catalog/areas/area/planner-element.js +7 -7
  145. package/lib/catalog/factories/wall-factory-3d.js +2 -2
  146. package/lib/catalog/factories/wall-factory.js +1 -1
  147. package/lib/catalog/holes/door-closet/planner-element.js +1 -1
  148. package/lib/catalog/holes/door-exterior/planner-element.js +1 -1
  149. package/lib/catalog/holes/door-interior/planner-element.js +1 -1
  150. package/lib/catalog/holes/door-sliding/planner-element.js +1 -1
  151. package/lib/catalog/holes/doorway-framed/planner-element.js +1 -1
  152. package/lib/catalog/holes/export.js +13 -13
  153. package/lib/catalog/holes/window-clear/planner-element.js +1 -1
  154. package/lib/catalog/holes/window-cross/planner-element.js +1 -1
  155. package/lib/catalog/holes/window-double-hung/planner-element.js +1 -1
  156. package/lib/catalog/holes/window-vertical/planner-element.js +1 -1
  157. package/lib/catalog/lines/wall/planner-element.js +11 -11
  158. package/lib/catalog/properties/property-checkbox.js +64 -19
  159. package/lib/catalog/properties/property-enum.js +49 -7
  160. package/lib/catalog/properties/property-length-measure.js +55 -6
  161. package/lib/catalog/utils/geom-utils.js +1 -1
  162. package/lib/catalog/utils/item-loader.js +4 -4
  163. package/lib/catalog/utils/load-obj.js +1 -1
  164. package/lib/catalog/utils/mtl-loader.js +7 -3
  165. package/lib/catalog/utils/obj-loader.js +7 -3
  166. package/lib/class/item.js +3 -5
  167. package/lib/class/line.js +1 -1
  168. package/lib/class/vertex.js +1 -1
  169. package/lib/components/content.js +1 -0
  170. package/lib/components/disclaimer/disclaimer.js +66 -86
  171. package/lib/components/style/form-number-input.js +30 -6
  172. package/lib/components/style/form-select.js +54 -8
  173. package/lib/components/style/form-slider.js +22 -6
  174. package/lib/components/style/form-text-input.js +30 -12
  175. package/lib/components/viewer2d/area.js +3 -3
  176. package/lib/components/viewer2d/line.js +3 -6
  177. package/lib/components/viewer2d/scene.js +1 -1
  178. package/lib/components/viewer2d/utils.js +37 -0
  179. package/lib/components/viewer2d/viewer2d.js +15 -15
  180. package/lib/components/viewer3d/libs/mtl-loader.js +6 -2
  181. package/lib/components/viewer3d/libs/obj-loader.js +6 -2
  182. package/lib/components/viewer3d/libs/orbit-controls.js +10 -5
  183. package/lib/components/viewer3d/libs/pointer-lock-controls.js +9 -4
  184. package/lib/components/viewer3d/ruler-utils/scene3D.js +1 -2
  185. package/lib/components/viewer3d/scene-creator.js +2 -2
  186. package/lib/components/viewer3d/viewer3d.js +5 -6
  187. package/lib/index.js +3 -1
  188. package/lib/reducers/user-reducer.js +0 -1
  189. package/lib/utils/get-edges-of-subgraphs.js +7 -1
  190. package/lib/utils/graph-cycles.js +9 -9
  191. package/lib/utils/graph.js +9 -3
  192. package/lib/utils/helper.js +2 -70
  193. package/lib/utils/id-broker.js +2 -2
  194. package/package.json +30 -61
  195. package/es/analytics/ga4.js +0 -191
  196. package/es/analytics/posthog.js +0 -60
  197. package/lib/analytics/ga4.js +0 -197
  198. package/lib/analytics/posthog.js +0 -68
@@ -30,21 +30,19 @@ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol"
30
30
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
31
31
  import axios from 'axios';
32
32
  import * as convert from 'convert-units';
33
- import { Plugins as PlannerPlugins } from './index';
34
- import * as PropTypes from 'prop-types';
33
+ import { Plugins as PlannerPlugins } from "./index";
34
+ import PropTypes from 'prop-types';
35
35
  import React, { Component } from 'react';
36
- import ReactGA from 'react-ga4';
37
- import { hotjar } from 'react-hotjar';
38
36
  import { connect } from 'react-redux';
39
37
  import { bindActionCreators } from 'redux';
40
- import * as constants from './constants';
41
- import { base64Decode, getPath } from './utils/helper';
42
- import actions from './actions/export';
43
- import Catalog from './catalog/catalog';
44
- import { Content } from './components/export';
45
- import Translator from './translator/translator';
46
- import { objectsMap } from './utils/objects-utils';
47
- import { VERSION } from './version';
38
+ import * as constants from "./constants";
39
+ import { base64Decode } from "./utils/helper";
40
+ import actions from "./actions/export";
41
+ import Catalog from "./catalog/catalog";
42
+ import { Content } from "./components/export";
43
+ import Translator from "./translator/translator";
44
+ import { objectsMap } from "./utils/objects-utils";
45
+ import { VERSION } from "./version";
48
46
  var toolbarW = 0;
49
47
  var wrapperStyle = {
50
48
  display: 'flex',
@@ -361,11 +359,6 @@ var KitchenConfigurator = /*#__PURE__*/function (_Component) {
361
359
  key: "componentDidMount",
362
360
  value: function componentDidMount() {
363
361
  var _this3 = this;
364
- ReactGA.send({
365
- hitType: 'pageview',
366
- page: getPath()
367
- });
368
- hotjar.event && hotjar.event("pageview:".concat(getPath()));
369
362
  window.addEventListener('beforeunload', this.handleBeforeUnload);
370
363
  console.log('context =>', this.context);
371
364
  window.forRedo = [];
@@ -19,27 +19,27 @@ function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
19
19
  function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
20
20
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
21
21
  import React, { useEffect } from 'react';
22
- import * as PropTypes from 'prop-types';
22
+ import PropTypes from 'prop-types';
23
23
  import { Provider } from 'react-redux';
24
24
  import { createStore } from 'redux';
25
- import * as Models from './models';
26
- import KitchenConfigurator from './KitchenConfigurator';
27
- import AppContext from './AppContext';
28
- import Catalog from './catalog/catalog';
25
+ import * as Models from "./models";
26
+ import KitchenConfigurator from "./KitchenConfigurator";
27
+ import AppContext from "./AppContext";
28
+ import Catalog from "./catalog/catalog";
29
29
  import { SVGLoader } from 'three/addons/loaders/SVGLoader';
30
- import { isEmpty } from 'src/utils/helper';
31
- import { TOE_KICK_MOLDING } from 'src/constants';
32
- import * as Areas from './catalog/areas/area/planner-element.jsx';
33
- import * as Lines from './catalog/lines/wall/planner-element.jsx';
34
- import * as Holes from './catalog/holes/export';
35
- import { render2DItem, render3DApplianceItem, render3DItem, render3DLightingItem } from './catalog/utils/item-loader';
36
- import { Models as PlannerModels, Plugins as PlannerPlugins, reducer as PlannerReducer } from 'src/index';
30
+ import { isEmpty } from "./utils/helper";
31
+ import { TOE_KICK_MOLDING } from "./constants";
32
+ import * as Areas from "./catalog/areas/area/planner-element";
33
+ import * as Lines from "./catalog/lines/wall/planner-element";
34
+ import * as Holes from "./catalog/holes/export";
35
+ import { render2DItem, render3DApplianceItem, render3DItem, render3DLightingItem } from "./catalog/utils/item-loader";
36
+ import { Models as PlannerModels, Plugins as PlannerPlugins, reducer as PlannerReducer } from "./index";
37
37
  import { Map } from 'immutable';
38
- import ReactGA from 'react-ga4';
39
- import { hotjar } from 'react-hotjar';
40
38
  import * as Sentry from '@sentry/react';
41
- import { loadProject, rename } from 'src/actions/project-actions';
42
- import exporter from 'src/catalog/utils/exporter';
39
+ import { loadProject, rename } from "./actions/project-actions";
40
+ import exporter from "./catalog/utils/exporter";
41
+ import * as THREE from 'three';
42
+ if (typeof window !== 'undefined') window.THREE = THREE;
43
43
 
44
44
  /* ============================== component ============================= */
45
45
  var MyCatalog = new Catalog();
@@ -47,14 +47,6 @@ var AppState = Map({
47
47
  KitchenConfigurator: new PlannerModels.State()
48
48
  });
49
49
  console.log('Version: 378.45-202509_DIY-364-mbox-crash');
50
- ReactGA.initialize([{
51
- trackingId: 'G-YK2JCC9F9G' // https://dev.addovisuals.com
52
- }, {
53
- trackingId: 'G-3Y44W0RY2E' // https://demo.kc.addovisuals.com/
54
- }, {
55
- trackingId: 'G-M2VD74KP44' // https://rtastore.diydesignspace.com/
56
- }]);
57
- hotjar.initialize('3010506', '6');
58
50
  isProduction && Sentry.init({
59
51
  dsn: process.env.SENTRY_DSN,
60
52
  environment: process.env.SENTRY_ENVIRONMENT
@@ -481,13 +473,6 @@ KitchenConfiguratorApp.propTypes = {
481
473
  dsn: PropTypes.string,
482
474
  environment: PropTypes.string
483
475
  }),
484
- analytics: PropTypes.shape({
485
- ga4Id: PropTypes.string,
486
- hotjar: PropTypes.shape({
487
- id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
488
- sv: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
489
- })
490
- }),
491
476
  onEvent: PropTypes.func,
492
477
  onSave: PropTypes.func,
493
478
  onError: PropTypes.func,
@@ -1,4 +1,4 @@
1
- import { SELECT_AREA, SET_FLOOR_STYLES } from '../constants';
1
+ import { SELECT_AREA, SET_FLOOR_STYLES } from "../constants";
2
2
  export function selectArea(layerID, areaID) {
3
3
  return {
4
4
  type: SELECT_AREA,
@@ -1,13 +1,13 @@
1
- import * as projectActions from './project-actions';
2
- import * as viewer2DActions from './viewer2d-actions';
3
- import * as viewer3DActions from './viewer3d-actions';
4
- import * as linesActions from './lines-actions';
5
- import * as holesActions from './holes-actions';
6
- import * as sceneActions from './scene-actions';
7
- import * as verticesActions from './vertices-actions';
8
- import * as itemsActions from './items-actions';
9
- import * as areaActions from './area-actions';
10
- import * as groupsActions from './groups-actions';
1
+ import * as projectActions from "./project-actions";
2
+ import * as viewer2DActions from "./viewer2d-actions";
3
+ import * as viewer3DActions from "./viewer3d-actions";
4
+ import * as linesActions from "./lines-actions";
5
+ import * as holesActions from "./holes-actions";
6
+ import * as sceneActions from "./scene-actions";
7
+ import * as verticesActions from "./vertices-actions";
8
+ import * as itemsActions from "./items-actions";
9
+ import * as areaActions from "./area-actions";
10
+ import * as groupsActions from "./groups-actions";
11
11
  export { projectActions, viewer2DActions, viewer3DActions, linesActions, holesActions, sceneActions, verticesActions, itemsActions, areaActions, groupsActions };
12
12
  export default {
13
13
  projectActions: projectActions,
@@ -1,4 +1,4 @@
1
- import { GROUP_ACTIONS } from '../constants';
1
+ import { GROUP_ACTIONS } from "../constants";
2
2
  export function addGroup() {
3
3
  return {
4
4
  type: GROUP_ACTIONS.ADD_GROUP
@@ -1,4 +1,4 @@
1
- import { SELECT_HOLE, SELECT_TOOL_DRAWING_HOLE, SELECT_TOOL_DRAWING_HOLE_3D, UPDATE_DRAWING_HOLE, UPDATE_DRAWING_HOLE_3D, END_DRAWING_HOLE, BEGIN_DRAGGING_HOLE, BEGIN_DRAGGING_HOLE_3D, UPDATE_DRAGGING_HOLE, END_DRAGGING_HOLE, END_DRAGGING_HOLE_3D, END_CREATING_HOLE, UPDATE_POPUP_OPEN, UPDATE_DRAGGING_HOLE_CHANGED, UPDATE_DRAGGING_HOLE_RULER_CHANGED, END_DRAWING_HOLE_3D } from '../constants';
1
+ import { BEGIN_DRAGGING_HOLE, BEGIN_DRAGGING_HOLE_3D, END_CREATING_HOLE, END_DRAGGING_HOLE, END_DRAGGING_HOLE_3D, END_DRAWING_HOLE, END_DRAWING_HOLE_3D, SELECT_HOLE, SELECT_TOOL_DRAWING_HOLE, SELECT_TOOL_DRAWING_HOLE_3D, UPDATE_DRAGGING_HOLE, UPDATE_DRAGGING_HOLE_CHANGED, UPDATE_DRAGGING_HOLE_RULER_CHANGED, UPDATE_DRAWING_HOLE, UPDATE_DRAWING_HOLE_3D, UPDATE_POPUP_OPEN } from "../constants";
2
2
  export function endCreatingHole() {
3
3
  return {
4
4
  type: END_CREATING_HOLE
@@ -1,4 +1,4 @@
1
- import { TOGGLE_LOADING_CABINET, SELECT_ITEM, SELECT_TOOL_DRAWING_ITEM, UPDATE_DRAWING_ITEM, END_DRAWING_ITEM, BEGIN_DRAGGING_ITEM, BEGIN_DRAGGING_ITEM_3D, UPDATE_DRAGGING_ITEM, UPDATE_DRAGGING_ITEM_3DX, UPDATE_DRAGGING_ITEM_3DY, END_DRAGGING_ITEM, END_DRAGGING_ITEM_3D, UPDATE_DRAGGING_ITEM_CHANGED, UPDATE_ROTATING_ITEM_CHANGED, BEGIN_ROTATING_ITEM, BEGIN_ROTATING_ITEM_3D, UPDATE_ROTATING_ITEM, UPDATE_ROTATING, END_ROTATING_ITEM, END_ROTATING_ITEM_3D, REPLACE_SUBMODULE, ANIMATE_OBJECT, REMOVE_REPLACE_SUBMODULE, ITEM_MOVE_UP, SELECT_TOOL_DRAWING_ITEM_3D, SET_DOOR_STYLE, SET_HANDLE_MATERIAL, SET_INITIAL_DOOR_STYLE, SET_DISTANT, SET_DOOR_HANDLE, SET_WALL_COLOR, END_CREATING_CABINET, UPDATE_POPUP_OPEN, SET_MODELLING, SET_COUNTER_TOP, SET_BACKSPLASH, SET_BACKSPLASH_VISIBLE, SET_APPLIANCE_MATERIAL, DUPLICATE_SELECTED, EDIT_WIDTH, END_LOADING, STORE_DIST_ARRAY, SET_MOLDING, UPDATE_MOLDING, VALIDATE_ITEM_POSTIONS, REPLACE_ITEM, SET_MOVE_STATUS, SET_ROTATE_STATUS } from '../constants';
1
+ import { ANIMATE_OBJECT, BEGIN_DRAGGING_ITEM, BEGIN_DRAGGING_ITEM_3D, BEGIN_ROTATING_ITEM, BEGIN_ROTATING_ITEM_3D, DUPLICATE_SELECTED, EDIT_WIDTH, END_CREATING_CABINET, END_DRAGGING_ITEM, END_DRAGGING_ITEM_3D, END_DRAWING_ITEM, END_LOADING, END_ROTATING_ITEM, END_ROTATING_ITEM_3D, ITEM_MOVE_UP, REMOVE_REPLACE_SUBMODULE, REPLACE_ITEM, REPLACE_SUBMODULE, SELECT_ITEM, SELECT_TOOL_DRAWING_ITEM, SELECT_TOOL_DRAWING_ITEM_3D, SET_APPLIANCE_MATERIAL, SET_BACKSPLASH, SET_BACKSPLASH_VISIBLE, SET_COUNTER_TOP, SET_DOOR_HANDLE, SET_DOOR_STYLE, SET_HANDLE_MATERIAL, SET_INITIAL_DOOR_STYLE, SET_MODELLING, SET_MOLDING, SET_MOVE_STATUS, SET_ROTATE_STATUS, SET_WALL_COLOR, STORE_DIST_ARRAY, TOGGLE_LOADING_CABINET, UPDATE_DRAGGING_ITEM, UPDATE_DRAGGING_ITEM_3DX, UPDATE_DRAGGING_ITEM_3DY, UPDATE_DRAGGING_ITEM_CHANGED, UPDATE_DRAWING_ITEM, UPDATE_MOLDING, UPDATE_POPUP_OPEN, UPDATE_ROTATING_ITEM, UPDATE_ROTATING_ITEM_CHANGED, VALIDATE_ITEM_POSTIONS } from "../constants";
2
2
  export function storeDistArray(layerID, itemID, distArray) {
3
3
  return {
4
4
  type: STORE_DIST_ARRAY,
@@ -1,4 +1,4 @@
1
- import { SELECT_LINE, SELECT_TOOL_DRAWING_LINE, BEGIN_DRAWING_LINE, UPDATE_DRAWING_LINE, END_DRAWING_LINE, BEGIN_DRAGGING_LINE, UPDATE_DRAGGING_LINE, END_DRAGGING_LINE, STOP_DRAWING_LINE, SET_RELATED_LINE } from '../constants';
1
+ import { BEGIN_DRAGGING_LINE, BEGIN_DRAWING_LINE, END_DRAGGING_LINE, END_DRAWING_LINE, SELECT_LINE, SELECT_TOOL_DRAWING_LINE, SET_RELATED_LINE, STOP_DRAWING_LINE, UPDATE_DRAGGING_LINE, UPDATE_DRAWING_LINE } from "../constants";
2
2
  export function selectLine(layerID, lineID) {
3
3
  return {
4
4
  type: SELECT_LINE,
@@ -1,4 +1,4 @@
1
- import { NEW_PROJECT, LOAD_PROJECT, SAVE_PROJECT, OPEN_CATALOG, SELECT_TOOL_EDIT, UNSELECT_ALL, SET_PROPERTIES, SET_ITEMS_ATTRIBUTES, SET_LINES_ATTRIBUTES, SET_HOLES_ATTRIBUTES, REMOVE, INVERT, UNDO, REDO, UNCREATE, PROJECT_RE_NAME, RECREATE, ROLLBACK, OPEN_PROJECT_CONFIGURATOR, SET_PROJECT_PROPERTIES, SET_PROJECT_ID, INIT_CATALOG, UPDATE_MOUSE_COORDS, UPDATE_ZOOM_SCALE, TOGGLE_SNAP, CHANGE_CATALOG_PAGE, GO_BACK_TO_CATALOG_PAGE, THROW_ERROR, THROW_WARNING, COPY_PROPERTIES, PASTE_PROPERTIES, PUSH_LAST_SELECTED_CATALOG_ELEMENT_TO_HISTORY, ALTERATE_STATE, SET_MODE, ADD_HORIZONTAL_GUIDE, ADD_VERTICAL_GUIDE, ADD_CIRCULAR_GUIDE, REMOVE_HORIZONTAL_GUIDE, REMOVE_VERTICAL_GUIDE, REMOVE_CIRCULAR_GUIDE, REMOVE_DRAWING_SUPPORT, SELECT_ALL, SET_STATE_PROPERTIES, SHIFT2DOFF, SHIFT2DON, SET_IS_HELP, SET_IS_CABINET_DRAWING } from '../constants';
1
+ import { ADD_CIRCULAR_GUIDE, ADD_HORIZONTAL_GUIDE, ADD_VERTICAL_GUIDE, ALTERATE_STATE, CHANGE_CATALOG_PAGE, COPY_PROPERTIES, GO_BACK_TO_CATALOG_PAGE, INIT_CATALOG, LOAD_PROJECT, NEW_PROJECT, OPEN_CATALOG, OPEN_PROJECT_CONFIGURATOR, PASTE_PROPERTIES, PROJECT_RE_NAME, PUSH_LAST_SELECTED_CATALOG_ELEMENT_TO_HISTORY, RECREATE, REDO, REMOVE, REMOVE_CIRCULAR_GUIDE, REMOVE_DRAWING_SUPPORT, REMOVE_HORIZONTAL_GUIDE, REMOVE_VERTICAL_GUIDE, ROLLBACK, SAVE_PROJECT, SELECT_ALL, SELECT_TOOL_EDIT, SET_HOLES_ATTRIBUTES, SET_IS_CABINET_DRAWING, SET_IS_HELP, SET_ITEMS_ATTRIBUTES, SET_LINES_ATTRIBUTES, SET_MODE, SET_PROJECT_ID, SET_PROJECT_PROPERTIES, SET_PROPERTIES, SET_STATE_PROPERTIES, SHIFT2DOFF, SHIFT2DON, THROW_ERROR, THROW_WARNING, TOGGLE_SNAP, UNCREATE, UNDO, UNSELECT_ALL, UPDATE_MOUSE_COORDS, UPDATE_ZOOM_SCALE } from "../constants";
2
2
  export function setIsHelp(isHelp) {
3
3
  return {
4
4
  type: SET_IS_HELP,
@@ -1,4 +1,4 @@
1
- import { SELECT_LAYER, ADD_LAYER, SET_LAYER_PROPERTIES, REMOVE_LAYER, UPDATE_MOVING_STATE } from '../constants';
1
+ import { ADD_LAYER, REMOVE_LAYER, SELECT_LAYER, SET_LAYER_PROPERTIES, UPDATE_MOVING_STATE } from "../constants";
2
2
  export function selectLayer(layerID) {
3
3
  return {
4
4
  type: SELECT_LAYER,
@@ -1,4 +1,4 @@
1
- import { BEGIN_DRAGGING_VERTEX, UPDATE_DRAGGING_VERTEX, END_DRAGGING_VERTEX } from '../constants';
1
+ import { BEGIN_DRAGGING_VERTEX, END_DRAGGING_VERTEX, UPDATE_DRAGGING_VERTEX } from "../constants";
2
2
  export function beginDraggingVertex(layerID, vertexID, x, y, snapMask) {
3
3
  return {
4
4
  type: BEGIN_DRAGGING_VERTEX,
@@ -1,4 +1,4 @@
1
- import { UPDATE_CEIL_HEIGHT_UNIT, UPDATE_CEIL_HEIGHT, UPDATE_2D_CAMERA, SELECT_TOOL_PAN, SELECT_TOOL_ZOOM_IN, SELECT_TOOL_ZOOM_OUT, CHANGE_WALL_LENGTH_MEASURE, CHANGE_BASE_CABINET_MEASURE, CHANGE_WALL_CABINET_MEASURE, CHANGE_WINDOW_DOOR_MEASURE } from '../constants';
1
+ import { CHANGE_BASE_CABINET_MEASURE, CHANGE_WALL_CABINET_MEASURE, CHANGE_WALL_LENGTH_MEASURE, CHANGE_WINDOW_DOOR_MEASURE, SELECT_TOOL_PAN, SELECT_TOOL_ZOOM_IN, SELECT_TOOL_ZOOM_OUT, UPDATE_2D_CAMERA, UPDATE_CEIL_HEIGHT, UPDATE_CEIL_HEIGHT_UNIT } from "../constants";
2
2
  export function updateCeilHeight(value) {
3
3
  return {
4
4
  type: UPDATE_CEIL_HEIGHT,
@@ -1,4 +1,4 @@
1
- import { UPDATE_3D_CEIL_HEIGHT_UNIT, UPDATE_3D_CEIL_HEIGHT, SELECT_TOOL_3D_VIEW, SELECT_TOOL_3D_FIRST_PERSON } from '../constants';
1
+ import { SELECT_TOOL_3D_FIRST_PERSON, SELECT_TOOL_3D_VIEW, UPDATE_3D_CEIL_HEIGHT, UPDATE_3D_CEIL_HEIGHT_UNIT } from "../constants";
2
2
  export function selectTool3DView() {
3
3
  return {
4
4
  type: SELECT_TOOL_3D_VIEW
@@ -1,4 +1,4 @@
1
- import { ElementsFactories } from 'KitchenConfigurator';
1
+ import { ElementsFactories } from "../../..";
2
2
  var info = {
3
3
  title: 'area',
4
4
  tag: ['area'],
@@ -8,31 +8,31 @@ var info = {
8
8
  var textures = {
9
9
  parquet: {
10
10
  name: 'Parquet',
11
- uri: require('./textures/parquet.jpg'),
11
+ uri: require("./textures/parquet.jpg"),
12
12
  lengthRepeatScale: 0.004,
13
13
  heightRepeatScale: 0.004
14
14
  },
15
15
  tile1: {
16
16
  name: 'Tile1',
17
- uri: require('./textures/tile1.jpg'),
17
+ uri: require("./textures/tile1.jpg"),
18
18
  lengthRepeatScale: 0.01,
19
19
  heightRepeatScale: 0.01
20
20
  },
21
21
  ceramic: {
22
22
  name: 'Ceramic Tile',
23
- uri: require('./textures/ceramic-tile.jpg'),
23
+ uri: require("./textures/ceramic-tile.jpg"),
24
24
  lengthRepeatScale: 0.02,
25
25
  heightRepeatScale: 0.02
26
26
  },
27
27
  strand_porcelain: {
28
28
  name: 'Strand Porcelain Tile',
29
- uri: require('./textures/strand-porcelain.jpg'),
29
+ uri: require("./textures/strand-porcelain.jpg"),
30
30
  lengthRepeatScale: 0.02,
31
31
  heightRepeatScale: 0.02
32
32
  },
33
33
  grass: {
34
34
  name: 'Grass',
35
- uri: require('./textures/grass.jpg'),
35
+ uri: require("./textures/grass.jpg"),
36
36
  lengthRepeatScale: 0.01,
37
37
  heightRepeatScale: 0.01
38
38
  }
@@ -10,9 +10,9 @@ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o =
10
10
  function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
11
11
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
12
12
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
13
- import { PropertyColor, PropertyEnum, PropertyString, PropertyNumber, PropertyLengthMeasure, PropertyToggle, PropertyCheckbox, PropertyHidden, PropertyReadOnly } from './properties/export';
14
- import { UNIT_CENTIMETER, UNIT_INCH } from '../constants';
15
- import { returnReplaceableDeepSearchType } from '../components/viewer2d/utils';
13
+ import { PropertyColor, PropertyEnum, PropertyString, PropertyNumber, PropertyLengthMeasure, PropertyToggle, PropertyCheckbox, PropertyHidden, PropertyReadOnly } from "./properties/export";
14
+ import { UNIT_CENTIMETER, UNIT_INCH } from "../constants";
15
+ import { returnReplaceableDeepSearchType } from "../components/viewer2d/utils";
16
16
  var Catalog = /*#__PURE__*/function () {
17
17
  function Catalog() {
18
18
  var unit = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : UNIT_CENTIMETER;
@@ -1,6 +1,6 @@
1
1
  import * as Three from 'three';
2
2
  import { Box3, Mesh, MeshBasicMaterial, MeshPhysicalMaterial, RepeatWrapping, Shape, TextureLoader, Vector2 } from 'three';
3
- import * as SharedStyle from '../../shared-style';
3
+ import * as SharedStyle from "../../shared-style";
4
4
  import { RGBELoader } from 'three/examples/jsm/loaders/RGBELoader';
5
5
  var params = {
6
6
  envMap: 'HDR',
@@ -5,9 +5,9 @@ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object
5
5
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
6
6
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
7
  import React from 'react';
8
- import { createArea, updatedArea } from './area-factory-3d';
9
- import * as SharedStyle from '../../shared-style';
10
- import Translator from '../../translator/translator';
8
+ import { createArea, updatedArea } from "./area-factory-3d";
9
+ import * as SharedStyle from "../../shared-style";
10
+ import Translator from "../../translator/translator";
11
11
  var translator = new Translator();
12
12
  export default function AreaFactory(name, info, textures) {
13
13
  var areaElement = {
@@ -1,5 +1,5 @@
1
- import WallFactory from './wall-factory';
2
- import AreaFactory from './area-factory';
1
+ import WallFactory from "./wall-factory";
2
+ import AreaFactory from "./area-factory";
3
3
  export { WallFactory, AreaFactory };
4
4
  export default {
5
5
  WallFactory: WallFactory,
@@ -1,11 +1,11 @@
1
1
  import * as Three from 'three';
2
2
  import { BoxGeometry, Group, Mesh, MeshBasicMaterial, MeshStandardMaterial, RepeatWrapping, TextureLoader, Vector2 } from 'three';
3
- import { verticesDistance } from 'src/utils/geometry';
4
- import { isElevationView } from 'src/utils/helper';
5
- import * as SharedStyle from '../../shared-style';
6
- import { LINE_THICKNESS, UNIT_CENTIMETER } from '../../constants';
3
+ import { verticesDistance } from "../../utils/geometry";
4
+ import { isElevationView } from "../../utils/helper";
5
+ import * as SharedStyle from "../../shared-style";
6
+ import { LINE_THICKNESS, UNIT_CENTIMETER } from "../../constants";
7
7
  import convert from 'convert-units';
8
- import ThreeBSP from '../../utils/threeCSG.es6';
8
+ import ThreeBSP from "../../utils/threeCSG.es6";
9
9
  var params = {
10
10
  envMap: 'HDR',
11
11
  roughness: 0.1,
@@ -1,11 +1,11 @@
1
1
  import React from 'react';
2
- import { buildWall, updatedWall } from './wall-factory-3d';
3
- import * as SharedStyle from '../../shared-style';
4
- import * as Geometry from '../../utils/geometry';
5
- import Translator from '../../translator/translator';
6
- import { LINE_THICKNESS } from 'src/constants';
2
+ import { buildWall, updatedWall } from "./wall-factory-3d";
3
+ import * as SharedStyle from "../../shared-style";
4
+ import * as Geometry from "../../utils/geometry";
5
+ import Translator from "../../translator/translator";
6
+ import { LINE_THICKNESS } from "../../constants";
7
7
  // import Line from 'src/class/line';
8
- import Line from '../../class/line';
8
+ import Line from "../../class/line";
9
9
  var epsilon = 20;
10
10
  var STYLE_TEXT = {
11
11
  textAnchor: 'middle'
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF } from '../../utils/load-obj';
4
- import { OBJTYPE_MESH } from 'src/constants';
3
+ import { loadGLTF } from "../../utils/load-obj";
4
+ import { OBJTYPE_MESH } from "../../../constants";
5
5
  var cached3DDoor = null;
6
6
  var STYLE_HOLE_BASE = {
7
7
  stroke: 'rgb(73, 73, 73)',
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF } from '../../utils/load-obj';
3
+ import { loadGLTF } from "../../utils/load-obj";
4
4
  import path from 'path';
5
- import { OBJTYPE_MESH } from 'src/constants';
5
+ import { OBJTYPE_MESH } from "../../../constants";
6
6
  var cached3DDoor = null;
7
7
  var STYLE_HOLE_BASE = {
8
8
  stroke: 'rgb(73, 73, 73)',
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF } from '../../utils/load-obj';
3
+ import { loadGLTF } from "../../utils/load-obj";
4
4
  import path from 'path';
5
- import { OBJTYPE_MESH } from 'src/constants';
5
+ import { OBJTYPE_MESH } from "../../../constants";
6
6
  var cached3DDoor = null;
7
7
  var STYLE_HOLE_BASE = {
8
8
  stroke: 'rgb(73, 73, 73)',
@@ -4,8 +4,8 @@ import * as Three from 'three';
4
4
  // const grey = new Three.MeshLambertMaterial({color: 0x3f3f3f});
5
5
  // const white = new Three.MeshLambertMaterial({color: 0xffffff, transparent:true, opacity:0.5});
6
6
  // const black = new Three.MeshLambertMaterial({color: 0x000000});
7
- import { loadGLTF } from '../../utils/load-obj';
8
- import { OBJTYPE_MESH } from 'src/constants';
7
+ import { loadGLTF } from "../../utils/load-obj";
8
+ import { OBJTYPE_MESH } from "../../../constants";
9
9
  var cached3DDoor = null;
10
10
  export default {
11
11
  name: 'Sliding',
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF } from '../../utils/load-obj';
4
- import { OBJTYPE_MESH } from 'src/constants';
3
+ import { loadGLTF } from "../../utils/load-obj";
4
+ import { OBJTYPE_MESH } from "../../../constants";
5
5
  var cached3DDoor = null;
6
6
  var STYLE_STR0 = {
7
7
  fill: 'rgb(185, 185, 185)',
@@ -1,13 +1,13 @@
1
- export { default as doorCloset } from './door-closet/planner-element.jsx';
2
- export { default as doorDouble } from './door-double/planner-element.jsx';
3
- export { default as doorExterior } from './door-exterior/planner-element.jsx';
4
- export { default as doorInterior } from './door-interior/planner-element.jsx';
5
- export { default as doorPanic } from './door-panic/planner-element.jsx';
6
- export { default as doorPanicDouble } from './door-panic-double/planner-element.jsx';
7
- export { default as doorSliding } from './door-sliding/planner-element.jsx';
8
- export { default as doorwayFramed } from './doorway-framed/planner-element.jsx';
9
- export { default as doorwayFrameless } from './doorway-frameless/planner-element.jsx';
10
- export { default as windowClear } from './window-clear/planner-element.jsx';
11
- export { default as windowCross } from './window-cross/planner-element.jsx';
12
- export { default as windowDoubleHung } from './window-double-hung/planner-element.jsx';
13
- export { default as windowVertical } from './window-vertical/planner-element.jsx';
1
+ export { default as doorCloset } from "./door-closet/planner-element.js";
2
+ export { default as doorDouble } from "./door-double/planner-element.js";
3
+ export { default as doorExterior } from "./door-exterior/planner-element.js";
4
+ export { default as doorInterior } from "./door-interior/planner-element.js";
5
+ export { default as doorPanic } from "./door-panic/planner-element.js";
6
+ export { default as doorPanicDouble } from "./door-panic-double/planner-element.js";
7
+ export { default as doorSliding } from "./door-sliding/planner-element.js";
8
+ export { default as doorwayFramed } from "./doorway-framed/planner-element.js";
9
+ export { default as doorwayFrameless } from "./doorway-frameless/planner-element.js";
10
+ export { default as windowClear } from "./window-clear/planner-element.js";
11
+ export { default as windowCross } from "./window-cross/planner-element.js";
12
+ export { default as windowDoubleHung } from "./window-double-hung/planner-element.js";
13
+ export { default as windowVertical } from "./window-vertical/planner-element.js";
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF, scaleObject } from '../../utils/load-obj';
4
- import { OBJTYPE_MESH } from 'src/constants';
3
+ import { loadGLTF, scaleObject } from "../../utils/load-obj";
4
+ import { OBJTYPE_MESH } from "../../../constants";
5
5
  var cached3DWindow = null;
6
6
  export default {
7
7
  name: 'Window',
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF, scaleObject } from '../../utils/load-obj';
4
- import { OBJTYPE_MESH } from 'src/constants';
3
+ import { loadGLTF, scaleObject } from "../../utils/load-obj";
4
+ import { OBJTYPE_MESH } from "../../../constants";
5
5
  var cached3DWindow = null;
6
6
  export default {
7
7
  name: 'Cross Window',
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF, scaleObject } from '../../utils/load-obj';
4
- import { OBJTYPE_MESH } from 'src/constants';
3
+ import { loadGLTF, scaleObject } from "../../utils/load-obj";
4
+ import { OBJTYPE_MESH } from "../../../constants";
5
5
  var cached3DWindow = null;
6
6
  export default {
7
7
  name: 'Double Hung Window',
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF, scaleObject } from '../../utils/load-obj';
4
- import { OBJTYPE_MESH } from 'src/constants';
3
+ import { loadGLTF, scaleObject } from "../../utils/load-obj";
4
+ import { OBJTYPE_MESH } from "../../../constants";
5
5
  var cached3DWindow = null;
6
6
  var STYLE_HOLE_BASE = {
7
7
  stroke: '#000',
@@ -1,9 +1,9 @@
1
- import { ElementsFactories } from 'KitchenConfigurator';
1
+ import { ElementsFactories } from "../../..";
2
2
  var info = {
3
3
  title: 'wall',
4
4
  tag: ['wall'],
5
5
  description: 'Wall with bricks or painted',
6
- image: require('./wall.png'),
6
+ image: require("./wall.png"),
7
7
  visibility: {
8
8
  catalog: true,
9
9
  layerElementsVisible: true
@@ -12,11 +12,11 @@ var info = {
12
12
  var textures = {
13
13
  plaster: {
14
14
  name: 'Plaster',
15
- uri: require('./textures/plaster.jpg'),
15
+ uri: require("./textures/plaster.jpg"),
16
16
  lengthRepeatScale: 0.005,
17
17
  heightRepeatScale: 0.005,
18
18
  normal: {
19
- uri: require('./textures/plaster-normal.jpg'),
19
+ uri: require("./textures/plaster-normal.jpg"),
20
20
  lengthRepeatScale: 0.005,
21
21
  heightRepeatScale: 0.005,
22
22
  normalScaleX: 0.4,
@@ -26,11 +26,11 @@ var textures = {
26
26
  },
27
27
  bricks: {
28
28
  name: 'Bricks',
29
- uri: require('./textures/bricks.jpg'),
29
+ uri: require("./textures/bricks.jpg"),
30
30
  lengthRepeatScale: 0.009,
31
31
  heightRepeatScale: 0.009,
32
32
  normal: {
33
- uri: require('./textures/bricks-normal.jpg'),
33
+ uri: require("./textures/bricks-normal.jpg"),
34
34
  lengthRepeatScale: 0.009,
35
35
  heightRepeatScale: 0.009,
36
36
  normalScaleX: 0.4,
@@ -40,11 +40,11 @@ var textures = {
40
40
  },
41
41
  painted: {
42
42
  name: 'Painted',
43
- uri: require('./textures/painted.jpg'),
43
+ uri: require("./textures/painted.jpg"),
44
44
  lengthRepeatScale: 0.005,
45
45
  heightRepeatScale: 0.005,
46
46
  normal: {
47
- uri: require('./textures/painted-normal.jpg'),
47
+ uri: require("./textures/painted-normal.jpg"),
48
48
  lengthRepeatScale: 0.005,
49
49
  heightRepeatScale: 0.005,
50
50
  normalScaleX: 0.4,
@@ -54,11 +54,11 @@ var textures = {
54
54
  },
55
55
  morden: {
56
56
  name: 'Morden',
57
- uri: require('./textures/morden.jpg'),
57
+ uri: require("./textures/morden.jpg"),
58
58
  lengthRepeatScale: 0.005,
59
59
  heightRepeatScale: 0.005,
60
60
  normal: {
61
- uri: require('./textures/morden-normal.jpg'),
61
+ uri: require("./textures/morden-normal.jpg"),
62
62
  lengthRepeatScale: 0.005,
63
63
  heightRepeatScale: 0.005,
64
64
  normalScaleX: 0.4,
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF } from '../../utils/load-obj';
3
+ import { loadGLTF } from "../../utils/load-obj";
4
4
  var cached3DMolding = null;
5
5
  export default {
6
6
  name: 'Dcm',
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF } from '../../utils/load-obj';
3
+ import { loadGLTF } from "../../utils/load-obj";
4
4
  var cached3DMolding = null;
5
5
  export default {
6
6
  name: 'Fbm',
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import * as Three from 'three';
3
- import { loadGLTF } from '../../utils/load-obj';
3
+ import { loadGLTF } from "../../utils/load-obj";
4
4
  var cached3DMolding = null;
5
5
  export default {
6
6
  name: 'Lrm',
@@ -1,12 +1,12 @@
1
- import PropertyColor from './property-color';
2
- import PropertyEnum from './property-enum';
3
- import PropertyString from './property-string';
4
- import PropertyNumber from './property-number';
5
- import PropertyLengthMeasure from './property-length-measure';
6
- import PropertyToggle from './property-toggle';
7
- import PropertyCheckbox from './property-checkbox';
8
- import PropertyHidden from './property-hidden';
9
- import PropertyReadOnly from './property-read-only';
1
+ import PropertyColor from "./property-color";
2
+ import PropertyEnum from "./property-enum";
3
+ import PropertyString from "./property-string";
4
+ import PropertyNumber from "./property-number";
5
+ import PropertyLengthMeasure from "./property-length-measure";
6
+ import PropertyToggle from "./property-toggle";
7
+ import PropertyCheckbox from "./property-checkbox";
8
+ import PropertyHidden from "./property-hidden";
9
+ import PropertyReadOnly from "./property-read-only";
10
10
  export { PropertyColor, PropertyEnum, PropertyString, PropertyNumber, PropertyLengthMeasure, PropertyToggle, PropertyCheckbox, PropertyHidden, PropertyReadOnly };
11
11
  export default {
12
12
  PropertyColor: PropertyColor,