@colijnit/homedecorator 262.1.5 → 262.1.7
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/app/core/components/dialog/co-hd-dialog.component.scss +1 -1
- package/app/plugins/render/render-controls/input-slider/input-slider.component.scss +117 -0
- package/app/plugins/render/render-controls/render-controls.component.scss +4 -40
- package/app/plugins/render/render-progress/render-progress.component.scss +2 -2
- package/app/shared/upload-model-dialog/components/model-previewer/model-preview.component.scss +159 -256
- package/app/shared/upload-model-dialog/upload-model-dialog.component.scss +30 -15
- package/assets/icons/arrow_up.svg +1 -0
- package/assets/icons/crosshair_regular_full.svg +1 -0
- package/assets/icons/cube_regular.svg +1 -0
- package/assets/icons/sliders_solid_full.svg +1 -0
- package/fesm2022/colijnit-homedecorator.mjs +1909 -1654
- package/fesm2022/colijnit-homedecorator.mjs.map +1 -1
- package/index.d.ts +147 -55
- package/package.json +1 -1
- package/style/_variables.scss +11 -6
- package/style/homedecorator-globals.scss +5 -5
- package/style/material.scss +0 -3
- package/style/styles.scss +19 -9
package/style/styles.scss
CHANGED
|
@@ -141,13 +141,13 @@ canvas {
|
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
#material_color_dialog, #upload_model_dialog {
|
|
144
|
-
max-height:
|
|
145
|
-
width:
|
|
144
|
+
max-height: $hd-model-upload-dialog-max-height;
|
|
145
|
+
max-width: $hd-model-upload-dialog-max-width;
|
|
146
146
|
background: $hd-color-dialog-background;
|
|
147
147
|
overflow: hidden;
|
|
148
|
-
color: $hd-color-
|
|
148
|
+
color: $hd-color-font;
|
|
149
149
|
.co-list-of-values {
|
|
150
|
-
color: $hd-color-
|
|
150
|
+
color: $hd-color-font;
|
|
151
151
|
}
|
|
152
152
|
.mat-mdc-dialog-content {
|
|
153
153
|
display: flex;
|
|
@@ -157,17 +157,24 @@ canvas {
|
|
|
157
157
|
.part-material {
|
|
158
158
|
margin-top: 20px;
|
|
159
159
|
flex-basis: 100%;
|
|
160
|
-
overflow:
|
|
160
|
+
overflow-x: hidden;
|
|
161
|
+
overflow-y: auto;
|
|
161
162
|
.material-color {
|
|
162
163
|
display: block;
|
|
163
164
|
height: 40px;
|
|
164
165
|
}
|
|
165
166
|
}
|
|
166
167
|
}
|
|
167
|
-
|
|
168
|
-
#upload_model_dialog {
|
|
168
|
+
#material_color_dialog {
|
|
169
169
|
width: 800px;
|
|
170
|
+
.mat-mdc-dialog-surface {
|
|
171
|
+
padding: 24px;
|
|
172
|
+
}
|
|
170
173
|
}
|
|
174
|
+
|
|
175
|
+
//#upload_model_dialog {
|
|
176
|
+
// width: 800px;
|
|
177
|
+
//}
|
|
171
178
|
/* Viewport size natural inheritance */
|
|
172
179
|
.viewport {
|
|
173
180
|
width: 100%;
|
|
@@ -190,7 +197,7 @@ canvas {
|
|
|
190
197
|
}
|
|
191
198
|
|
|
192
199
|
.add-to-cart-button {
|
|
193
|
-
color: $add-to-cart-button
|
|
200
|
+
color: $hd-color-add-to-cart-button;
|
|
194
201
|
}
|
|
195
202
|
|
|
196
203
|
/* Flexbox utils */
|
|
@@ -403,6 +410,7 @@ canvas {
|
|
|
403
410
|
@import "@colijnit/corecomponents_v12/lib/components/list-of-values/style/material.scss";
|
|
404
411
|
@import "@colijnit/corecomponents_v12/lib/components/card/style/material.scss";
|
|
405
412
|
@import "@colijnit/corecomponents_v12/lib/components/simple-grid/style/material.scss";
|
|
413
|
+
@import "@colijnit/corecomponents_v12/lib/components/input-number-picker/style/material.scss";
|
|
406
414
|
|
|
407
415
|
|
|
408
416
|
@import "@colijnit/catalog/lib/style/catalog-globals";
|
|
@@ -445,4 +453,6 @@ canvas {
|
|
|
445
453
|
|
|
446
454
|
@import "@colijnit/modelcreation/lib/style/modelcreation-globals";
|
|
447
455
|
@import "@colijnit/modelcreation/lib/component/model-creation-page/style/material.scss";
|
|
448
|
-
@import "@colijnit/modelcreation/lib/component/
|
|
456
|
+
@import "@colijnit/modelcreation/lib/component/render-status-grid/style/material.scss";
|
|
457
|
+
@import "@colijnit/modelcreation/lib/component/file-upload/style/material.scss";
|
|
458
|
+
@import "@colijnit/modelcreation/lib/component/type-chooser/style/material.scss";
|