@colijnit/homedecorator 262.1.2 → 262.1.3
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/render/render-progress/render-progress.component.scss +57 -10
- package/app/plugins/room-planner/components/configuration-preset-loader/configuration-preset-loader.component.scss +65 -0
- package/fesm2022/colijnit-homedecorator.mjs +1029 -1238
- package/fesm2022/colijnit-homedecorator.mjs.map +1 -1
- package/index.d.ts +133 -174
- package/package.json +2 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@import '../../../../style/variables';
|
|
1
2
|
.render-progress-model {
|
|
2
3
|
position: fixed;
|
|
3
4
|
top: 0;
|
|
@@ -40,14 +41,10 @@
|
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
.model-content-container {
|
|
44
|
+
display: flex;
|
|
45
|
+
justify-content: center;
|
|
43
46
|
padding: 20px;
|
|
44
47
|
|
|
45
|
-
.progress-text {
|
|
46
|
-
text-align: center;
|
|
47
|
-
margin-top: 10px;
|
|
48
|
-
display: block;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
48
|
.progress-container {
|
|
52
49
|
width: 100%;
|
|
53
50
|
height: 25px;
|
|
@@ -55,12 +52,62 @@
|
|
|
55
52
|
border-radius: 12px;
|
|
56
53
|
overflow: hidden;
|
|
57
54
|
}
|
|
58
|
-
|
|
59
|
-
|
|
55
|
+
.progress-bar {
|
|
56
|
+
position: relative;
|
|
57
|
+
width: 100%;
|
|
58
|
+
height: 18px;
|
|
59
|
+
overflow: hidden;
|
|
60
|
+
border-radius: 999px;
|
|
61
|
+
background-color: #e5e7eb;
|
|
62
|
+
}
|
|
63
|
+
.progress-bar-text {
|
|
64
|
+
position: absolute;
|
|
65
|
+
inset: 0;
|
|
66
|
+
color: $hd-color-primary;
|
|
67
|
+
display: flex;
|
|
68
|
+
align-items: center;
|
|
69
|
+
justify-content: center;
|
|
70
|
+
}
|
|
71
|
+
.progress-bar-fill {
|
|
60
72
|
height: 100%;
|
|
61
|
-
|
|
62
|
-
|
|
73
|
+
width: 0;
|
|
74
|
+
//background-color: #da9803;
|
|
75
|
+
background: linear-gradient(90deg, $hd-color-main, white);
|
|
76
|
+
transition: width 0.3s ease;
|
|
77
|
+
}
|
|
78
|
+
.loading-dots {
|
|
79
|
+
display: inline-flex;
|
|
80
|
+
gap: 2px;
|
|
81
|
+
margin-left: 4px;
|
|
82
|
+
}
|
|
83
|
+
.loading-dots span {
|
|
84
|
+
width: 4px;
|
|
85
|
+
height: 4px;
|
|
86
|
+
border-radius: 50%;
|
|
87
|
+
background-color: $hd-color-primary;
|
|
88
|
+
opacity: 0.25;
|
|
89
|
+
animation: loading-dot 1.2s infinite ease-in-out;
|
|
90
|
+
}
|
|
91
|
+
.loading-dots span:nth-child(2) {
|
|
92
|
+
animation-delay: 0.2s;
|
|
93
|
+
}
|
|
94
|
+
.loading-dots span:nth-child(3) {
|
|
95
|
+
animation-delay: 0.4s;
|
|
63
96
|
}
|
|
64
97
|
}
|
|
65
98
|
}
|
|
66
99
|
}
|
|
100
|
+
|
|
101
|
+
@keyframes loading-dot {
|
|
102
|
+
0%,
|
|
103
|
+
80%,
|
|
104
|
+
100% {
|
|
105
|
+
opacity: 0.25;
|
|
106
|
+
transform: translateY(0);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
40% {
|
|
110
|
+
opacity: 1;
|
|
111
|
+
transform: translateY(-2px);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
.co-configurator-preset-loader {
|
|
2
|
+
|
|
3
|
+
.configurator-preset-loader-container {
|
|
4
|
+
position: fixed;
|
|
5
|
+
background: #fff;
|
|
6
|
+
right: 50px;
|
|
7
|
+
bottom: 50px;
|
|
8
|
+
width: 100%;
|
|
9
|
+
max-width: 400px;
|
|
10
|
+
min-height: 40px;
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
padding: 15px 5px;
|
|
13
|
+
display: flex;
|
|
14
|
+
justify-content: space-between;
|
|
15
|
+
align-items: center;
|
|
16
|
+
border-radius: 15px;
|
|
17
|
+
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
|
|
18
|
+
pointer-events: all; // needed for ioneJS
|
|
19
|
+
z-index: 102;
|
|
20
|
+
|
|
21
|
+
.configurator-preset-icon {
|
|
22
|
+
background: #4e9b7e;
|
|
23
|
+
border-radius: 50%;
|
|
24
|
+
width: 30px;
|
|
25
|
+
height: 30px;
|
|
26
|
+
|
|
27
|
+
.co-icon {
|
|
28
|
+
svg {
|
|
29
|
+
polygon {
|
|
30
|
+
fill: #fff;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.configurator-preset-info {
|
|
37
|
+
.preset-head {
|
|
38
|
+
text-transform: uppercase;
|
|
39
|
+
font-size: 12px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.preset-sku {
|
|
43
|
+
font-size: 18px;
|
|
44
|
+
font-weight: bold;
|
|
45
|
+
margin: 5px 0 15px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.preset-text-link {
|
|
49
|
+
font-size: 14px;
|
|
50
|
+
cursor: pointer;
|
|
51
|
+
color: #4e9b7e;
|
|
52
|
+
text-align: center;
|
|
53
|
+
&:hover {
|
|
54
|
+
text-decoration: underline;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.configurator-preset-close {
|
|
60
|
+
.co-button {
|
|
61
|
+
background: none;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|