ui-soxo-bootstrap-core 2.6.1-dev.17 → 2.6.1-dev.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/core/components/index.js +2 -11
- package/core/components/landing-api/landing-api.js +4 -11
- package/core/components/license-management/license-alert.js +97 -0
- package/core/lib/components/global-header/animations.js +78 -4
- package/core/lib/components/global-header/global-header.js +234 -255
- package/core/lib/components/global-header/global-header.scss +162 -24
- package/core/lib/components/sidemenu/animations.js +84 -2
- package/core/lib/components/sidemenu/sidemenu.js +175 -55
- package/core/lib/components/sidemenu/sidemenu.scss +221 -14
- package/core/lib/models/process/components/process-dashboard/process-dashboard.js +469 -3
- package/core/lib/models/process/components/process-dashboard/process-dashboard.scss +4 -0
- package/core/lib/pages/login/login.js +20 -37
- package/core/lib/utils/common/common.utils.js +0 -35
- package/core/models/menus/menus.js +6 -0
- package/core/modules/steps/action-buttons.js +60 -46
- package/core/modules/steps/action-buttons.scss +45 -34
- package/core/modules/steps/chat-assistant.js +141 -0
- package/core/modules/steps/openai-realtime.js +275 -0
- package/core/modules/steps/readme.md +167 -0
- package/core/modules/steps/steps.js +1063 -85
- package/core/modules/steps/steps.scss +462 -280
- package/core/modules/steps/voice-navigation.js +709 -0
- package/package.json +1 -1
|
@@ -1,426 +1,608 @@
|
|
|
1
1
|
.process-steps-page {
|
|
2
|
-
height: 100dvh;
|
|
3
2
|
display: flex;
|
|
4
3
|
flex-direction: column;
|
|
5
|
-
|
|
4
|
+
min-height: 100vh;
|
|
5
|
+
height: 100vh;
|
|
6
|
+
}
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
.steps-viewport {
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
flex: 1 1 auto;
|
|
12
|
+
height: 100%;
|
|
13
|
+
min-height: 0;
|
|
14
|
+
}
|
|
11
15
|
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
.steps-main-card {
|
|
17
|
+
display: flex;
|
|
18
|
+
flex: 1 1 auto;
|
|
19
|
+
height: 100%;
|
|
20
|
+
min-height: 0;
|
|
21
|
+
border: 1px solid #dfe8f7;
|
|
22
|
+
border-radius: 18px;
|
|
23
|
+
box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
|
|
24
|
+
|
|
25
|
+
.ant-card-body {
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
flex: 1 1 auto;
|
|
29
|
+
min-height: 0;
|
|
30
|
+
padding: 14px 16px 16px;
|
|
31
|
+
background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
|
|
32
|
+
border-radius: 18px;
|
|
14
33
|
}
|
|
15
34
|
}
|
|
16
35
|
|
|
17
|
-
.
|
|
36
|
+
.timeline-sidebar.collapsed {
|
|
37
|
+
align-items: center;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.timeline-sidebar.collapsed .timeline-step {
|
|
41
|
+
padding: 6px 4px;
|
|
18
42
|
border: none;
|
|
19
43
|
background: transparent;
|
|
20
44
|
box-shadow: none;
|
|
21
45
|
}
|
|
22
46
|
|
|
23
|
-
.
|
|
24
|
-
|
|
47
|
+
.timeline-sidebar.collapsed .step-marker {
|
|
48
|
+
margin-right: 0;
|
|
25
49
|
}
|
|
26
50
|
|
|
27
|
-
.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
51
|
+
.steps-header {
|
|
52
|
+
display: flex;
|
|
53
|
+
align-items: flex-start;
|
|
54
|
+
gap: 12px;
|
|
55
|
+
padding-bottom: 10px;
|
|
56
|
+
margin-bottom: 12px;
|
|
57
|
+
border-bottom: 1px solid #e7eef9;
|
|
58
|
+
}
|
|
31
59
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
60
|
+
.steps-breadcrumb-strip {
|
|
61
|
+
display: flex;
|
|
62
|
+
align-items: center;
|
|
63
|
+
gap: 8px;
|
|
64
|
+
overflow-x: auto;
|
|
65
|
+
overflow-y: hidden;
|
|
66
|
+
white-space: nowrap;
|
|
67
|
+
flex: 1 1 auto;
|
|
68
|
+
min-width: 0;
|
|
69
|
+
padding: 2px 0;
|
|
70
|
+
scrollbar-width: thin;
|
|
38
71
|
}
|
|
39
72
|
|
|
40
|
-
.
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
73
|
+
.steps-breadcrumb-item {
|
|
74
|
+
display: inline-flex;
|
|
75
|
+
align-items: center;
|
|
76
|
+
gap: 8px;
|
|
77
|
+
border: 1px solid #dce6f5;
|
|
78
|
+
background: #f8fbff;
|
|
79
|
+
border-radius: 999px;
|
|
80
|
+
padding: 6px 10px;
|
|
81
|
+
cursor: pointer;
|
|
82
|
+
transition: all 0.2s ease;
|
|
83
|
+
color: #334155;
|
|
84
|
+
max-width: 260px;
|
|
44
85
|
}
|
|
45
86
|
|
|
46
|
-
.
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
flex-direction: column;
|
|
50
|
-
min-height: 0;
|
|
51
|
-
box-sizing: border-box;
|
|
87
|
+
.steps-breadcrumb-item:hover {
|
|
88
|
+
background: #eef5ff;
|
|
89
|
+
border-color: #c8d9f6;
|
|
52
90
|
}
|
|
53
91
|
|
|
54
|
-
.
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
height: 100%;
|
|
59
|
-
max-height: 100%;
|
|
92
|
+
.steps-breadcrumb-item.active {
|
|
93
|
+
background: #1d4ed8;
|
|
94
|
+
border-color: #1d4ed8;
|
|
95
|
+
color: #ffffff;
|
|
60
96
|
}
|
|
61
97
|
|
|
62
|
-
.
|
|
63
|
-
|
|
64
|
-
|
|
98
|
+
.steps-breadcrumb-item.completed {
|
|
99
|
+
border-color: #8bd0a4;
|
|
100
|
+
background: #f0fbf4;
|
|
65
101
|
}
|
|
66
102
|
|
|
67
|
-
.
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
overflow: hidden;
|
|
71
|
-
// background: #fff;
|
|
72
|
-
// border: 1px solid #e5ebf3;
|
|
73
|
-
// border-radius: 14px;
|
|
74
|
-
// box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
|
|
75
|
-
// padding: 14px 16px;
|
|
76
|
-
position: relative;
|
|
77
|
-
z-index: 2;
|
|
103
|
+
.steps-breadcrumb-item.completed .steps-breadcrumb-index {
|
|
104
|
+
background: #16a34a;
|
|
105
|
+
color: #ffffff;
|
|
78
106
|
}
|
|
79
107
|
|
|
80
|
-
.
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
height: 100%;
|
|
108
|
+
.steps-breadcrumb-item.active .steps-breadcrumb-index {
|
|
109
|
+
background: rgba(255, 255, 255, 0.2);
|
|
110
|
+
color: #ffffff;
|
|
84
111
|
}
|
|
85
112
|
|
|
86
|
-
.
|
|
87
|
-
|
|
88
|
-
|
|
113
|
+
.steps-breadcrumb-index {
|
|
114
|
+
width: 20px;
|
|
115
|
+
height: 20px;
|
|
116
|
+
border-radius: 50%;
|
|
117
|
+
display: inline-flex;
|
|
118
|
+
align-items: center;
|
|
119
|
+
justify-content: center;
|
|
120
|
+
font-size: 11px;
|
|
121
|
+
font-weight: 700;
|
|
122
|
+
background: #e2e8f4;
|
|
123
|
+
color: #1e293b;
|
|
124
|
+
flex: 0 0 auto;
|
|
89
125
|
}
|
|
90
126
|
|
|
91
|
-
.
|
|
92
|
-
|
|
93
|
-
font-size: 16px;
|
|
127
|
+
.steps-breadcrumb-label {
|
|
128
|
+
font-size: 12px;
|
|
94
129
|
font-weight: 600;
|
|
130
|
+
overflow: hidden;
|
|
131
|
+
text-overflow: ellipsis;
|
|
95
132
|
}
|
|
96
133
|
|
|
97
|
-
.
|
|
98
|
-
|
|
99
|
-
|
|
134
|
+
.steps-breadcrumb-empty {
|
|
135
|
+
color: #64748b;
|
|
136
|
+
font-size: 12px;
|
|
137
|
+
padding: 0 4px;
|
|
100
138
|
}
|
|
101
139
|
|
|
102
|
-
.
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
140
|
+
.steps-header-actions {
|
|
141
|
+
display: flex;
|
|
142
|
+
align-items: center;
|
|
143
|
+
justify-content: flex-end;
|
|
144
|
+
gap: 8px;
|
|
145
|
+
flex-wrap: wrap;
|
|
146
|
+
flex: 0 0 auto;
|
|
147
|
+
|
|
148
|
+
.ant-btn {
|
|
149
|
+
border-radius: 8px;
|
|
150
|
+
height: 32px;
|
|
151
|
+
padding: 0 12px;
|
|
152
|
+
}
|
|
107
153
|
|
|
108
|
-
|
|
154
|
+
.ant-select {
|
|
155
|
+
min-width: 150px;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
109
158
|
|
|
110
|
-
|
|
159
|
+
.steps-voice-provider-select {
|
|
160
|
+
min-width: 140px !important;
|
|
161
|
+
}
|
|
111
162
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
// box-shadow:
|
|
115
|
-
// inset 0 1px 2px rgba(255, 255, 255, 0.8),
|
|
116
|
-
// inset 0 8px 16px rgba(15, 23, 42, 0.08),
|
|
117
|
-
// inset 0 -2px 8px rgba(15, 23, 42, 0.04);
|
|
163
|
+
.steps-voice-select {
|
|
164
|
+
min-width: 190px !important;
|
|
118
165
|
}
|
|
119
166
|
|
|
120
|
-
.
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
167
|
+
.steps-layout {
|
|
168
|
+
flex: 1 1 auto;
|
|
169
|
+
min-height: 0;
|
|
170
|
+
align-items: stretch;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.steps-content-column,
|
|
174
|
+
.steps-guest-column {
|
|
175
|
+
display: flex;
|
|
176
|
+
min-height: 0;
|
|
126
177
|
}
|
|
127
178
|
|
|
128
|
-
.
|
|
179
|
+
.steps-content-panel {
|
|
180
|
+
width: 100%;
|
|
129
181
|
height: 100%;
|
|
130
|
-
|
|
182
|
+
display: flex;
|
|
183
|
+
flex-direction: column;
|
|
184
|
+
min-height: 0;
|
|
185
|
+
border: none;
|
|
186
|
+
border-radius: 0;
|
|
187
|
+
background: transparent;
|
|
188
|
+
overflow: hidden;
|
|
131
189
|
}
|
|
132
190
|
|
|
133
|
-
.
|
|
191
|
+
.steps-stage-body {
|
|
192
|
+
flex: 1 1 auto;
|
|
193
|
+
min-height: 0;
|
|
134
194
|
display: flex;
|
|
135
195
|
flex-direction: column;
|
|
136
|
-
gap: 10px;
|
|
137
|
-
transition: all 0.3s ease;
|
|
138
|
-
height: 100%;
|
|
139
196
|
overflow-y: auto;
|
|
197
|
+
padding: 0;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.steps-chat-step-card {
|
|
201
|
+
width: 100%;
|
|
202
|
+
display: flex;
|
|
203
|
+
flex: 1 1 auto;
|
|
204
|
+
flex-direction: column;
|
|
205
|
+
min-height: 100%;
|
|
206
|
+
border: 1px solid #dbe7fb;
|
|
207
|
+
border-radius: 14px;
|
|
208
|
+
padding: 16px;
|
|
209
|
+
background: #ffffff;
|
|
210
|
+
box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.steps-chat-step-card.slide-forward {
|
|
214
|
+
animation: step-slide-forward 320ms ease;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.steps-chat-step-card.slide-backward {
|
|
218
|
+
animation: step-slide-backward 320ms ease;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.steps-chat-step-card.slide-forward .steps-index-pill,
|
|
222
|
+
.steps-chat-step-card.slide-backward .steps-index-pill,
|
|
223
|
+
.steps-chat-step-card.slide-forward .steps-title,
|
|
224
|
+
.steps-chat-step-card.slide-backward .steps-title,
|
|
225
|
+
.steps-chat-step-card.slide-forward .steps-description,
|
|
226
|
+
.steps-chat-step-card.slide-backward .steps-description,
|
|
227
|
+
.steps-chat-step-card.slide-forward .guest-guide-card,
|
|
228
|
+
.steps-chat-step-card.slide-backward .guest-guide-card,
|
|
229
|
+
.steps-chat-step-card.slide-forward .steps-chat-step-component,
|
|
230
|
+
.steps-chat-step-card.slide-backward .steps-chat-step-component {
|
|
231
|
+
opacity: 0;
|
|
232
|
+
animation: step-text-reveal 520ms ease forwards;
|
|
233
|
+
}
|
|
140
234
|
|
|
141
|
-
|
|
142
|
-
|
|
235
|
+
.steps-chat-step-card.slide-forward .steps-index-pill,
|
|
236
|
+
.steps-chat-step-card.slide-backward .steps-index-pill {
|
|
237
|
+
animation-delay: 40ms;
|
|
238
|
+
}
|
|
143
239
|
|
|
144
|
-
|
|
145
|
-
|
|
240
|
+
.steps-chat-step-card.slide-forward .steps-title,
|
|
241
|
+
.steps-chat-step-card.slide-backward .steps-title {
|
|
242
|
+
animation-delay: 120ms;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.steps-chat-step-card.slide-forward .steps-description,
|
|
246
|
+
.steps-chat-step-card.slide-backward .steps-description {
|
|
247
|
+
animation-delay: 180ms;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.steps-chat-step-card.slide-forward .guest-guide-card,
|
|
251
|
+
.steps-chat-step-card.slide-backward .guest-guide-card {
|
|
252
|
+
animation-delay: 240ms;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.steps-chat-step-card.slide-forward .steps-chat-step-component,
|
|
256
|
+
.steps-chat-step-card.slide-backward .steps-chat-step-component {
|
|
257
|
+
animation-delay: 300ms;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
@keyframes step-slide-forward {
|
|
261
|
+
from {
|
|
262
|
+
opacity: 0;
|
|
263
|
+
transform: translateX(28px);
|
|
146
264
|
}
|
|
147
265
|
|
|
148
|
-
|
|
149
|
-
|
|
266
|
+
to {
|
|
267
|
+
opacity: 1;
|
|
268
|
+
transform: translateX(0);
|
|
150
269
|
}
|
|
270
|
+
}
|
|
151
271
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
272
|
+
@keyframes step-slide-backward {
|
|
273
|
+
from {
|
|
274
|
+
opacity: 0;
|
|
275
|
+
transform: translateX(-28px);
|
|
155
276
|
}
|
|
156
277
|
|
|
157
|
-
|
|
158
|
-
|
|
278
|
+
to {
|
|
279
|
+
opacity: 1;
|
|
280
|
+
transform: translateX(0);
|
|
159
281
|
}
|
|
282
|
+
}
|
|
160
283
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
284
|
+
@keyframes step-text-reveal {
|
|
285
|
+
from {
|
|
286
|
+
opacity: 0;
|
|
287
|
+
transform: translateY(-16px);
|
|
288
|
+
clip-path: inset(0 0 100% 0);
|
|
164
289
|
}
|
|
165
290
|
|
|
166
|
-
|
|
167
|
-
|
|
291
|
+
to {
|
|
292
|
+
opacity: 1;
|
|
293
|
+
transform: translateY(0);
|
|
294
|
+
clip-path: inset(0 0 0 0);
|
|
168
295
|
}
|
|
169
|
-
padding-right: 4px;
|
|
170
296
|
}
|
|
171
297
|
|
|
172
|
-
.
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
padding: 10px
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
298
|
+
.steps-chat-step-top {
|
|
299
|
+
margin-bottom: 12px;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.steps-index-pill {
|
|
303
|
+
display: inline-flex;
|
|
304
|
+
align-items: center;
|
|
305
|
+
padding: 3px 10px;
|
|
306
|
+
border-radius: 999px;
|
|
307
|
+
background: #eaf2ff;
|
|
308
|
+
color: #1d4ed8;
|
|
309
|
+
font-size: 12px;
|
|
310
|
+
font-weight: 600;
|
|
311
|
+
margin-bottom: 8px;
|
|
184
312
|
}
|
|
185
313
|
|
|
186
|
-
.
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
314
|
+
.steps-title {
|
|
315
|
+
margin: 0;
|
|
316
|
+
font-size: 20px;
|
|
317
|
+
font-weight: 700;
|
|
318
|
+
color: #111827;
|
|
319
|
+
line-height: 1.3;
|
|
190
320
|
}
|
|
191
321
|
|
|
192
|
-
.
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
322
|
+
.steps-description {
|
|
323
|
+
margin: 6px 0 0;
|
|
324
|
+
color: #4b5563;
|
|
325
|
+
line-height: 1.5;
|
|
196
326
|
}
|
|
197
327
|
|
|
198
|
-
.
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
328
|
+
.guest-guide-card {
|
|
329
|
+
margin-top: 12px;
|
|
330
|
+
padding: 12px 14px;
|
|
331
|
+
border: 1px solid #e4edf9;
|
|
332
|
+
border-radius: 10px;
|
|
333
|
+
background: #f6faff;
|
|
202
334
|
}
|
|
203
335
|
|
|
204
|
-
.
|
|
205
|
-
|
|
206
|
-
|
|
336
|
+
.guest-guide-title {
|
|
337
|
+
margin: 0 0 6px;
|
|
338
|
+
font-size: 12px;
|
|
339
|
+
font-weight: 700;
|
|
340
|
+
text-transform: uppercase;
|
|
341
|
+
letter-spacing: 0.05em;
|
|
342
|
+
color: #1d4ed8;
|
|
207
343
|
}
|
|
208
344
|
|
|
209
|
-
.
|
|
210
|
-
|
|
345
|
+
.guest-guide-expectation,
|
|
346
|
+
.guest-guide-note,
|
|
347
|
+
.guest-guide-tip {
|
|
348
|
+
margin: 0;
|
|
349
|
+
color: #334155;
|
|
350
|
+
line-height: 1.5;
|
|
211
351
|
}
|
|
212
352
|
|
|
213
|
-
.
|
|
353
|
+
.guest-guide-note,
|
|
354
|
+
.guest-guide-tip {
|
|
355
|
+
margin-top: 6px;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.steps-chat-step-component {
|
|
359
|
+
margin-top: 14px;
|
|
214
360
|
display: flex;
|
|
361
|
+
flex: 1 1 auto;
|
|
215
362
|
flex-direction: column;
|
|
216
|
-
|
|
217
|
-
margin-right: 12px;
|
|
218
|
-
min-width: 34px;
|
|
363
|
+
min-height: 0;
|
|
219
364
|
}
|
|
220
365
|
|
|
221
|
-
.step-
|
|
222
|
-
|
|
223
|
-
height:
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
366
|
+
.steps-chat-step-component > * {
|
|
367
|
+
flex: 1 1 auto;
|
|
368
|
+
min-height: 0;
|
|
369
|
+
width: 100%;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.steps-chat-loading {
|
|
373
|
+
min-height: 120px;
|
|
228
374
|
display: flex;
|
|
229
375
|
align-items: center;
|
|
230
376
|
justify-content: center;
|
|
231
|
-
font-weight: 600;
|
|
232
377
|
}
|
|
233
378
|
|
|
234
|
-
.
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
379
|
+
.steps-viewport:fullscreen,
|
|
380
|
+
.steps-viewport:-webkit-full-screen {
|
|
381
|
+
background: radial-gradient(circle at top, #eef4ff 0%, #f7fbff 45%, #ffffff 100%);
|
|
382
|
+
padding: 16px;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.steps-viewport:fullscreen .steps-main-card,
|
|
386
|
+
.steps-viewport:-webkit-full-screen .steps-main-card {
|
|
387
|
+
height: 100%;
|
|
240
388
|
}
|
|
241
389
|
|
|
242
|
-
.
|
|
243
|
-
|
|
390
|
+
.steps-viewport:fullscreen .steps-main-card .ant-card-body,
|
|
391
|
+
.steps-viewport:-webkit-full-screen .steps-main-card .ant-card-body {
|
|
392
|
+
height: 100%;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.steps-viewport:fullscreen .steps-layout,
|
|
396
|
+
.steps-viewport:-webkit-full-screen .steps-layout {
|
|
397
|
+
flex: 1 1 auto;
|
|
398
|
+
min-height: 0;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.steps-viewport:fullscreen .steps-content-panel,
|
|
402
|
+
.steps-viewport:fullscreen .steps-guest-panel,
|
|
403
|
+
.steps-viewport:-webkit-full-screen .steps-content-panel,
|
|
404
|
+
.steps-viewport:-webkit-full-screen .steps-guest-panel {
|
|
405
|
+
height: 100%;
|
|
244
406
|
}
|
|
245
407
|
|
|
246
|
-
.
|
|
408
|
+
.steps-viewport:fullscreen .steps-stage-panel,
|
|
409
|
+
.steps-viewport:-webkit-full-screen .steps-stage-panel {
|
|
410
|
+
border-radius: 0;
|
|
411
|
+
border: none;
|
|
412
|
+
background: transparent;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.steps-viewport:fullscreen .steps-stage-body,
|
|
416
|
+
.steps-viewport:-webkit-full-screen .steps-stage-body {
|
|
417
|
+
max-width: 1280px;
|
|
418
|
+
width: 100%;
|
|
419
|
+
margin: 0 auto;
|
|
420
|
+
padding: 8px;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.steps-viewport:fullscreen .steps-chat-step-card,
|
|
424
|
+
.steps-viewport:-webkit-full-screen .steps-chat-step-card {
|
|
425
|
+
min-height: calc(100vh - 90px);
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.steps-guest-panel {
|
|
429
|
+
width: 100%;
|
|
430
|
+
min-height: 0;
|
|
431
|
+
height: 100%;
|
|
247
432
|
display: flex;
|
|
248
433
|
flex-direction: column;
|
|
249
|
-
|
|
250
|
-
|
|
434
|
+
border: 1px solid #dfe9f8;
|
|
435
|
+
border-radius: 14px;
|
|
436
|
+
background: #ffffff;
|
|
437
|
+
overflow: hidden;
|
|
438
|
+
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
|
|
251
439
|
}
|
|
252
440
|
|
|
253
|
-
.
|
|
254
|
-
|
|
255
|
-
font-
|
|
256
|
-
|
|
257
|
-
color: #
|
|
258
|
-
|
|
441
|
+
.steps-guest-title {
|
|
442
|
+
margin: 0;
|
|
443
|
+
font-size: 14px;
|
|
444
|
+
font-weight: 700;
|
|
445
|
+
color: #0f172a;
|
|
446
|
+
padding: 11px 12px;
|
|
447
|
+
border-bottom: 1px solid #ebf1fa;
|
|
448
|
+
background: linear-gradient(90deg, #f2f7ff 0%, #fbfdff 100%);
|
|
259
449
|
}
|
|
260
450
|
|
|
261
|
-
.
|
|
451
|
+
.steps-guest-body {
|
|
452
|
+
flex: 1 1 auto;
|
|
453
|
+
min-height: 0;
|
|
454
|
+
overflow-y: auto;
|
|
455
|
+
padding: 12px;
|
|
456
|
+
background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.steps-guest-highlight {
|
|
460
|
+
display: none;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.steps-guest-name {
|
|
262
464
|
font-size: 16px;
|
|
263
|
-
font-weight:
|
|
264
|
-
color: #1f2937;
|
|
465
|
+
font-weight: 700;
|
|
265
466
|
line-height: 1.2;
|
|
266
|
-
margin-bottom: 2px;
|
|
267
467
|
}
|
|
268
468
|
|
|
269
|
-
.
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
text-overflow: ellipsis;
|
|
275
|
-
display: -webkit-box;
|
|
276
|
-
-webkit-line-clamp: 2;
|
|
277
|
-
-webkit-box-orient: vertical;
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
.toggle-arrow {
|
|
281
|
-
position: absolute;
|
|
282
|
-
top: 50%;
|
|
283
|
-
right: -12px;
|
|
284
|
-
transform: translateY(-50%);
|
|
285
|
-
width: 30px;
|
|
286
|
-
height: 30px;
|
|
287
|
-
background: #fff;
|
|
288
|
-
border: 1px solid #b8c9e4;
|
|
289
|
-
border-radius: 50%;
|
|
290
|
-
display: flex;
|
|
291
|
-
align-items: center;
|
|
292
|
-
justify-content: center;
|
|
293
|
-
cursor: pointer;
|
|
294
|
-
color: #1f3f74;
|
|
295
|
-
box-shadow: 0 6px 14px rgba(15, 23, 42, 0.2);
|
|
296
|
-
z-index: 40;
|
|
297
|
-
transition:
|
|
298
|
-
background-color 0.2s ease,
|
|
299
|
-
border-color 0.2s ease,
|
|
300
|
-
box-shadow 0.2s ease,
|
|
301
|
-
transform 0.2s ease;
|
|
302
|
-
|
|
303
|
-
&:hover {
|
|
304
|
-
background: #f0f6ff;
|
|
305
|
-
border-color: #90abd1;
|
|
306
|
-
box-shadow: 0 8px 16px rgba(15, 23, 42, 0.24);
|
|
307
|
-
}
|
|
469
|
+
.steps-guest-meta {
|
|
470
|
+
margin-top: 4px;
|
|
471
|
+
font-size: 12px;
|
|
472
|
+
opacity: 0.92;
|
|
473
|
+
}
|
|
308
474
|
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
475
|
+
.steps-guest-body .guest-info {
|
|
476
|
+
margin: 0;
|
|
477
|
+
box-shadow: none;
|
|
478
|
+
border: 1px solid #e4ebf7;
|
|
479
|
+
border-radius: 12px;
|
|
312
480
|
}
|
|
313
481
|
|
|
314
|
-
.
|
|
315
|
-
|
|
482
|
+
.steps-guest-body .guest-info .information {
|
|
483
|
+
background: #f9fbff;
|
|
484
|
+
border: 1px solid #ebf1fa;
|
|
485
|
+
border-radius: 10px;
|
|
486
|
+
padding: 8px 10px;
|
|
487
|
+
height: 100%;
|
|
316
488
|
}
|
|
317
489
|
|
|
318
|
-
.
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
background: transparent;
|
|
322
|
-
box-shadow: none;
|
|
490
|
+
.steps-guest-body .guest-info .ant-row > [class*='ant-col'] {
|
|
491
|
+
flex: 0 0 100%;
|
|
492
|
+
max-width: 100%;
|
|
323
493
|
}
|
|
324
494
|
|
|
325
|
-
.
|
|
326
|
-
|
|
495
|
+
.steps-guest-fallback {
|
|
496
|
+
border: 1px dashed #cbd7eb;
|
|
497
|
+
border-radius: 10px;
|
|
498
|
+
background: #f8fbff;
|
|
499
|
+
padding: 12px;
|
|
500
|
+
color: #334155;
|
|
501
|
+
line-height: 1.5;
|
|
327
502
|
}
|
|
328
503
|
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
504
|
+
.steps-guest-fallback p {
|
|
505
|
+
margin: 0 0 6px;
|
|
506
|
+
}
|
|
332
507
|
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
.process-steps-row {
|
|
337
|
-
min-height: auto;
|
|
338
|
-
height: auto;
|
|
339
|
-
overflow: visible;
|
|
340
|
-
}
|
|
508
|
+
.steps-guest-fallback p:last-child {
|
|
509
|
+
margin-bottom: 0;
|
|
510
|
+
}
|
|
341
511
|
|
|
342
|
-
|
|
343
|
-
|
|
512
|
+
.steps-guest-fallback-text {
|
|
513
|
+
color: #64748b;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
@media (max-width: 1200px) {
|
|
517
|
+
.steps-header {
|
|
518
|
+
flex-direction: column;
|
|
519
|
+
align-items: stretch;
|
|
520
|
+
gap: 10px;
|
|
344
521
|
}
|
|
345
522
|
|
|
346
|
-
.
|
|
347
|
-
|
|
348
|
-
.process-steps-content-col {
|
|
349
|
-
overflow: visible;
|
|
523
|
+
.steps-header-actions {
|
|
524
|
+
justify-content: flex-start;
|
|
350
525
|
}
|
|
526
|
+
}
|
|
351
527
|
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
528
|
+
@media (max-width: 992px) {
|
|
529
|
+
.process-steps-page {
|
|
530
|
+
min-height: 100vh;
|
|
531
|
+
height: 100vh;
|
|
356
532
|
}
|
|
357
533
|
|
|
358
|
-
.
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
align-self: stretch;
|
|
362
|
-
height: auto;
|
|
363
|
-
max-height: none;
|
|
534
|
+
.steps-main-card {
|
|
535
|
+
height: 100%;
|
|
536
|
+
min-height: 0;
|
|
364
537
|
}
|
|
365
538
|
|
|
366
|
-
.
|
|
539
|
+
.steps-main-card .ant-card-body {
|
|
367
540
|
padding: 12px;
|
|
368
|
-
min-height: auto;
|
|
369
|
-
overflow: visible;
|
|
370
541
|
}
|
|
371
542
|
|
|
372
|
-
.
|
|
373
|
-
|
|
374
|
-
overflow
|
|
375
|
-
overflow-y: visible;
|
|
376
|
-
gap: 10px;
|
|
377
|
-
padding-bottom: 10px;
|
|
378
|
-
border-bottom: 1px solid #eee;
|
|
543
|
+
.steps-layout {
|
|
544
|
+
min-height: auto;
|
|
545
|
+
overflow: visible;
|
|
379
546
|
}
|
|
380
547
|
|
|
381
|
-
.
|
|
382
|
-
min-
|
|
548
|
+
.steps-content-panel {
|
|
549
|
+
min-height: auto;
|
|
383
550
|
}
|
|
384
551
|
|
|
385
|
-
.
|
|
386
|
-
|
|
552
|
+
.steps-stage-body {
|
|
553
|
+
padding: 0;
|
|
387
554
|
}
|
|
388
555
|
|
|
389
|
-
.
|
|
390
|
-
|
|
556
|
+
.steps-guest-column {
|
|
557
|
+
min-height: 260px;
|
|
391
558
|
}
|
|
559
|
+
}
|
|
392
560
|
|
|
393
|
-
|
|
394
|
-
|
|
561
|
+
@media (prefers-reduced-motion: reduce) {
|
|
562
|
+
.steps-chat-step-card.slide-forward,
|
|
563
|
+
.steps-chat-step-card.slide-backward,
|
|
564
|
+
.steps-chat-step-card.slide-forward .steps-index-pill,
|
|
565
|
+
.steps-chat-step-card.slide-backward .steps-index-pill,
|
|
566
|
+
.steps-chat-step-card.slide-forward .steps-title,
|
|
567
|
+
.steps-chat-step-card.slide-backward .steps-title,
|
|
568
|
+
.steps-chat-step-card.slide-forward .steps-description,
|
|
569
|
+
.steps-chat-step-card.slide-backward .steps-description,
|
|
570
|
+
.steps-chat-step-card.slide-forward .guest-guide-card,
|
|
571
|
+
.steps-chat-step-card.slide-backward .guest-guide-card,
|
|
572
|
+
.steps-chat-step-card.slide-forward .steps-chat-step-component,
|
|
573
|
+
.steps-chat-step-card.slide-backward .steps-chat-step-component {
|
|
574
|
+
animation: none !important;
|
|
575
|
+
opacity: 1 !important;
|
|
576
|
+
transform: none !important;
|
|
577
|
+
clip-path: inset(0 0 0 0) !important;
|
|
395
578
|
}
|
|
396
579
|
}
|
|
397
580
|
|
|
398
581
|
@media (max-width: 768px) {
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
582
|
+
.steps-breadcrumb-item {
|
|
583
|
+
max-width: 200px;
|
|
584
|
+
padding: 5px 9px;
|
|
402
585
|
}
|
|
403
586
|
|
|
404
|
-
.
|
|
405
|
-
|
|
406
|
-
height: 24px;
|
|
407
|
-
font-size: 12px;
|
|
587
|
+
.steps-title {
|
|
588
|
+
font-size: 16px;
|
|
408
589
|
}
|
|
409
590
|
|
|
410
|
-
.
|
|
411
|
-
font-size:
|
|
591
|
+
.steps-description {
|
|
592
|
+
font-size: 13px;
|
|
412
593
|
}
|
|
413
594
|
|
|
414
|
-
.
|
|
415
|
-
|
|
595
|
+
.steps-header-actions {
|
|
596
|
+
display: grid;
|
|
597
|
+
grid-template-columns: repeat(2, minmax(120px, 1fr));
|
|
598
|
+
width: 100%;
|
|
416
599
|
}
|
|
417
600
|
|
|
418
|
-
.
|
|
419
|
-
|
|
601
|
+
.steps-header-actions .ant-btn {
|
|
602
|
+
width: 100%;
|
|
420
603
|
}
|
|
421
604
|
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
padding: 10px;
|
|
605
|
+
.steps-header-actions .ant-select {
|
|
606
|
+
width: 100%;
|
|
425
607
|
}
|
|
426
608
|
}
|