@vitrosoftware/common-ui-ts 1.1.27 → 1.1.29
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/common.css +1 -1
- package/css/std/controls/activity-item/activity-item.css +21 -12
- package/css/std/controls/activity-item/activity-message.css +68 -0
- package/css/std/controls/dialog/dialog-content.css +1 -1
- package/css/std/controls/lookup-picker/lookup-picker-selected-item.css +2 -1
- package/css/std/controls/message-input/message-input.css +62 -78
- package/css/std/controls/tab-group/tab-group.css +2 -2
- package/css/std/controls/table-view/treegrid.css +18 -4
- package/css/std/controls/tree-view/tree-view.css +2 -1
- package/dist/controls/ActivityItem/ActivityMessage.d.ts +6 -0
- package/dist/controls/ActivityItem/ChangedValue.d.ts +6 -0
- package/dist/controls/MessageInput/MessageInput.d.ts +2 -4
- package/dist/controls/MessageInput/MessageInputConstants.d.ts +3 -0
- package/dist/controls/TableView/TableViewContext.d.ts +2 -0
- package/dist/controls/TableView/TreeGridTableViewContextImpl.d.ts +2 -0
- package/dist/index.css +160 -94
- package/dist/index.d.ts +2 -1
- package/dist/index.js +97 -31
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +97 -32
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
margin-right: 12px;
|
|
35
35
|
margin-bottom: 0;
|
|
36
36
|
padding-bottom: 12px;
|
|
37
|
-
margin-bottom: 8px;
|
|
38
37
|
}
|
|
39
38
|
|
|
40
39
|
@media (max-width: 800px) {
|
|
@@ -43,6 +42,7 @@
|
|
|
43
42
|
font-size: 18px;
|
|
44
43
|
line-height: 27px;
|
|
45
44
|
margin: 0;
|
|
45
|
+
margin-right: 12px;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.pane > .vitro-flex {
|
|
@@ -346,6 +346,7 @@
|
|
|
346
346
|
|
|
347
347
|
#TreeView .ps {
|
|
348
348
|
padding-right: 12px;
|
|
349
|
+
padding-top: 8px;
|
|
349
350
|
}
|
|
350
351
|
|
|
351
352
|
._tree-view_vitro-tree-view_3oii-CW {
|
|
@@ -438,7 +439,7 @@
|
|
|
438
439
|
height: 32px !important;
|
|
439
440
|
line-height: 32px !important;
|
|
440
441
|
background-position: center !important;
|
|
441
|
-
background-size: 100
|
|
442
|
+
background-size: 100% !important;
|
|
442
443
|
margin-right: 4px;
|
|
443
444
|
}
|
|
444
445
|
|
|
@@ -1582,8 +1583,8 @@
|
|
|
1582
1583
|
}
|
|
1583
1584
|
|
|
1584
1585
|
._tab-group_vitro-tab_1Qb50HL > .vitro-content {
|
|
1585
|
-
position: relative;
|
|
1586
|
-
height: 100
|
|
1586
|
+
position: relative;
|
|
1587
|
+
height: calc(100% - 37px);
|
|
1587
1588
|
}
|
|
1588
1589
|
|
|
1589
1590
|
._tab-group_vitro-tab_1Qb50HL > .vitro-content > .container,
|
|
@@ -2992,13 +2993,14 @@
|
|
|
2992
2993
|
line-height: 21px;
|
|
2993
2994
|
}
|
|
2994
2995
|
._lookup-picker-selected-item_vitro-selected-item_hw-euth {
|
|
2995
|
-
display: inline-
|
|
2996
|
+
display: inline-flex;
|
|
2996
2997
|
width: -moz-fit-content;
|
|
2997
2998
|
width: fit-content;
|
|
2998
2999
|
margin: 0 6px 0 0;
|
|
2999
3000
|
white-space: nowrap;
|
|
3000
3001
|
overflow: hidden;
|
|
3001
3002
|
text-overflow: ellipsis;
|
|
3003
|
+
align-items: center;
|
|
3002
3004
|
}
|
|
3003
3005
|
|
|
3004
3006
|
._lookup-picker-html-value_vitro-item-html-value_2QBoTey {
|
|
@@ -4040,7 +4042,7 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
4040
4042
|
}
|
|
4041
4043
|
|
|
4042
4044
|
._dialog-content_vitro-dialog-content_qQNWu6x .ps {
|
|
4043
|
-
padding-top: 12px;
|
|
4045
|
+
padding-top: 12px !important;
|
|
4044
4046
|
padding-left: 16px;
|
|
4045
4047
|
}
|
|
4046
4048
|
|
|
@@ -4261,8 +4263,9 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
4261
4263
|
}
|
|
4262
4264
|
|
|
4263
4265
|
._activity-item_vitro-item_3Tprske {
|
|
4264
|
-
margin-bottom:
|
|
4266
|
+
margin-bottom: 16px;
|
|
4265
4267
|
min-height: 32px;
|
|
4268
|
+
width: 100%;
|
|
4266
4269
|
}
|
|
4267
4270
|
|
|
4268
4271
|
._activity-item_vitro-item_3Tprske._activity-item_vitro-active_2kENgvf {
|
|
@@ -4273,24 +4276,33 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
4273
4276
|
width: 100%;
|
|
4274
4277
|
}
|
|
4275
4278
|
|
|
4279
|
+
._activity-item_vitro-title__QItISm {
|
|
4280
|
+
white-space: nowrap;
|
|
4281
|
+
overflow: hidden;
|
|
4282
|
+
text-overflow: ellipsis;
|
|
4283
|
+
display: flex;
|
|
4284
|
+
align-items: center;
|
|
4285
|
+
}
|
|
4286
|
+
|
|
4276
4287
|
._activity-item_vitro-title__QItISm span {
|
|
4277
4288
|
color: #222d44;
|
|
4289
|
+
font-size: 14px;
|
|
4290
|
+
line-height: 16px;
|
|
4291
|
+
font-family: 'InterMedium';
|
|
4292
|
+
text-overflow: ellipsis;
|
|
4293
|
+
overflow: hidden;
|
|
4278
4294
|
}
|
|
4279
4295
|
|
|
4280
4296
|
._activity-item_vitro-due-date_1mBIraY {
|
|
4281
|
-
font-size: 8pt;
|
|
4282
|
-
color: #bdbdbd;
|
|
4283
|
-
float: right;
|
|
4284
4297
|
white-space: nowrap;
|
|
4298
|
+
color: #4A556C !important;
|
|
4299
|
+
margin-left: 8px;
|
|
4300
|
+
font-family: 'InterRegular' !important;
|
|
4285
4301
|
}
|
|
4286
4302
|
|
|
4287
4303
|
._activity-item_vitro-content_3Lt7XRy {
|
|
4288
|
-
margin-top: -1px;
|
|
4289
4304
|
width: 100%;
|
|
4290
|
-
|
|
4291
|
-
justify-content: space-between;
|
|
4292
|
-
align-items: center;
|
|
4293
|
-
margin-right: 4px;
|
|
4305
|
+
overflow: hidden;
|
|
4294
4306
|
}
|
|
4295
4307
|
|
|
4296
4308
|
._activity-item_vitro-content_3Lt7XRy p {
|
|
@@ -4302,7 +4314,6 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
4302
4314
|
color: #bdbdbd;
|
|
4303
4315
|
font-size: 9pt;
|
|
4304
4316
|
line-height: 14px;
|
|
4305
|
-
margin-top: 3px;
|
|
4306
4317
|
}
|
|
4307
4318
|
|
|
4308
4319
|
._activity-item_vitro-content_3Lt7XRy p span {
|
|
@@ -4330,121 +4341,176 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
|
|
|
4330
4341
|
}
|
|
4331
4342
|
|
|
4332
4343
|
._activity-item_vitro-dropdown-button_1J50ja7 {
|
|
4333
|
-
|
|
4344
|
+
margin-left: auto;
|
|
4334
4345
|
}
|
|
4335
4346
|
|
|
4336
4347
|
._activity-item_vitro-avatar_218ZqAk {
|
|
4337
|
-
margin-right:
|
|
4348
|
+
margin-right: 8px;
|
|
4338
4349
|
}
|
|
4339
4350
|
|
|
4340
|
-
.
|
|
4351
|
+
._activity-message_vitro-activity-message_3GdyQuC {
|
|
4341
4352
|
display: flex;
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4353
|
+
flex-direction: column;
|
|
4354
|
+
background: #F8F9FA;
|
|
4355
|
+
border-radius: 4px;
|
|
4356
|
+
padding: 4px 8px;
|
|
4357
|
+
width: -moz-fit-content;
|
|
4358
|
+
width: fit-content;
|
|
4359
|
+
max-width: 100%;
|
|
4345
4360
|
}
|
|
4346
4361
|
|
|
4347
|
-
.
|
|
4348
|
-
width: 100%;
|
|
4349
|
-
position: relative;
|
|
4350
|
-
padding: 0;
|
|
4351
|
-
border-radius: 4px;
|
|
4352
|
-
border: 1px solid #C0CAD5;
|
|
4353
|
-
min-height: 40px;
|
|
4362
|
+
._activity-message_vitro-item_3Q-7zX3 {
|
|
4354
4363
|
display: flex;
|
|
4355
|
-
|
|
4364
|
+
grid-gap: 4px 0;
|
|
4356
4365
|
align-items: center;
|
|
4357
|
-
|
|
4358
|
-
margin-left: 8px;
|
|
4366
|
+
white-space: nowrap;
|
|
4359
4367
|
}
|
|
4360
4368
|
|
|
4361
|
-
.
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
4366
|
-
|
|
4367
|
-
width:
|
|
4369
|
+
._activity-message_vitro-item_3Q-7zX3 > div {
|
|
4370
|
+
font-family: 'InterMedium';
|
|
4371
|
+
color: #222D44;
|
|
4372
|
+
font-size: 14px;
|
|
4373
|
+
line-height: 145%;
|
|
4374
|
+
width: -moz-fit-content;
|
|
4375
|
+
width: fit-content;
|
|
4376
|
+
text-overflow: ellipsis;
|
|
4377
|
+
overflow: hidden;
|
|
4368
4378
|
}
|
|
4369
4379
|
|
|
4370
|
-
.
|
|
4371
|
-
overflow
|
|
4372
|
-
|
|
4373
|
-
height: -moz-fit-content;
|
|
4374
|
-
height: fit-content;
|
|
4375
|
-
max-height: 60px;
|
|
4380
|
+
._activity-message_vitro-item_3Q-7zX3 .vitro-flex > span {
|
|
4381
|
+
text-overflow: ellipsis;
|
|
4382
|
+
overflow: hidden;
|
|
4376
4383
|
}
|
|
4377
4384
|
|
|
4378
|
-
.
|
|
4379
|
-
|
|
4380
|
-
width: 24px;
|
|
4381
|
-
background-color: #fff;
|
|
4382
|
-
border: none;
|
|
4383
|
-
outline: none;
|
|
4384
|
-
background-size: 100%;
|
|
4385
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Layer_1' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:none;stroke:%23BDBDBD;stroke-miterlimit:10;%7D%0A%3C/style%3E%3Cpath class='st0' d='M18,10L1.5,8.5l0-5.9L18,10c-5.5,2.5-11,5-16.5,7.5v-6L18,10'/%3E%3C/svg%3E");
|
|
4385
|
+
._activity-message_vitro-item_3Q-7zX3 > div > .vitro-flex {
|
|
4386
|
+
grid-gap: 4px;
|
|
4386
4387
|
}
|
|
4387
4388
|
|
|
4388
|
-
.
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4389
|
+
._activity-message_vitro-item_3Q-7zX3 > div > .vitro-flex > div {
|
|
4390
|
+
width: 20px;
|
|
4391
|
+
min-width: 20px;
|
|
4392
|
+
height: 20px;
|
|
4393
|
+
font-size: 10px;
|
|
4394
|
+
line-height: 20px;
|
|
4393
4395
|
}
|
|
4394
4396
|
|
|
4395
|
-
.
|
|
4396
|
-
|
|
4397
|
+
._activity-message_vitro-message_25otUOy {
|
|
4398
|
+
font-family: 'InterRegular' !important;
|
|
4399
|
+
white-space: normal;
|
|
4397
4400
|
}
|
|
4398
4401
|
|
|
4399
|
-
.
|
|
4400
|
-
|
|
4402
|
+
._activity-message_vitro-field-name_hdjdQbg {
|
|
4403
|
+
color: #222D44;
|
|
4404
|
+
font-size: 14px;
|
|
4405
|
+
line-height: 145%;
|
|
4406
|
+
margin-right: 8px;
|
|
4401
4407
|
}
|
|
4402
4408
|
|
|
4403
|
-
.
|
|
4404
|
-
|
|
4405
|
-
|
|
4409
|
+
._activity-message_vitro-separator_vxgHLaH {
|
|
4410
|
+
width: 24px;
|
|
4411
|
+
height: 24px;
|
|
4412
|
+
min-width: 24px;
|
|
4413
|
+
background-size: 100%;
|
|
4414
|
+
background-position: center;
|
|
4415
|
+
background-repeat: no-repeat;
|
|
4416
|
+
margin: 0 4px;
|
|
4417
|
+
white-space: nowrap;
|
|
4418
|
+
/* activity-arrow.svg URL-encoder for SVG */
|
|
4419
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.1602 7.81641C14.8684 7.5247 14.8671 7.05213 15.1572 6.7588C15.4496 6.46318 15.9267 6.46186 16.2207 6.75587L20.7585 11.2936C21.1487 11.6839 21.149 12.3165 20.7592 12.7071L16.2204 17.255C15.9267 17.5494 15.4494 17.5483 15.157 17.2526C14.867 16.9595 14.8683 16.4871 15.1599 16.1956L18.5937 12.7617L3.2857 12.7729C2.87128 12.7732 2.53516 12.4373 2.53516 12.0229C2.53516 11.6089 2.87061 11.2732 3.28461 11.2729L18.6055 11.2617L15.1602 7.81641Z' fill='%234A556C'/%3E%3C/svg%3E%0A");
|
|
4420
|
+
}
|
|
4406
4421
|
|
|
4407
|
-
.
|
|
4408
|
-
display:
|
|
4422
|
+
._message-input_vitro-message-input_3MkcjWD {
|
|
4423
|
+
display: flex;
|
|
4424
|
+
position: absolute;
|
|
4425
|
+
width: calc(100% - 32px);
|
|
4426
|
+
max-width: calc(100% - 32px);
|
|
4427
|
+
bottom: 0;
|
|
4428
|
+
align-items: end;
|
|
4429
|
+
background: #fff;
|
|
4430
|
+
bottom: 1px;
|
|
4409
4431
|
}
|
|
4410
4432
|
|
|
4411
|
-
.
|
|
4433
|
+
._message-input_vitro-message-input_3MkcjWD ._message-input_vitro-control_1PUSjq9 {
|
|
4434
|
+
cursor: text;
|
|
4412
4435
|
width: 100%;
|
|
4413
|
-
|
|
4436
|
+
position: relative;
|
|
4437
|
+
border-radius: 4px;
|
|
4438
|
+
border: 1px solid #C0CAD5;
|
|
4439
|
+
min-height: 36px;
|
|
4440
|
+
display: flex;
|
|
4441
|
+
justify-content: space-between;
|
|
4442
|
+
align-items: center;
|
|
4443
|
+
word-break: break-all;
|
|
4414
4444
|
}
|
|
4415
4445
|
|
|
4416
|
-
.
|
|
4417
|
-
|
|
4446
|
+
._message-input_vitro-message-input_3MkcjWD .ps > div:first-child {
|
|
4447
|
+
padding: 0;
|
|
4448
|
+
padding: 6px 16px 6px 8px !important;
|
|
4418
4449
|
}
|
|
4419
4450
|
|
|
4420
|
-
.
|
|
4421
|
-
|
|
4422
|
-
|
|
4451
|
+
._message-input_vitro-message-input_3MkcjWD .ps__rail-y {
|
|
4452
|
+
background: transparent !important;
|
|
4453
|
+
border-top: none !important;
|
|
4423
4454
|
}
|
|
4424
4455
|
|
|
4425
|
-
.
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
|
|
4430
|
-
|
|
4431
|
-
|
|
4432
|
-
|
|
4433
|
-
margin-bottom: 8px;
|
|
4456
|
+
._message-input_vitro-message_2EJSy-9 {
|
|
4457
|
+
font-size: 14px;
|
|
4458
|
+
line-height: 16px;
|
|
4459
|
+
height: -moz-fit-content;
|
|
4460
|
+
height: fit-content;
|
|
4461
|
+
width: 100%;
|
|
4462
|
+
min-height: 16px;
|
|
4463
|
+
max-height: 82px;
|
|
4434
4464
|
}
|
|
4435
4465
|
|
|
4436
|
-
.
|
|
4437
|
-
|
|
4466
|
+
._message-input_vitro-placeholder_1FBfIqN {
|
|
4467
|
+
color: #8E98A3;
|
|
4468
|
+
font-weight: unset;
|
|
4469
|
+
font-size: 12px;
|
|
4470
|
+
line-height: 16px;
|
|
4471
|
+
pointer-events: none;
|
|
4472
|
+
text-overflow: ellipsis;
|
|
4473
|
+
overflow: hidden;
|
|
4438
4474
|
}
|
|
4439
4475
|
|
|
4440
|
-
.
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4476
|
+
._message-input_vitro-button-add-file_1qdtHHq {
|
|
4477
|
+
height: 24px;
|
|
4478
|
+
width: 24px;
|
|
4479
|
+
min-width: 24px;
|
|
4480
|
+
min-height: 24px;
|
|
4481
|
+
background-color: #fff;
|
|
4482
|
+
border: none;
|
|
4483
|
+
outline: none;
|
|
4484
|
+
background-size: 100%;
|
|
4485
|
+
background-position: center;
|
|
4486
|
+
background-repeat: no-repeat;
|
|
4487
|
+
/* paperclip.svg URL-encoder for SVG */
|
|
4488
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15.9969 6.24219L7.15809 15.081C6.5723 15.6668 6.5723 16.6166 7.15809 17.2023C7.74388 17.7881 8.69362 17.7881 9.27941 17.2023L18.1182 8.36351C19.2898 7.19193 19.2898 5.29244 18.1182 4.12087C16.9467 2.94929 15.0472 2.94929 13.8756 4.12087L5.03677 12.9597C3.27941 14.7171 3.27941 17.5663 5.03677 19.3237C6.79413 21.081 9.64337 21.081 11.4007 19.3237L20.4969 10.2275' stroke='%238E98A3' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
4446
4489
|
}
|
|
4447
4490
|
|
|
4448
|
-
.
|
|
4449
|
-
|
|
4450
|
-
|
|
4491
|
+
._message-input_vitro-button-send_1vktQrZ {
|
|
4492
|
+
height: 36px;
|
|
4493
|
+
width: 36px;
|
|
4494
|
+
min-width: 36px;
|
|
4495
|
+
min-height: 36px;
|
|
4496
|
+
background-color: #fff;
|
|
4497
|
+
border-radius: 50%;
|
|
4498
|
+
border: none;
|
|
4499
|
+
outline: none;
|
|
4500
|
+
background-size: 24px;
|
|
4501
|
+
background-position: center;
|
|
4502
|
+
background-repeat: no-repeat;
|
|
4503
|
+
box-shadow: 0px 0px 4px 0px rgba(19, 43, 74, 0.18);
|
|
4504
|
+
margin-left: 12px;
|
|
4505
|
+
/* send.svg URL-encoder for SVG */
|
|
4506
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='icon_line/Send'%3E%3Cg id='Group 33514'%3E%3Cpath id='Vector' d='M21.7365 10.9623C22.4909 11.3814 22.4909 12.4664 21.7365 12.8855L9.00978 19.9559C7.64603 20.7135 6.02992 19.4959 6.38207 17.9761L7.5752 12.8268C7.71285 12.2327 7.71285 11.6151 7.5752 11.021L6.38207 5.87172C6.02992 4.35191 7.64603 3.13428 9.00977 3.89192L21.7365 10.9623Z' fill='%23347FDE'/%3E%3Cpath id='Vector 15' d='M8.46875 11.9219L13.4687 11.9219' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
|
|
4507
|
+
}
|
|
4508
|
+
|
|
4509
|
+
._message-input_vitro-button-send_1vktQrZ:hover,
|
|
4510
|
+
._message-input_vitro-button-send_1vktQrZ:active,
|
|
4511
|
+
._message-input_vitro-button-add-file_1qdtHHq:hover,
|
|
4512
|
+
._message-input_vitro-button-add-file_1qdtHHq:active {
|
|
4513
|
+
background-color: none;
|
|
4514
|
+
border: none;
|
|
4515
|
+
outline: none;
|
|
4516
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -58,6 +58,7 @@ import { DropdownButton } from './controls/DropdownButton/DropdownButton';
|
|
|
58
58
|
import { DropdownItem } from './controls/DropdownButton/DropdownItem';
|
|
59
59
|
import { Activity } from './controls/Activity/Activity';
|
|
60
60
|
import { ActivityItem, ActivityItemProps } from './controls/ActivityItem/ActivityItem';
|
|
61
|
+
import { ActivityMessage } from './controls/ActivityItem/ActivityMessage';
|
|
61
62
|
import { Icon } from './controls/Icon/Icon';
|
|
62
63
|
import { EVENT } from './constants/Event';
|
|
63
64
|
import { ScrollBar } from './controls/ScrollBar/ScrollBar';
|
|
@@ -93,7 +94,7 @@ export { Checkbox, CheckboxProps };
|
|
|
93
94
|
export { IssueTile };
|
|
94
95
|
export { DropdownButton, DropdownItem };
|
|
95
96
|
export { Activity };
|
|
96
|
-
export { ActivityItem, ActivityItemProps };
|
|
97
|
+
export { ActivityItem, ActivityItemProps, ActivityMessage };
|
|
97
98
|
export { Icon };
|
|
98
99
|
export { EVENT };
|
|
99
100
|
export { ScrollBar };
|
package/dist/index.js
CHANGED
|
@@ -147,6 +147,9 @@ var app$1 = {
|
|
|
147
147
|
},
|
|
148
148
|
issueTile: {
|
|
149
149
|
textareaLabel: "Описание"
|
|
150
|
+
},
|
|
151
|
+
messageInput: {
|
|
152
|
+
placeholder: "Добавить комментарий..."
|
|
150
153
|
}
|
|
151
154
|
}
|
|
152
155
|
};
|
|
@@ -20579,6 +20582,12 @@ var TreeGridTableViewContextImpl = /*#__PURE__*/function () {
|
|
|
20579
20582
|
_proto.expandRow = function expandRow(row) {
|
|
20580
20583
|
this.grid.Expand(row);
|
|
20581
20584
|
};
|
|
20585
|
+
_proto.collapseRow = function collapseRow(row) {
|
|
20586
|
+
this.grid.Collapse(row);
|
|
20587
|
+
};
|
|
20588
|
+
_proto.expandParents = function expandParents(row) {
|
|
20589
|
+
this.grid.ExpandParents(row);
|
|
20590
|
+
};
|
|
20582
20591
|
_proto.getCell = function getCell(row, col) {
|
|
20583
20592
|
return this.grid.GetCell(row, col);
|
|
20584
20593
|
};
|
|
@@ -63961,12 +63970,12 @@ var styles$E = {"vitro-title":"_activity_vitro-title_1rdvvaa","vitro-dropdown-bu
|
|
|
63961
63970
|
var Activity = function Activity(props) {
|
|
63962
63971
|
return React__default.createElement("div", {
|
|
63963
63972
|
className: 'vitro-activity'
|
|
63964
|
-
}, React__default.createElement("div", {
|
|
63973
|
+
}, (props.filterDropdownList || props.title) && React__default.createElement("div", {
|
|
63965
63974
|
className: styles$E['vitro-title']
|
|
63966
63975
|
}, props.filterDropdownList && React__default.createElement(DropdownButton, {
|
|
63967
63976
|
itemList: props.filterDropdownList,
|
|
63968
63977
|
className: styles$E['vitro-dropdown-button']
|
|
63969
|
-
}), React__default.createElement("h3", null, props.title)), React__default.createElement("div", {
|
|
63978
|
+
}), props.title && React__default.createElement("h3", null, props.title)), React__default.createElement("div", {
|
|
63970
63979
|
className: 'vitro-content'
|
|
63971
63980
|
}, props.children));
|
|
63972
63981
|
};
|
|
@@ -63981,65 +63990,121 @@ var ActivityItem = function ActivityItem(props) {
|
|
|
63981
63990
|
}, React__default.createElement(Avatar, {
|
|
63982
63991
|
userName: props.userName,
|
|
63983
63992
|
image: props.userImageUrl,
|
|
63984
|
-
className: styles$F['vitro-avatar']
|
|
63993
|
+
className: styles$F['vitro-avatar'],
|
|
63994
|
+
isBigSize: true
|
|
63985
63995
|
}), React__default.createElement("div", {
|
|
63986
63996
|
className: styles$F['vitro-content']
|
|
63987
63997
|
}, React__default.createElement("div", null, React__default.createElement("div", {
|
|
63988
63998
|
className: styles$F['vitro-title']
|
|
63989
|
-
}, React__default.createElement("span", null, props.title || props.userName)
|
|
63999
|
+
}, React__default.createElement("span", null, props.title || props.userName), props.isShowDetail && React__default.createElement("span", {
|
|
64000
|
+
className: styles$F['vitro-due-date']
|
|
64001
|
+
}, props.date), props.isShowDetail && props.dropdownItemList && React__default.createElement(DropdownButton, {
|
|
64002
|
+
itemList: props.dropdownItemList,
|
|
64003
|
+
onToggle: props.onDropdownToggle,
|
|
64004
|
+
className: styles$F['vitro-dropdown-button']
|
|
64005
|
+
})), React__default.createElement("div", {
|
|
63990
64006
|
className: styles$F['vitro-message'] + (props.variant ? CTRL.SPACE + props.variant : CTRL.EMPTY)
|
|
63991
64007
|
}, React__default.createElement("p", {
|
|
63992
64008
|
dangerouslySetInnerHTML: {
|
|
63993
64009
|
__html: props.message
|
|
63994
64010
|
}
|
|
63995
|
-
}), props.children))
|
|
63996
|
-
className: styles$F['vitro-due-date']
|
|
63997
|
-
}, props.date)), props.isShowDetail && props.dropdownItemList && React__default.createElement(DropdownButton, {
|
|
63998
|
-
itemList: props.dropdownItemList,
|
|
63999
|
-
onToggle: props.onDropdownToggle,
|
|
64000
|
-
className: styles$F['vitro-dropdown-button']
|
|
64001
|
-
})));
|
|
64011
|
+
}), props.children)))));
|
|
64002
64012
|
};
|
|
64003
64013
|
|
|
64004
|
-
var styles$G = {"vitro-message-
|
|
64014
|
+
var styles$G = {"vitro-activity-message":"_activity-message_vitro-activity-message_3GdyQuC","vitro-item":"_activity-message_vitro-item_3Q-7zX3","vitro-message":"_activity-message_vitro-message_25otUOy","vitro-field-name":"_activity-message_vitro-field-name_hdjdQbg","vitro-separator":"_activity-message_vitro-separator_vxgHLaH"};
|
|
64005
64015
|
|
|
64016
|
+
var ActivityMessage = function ActivityMessage(props) {
|
|
64017
|
+
return React__default.createElement("div", {
|
|
64018
|
+
className: styles$G['vitro-activity-message']
|
|
64019
|
+
}, props.changedValueList.map(function (item) {
|
|
64020
|
+
return React__default.createElement("div", {
|
|
64021
|
+
className: styles$G['vitro-item']
|
|
64022
|
+
}, item.fieldName && React__default.createElement("span", {
|
|
64023
|
+
className: styles$G['vitro-field-name']
|
|
64024
|
+
}, "" + item.fieldName + CTRL.COLON), item.oldValue && React__default.createElement(React__default.Fragment, null, React__default.createElement("div", null, item.oldValue), React__default.createElement("span", {
|
|
64025
|
+
className: styles$G['vitro-separator']
|
|
64026
|
+
})), React__default.createElement("div", {
|
|
64027
|
+
className: item.isMessage ? styles$G['vitro-message'] : CTRL.EMPTY
|
|
64028
|
+
}, item.newValue));
|
|
64029
|
+
}));
|
|
64030
|
+
};
|
|
64031
|
+
|
|
64032
|
+
var LOCALE$6;
|
|
64033
|
+
(function (LOCALE) {
|
|
64034
|
+
LOCALE["PLACEHOLDER"] = "app.common.messageInput.placeholder";
|
|
64035
|
+
})(LOCALE$6 || (LOCALE$6 = {}));
|
|
64036
|
+
|
|
64037
|
+
var styles$H = {"vitro-message-input":"_message-input_vitro-message-input_3MkcjWD","vitro-control":"_message-input_vitro-control_1PUSjq9","vitro-message":"_message-input_vitro-message_2EJSy-9","vitro-placeholder":"_message-input_vitro-placeholder_1FBfIqN","vitro-button-add-file":"_message-input_vitro-button-add-file_1qdtHHq","vitro-button-send":"_message-input_vitro-button-send_1vktQrZ"};
|
|
64038
|
+
|
|
64039
|
+
var NEW_LINE = '\n';
|
|
64006
64040
|
var MessageInput = function MessageInput(props) {
|
|
64041
|
+
var _useState = React.useState(true),
|
|
64042
|
+
isShowPlaceholder = _useState[0],
|
|
64043
|
+
setIsShowPlaceholder = _useState[1];
|
|
64007
64044
|
var inputRef = React.useRef(null);
|
|
64045
|
+
var localeService = inversifyReact.useInjection(SERVICE.LOCALE);
|
|
64008
64046
|
var onEnter = function onEnter() {
|
|
64009
|
-
|
|
64010
|
-
|
|
64011
|
-
|
|
64012
|
-
}
|
|
64047
|
+
props.onSubmit(getValue());
|
|
64048
|
+
resetValue();
|
|
64049
|
+
setIsShowPlaceholder(true);
|
|
64013
64050
|
};
|
|
64014
64051
|
var onKeyDown = function onKeyDown(e) {
|
|
64015
|
-
if (e.keyCode === 13) {
|
|
64052
|
+
if (e.keyCode === 13 && !e.shiftKey) {
|
|
64016
64053
|
e.preventDefault();
|
|
64017
64054
|
onEnter();
|
|
64018
64055
|
}
|
|
64019
64056
|
};
|
|
64020
64057
|
var onChange = function onChange(e) {
|
|
64021
64058
|
if (props.onChange) {
|
|
64022
|
-
|
|
64059
|
+
var value = getValue();
|
|
64060
|
+
props.onChange(value);
|
|
64061
|
+
}
|
|
64062
|
+
};
|
|
64063
|
+
var onFocus = function onFocus(e) {
|
|
64064
|
+
setIsShowPlaceholder(false);
|
|
64065
|
+
};
|
|
64066
|
+
var onBlur = function onBlur(e) {
|
|
64067
|
+
var value = getValue();
|
|
64068
|
+
if (!value) {
|
|
64069
|
+
resetValue();
|
|
64070
|
+
setIsShowPlaceholder(true);
|
|
64071
|
+
}
|
|
64072
|
+
};
|
|
64073
|
+
var getValue = function getValue() {
|
|
64074
|
+
if (inputRef.current) {
|
|
64075
|
+
return inputRef.current.innerText.replace(NEW_LINE, CTRL.EMPTY);
|
|
64076
|
+
}
|
|
64077
|
+
return CTRL.EMPTY;
|
|
64078
|
+
};
|
|
64079
|
+
var resetValue = function resetValue() {
|
|
64080
|
+
if (inputRef.current) {
|
|
64081
|
+
inputRef.current.innerText = CTRL.EMPTY;
|
|
64023
64082
|
}
|
|
64024
64083
|
};
|
|
64025
64084
|
return React__default.createElement("div", {
|
|
64026
|
-
className: styles$
|
|
64085
|
+
className: styles$H['vitro-message-input'],
|
|
64027
64086
|
onDrop: props.onDrop
|
|
64028
|
-
}, React__default.createElement(
|
|
64029
|
-
|
|
64030
|
-
|
|
64031
|
-
|
|
64032
|
-
|
|
64033
|
-
|
|
64087
|
+
}, React__default.createElement("div", {
|
|
64088
|
+
className: styles$H['vitro-control']
|
|
64089
|
+
}, !props.isDisabled && React__default.createElement(ScrollBar, {
|
|
64090
|
+
isHideScrollX: true
|
|
64091
|
+
}, React__default.createElement("div", {
|
|
64092
|
+
className: styles$H['vitro-message'],
|
|
64034
64093
|
ref: inputRef,
|
|
64035
|
-
disabled: props.isDisabled,
|
|
64036
|
-
placeholder: props.placeholder,
|
|
64037
64094
|
onChange: onChange,
|
|
64038
|
-
onKeyDown: onKeyDown
|
|
64039
|
-
|
|
64095
|
+
onKeyDown: onKeyDown,
|
|
64096
|
+
onFocus: onFocus,
|
|
64097
|
+
onBlur: onBlur,
|
|
64098
|
+
contentEditable: true
|
|
64099
|
+
}, isShowPlaceholder && React__default.createElement("span", {
|
|
64100
|
+
className: styles$H['vitro-placeholder']
|
|
64101
|
+
}, props.placeholder || localeService.create(LOCALE$6.PLACEHOLDER)))), props.children, props.onAddFile && React__default.createElement("button", {
|
|
64102
|
+
onClick: props.onAddFile,
|
|
64103
|
+
className: styles$H['vitro-button-add-file']
|
|
64104
|
+
})), React__default.createElement("button", {
|
|
64040
64105
|
onClick: onEnter,
|
|
64041
|
-
className: styles$
|
|
64042
|
-
}))
|
|
64106
|
+
className: styles$H['vitro-button-send']
|
|
64107
|
+
}));
|
|
64043
64108
|
};
|
|
64044
64109
|
|
|
64045
64110
|
exports.ACTION_HANDLER = ActionHandlerConstants;
|
|
@@ -64047,6 +64112,7 @@ exports.ALERT = AlertConstants;
|
|
|
64047
64112
|
exports.ActionHandler = ActionHandler;
|
|
64048
64113
|
exports.Activity = Activity;
|
|
64049
64114
|
exports.ActivityItem = ActivityItem;
|
|
64115
|
+
exports.ActivityMessage = ActivityMessage;
|
|
64050
64116
|
exports.Alert = Alert$1;
|
|
64051
64117
|
exports.Avatar = Avatar;
|
|
64052
64118
|
exports.Breadcrumbs = Breadcrumbs;
|