@colijnit/homedecorator 261.20.2 → 262.1.1
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/plugins/toolbar/toolbar/toolbar.component.scss +12 -0
- package/app/{plugins/model-uploader → shared/upload-model-dialog/components}/model-previewer/model-preview.component.scss +7 -1
- package/app/shared/upload-model-dialog/upload-model-dialog.component.scss +57 -0
- package/assets/icons/arrow_down_to_bracket_sharp_regular_full.svg +1 -0
- package/fesm2022/colijnit-homedecorator.mjs +9739 -9514
- package/fesm2022/colijnit-homedecorator.mjs.map +1 -1
- package/index.d.ts +271 -236
- package/package.json +11 -11
- package/style/_variables.scss +4 -0
- package/style/homedecorator-globals.scss +2 -2
- package/style/material.scss +8 -6
- package/style/styles.scss +43 -2
- package/app/core/components/tooltip/tooltip.component.scss +0 -34
- /package/app/{plugins/model-uploader → shared/upload-model-dialog/components}/model-uploader/model-upload.component.scss +0 -0
|
@@ -153,6 +153,18 @@
|
|
|
153
153
|
.right-toolbar {
|
|
154
154
|
border-radius: 0 0 0 10px;
|
|
155
155
|
padding: 0 5px 0 10px;
|
|
156
|
+
&.modified {
|
|
157
|
+
padding: 0 5px 0 0;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
.share-button {
|
|
161
|
+
height: 100%;
|
|
162
|
+
padding: 0 15px;
|
|
163
|
+
border-radius: 0 0 0 10px;
|
|
164
|
+
border: none;
|
|
165
|
+
color: #ffffff;
|
|
166
|
+
background-color: #2c67ff;
|
|
167
|
+
cursor: pointer;
|
|
156
168
|
}
|
|
157
169
|
.toolbar-icon-list {
|
|
158
170
|
display: flex;
|
|
@@ -130,6 +130,9 @@ mat-radio-group {
|
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
button {
|
|
133
|
+
display: flex;
|
|
134
|
+
justify-content: center;
|
|
135
|
+
align-items: center;
|
|
133
136
|
margin: 0 0 0 10px;
|
|
134
137
|
cursor: pointer;
|
|
135
138
|
color: #5b6875;
|
|
@@ -141,7 +144,10 @@ mat-radio-group {
|
|
|
141
144
|
height: 22px;
|
|
142
145
|
width: 22px;
|
|
143
146
|
font-size: 18px;
|
|
144
|
-
|
|
147
|
+
|
|
148
|
+
svg [fill] {
|
|
149
|
+
fill: #5b6875;
|
|
150
|
+
}
|
|
145
151
|
|
|
146
152
|
&:hover {
|
|
147
153
|
background: #da9803;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
@import "../../../style/variables";
|
|
2
|
+
:host {
|
|
3
|
+
.dialog-wrapper {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 90vh;
|
|
8
|
+
max-height: 90vh;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
}
|
|
11
|
+
.header {
|
|
12
|
+
flex: 0 0 auto;
|
|
13
|
+
display: flex;
|
|
14
|
+
column-gap: 10px;
|
|
15
|
+
align-items: center;
|
|
16
|
+
height: 70px;
|
|
17
|
+
}
|
|
18
|
+
.tab {
|
|
19
|
+
border-radius: 10px;
|
|
20
|
+
padding: 10px 15px;
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
&.active {
|
|
23
|
+
color: white;
|
|
24
|
+
background: $hd-color-active-dark;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
.content {
|
|
28
|
+
position: relative;
|
|
29
|
+
flex: 1 1 auto;
|
|
30
|
+
min-height: 0;
|
|
31
|
+
overflow: hidden;
|
|
32
|
+
display: flex;
|
|
33
|
+
width: 200%;
|
|
34
|
+
transition: left 0.3s ease;
|
|
35
|
+
}
|
|
36
|
+
.tab-content {
|
|
37
|
+
width: 50%;
|
|
38
|
+
height: 100%;
|
|
39
|
+
min-height: 0;
|
|
40
|
+
overflow: auto;
|
|
41
|
+
flex: 0 0 50%;
|
|
42
|
+
box-sizing: border-box;
|
|
43
|
+
}
|
|
44
|
+
.content-wrapper {
|
|
45
|
+
min-height: 0;
|
|
46
|
+
box-sizing: border-box;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.rp-model-preview {
|
|
50
|
+
position: fixed;
|
|
51
|
+
background: white;
|
|
52
|
+
top: 50%;
|
|
53
|
+
left: 50%;
|
|
54
|
+
transform: translate(-50%, -50%);
|
|
55
|
+
z-index: 10001;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Pro 7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2026 Fonticons, Inc.--><path d="M337 409L320 426L303 409L167 273L150 256L183.9 222.1L200.9 239.1L295.9 334.1L295.9 64L343.9 64L343.9 334.1L438.9 239.1L455.9 222.1L489.8 256L472.8 273L336.8 409zM144 408L144 528L496 528L496 384L544 384L544 576L96 576L96 384L144 384L144 408z"/></svg>
|