kitchen-simulator 4.0.2-react-18 → 4.0.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.
Files changed (188) hide show
  1. package/README.md +3 -0
  2. package/es/AppContext.js +1 -1
  3. package/es/LiteKitchenConfigurator.js +165 -107
  4. package/es/LiteRenderer.js +161 -129
  5. package/es/actions/export.js +25 -12
  6. package/es/assets/gltf/door_sliding.bin +0 -0
  7. package/es/assets/img/png/helper/video_preview_start.png +0 -0
  8. package/es/assets/img/svg/bottombar/elevation.svg +12 -5
  9. package/es/catalog/catalog.js +21 -5
  10. package/es/catalog/holes/window-clear/planner-element.js +2 -2
  11. package/es/catalog/properties/export.js +21 -0
  12. package/es/catalog/properties/property-checkbox.js +68 -0
  13. package/es/catalog/properties/property-color.js +39 -0
  14. package/es/catalog/properties/property-enum.js +50 -0
  15. package/es/catalog/properties/property-hidden.js +19 -0
  16. package/es/catalog/properties/property-lenght-measure.js +100 -0
  17. package/es/catalog/properties/property-length-measure.js +84 -0
  18. package/es/catalog/properties/property-length-measure_hole.js +100 -0
  19. package/es/catalog/properties/property-number.js +48 -0
  20. package/es/catalog/properties/property-read-only.js +26 -0
  21. package/es/catalog/properties/property-string.js +48 -0
  22. package/es/catalog/properties/property-toggle.js +39 -0
  23. package/es/catalog/properties/shared-property-style.js +14 -0
  24. package/es/catalog/utils/exporter.js +1 -0
  25. package/es/catalog/utils/item-loader.js +18 -12
  26. package/es/class/hole.js +0 -2
  27. package/es/class/item.js +95 -69
  28. package/es/class/line.js +4 -8
  29. package/es/class/project.js +93 -80
  30. package/es/components/content.js +5 -93
  31. package/es/components/export.js +4 -6
  32. package/es/components/style/button.js +106 -0
  33. package/es/components/style/cancel-button.js +21 -0
  34. package/es/components/style/content-container.js +30 -0
  35. package/es/components/style/content-title.js +25 -0
  36. package/es/components/style/delete-button.js +24 -0
  37. package/es/components/style/export.js +28 -2
  38. package/es/components/style/form-block.js +20 -0
  39. package/es/components/style/form-color-input.js +26 -0
  40. package/es/components/style/form-label.js +22 -0
  41. package/es/components/style/form-number-input.js +11 -22
  42. package/es/components/style/form-number-input_2.js +200 -0
  43. package/es/components/style/form-select.js +19 -0
  44. package/es/components/style/form-slider.js +60 -0
  45. package/es/components/style/form-submit-button.js +25 -0
  46. package/es/components/style/form-text-input.js +69 -0
  47. package/es/components/viewer2d/group.js +5 -4
  48. package/es/components/viewer2d/item.js +155 -359
  49. package/es/components/viewer2d/layer.js +1 -1
  50. package/es/components/viewer2d/line.js +17 -47
  51. package/es/components/viewer2d/ruler.js +5 -3
  52. package/es/components/viewer2d/rulerDist.js +8 -7
  53. package/es/components/viewer2d/rulerX.js +4 -2
  54. package/es/components/viewer2d/rulerY.js +3 -0
  55. package/es/components/viewer2d/scene.js +4 -1
  56. package/es/components/viewer2d/state.js +1 -1
  57. package/es/components/viewer2d/utils.js +2 -2
  58. package/es/components/viewer2d/viewer2d.js +51 -84
  59. package/es/components/viewer3d/ruler-utils/scene3D.js +1 -1
  60. package/es/components/viewer3d/scene-creator.js +51 -15
  61. package/es/components/viewer3d/viewer3d-first-person.js +8 -0
  62. package/es/components/viewer3d/viewer3d.js +80 -88
  63. package/es/constants.js +6 -2
  64. package/es/devLiteRenderer.js +491 -150
  65. package/es/index.js +567 -25
  66. package/es/models.js +2 -1
  67. package/es/plugins/SVGLoader.js +1414 -0
  68. package/es/plugins/console-debugger.js +34 -0
  69. package/es/plugins/export.js +7 -0
  70. package/es/plugins/keyboard.js +110 -0
  71. package/es/reducers/project-reducer.js +3 -0
  72. package/es/styles/export.js +5 -0
  73. package/es/styles/tabs.css +40 -0
  74. package/es/utils/geometry.js +64 -106
  75. package/es/utils/helper.js +38 -1
  76. package/es/utils/isolate-event-handler.js +824 -605
  77. package/es/utils/molding.js +457 -11
  78. package/lib/AppContext.js +1 -1
  79. package/lib/LiteKitchenConfigurator.js +164 -107
  80. package/lib/LiteRenderer.js +160 -129
  81. package/lib/actions/export.js +35 -39
  82. package/lib/assets/gltf/door_sliding.bin +0 -0
  83. package/lib/assets/img/png/helper/video_preview_start.png +0 -0
  84. package/lib/assets/img/svg/bottombar/elevation.svg +12 -5
  85. package/lib/catalog/catalog.js +20 -4
  86. package/lib/catalog/holes/window-clear/planner-element.js +2 -2
  87. package/lib/catalog/properties/export.js +81 -0
  88. package/lib/catalog/properties/property-checkbox.js +76 -0
  89. package/lib/catalog/properties/property-color.js +47 -0
  90. package/lib/catalog/properties/property-enum.js +58 -0
  91. package/lib/catalog/properties/property-hidden.js +27 -0
  92. package/lib/catalog/properties/property-lenght-measure.js +108 -0
  93. package/lib/catalog/properties/property-length-measure.js +92 -0
  94. package/lib/catalog/properties/property-length-measure_hole.js +108 -0
  95. package/lib/catalog/properties/property-number.js +56 -0
  96. package/lib/catalog/properties/property-read-only.js +34 -0
  97. package/lib/catalog/properties/property-string.js +56 -0
  98. package/lib/catalog/properties/property-toggle.js +47 -0
  99. package/lib/catalog/properties/shared-property-style.js +21 -0
  100. package/lib/catalog/utils/exporter.js +1 -0
  101. package/lib/catalog/utils/item-loader.js +18 -12
  102. package/lib/class/hole.js +0 -2
  103. package/lib/class/item.js +93 -67
  104. package/lib/class/line.js +3 -7
  105. package/lib/class/project.js +93 -80
  106. package/lib/components/content.js +5 -93
  107. package/lib/components/export.js +6 -26
  108. package/lib/components/style/button.js +115 -0
  109. package/lib/components/style/cancel-button.js +29 -0
  110. package/lib/components/style/content-container.js +38 -0
  111. package/lib/components/style/content-title.js +35 -0
  112. package/lib/components/style/delete-button.js +34 -0
  113. package/lib/components/style/export.js +105 -1
  114. package/lib/components/style/form-block.js +28 -0
  115. package/lib/components/style/form-color-input.js +34 -0
  116. package/lib/components/style/form-label.js +30 -0
  117. package/lib/components/style/form-number-input.js +11 -22
  118. package/lib/components/style/form-number-input_2.js +209 -0
  119. package/lib/components/style/form-select.js +29 -0
  120. package/lib/components/style/form-slider.js +68 -0
  121. package/lib/components/style/form-submit-button.js +35 -0
  122. package/lib/components/style/form-text-input.js +78 -0
  123. package/lib/components/viewer2d/group.js +5 -4
  124. package/lib/components/viewer2d/item.js +152 -356
  125. package/lib/components/viewer2d/layer.js +1 -1
  126. package/lib/components/viewer2d/line.js +17 -47
  127. package/lib/components/viewer2d/ruler.js +4 -2
  128. package/lib/components/viewer2d/rulerDist.js +8 -7
  129. package/lib/components/viewer2d/rulerX.js +4 -2
  130. package/lib/components/viewer2d/rulerY.js +3 -0
  131. package/lib/components/viewer2d/scene.js +4 -1
  132. package/lib/components/viewer2d/state.js +1 -1
  133. package/lib/components/viewer2d/utils.js +2 -2
  134. package/lib/components/viewer2d/viewer2d.js +49 -81
  135. package/lib/components/viewer3d/ruler-utils/scene3D.js +1 -1
  136. package/lib/components/viewer3d/scene-creator.js +49 -13
  137. package/lib/components/viewer3d/viewer3d-first-person.js +8 -0
  138. package/lib/components/viewer3d/viewer3d.js +77 -84
  139. package/lib/constants.js +11 -7
  140. package/lib/devLiteRenderer.js +489 -148
  141. package/lib/index.js +567 -25
  142. package/lib/models.js +2 -1
  143. package/lib/plugins/SVGLoader.js +1419 -0
  144. package/lib/plugins/console-debugger.js +42 -0
  145. package/lib/plugins/export.js +25 -0
  146. package/lib/plugins/keyboard.js +117 -0
  147. package/lib/reducers/project-reducer.js +3 -0
  148. package/lib/styles/export.js +13 -0
  149. package/lib/styles/tabs.css +40 -0
  150. package/lib/utils/geometry.js +64 -106
  151. package/lib/utils/helper.js +40 -1
  152. package/lib/utils/isolate-event-handler.js +824 -604
  153. package/lib/utils/molding.js +458 -9
  154. package/package.json +21 -16
  155. package/es/mocks/appliancePayload.json +0 -27
  156. package/es/mocks/cabinetPayload.json +0 -1914
  157. package/es/mocks/cabinetPayload2.json +0 -76
  158. package/es/mocks/dataBundle2.json +0 -4
  159. package/es/mocks/distancePayload.json +0 -6
  160. package/es/mocks/doorStylePayload2.json +0 -84
  161. package/es/mocks/furnishingPayload.json +0 -23
  162. package/es/mocks/itemCDSPayload.json +0 -27
  163. package/es/mocks/lightingPayload.json +0 -23
  164. package/es/mocks/mockProps.json +0 -43
  165. package/es/mocks/mockProps2.json +0 -9
  166. package/es/mocks/moldingPayload.json +0 -19
  167. package/es/mocks/projectItemsCatalog.json +0 -133
  168. package/es/mocks/rectangleShape.json +0 -238
  169. package/es/mocks/replaceCabinetPayload.json +0 -81
  170. package/es/mocks/roomShapePayload.json +0 -5
  171. package/es/useAppContext.js +0 -8
  172. package/lib/mocks/appliancePayload.json +0 -27
  173. package/lib/mocks/cabinetPayload.json +0 -1914
  174. package/lib/mocks/cabinetPayload2.json +0 -76
  175. package/lib/mocks/dataBundle2.json +0 -4
  176. package/lib/mocks/distancePayload.json +0 -6
  177. package/lib/mocks/doorStylePayload2.json +0 -84
  178. package/lib/mocks/furnishingPayload.json +0 -23
  179. package/lib/mocks/itemCDSPayload.json +0 -27
  180. package/lib/mocks/lightingPayload.json +0 -23
  181. package/lib/mocks/mockProps.json +0 -43
  182. package/lib/mocks/mockProps2.json +0 -9
  183. package/lib/mocks/moldingPayload.json +0 -19
  184. package/lib/mocks/projectItemsCatalog.json +0 -133
  185. package/lib/mocks/rectangleShape.json +0 -238
  186. package/lib/mocks/replaceCabinetPayload.json +0 -81
  187. package/lib/mocks/roomShapePayload.json +0 -5
  188. package/lib/useAppContext.js +0 -16
@@ -1,1914 +0,0 @@
1
- {
2
- "itemID": 63,
3
- "long_name": "12\" Base Cabinet",
4
- "name": "B12",
5
- "sizeinfo": {
6
- "width": 12,
7
- "depth": 24,
8
- "height": 34.5,
9
- "leftBlindLength": 0,
10
- "rightBlindLength": 0
11
- },
12
- "description": "",
13
- "prototype": "items",
14
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/thumbnail/B12.png",
15
- "shape_svg": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/shape_svg/B12.svg",
16
- "structure_json": {
17
- "is_euro_cds": 0,
18
- "euro_shape_svg": null,
19
- "euro_width": null,
20
- "euro_height": null,
21
- "euro_length": null,
22
- "leftBlindLength": null,
23
- "rightBlindLength": null,
24
- "width_unit": null,
25
- "height_unit": null,
26
- "length_unit": null,
27
- "leftBlindLength_unit": "",
28
- "rightBlindLength_unit": "",
29
- "euro_comments": null,
30
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
31
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105170324_60/%7Bdata%5Bkey%5D%7D/B12_door_shaker.gltf",
32
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
33
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105170324_60/drawer_1/B12_interior_drawer.gltf",
34
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105170324_60/%7Bdata%5Bkey%5D%7D/B12_drawer_door_shaker.gltf",
35
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
36
- "placeholders": {
37
- "base_door_1": ["ph_base_12x34x24_door"],
38
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
39
- "door_handle_1": ["base_door_1/ph_base_door_shaker_12x34x24_handle_L"],
40
- "base_drawer_door_1": [
41
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
42
- ],
43
- "drawer_door_handle_1": [
44
- "base_drawer_door_1/ph_base_drawer_door_shaker_12x34x24_handle"
45
- ]
46
- },
47
- "animation": {},
48
- "tempPlaceholders": [
49
- {
50
- "id": 60,
51
- "placeholders": {
52
- "base_door_1": ["ph_base_12x34x24_door"],
53
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
54
- "door_handle_1": [
55
- "base_door_1/ph_base_door_shaker_12x34x24_handle_L"
56
- ],
57
- "base_drawer_door_1": [
58
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
59
- ],
60
- "drawer_door_handle_1": [
61
- "base_drawer_door_1/ph_base_drawer_door_shaker_12x34x24_handle"
62
- ]
63
- },
64
- "structure": {
65
- "is_euro_cds": 0,
66
- "euro_shape_svg": null,
67
- "euro_width": null,
68
- "euro_height": null,
69
- "euro_length": null,
70
- "leftBlindLength": null,
71
- "rightBlindLength": null,
72
- "width_unit": null,
73
- "height_unit": null,
74
- "length_unit": null,
75
- "leftBlindLength_unit": "",
76
- "rightBlindLength_unit": "",
77
- "euro_comments": null,
78
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
79
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105170324_60/%7Bdata%5Bkey%5D%7D/B12_door_shaker.gltf",
80
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
81
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105170324_60/drawer_1/B12_interior_drawer.gltf",
82
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105170324_60/%7Bdata%5Bkey%5D%7D/B12_drawer_door_shaker.gltf",
83
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
84
- }
85
- },
86
- {
87
- "id": 71,
88
- "placeholders": {
89
- "base_door_1": ["ph_base_12x34x24_door"],
90
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
91
- "door_handle_1": [
92
- "base_door_1/ph_base_door_lakewood_12x34x24_handle_L",
93
- "base_door_1/ph_base_door_lakewood_12x34x24_handle_L"
94
- ],
95
- "base_drawer_door_1": [
96
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
97
- ],
98
- "drawer_door_handle_1": [
99
- "base_drawer_door_1/ph_base_drawer_door_lakewood_12x34x24_handle"
100
- ]
101
- },
102
- "structure": {
103
- "is_euro_cds": 0,
104
- "euro_shape_svg": null,
105
- "euro_width": null,
106
- "euro_height": null,
107
- "euro_length": null,
108
- "leftBlindLength": null,
109
- "rightBlindLength": null,
110
- "width_unit": null,
111
- "height_unit": null,
112
- "length_unit": null,
113
- "leftBlindLength_unit": "",
114
- "rightBlindLength_unit": "",
115
- "euro_comments": null,
116
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
117
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105244259_71/door_1/B12_door_lakewood.gltf",
118
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
119
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105244259_71/drawer_1/B12_interior_drawer.gltf",
120
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105244259_71/drawer_door_1/B12_drawer_door_lakewood.gltf",
121
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
122
- "base_door_2": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105244259_71/door_2/B12_door_lakewood.gltf",
123
- "door_handle_2": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
124
- }
125
- },
126
- {
127
- "id": 72,
128
- "placeholders": {
129
- "base_door_1": ["ph_base_12x34x24_door"],
130
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
131
- "door_handle_1": [
132
- "base_door_1/ph_base_door_cambridge_12x34x24_handle_L"
133
- ],
134
- "base_drawer_door_1": [
135
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
136
- ],
137
- "drawer_door_handle_1": [
138
- "base_drawer_door_1/ph_base_drawer_door_cambridge_12x34x24_handle"
139
- ]
140
- },
141
- "structure": {
142
- "is_euro_cds": 0,
143
- "euro_shape_svg": null,
144
- "euro_width": null,
145
- "euro_height": null,
146
- "euro_length": null,
147
- "leftBlindLength": null,
148
- "rightBlindLength": null,
149
- "width_unit": null,
150
- "height_unit": null,
151
- "length_unit": null,
152
- "leftBlindLength_unit": "",
153
- "rightBlindLength_unit": "",
154
- "euro_comments": null,
155
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
156
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105244421_72/door_1/B12_door_cambridge.gltf",
157
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
158
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105244421_72/drawer_1/B12_interior_drawer.gltf",
159
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202105244421_72/drawer_door_1/B12_drawer_door_cambridge.gltf",
160
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
161
- }
162
- },
163
- {
164
- "id": 1668,
165
- "placeholders": {
166
- "base_door_1": ["ph_base_12x34x24_door"],
167
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
168
- "door_handle_1": [
169
- "base_door_1/ph_base_door_alpine_12x34x24_handle_L"
170
- ],
171
- "base_drawer_door_1": [
172
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
173
- ],
174
- "drawer_door_handle_1": [
175
- "base_drawer_door_1/ph_base_drawer_door_alpine_12x34x24_handle"
176
- ]
177
- },
178
- "structure": {
179
- "is_euro_cds": 0,
180
- "euro_shape_svg": null,
181
- "euro_width": null,
182
- "euro_height": null,
183
- "euro_length": null,
184
- "leftBlindLength": null,
185
- "rightBlindLength": null,
186
- "width_unit": null,
187
- "height_unit": null,
188
- "length_unit": null,
189
- "leftBlindLength_unit": "",
190
- "rightBlindLength_unit": "",
191
- "euro_comments": null,
192
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
193
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261055_1668/%7Bdata%5Bkey%5D%7D/B12_door_alpine.gltf",
194
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
195
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261055_1668/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
196
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261055_1668/%7Bdata%5Bkey%5D%7D/B12_drawer_door_alpine.gltf",
197
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
198
- }
199
- },
200
- {
201
- "id": 1669,
202
- "placeholders": {
203
- "base_door_1": ["ph_base_12x34x24_door"],
204
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
205
- "door_handle_1": ["base_door_1/ph_base_door_aspen_12x34x24_handle_L"],
206
- "base_drawer_door_1": [
207
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
208
- ],
209
- "drawer_door_handle_1": [
210
- "base_drawer_door_1/ph_base_drawer_door_aspen_12x34x24_handle"
211
- ]
212
- },
213
- "structure": {
214
- "is_euro_cds": 0,
215
- "euro_shape_svg": null,
216
- "euro_width": null,
217
- "euro_height": null,
218
- "euro_length": null,
219
- "leftBlindLength": null,
220
- "rightBlindLength": null,
221
- "width_unit": null,
222
- "height_unit": null,
223
- "length_unit": null,
224
- "leftBlindLength_unit": "",
225
- "rightBlindLength_unit": "",
226
- "euro_comments": null,
227
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
228
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261140_1669/%7Bdata%5Bkey%5D%7D/B12_door_aspen.gltf",
229
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
230
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261140_1669/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
231
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261140_1669/%7Bdata%5Bkey%5D%7D/B12_drawer_door_aspen.gltf",
232
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
233
- }
234
- },
235
- {
236
- "id": 1670,
237
- "placeholders": {
238
- "base_door_1": ["ph_base_12x34x24_door"],
239
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
240
- "door_handle_1": [
241
- "base_door_1/ph_base_door_dakota_12x34x24_handle_L"
242
- ],
243
- "base_drawer_door_1": [
244
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
245
- ],
246
- "drawer_door_handle_1": [
247
- "base_drawer_door_1/ph_base_drawer_door_dakota_12x34x24_handle"
248
- ]
249
- },
250
- "structure": {
251
- "is_euro_cds": 0,
252
- "euro_shape_svg": null,
253
- "euro_width": null,
254
- "euro_height": null,
255
- "euro_length": null,
256
- "leftBlindLength": null,
257
- "rightBlindLength": null,
258
- "width_unit": null,
259
- "height_unit": null,
260
- "length_unit": null,
261
- "leftBlindLength_unit": "",
262
- "rightBlindLength_unit": "",
263
- "euro_comments": null,
264
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
265
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261225_1670/%7Bdata%5Bkey%5D%7D/B12_door_dakota.gltf",
266
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
267
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261225_1670/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
268
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261225_1670/%7Bdata%5Bkey%5D%7D/B12_drawer_door_dakota.gltf",
269
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
270
- }
271
- },
272
- {
273
- "id": 1671,
274
- "placeholders": {
275
- "base_door_1": ["ph_base_12x34x24_door"],
276
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
277
- "door_handle_1": [
278
- "base_door_1/ph_base_door_providence_12x34x24_handle_L"
279
- ],
280
- "base_drawer_door_1": [
281
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
282
- ],
283
- "drawer_door_handle_1": [
284
- "base_drawer_door_1/ph_base_drawer_door_providence_12x34x24_handle"
285
- ]
286
- },
287
- "structure": {
288
- "is_euro_cds": 0,
289
- "euro_shape_svg": null,
290
- "euro_width": null,
291
- "euro_height": null,
292
- "euro_length": null,
293
- "leftBlindLength": null,
294
- "rightBlindLength": null,
295
- "width_unit": null,
296
- "height_unit": null,
297
- "length_unit": null,
298
- "leftBlindLength_unit": "",
299
- "rightBlindLength_unit": "",
300
- "euro_comments": null,
301
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
302
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261322_1671/%7Bdata%5Bkey%5D%7D/B12_door_providence.gltf",
303
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
304
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261322_1671/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
305
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261322_1671/%7Bdata%5Bkey%5D%7D/B12_drawer_door_providence.gltf",
306
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
307
- }
308
- },
309
- {
310
- "id": 1673,
311
- "placeholders": {
312
- "base_door_1": ["ph_base_12x34x24_door"],
313
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
314
- "door_handle_1": [
315
- "base_door_1/ph_base_door_signature_12x34x24_handle_L"
316
- ],
317
- "base_drawer_door_1": [
318
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
319
- ],
320
- "drawer_door_handle_1": [
321
- "base_drawer_door_1/ph_base_drawer_door_signature_12x34x24_handle"
322
- ]
323
- },
324
- "structure": {
325
- "is_euro_cds": 0,
326
- "euro_shape_svg": null,
327
- "euro_width": null,
328
- "euro_height": null,
329
- "euro_length": null,
330
- "leftBlindLength": null,
331
- "rightBlindLength": null,
332
- "width_unit": null,
333
- "height_unit": null,
334
- "length_unit": null,
335
- "leftBlindLength_unit": "",
336
- "rightBlindLength_unit": "",
337
- "euro_comments": null,
338
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
339
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261524_1673/%7Bdata%5Bkey%5D%7D/B12_door_signature.gltf",
340
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
341
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261524_1673/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
342
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202206261524_1673/%7Bdata%5Bkey%5D%7D/B12_drawer_door_signature.gltf",
343
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
344
- }
345
- },
346
- {
347
- "id": 1758,
348
- "placeholders": {
349
- "base_door_1": ["ph_base_12x34x24_door"],
350
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
351
- "door_handle_1": [
352
- "base_door_1/ph_base_door_hallmark_12x34x24_handle_L"
353
- ],
354
- "base_drawer_door_1": [
355
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
356
- ],
357
- "drawer_door_handle_1": [
358
- "base_drawer_door_1/ph_base_drawer_door_hallmark_12x34x24_handle"
359
- ]
360
- },
361
- "structure": {
362
- "is_euro_cds": 0,
363
- "euro_shape_svg": null,
364
- "euro_width": null,
365
- "euro_height": null,
366
- "euro_length": null,
367
- "leftBlindLength": null,
368
- "rightBlindLength": null,
369
- "width_unit": null,
370
- "height_unit": null,
371
- "length_unit": null,
372
- "leftBlindLength_unit": "",
373
- "rightBlindLength_unit": "",
374
- "euro_comments": null,
375
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
376
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021012_1758/%7Bdata%5Bkey%5D%7D/B12_door_hallmark.gltf",
377
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
378
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021012_1758/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
379
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021012_1758/%7Bdata%5Bkey%5D%7D/B12_drawer_door_hallmark.gltf",
380
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
381
- }
382
- },
383
- {
384
- "id": 1759,
385
- "placeholders": {
386
- "base_door_1": ["ph_base_12x34x24_door"],
387
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
388
- "door_handle_1": [
389
- "base_door_1/ph_base_door_discovery_12x34x24_handle_L"
390
- ],
391
- "base_drawer_door_1": [
392
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
393
- ],
394
- "drawer_door_handle_1": [
395
- "base_drawer_door_1/ph_base_drawer_door_discovery_12x34x24_handle"
396
- ]
397
- },
398
- "structure": {
399
- "is_euro_cds": 0,
400
- "euro_shape_svg": null,
401
- "euro_width": null,
402
- "euro_height": null,
403
- "euro_length": null,
404
- "leftBlindLength": null,
405
- "rightBlindLength": null,
406
- "width_unit": null,
407
- "height_unit": null,
408
- "length_unit": null,
409
- "leftBlindLength_unit": "",
410
- "rightBlindLength_unit": "",
411
- "euro_comments": null,
412
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
413
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021357_1759/%7Bdata%5Bkey%5D%7D/B12_door_discovery.gltf",
414
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
415
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021357_1759/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
416
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021357_1759/%7Bdata%5Bkey%5D%7D/B12_drawer_door_discovery.gltf",
417
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
418
- }
419
- },
420
- {
421
- "id": 1760,
422
- "placeholders": {
423
- "base_door_1": ["ph_base_12x34x24_door"],
424
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
425
- "door_handle_1": [
426
- "base_door_1/ph_base_door_galaxy_12x34x24_handle_L"
427
- ],
428
- "base_drawer_door_1": [
429
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
430
- ],
431
- "drawer_door_handle_1": [
432
- "base_drawer_door_1/ph_base_drawer_door_galaxy_12x34x24_handle"
433
- ]
434
- },
435
- "structure": {
436
- "is_euro_cds": 0,
437
- "euro_shape_svg": null,
438
- "euro_width": null,
439
- "euro_height": null,
440
- "euro_length": null,
441
- "leftBlindLength": null,
442
- "rightBlindLength": null,
443
- "width_unit": null,
444
- "height_unit": null,
445
- "length_unit": null,
446
- "leftBlindLength_unit": "",
447
- "rightBlindLength_unit": "",
448
- "euro_comments": null,
449
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
450
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021443_1760/%7Bdata%5Bkey%5D%7D/B12_door_galaxy.gltf",
451
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
452
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021443_1760/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
453
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021443_1760/%7Bdata%5Bkey%5D%7D/B12_drawer_door_galaxy.gltf",
454
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
455
- }
456
- },
457
- {
458
- "id": 1761,
459
- "placeholders": {
460
- "base_door_1": ["ph_base_12x34x24_door"],
461
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
462
- "door_handle_1": ["base_door_1/ph_base_door_nexus_12x34x24_handle_L"],
463
- "base_drawer_door_1": [
464
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
465
- ],
466
- "drawer_door_handle_1": [
467
- "base_drawer_door_1/ph_base_drawer_door_nexus_12x34x24_handle"
468
- ]
469
- },
470
- "structure": {
471
- "is_euro_cds": 0,
472
- "euro_shape_svg": null,
473
- "euro_width": null,
474
- "euro_height": null,
475
- "euro_length": null,
476
- "leftBlindLength": null,
477
- "rightBlindLength": null,
478
- "width_unit": null,
479
- "height_unit": null,
480
- "length_unit": null,
481
- "leftBlindLength_unit": "",
482
- "rightBlindLength_unit": "",
483
- "euro_comments": null,
484
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
485
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021605_1761/%7Bdata%5Bkey%5D%7D/B12_door_nexus.gltf",
486
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
487
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021605_1761/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
488
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021605_1761/%7Bdata%5Bkey%5D%7D/B12_drawer_door_nexus.gltf",
489
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
490
- }
491
- },
492
- {
493
- "id": 1762,
494
- "placeholders": {
495
- "base_door_1": ["ph_base_12x34x24_door"],
496
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
497
- "door_handle_1": [
498
- "base_door_1/ph_base_door_fusion_12x34x24_handle_L"
499
- ],
500
- "base_drawer_door_1": [
501
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
502
- ],
503
- "drawer_door_handle_1": [
504
- "base_drawer_door_1/ph_base_drawer_door_fusion_12x34x24_handle"
505
- ]
506
- },
507
- "structure": {
508
- "is_euro_cds": 0,
509
- "euro_shape_svg": null,
510
- "euro_width": null,
511
- "euro_height": null,
512
- "euro_length": null,
513
- "leftBlindLength": null,
514
- "rightBlindLength": null,
515
- "width_unit": null,
516
- "height_unit": null,
517
- "length_unit": null,
518
- "leftBlindLength_unit": "",
519
- "rightBlindLength_unit": "",
520
- "euro_comments": null,
521
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
522
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021705_1762/%7Bdata%5Bkey%5D%7D/B12_door_fusion.gltf",
523
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
524
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021705_1762/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
525
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021705_1762/%7Bdata%5Bkey%5D%7D/B12_drawer_door_fusion.gltf",
526
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
527
- }
528
- },
529
- {
530
- "id": 1763,
531
- "placeholders": {
532
- "base_door_1": ["ph_base_12x34x24_door"],
533
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
534
- "door_handle_1": ["base_door_1/ph_base_door_onyx_12x34x24_handle_L"],
535
- "base_drawer_door_1": [
536
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
537
- ],
538
- "drawer_door_handle_1": [
539
- "base_drawer_door_1/ph_base_drawer_door_onyx_12x34x24_handle"
540
- ]
541
- },
542
- "structure": {
543
- "is_euro_cds": 0,
544
- "euro_shape_svg": null,
545
- "euro_width": null,
546
- "euro_height": null,
547
- "euro_length": null,
548
- "leftBlindLength": null,
549
- "rightBlindLength": null,
550
- "width_unit": null,
551
- "height_unit": null,
552
- "length_unit": null,
553
- "leftBlindLength_unit": "",
554
- "rightBlindLength_unit": "",
555
- "euro_comments": null,
556
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
557
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021806_1763/%7Bdata%5Bkey%5D%7D/B12_door_onyx.gltf",
558
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
559
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021806_1763/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
560
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021806_1763/%7Bdata%5Bkey%5D%7D/B12_drawer_door_onyx.gltf",
561
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
562
- }
563
- },
564
- {
565
- "id": 1764,
566
- "placeholders": {
567
- "base_door_1": ["ph_base_12x34x24_door"],
568
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
569
- "door_handle_1": [
570
- "base_door_1/ph_base_door_imperio_12x34x24_handle_L"
571
- ],
572
- "base_drawer_door_1": [
573
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
574
- ],
575
- "drawer_door_handle_1": [
576
- "base_drawer_door_1/ph_base_drawer_door_imperio_12x34x24_handle"
577
- ]
578
- },
579
- "structure": {
580
- "is_euro_cds": 0,
581
- "euro_shape_svg": null,
582
- "euro_width": null,
583
- "euro_height": null,
584
- "euro_length": null,
585
- "leftBlindLength": null,
586
- "rightBlindLength": null,
587
- "width_unit": null,
588
- "height_unit": null,
589
- "length_unit": null,
590
- "leftBlindLength_unit": "",
591
- "rightBlindLength_unit": "",
592
- "euro_comments": null,
593
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
594
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021914_1764/%7Bdata%5Bkey%5D%7D/B12_door_imperio.gltf",
595
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
596
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021914_1764/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
597
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207021914_1764/%7Bdata%5Bkey%5D%7D/B12_drawer_door_imperio.gltf",
598
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
599
- }
600
- },
601
- {
602
- "id": 1765,
603
- "placeholders": {
604
- "base_door_1": ["ph_base_12x34x24_door"],
605
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
606
- "door_handle_1": ["base_door_1/ph_base_door_metro_12x34x24_handle_L"],
607
- "base_drawer_door_1": [
608
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
609
- ],
610
- "drawer_door_handle_1": [
611
- "base_drawer_door_1/ph_base_drawer_door_metro_12x34x24_handle"
612
- ]
613
- },
614
- "structure": {
615
- "is_euro_cds": 0,
616
- "euro_shape_svg": null,
617
- "euro_width": null,
618
- "euro_height": null,
619
- "euro_length": null,
620
- "leftBlindLength": null,
621
- "rightBlindLength": null,
622
- "width_unit": null,
623
- "height_unit": null,
624
- "length_unit": null,
625
- "leftBlindLength_unit": "",
626
- "rightBlindLength_unit": "",
627
- "euro_comments": null,
628
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
629
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207022118_1765/%7Bdata%5Bkey%5D%7D/B12_door_metro.gltf",
630
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
631
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207022118_1765/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
632
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202207022118_1765/%7Bdata%5Bkey%5D%7D/B12_drawer_door_metro.gltf",
633
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
634
- }
635
- },
636
- {
637
- "id": 2384,
638
- "placeholders": {
639
- "base_door_1": ["ph_base_12x34x24_door"],
640
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
641
- "door_handle_1": [
642
- "base_door_1/ph_base_door_casselton_12x34x24_handle_L"
643
- ],
644
- "base_drawer_door_1": [
645
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
646
- ],
647
- "drawer_door_handle_1": [
648
- "base_drawer_door_1/ph_base_drawer_door_casselton_12x34x24_handle"
649
- ]
650
- },
651
- "structure": {
652
- "is_euro_cds": 0,
653
- "euro_shape_svg": null,
654
- "euro_width": null,
655
- "euro_height": null,
656
- "euro_length": null,
657
- "leftBlindLength": null,
658
- "rightBlindLength": null,
659
- "width_unit": null,
660
- "height_unit": null,
661
- "length_unit": null,
662
- "leftBlindLength_unit": "",
663
- "rightBlindLength_unit": "",
664
- "euro_comments": null,
665
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
666
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209011719_2384/%7Bdata%5Bkey%5D%7D/B12_door_casselton.gltf",
667
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
668
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209011719_2384/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
669
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209011719_2384/%7Bdata%5Bkey%5D%7D/B12_drawer_door_casselton.gltf",
670
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
671
- }
672
- },
673
- {
674
- "id": 2385,
675
- "placeholders": {
676
- "base_door_1": ["ph_base_12x34x24_door"],
677
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
678
- "door_handle_1": [
679
- "base_door_1/ph_base_door_charlotte_12x34x24_handle_L"
680
- ],
681
- "base_drawer_door_1": [
682
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
683
- ],
684
- "drawer_door_handle_1": [
685
- "base_drawer_door_1/ph_base_drawer_door_charlotte_12x34x24_handle"
686
- ]
687
- },
688
- "structure": {
689
- "is_euro_cds": 0,
690
- "euro_shape_svg": null,
691
- "euro_width": null,
692
- "euro_height": null,
693
- "euro_length": null,
694
- "leftBlindLength": null,
695
- "rightBlindLength": null,
696
- "width_unit": null,
697
- "height_unit": null,
698
- "length_unit": null,
699
- "leftBlindLength_unit": "",
700
- "rightBlindLength_unit": "",
701
- "euro_comments": null,
702
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
703
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012110_2385/%7Bdata%5Bkey%5D%7D/B12_door_charlotte.gltf",
704
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
705
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012110_2385/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
706
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012110_2385/%7Bdata%5Bkey%5D%7D/B12_drawer_door_charlotte.gltf",
707
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
708
- }
709
- },
710
- {
711
- "id": 2386,
712
- "placeholders": {
713
- "base_door_1": ["ph_base_12x34x24_door"],
714
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
715
- "door_handle_1": [
716
- "base_door_1/ph_base_door_lexington_12x34x24_handle_L"
717
- ],
718
- "base_drawer_door_1": [
719
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
720
- ],
721
- "drawer_door_handle_1": [
722
- "base_drawer_door_1/ph_base_drawer_door_lexington_12x34x24_handle"
723
- ]
724
- },
725
- "structure": {
726
- "is_euro_cds": 0,
727
- "euro_shape_svg": null,
728
- "euro_width": null,
729
- "euro_height": null,
730
- "euro_length": null,
731
- "leftBlindLength": null,
732
- "rightBlindLength": null,
733
- "width_unit": null,
734
- "height_unit": null,
735
- "length_unit": null,
736
- "leftBlindLength_unit": "",
737
- "rightBlindLength_unit": "",
738
- "euro_comments": null,
739
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
740
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012149_2386/%7Bdata%5Bkey%5D%7D/B12_door_lexington.gltf",
741
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
742
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012149_2386/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
743
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012149_2386/%7Bdata%5Bkey%5D%7D/B12_drawer_door_lexington.gltf",
744
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
745
- }
746
- },
747
- {
748
- "id": 2387,
749
- "placeholders": {
750
- "base_door_1": ["ph_base_12x34x24_door"],
751
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
752
- "door_handle_1": [
753
- "base_door_1/ph_base_door_phoenix_12x34x24_handle_L"
754
- ],
755
- "base_drawer_door_1": [
756
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
757
- ],
758
- "drawer_door_handle_1": [
759
- "base_drawer_door_1/ph_base_drawer_door_phoenix_12x34x24_handle"
760
- ]
761
- },
762
- "structure": {
763
- "is_euro_cds": 0,
764
- "euro_shape_svg": null,
765
- "euro_width": null,
766
- "euro_height": null,
767
- "euro_length": null,
768
- "leftBlindLength": null,
769
- "rightBlindLength": null,
770
- "width_unit": null,
771
- "height_unit": null,
772
- "length_unit": null,
773
- "leftBlindLength_unit": "",
774
- "rightBlindLength_unit": "",
775
- "euro_comments": null,
776
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
777
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012226_2387/%7Bdata%5Bkey%5D%7D/B12_door_phoenix.gltf",
778
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
779
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012226_2387/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
780
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012226_2387/%7Bdata%5Bkey%5D%7D/B12_drawer_door_phoenix.gltf",
781
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
782
- }
783
- },
784
- {
785
- "id": 2388,
786
- "placeholders": {
787
- "base_door_1": ["ph_base_12x34x24_door"],
788
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
789
- "door_handle_1": [
790
- "base_door_1/ph_base_door_southport_12x34x24_handle_L"
791
- ],
792
- "base_drawer_door_1": [
793
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
794
- ],
795
- "drawer_door_handle_1": [
796
- "base_drawer_door_1/ph_base_drawer_door_southport_12x34x24_handle"
797
- ]
798
- },
799
- "structure": {
800
- "is_euro_cds": 0,
801
- "euro_shape_svg": null,
802
- "euro_width": null,
803
- "euro_height": null,
804
- "euro_length": null,
805
- "leftBlindLength": null,
806
- "rightBlindLength": null,
807
- "width_unit": null,
808
- "height_unit": null,
809
- "length_unit": null,
810
- "leftBlindLength_unit": "",
811
- "rightBlindLength_unit": "",
812
- "euro_comments": null,
813
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
814
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012305_2388/%7Bdata%5Bkey%5D%7D/B12_door_southport.gltf",
815
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
816
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012305_2388/%7Bdata%5Bkey%5D%7D/B12_interior_drawer.gltf",
817
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202209012305_2388/%7Bdata%5Bkey%5D%7D/B12_drawer_door_southport.gltf",
818
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
819
- }
820
- },
821
- {
822
- "id": 3462,
823
- "placeholders": {
824
- "base_door_1": ["ph_base_12x34x24_door"],
825
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
826
- "door_handle_1": [
827
- "base_door_1/ph_base_door_galaxy_12x34x24_handle_L"
828
- ],
829
- "base_drawer_door_1": [
830
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
831
- ],
832
- "drawer_door_handle_1": [
833
- "base_drawer_door_1/ph_base_drawer_door_galaxy_12x34x24_handle"
834
- ]
835
- },
836
- "structure": {
837
- "is_euro_cds": 0,
838
- "euro_shape_svg": null,
839
- "euro_width": null,
840
- "euro_height": null,
841
- "euro_length": null,
842
- "leftBlindLength": null,
843
- "rightBlindLength": null,
844
- "width_unit": null,
845
- "height_unit": null,
846
- "length_unit": null,
847
- "leftBlindLength_unit": "",
848
- "rightBlindLength_unit": "",
849
- "euro_comments": null,
850
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
851
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302104800_3462/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_galaxy.gltf",
852
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
853
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302104800_3462/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
854
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302104800_3462/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_galaxy.gltf",
855
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
856
- }
857
- },
858
- {
859
- "id": 3463,
860
- "placeholders": {
861
- "base_door_1": ["ph_base_12x34x24_door"],
862
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
863
- "door_handle_1": [
864
- "base_door_1/ph_base_door_tribeca_12x34x24_handle_L"
865
- ],
866
- "base_drawer_door_1": [
867
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
868
- ],
869
- "drawer_door_handle_1": [
870
- "base_drawer_door_1/ph_base_drawer_door_tribeca_12x34x24_handle"
871
- ]
872
- },
873
- "structure": {
874
- "is_euro_cds": 0,
875
- "euro_shape_svg": null,
876
- "euro_width": null,
877
- "euro_height": null,
878
- "euro_length": null,
879
- "leftBlindLength": null,
880
- "rightBlindLength": null,
881
- "width_unit": null,
882
- "height_unit": null,
883
- "length_unit": null,
884
- "leftBlindLength_unit": "",
885
- "rightBlindLength_unit": "",
886
- "euro_comments": null,
887
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
888
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105115_3463/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_tribeca.gltf",
889
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
890
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105115_3463/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
891
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105115_3463/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_tribeca.gltf",
892
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
893
- }
894
- },
895
- {
896
- "id": 3464,
897
- "placeholders": {
898
- "base_door_1": ["ph_base_12x34x24_door"],
899
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
900
- "door_handle_1": ["base_door_1/ph_base_door_aspen_12x34x24_handle_L"],
901
- "base_drawer_door_1": [
902
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
903
- ],
904
- "drawer_door_handle_1": [
905
- "base_drawer_door_1/ph_base_drawer_door_rustic_12x34x24_handle"
906
- ]
907
- },
908
- "structure": {
909
- "is_euro_cds": 0,
910
- "euro_shape_svg": null,
911
- "euro_width": null,
912
- "euro_height": null,
913
- "euro_length": null,
914
- "leftBlindLength": null,
915
- "rightBlindLength": null,
916
- "width_unit": null,
917
- "height_unit": null,
918
- "length_unit": null,
919
- "leftBlindLength_unit": "",
920
- "rightBlindLength_unit": "",
921
- "euro_comments": null,
922
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
923
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105159_3464/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_rustic.gltf",
924
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
925
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105159_3464/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
926
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105159_3464/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_rustic.gltf",
927
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
928
- }
929
- },
930
- {
931
- "id": 3465,
932
- "placeholders": {
933
- "base_door_1": ["ph_base_12x34x24_door"],
934
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
935
- "door_handle_1": [
936
- "base_door_1/ph_base_door_casselton_12x34x24_handle_L"
937
- ],
938
- "base_drawer_door_1": [
939
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
940
- ],
941
- "drawer_door_handle_1": [
942
- "base_drawer_door_1/ph_base_drawer_door_pearl_12x34x24_handle"
943
- ]
944
- },
945
- "structure": {
946
- "is_euro_cds": 0,
947
- "euro_shape_svg": null,
948
- "euro_width": null,
949
- "euro_height": null,
950
- "euro_length": null,
951
- "leftBlindLength": null,
952
- "rightBlindLength": null,
953
- "width_unit": null,
954
- "height_unit": null,
955
- "length_unit": null,
956
- "leftBlindLength_unit": "",
957
- "rightBlindLength_unit": "",
958
- "euro_comments": null,
959
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
960
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105229_3465/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_pearl.gltf",
961
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
962
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105229_3465/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
963
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105229_3465/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_pearl.gltf",
964
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
965
- }
966
- },
967
- {
968
- "id": 3466,
969
- "placeholders": {
970
- "base_door_1": ["ph_base_12x34x24_door"],
971
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
972
- "door_handle_1": ["base_door_1/ph_base_door_stone_12x34x24_handle_L"],
973
- "base_drawer_door_1": [
974
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
975
- ],
976
- "drawer_door_handle_1": [
977
- "base_drawer_door_1/ph_base_drawer_door_stone_12x34x24_handle"
978
- ]
979
- },
980
- "structure": {
981
- "is_euro_cds": 0,
982
- "euro_shape_svg": null,
983
- "euro_width": null,
984
- "euro_height": null,
985
- "euro_length": null,
986
- "leftBlindLength": null,
987
- "rightBlindLength": null,
988
- "width_unit": null,
989
- "height_unit": null,
990
- "length_unit": null,
991
- "leftBlindLength_unit": "",
992
- "rightBlindLength_unit": "",
993
- "euro_comments": null,
994
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
995
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105402_3466/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_stone.gltf",
996
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
997
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105402_3466/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
998
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105402_3466/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_stone.gltf",
999
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1000
- }
1001
- },
1002
- {
1003
- "id": 3467,
1004
- "placeholders": {
1005
- "base_door_1": ["ph_base_12x34x24_door"],
1006
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1007
- "door_handle_1": [
1008
- "base_door_1/ph_base_door_cobblestone_12x34x24_handle_L"
1009
- ],
1010
- "base_drawer_door_1": [
1011
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1012
- ],
1013
- "drawer_door_handle_1": [
1014
- "base_drawer_door_1/ph_base_drawer_door_cobblestone_12x34x24_handle"
1015
- ]
1016
- },
1017
- "structure": {
1018
- "is_euro_cds": 0,
1019
- "euro_shape_svg": null,
1020
- "euro_width": null,
1021
- "euro_height": null,
1022
- "euro_length": null,
1023
- "leftBlindLength": null,
1024
- "rightBlindLength": null,
1025
- "width_unit": null,
1026
- "height_unit": null,
1027
- "length_unit": null,
1028
- "leftBlindLength_unit": "",
1029
- "rightBlindLength_unit": "",
1030
- "euro_comments": null,
1031
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1032
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105509_3467/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_cobblestone.gltf",
1033
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1034
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105509_3467/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1035
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105509_3467/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_cobblestone.gltf",
1036
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1037
- }
1038
- },
1039
- {
1040
- "id": 3468,
1041
- "placeholders": {
1042
- "base_door_1": ["ph_base_12x34x24_door"],
1043
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1044
- "door_handle_1": [
1045
- "base_door_1/ph_base_door_biscotti_12x34x24_handle_L"
1046
- ],
1047
- "base_drawer_door_1": [
1048
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1049
- ],
1050
- "drawer_door_handle_1": [
1051
- "base_drawer_door_1/ph_base_drawer_door_biscotti_12x34x24_handle"
1052
- ]
1053
- },
1054
- "structure": {
1055
- "is_euro_cds": 0,
1056
- "euro_shape_svg": null,
1057
- "euro_width": null,
1058
- "euro_height": null,
1059
- "euro_length": null,
1060
- "leftBlindLength": null,
1061
- "rightBlindLength": null,
1062
- "width_unit": null,
1063
- "height_unit": null,
1064
- "length_unit": null,
1065
- "leftBlindLength_unit": "",
1066
- "rightBlindLength_unit": "",
1067
- "euro_comments": null,
1068
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1069
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105537_3468/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_biscotti.gltf",
1070
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1071
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105537_3468/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1072
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105537_3468/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_biscotti.gltf",
1073
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1074
- }
1075
- },
1076
- {
1077
- "id": 3469,
1078
- "placeholders": {
1079
- "base_door_1": ["ph_base_12x34x24_door"],
1080
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1081
- "door_handle_1": [
1082
- "base_door_1/ph_base_door_glazed_12x34x24_handle_L"
1083
- ],
1084
- "base_drawer_door_1": [
1085
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1086
- ],
1087
- "drawer_door_handle_1": [
1088
- "base_drawer_door_1/ph_base_drawer_door_glazed_12x34x24_handle"
1089
- ]
1090
- },
1091
- "structure": {
1092
- "is_euro_cds": 0,
1093
- "euro_shape_svg": null,
1094
- "euro_width": null,
1095
- "euro_height": null,
1096
- "euro_length": null,
1097
- "leftBlindLength": null,
1098
- "rightBlindLength": null,
1099
- "width_unit": null,
1100
- "height_unit": null,
1101
- "length_unit": null,
1102
- "leftBlindLength_unit": "",
1103
- "rightBlindLength_unit": "",
1104
- "euro_comments": null,
1105
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1106
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105610_3469/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_glazed.gltf",
1107
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1108
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105610_3469/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1109
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202302105610_3469/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_glazed.gltf",
1110
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1111
- }
1112
- },
1113
- {
1114
- "id": 5249,
1115
- "placeholders": {
1116
- "base_door_1": ["ph_base_12x34x24_door"],
1117
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1118
- "door_handle_1": ["base_door_1/ph_base_door_luna_12x34x24_handle_L"],
1119
- "base_drawer_door_1": [
1120
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1121
- ],
1122
- "drawer_door_handle_1": [
1123
- "base_drawer_door_1/ph_base_drawer_door_luna_12x34x24_handle"
1124
- ]
1125
- },
1126
- "structure": {
1127
- "is_euro_cds": 0,
1128
- "euro_shape_svg": null,
1129
- "euro_width": null,
1130
- "euro_height": null,
1131
- "euro_length": null,
1132
- "leftBlindLength": null,
1133
- "rightBlindLength": null,
1134
- "width_unit": null,
1135
- "height_unit": null,
1136
- "length_unit": null,
1137
- "leftBlindLength_unit": "",
1138
- "rightBlindLength_unit": "",
1139
- "euro_comments": null,
1140
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1141
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202307274657_5249/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_luna.gltf",
1142
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1143
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202307274657_5249/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1144
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202307274657_5249/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_luna.gltf",
1145
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1146
- }
1147
- },
1148
- {
1149
- "id": 5641,
1150
- "placeholders": {
1151
- "base_door_1": ["ph_base_12x34x24_door"],
1152
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1153
- "door_handle_1": [
1154
- "base_door_1/ph_base_door_bayville_12x34x24_handle_L"
1155
- ],
1156
- "base_drawer_door_1": [
1157
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1158
- ],
1159
- "drawer_door_handle_1": [
1160
- "base_drawer_door_1/ph_base_drawer_door_bayville_12x34x24_handle"
1161
- ]
1162
- },
1163
- "structure": {
1164
- "is_euro_cds": 0,
1165
- "euro_shape_svg": null,
1166
- "euro_width": null,
1167
- "euro_height": null,
1168
- "euro_length": null,
1169
- "leftBlindLength": null,
1170
- "rightBlindLength": null,
1171
- "width_unit": null,
1172
- "height_unit": null,
1173
- "length_unit": null,
1174
- "leftBlindLength_unit": "",
1175
- "rightBlindLength_unit": "",
1176
- "euro_comments": null,
1177
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1178
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202309251005_5641/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_bayville.gltf",
1179
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1180
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202309251005_5641/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1181
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202309251005_5641/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_bayville.gltf",
1182
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1183
- }
1184
- },
1185
- {
1186
- "id": 5642,
1187
- "placeholders": {
1188
- "base_door_1": ["ph_base_12x34x24_door"],
1189
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1190
- "door_handle_1": [
1191
- "base_door_1/ph_base_door_township_12x34x24_handle_L"
1192
- ],
1193
- "base_drawer_door_1": [
1194
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1195
- ],
1196
- "drawer_door_handle_1": [
1197
- "base_drawer_door_1/ph_base_drawer_door_township_12x34x24_handle"
1198
- ]
1199
- },
1200
- "structure": {
1201
- "is_euro_cds": 0,
1202
- "euro_shape_svg": null,
1203
- "euro_width": null,
1204
- "euro_height": null,
1205
- "euro_length": null,
1206
- "leftBlindLength": null,
1207
- "rightBlindLength": null,
1208
- "width_unit": null,
1209
- "height_unit": null,
1210
- "length_unit": null,
1211
- "leftBlindLength_unit": "",
1212
- "rightBlindLength_unit": "",
1213
- "euro_comments": null,
1214
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1215
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202309251135_5642/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_township.gltf",
1216
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1217
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202309251135_5642/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1218
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202309251135_5642/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_township.gltf",
1219
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1220
- }
1221
- },
1222
- {
1223
- "id": 5659,
1224
- "placeholders": {
1225
- "base_door_1": ["ph_base_12x34x24_door"],
1226
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1227
- "door_handle_1": [
1228
- "base_door_1/ph_base_door_catalina_12x34x24_handle_L"
1229
- ],
1230
- "base_drawer_door_1": [
1231
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1232
- ],
1233
- "drawer_door_handle_1": [
1234
- "base_drawer_door_1/ph_base_drawer_door_catalina_12x34x24_handle"
1235
- ]
1236
- },
1237
- "structure": {
1238
- "is_euro_cds": 0,
1239
- "euro_shape_svg": null,
1240
- "euro_width": null,
1241
- "euro_height": null,
1242
- "euro_length": null,
1243
- "leftBlindLength": null,
1244
- "rightBlindLength": null,
1245
- "width_unit": null,
1246
- "height_unit": null,
1247
- "length_unit": null,
1248
- "leftBlindLength_unit": "",
1249
- "rightBlindLength_unit": "",
1250
- "euro_comments": null,
1251
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1252
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202310053055_5659/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_catalina.gltf",
1253
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1254
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202310053055_5659/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1255
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202310053055_5659/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_catalina.gltf",
1256
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1257
- }
1258
- },
1259
- {
1260
- "id": 5952,
1261
- "placeholders": {
1262
- "base_door_1": ["ph_base_12x34x24_door"],
1263
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1264
- "door_handle_1": [
1265
- "base_door_1/ph_base_door_asheville_12x34x24_handle_L"
1266
- ],
1267
- "base_drawer_door_1": [
1268
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1269
- ],
1270
- "drawer_door_handle_1": [
1271
- "base_drawer_door_1/ph_base_drawer_door_asheville_12x34x24_handle"
1272
- ]
1273
- },
1274
- "structure": {
1275
- "is_euro_cds": 0,
1276
- "euro_shape_svg": null,
1277
- "euro_width": null,
1278
- "euro_height": null,
1279
- "euro_length": null,
1280
- "leftBlindLength": null,
1281
- "rightBlindLength": null,
1282
- "width_unit": null,
1283
- "height_unit": null,
1284
- "length_unit": null,
1285
- "leftBlindLength_unit": "",
1286
- "rightBlindLength_unit": "",
1287
- "euro_comments": null,
1288
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1289
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202311253751_5952/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_ashevile.gltf",
1290
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1291
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202311253751_5952/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1292
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202311253751_5952/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_asheville.gltf",
1293
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1294
- }
1295
- },
1296
- {
1297
- "id": 6388,
1298
- "placeholders": {
1299
- "base_door_1": ["ph_base_12x34x24_door"],
1300
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1301
- "door_handle_1": [
1302
- "base_door_1/ph_base_door_shaker_12x34x24_handle_L"
1303
- ],
1304
- "base_drawer_door_1": [
1305
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1306
- ],
1307
- "drawer_door_handle_1": [
1308
- "base_drawer_door_1/ph_base_drawer_door_shaker_12x34x24_handle"
1309
- ]
1310
- },
1311
- "structure": {
1312
- "is_euro_cds": null,
1313
- "euro_shape_svg": null,
1314
- "euro_width": null,
1315
- "euro_height": null,
1316
- "euro_length": null,
1317
- "leftBlindLength": null,
1318
- "rightBlindLength": null,
1319
- "width_unit": null,
1320
- "height_unit": null,
1321
- "length_unit": null,
1322
- "leftBlindLength_unit": null,
1323
- "rightBlindLength_unit": null,
1324
- "euro_comments": null,
1325
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1326
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202401054159_6388/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_shaker.gltf",
1327
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1328
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202401054159_6388/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1329
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202401054159_6388/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_shaker.gltf",
1330
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1331
- }
1332
- },
1333
- {
1334
- "id": 6427,
1335
- "placeholders": {
1336
- "base_door_1": ["ph_base_12x34x24_door"],
1337
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1338
- "door_handle_1": ["base_door_1/ph_base_door_euro_12x34x24_handle_L"],
1339
- "base_drawer_door_1": [
1340
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1341
- ],
1342
- "drawer_door_handle_1": [
1343
- "base_drawer_door_1/ph_base_drawer_door_euro_12x34x24_handle"
1344
- ]
1345
- },
1346
- "structure": {
1347
- "is_euro_cds": 1,
1348
- "euro_shape_svg": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/shape_svg/B12.svg",
1349
- "euro_width": 12,
1350
- "euro_height": 34.75,
1351
- "euro_length": 24,
1352
- "leftBlindLength": 0,
1353
- "rightBlindLength": 0,
1354
- "width_unit": "inch",
1355
- "height_unit": "inch",
1356
- "length_unit": "inch",
1357
- "leftBlindLength_unit": "inch",
1358
- "rightBlindLength_unit": "inch",
1359
- "euro_comments": "",
1360
- "base": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202401100525_6427/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12.gltf",
1361
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202401100525_6427/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_euro.gltf",
1362
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1363
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202401100525_6427/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1364
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202401100525_6427/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_euro.gltf",
1365
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1366
- }
1367
- },
1368
- {
1369
- "id": 7073,
1370
- "placeholders": {
1371
- "base_door_1": ["ph_base_12x34x24_door"],
1372
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1373
- "door_handle_1": [
1374
- "base_door_1/ph_base_door_shaker_12x34x24_handle_L"
1375
- ],
1376
- "base_drawer_door_1": [
1377
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1378
- ],
1379
- "drawer_door_handle_1": [
1380
- "base_drawer_door_1/ph_base_drawer_door_shaker_12x34x24_handle"
1381
- ]
1382
- },
1383
- "structure": {
1384
- "is_euro_cds": null,
1385
- "euro_shape_svg": null,
1386
- "euro_width": null,
1387
- "euro_height": null,
1388
- "euro_length": null,
1389
- "leftBlindLength": null,
1390
- "rightBlindLength": null,
1391
- "width_unit": null,
1392
- "height_unit": null,
1393
- "length_unit": null,
1394
- "leftBlindLength_unit": null,
1395
- "rightBlindLength_unit": null,
1396
- "euro_comments": null,
1397
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1398
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404162614_7073/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_shaker.gltf",
1399
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1400
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404162614_7073/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1401
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404162614_7073/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_shaker.gltf",
1402
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1403
- }
1404
- },
1405
- {
1406
- "id": 7074,
1407
- "placeholders": {
1408
- "base_door_1": ["ph_base_12x34x24_door"],
1409
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1410
- "door_handle_1": ["base_door_1/ph_base_door_aspen_12x34x24_handle_L"],
1411
- "base_drawer_door_1": [
1412
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1413
- ],
1414
- "drawer_door_handle_1": [
1415
- "base_drawer_door_1/ph_base_drawer_door_rustic_12x34x24_handle"
1416
- ]
1417
- },
1418
- "structure": {
1419
- "is_euro_cds": null,
1420
- "euro_shape_svg": null,
1421
- "euro_width": null,
1422
- "euro_height": null,
1423
- "euro_length": null,
1424
- "leftBlindLength": null,
1425
- "rightBlindLength": null,
1426
- "width_unit": null,
1427
- "height_unit": null,
1428
- "length_unit": null,
1429
- "leftBlindLength_unit": null,
1430
- "rightBlindLength_unit": null,
1431
- "euro_comments": null,
1432
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1433
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404162735_7074/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_rustic.gltf",
1434
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1435
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404162735_7074/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1436
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404162735_7074/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_rustic.gltf",
1437
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1438
- }
1439
- },
1440
- {
1441
- "id": 7211,
1442
- "placeholders": {
1443
- "base_door_1": ["ph_base_12x34x24_door"],
1444
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1445
- "door_handle_1": [
1446
- "base_door_1/ph_base_door_township_12x34x24_handle_L"
1447
- ],
1448
- "base_drawer_door_1": [
1449
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1450
- ],
1451
- "drawer_door_handle_1": [
1452
- "base_drawer_door_1/ph_base_drawer_door_township_12x34x24_handle"
1453
- ]
1454
- },
1455
- "structure": {
1456
- "is_euro_cds": null,
1457
- "euro_shape_svg": null,
1458
- "euro_width": null,
1459
- "euro_height": null,
1460
- "euro_length": null,
1461
- "leftBlindLength": null,
1462
- "rightBlindLength": null,
1463
- "width_unit": null,
1464
- "height_unit": null,
1465
- "length_unit": null,
1466
- "leftBlindLength_unit": null,
1467
- "rightBlindLength_unit": null,
1468
- "euro_comments": null,
1469
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1470
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404252312_7211/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_township.gltf",
1471
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1472
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404252312_7211/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1473
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404252312_7211/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_township.gltf",
1474
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1475
- }
1476
- },
1477
- {
1478
- "id": 7319,
1479
- "placeholders": {
1480
- "base_door_1": ["ph_base_12x34x24_door"],
1481
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1482
- "door_handle_1": [
1483
- "base_door_1/ph_base_door_shaker_12x34x24_handle_L"
1484
- ],
1485
- "base_drawer_door_1": [
1486
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1487
- ],
1488
- "drawer_door_handle_1": [
1489
- "base_drawer_door_1/ph_base_drawer_door_galaxy_12x34x24_handle"
1490
- ]
1491
- },
1492
- "structure": {
1493
- "is_euro_cds": null,
1494
- "euro_shape_svg": null,
1495
- "euro_width": null,
1496
- "euro_height": null,
1497
- "euro_length": null,
1498
- "leftBlindLength": null,
1499
- "rightBlindLength": null,
1500
- "width_unit": null,
1501
- "height_unit": null,
1502
- "length_unit": null,
1503
- "leftBlindLength_unit": null,
1504
- "rightBlindLength_unit": null,
1505
- "euro_comments": null,
1506
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1507
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404272322_7319/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_shaker.gltf",
1508
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1509
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404272322_7319/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1510
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202404272322_7319/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_galaxy.gltf",
1511
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1512
- }
1513
- },
1514
- {
1515
- "id": 7542,
1516
- "placeholders": {
1517
- "base_door_1": ["ph_base_12x34x24_door"],
1518
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1519
- "door_handle_1": [
1520
- "base_door_1/ph_wall_door_wellfleet_12x30x24_handle_L"
1521
- ],
1522
- "base_drawer_door_1": [
1523
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1524
- ],
1525
- "drawer_door_handle_1": [
1526
- "base_drawer_door_1/ph_base_drawer_door_wellfleet_12x34x24_handle"
1527
- ]
1528
- },
1529
- "structure": {
1530
- "is_euro_cds": null,
1531
- "euro_shape_svg": null,
1532
- "euro_width": null,
1533
- "euro_height": null,
1534
- "euro_length": null,
1535
- "leftBlindLength": null,
1536
- "rightBlindLength": null,
1537
- "width_unit": null,
1538
- "height_unit": null,
1539
- "length_unit": null,
1540
- "leftBlindLength_unit": null,
1541
- "rightBlindLength_unit": null,
1542
- "euro_comments": null,
1543
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1544
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202405065328_7542/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_wellfleet.gltf",
1545
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1546
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202405065328_7542/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1547
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202405065328_7542/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_drawer_door_wellfleet.gltf",
1548
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1549
- }
1550
- },
1551
- {
1552
- "id": 7771,
1553
- "placeholders": {
1554
- "base_door_1": ["ph_base_12x34x24_door"],
1555
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1556
- "door_handle_1": [
1557
- "base_door_1/ph_base_door_illume_12x34x21_handle_L"
1558
- ],
1559
- "base_drawer_door_1": [
1560
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1561
- ],
1562
- "drawer_door_handle_1": [
1563
- "base_drawer_door_1/ph_vanity_base_drawer_door_illume_12x34x21_handle"
1564
- ]
1565
- },
1566
- "structure": {
1567
- "is_euro_cds": null,
1568
- "euro_shape_svg": null,
1569
- "euro_width": null,
1570
- "euro_height": null,
1571
- "euro_length": null,
1572
- "leftBlindLength": null,
1573
- "rightBlindLength": null,
1574
- "width_unit": null,
1575
- "height_unit": null,
1576
- "length_unit": null,
1577
- "leftBlindLength_unit": null,
1578
- "rightBlindLength_unit": null,
1579
- "euro_comments": null,
1580
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1581
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202405253011_7771/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_door_illume.gltf",
1582
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1583
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202405253011_7771/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/B12_interior_drawer.gltf",
1584
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202405253011_7771/%5Bobject%20Object%5D%2C%5Bobject%20Object%5D/VB12_drawer_door_illume.gltf",
1585
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1586
- }
1587
- },
1588
- {
1589
- "id": 8581,
1590
- "placeholders": {
1591
- "base_door_1": ["ph_base_12x34x24_door"],
1592
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1593
- "door_handle_1": [
1594
- "base_door_1/ph_base_door_harbor_12x34x24_handle_L"
1595
- ],
1596
- "base_drawer_door_1": [
1597
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1598
- ],
1599
- "drawer_door_handle_1": [
1600
- "base_drawer_door_1/ph_base_drawer_door_harbor_12x34x24_handle"
1601
- ]
1602
- },
1603
- "structure": {
1604
- "is_euro_cds": 1,
1605
- "euro_shape_svg": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/shape_svg/B12.svg",
1606
- "euro_width": 12,
1607
- "euro_height": 34.75,
1608
- "euro_length": 24,
1609
- "leftBlindLength": 0,
1610
- "rightBlindLength": 0,
1611
- "width_unit": "inch",
1612
- "height_unit": "inch",
1613
- "length_unit": "inch",
1614
- "leftBlindLength_unit": "inch",
1615
- "rightBlindLength_unit": "inch",
1616
- "euro_comments": "",
1617
- "base": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202408051446_8581/base_gltf/B12.gltf",
1618
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202408051446_8581/door_1/B12_door_harbor.gltf",
1619
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1620
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202408051446_8581/drawer_1/B12_interior_drawer.gltf",
1621
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202408051446_8581/drawer_door_1/B12_drawer_door_harbor.gltf",
1622
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1623
- }
1624
- },
1625
- {
1626
- "id": 8819,
1627
- "placeholders": {
1628
- "base_door_1": ["ph_base_12x34x24_door"],
1629
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1630
- "door_handle_1": [
1631
- "base_door_1/ph_base_door_illume_12x34x21_handle_L"
1632
- ],
1633
- "base_drawer_door_1": [
1634
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1635
- ],
1636
- "drawer_door_handle_1": [
1637
- "base_drawer_door_1/ph_vanity_base_drawer_door_illume_12x34x21_handle"
1638
- ]
1639
- },
1640
- "structure": {
1641
- "is_euro_cds": null,
1642
- "euro_shape_svg": null,
1643
- "euro_width": null,
1644
- "euro_height": null,
1645
- "euro_length": null,
1646
- "leftBlindLength": null,
1647
- "rightBlindLength": null,
1648
- "width_unit": null,
1649
- "height_unit": null,
1650
- "length_unit": null,
1651
- "leftBlindLength_unit": null,
1652
- "rightBlindLength_unit": null,
1653
- "euro_comments": null,
1654
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1655
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202408222657_8819/door_1/B12_door_illume.gltf",
1656
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1657
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202408222657_8819/drawer_1/B12_interior_drawer.gltf",
1658
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202408222657_8819/drawer_door_1/VB12_drawer_door_illume.gltf",
1659
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1660
- }
1661
- },
1662
- {
1663
- "id": 9287,
1664
- "placeholders": {
1665
- "base_door_1": ["ph_base_palisades_12x34x24_door"],
1666
- "base_drawer_1": ["ph_base_palisades_12x34x24_interior_drawer"],
1667
- "door_handle_1": [
1668
- "base_door_1/ph_base_door_palisades_12x34x24_handle_L"
1669
- ],
1670
- "base_drawer_door_1": [
1671
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1672
- ],
1673
- "drawer_door_handle_1": [
1674
- "base_drawer_door_1/ph_base_drawer_door_palisades_12x34x24_handle"
1675
- ]
1676
- },
1677
- "structure": {
1678
- "is_euro_cds": null,
1679
- "euro_shape_svg": null,
1680
- "euro_width": null,
1681
- "euro_height": null,
1682
- "euro_length": null,
1683
- "leftBlindLength": null,
1684
- "rightBlindLength": null,
1685
- "width_unit": null,
1686
- "height_unit": null,
1687
- "length_unit": null,
1688
- "leftBlindLength_unit": null,
1689
- "rightBlindLength_unit": null,
1690
- "euro_comments": null,
1691
- "base": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411103307_9287/base_gltf/B12.gltf",
1692
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411103307_9287/door_1/B12_door_palisades.gltf",
1693
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1694
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411103307_9287/drawer_1/B12_interior_drawer.gltf",
1695
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411103307_9287/drawer_door_1/B12_drawer_door_palisades.gltf",
1696
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1697
- }
1698
- },
1699
- {
1700
- "id": 9297,
1701
- "placeholders": {
1702
- "base_door_1": ["ph_base_royal_12x34x24_door"],
1703
- "base_drawer_1": ["ph_base_royal_12x34x24_interior_drawer"],
1704
- "door_handle_1": ["base_door_1/ph_wall_door_royal_12x34x24_handle_L"],
1705
- "base_drawer_door_1": [
1706
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1707
- ],
1708
- "drawer_door_handle_1": [
1709
- "base_drawer_door_1/ph_base_drawer_door_royal_12x34x24_handle"
1710
- ]
1711
- },
1712
- "structure": {
1713
- "is_euro_cds": null,
1714
- "euro_shape_svg": null,
1715
- "euro_width": null,
1716
- "euro_height": null,
1717
- "euro_length": null,
1718
- "leftBlindLength": null,
1719
- "rightBlindLength": null,
1720
- "width_unit": null,
1721
- "height_unit": null,
1722
- "length_unit": null,
1723
- "leftBlindLength_unit": null,
1724
- "rightBlindLength_unit": null,
1725
- "euro_comments": null,
1726
- "base": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411102044_9297/base_gltf/B12.gltf",
1727
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411102044_9297/door_1/B12_door_royal.gltf",
1728
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1729
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411102044_9297/drawer_1/B12_interior_drawer.gltf",
1730
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411102044_9297/drawer_door_1/B12_drawer_door_royal.gltf",
1731
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1732
- }
1733
- },
1734
- {
1735
- "id": 9298,
1736
- "placeholders": {
1737
- "base_door_1": ["ph_base_royal_12x34x24_door"],
1738
- "base_drawer_1": ["ph_base_royal_12x34x24_interior_drawer"],
1739
- "door_handle_1": ["base_door_1/ph_wall_door_royal_12x34x24_handle_L"],
1740
- "base_drawer_door_1": [
1741
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1742
- ],
1743
- "drawer_door_handle_1": [
1744
- "base_drawer_door_1/ph_base_drawer_door_royal_12x34x24_handle"
1745
- ]
1746
- },
1747
- "structure": {
1748
- "is_euro_cds": null,
1749
- "euro_shape_svg": null,
1750
- "euro_width": null,
1751
- "euro_height": null,
1752
- "euro_length": null,
1753
- "leftBlindLength": null,
1754
- "rightBlindLength": null,
1755
- "width_unit": null,
1756
- "height_unit": null,
1757
- "length_unit": null,
1758
- "leftBlindLength_unit": null,
1759
- "rightBlindLength_unit": null,
1760
- "euro_comments": null,
1761
- "base": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411102208_9298/base_gltf/B12.gltf",
1762
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411102208_9298/door_1/B12_door_royal.gltf",
1763
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1764
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411102208_9298/drawer_1/B12_interior_drawer.gltf",
1765
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202411102208_9298/drawer_door_1/B12_drawer_door_royal.gltf",
1766
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1767
- }
1768
- },
1769
- {
1770
- "id": 9525,
1771
- "placeholders": {
1772
- "base_door_1": ["ph_base_12x34x24_door"],
1773
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1774
- "door_handle_1": ["base_door_1/ph_base_door_luna_12x34x24_handle_L"],
1775
- "base_drawer_door_1": [
1776
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1777
- ],
1778
- "drawer_door_handle_1": [
1779
- "base_drawer_door_1/ph_base_drawer_door_luna_12x34x24_handle"
1780
- ]
1781
- },
1782
- "structure": {
1783
- "is_euro_cds": null,
1784
- "euro_shape_svg": null,
1785
- "euro_width": null,
1786
- "euro_height": null,
1787
- "euro_length": null,
1788
- "leftBlindLength": null,
1789
- "rightBlindLength": null,
1790
- "width_unit": null,
1791
- "height_unit": null,
1792
- "length_unit": null,
1793
- "leftBlindLength_unit": null,
1794
- "rightBlindLength_unit": null,
1795
- "euro_comments": null,
1796
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1797
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202502152005_9525/door_1/B12_door_luna.gltf",
1798
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1799
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202502152005_9525/drawer_1/B12_interior_drawer.gltf",
1800
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202502152005_9525/drawer_door_1/B12_drawer_door_luna.gltf",
1801
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1802
- }
1803
- },
1804
- {
1805
- "id": 10282,
1806
- "placeholders": {
1807
- "base_door_1": ["ph_base_palisades_12x34x24_door"],
1808
- "base_drawer_1": ["ph_base_palisades_12x34x24_interior_drawer"],
1809
- "door_handle_1": [
1810
- "base_door_1/ph_base_door_savannah_12x34x24_handle_L"
1811
- ],
1812
- "base_drawer_door_1": [
1813
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1814
- ],
1815
- "drawer_door_handle_1": [
1816
- "base_drawer_door_1/ph_base_drawer_door_savannah_12x34x24_handle"
1817
- ]
1818
- },
1819
- "structure": {
1820
- "is_euro_cds": null,
1821
- "euro_shape_svg": null,
1822
- "euro_width": null,
1823
- "euro_height": null,
1824
- "euro_length": null,
1825
- "leftBlindLength": null,
1826
- "rightBlindLength": null,
1827
- "width_unit": null,
1828
- "height_unit": null,
1829
- "length_unit": null,
1830
- "leftBlindLength_unit": null,
1831
- "rightBlindLength_unit": null,
1832
- "euro_comments": null,
1833
- "base": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202506132629_10282/base_gltf/B12.gltf",
1834
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202506132629_10282/door_1/B12_door_savannah.gltf",
1835
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1836
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202506132629_10282/drawer_1/B12_interior_drawer.gltf",
1837
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202506132629_10282/drawer_door_1/B12_drawer_door_savannah.gltf",
1838
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1839
- }
1840
- },
1841
- {
1842
- "id": 10440,
1843
- "placeholders": {
1844
- "base_door_1": ["ph_base_12x34x24_door"],
1845
- "base_drawer_1": ["ph_base_12x34x24_interior_drawer"],
1846
- "door_handle_1": [
1847
- "base_door_1/ph_base_door_concord_12x34x24_handle_L"
1848
- ],
1849
- "base_drawer_door_1": [
1850
- "base_drawer_1/ph_base_interior_drawer_12x34x24_drawer_door"
1851
- ],
1852
- "drawer_door_handle_1": [
1853
- "base_drawer_door_1/ph_base_drawer_door_concord_12x34x24_handle"
1854
- ]
1855
- },
1856
- "structure": {
1857
- "is_euro_cds": null,
1858
- "euro_shape_svg": null,
1859
- "euro_width": null,
1860
- "euro_height": null,
1861
- "euro_length": null,
1862
- "leftBlindLength": null,
1863
- "rightBlindLength": null,
1864
- "width_unit": null,
1865
- "height_unit": null,
1866
- "length_unit": null,
1867
- "leftBlindLength_unit": null,
1868
- "rightBlindLength_unit": null,
1869
- "euro_comments": null,
1870
- "base": "https://media.test.diydesignspace.com/uploads/Cabinet/202105170412_63/gltf/B12.gltf",
1871
- "base_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202507103427_10440/door_1/B12_door_concord.gltf",
1872
- "door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf",
1873
- "base_drawer_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202507103427_10440/drawer_1/B12_interior_drawer.gltf",
1874
- "base_drawer_door_1": "https://media.test.diydesignspace.com/uploads/CabinetDoorStyle/202507103427_10440/drawer_door_1/B12_drawer_door_concord.gltf",
1875
- "drawer_door_handle_1": "https://media.test.diydesignspace.com/uploads/DoorHandle/202107293524_27/gltf/Handle1.gltf"
1876
- }
1877
- }
1878
- ]
1879
- },
1880
- "layoutpos": "Base",
1881
- "is_corner": 0,
1882
- "alti": 0,
1883
- "obj_property": {
1884
- "manufacturer": "USCD",
1885
- "door_style": null,
1886
- "sku_number": "B12",
1887
- "door_category": null,
1888
- "cabinet_category": "Single Door Base Cabinets",
1889
- "skuArray": [
1890
- {
1891
- "door_color_id": 122,
1892
- "sku": "B12"
1893
- },
1894
- {
1895
- "door_color_id": 123,
1896
- "sku": "B12"
1897
- },
1898
- {
1899
- "door_color_id": 124,
1900
- "sku": "B12"
1901
- },
1902
- {
1903
- "door_color_id": 125,
1904
- "sku": "B12"
1905
- },
1906
- {
1907
- "door_color_id": 199,
1908
- "sku": "B12"
1909
- }
1910
- ],
1911
- "has_single_door": true
1912
- },
1913
- "outline": null
1914
- }