ui-soxo-bootstrap-core 2.6.1-dev.16 → 2.6.1-dev.18
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/landing-api/landing-api.js +29 -12
- 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 +49 -23
- 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/reporting/components/reporting-dashboard/reporting-dashboard.js +0 -1
- 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
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
.right-section {
|
|
124
124
|
margin-top: 0px;
|
|
125
125
|
width: 100%;
|
|
126
|
-
overflow-x:
|
|
126
|
+
overflow-x: auto;
|
|
127
127
|
position: relative;
|
|
128
128
|
padding: 15px;
|
|
129
129
|
margin-left: 212px;
|
|
@@ -155,12 +155,10 @@
|
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
|
|
158
|
+
@media only screen and (max-width: 768px) {
|
|
159
159
|
margin-left: 0 !important; // remove left margin on mobile
|
|
160
160
|
padding: 10px !important;
|
|
161
161
|
}
|
|
162
|
-
|
|
163
|
-
|
|
164
162
|
}
|
|
165
163
|
|
|
166
164
|
.profile-avatar {
|
|
@@ -203,16 +201,19 @@
|
|
|
203
201
|
display: flex;
|
|
204
202
|
justify-content: space-between;
|
|
205
203
|
// padding: 3px 8px;
|
|
206
|
-
border
|
|
204
|
+
border: 1px solid rgba(224, 229, 238, 0.9);
|
|
207
205
|
position: fixed;
|
|
208
|
-
height:
|
|
206
|
+
height: 58px;
|
|
209
207
|
top: 0;
|
|
210
|
-
background:
|
|
208
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 250, 252, 0.98) 100%);
|
|
209
|
+
backdrop-filter: blur(12px);
|
|
211
210
|
z-index: 1000;
|
|
212
211
|
width: 92%;
|
|
213
212
|
overflow-x: hidden;
|
|
214
213
|
overflow-y: hidden;
|
|
215
|
-
padding:
|
|
214
|
+
padding: 8px 12px;
|
|
215
|
+
border-radius: 0 0 14px 14px;
|
|
216
|
+
box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
|
|
216
217
|
|
|
217
218
|
&.open {
|
|
218
219
|
width: calc(100% - 212px);
|
|
@@ -220,20 +221,27 @@
|
|
|
220
221
|
left: 212px;
|
|
221
222
|
}
|
|
222
223
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
224
|
+
&.close {
|
|
225
|
+
width: calc(100% - 96px);
|
|
226
|
+
left: 88px;
|
|
227
|
+
}
|
|
227
228
|
|
|
228
|
-
|
|
229
|
-
|
|
229
|
+
@media only screen and (max-width: 768px) {
|
|
230
|
+
padding: 8px 10px 8px 14px !important;
|
|
230
231
|
left: 0 !important;
|
|
231
|
-
|
|
232
|
-
}
|
|
232
|
+
width: 100% !important;
|
|
233
233
|
|
|
234
|
+
&.open {
|
|
235
|
+
width: 100% !important;
|
|
236
|
+
left: 0 !important;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
234
239
|
|
|
235
240
|
.page-header-name {
|
|
236
241
|
display: flex;
|
|
242
|
+
align-items: center;
|
|
243
|
+
gap: 8px;
|
|
244
|
+
min-width: 0;
|
|
237
245
|
}
|
|
238
246
|
|
|
239
247
|
&.hidden {
|
|
@@ -243,23 +251,41 @@
|
|
|
243
251
|
.toggle-box {
|
|
244
252
|
display: flex;
|
|
245
253
|
align-items: center;
|
|
254
|
+
justify-content: center;
|
|
246
255
|
cursor: pointer;
|
|
256
|
+
min-width: 34px;
|
|
257
|
+
height: 34px;
|
|
258
|
+
border-radius: 10px;
|
|
259
|
+
background: rgba(255, 255, 255, 0.8);
|
|
260
|
+
transition:
|
|
261
|
+
background-color 180ms ease,
|
|
262
|
+
border-color 180ms ease,
|
|
263
|
+
box-shadow 180ms ease,
|
|
264
|
+
transform 180ms ease;
|
|
247
265
|
|
|
248
266
|
h4 {
|
|
249
267
|
margin-bottom: 0px;
|
|
250
268
|
}
|
|
269
|
+
|
|
270
|
+
&:hover {
|
|
271
|
+
background: rgba(247, 248, 251, 0.98);
|
|
272
|
+
border-color: rgba(219, 225, 235, 0.95);
|
|
273
|
+
box-shadow: 0 2px 8px rgba(71, 85, 105, 0.08);
|
|
274
|
+
transform: translateY(-1px);
|
|
275
|
+
}
|
|
251
276
|
}
|
|
252
277
|
|
|
253
278
|
.toggle-menu {
|
|
254
|
-
margin-right:
|
|
279
|
+
margin-right: 2px;
|
|
255
280
|
cursor: pointer;
|
|
256
281
|
// padding: 10px;
|
|
257
282
|
// border-radius: 4px;
|
|
258
283
|
// border: 1px solid #dcdcdc;
|
|
259
|
-
margin-right:
|
|
284
|
+
margin-right: 6px;
|
|
285
|
+
border: 1px solid rgba(225, 231, 240, 0.95);
|
|
260
286
|
|
|
261
287
|
span {
|
|
262
|
-
margin-right:
|
|
288
|
+
margin-right: 0;
|
|
263
289
|
}
|
|
264
290
|
|
|
265
291
|
&:hover {
|
|
@@ -280,22 +306,97 @@
|
|
|
280
306
|
.page-menu {
|
|
281
307
|
display: flex;
|
|
282
308
|
align-items: center;
|
|
283
|
-
gap:
|
|
309
|
+
gap: 8px;
|
|
310
|
+
min-width: 0;
|
|
311
|
+
padding: 4px 6px;
|
|
312
|
+
border-radius: 12px;
|
|
313
|
+
border: 1px solid rgba(228, 233, 242, 0.9);
|
|
314
|
+
background: rgba(255, 255, 255, 0.72);
|
|
315
|
+
backdrop-filter: blur(8px);
|
|
284
316
|
|
|
285
317
|
a {
|
|
286
|
-
margin:
|
|
318
|
+
margin: 0;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.header-action {
|
|
322
|
+
display: inline-flex;
|
|
323
|
+
align-items: center;
|
|
324
|
+
min-height: 34px;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.header-action .ant-btn {
|
|
328
|
+
border-radius: 10px;
|
|
329
|
+
border-color: rgba(223, 229, 238, 0.95);
|
|
330
|
+
background: rgba(255, 255, 255, 0.9);
|
|
331
|
+
box-shadow: none;
|
|
332
|
+
transition:
|
|
333
|
+
border-color 180ms ease,
|
|
334
|
+
box-shadow 180ms ease,
|
|
335
|
+
transform 180ms ease,
|
|
336
|
+
background-color 180ms ease;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.header-action .ant-btn:hover {
|
|
340
|
+
background: rgba(247, 248, 251, 0.98);
|
|
341
|
+
border-color: rgba(219, 225, 235, 0.95);
|
|
342
|
+
box-shadow: 0 2px 8px rgba(71, 85, 105, 0.08);
|
|
343
|
+
transform: translateY(-1px);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.header-action-search {
|
|
347
|
+
position: relative;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.header-action-search .ant-input-affix-wrapper {
|
|
351
|
+
height: 34px;
|
|
352
|
+
border-radius: 10px;
|
|
353
|
+
border-color: rgba(223, 229, 238, 0.95);
|
|
354
|
+
background: rgba(255, 255, 255, 0.9);
|
|
355
|
+
box-shadow: none;
|
|
356
|
+
transition:
|
|
357
|
+
border-color 180ms ease,
|
|
358
|
+
box-shadow 180ms ease,
|
|
359
|
+
background-color 180ms ease;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.header-action-search .ant-input-affix-wrapper:hover {
|
|
363
|
+
border-color: rgba(214, 221, 232, 0.95);
|
|
364
|
+
background: rgba(249, 250, 252, 0.98);
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.header-action-search .ant-input-affix-wrapper:focus-within {
|
|
368
|
+
border-color: rgba(148, 163, 184, 0.95);
|
|
369
|
+
box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.14);
|
|
287
370
|
}
|
|
288
371
|
|
|
289
372
|
.branch-selection {
|
|
290
373
|
margin: 0px 10px;
|
|
291
374
|
}
|
|
292
|
-
|
|
375
|
+
.branch-switcher {
|
|
293
376
|
.branches {
|
|
294
377
|
.ant-select {
|
|
295
378
|
min-width: 150px;
|
|
296
379
|
}
|
|
297
380
|
}
|
|
298
381
|
}
|
|
382
|
+
|
|
383
|
+
.header-profile-wrap {
|
|
384
|
+
padding: 0 6px 0 2px;
|
|
385
|
+
border-radius: 10px;
|
|
386
|
+
border: 1px solid rgba(228, 233, 242, 0.75);
|
|
387
|
+
background: rgba(255, 255, 255, 0.82);
|
|
388
|
+
gap: 4px;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.header-profile-name {
|
|
392
|
+
display: inline-block;
|
|
393
|
+
max-width: 132px;
|
|
394
|
+
overflow: hidden;
|
|
395
|
+
text-overflow: ellipsis;
|
|
396
|
+
white-space: nowrap;
|
|
397
|
+
font-size: 12px;
|
|
398
|
+
font-weight: 600;
|
|
399
|
+
}
|
|
299
400
|
}
|
|
300
401
|
|
|
301
402
|
.header-blk {
|
|
@@ -315,6 +416,10 @@
|
|
|
315
416
|
margin-bottom: 10px;
|
|
316
417
|
}
|
|
317
418
|
}
|
|
419
|
+
|
|
420
|
+
.page-content-stage {
|
|
421
|
+
will-change: transform, opacity;
|
|
422
|
+
}
|
|
318
423
|
}
|
|
319
424
|
|
|
320
425
|
.side-drawer-content-wrapper {
|
|
@@ -323,7 +428,40 @@
|
|
|
323
428
|
padding: 0px;
|
|
324
429
|
}
|
|
325
430
|
}
|
|
326
|
-
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
@media only screen and (max-width: 1100px) {
|
|
434
|
+
.global-header {
|
|
435
|
+
.page-wrapper {
|
|
436
|
+
.page-menu {
|
|
437
|
+
gap: 6px;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.page-menu .header-profile-name {
|
|
441
|
+
max-width: 88px;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.page-menu .header-action-search .ant-input-affix-wrapper {
|
|
445
|
+
width: 210px !important;
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
@media only screen and (max-width: 900px) {
|
|
452
|
+
.global-header {
|
|
453
|
+
.page-wrapper {
|
|
454
|
+
padding: 7px 10px;
|
|
455
|
+
|
|
456
|
+
.page-menu {
|
|
457
|
+
padding: 4px;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.page-menu .header-profile-name {
|
|
461
|
+
display: none;
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
}
|
|
327
465
|
}
|
|
328
466
|
|
|
329
467
|
.sidebar-container {
|
|
@@ -361,7 +499,7 @@
|
|
|
361
499
|
.ant-drawer-body {
|
|
362
500
|
padding: 0px;
|
|
363
501
|
}
|
|
364
|
-
.ant-drawer-header{
|
|
502
|
+
.ant-drawer-header {
|
|
365
503
|
padding: 2px 20px;
|
|
366
504
|
}
|
|
367
505
|
}
|
|
@@ -22,7 +22,89 @@ export const boxVariants = {
|
|
|
22
22
|
},
|
|
23
23
|
right: { x: [null, 150, 0] },
|
|
24
24
|
zoom: { scale: [null, 2, 1], rotate: [0, 90, 0] }
|
|
25
|
-
}
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export const sidebarIntroVariants = {
|
|
28
|
+
hidden: {
|
|
29
|
+
opacity: 0,
|
|
30
|
+
y: -10,
|
|
31
|
+
filter: 'blur(6px)',
|
|
32
|
+
},
|
|
33
|
+
visible: {
|
|
34
|
+
opacity: 1,
|
|
35
|
+
y: 0,
|
|
36
|
+
filter: 'blur(0px)',
|
|
37
|
+
transition: {
|
|
38
|
+
duration: 0.35,
|
|
39
|
+
ease: [.22,1,.36,1],
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export const sidebarMenuSurfaceVariants = {
|
|
45
|
+
hidden: {
|
|
46
|
+
opacity: 0,
|
|
47
|
+
x: -10,
|
|
48
|
+
filter: 'blur(4px)',
|
|
49
|
+
},
|
|
50
|
+
visible: {
|
|
51
|
+
opacity: 1,
|
|
52
|
+
x: 0,
|
|
53
|
+
filter: 'blur(0px)',
|
|
54
|
+
transition: {
|
|
55
|
+
duration: 0.4,
|
|
56
|
+
ease: [.22,1,.36,1],
|
|
57
|
+
when: 'beforeChildren',
|
|
58
|
+
staggerChildren: 0.035,
|
|
59
|
+
delayChildren: 0.05,
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export const sidebarGroupVariants = {
|
|
65
|
+
hidden: {},
|
|
66
|
+
visible: {
|
|
67
|
+
transition: {
|
|
68
|
+
staggerChildren: 0.03,
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
export const sidebarItemRevealVariants = {
|
|
74
|
+
hidden: { opacity: 0, x: -8, y: 2 },
|
|
75
|
+
visible: {
|
|
76
|
+
opacity: 1,
|
|
77
|
+
x: 0,
|
|
78
|
+
y: 0,
|
|
79
|
+
transition: {
|
|
80
|
+
duration: 0.26,
|
|
81
|
+
ease: [.22,1,.36,1],
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const sidebarLoaderContainerVariants = {
|
|
87
|
+
hidden: { opacity: 0 },
|
|
88
|
+
visible: {
|
|
89
|
+
opacity: 1,
|
|
90
|
+
transition: {
|
|
91
|
+
staggerChildren: 0.06,
|
|
92
|
+
delayChildren: 0.04,
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
export const sidebarLoaderRowVariants = {
|
|
98
|
+
hidden: { opacity: 0, x: -8 },
|
|
99
|
+
visible: {
|
|
100
|
+
opacity: 1,
|
|
101
|
+
x: 0,
|
|
102
|
+
transition: {
|
|
103
|
+
duration: 0.25,
|
|
104
|
+
ease: [.22,1,.36,1],
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
};
|
|
26
108
|
|
|
27
109
|
export const barsVariant = {
|
|
28
110
|
animate: { transition: { staggerChildren: 0.095 } }
|
|
@@ -49,4 +131,4 @@ export const boxVariants = {
|
|
|
49
131
|
scale: [1, 0, 1],
|
|
50
132
|
rotate: [0, 360, 0]
|
|
51
133
|
}
|
|
52
|
-
}
|
|
134
|
+
}
|