bfg-common 1.4.101 → 1.4.103

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 (44) hide show
  1. package/assets/img/icons/icons-sprite-dark-2.svg +343 -308
  2. package/assets/img/icons/icons-sprite-dark-5.svg +491 -83
  3. package/assets/img/icons/icons-sprite-dark-6.svg +3 -1
  4. package/assets/img/icons/icons-sprite-light-2.svg +343 -308
  5. package/assets/img/icons/icons-sprite-light-5.svg +491 -83
  6. package/assets/img/icons/icons-sprite-light-6.svg +3 -1
  7. package/assets/localization/local_be.json +2584 -2584
  8. package/assets/localization/local_en.json +2588 -2588
  9. package/assets/localization/local_hy.json +2588 -2588
  10. package/assets/localization/local_zh.json +2586 -2586
  11. package/assets/scss/common/icons/icons-2.scss +18 -0
  12. package/assets/scss/common/icons/icons-5.scss +367 -11
  13. package/assets/scss/common/icons/icons-6.scss +4 -4
  14. package/assets/scss/common/icons/icons.scss +0 -4
  15. package/components/atoms/modal/bySteps/BySteps.vue +253 -253
  16. package/components/atoms/stack/StackBlock.vue +184 -184
  17. package/components/common/browse/blocks/Title.vue +91 -91
  18. package/components/common/browse/blocks/info/Date.vue +21 -21
  19. package/components/common/context/recursion/Recursion.vue +86 -86
  20. package/components/common/context/recursion/RecursionNew.vue +198 -198
  21. package/components/common/context/recursion/RecursionOld.vue +212 -212
  22. package/components/common/layout/theHeader/userMenu/userMenuNew/UserMenuNew.vue +156 -156
  23. package/components/common/split/horizontal/HorizontalNew.vue +321 -321
  24. package/components/common/vm/actions/add/Add.vue +609 -609
  25. package/components/common/vm/actions/clone/Clone.vue +522 -522
  26. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/lib/config/options.ts +20 -20
  27. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Cpu.vue +403 -403
  28. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Hv.vue +99 -99
  29. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/StreamingMode.vue +85 -85
  30. package/components/common/vm/actions/editSettings/EditSettings.vue +327 -327
  31. package/composables/productNameLocal.ts +30 -30
  32. package/package.json +1 -1
  33. package/plugins/recursion.ts +311 -311
  34. package/public/spice-console/lib/images/bitmap.js +203 -203
  35. package/store/tasks/mappers/recentTasks.ts +45 -45
  36. package/assets/img/icons/icons-sprite-dark-7.svg +0 -8
  37. package/assets/img/icons/icons-sprite-dark-8.svg +0 -190
  38. package/assets/img/icons/icons-sprite-dark-9.svg +0 -71
  39. package/assets/img/icons/icons-sprite-light-7.svg +0 -8
  40. package/assets/img/icons/icons-sprite-light-8.svg +0 -190
  41. package/assets/img/icons/icons-sprite-light-9.svg +0 -71
  42. package/assets/scss/common/icons/icons-7.scss +0 -29
  43. package/assets/scss/common/icons/icons-8.scss +0 -191
  44. package/assets/scss/common/icons/icons-9.scss +0 -95
@@ -100,9 +100,18 @@
100
100
  .vx-icon-fan {
101
101
  background-position: 0 41.7721518987%;
102
102
  }
103
+ .icon-help {
104
+ background-position: 50.67%;
105
+ }
103
106
  .vx-icon-memory {
104
107
  background-position: 0 100%;
105
108
  }
109
+ .icon-add-folder {
110
+ background-position: 0 46.8%;
111
+ }
112
+ .icon-ds-iso-image {
113
+ background-position: 0 77.2%;
114
+ }
106
115
 
107
116
  /* _____BACKGROUND IMAGE_____ */
108
117
  .icon-vSphere-dsVmNvram,
@@ -142,6 +151,9 @@
142
151
  .vx-icon-power,
143
152
  .vx-icon-fan,
144
153
  .vx-icon-memory,
154
+ .icon-help,
155
+ .icon-add-folder,
156
+ .icon-ds-iso-image,
145
157
  .vsphere-icon-snapshot-here {
146
158
  background-image: url('assets/img/icons/icons-sprite-light-2.svg');
147
159
 
@@ -184,6 +196,9 @@
184
196
  .active .vx-icon-power,
185
197
  .active .vx-icon-fan,
186
198
  .active .vx-icon-memory,
199
+ .active .icon-help,
200
+ .active .icon-add-folder,
201
+ .active .icon-ds-iso-image,
187
202
  .active .vsphere-icon-snapshot-here {
188
203
  background-image: url('assets/img/icons/icons-sprite-dark-2.svg');
189
204
 
@@ -235,6 +250,9 @@
235
250
  .vsphere-icon-snapshot-here,
236
251
  .vx-icon-power,
237
252
  .vx-icon-fan,
253
+ .icon-help,
254
+ .icon-add-folder,
255
+ .icon-ds-iso-image,
238
256
  .vx-icon-memory {
239
257
  display: inline-block;
240
258
  width: 18px;
@@ -1,21 +1,200 @@
1
1
  /* _____BACKGROUND POSITION_____ */
2
- .icon-workload-management {
3
- background-position: 0 100%;
4
- }
2
+
5
3
  .icon-global-inventory-lists {
6
- background-position: 0 90%;
4
+ background-position: 0 22.8%;
7
5
  }
8
6
  .icon-administration {
9
- background-position: 0 85%;
7
+ background-position: 0 21.55%;
10
8
  }
11
9
  .vm-ui-icon-vmReset {
12
- background-position: 0 20%;
10
+ background-position: 0 5.08%;
13
11
  }
14
12
  .vx-icon-vmMigrate {
15
- background-position: 0 5%;
13
+ background-position: 0 1.3%;
16
14
  }
17
15
  .network-lib-ui-icon-vswitch {
18
- background-position: 0 95%;
16
+ background-position: 0 24.05%;
17
+ }
18
+ .host-disconnect,
19
+ .icon-host-disconnected {
20
+ background-position: 0 25.3%;
21
+ }
22
+ .icon-send-feedback {
23
+ background-position: 0 26.6%;
24
+ }
25
+ .icon-password {
26
+ background-position: 0 27.9%;
27
+ }
28
+ .icon-log-out {
29
+ background-position: 0 29.2%;
30
+ }
31
+ .icon-hybrid-cloud-services {
32
+ background-position: 0 30.4%;
33
+ }
34
+ .icon-access-log {
35
+ background-position: 0 31.7%;
36
+ }
37
+ .icon-logs {
38
+ background-position: 0 33%;
39
+ }
40
+ .icon-lifecycle-manager {
41
+ background-position: 0 34.2%;
42
+ }
43
+ .icon-realize-operations {
44
+ background-position: 0 35.5%;
45
+ }
46
+ .icon-virtual-machines {
47
+ background-position: 0 36.8%;
48
+ }
49
+ .icon-connection {
50
+ background-position: 0 38%;
51
+ }
52
+ .icon-certificate-renew {
53
+ background-position: 0 39.3%;
54
+ }
55
+ .icon-power {
56
+ background-position: 0 40.5%;
57
+ }
58
+ .icon-web-terminal {
59
+ background-position: 0 41.8%;
60
+ }
61
+ .icon-move {
62
+ background-position: 0 43%;
63
+ }
64
+ .icon-settings {
65
+ background-position: 0 44.3%;
66
+ }
67
+ .icon-remove {
68
+ background-position: 0 45.6%;
69
+ }
70
+ .icon-backup-storage {
71
+ background-position: 0 46.8%;
72
+ }
73
+ .icon-backup-storage-error {
74
+ background-position: 0 48.1%;
75
+ }
76
+ .icon-backup-storage-warning {
77
+ background-position: 0 49.4%;
78
+ }
79
+ .icon-backup-storage-maintenance {
80
+ background-position: 0 50.63%;
81
+ }
82
+ .icon-backup-storage-inaccessible {
83
+ background-position: 0 51.9%;
84
+ }
85
+ .icon-backup-storage-connected {
86
+ background-position: 0 53.1%;
87
+ }
88
+ .icon-backup-storage-disconnected {
89
+ background-position: 0 54.4%;
90
+ }
91
+ .icon-backup-bucket {
92
+ background-position: 0 56.96%;
93
+ }
94
+ .icon-backup-bucket-ok {
95
+ background-position: 0 58.2%;
96
+ }
97
+ .icon-backup-bucket-warning {
98
+ background-position: 0 59.5%;
99
+ }
100
+ .icon-backup-bucket-error {
101
+ background-position: 0 60.75%;
102
+ }
103
+ .icon-add-backup-storage {
104
+ background-position: 0 55.7%;
105
+ }
106
+ .icon-import-vm {
107
+ background-position: 0 67%;
108
+ }
109
+ .icon-add-datacenter {
110
+ background-position: 0 68.3%;
111
+ }
112
+ .icon-edit {
113
+ background-position: 0 69.6%;
114
+ }
115
+ .icon-backup {
116
+ background-position: 0 62%;
117
+ }
118
+ .icon-backup-success {
119
+ background-position: 0 63.2%;
120
+ }
121
+ .icon-backup-warning {
122
+ background-position: 0 64.5%;
123
+ }
124
+ .icon-backup-error {
125
+ background-position: 0 65.8%;
126
+ }
127
+ .icon-calendar-days {
128
+ background-position: 0 70.9%;
129
+ }
130
+ .icon-calendar-months {
131
+ background-position: 0 72.2%;
132
+ }
133
+ .icon-calendar-years {
134
+ background-position: 0 73.4%;
135
+ }
136
+ .icon-folder-warning {
137
+ background-position: 0 74.6%;
138
+ }
139
+ .icon-folder-error {
140
+ background-position: 0 75.9%;
141
+ }
142
+ .icon-file {
143
+ background-position: 0 77.2%;
144
+ }
145
+ .icon-file-warning {
146
+ background-position: 0 78.4%;
147
+ }
148
+ .icon-file-error {
149
+ background-position: 0 79.7%;
150
+ }
151
+ .icon-virtual-disk {
152
+ background-position: 0 81%;
153
+ }
154
+ .icon-virtual-disk-warning {
155
+ background-position: 0 82.2%;
156
+ }
157
+ .icon-virtual-disk-error {
158
+ background-position: 0 83.5%;
159
+ }
160
+ .icon-log-file {
161
+ background-position: 0 84.8%;
162
+ }
163
+ .icon-log-file-warning {
164
+ background-position: 0 86%;
165
+ }
166
+ .icon-log-file-error {
167
+ background-position: 0 87.3%;
168
+ }
169
+ .vx-icon-memory-warning {
170
+ background-position: 0 88.6%;
171
+ }
172
+ .vx-icon-memory-error {
173
+ background-position: 0 89.8%;
174
+ }
175
+ .icon-ds-iso-image-warning {
176
+ background-position: 0 91.1%;
177
+ }
178
+ .icon-ds-iso-image-error {
179
+ background-position: 0 92.4%;
180
+ }
181
+ .icon-temporary-file {
182
+ background-position: 0 93.6%;
183
+ }
184
+ .icon-temporary-file-warning {
185
+ background-position: 0 94.9%;
186
+ }
187
+ .icon-temporary-file-error {
188
+ background-position: 0 96.2%;
189
+ }
190
+ .icon-diff {
191
+ background-position: 0 97.4%;
192
+ }
193
+ .icon-warning {
194
+ background-position: 0 98.7%;
195
+ }
196
+ .icon-error {
197
+ background-position: 0 100%;
19
198
  }
20
199
 
21
200
  /* _____BACKGROUND IMAGE_____ */
@@ -24,7 +203,66 @@
24
203
  .icon-administration,
25
204
  .icon-global-inventory-lists,
26
205
  .network-lib-ui-icon-vswitch,
27
- .icon-workload-management {
206
+ .host-disconnect,
207
+ .icon-send-feedback,
208
+ .icon-password,
209
+ .icon-log-out,
210
+ .icon-hybrid-cloud-services,
211
+ .icon-access-log,
212
+ .icon-logs,
213
+ .icon-lifecycle-manager,
214
+ .icon-realize-operations,
215
+ .icon-virtual-machines,
216
+ .icon-connection,
217
+ .icon-certificate-renew,
218
+ .icon-power,
219
+ .icon-web-terminal,
220
+ .icon-move,
221
+ .icon-settings,
222
+ .icon-remove,
223
+ .icon-backup-storage,
224
+ .icon-backup-storage-error,
225
+ .icon-backup-storage-warning,
226
+ .icon-backup-storage-maintenance,
227
+ .icon-backup-storage-inaccessible,
228
+ .icon-backup-storage-connected,
229
+ .icon-backup-storage-disconnected,
230
+ .icon-backup-bucket,
231
+ .icon-backup-bucket-ok,
232
+ .icon-backup-bucket-warning,
233
+ .icon-backup-bucket-error,
234
+ .icon-import-vm,
235
+ .icon-add-datacenter,
236
+ .icon-edit,
237
+ .icon-backup,
238
+ .icon-backup-success,
239
+ .icon-backup-warning,
240
+ .icon-backup-error,
241
+ .icon-calendar-days,
242
+ .icon-calendar-months,
243
+ .icon-calendar-years,
244
+ .icon-folder-warning,
245
+ .icon-folder-error,
246
+ .icon-file,
247
+ .icon-file-warning,
248
+ .icon-file-error,
249
+ .icon-virtual-disk,
250
+ .icon-virtual-disk-warning,
251
+ .icon-virtual-disk-error,
252
+ .icon-log-file,
253
+ .icon-log-file-warning,
254
+ .icon-log-file-error,
255
+ .vx-icon-memory-warning,
256
+ .vx-icon-memory-error,
257
+ .icon-ds-iso-image-warning,
258
+ .icon-ds-iso-image-error,
259
+ .icon-temporary-file,
260
+ .icon-temporary-file-warning,
261
+ .icon-temporary-file-error,
262
+ .icon-diff,
263
+ .icon-diff-warning,
264
+ .icon-diff-error,
265
+ .icon-host-disconnected {
28
266
  background-image: url('@/assets/img/icons/icons-sprite-light-5.svg');
29
267
 
30
268
  html.dark-theme & {
@@ -36,7 +274,66 @@
36
274
  .active .icon-administration,
37
275
  .active .icon-global-inventory-lists,
38
276
  .active .network-lib-ui-icon-vswitch,
39
- .active .icon-workload-management {
277
+ .active .host-disconnect,
278
+ .active .icon-send-feedback,
279
+ .active .icon-password,
280
+ .active .icon-log-out,
281
+ .active .icon-hybrid-cloud-services,
282
+ .active .icon-access-log,
283
+ .active .icon-logs,
284
+ .active .icon-lifecycle-manager,
285
+ .active .icon-realize-operations,
286
+ .active .icon-virtual-machines,
287
+ .active .icon-connection,
288
+ .active .icon-certificate-renew,
289
+ .active .icon-power,
290
+ .active .icon-web-terminal,
291
+ .active .icon-move,
292
+ .active .icon-settings,
293
+ .active .icon-remove,
294
+ .active .icon-backup-storage,
295
+ .active .icon-backup-storage-error,
296
+ .active .icon-backup-storage-warning,
297
+ .active .icon-backup-storage-maintenance,
298
+ .active .icon-backup-storage-inaccessible,
299
+ .active .icon-backup-storage-connected,
300
+ .active .icon-backup-storage-disconnected,
301
+ .active .icon-backup-bucket,
302
+ .active .icon-backup-bucket-ok,
303
+ .active .icon-backup-bucket-warning,
304
+ .active .icon-backup-bucket-error,
305
+ .active .icon-import-vm,
306
+ .active .icon-add-datacenter,
307
+ .active .icon-edit,
308
+ .active .icon-backup,
309
+ .active .icon-backup-success,
310
+ .active .icon-backup-warning,
311
+ .active .icon-backup-error,
312
+ .active .icon-calendar-days,
313
+ .active .icon-calendar-months,
314
+ .active .icon-calendar-years,
315
+ .active .icon-folder-warning,
316
+ .active .icon-folder-error,
317
+ .active .icon-file,
318
+ .active .icon-file-warning,
319
+ .active .icon-file-error,
320
+ .active .icon-virtual-disk,
321
+ .active .icon-virtual-disk-warning,
322
+ .active .icon-virtual-disk-error,
323
+ .active .icon-log-file,
324
+ .active .icon-log-file-warning,
325
+ .active .icon-log-file-error,
326
+ .active .vx-icon-memory-warning,
327
+ .active .vx-icon-memory-error,
328
+ .active .icon-ds-iso-image-warning,
329
+ .active .icon-ds-iso-image-error,
330
+ .active .icon-temporary-file,
331
+ .active .icon-temporary-file-warning,
332
+ .active .icon-temporary-file-error,
333
+ .active .icon-diff,
334
+ .active .icon-diff-warning,
335
+ .active .icon-diff-error,
336
+ .active .icon-host-disconnected {
40
337
  background-image: url('@/assets/img/icons/icons-sprite-dark-5.svg');
41
338
 
42
339
  html.dark-theme & {
@@ -50,7 +347,66 @@
50
347
  .icon-administration,
51
348
  .icon-global-inventory-lists,
52
349
  .network-lib-ui-icon-vswitch,
53
- .icon-workload-management {
350
+ .host-disconnect,
351
+ .icon-send-feedback,
352
+ .icon-password,
353
+ .icon-log-out,
354
+ .icon-hybrid-cloud-services,
355
+ .icon-access-log,
356
+ .icon-logs,
357
+ .icon-lifecycle-manager,
358
+ .icon-realize-operations,
359
+ .icon-virtual-machines,
360
+ .icon-connection,
361
+ .icon-certificate-renew,
362
+ .icon-power,
363
+ .icon-web-terminal,
364
+ .icon-move,
365
+ .icon-settings,
366
+ .icon-remove,
367
+ .icon-backup-storage,
368
+ .icon-backup-storage-error,
369
+ .icon-backup-storage-warning,
370
+ .icon-backup-storage-maintenance,
371
+ .icon-backup-storage-inaccessible,
372
+ .icon-backup-storage-connected,
373
+ .icon-backup-storage-disconnected,
374
+ .icon-backup-bucket,
375
+ .icon-backup-bucket-ok,
376
+ .icon-backup-bucket-warning,
377
+ .icon-backup-bucket-error,
378
+ .icon-import-vm,
379
+ .icon-add-datacenter,
380
+ .icon-edit,
381
+ .icon-backup,
382
+ .icon-backup-success,
383
+ .icon-backup-warning,
384
+ .icon-backup-error,
385
+ .icon-calendar-days,
386
+ .icon-calendar-months,
387
+ .icon-calendar-years,
388
+ .icon-folder-warning,
389
+ .icon-folder-error,
390
+ .icon-file,
391
+ .icon-file-warning,
392
+ .icon-file-error,
393
+ .icon-virtual-disk,
394
+ .icon-virtual-disk-warning,
395
+ .icon-virtual-disk-error,
396
+ .icon-log-file,
397
+ .icon-log-file-warning,
398
+ .icon-log-file-error,
399
+ .vx-icon-memory-warning,
400
+ .vx-icon-memory-error,
401
+ .icon-ds-iso-image-warning,
402
+ .icon-ds-iso-image-error,
403
+ .icon-temporary-file,
404
+ .icon-temporary-file-warning,
405
+ .icon-temporary-file-error,
406
+ .icon-diff,
407
+ .icon-diff-warning,
408
+ .icon-diff-error,
409
+ .icon-host-disconnected {
54
410
  display: inline-block;
55
411
  width: 18px;
56
412
  min-width: 18px;
@@ -1,17 +1,17 @@
1
1
  /* _____BACKGROUND POSITION_____ */
2
- .icon-help {
2
+ .icon-workload-management {
3
3
  background-position: 0 100%;
4
4
  }
5
5
 
6
6
  /* _____BACKGROUND IMAGE_____ */
7
- .icon-help {
7
+ .icon-workload-management {
8
8
  background-image: url('../img/icons/icons-sprite-light-6.svg');
9
9
 
10
10
  html.dark-theme & {
11
11
  background-image: url('../img/icons/icons-sprite-dark-6.svg');
12
12
  }
13
13
  }
14
- .active .icon-help {
14
+ .active .icon-workload-management {
15
15
  background-image: url('../img/icons/icons-sprite-dark-6.svg');
16
16
 
17
17
  html.dark-theme & {
@@ -20,7 +20,7 @@
20
20
  }
21
21
 
22
22
  /* _____ICONS COMMON STYLES_____ */
23
- .icon-help {
23
+ .icon-workload-management {
24
24
  display: inline-block;
25
25
  width: 18px;
26
26
  min-width: 18px;
@@ -3,10 +3,6 @@
3
3
  @import 'icons-3';
4
4
  @import 'icons-4';
5
5
  @import 'icons-5';
6
- @import 'icons-6';
7
- @import 'icons-7';
8
- @import 'icons-8';
9
- @import 'icons-9';
10
6
  @import 'lib-icons';
11
7
 
12
8
  /* _____ICONS COMMON STYLES_____ */