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