kitchen-simulator 5.0.0-test.17 → 5.0.0-test.19

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 (206) hide show
  1. package/package.json +8 -18
  2. package/src/@history.js +3 -0
  3. package/src/CrossSignOn.jsx +94 -0
  4. package/src/KitchenConfigurator.jsx +1526 -0
  5. package/src/KitchenConfiguratorApp.jsx +1 -1
  6. package/src/_KitchenConfigurator.jsx +3 -91
  7. package/src/components/atoms/Snackbar/index.jsx +43 -0
  8. package/src/components/atoms/radio-button/index.jsx +20 -0
  9. package/src/components/atoms/radio-button/styles.js +56 -0
  10. package/src/components/button/MainButton.jsx +157 -0
  11. package/src/components/button/ToggleMeasureButton.jsx +65 -0
  12. package/src/components/catalog-view/catalog-breadcrumb.jsx +53 -0
  13. package/src/components/catalog-view/catalog-item.jsx +229 -0
  14. package/src/components/catalog-view/catalog-list.jsx +173 -0
  15. package/src/components/catalog-view/catalog-page-item.jsx +110 -0
  16. package/src/components/catalog-view/catalog-turn-back-page-item.jsx +80 -0
  17. package/src/components/configurator/custom-configurator.jsx +77 -0
  18. package/src/components/configurator/project-configurator.jsx +120 -0
  19. package/src/components/content.jsx +136 -0
  20. package/src/components/export.js +36 -0
  21. package/src/components/firstsetting/button/styles.js +223 -0
  22. package/src/components/firstsetting/export.js +9 -0
  23. package/src/components/firstsetting/firstsetting-content-button.jsx +198 -0
  24. package/src/components/firstsetting/firstsetting-toggle-button.jsx +101 -0
  25. package/src/components/firstsetting/firstsetting.jsx +814 -0
  26. package/src/components/footerbar/button/ControlButton.jsx +43 -0
  27. package/src/components/footerbar/button/DirectionButton.jsx +54 -0
  28. package/src/components/footerbar/button/DirectionPanSpinButton.jsx +36 -0
  29. package/src/components/footerbar/button/ToggleButton.jsx +58 -0
  30. package/src/components/footerbar/button/ToggleConvertButton.jsx +48 -0
  31. package/src/components/footerbar/button/ToggleMeasureButton.jsx +33 -0
  32. package/src/components/footerbar/button/styles.js +217 -0
  33. package/src/components/footerbar/export.js +9 -0
  34. package/src/components/footerbar/footer-content-button.jsx +198 -0
  35. package/src/components/footerbar/footer-toggle-button.jsx +101 -0
  36. package/src/components/footerbar/footerbar.jsx +1103 -0
  37. package/src/components/footerbar/styles.js +263 -0
  38. package/src/components/header/button/MenuButton.jsx +46 -0
  39. package/src/components/header/button/SaveButton.jsx +54 -0
  40. package/src/components/header/button/styles.js +181 -0
  41. package/src/components/header/export.js +5 -0
  42. package/src/components/header/header.jsx +631 -0
  43. package/src/components/header/header.style.css +47 -0
  44. package/src/components/header/styles.js +320 -0
  45. package/src/components/login/Login.js +77 -0
  46. package/src/components/login/LoginForm/index.js +108 -0
  47. package/src/components/login/Register.js +82 -0
  48. package/src/components/login/RegisterForm/index.js +171 -0
  49. package/src/components/login/jwtService.js +201 -0
  50. package/src/components/login/style.css +158 -0
  51. package/src/components/login/style.scss +260 -0
  52. package/src/components/molecules/slider/index.jsx +15 -0
  53. package/src/components/molecules/slider/styles.js +0 -0
  54. package/src/components/molecules/slider/styles.scss +3 -0
  55. package/src/components/myprojects/export.js +5 -0
  56. package/src/components/myprojects/index.jsx +445 -0
  57. package/src/components/myprojects/styles.js +241 -0
  58. package/src/components/sidebar/custom-accordion.jsx +48 -0
  59. package/src/components/sidebar/export.js +15 -0
  60. package/src/components/sidebar/panel-element-editor/attributes-editor/attributes-editor.jsx +73 -0
  61. package/src/components/sidebar/panel-element-editor/attributes-editor/confirm-popup.jsx +101 -0
  62. package/src/components/sidebar/panel-element-editor/attributes-editor/hole-attributes-editor.jsx +149 -0
  63. package/src/components/sidebar/panel-element-editor/attributes-editor/item-attributes-editor.jsx +316 -0
  64. package/src/components/sidebar/panel-element-editor/attributes-editor/line-attributes-editor.jsx +108 -0
  65. package/src/components/sidebar/panel-element-editor/element-editor.jsx +1070 -0
  66. package/src/components/sidebar/panel-element-editor/multi-elements-editor.jsx +0 -0
  67. package/src/components/sidebar/panel-element-editor/panel-element-editor.jsx +104 -0
  68. package/src/components/sidebar/panel-element-editor/panel-multi-elements-editor.jsx +155 -0
  69. package/src/components/sidebar/panel-group-editor.jsx +272 -0
  70. package/src/components/sidebar/panel-groups.jsx +310 -0
  71. package/src/components/sidebar/panel-guides.jsx +192 -0
  72. package/src/components/sidebar/panel-layer-elements.jsx +298 -0
  73. package/src/components/sidebar/panel-layers.jsx +381 -0
  74. package/src/components/sidebar/panel.jsx +71 -0
  75. package/src/components/sidebar/sidebar.jsx +106 -0
  76. package/src/components/sidebar/toolbar-panel.jsx +139 -0
  77. package/src/components/sign/export.js +7 -0
  78. package/src/components/sign/main/index.jsx +523 -0
  79. package/src/components/sign/main/styles.js +163 -0
  80. package/src/components/style/button.jsx +95 -0
  81. package/src/components/style/cancel-button.jsx +20 -0
  82. package/src/components/style/content-container.jsx +29 -0
  83. package/src/components/style/content-title.jsx +20 -0
  84. package/src/components/style/delete-button.jsx +23 -0
  85. package/src/components/style/export.jsx +48 -0
  86. package/src/components/style/form-block.jsx +13 -0
  87. package/src/components/style/form-color-input.jsx +27 -0
  88. package/src/components/style/form-label.jsx +15 -0
  89. package/src/components/style/form-number-input.jsx +196 -0
  90. package/src/components/style/form-number-input_2.jsx +191 -0
  91. package/src/components/style/form-select.jsx +38 -0
  92. package/src/components/style/form-slider.jsx +36 -0
  93. package/src/components/style/form-submit-button.jsx +23 -0
  94. package/src/components/style/form-text-input.jsx +65 -0
  95. package/src/components/toolbar/button/ControlButton.jsx +41 -0
  96. package/src/components/toolbar/button/DirectionButton.jsx +34 -0
  97. package/src/components/toolbar/button/RightButton.jsx +103 -0
  98. package/src/components/toolbar/button/ToggleButton.jsx +41 -0
  99. package/src/components/toolbar/button/index.jsx +55 -0
  100. package/src/components/toolbar/button/styles.js +127 -0
  101. package/src/components/toolbar/components/DoorStyleMenu.jsx +103 -0
  102. package/src/components/toolbar/components/Pricing.jsx +126 -0
  103. package/src/components/toolbar/components/ReviewForQuote.jsx +635 -0
  104. package/src/components/toolbar/export.js +21 -0
  105. package/src/components/toolbar/main/Alert.js +122 -0
  106. package/src/components/toolbar/main/TakePictureModal.jsx +104 -0
  107. package/src/components/toolbar/main/confirm-popup.jsx +99 -0
  108. package/src/components/toolbar/main/index.jsx +5627 -0
  109. package/src/components/toolbar/main/lShaped.json +311 -0
  110. package/src/components/toolbar/main/longNarrow.json +238 -0
  111. package/src/components/toolbar/main/myComponents.js +123 -0
  112. package/src/components/toolbar/main/oRectangle.json +220 -0
  113. package/src/components/toolbar/main/rectangle.json +238 -0
  114. package/src/components/toolbar/main/style.css +107 -0
  115. package/src/components/toolbar/main/styles.js +696 -0
  116. package/src/components/toolbar/plugin-item.jsx +123 -0
  117. package/src/components/toolbar/popup/appliance/appliance-category/index.jsx +73 -0
  118. package/src/components/toolbar/popup/appliance/choose-appliance/index.jsx +102 -0
  119. package/src/components/toolbar/popup/appliance/index.jsx +83 -0
  120. package/src/components/toolbar/popup/autosaveprompt/index.jsx +150 -0
  121. package/src/components/toolbar/popup/autosaveprompt/styles.css +64 -0
  122. package/src/components/toolbar/popup/autosaveprompt/styles.js +40 -0
  123. package/src/components/toolbar/popup/cabinet/cabinet-category/index.jsx +73 -0
  124. package/src/components/toolbar/popup/cabinet/choose-product/index.jsx +119 -0
  125. package/src/components/toolbar/popup/cabinet/index.jsx +85 -0
  126. package/src/components/toolbar/popup/doorStyle/choose-style/index.jsx +63 -0
  127. package/src/components/toolbar/popup/doorStyle/index.jsx +71 -0
  128. package/src/components/toolbar/popup/doorStyle/style-category/index.jsx +139 -0
  129. package/src/components/toolbar/popup/downloadsummary/downloadSummaryContext.js +2 -0
  130. package/src/components/toolbar/popup/downloadsummary/downloadSummaryTemp.jsx +157 -0
  131. package/src/components/toolbar/popup/downloadsummary/index.jsx +643 -0
  132. package/src/components/toolbar/popup/downloadsummary/show2D/show2DView.jsx +51 -0
  133. package/src/components/toolbar/popup/downloadsummary/show2D/viewer2DDownLoad.jsx +175 -0
  134. package/src/components/toolbar/popup/downloadsummary/show3D/show3DView.jsx +283 -0
  135. package/src/components/toolbar/popup/downloadsummary/show3D/viewer3DDownLoad.jsx +2257 -0
  136. package/src/components/toolbar/popup/downloadsummary/showCabinetInfo.js +93 -0
  137. package/src/components/toolbar/popup/downloadsummary/showElevation/showElevationView.jsx +132 -0
  138. package/src/components/toolbar/popup/downloadsummary/showElevation/viewer3DElevationDownload.jsx +2198 -0
  139. package/src/components/toolbar/popup/downloadsummary/showElevation/viewerElevationDownload.jsx +152 -0
  140. package/src/components/toolbar/popup/downloadsummary/showWarranty.jsx +149 -0
  141. package/src/components/toolbar/popup/downloadsummary/styles.css +177 -0
  142. package/src/components/toolbar/popup/downloadsummary/styles.js +453 -0
  143. package/src/components/toolbar/popup/finishingtouch/category/index.jsx +34 -0
  144. package/src/components/toolbar/popup/finishingtouch/index.jsx +58 -0
  145. package/src/components/toolbar/popup/finishingtouch/material-edit.jsx +112 -0
  146. package/src/components/toolbar/popup/finishingtouch/product/index.jsx +116 -0
  147. package/src/components/toolbar/popup/floorplan/choose-floor/confirm-popup.jsx +101 -0
  148. package/src/components/toolbar/popup/floorplan/choose-floor/index.jsx +254 -0
  149. package/src/components/toolbar/popup/floorplan/choose-floor/lShaped.json +311 -0
  150. package/src/components/toolbar/popup/floorplan/choose-floor/longNarrow.json +238 -0
  151. package/src/components/toolbar/popup/floorplan/choose-floor/oRectangle.json +220 -0
  152. package/src/components/toolbar/popup/floorplan/choose-floor/rectangle.json +238 -0
  153. package/src/components/toolbar/popup/floorplan/choose-floor/styles.js +86 -0
  154. package/src/components/toolbar/popup/floorplan/floor-category/index.jsx +109 -0
  155. package/src/components/toolbar/popup/floorplan/index.jsx +60 -0
  156. package/src/components/toolbar/popup/index.jsx +241 -0
  157. package/src/components/toolbar/popup/newproject/index.jsx +59 -0
  158. package/src/components/toolbar/popup/newproject/styles.css +64 -0
  159. package/src/components/toolbar/popup/newproject/styles.js +41 -0
  160. package/src/components/toolbar/popup/product/appliance.jsx +54 -0
  161. package/src/components/toolbar/popup/product/cabinetproduct.jsx +15 -0
  162. package/src/components/toolbar/popup/product/doorstyle.jsx +58 -0
  163. package/src/components/toolbar/popup/product/doorstyleproduct.jsx +47 -0
  164. package/src/components/toolbar/popup/product/floor.jsx +36 -0
  165. package/src/components/toolbar/popup/product/floorproduct.jsx +42 -0
  166. package/src/components/toolbar/popup/product/index.jsx +36 -0
  167. package/src/components/toolbar/popup/product/primary.jsx +77 -0
  168. package/src/components/toolbar/popup/product/productline.jsx +93 -0
  169. package/src/components/toolbar/popup/product/reviewItem.jsx +427 -0
  170. package/src/components/toolbar/popup/product/reviewMolding.jsx +310 -0
  171. package/src/components/toolbar/popup/product/style.css +54 -0
  172. package/src/components/toolbar/popup/product/styles.js +260 -0
  173. package/src/components/toolbar/popup/savedesign/FullPictureForm.jsx +146 -0
  174. package/src/components/toolbar/popup/savedesign/index.jsx +495 -0
  175. package/src/components/toolbar/popup/savedesign/savedesign.style.css +16 -0
  176. package/src/components/toolbar/popup/savedesign/styles.js +151 -0
  177. package/src/components/toolbar/popup/setDoorStyleOption/index.jsx +87 -0
  178. package/src/components/toolbar/popup/styles.js +909 -0
  179. package/src/components/toolbar/popup/submitforquote/AddToCartOptions.jsx +192 -0
  180. package/src/components/toolbar/popup/submitforquote/CustomerRequestsForm.jsx +96 -0
  181. package/src/components/toolbar/popup/submitforquote/SkipDesignerReview.jsx +54 -0
  182. package/src/components/toolbar/popup/submitforquote/StepDots.jsx +25 -0
  183. package/src/components/toolbar/popup/submitforquote/cart-choice.jsx +116 -0
  184. package/src/components/toolbar/popup/submitforquote/doorstyle-menus.js +38 -0
  185. package/src/components/toolbar/popup/submitforquote/index.jsx +698 -0
  186. package/src/components/toolbar/popup/submitforquote/styles.css +105 -0
  187. package/src/components/toolbar/popup/submitforquote/styles.js +294 -0
  188. package/src/components/toolbar/popup/submitprompt/index.jsx +89 -0
  189. package/src/components/toolbar/popup/submitprompt/styles.css +64 -0
  190. package/src/components/toolbar/popup/submitprompt/styles.js +42 -0
  191. package/src/components/toolbar/toolbar-button.jsx +90 -0
  192. package/src/components/toolbar/toolbar-load-button.jsx +36 -0
  193. package/src/components/toolbar/toolbar-save-button.jsx +32 -0
  194. package/src/components/tutorial-view/Modal.jsx +584 -0
  195. package/src/components/tutorial-view/style.css +111 -0
  196. package/src/components/tutorial-view/styles.js +65 -0
  197. package/src/components/wizardstep/button/styles.js +677 -0
  198. package/src/components/wizardstep/export.js +5 -0
  199. package/src/components/wizardstep/index.jsx +1372 -0
  200. package/src/components/wizardstep/styles.js +688 -0
  201. package/src/components/wizardstep/wizardstep-content-button.jsx +198 -0
  202. package/src/components/wizardstep/wizardstep-toggle-button.jsx +101 -0
  203. package/src/{_index.js → index.js} +4 -4
  204. package/src/renderer.jsx +466 -0
  205. package/src/actions/_export.js +0 -35
  206. package/src/components/_export.js +0 -11
@@ -0,0 +1,677 @@
1
+ import {
2
+ BG_COLOR_1,
3
+ BG_COLOR_HOVER,
4
+ SECONDARY_PURPLE_COLOR,
5
+ TEXT_COLOR_NEUTRAL_0,
6
+ TEXT_COLOR_NEUTRAL_1,
7
+ TEXT_COLOR_NEUTRAL_2,
8
+ TEXT_COLOR_NEUTRAL_3,
9
+ TEXT_COLOR_NEUTRAL_4,
10
+ TEXT_COLOR_NEUTRAL_5,
11
+ DEFAULT_FONT_FAMILY,
12
+ SHADE_LIGHT_PURPLE_COLOR,
13
+ SHADE_DARK_PURPLE_COLOR,
14
+ BG_COLOR_0
15
+ } from '../../../constants';
16
+ import styled from 'styled-components';
17
+
18
+ export const WizardIntro = styled.div`
19
+ position: absolute;
20
+ left: 0;
21
+ top: 60px;
22
+ width: 100%;
23
+ height: calc(100% - 60px);
24
+ display: flex;
25
+ `;
26
+
27
+ export const IntroPlane = styled.div`
28
+ position: relative;
29
+ margin: auto;
30
+ width: 700px;
31
+ padding: 50px 70px;
32
+ user-select: none;
33
+ text-align: center;
34
+ border-radius: 10px;
35
+ z-index: 10;
36
+ flex-flow: column;
37
+ background-color: rgb(255, 255, 255);
38
+ box-shadow: 0px 3px 5px -1px rgba(156, 154, 154, 0.2),
39
+ 0px 6px 10px 0px rgba(156, 154, 154, 0.39),
40
+ 0px 1px 18px 0px rgba(156, 154, 154, 0.12);
41
+ `;
42
+
43
+ export const IntroMark = styled.div`
44
+ margin-bottom: 20px;
45
+ `;
46
+
47
+ export const IntroTitle = styled.div`
48
+ font-size: 26px;
49
+ font-weight: 700;
50
+ line-height: 36px;
51
+ margin-bottom: 10px;
52
+ `;
53
+
54
+ export const IntroDescription = styled.div`
55
+ font-size: 14px;
56
+ font-weight: 400;
57
+ line-height: 22px;
58
+ `;
59
+
60
+ export const IntroSelect = styled.div`
61
+ display: flex;
62
+ justify-content: space-around;
63
+ margin-top: 40px;
64
+ `;
65
+
66
+ export const IntroItem = styled.div`
67
+ display: block;
68
+ text-align: center;
69
+ img {
70
+ cursor: pointer;
71
+ }
72
+ `;
73
+
74
+ export const IntroItemText = styled.div`
75
+ margin-top: 10px;
76
+ font-size: 14px;
77
+ font-weight: 600;
78
+ line-height: 18px;
79
+ `;
80
+
81
+ export const WizardStepWrapper = styled.div`
82
+ position: absolute;
83
+ left: 25px;
84
+ top: 90px;
85
+ z-index: 10;
86
+ flex-flow: column;
87
+ background-color: rgb(255, 255, 255);
88
+ box-shadow: 0px 3px 5px -1px rgba(156, 154, 154, 0.2),
89
+ 0px 6px 10px 0px rgba(156, 154, 154, 0.39),
90
+ 0px 1px 18px 0px rgba(156, 154, 154, 0.12);
91
+ border-radius: 10px;
92
+ padding: 25px;
93
+ user-select: none;
94
+ max-height: calc(100vh - 110px);
95
+ display: flex;
96
+ max-width: calc(100vw - 50px);
97
+ overflow-y: auto;
98
+ `;
99
+
100
+ export const TitleBarWrapper = styled.div`
101
+ display: flex;
102
+ align-items: center;
103
+ justify-content: space-between;
104
+ position: relative;
105
+ `;
106
+
107
+ export const TitleBar = styled.div`
108
+ font-size: 26px;
109
+ font-family: ${DEFAULT_FONT_FAMILY};
110
+ font-weight: 700;
111
+ line-height: 36px;
112
+ color: ${TEXT_COLOR_NEUTRAL_0};
113
+ text-align: left;
114
+ `;
115
+
116
+ export const TitleBarButtonWrapper = styled.div`
117
+ display: flex;
118
+ align-items: center;
119
+ `;
120
+
121
+ export const TitleBarButton = styled.button`
122
+ display: flex;
123
+ cursor: pointor;
124
+ align-items: center;
125
+ color: ${SECONDARY_PURPLE_COLOR};
126
+ outline: 0;
127
+
128
+ @media screen and (min-width: 1024) {
129
+ font-size: 11px;
130
+ }
131
+ @media screen and (max-width: 1024) {
132
+ font-size: 11px;
133
+ }
134
+ @media screen and (min-width: 1366) {
135
+ font-size: 13px;
136
+ }
137
+ @media screen and (max-width: 1366) {
138
+ font-size: 13px;
139
+ }
140
+ @media screen and (min-width: 1440) {
141
+ font-size: 16px;
142
+ }
143
+ @media screen and (max-width: 1440) {
144
+ font-size: 16px;
145
+ }
146
+ font-family: ${DEFAULT_FONT_FAMILY};
147
+ font-weight: 600;
148
+ font-size: 16px;
149
+ margin-left: 10px;
150
+ padding: 8px 14px;
151
+ border: 1px solid;
152
+ justify-content: center;
153
+ cursor: pointer;
154
+ border-radius: 5px;
155
+ line-height: 22px;
156
+ text-align: center;
157
+ background-color: ${BG_COLOR_1};
158
+ :hover {
159
+ background-color: ${BG_COLOR_0};
160
+ }
161
+ :active {
162
+ background-color: ${BG_COLOR_0};
163
+ }
164
+ :focus {
165
+ // box-shadow: 0px 0px 8px 2px ${SECONDARY_PURPLE_COLOR};
166
+ }
167
+ `;
168
+
169
+ export const ConfirmButton = styled.button`
170
+ display: flex;
171
+ cursor: pointor;
172
+ align-items: center;
173
+ color: ${BG_COLOR_1};
174
+ background-color: ${SECONDARY_PURPLE_COLOR};
175
+
176
+ @media screen and (min-width: 1024) {
177
+ font-size: 11px;
178
+ }
179
+ @media screen and (max-width: 1024) {
180
+ font-size: 11px;
181
+ }
182
+ @media screen and (min-width: 1366) {
183
+ font-size: 13px;
184
+ }
185
+ @media screen and (max-width: 1366) {
186
+ font-size: 13px;
187
+ }
188
+ @media screen and (min-width: 1440) {
189
+ font-size: 16px;
190
+ }
191
+ @media screen and (max-width: 1440) {
192
+ font-size: 16px;
193
+ }
194
+ font-family: ${DEFAULT_FONT_FAMILY};
195
+ font-weight: 600;
196
+ font-size: 16px;
197
+ margin-left: 10px;
198
+ padding: 8px 14px;
199
+ border: 1px solid ${SECONDARY_PURPLE_COLOR};
200
+ justify-content: center;
201
+ cursor: pointer;
202
+ border-radius: 5px;
203
+ line-height: 22px;
204
+ text-align: center;
205
+ :hover {
206
+ background-color: ${SHADE_LIGHT_PURPLE_COLOR};
207
+ border-color: ${SHADE_LIGHT_PURPLE_COLOR};
208
+ }
209
+ :active {
210
+ background-color: ${SHADE_DARK_PURPLE_COLOR};
211
+ border-color: ${SHADE_DARK_PURPLE_COLOR};
212
+ }
213
+ `;
214
+
215
+ export const StepBarWrapper = styled.div`
216
+ align-items: flex-start;
217
+ flex-direction: row;
218
+ display: flex;
219
+ padding: 25px;
220
+ box-shadow: none;
221
+ color: rgba(0, 0, 0, 0.87);
222
+ transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
223
+ background-color: ${BG_COLOR_1};
224
+ `;
225
+
226
+ export const StepBullet = styled.div`
227
+ flex-direction: column;
228
+ flex: 1;
229
+ position: relative;
230
+ min-width: 230px;
231
+ max-width: 230px;
232
+ display: flex;
233
+ align-items: center;
234
+ `;
235
+
236
+ export const StepBulletLabel = styled.span`
237
+ margin-bottom: 5px;
238
+ text-align: center;
239
+ color: ${TEXT_COLOR_NEUTRAL_1};
240
+ display: block;
241
+ font-size: 16px;
242
+ font-family: ${DEFAULT_FONT_FAMILY};
243
+ font-weight: 600;
244
+ line-height: 22px;
245
+ text-align: center;
246
+ `;
247
+
248
+ export const StepBulletIcon = styled.img`
249
+ justify-content: center;
250
+ display: flex;
251
+ flex-shrink: 0;
252
+ cursor: pointer;
253
+ width: 16px;
254
+ `;
255
+
256
+ export const StepBarIcon = styled.img`
257
+ width: 250px;
258
+ display: block;
259
+ `;
260
+
261
+ export const ContentWrapper = styled.div`
262
+ display: flex;
263
+ flex-direction: column;
264
+ margin-top: 30px;
265
+ `;
266
+
267
+ export const ContentWrapper1 = styled.div`
268
+ display: flex;
269
+ margin-top: 20px;
270
+ `;
271
+
272
+ export const ContentItem = styled.div`
273
+ display: flex;
274
+ position: relative;
275
+ flex-direction: column;
276
+ align-items: center;
277
+ margin-right: 30px;
278
+ cursor: pointer;
279
+ img#check {
280
+ display: none;
281
+ }
282
+ span#hint {
283
+ display: none;
284
+ }
285
+ :hover {
286
+ img#check {
287
+ display: block;
288
+ background-color: ${BG_COLOR_HOVER};
289
+ z-index: 1;
290
+ }
291
+ span#hint {
292
+ display: block;
293
+ }
294
+ }
295
+ `;
296
+
297
+ export const ContentItemLabel = styled.span`
298
+ margin-top: 10px;
299
+ color: ${TEXT_COLOR_NEUTRAL_0};
300
+ margin-bottom: 7px;
301
+ font-family: ${DEFAULT_FONT_FAMILY};
302
+ /* @media screen and (min-width : 1024){font-size : 11px;}
303
+ @media screen and (max-width : 1024){font-size : 11px;}
304
+ @media screen and (min-width : 1366){font-size : 13px;}
305
+ @media screen and (max-width : 1366){font-size : 13px;}
306
+ @media screen and (min-width : 1440){font-size : 16px;}
307
+ @media screen and (max-width : 1440){font-size : 16px;} */
308
+ font-weight: 600;
309
+ font-size: 16px;
310
+ line-height: 22px;
311
+ text-align: center;
312
+ cursor: pointer;
313
+ `;
314
+
315
+ export const MeasurementUnitLabel = styled.span`
316
+ position: absolute;
317
+ left: 8px;
318
+
319
+ @media screen and (min-width: 1024) {
320
+ font-size: 11px;
321
+ }
322
+ @media screen and (max-width: 1024) {
323
+ font-size: 11px;
324
+ }
325
+ @media screen and (min-width: 1366) {
326
+ font-size: 13px;
327
+ }
328
+ @media screen and (max-width: 1366) {
329
+ font-size: 13px;
330
+ }
331
+ @media screen and (min-width: 1440) {
332
+ font-size: 16px;
333
+ }
334
+ @media screen and (max-width: 1440) {
335
+ font-size: 16px;
336
+ }
337
+ line-height: 22px;
338
+ padding: 0px 8px;
339
+ top: -9px;
340
+ font-weight: 400;
341
+ font-size: 16px;
342
+ text-align: left;
343
+ background-color: ${BG_COLOR_1};
344
+ color: ${TEXT_COLOR_NEUTRAL_1};
345
+ font-family: ${DEFAULT_FONT_FAMILY};
346
+ `;
347
+
348
+ export const MeasurementUnitSelect = styled.div`
349
+ cursor: pointer;
350
+ width: 170px;
351
+ padding: 15px 15px;
352
+ color: ${TEXT_COLOR_NEUTRAL_0};
353
+
354
+ @media screen and (min-width: 1024) {
355
+ font-size: 11px;
356
+ }
357
+ @media screen and (max-width: 1024) {
358
+ font-size: 11px;
359
+ }
360
+ @media screen and (min-width: 1366) {
361
+ font-size: 13px;
362
+ }
363
+ @media screen and (max-width: 1366) {
364
+ font-size: 13px;
365
+ }
366
+ @media screen and (min-width: 1440) {
367
+ font-size: 16px;
368
+ }
369
+ @media screen and (max-width: 1440) {
370
+ font-size: 16px;
371
+ }
372
+ font-weight: 600;
373
+ line-height: 18px;
374
+ text-align: left;
375
+ font-family: ${DEFAULT_FONT_FAMILY};
376
+ border-radius: 5px;
377
+ border: 2px solid ${TEXT_COLOR_NEUTRAL_3};
378
+ `;
379
+
380
+ export const MeasurementUnitOption = styled.div`
381
+ padding: 12px 20px;
382
+
383
+ @media screen and (min-width: 1024) {
384
+ font-size: 11px;
385
+ }
386
+ @media screen and (max-width: 1024) {
387
+ font-size: 11px;
388
+ }
389
+ @media screen and (min-width: 1366) {
390
+ font-size: 13px;
391
+ }
392
+ @media screen and (max-width: 1366) {
393
+ font-size: 13px;
394
+ }
395
+ @media screen and (min-width: 1440) {
396
+ font-size: 16px;
397
+ }
398
+ @media screen and (max-width: 1440) {
399
+ font-size: 16px;
400
+ }
401
+ font-family: ${DEFAULT_FONT_FAMILY};
402
+ color: ${TEXT_COLOR_NEUTRAL_0};
403
+ line-height: 22px;
404
+ text-align: left;
405
+ font-size: 16px;
406
+ font-weight: 600;
407
+ cursor: pointer;
408
+ :hover {
409
+ background-color: ${BG_COLOR_HOVER};
410
+ }
411
+ `;
412
+
413
+ export const SelectArrow = styled.img`
414
+ position: absolute;
415
+ right: 15px;
416
+ width: 15px;
417
+ height: 9px;
418
+ background-color: ${TEXT_COLOR_NEUTRAL_3};
419
+ -webkit-mask-image: url(${props => props.maskImage + '?nocache=2025'});
420
+ -webkit-mask-size: 100% 100%;
421
+ -webkit-mask-repeat: no-repeat;
422
+ `;
423
+
424
+ export const CeilingHeight = styled.input`
425
+ padding: 15px 15px;
426
+ padding-right: 105px;
427
+ color: ${TEXT_COLOR_NEUTRAL_0};
428
+
429
+ @media screen and (min-width: 1024) {
430
+ font-size: 11px;
431
+ }
432
+ @media screen and (max-width: 1024) {
433
+ font-size: 11px;
434
+ }
435
+ @media screen and (min-width: 1366) {
436
+ font-size: 13px;
437
+ }
438
+ @media screen and (max-width: 1366) {
439
+ font-size: 13px;
440
+ }
441
+ @media screen and (min-width: 1440) {
442
+ font-size: 16px;
443
+ }
444
+ @media screen and (max-width: 1440) {
445
+ font-size: 16px;
446
+ }
447
+ font-weight: 600;
448
+ line-height: 22px;
449
+ width: 150px;
450
+ font-size: 16px;
451
+ text-align: left;
452
+ font-family: ${DEFAULT_FONT_FAMILY};
453
+ border: 2px solid ${TEXT_COLOR_NEUTRAL_3};
454
+ border-radius: 5px;
455
+ outline: 0;
456
+ :focus {
457
+ border-color: ${SECONDARY_PURPLE_COLOR};
458
+ }
459
+ :hover {
460
+ border-color: ${SECONDARY_PURPLE_COLOR};
461
+ }
462
+ `;
463
+
464
+ export const RoomContentImage = styled.img`
465
+ height: 120px;
466
+ width: 120px;
467
+ z-index: 2;
468
+ background-color: ${TEXT_COLOR_NEUTRAL_3};
469
+ -webkit-mask-image: url(${props => props.maskImage + '?nocache=2025'});
470
+ -webkit-mask-size: 100% 100%;
471
+ -webkit-mask-repeat: no-repeat;
472
+ `;
473
+
474
+ export const ContentCheckImage = styled.img`
475
+ position: absolute;
476
+ height: 120px;
477
+ width: 120px;
478
+ padding: 45px;
479
+ cursor: pointer;
480
+ z-index: 2;
481
+ `;
482
+
483
+ export const ColorContentItem = styled.div`
484
+ display: flex;
485
+ position: relative;
486
+ flex-direction: column;
487
+ align-items: center;
488
+ margin-right: 10px;
489
+ img#check {
490
+ display: none;
491
+ }
492
+ :hover {
493
+ img#check {
494
+ display: block;
495
+ border: 2px solid ${SECONDARY_PURPLE_COLOR};
496
+ border-radius: 50%;
497
+ }
498
+ }
499
+ `;
500
+
501
+ export const ColorContentImage = styled.img`
502
+ height: 70px;
503
+ width: 70px;
504
+ cursor: pointer;
505
+ border-radius: 50%;
506
+ border: 1px solid ${TEXT_COLOR_NEUTRAL_4};
507
+ `;
508
+
509
+ export const DoorStyleContentItem = styled.div`
510
+ display: flex;
511
+ position: relative;
512
+ flex-direction: column;
513
+ align-items: center;
514
+ margin-right: 10px;
515
+ cursor: pointer;
516
+ width: max-content;
517
+ margin-right: 30px;
518
+ img#check {
519
+ display: none;
520
+ }
521
+ :hover {
522
+ img#check {
523
+ display: block;
524
+ background-color: ${TEXT_COLOR_NEUTRAL_5};
525
+ z-index: 1;
526
+ }
527
+ div#item {
528
+ background-color: ${BG_COLOR_HOVER};
529
+ }
530
+ }
531
+ `;
532
+
533
+ export const DoorStyleContentImageWrapper = styled.div`
534
+ height: 120px;
535
+ width: 120px;
536
+ z-index: 2;
537
+ border-radius: 10px;
538
+ border: 2px solid ${TEXT_COLOR_NEUTRAL_3};
539
+ `;
540
+
541
+ export const DoorStyleContentImage = styled.img`
542
+ height: 120px;
543
+ background-color: ${TEXT_COLOR_NEUTRAL_3};
544
+ width: 120px;
545
+ border-radius: 10px;
546
+ z-index: 2;
547
+ -webkit-mask-image: url(${props => props.maskImage + '?nocache=2025'});
548
+ -webkit-mask-size: calc(100% - 50px) calc(100% - 50px);
549
+ -webkit-mask-repeat: no-repeat;
550
+ -webkit-mask-position: 25px 25px;
551
+ `;
552
+
553
+ export const DoorCategoryContentImageWrapper = styled.div`
554
+ width: 120px;
555
+ display: flex;
556
+ justify-content: center;
557
+ border-radius: 10px;
558
+ :hover {
559
+ background-color: ${BG_COLOR_HOVER};
560
+ }
561
+ `;
562
+
563
+ export const DoorCategoryContentImage = styled.img`
564
+ height: 120px;
565
+ background-color: ${TEXT_COLOR_NEUTRAL_3};
566
+ width: 120px;
567
+ border-radius: 10px;
568
+ z-index: 2;
569
+ -webkit-mask-image: url(${props => props.maskImage + '?nocache=2025'});
570
+ -webkit-mask-size: calc(100% - 50px) calc(100% - 50px);
571
+ -webkit-mask-repeat: no-repeat;
572
+ -webkit-mask-position: 25px 25px;
573
+ `;
574
+
575
+ export const FinishContentImage = styled.img`
576
+ height: 120px;
577
+ z-index: 2;
578
+ `;
579
+
580
+ export const ContentWrapper2 = styled.div`
581
+ display: flex;
582
+ flex-direction: column;
583
+ margin-right: 30px;
584
+ align-items: center;
585
+ `;
586
+
587
+ export const DoorStyleWrapper = styled.div`
588
+ display: flex;
589
+ margin-top: 20px;
590
+ flex-wrap: wrap;
591
+ overflow-y: scroll;
592
+ max-height: calc(100vh - 250px);
593
+ `;
594
+
595
+ export const Title = styled.span`
596
+ font-size: 16px;
597
+ font-weight: 400;
598
+ line-height: 22px;
599
+ text-align: left;
600
+ font-family: ${DEFAULT_FONT_FAMILY};
601
+ color: ${TEXT_COLOR_NEUTRAL_0};
602
+ `;
603
+
604
+ export const MaskImageWrapper = styled.div`
605
+ height: 120px;
606
+ width: 120px;
607
+ z-index: 2;
608
+ `;
609
+
610
+ export const DialogContent = styled.span`
611
+ font-family: ${DEFAULT_FONT_FAMILY};
612
+ color: ${TEXT_COLOR_NEUTRAL_1};
613
+ padding: 10px 30px;
614
+ padding-top: 30px;
615
+ `;
616
+
617
+ export const DialogAction = styled.div`
618
+ display: flex;
619
+ justify-content: center;
620
+ padding: 15px 30px 25px;
621
+ `;
622
+
623
+ export const Button = styled.div`
624
+ padding: 10px 20px;
625
+ cursor: pointer;
626
+ margin-right: 10px;
627
+ color: ${SECONDARY_PURPLE_COLOR};
628
+ font-weight: bold;
629
+ font-family: ${DEFAULT_FONT_FAMILY};
630
+ font-size: 16px;
631
+ border-radius: 20px;
632
+ :hover {
633
+ background-color: ${BG_COLOR_HOVER};
634
+ }
635
+ `;
636
+
637
+ export const Description = styled.span`
638
+ font-family: ${DEFAULT_FONT_FAMILY};
639
+ color: ${TEXT_COLOR_NEUTRAL_0};
640
+ @media screen and (min-width: 1024) {
641
+ font-size: 11px;
642
+ }
643
+ @media screen and (max-width: 1024) {
644
+ font-size: 11px;
645
+ }
646
+ @media screen and (min-width: 1366) {
647
+ font-size: 13px;
648
+ }
649
+ @media screen and (max-width: 1366) {
650
+ font-size: 13px;
651
+ }
652
+ @media screen and (min-width: 1440) {
653
+ font-size: 16px;
654
+ }
655
+ @media screen and (max-width: 1440) {
656
+ font-size: 16px;
657
+ }
658
+ font-weight: 400;
659
+ line-height: 22px;
660
+ text-align: left;
661
+ font-size: 16px;
662
+ `;
663
+
664
+ export const FinishContentImageWrapper = styled.div`
665
+ display: flex;
666
+ height: 254px;
667
+ width: 127px;
668
+ align-items: center;
669
+ justify-content: center;
670
+ border-radius: 10px;
671
+ overflow: hidden;
672
+ max-height: 238px;
673
+ min-height: 238px;
674
+ :hover {
675
+ background-color: ${TEXT_COLOR_NEUTRAL_5};
676
+ }
677
+ `;
@@ -0,0 +1,5 @@
1
+ import WizardStep from './index';
2
+
3
+ export default {
4
+ WizardStep
5
+ };