ui-soxo-bootstrap-core 2.6.1-dev.2 → 2.6.1-dev.20

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.
Files changed (66) hide show
  1. package/core/components/extra-info/extra-info-details.js +2 -2
  2. package/core/components/index.js +2 -11
  3. package/core/components/landing-api/landing-api.js +91 -15
  4. package/core/components/landing-api/landing-api.scss +22 -0
  5. package/core/components/license-management/license-alert.js +97 -0
  6. package/core/lib/Store.js +3 -3
  7. package/core/lib/components/global-header/animations.js +78 -4
  8. package/core/lib/components/global-header/global-header.js +224 -255
  9. package/core/lib/components/global-header/global-header.scss +162 -24
  10. package/core/lib/components/sidemenu/animations.js +84 -2
  11. package/core/lib/components/sidemenu/sidemenu.js +191 -65
  12. package/core/lib/components/sidemenu/sidemenu.scss +221 -14
  13. package/core/lib/elements/basic/country-phone-input/country-phone-input.js +14 -8
  14. package/core/lib/elements/basic/dragabble-wrapper/draggable-wrapper.js +1 -1
  15. package/core/lib/elements/basic/menu-tree/menu-tree.js +26 -13
  16. package/core/lib/models/forms/components/form-creator/form-creator.scss +4 -3
  17. package/core/lib/models/menus/components/menu-list/menu-list.js +424 -467
  18. package/core/lib/models/process/components/process-dashboard/process-dashboard.js +469 -3
  19. package/core/lib/models/process/components/process-dashboard/process-dashboard.scss +4 -0
  20. package/core/lib/pages/change-password/change-password.js +17 -24
  21. package/core/lib/pages/change-password/change-password.scss +45 -48
  22. package/core/lib/pages/login/commnication-mode-selection.js +2 -2
  23. package/core/lib/pages/login/login.js +47 -62
  24. package/core/lib/pages/login/login.scss +9 -0
  25. package/core/lib/pages/login/reset-password.js +17 -17
  26. package/core/lib/pages/login/reset-password.scss +10 -1
  27. package/core/lib/pages/profile/themes.json +4 -4
  28. package/core/lib/utils/api/api.utils.js +30 -18
  29. package/core/lib/utils/common/common.utils.js +49 -35
  30. package/core/lib/utils/http/http.utils.js +2 -1
  31. package/core/lib/utils/index.js +4 -1
  32. package/core/models/base/base.js +7 -3
  33. package/core/models/core-scripts/core-scripts.js +134 -126
  34. package/core/models/doctor/components/doctor-add/doctor-add.js +9 -4
  35. package/core/models/menus/components/menu-add/menu-add.js +1 -1
  36. package/core/models/menus/components/menu-lists/menu-lists.js +53 -54
  37. package/core/models/menus/menus.js +27 -2
  38. package/core/models/roles/components/role-add/role-add.js +92 -59
  39. package/core/models/roles/components/role-list/role-list.js +1 -1
  40. package/core/models/staff/components/staff-add/staff-add.js +20 -32
  41. package/core/models/users/components/assign-role/assign-role.js +145 -50
  42. package/core/models/users/components/assign-role/assign-role.scss +209 -45
  43. package/core/models/users/components/assign-role/avatar-props.js +45 -0
  44. package/core/models/users/components/user-add/user-add.js +46 -55
  45. package/core/models/users/components/user-add/user-edit.js +25 -4
  46. package/core/models/users/users.js +9 -1
  47. package/core/modules/dashboard/components/dashboard-card/menu-dashboard-card.js +1 -1
  48. package/core/modules/reporting/components/reporting-dashboard/README.md +316 -0
  49. package/core/modules/reporting/components/reporting-dashboard/adavance-search/advance-search.js +147 -0
  50. package/core/modules/reporting/components/reporting-dashboard/adavance-search/advance-search.scss +76 -0
  51. package/core/modules/reporting/components/reporting-dashboard/display-columns/build-display-columns.js +90 -0
  52. package/core/modules/reporting/components/reporting-dashboard/display-columns/build-display-columns.test.js +74 -0
  53. package/core/modules/reporting/components/reporting-dashboard/display-columns/display-cell-renderer.js +252 -0
  54. package/core/modules/reporting/components/reporting-dashboard/display-columns/display-cell-renderer.test.js +126 -0
  55. package/core/modules/reporting/components/reporting-dashboard/reporting-dashboard.js +326 -436
  56. package/core/modules/reporting/components/reporting-dashboard/reporting-dashboard.scss +7 -0
  57. package/core/modules/steps/action-buttons.js +33 -15
  58. package/core/modules/steps/action-buttons.scss +55 -9
  59. package/core/modules/steps/chat-assistant.js +141 -0
  60. package/core/modules/steps/openai-realtime.js +275 -0
  61. package/core/modules/steps/readme.md +167 -0
  62. package/core/modules/steps/steps.js +1078 -57
  63. package/core/modules/steps/steps.scss +539 -90
  64. package/core/modules/steps/timeline.js +21 -19
  65. package/core/modules/steps/voice-navigation.js +709 -0
  66. package/package.json +2 -1
@@ -1,159 +1,608 @@
1
- .timeline-card .ant-card-body {
2
- // padding: 20px;
3
- border: none;
4
- min-height: 400px;
5
- // position: fixed; /* For positioning the arrow */
1
+ .process-steps-page {
2
+ display: flex;
3
+ flex-direction: column;
4
+ min-height: 100vh;
5
+ height: 100vh;
6
6
  }
7
7
 
8
- .timeline-sidebar {
8
+ .steps-viewport {
9
9
  display: flex;
10
10
  flex-direction: column;
11
- gap: 20px;
12
- transition: all 0.3s ease;
11
+ flex: 1 1 auto;
12
+ height: 100%;
13
+ min-height: 0;
13
14
  }
14
15
 
15
- .timeline-step {
16
+ .steps-main-card {
16
17
  display: flex;
17
- cursor: pointer;
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;
33
+ }
34
+ }
35
+
36
+ .timeline-sidebar.collapsed {
37
+ align-items: center;
38
+ }
39
+
40
+ .timeline-sidebar.collapsed .timeline-step {
41
+ padding: 6px 4px;
42
+ border: none;
43
+ background: transparent;
44
+ box-shadow: none;
18
45
  }
19
46
 
20
- .timeline-step.active .step-number {
21
- background: #3b82f6;
22
- color: white;
47
+ .timeline-sidebar.collapsed .step-marker {
48
+ margin-right: 0;
23
49
  }
24
50
 
25
- .timeline-step.completed .step-number {
26
- background: #22c55e;
27
- color: white;
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;
28
58
  }
29
59
 
30
- .step-marker {
60
+ .steps-breadcrumb-strip {
31
61
  display: flex;
32
- flex-direction: column;
33
62
  align-items: center;
34
- margin-right: 14px;
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;
35
71
  }
36
72
 
37
- .step-number {
38
- width: 28px;
39
- height: 28px;
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;
85
+ }
86
+
87
+ .steps-breadcrumb-item:hover {
88
+ background: #eef5ff;
89
+ border-color: #c8d9f6;
90
+ }
91
+
92
+ .steps-breadcrumb-item.active {
93
+ background: #1d4ed8;
94
+ border-color: #1d4ed8;
95
+ color: #ffffff;
96
+ }
97
+
98
+ .steps-breadcrumb-item.completed {
99
+ border-color: #8bd0a4;
100
+ background: #f0fbf4;
101
+ }
102
+
103
+ .steps-breadcrumb-item.completed .steps-breadcrumb-index {
104
+ background: #16a34a;
105
+ color: #ffffff;
106
+ }
107
+
108
+ .steps-breadcrumb-item.active .steps-breadcrumb-index {
109
+ background: rgba(255, 255, 255, 0.2);
110
+ color: #ffffff;
111
+ }
112
+
113
+ .steps-breadcrumb-index {
114
+ width: 20px;
115
+ height: 20px;
40
116
  border-radius: 50%;
41
- background: #d9d9d9;
42
- display: flex;
117
+ display: inline-flex;
43
118
  align-items: center;
44
119
  justify-content: center;
120
+ font-size: 11px;
121
+ font-weight: 700;
122
+ background: #e2e8f4;
123
+ color: #1e293b;
124
+ flex: 0 0 auto;
125
+ }
126
+
127
+ .steps-breadcrumb-label {
128
+ font-size: 12px;
45
129
  font-weight: 600;
130
+ overflow: hidden;
131
+ text-overflow: ellipsis;
46
132
  }
47
133
 
48
- .vertical-line {
49
- width: 2px;
50
- height: 20px;
51
- background: #d9d9d9;
134
+ .steps-breadcrumb-empty {
135
+ color: #64748b;
136
+ font-size: 12px;
137
+ padding: 0 4px;
138
+ }
139
+
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
+ }
153
+
154
+ .ant-select {
155
+ min-width: 150px;
156
+ }
157
+ }
158
+
159
+ .steps-voice-provider-select {
160
+ min-width: 140px !important;
161
+ }
162
+
163
+ .steps-voice-select {
164
+ min-width: 190px !important;
52
165
  }
53
166
 
54
- .step-info {
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;
177
+ }
178
+
179
+ .steps-content-panel {
180
+ width: 100%;
181
+ height: 100%;
55
182
  display: flex;
56
183
  flex-direction: column;
57
- justify-content: center;
184
+ min-height: 0;
185
+ border: none;
186
+ border-radius: 0;
187
+ background: transparent;
188
+ overflow: hidden;
189
+ }
190
+
191
+ .steps-stage-body {
192
+ flex: 1 1 auto;
193
+ min-height: 0;
194
+ display: flex;
195
+ flex-direction: column;
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
+ }
234
+
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
+ }
239
+
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);
264
+ }
265
+
266
+ to {
267
+ opacity: 1;
268
+ transform: translateX(0);
269
+ }
270
+ }
271
+
272
+ @keyframes step-slide-backward {
273
+ from {
274
+ opacity: 0;
275
+ transform: translateX(-28px);
276
+ }
277
+
278
+ to {
279
+ opacity: 1;
280
+ transform: translateX(0);
281
+ }
282
+ }
283
+
284
+ @keyframes step-text-reveal {
285
+ from {
286
+ opacity: 0;
287
+ transform: translateY(-16px);
288
+ clip-path: inset(0 0 100% 0);
289
+ }
290
+
291
+ to {
292
+ opacity: 1;
293
+ transform: translateY(0);
294
+ clip-path: inset(0 0 0 0);
295
+ }
58
296
  }
59
297
 
60
- .step-title {
61
- font-size: 13px;
62
- font-weight: 500;
298
+ .steps-chat-step-top {
299
+ margin-bottom: 12px;
63
300
  }
64
301
 
65
- .step-main {
66
- font-size: 15px;
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;
67
310
  font-weight: 600;
311
+ margin-bottom: 8px;
68
312
  }
69
313
 
70
- .toggle-arrow {
71
- position: absolute;
72
- top: 50%;
73
- right: -12px; /* Position it just outside the card body padding */
74
- transform: translateY(-50%);
75
- width: 24px;
76
- height: 24px;
77
- background: #fff;
78
- border: 1px solid #f0f0f0;
79
- border-radius: 50%;
314
+ .steps-title {
315
+ margin: 0;
316
+ font-size: 20px;
317
+ font-weight: 700;
318
+ color: #111827;
319
+ line-height: 1.3;
320
+ }
321
+
322
+ .steps-description {
323
+ margin: 6px 0 0;
324
+ color: #4b5563;
325
+ line-height: 1.5;
326
+ }
327
+
328
+ .guest-guide-card {
329
+ margin-top: 12px;
330
+ padding: 12px 14px;
331
+ border: 1px solid #e4edf9;
332
+ border-radius: 10px;
333
+ background: #f6faff;
334
+ }
335
+
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;
343
+ }
344
+
345
+ .guest-guide-expectation,
346
+ .guest-guide-note,
347
+ .guest-guide-tip {
348
+ margin: 0;
349
+ color: #334155;
350
+ line-height: 1.5;
351
+ }
352
+
353
+ .guest-guide-note,
354
+ .guest-guide-tip {
355
+ margin-top: 6px;
356
+ }
357
+
358
+ .steps-chat-step-component {
359
+ margin-top: 14px;
360
+ display: flex;
361
+ flex: 1 1 auto;
362
+ flex-direction: column;
363
+ min-height: 0;
364
+ }
365
+
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;
80
374
  display: flex;
81
375
  align-items: center;
82
376
  justify-content: center;
83
- cursor: pointer;
84
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
85
- z-index: 10;
86
- transition: all 0.3s ease;
377
+ }
378
+
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%;
388
+ }
389
+
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%;
406
+ }
407
+
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
+ }
87
422
 
88
- &:hover {
89
- background: #f5f5f5;
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%;
432
+ display: flex;
433
+ flex-direction: column;
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);
439
+ }
440
+
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%);
449
+ }
450
+
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 {
464
+ font-size: 16px;
465
+ font-weight: 700;
466
+ line-height: 1.2;
467
+ }
468
+
469
+ .steps-guest-meta {
470
+ margin-top: 4px;
471
+ font-size: 12px;
472
+ opacity: 0.92;
473
+ }
474
+
475
+ .steps-guest-body .guest-info {
476
+ margin: 0;
477
+ box-shadow: none;
478
+ border: 1px solid #e4ebf7;
479
+ border-radius: 12px;
480
+ }
481
+
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%;
488
+ }
489
+
490
+ .steps-guest-body .guest-info .ant-row > [class*='ant-col'] {
491
+ flex: 0 0 100%;
492
+ max-width: 100%;
493
+ }
494
+
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;
502
+ }
503
+
504
+ .steps-guest-fallback p {
505
+ margin: 0 0 6px;
506
+ }
507
+
508
+ .steps-guest-fallback p:last-child {
509
+ margin-bottom: 0;
510
+ }
511
+
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;
521
+ }
522
+
523
+ .steps-header-actions {
524
+ justify-content: flex-start;
90
525
  }
91
526
  }
92
527
 
93
- /* ============================
94
- MOBILE & TABLET VIEW FIXES
95
- ============================ */
528
+ @media (max-width: 992px) {
529
+ .process-steps-page {
530
+ min-height: 100vh;
531
+ height: 100vh;
532
+ }
96
533
 
97
-
534
+ .steps-main-card {
535
+ height: 100%;
536
+ min-height: 0;
537
+ }
98
538
 
99
- @media (max-width: 992px) { // iPad & tablets
100
- .timeline-card .ant-card-body {
539
+ .steps-main-card .ant-card-body {
101
540
  padding: 12px;
102
- min-height: auto;
103
541
  }
104
542
 
105
- .timeline-sidebar {
106
- flex-direction: row !important;
107
- overflow-x: auto;
108
- gap: 12px;
109
- padding-bottom: 10px;
110
- border-bottom: 1px solid #eee;
543
+ .steps-layout {
544
+ min-height: auto;
545
+ overflow: visible;
111
546
  }
112
547
 
113
- .timeline-step {
114
- flex-direction: column;
115
- align-items: center;
548
+ .steps-content-panel {
549
+ min-height: auto;
116
550
  }
117
551
 
118
- .step-marker {
119
- margin-right: 0;
552
+ .steps-stage-body {
553
+ padding: 0;
120
554
  }
121
555
 
122
- .step-info {
123
- text-align: center;
556
+ .steps-guest-column {
557
+ min-height: 260px;
124
558
  }
559
+ }
125
560
 
126
- .toggle-arrow {
127
- display: none !important; /* Hide collapse icon */
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;
128
578
  }
129
579
  }
130
580
 
131
- @media (max-width: 768px) { // mobile screens
132
- .timeline-sidebar {
133
- gap: 8px;
581
+ @media (max-width: 768px) {
582
+ .steps-breadcrumb-item {
583
+ max-width: 200px;
584
+ padding: 5px 9px;
134
585
  }
135
586
 
136
- .step-number {
137
- width: 24px;
138
- height: 24px;
139
- font-size: 12px;
587
+ .steps-title {
588
+ font-size: 16px;
140
589
  }
141
590
 
142
- .step-title {
143
- font-size: 11px;
591
+ .steps-description {
592
+ font-size: 13px;
144
593
  }
145
594
 
146
- .step-main {
147
- font-size: 13px;
595
+ .steps-header-actions {
596
+ display: grid;
597
+ grid-template-columns: repeat(2, minmax(120px, 1fr));
598
+ width: 100%;
148
599
  }
149
600
 
150
- .vertical-line {
151
- display: none;
601
+ .steps-header-actions .ant-btn {
602
+ width: 100%;
152
603
  }
153
604
 
154
- /* Card layout full width */
155
- .timeline-card .ant-card-body {
156
- padding: 10px;
605
+ .steps-header-actions .ant-select {
606
+ width: 100%;
157
607
  }
158
608
  }
159
-