@vitrosoftware/common-ui-ts 1.1.109 → 1.1.110
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/css/std/controls/bim-viewer/bim-viewer-index.css +344 -0
- package/css/std/controls/bim-viewer/bim-viewer.css +344 -0
- package/css/std/controls/bim-viewer/img/cancel-white.svg +1 -0
- package/css/std/controls/bim-viewer/img/collapse-bottom-blue.svg +1 -0
- package/css/std/controls/bim-viewer/img/collapse-bottom.svg +1 -0
- package/css/std/controls/bim-viewer/img/compare-dlg-separator.svg +1 -0
- package/css/std/controls/bim-viewer/img/ui-icons_444444_256x240.png +0 -0
- package/dist/index.js +1 -1
- package/lib/third-party.js +0 -17986
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer-models.js +8 -5
- package/src/controls/BimViewer/js/bim-viewer.js +375 -32
- package/src/controls/PdfViewer/js/pdf-viewer.js +17985 -1
|
@@ -14199,4 +14199,348 @@ a.ui-button:active,
|
|
|
14199
14199
|
|
|
14200
14200
|
#fileVersionSelect {
|
|
14201
14201
|
top: calc(50% - 16px);
|
|
14202
|
+
}
|
|
14203
|
+
|
|
14204
|
+
.compare-dlg-body,
|
|
14205
|
+
.compare-dlg-header,
|
|
14206
|
+
.compare-dlg-footer {
|
|
14207
|
+
font-family: 'InterRegular';
|
|
14208
|
+
}
|
|
14209
|
+
|
|
14210
|
+
.compare-dlg-wrap {
|
|
14211
|
+
position: absolute;
|
|
14212
|
+
z-index: 99000007;
|
|
14213
|
+
width: 600px;
|
|
14214
|
+
max-width: 100%;
|
|
14215
|
+
background: #fff;
|
|
14216
|
+
top: 50%;
|
|
14217
|
+
left: 50%;
|
|
14218
|
+
transform: translate(-50%, -50%);
|
|
14219
|
+
font-family: 'InterRegular';
|
|
14220
|
+
border-radius: 4px;
|
|
14221
|
+
border: 1px solid rgba(74, 85, 108, 0.35);
|
|
14222
|
+
user-select: none;
|
|
14223
|
+
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14), 0 12px 34px 0 rgba(0, 0, 0, 0.19);
|
|
14224
|
+
}
|
|
14225
|
+
|
|
14226
|
+
.compare-dlg-body {
|
|
14227
|
+
display: flex;
|
|
14228
|
+
padding: 0 24px 16px;
|
|
14229
|
+
}
|
|
14230
|
+
|
|
14231
|
+
.compare-dlg_doc-sep {
|
|
14232
|
+
width: 68px;
|
|
14233
|
+
background-repeat: no-repeat;
|
|
14234
|
+
background-position: center;
|
|
14235
|
+
background-image: url('img/compare-dlg-separator.svg');
|
|
14236
|
+
}
|
|
14237
|
+
|
|
14238
|
+
.compare-dlg_doc-a-wrap .wrap-inner,
|
|
14239
|
+
.compare-dlg_doc-b-wrap .wrap-inner {
|
|
14240
|
+
width: 230px;
|
|
14241
|
+
max-width: 100%;
|
|
14242
|
+
}
|
|
14243
|
+
|
|
14244
|
+
.compare-dlg_doc-a-wrap .wrap-inner {
|
|
14245
|
+
margin-left: auto;
|
|
14246
|
+
}
|
|
14247
|
+
|
|
14248
|
+
.compare-dlg_doc-b-wrap .wrap-inner {
|
|
14249
|
+
margin-right: auto;
|
|
14250
|
+
}
|
|
14251
|
+
|
|
14252
|
+
.compare-dlg_doc-a-wrap,
|
|
14253
|
+
.compare-dlg_doc-b-wrap {
|
|
14254
|
+
width: calc(50% - 34px);
|
|
14255
|
+
}
|
|
14256
|
+
|
|
14257
|
+
.compare-dlg-header {
|
|
14258
|
+
position: relative;
|
|
14259
|
+
font-size: 18px;
|
|
14260
|
+
line-height: 150%;
|
|
14261
|
+
background: transparent;
|
|
14262
|
+
border-bottom: none;
|
|
14263
|
+
padding: 24px 20px;
|
|
14264
|
+
}
|
|
14265
|
+
|
|
14266
|
+
.compare-dlg-footer {
|
|
14267
|
+
padding: 0;
|
|
14268
|
+
display: flex;
|
|
14269
|
+
justify-content: flex-end;
|
|
14270
|
+
padding: 24px;
|
|
14271
|
+
background-color: #F8F9FA;
|
|
14272
|
+
border-top: 1px solid #E4E6EC;
|
|
14273
|
+
border-radius: 0 0 4px 4px;
|
|
14274
|
+
}
|
|
14275
|
+
|
|
14276
|
+
.dlg-overlay {
|
|
14277
|
+
width: 100%;
|
|
14278
|
+
height: 100%;
|
|
14279
|
+
position: fixed;
|
|
14280
|
+
z-index: 99000006;
|
|
14281
|
+
background: #222D44;
|
|
14282
|
+
opacity: 0.2;
|
|
14283
|
+
display: none;
|
|
14284
|
+
top: 0;
|
|
14285
|
+
left: 0;
|
|
14286
|
+
}
|
|
14287
|
+
|
|
14288
|
+
.wrap-inner-bg {
|
|
14289
|
+
background: #F7F9FA;
|
|
14290
|
+
border: 1px solid #EDF0F2;
|
|
14291
|
+
padding: 15px;
|
|
14292
|
+
}
|
|
14293
|
+
|
|
14294
|
+
.wrap-inner-subtitle {
|
|
14295
|
+
font-size: 16px;
|
|
14296
|
+
padding-bottom: 16px;
|
|
14297
|
+
}
|
|
14298
|
+
|
|
14299
|
+
.compare-dlg_doc-b_name,
|
|
14300
|
+
.compare-dlg_doc-a_name {
|
|
14301
|
+
font-size: 14px;
|
|
14302
|
+
}
|
|
14303
|
+
|
|
14304
|
+
.compare-dlg-wrap .close {
|
|
14305
|
+
cursor: pointer;
|
|
14306
|
+
position: absolute;
|
|
14307
|
+
width: 30px;
|
|
14308
|
+
height: 30px;
|
|
14309
|
+
top: 0;
|
|
14310
|
+
right: -42px;
|
|
14311
|
+
opacity: 1;
|
|
14312
|
+
background-image: url('img/cancel-white.svg');
|
|
14313
|
+
}
|
|
14314
|
+
|
|
14315
|
+
.field-grp,
|
|
14316
|
+
.uk-margin {
|
|
14317
|
+
position: relative;
|
|
14318
|
+
padding: 0 !important;
|
|
14319
|
+
margin-bottom: 22px;
|
|
14320
|
+
}
|
|
14321
|
+
|
|
14322
|
+
.field-grp label,
|
|
14323
|
+
.uk-margin label {
|
|
14324
|
+
color: #4A556C;
|
|
14325
|
+
padding: 0 6px;
|
|
14326
|
+
background: #fff;
|
|
14327
|
+
width: fit-content;
|
|
14328
|
+
position: absolute;
|
|
14329
|
+
top: -10px;
|
|
14330
|
+
left: 10px;
|
|
14331
|
+
z-index: 1000;
|
|
14332
|
+
}
|
|
14333
|
+
|
|
14334
|
+
.uk-margin-last {
|
|
14335
|
+
margin-bottom: 0;
|
|
14336
|
+
}
|
|
14337
|
+
|
|
14338
|
+
.form-body .field-grp:last-child {
|
|
14339
|
+
margin-bottom: 0;
|
|
14340
|
+
}
|
|
14341
|
+
|
|
14342
|
+
.compare-dlg-wrap .wrap-inner {
|
|
14343
|
+
width: unset;
|
|
14344
|
+
}
|
|
14345
|
+
|
|
14346
|
+
.compare-dlg-wrap .wrap-inner-bg {
|
|
14347
|
+
background: #fff;
|
|
14348
|
+
border: none;
|
|
14349
|
+
padding: 0;
|
|
14350
|
+
}
|
|
14351
|
+
|
|
14352
|
+
.compare-dlg_warning {
|
|
14353
|
+
display: none;
|
|
14354
|
+
color: #ff495c;
|
|
14355
|
+
font-size: 14px;
|
|
14356
|
+
padding: 0 24px 16px;
|
|
14357
|
+
}
|
|
14358
|
+
|
|
14359
|
+
.uk-button {
|
|
14360
|
+
font-family: 'InterRegular';
|
|
14361
|
+
outline: none;
|
|
14362
|
+
font-size: 16px;
|
|
14363
|
+
line-height: 24px;
|
|
14364
|
+
cursor: pointer;
|
|
14365
|
+
background: #fff;
|
|
14366
|
+
display: flex;
|
|
14367
|
+
align-items: center;
|
|
14368
|
+
justify-content: center;
|
|
14369
|
+
margin-left: 12px;
|
|
14370
|
+
margin-right: 0;
|
|
14371
|
+
min-width: 139px;
|
|
14372
|
+
height: 40px;
|
|
14373
|
+
padding: 0;
|
|
14374
|
+
border-radius: 4px;
|
|
14375
|
+
border: 1px solid #E4E6EC !important;
|
|
14376
|
+
text-transform: none;
|
|
14377
|
+
}
|
|
14378
|
+
|
|
14379
|
+
.uk-button:active,
|
|
14380
|
+
.uk-button:focus,
|
|
14381
|
+
.uk-button:hover {
|
|
14382
|
+
background: #F3F8FF;
|
|
14383
|
+
}
|
|
14384
|
+
|
|
14385
|
+
.uk-button.disabled {
|
|
14386
|
+
opacity: 0.4;
|
|
14387
|
+
cursor: default;
|
|
14388
|
+
}
|
|
14389
|
+
|
|
14390
|
+
.uk-button-primary:active,
|
|
14391
|
+
.uk-button-primary:focus,
|
|
14392
|
+
.uk-button-primary:hover {
|
|
14393
|
+
background: #3274E0;
|
|
14394
|
+
border: none !important;
|
|
14395
|
+
}
|
|
14396
|
+
|
|
14397
|
+
.uk-button-primary {
|
|
14398
|
+
background: #347FDE;
|
|
14399
|
+
color: #fff;
|
|
14400
|
+
border: none !important;
|
|
14401
|
+
}
|
|
14402
|
+
|
|
14403
|
+
.uk-button-primary span {
|
|
14404
|
+
font-family: 'InterMedium' !important;
|
|
14405
|
+
}
|
|
14406
|
+
|
|
14407
|
+
.select {
|
|
14408
|
+
position: relative;
|
|
14409
|
+
border: 1px solid #C0CAD5;
|
|
14410
|
+
border-radius: 4px;
|
|
14411
|
+
height: 40px;
|
|
14412
|
+
background: #fff;
|
|
14413
|
+
display: flex;
|
|
14414
|
+
align-items: center;
|
|
14415
|
+
}
|
|
14416
|
+
|
|
14417
|
+
.select > input {
|
|
14418
|
+
border: none;
|
|
14419
|
+
cursor: pointer;
|
|
14420
|
+
box-sizing: border-box;
|
|
14421
|
+
color: #222D44;
|
|
14422
|
+
font-size: 14px;
|
|
14423
|
+
line-height: 16px;
|
|
14424
|
+
padding: 8px 16px;
|
|
14425
|
+
height: 100%;
|
|
14426
|
+
width: 100%;
|
|
14427
|
+
background: transparent;
|
|
14428
|
+
}
|
|
14429
|
+
|
|
14430
|
+
.select > input:disabled {
|
|
14431
|
+
background: #fff !important;
|
|
14432
|
+
user-select: none;
|
|
14433
|
+
}
|
|
14434
|
+
|
|
14435
|
+
.select > input:focus-visible {
|
|
14436
|
+
outline: none;
|
|
14437
|
+
}
|
|
14438
|
+
|
|
14439
|
+
.select > span {
|
|
14440
|
+
display: block;
|
|
14441
|
+
background-image: url('img/collapse-bottom.svg');
|
|
14442
|
+
width: 24px;
|
|
14443
|
+
height: 24px;
|
|
14444
|
+
position: absolute;
|
|
14445
|
+
top: calc(50% - 12px);
|
|
14446
|
+
right: 16px;
|
|
14447
|
+
background-size: 100%;
|
|
14448
|
+
background-position: center;
|
|
14449
|
+
background-repeat: no-repeat;
|
|
14450
|
+
cursor: pointer;
|
|
14451
|
+
}
|
|
14452
|
+
|
|
14453
|
+
.select.active > span {
|
|
14454
|
+
transform: rotate(-180deg);
|
|
14455
|
+
background-image: url('img/collapse-bottom-blue.svg');
|
|
14456
|
+
}
|
|
14457
|
+
|
|
14458
|
+
.select.active {
|
|
14459
|
+
border-color: #3274E0;
|
|
14460
|
+
}
|
|
14461
|
+
|
|
14462
|
+
.field-grp:has(.select.active) > label,
|
|
14463
|
+
.uk-margin:has(.select.active) > label {
|
|
14464
|
+
color: #3274E0;
|
|
14465
|
+
}
|
|
14466
|
+
|
|
14467
|
+
.select.readonly input {
|
|
14468
|
+
color: #4A556C;
|
|
14469
|
+
user-select: none;
|
|
14470
|
+
}
|
|
14471
|
+
|
|
14472
|
+
.select.readonly::selection {
|
|
14473
|
+
background: #fff;
|
|
14474
|
+
color: #4A556C;
|
|
14475
|
+
}
|
|
14476
|
+
|
|
14477
|
+
.field-grp:has(.select.readonly) > label,
|
|
14478
|
+
.uk-margin:has(.select.readonly) > label {
|
|
14479
|
+
color: #8E98A3;
|
|
14480
|
+
}
|
|
14481
|
+
|
|
14482
|
+
.select ul {
|
|
14483
|
+
background: #fff;
|
|
14484
|
+
width: 100%;
|
|
14485
|
+
padding: 0;
|
|
14486
|
+
margin: 0;
|
|
14487
|
+
list-style: none;
|
|
14488
|
+
border-radius: 4px;
|
|
14489
|
+
font-size: 14px;
|
|
14490
|
+
max-height: 100px;
|
|
14491
|
+
overflow-y: auto;
|
|
14492
|
+
}
|
|
14493
|
+
|
|
14494
|
+
.select > div {
|
|
14495
|
+
overflow: hidden;
|
|
14496
|
+
display: none;
|
|
14497
|
+
position: absolute;
|
|
14498
|
+
background: #fff;
|
|
14499
|
+
width: 100%;
|
|
14500
|
+
border-radius: 4px;
|
|
14501
|
+
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
14502
|
+
top: calc(100% + 4px);
|
|
14503
|
+
left: 0;
|
|
14504
|
+
z-index: 10000;
|
|
14505
|
+
}
|
|
14506
|
+
|
|
14507
|
+
.select.active > div {
|
|
14508
|
+
display: block;
|
|
14509
|
+
}
|
|
14510
|
+
|
|
14511
|
+
.select ul > li {
|
|
14512
|
+
line-height: 16px;
|
|
14513
|
+
padding: 8px 12px;
|
|
14514
|
+
cursor: pointer;
|
|
14515
|
+
}
|
|
14516
|
+
|
|
14517
|
+
.select ul > li:hover {
|
|
14518
|
+
background: #F3F8FF;
|
|
14519
|
+
}
|
|
14520
|
+
|
|
14521
|
+
.select ul::-webkit-scrollbar {
|
|
14522
|
+
width: 4px;
|
|
14523
|
+
}
|
|
14524
|
+
|
|
14525
|
+
.select ul::-webkit-scrollbar-track {
|
|
14526
|
+
background: #fff;
|
|
14527
|
+
border-radius: 8px;
|
|
14528
|
+
}
|
|
14529
|
+
|
|
14530
|
+
.select ul::-webkit-scrollbar-thumb {
|
|
14531
|
+
background: #E4E6EC;
|
|
14532
|
+
border-radius: 2px;
|
|
14533
|
+
height: 20px;
|
|
14534
|
+
}
|
|
14535
|
+
|
|
14536
|
+
.select ul::-webkit-scrollbar-thumb:hover {
|
|
14537
|
+
background: #E4E6EC;
|
|
14538
|
+
}
|
|
14539
|
+
|
|
14540
|
+
.ui-widget {
|
|
14541
|
+
font-family: 'InterRegular';
|
|
14542
|
+
}
|
|
14543
|
+
|
|
14544
|
+
.ui-icon, .ui-widget-content .ui-icon {
|
|
14545
|
+
background-image: url("img/ui-icons_444444_256x240.png");
|
|
14202
14546
|
}
|
|
@@ -49,4 +49,348 @@
|
|
|
49
49
|
|
|
50
50
|
#fileVersionSelect {
|
|
51
51
|
top: calc(50% - 16px);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.compare-dlg-body,
|
|
55
|
+
.compare-dlg-header,
|
|
56
|
+
.compare-dlg-footer {
|
|
57
|
+
font-family: 'InterRegular';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.compare-dlg-wrap {
|
|
61
|
+
position: absolute;
|
|
62
|
+
z-index: 99000007;
|
|
63
|
+
width: 600px;
|
|
64
|
+
max-width: 100%;
|
|
65
|
+
background: #fff;
|
|
66
|
+
top: 50%;
|
|
67
|
+
left: 50%;
|
|
68
|
+
transform: translate(-50%, -50%);
|
|
69
|
+
font-family: 'InterRegular';
|
|
70
|
+
border-radius: 4px;
|
|
71
|
+
border: 1px solid rgba(74, 85, 108, 0.35);
|
|
72
|
+
user-select: none;
|
|
73
|
+
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14), 0 12px 34px 0 rgba(0, 0, 0, 0.19);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.compare-dlg-body {
|
|
77
|
+
display: flex;
|
|
78
|
+
padding: 0 24px 16px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.compare-dlg_doc-sep {
|
|
82
|
+
width: 68px;
|
|
83
|
+
background-repeat: no-repeat;
|
|
84
|
+
background-position: center;
|
|
85
|
+
background-image: url('img/compare-dlg-separator.svg');
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.compare-dlg_doc-a-wrap .wrap-inner,
|
|
89
|
+
.compare-dlg_doc-b-wrap .wrap-inner {
|
|
90
|
+
width: 230px;
|
|
91
|
+
max-width: 100%;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.compare-dlg_doc-a-wrap .wrap-inner {
|
|
95
|
+
margin-left: auto;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.compare-dlg_doc-b-wrap .wrap-inner {
|
|
99
|
+
margin-right: auto;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.compare-dlg_doc-a-wrap,
|
|
103
|
+
.compare-dlg_doc-b-wrap {
|
|
104
|
+
width: calc(50% - 34px);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.compare-dlg-header {
|
|
108
|
+
position: relative;
|
|
109
|
+
font-size: 18px;
|
|
110
|
+
line-height: 150%;
|
|
111
|
+
background: transparent;
|
|
112
|
+
border-bottom: none;
|
|
113
|
+
padding: 24px 20px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.compare-dlg-footer {
|
|
117
|
+
padding: 0;
|
|
118
|
+
display: flex;
|
|
119
|
+
justify-content: flex-end;
|
|
120
|
+
padding: 24px;
|
|
121
|
+
background-color: #F8F9FA;
|
|
122
|
+
border-top: 1px solid #E4E6EC;
|
|
123
|
+
border-radius: 0 0 4px 4px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.dlg-overlay {
|
|
127
|
+
width: 100%;
|
|
128
|
+
height: 100%;
|
|
129
|
+
position: fixed;
|
|
130
|
+
z-index: 99000006;
|
|
131
|
+
background: #222D44;
|
|
132
|
+
opacity: 0.2;
|
|
133
|
+
display: none;
|
|
134
|
+
top: 0;
|
|
135
|
+
left: 0;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.wrap-inner-bg {
|
|
139
|
+
background: #F7F9FA;
|
|
140
|
+
border: 1px solid #EDF0F2;
|
|
141
|
+
padding: 15px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.wrap-inner-subtitle {
|
|
145
|
+
font-size: 16px;
|
|
146
|
+
padding-bottom: 16px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.compare-dlg_doc-b_name,
|
|
150
|
+
.compare-dlg_doc-a_name {
|
|
151
|
+
font-size: 14px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.compare-dlg-wrap .close {
|
|
155
|
+
cursor: pointer;
|
|
156
|
+
position: absolute;
|
|
157
|
+
width: 30px;
|
|
158
|
+
height: 30px;
|
|
159
|
+
top: 0;
|
|
160
|
+
right: -42px;
|
|
161
|
+
opacity: 1;
|
|
162
|
+
background-image: url('img/cancel-white.svg');
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.field-grp,
|
|
166
|
+
.uk-margin {
|
|
167
|
+
position: relative;
|
|
168
|
+
padding: 0 !important;
|
|
169
|
+
margin-bottom: 22px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.field-grp label,
|
|
173
|
+
.uk-margin label {
|
|
174
|
+
color: #4A556C;
|
|
175
|
+
padding: 0 6px;
|
|
176
|
+
background: #fff;
|
|
177
|
+
width: fit-content;
|
|
178
|
+
position: absolute;
|
|
179
|
+
top: -10px;
|
|
180
|
+
left: 10px;
|
|
181
|
+
z-index: 1000;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.uk-margin-last {
|
|
185
|
+
margin-bottom: 0;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.form-body .field-grp:last-child {
|
|
189
|
+
margin-bottom: 0;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.compare-dlg-wrap .wrap-inner {
|
|
193
|
+
width: unset;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.compare-dlg-wrap .wrap-inner-bg {
|
|
197
|
+
background: #fff;
|
|
198
|
+
border: none;
|
|
199
|
+
padding: 0;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.compare-dlg_warning {
|
|
203
|
+
display: none;
|
|
204
|
+
color: #ff495c;
|
|
205
|
+
font-size: 14px;
|
|
206
|
+
padding: 0 24px 16px;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.uk-button {
|
|
210
|
+
font-family: 'InterRegular';
|
|
211
|
+
outline: none;
|
|
212
|
+
font-size: 16px;
|
|
213
|
+
line-height: 24px;
|
|
214
|
+
cursor: pointer;
|
|
215
|
+
background: #fff;
|
|
216
|
+
display: flex;
|
|
217
|
+
align-items: center;
|
|
218
|
+
justify-content: center;
|
|
219
|
+
margin-left: 12px;
|
|
220
|
+
margin-right: 0;
|
|
221
|
+
min-width: 139px;
|
|
222
|
+
height: 40px;
|
|
223
|
+
padding: 0;
|
|
224
|
+
border-radius: 4px;
|
|
225
|
+
border: 1px solid #E4E6EC !important;
|
|
226
|
+
text-transform: none;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.uk-button:active,
|
|
230
|
+
.uk-button:focus,
|
|
231
|
+
.uk-button:hover {
|
|
232
|
+
background: #F3F8FF;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.uk-button.disabled {
|
|
236
|
+
opacity: 0.4;
|
|
237
|
+
cursor: default;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.uk-button-primary:active,
|
|
241
|
+
.uk-button-primary:focus,
|
|
242
|
+
.uk-button-primary:hover {
|
|
243
|
+
background: #3274E0;
|
|
244
|
+
border: none !important;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.uk-button-primary {
|
|
248
|
+
background: #347FDE;
|
|
249
|
+
color: #fff;
|
|
250
|
+
border: none !important;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.uk-button-primary span {
|
|
254
|
+
font-family: 'InterMedium' !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.select {
|
|
258
|
+
position: relative;
|
|
259
|
+
border: 1px solid #C0CAD5;
|
|
260
|
+
border-radius: 4px;
|
|
261
|
+
height: 40px;
|
|
262
|
+
background: #fff;
|
|
263
|
+
display: flex;
|
|
264
|
+
align-items: center;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.select > input {
|
|
268
|
+
border: none;
|
|
269
|
+
cursor: pointer;
|
|
270
|
+
box-sizing: border-box;
|
|
271
|
+
color: #222D44;
|
|
272
|
+
font-size: 14px;
|
|
273
|
+
line-height: 16px;
|
|
274
|
+
padding: 8px 16px;
|
|
275
|
+
height: 100%;
|
|
276
|
+
width: 100%;
|
|
277
|
+
background: transparent;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.select > input:disabled {
|
|
281
|
+
background: #fff !important;
|
|
282
|
+
user-select: none;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.select > input:focus-visible {
|
|
286
|
+
outline: none;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.select > span {
|
|
290
|
+
display: block;
|
|
291
|
+
background-image: url('img/collapse-bottom.svg');
|
|
292
|
+
width: 24px;
|
|
293
|
+
height: 24px;
|
|
294
|
+
position: absolute;
|
|
295
|
+
top: calc(50% - 12px);
|
|
296
|
+
right: 16px;
|
|
297
|
+
background-size: 100%;
|
|
298
|
+
background-position: center;
|
|
299
|
+
background-repeat: no-repeat;
|
|
300
|
+
cursor: pointer;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.select.active > span {
|
|
304
|
+
transform: rotate(-180deg);
|
|
305
|
+
background-image: url('img/collapse-bottom-blue.svg');
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.select.active {
|
|
309
|
+
border-color: #3274E0;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.field-grp:has(.select.active) > label,
|
|
313
|
+
.uk-margin:has(.select.active) > label {
|
|
314
|
+
color: #3274E0;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.select.readonly input {
|
|
318
|
+
color: #4A556C;
|
|
319
|
+
user-select: none;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.select.readonly::selection {
|
|
323
|
+
background: #fff;
|
|
324
|
+
color: #4A556C;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.field-grp:has(.select.readonly) > label,
|
|
328
|
+
.uk-margin:has(.select.readonly) > label {
|
|
329
|
+
color: #8E98A3;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.select ul {
|
|
333
|
+
background: #fff;
|
|
334
|
+
width: 100%;
|
|
335
|
+
padding: 0;
|
|
336
|
+
margin: 0;
|
|
337
|
+
list-style: none;
|
|
338
|
+
border-radius: 4px;
|
|
339
|
+
font-size: 14px;
|
|
340
|
+
max-height: 100px;
|
|
341
|
+
overflow-y: auto;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.select > div {
|
|
345
|
+
overflow: hidden;
|
|
346
|
+
display: none;
|
|
347
|
+
position: absolute;
|
|
348
|
+
background: #fff;
|
|
349
|
+
width: 100%;
|
|
350
|
+
border-radius: 4px;
|
|
351
|
+
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
352
|
+
top: calc(100% + 4px);
|
|
353
|
+
left: 0;
|
|
354
|
+
z-index: 10000;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.select.active > div {
|
|
358
|
+
display: block;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.select ul > li {
|
|
362
|
+
line-height: 16px;
|
|
363
|
+
padding: 8px 12px;
|
|
364
|
+
cursor: pointer;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.select ul > li:hover {
|
|
368
|
+
background: #F3F8FF;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.select ul::-webkit-scrollbar {
|
|
372
|
+
width: 4px;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.select ul::-webkit-scrollbar-track {
|
|
376
|
+
background: #fff;
|
|
377
|
+
border-radius: 8px;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.select ul::-webkit-scrollbar-thumb {
|
|
381
|
+
background: #E4E6EC;
|
|
382
|
+
border-radius: 2px;
|
|
383
|
+
height: 20px;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.select ul::-webkit-scrollbar-thumb:hover {
|
|
387
|
+
background: #E4E6EC;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.ui-widget {
|
|
391
|
+
font-family: 'InterRegular';
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.ui-icon, .ui-widget-content .ui-icon {
|
|
395
|
+
background-image: url("img/ui-icons_444444_256x240.png");
|
|
52
396
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox='0 0 32 32' fill='none' stroke-width='2px' stroke='#fff' xmlns='http://www.w3.org/2000/svg'><path d='M0 32.333l16-16m0 0l-16-16m16 16l16 16m-16-16l16-16'></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M19.5 9L12 16.5L4.5 9' stroke='#3274E0' stroke-linecap='round' stroke-linejoin='round'/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M19.5 9L12 16.5L4.5 9' stroke='#4A556C' stroke-linecap='round' stroke-linejoin='round'/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width='38' height='22' viewBox='0 0 38 22' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(#clip0_1743_100928)'><path d='M1.12227 5.08646C0.792376 5.26348 0.79238 5.73656 1.12228 5.91357L9.91038 10.6291C10.223 10.7969 10.6016 10.5704 10.6016 10.2155L10.6016 7.50613C10.6016 7.24693 10.8117 7.0368 11.0709 7.0368L26.1755 7.0368C26.4347 7.0368 26.6448 6.82667 26.6448 6.56747L26.6448 4.43239C26.6448 4.17318 26.4347 3.96306 26.1755 3.96306L11.0709 3.96306C10.8117 3.96306 10.6016 3.75293 10.6016 3.49373L10.6016 0.784335C10.6016 0.429502 10.223 0.203005 9.91037 0.37078L1.12227 5.08646Z' fill='#4A556C'/><path d='M36.8777 16.9135C37.2076 16.7364 37.2076 16.2634 36.8777 16.0864L28.0897 11.3709C27.7771 11.2031 27.3985 11.4296 27.3985 11.7845L27.3985 14.4938C27.3985 14.753 27.1884 14.9632 26.9292 14.9632L11.8248 14.9632C11.5656 14.9632 11.3554 15.1733 11.3554 15.4325L11.3554 17.5675C11.3554 17.8267 11.5656 18.0368 11.8248 18.0368L26.9292 18.0368C27.1884 18.0368 27.3985 18.247 27.3985 18.5062L27.3985 21.2155C27.3985 21.5704 27.7771 21.7969 28.0897 21.6291L36.8777 16.9135Z' fill='#4A556C'/></g><defs><clipPath id='clip0_1743_100928'><rect width='22' height='38' fill='white' transform='translate(0 22) rotate(-90)'/></clipPath></defs></svg>
|
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -61893,7 +61893,7 @@ var Viewer = function Viewer(props) {
|
|
|
61893
61893
|
};
|
|
61894
61894
|
|
|
61895
61895
|
var name = "@vitrosoftware/common-ui-ts";
|
|
61896
|
-
var version$1 = "1.1.
|
|
61896
|
+
var version$1 = "1.1.110";
|
|
61897
61897
|
var description = "vitro software common ui ts";
|
|
61898
61898
|
var author = "";
|
|
61899
61899
|
var license = "MIT";
|