@ticatec/uniface-element 0.1.12 → 0.1.14
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/dist/app-layout/ClassicLayout.svelte +1 -1
- package/dist/box/Box.svelte +8 -0
- package/dist/box/Box.svelte.d.ts +3 -0
- package/dist/card/Card.svelte +3 -2
- package/dist/card/CardAction.d.ts +1 -0
- package/dist/card/CommonCardActionBar.svelte +3 -3
- package/dist/checkbox/CheckBox.svelte +1 -1
- package/dist/data-table/DataTable.svelte +83 -54
- package/dist/data-table/DataTable.svelte.d.ts +7 -5
- package/dist/data-table/UniDataTable.d.ts +4 -2
- package/dist/data-table/UniDataTable.js +8 -7
- package/dist/data-table/lib/IndicatorColumn.d.ts +2 -11
- package/dist/data-table/parts/ActionsPanel.svelte +9 -2
- package/dist/data-table/parts/ActionsPanel.svelte.d.ts +1 -1
- package/dist/data-table/parts/ActionsRow.svelte +3 -3
- package/dist/data-table/parts/ContentPanel.svelte +65 -77
- package/dist/data-table/parts/ContentPanel.svelte.d.ts +15 -8
- package/dist/data-table/parts/DataCell.svelte +2 -2
- package/dist/data-table/parts/DataRow.svelte +2 -4
- package/dist/data-table/parts/FixedColumnsPanel.svelte +52 -13
- package/dist/data-table/parts/FixedColumnsPanel.svelte.d.ts +12 -5
- package/dist/data-table/parts/FixedHeaderPanel.svelte +74 -11
- package/dist/data-table/parts/FixedHeaderPanel.svelte.d.ts +8 -2
- package/dist/data-table/parts/FixedRow.svelte +30 -17
- package/dist/data-table/parts/FixedRow.svelte.d.ts +6 -3
- package/dist/data-table/parts/TableHeaderPanel.svelte +32 -63
- package/dist/data-table/parts/TableHeaderPanel.svelte.d.ts +6 -10
- package/dist/data-table/parts/TableRow.d.ts +0 -10
- package/dist/data-table/parts/TableRow.js +0 -29
- package/dist/data-table/parts/TableRows.d.ts +0 -2
- package/dist/data-table/parts/TableRows.js +0 -2
- package/dist/data-table/parts/TreeRootCell.svelte +3 -0
- package/dist/{list-box/ListViewItem.svelte.d.ts → data-table/parts/TreeRootCell.svelte.d.ts} +3 -3
- package/dist/date-picker/DatePicker.svelte +5 -0
- package/dist/date-picker/DateTimePicker.svelte +6 -1
- package/dist/dialog/Dialog.svelte +0 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/list-box/index.d.ts +1 -2
- package/dist/message-box/IMessageBox.d.ts +4 -4
- package/dist/message-box/IMessageBox.js +10 -10
- package/dist/message-box/MessageBoxBoard.svelte +3 -3
- package/dist/message-box/index.d.ts +2 -2
- package/dist/message-box/index.js +2 -2
- package/dist/number-range/NumberRange.svelte +3 -2
- package/dist/number-range/NumberRange.svelte.d.ts +1 -0
- package/dist/options-multi-select/OptionsMultiSelect.svelte +19 -3
- package/dist/options-multi-select/OptionsMultiSelect.svelte.d.ts +1 -0
- package/dist/options-select/OptionsSelect.svelte +8 -2
- package/dist/pagination-panel/PaginationPanel.svelte +1 -1
- package/dist/pagination-panel/PaginationPanel.svelte.d.ts +1 -1
- package/dist/split/Split.svelte +14 -2
- package/dist/split/Split.svelte.d.ts +1 -0
- package/dist/text-editor/TextEditor.svelte +7 -1
- package/dist/text-editor/TextEditor.svelte.d.ts +1 -0
- package/dist/ticatec-uniface-web.css +172 -208
- package/package.json +1 -1
- package/dist/list-box/ListViewItem.svelte +0 -6
|
@@ -19,6 +19,8 @@
|
|
|
19
19
|
export let displayMode: DisplayMode = DisplayMode.Edit;
|
|
20
20
|
export let onChange: ((value: string) => void) | undefined = undefined;
|
|
21
21
|
|
|
22
|
+
export let autoFocus: boolean = false;
|
|
23
|
+
|
|
22
24
|
let className: string = '';
|
|
23
25
|
let input$: any;
|
|
24
26
|
let editor: any;
|
|
@@ -31,7 +33,7 @@
|
|
|
31
33
|
|
|
32
34
|
const clean = () => {
|
|
33
35
|
value = '';
|
|
34
|
-
editor.
|
|
36
|
+
editor.focus();
|
|
35
37
|
}
|
|
36
38
|
|
|
37
39
|
$: if (oldValue != value) {
|
|
@@ -39,6 +41,10 @@
|
|
|
39
41
|
oldValue = value;
|
|
40
42
|
}
|
|
41
43
|
|
|
44
|
+
$: if (editor && autoFocus) {
|
|
45
|
+
editor.focus();
|
|
46
|
+
}
|
|
47
|
+
|
|
42
48
|
</script>
|
|
43
49
|
<CommonEditor {displayMode} {style} {value} {suffix} {prefix} {readonly} {disabled} {variant} {compact}
|
|
44
50
|
showActionIcon={!readonly && !disabled && removable && value?.length > 0} placeholder={input$['placeholder']}
|
|
@@ -26,6 +26,7 @@ declare const TextEditor: $$__sveltets_2_IsomorphicComponent<{
|
|
|
26
26
|
removable?: boolean | undefined;
|
|
27
27
|
displayMode?: DisplayMode | undefined;
|
|
28
28
|
onChange?: ((value: string) => void) | undefined | undefined;
|
|
29
|
+
autoFocus?: boolean | undefined;
|
|
29
30
|
}, {
|
|
30
31
|
blur: FocusEvent;
|
|
31
32
|
focus: FocusEvent;
|
|
@@ -189,10 +189,13 @@
|
|
|
189
189
|
--uniface-data-table-alter-row-bg: #f7f7f7;
|
|
190
190
|
--uniface-data-table-header-bg: #F8FAFC;
|
|
191
191
|
--uniface-data-table-shadow-gap: 2px;
|
|
192
|
+
--uniface-data-table-header-divid-color: #B3BCCA;
|
|
193
|
+
--uniface-data-table-cell-padding: 3px 4px;
|
|
192
194
|
--uniface-data-table-inline-row-panel-border: 1px solid #F8FAFC;
|
|
193
195
|
--uniface-data-table-inline-row-panel-bg: #F1F5F9;
|
|
194
196
|
--uniface-scroll-color: #e1e1e180;
|
|
195
|
-
--uniface-data-table-inline-border-color: #
|
|
197
|
+
--uniface-data-table-inline-border-color: #CBD5E1;
|
|
198
|
+
--uniface-data-table-bg: #ffffff;
|
|
196
199
|
--uniface-treeview-icon-color: #8AA7FF;
|
|
197
200
|
--uniface-treeview-icon-hover-color: #0057FE;
|
|
198
201
|
--uniface-treeview-item-bg: #EEF4FF;
|
|
@@ -201,6 +204,9 @@
|
|
|
201
204
|
--uniface-popup-hint-color: #374151;
|
|
202
205
|
--uniface-context-menu-bg: #ffffff;
|
|
203
206
|
--uniface-context-menu-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
|
|
207
|
+
--uniface-box-header-bg: #F8FAFC;
|
|
208
|
+
--uniface-box-footer-bg: #F8FAFC;
|
|
209
|
+
--uniface-box-border-radius: 8px;
|
|
204
210
|
}
|
|
205
211
|
|
|
206
212
|
.uniface-common-picker {
|
|
@@ -1564,6 +1570,17 @@
|
|
|
1564
1570
|
position: relative;
|
|
1565
1571
|
top: 1px;
|
|
1566
1572
|
}
|
|
1573
|
+
.uniface-card > div .card-action-bar.simple .action-item.disabled i {
|
|
1574
|
+
cursor: default;
|
|
1575
|
+
color: var(--uniface-disabled-button-text-color, #B3BCCA);
|
|
1576
|
+
}
|
|
1577
|
+
.uniface-card > div .card-action-bar.simple .action-item.disabled i:hover {
|
|
1578
|
+
color: var(--uniface-disabled-button-text-color, #B3BCCA);
|
|
1579
|
+
}
|
|
1580
|
+
.uniface-card > div .card-action-bar.simple .action-item.disabled i:active {
|
|
1581
|
+
position: relative;
|
|
1582
|
+
top: 0;
|
|
1583
|
+
}
|
|
1567
1584
|
.uniface-card > div .card-content {
|
|
1568
1585
|
overflow: hidden;
|
|
1569
1586
|
}
|
|
@@ -2520,6 +2537,8 @@
|
|
|
2520
2537
|
flex-direction: row;
|
|
2521
2538
|
gap: 8px;
|
|
2522
2539
|
align-items: center;
|
|
2540
|
+
height: 100%;
|
|
2541
|
+
box-sizing: border-box;
|
|
2523
2542
|
}
|
|
2524
2543
|
.uniface-range-wrapper .uniface-range-editor .divider {
|
|
2525
2544
|
position: relative;
|
|
@@ -3024,6 +3043,16 @@
|
|
|
3024
3043
|
flex-direction: row;
|
|
3025
3044
|
align-items: center;
|
|
3026
3045
|
}
|
|
3046
|
+
.uniface-box .box-footer {
|
|
3047
|
+
width: 100%;
|
|
3048
|
+
background-color: var(--uniface-box-footer-bg, #F8FAFC);
|
|
3049
|
+
flex: 0 0 auto;
|
|
3050
|
+
position: relative;
|
|
3051
|
+
box-sizing: border-box;
|
|
3052
|
+
display: flex;
|
|
3053
|
+
flex-direction: row;
|
|
3054
|
+
align-items: center;
|
|
3055
|
+
}
|
|
3027
3056
|
.uniface-box .box-content {
|
|
3028
3057
|
flex: 1 1 auto;
|
|
3029
3058
|
position: relative;
|
|
@@ -3595,13 +3624,13 @@
|
|
|
3595
3624
|
}
|
|
3596
3625
|
|
|
3597
3626
|
.uniface-data-table {
|
|
3598
|
-
width: 100%;
|
|
3599
|
-
height: 100%;
|
|
3600
3627
|
position: relative;
|
|
3601
3628
|
box-sizing: border-box;
|
|
3602
|
-
background: transparent;
|
|
3603
3629
|
overflow: hidden;
|
|
3630
|
+
background-color: var(--uniface-data-table-bg, #ffffff);
|
|
3604
3631
|
color: var(--uniface-default-text-color, #374151);
|
|
3632
|
+
display: flex;
|
|
3633
|
+
flex-direction: row;
|
|
3605
3634
|
}
|
|
3606
3635
|
.uniface-data-table ::-webkit-scrollbar {
|
|
3607
3636
|
-webkit-appearance: none;
|
|
@@ -3620,97 +3649,25 @@
|
|
|
3620
3649
|
background-color: var(--uniface-scroll-color, rgba(225, 225, 225, 0.5019607843));
|
|
3621
3650
|
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
|
|
3622
3651
|
}
|
|
3623
|
-
.uniface-data-table
|
|
3624
|
-
width: 100%;
|
|
3625
|
-
height: 100%;
|
|
3652
|
+
.uniface-data-table .vertical-center {
|
|
3626
3653
|
position: relative;
|
|
3627
|
-
|
|
3628
|
-
|
|
3654
|
+
top: 50%;
|
|
3655
|
+
transform: translateY(-50%);
|
|
3629
3656
|
}
|
|
3630
|
-
.uniface-data-table .
|
|
3631
|
-
|
|
3632
|
-
display: flex;
|
|
3657
|
+
.uniface-data-table .header-row {
|
|
3658
|
+
flex: 0 0 auto;
|
|
3633
3659
|
width: 100%;
|
|
3634
|
-
flex-wrap: nowrap;
|
|
3635
|
-
flex-direction: row;
|
|
3636
|
-
align-items: center;
|
|
3637
|
-
background-color: var(--uniface-data-table-background-color, #ffffff);
|
|
3638
|
-
height: 36px;
|
|
3639
|
-
}
|
|
3640
|
-
.uniface-data-table .table-row.alternative {
|
|
3641
|
-
background-color: var(--uniface-data-table-background-color, #f7f7f7);
|
|
3642
|
-
}
|
|
3643
|
-
.uniface-data-table.row-border .table-row {
|
|
3644
|
-
border-bottom: 1px solid var(--uniface-data-table-row-border-color, #f0f0f0);
|
|
3645
|
-
}
|
|
3646
|
-
.uniface-data-table .table-header-panel {
|
|
3647
3660
|
position: relative;
|
|
3648
|
-
|
|
3649
|
-
background-color: var(--uniface-data-table-header-bg, #F8FAFC);
|
|
3650
|
-
flex: 0 0 auto;
|
|
3651
|
-
overflow: hidden;
|
|
3661
|
+
height: var(--uniface-data-table-header-hight, 48px);
|
|
3652
3662
|
font-weight: 600;
|
|
3653
3663
|
user-select: none;
|
|
3664
|
+
background-color: var(--uniface-data-table-header-bg, #F8FAFC);
|
|
3665
|
+
border-bottom: 1px solid transparent;
|
|
3666
|
+
color: var(--uniface-data-table-header-color, #374151);
|
|
3654
3667
|
display: flex;
|
|
3655
3668
|
flex-direction: row;
|
|
3656
|
-
height: 48px;
|
|
3657
|
-
align-items: center;
|
|
3658
|
-
text-align: center;
|
|
3659
|
-
}
|
|
3660
|
-
.uniface-data-table .table-header-panel .header-indicator {
|
|
3661
|
-
flex: 0 0 auto;
|
|
3662
|
-
width: 50px;
|
|
3663
|
-
height: 100%;
|
|
3664
|
-
border-right: 1px solid var(--uniface-data-table-header-separator-color, #6B7280);
|
|
3665
|
-
box-sizing: border-box;
|
|
3666
|
-
z-index: 1;
|
|
3667
|
-
box-shadow: var(--uniface-data-table-separator-shadow, rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px);
|
|
3668
|
-
}
|
|
3669
|
-
.uniface-data-table .table-header-panel .header-indicator > div {
|
|
3670
|
-
padding: 4px;
|
|
3671
|
-
height: 100%;
|
|
3672
|
-
display: flex;
|
|
3673
|
-
flex-direction: row;
|
|
3674
|
-
justify-content: center;
|
|
3675
|
-
align-items: center;
|
|
3676
|
-
}
|
|
3677
|
-
.uniface-data-table .table-header-panel .header-actions {
|
|
3678
|
-
flex: 0 0 auto;
|
|
3679
|
-
border-left: 1px solid var(--uniface-data-table-header-separator-color, #6B7280);
|
|
3680
|
-
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
|
|
3681
|
-
display: block;
|
|
3682
|
-
width: 100%;
|
|
3683
|
-
font-weight: 600;
|
|
3684
|
-
height: 100%;
|
|
3685
|
-
position: relative;
|
|
3686
|
-
box-sizing: border-box;
|
|
3687
|
-
}
|
|
3688
|
-
.uniface-data-table .table-header-panel .header-actions > div {
|
|
3689
|
-
top: 50%;
|
|
3690
|
-
position: relative;
|
|
3691
|
-
transform: translateY(-50%);
|
|
3692
|
-
}
|
|
3693
|
-
.uniface-data-table .table-header-panel .header-row-panel {
|
|
3694
|
-
display: flex;
|
|
3695
|
-
flex-direction: row;
|
|
3696
|
-
position: relative;
|
|
3697
|
-
box-sizing: border-box;
|
|
3698
|
-
}
|
|
3699
|
-
.uniface-data-table .table-header-panel .table-cell {
|
|
3700
|
-
text-align: center;
|
|
3701
|
-
color: var(--uniface-data-table-header-color, #374151);
|
|
3702
|
-
overflow: hidden;
|
|
3703
|
-
position: relative;
|
|
3704
|
-
flex: 0 0 auto;
|
|
3705
|
-
line-height: 28px;
|
|
3706
|
-
}
|
|
3707
|
-
.uniface-data-table .table-header-panel .table-cell > div {
|
|
3708
|
-
text-align: center;
|
|
3709
|
-
}
|
|
3710
|
-
.uniface-data-table .table-header-panel .table-cell .sortable {
|
|
3711
|
-
cursor: pointer;
|
|
3712
3669
|
}
|
|
3713
|
-
.uniface-data-table .
|
|
3670
|
+
.uniface-data-table .header-row .header-cell-divider {
|
|
3714
3671
|
position: absolute;
|
|
3715
3672
|
top: 0;
|
|
3716
3673
|
right: 0;
|
|
@@ -3718,190 +3675,183 @@
|
|
|
3718
3675
|
width: 3px;
|
|
3719
3676
|
z-index: 2;
|
|
3720
3677
|
}
|
|
3721
|
-
.uniface-data-table .
|
|
3678
|
+
.uniface-data-table .header-row .header-cell-divider::before {
|
|
3722
3679
|
content: ""; /* 必须指定伪元素的内容 */
|
|
3723
3680
|
position: absolute;
|
|
3724
3681
|
left: 50%; /* 将伪元素水平居中 */
|
|
3725
|
-
top:
|
|
3726
|
-
bottom:
|
|
3682
|
+
top: 25%;
|
|
3683
|
+
bottom: 25%;
|
|
3727
3684
|
width: 1px; /* 竖线宽度 */
|
|
3728
3685
|
background-color: var(--uniface-data-table-header-separator-color, #6B7280); /* 竖线颜色 */
|
|
3729
3686
|
transform: translateX(-50%); /* 精确居中 */
|
|
3730
3687
|
}
|
|
3731
|
-
.uniface-data-table .
|
|
3732
|
-
cursor:
|
|
3688
|
+
.uniface-data-table .header-row .header-cell-divider.resizer {
|
|
3689
|
+
cursor: col-resize;
|
|
3733
3690
|
}
|
|
3734
|
-
.uniface-data-table
|
|
3735
|
-
display:
|
|
3736
|
-
vertical-align: center;
|
|
3737
|
-
align-self: center;
|
|
3691
|
+
.uniface-data-table.cell-border .header-cell-divider:not(.resizer)::before {
|
|
3692
|
+
display: none;
|
|
3738
3693
|
}
|
|
3739
|
-
.uniface-data-table .data-
|
|
3694
|
+
.uniface-data-table .data-cell {
|
|
3695
|
+
height: 100%;
|
|
3696
|
+
border-right: 1px solid transparent;
|
|
3697
|
+
padding: var(--uniface-data-table-cell-padding, 3px 4px);
|
|
3740
3698
|
position: relative;
|
|
3741
|
-
width: 100%;
|
|
3742
|
-
flex: 1 1 auto;
|
|
3743
|
-
overflow: hidden;
|
|
3744
|
-
display: flex;
|
|
3745
|
-
flex-direction: row;
|
|
3746
|
-
}
|
|
3747
|
-
.uniface-data-table .data-content-panel .table-row {
|
|
3748
|
-
background-color: var(--uniface-data-table-background-color, #ffffff);
|
|
3749
|
-
height: 36px;
|
|
3750
3699
|
}
|
|
3751
|
-
.uniface-data-table .data-
|
|
3752
|
-
|
|
3700
|
+
.uniface-data-table .data-cell .sortable {
|
|
3701
|
+
cursor: pointer;
|
|
3753
3702
|
}
|
|
3754
|
-
.uniface-data-table .data-
|
|
3755
|
-
|
|
3756
|
-
height: 100%;
|
|
3757
|
-
position: relative;
|
|
3758
|
-
box-sizing: border-box;
|
|
3759
|
-
padding: 4px;
|
|
3703
|
+
.uniface-data-table .data-cell:last-child {
|
|
3704
|
+
border-right: none;
|
|
3760
3705
|
}
|
|
3761
|
-
.uniface-data-table .data-
|
|
3706
|
+
.uniface-data-table .data-cell > div:first-child {
|
|
3707
|
+
width: 100%;
|
|
3762
3708
|
position: relative;
|
|
3763
3709
|
top: 50%;
|
|
3764
3710
|
transform: translateY(-50%);
|
|
3765
|
-
}
|
|
3766
|
-
.uniface-data-table .data-content-panel .table-row .table-data-cell .cell-text {
|
|
3767
3711
|
overflow: hidden;
|
|
3768
3712
|
}
|
|
3769
|
-
.uniface-data-table .data-
|
|
3770
|
-
|
|
3713
|
+
.uniface-data-table .data-row {
|
|
3714
|
+
position: relative;
|
|
3715
|
+
display: flex;
|
|
3716
|
+
width: 100%;
|
|
3717
|
+
flex-wrap: nowrap;
|
|
3718
|
+
flex-direction: row;
|
|
3719
|
+
align-items: center;
|
|
3720
|
+
background-color: var(--uniface-data-table-background-color, #ffffff);
|
|
3721
|
+
}
|
|
3722
|
+
.uniface-data-table .data-row.alternative {
|
|
3723
|
+
background-color: var(--uniface-data-table-alter-row-bg, #f7f7f7);
|
|
3771
3724
|
}
|
|
3772
|
-
.uniface-data-table
|
|
3773
|
-
|
|
3725
|
+
.uniface-data-table.row-border .header-row, .uniface-data-table.row-border .data-row {
|
|
3726
|
+
border-bottom: 1px solid var(--uniface-data-table-inline-border-color, #CBD5E1);
|
|
3774
3727
|
}
|
|
3775
|
-
.uniface-data-table
|
|
3776
|
-
|
|
3777
|
-
min-height: 32px;
|
|
3778
|
-
box-sizing: border-box;
|
|
3728
|
+
.uniface-data-table.cell-border .data-cell {
|
|
3729
|
+
border-right-color: var(--uniface-data-table-inline-border-color, #CBD5E1);
|
|
3779
3730
|
}
|
|
3780
|
-
.uniface-data-table .
|
|
3781
|
-
flex:
|
|
3731
|
+
.uniface-data-table .rows-container {
|
|
3732
|
+
flex: 1 1 auto;
|
|
3782
3733
|
height: 100%;
|
|
3783
|
-
|
|
3734
|
+
width: 100%;
|
|
3784
3735
|
box-sizing: border-box;
|
|
3785
3736
|
overflow: hidden;
|
|
3786
|
-
display: flex;
|
|
3787
|
-
flex-direction: column;
|
|
3788
3737
|
}
|
|
3789
|
-
.uniface-data-table .
|
|
3790
|
-
flex: 1 1 auto;
|
|
3791
|
-
height: 100%;
|
|
3738
|
+
.uniface-data-table .rows-container > div {
|
|
3792
3739
|
width: 100%;
|
|
3793
3740
|
position: relative;
|
|
3794
|
-
overflow: hidden;
|
|
3795
3741
|
}
|
|
3796
|
-
.uniface-data-table .
|
|
3797
|
-
|
|
3798
|
-
width: 100%;
|
|
3742
|
+
.uniface-data-table .left-fixed-panel, .uniface-data-table .action-panel {
|
|
3743
|
+
flex: 0 0 auto;
|
|
3799
3744
|
position: relative;
|
|
3745
|
+
box-sizing: border-box;
|
|
3746
|
+
overflow: hidden;
|
|
3747
|
+
display: flex;
|
|
3748
|
+
flex-direction: column;
|
|
3800
3749
|
}
|
|
3801
|
-
.uniface-data-table .
|
|
3750
|
+
.uniface-data-table .left-fixed-panel .bottom-mask-overlay, .uniface-data-table .action-panel .bottom-mask-overlay {
|
|
3802
3751
|
flex: 0 0 auto;
|
|
3803
3752
|
width: 100%;
|
|
3804
3753
|
height: 8px;
|
|
3805
3754
|
box-sizing: border-box;
|
|
3806
|
-
background-color: #ffffff;
|
|
3807
|
-
border-top: 1px solid var(--uniface-
|
|
3755
|
+
background-color: var(--uniface-data-table-bg, #ffffff);
|
|
3756
|
+
border-top: 1px solid var(--uniface-data-table-inline-border-color, rgba(225, 225, 225, 0.5019607843));
|
|
3808
3757
|
}
|
|
3809
|
-
.uniface-data-table .
|
|
3810
|
-
|
|
3811
|
-
|
|
3758
|
+
.uniface-data-table .left-fixed-panel {
|
|
3759
|
+
z-index: 1;
|
|
3760
|
+
border-right: 1px solid var(--uniface-data-table-inline-border-color, rgba(225, 225, 225, 0.5019607843));
|
|
3761
|
+
box-shadow: var(--uniface-data-table-separator-shadow, rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px);
|
|
3812
3762
|
}
|
|
3813
|
-
.uniface-data-table .
|
|
3814
|
-
|
|
3763
|
+
.uniface-data-table .left-fixed-panel .data-cell {
|
|
3764
|
+
flex: 0 0 auto;
|
|
3815
3765
|
}
|
|
3816
|
-
.uniface-data-table .
|
|
3817
|
-
|
|
3818
|
-
|
|
3766
|
+
.uniface-data-table .left-fixed-panel .data-cell:last-child {
|
|
3767
|
+
border-right: none;
|
|
3768
|
+
}
|
|
3769
|
+
.uniface-data-table .left-fixed-panel .indicator-cell {
|
|
3819
3770
|
display: flex;
|
|
3820
|
-
box-sizing: border-box;
|
|
3821
|
-
border-bottom: 1px solid #f0f0f0;
|
|
3822
3771
|
flex-direction: row;
|
|
3772
|
+
justify-content: center;
|
|
3823
3773
|
align-items: center;
|
|
3824
3774
|
}
|
|
3825
|
-
.uniface-data-table .
|
|
3826
|
-
|
|
3775
|
+
.uniface-data-table .left-fixed-panel .indicator-cell .expand-icon {
|
|
3776
|
+
display: none;
|
|
3777
|
+
color: var(--uniface-hover-item-color, #42A5F5);
|
|
3778
|
+
font-size: 14px;
|
|
3779
|
+
width: 16px;
|
|
3780
|
+
position: absolute;
|
|
3781
|
+
right: 4px;
|
|
3782
|
+
cursor: pointer;
|
|
3827
3783
|
}
|
|
3828
|
-
.uniface-data-table .
|
|
3829
|
-
|
|
3830
|
-
padding: 2px 4px;
|
|
3831
|
-
box-sizing: border-box;
|
|
3832
|
-
overflow: hidden;
|
|
3833
|
-
white-space: nowrap;
|
|
3784
|
+
.uniface-data-table .left-fixed-panel .indicator-cell .expand-icon:active {
|
|
3785
|
+
top: 5px;
|
|
3834
3786
|
}
|
|
3835
|
-
.uniface-data-table .
|
|
3836
|
-
|
|
3837
|
-
|
|
3787
|
+
.uniface-data-table .left-fixed-panel .indicator-cell:hover .expand-icon {
|
|
3788
|
+
display: block;
|
|
3789
|
+
}
|
|
3790
|
+
.uniface-data-table .action-panel {
|
|
3838
3791
|
z-index: 1;
|
|
3839
|
-
|
|
3840
|
-
|
|
3792
|
+
border-left: 1px solid var(--uniface-data-table-inline-border-color, rgba(225, 225, 225, 0.5019607843));
|
|
3793
|
+
box-shadow: var(--uniface-data-table-separator-shadow, rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px);
|
|
3841
3794
|
}
|
|
3842
|
-
.uniface-data-table .
|
|
3795
|
+
.uniface-data-table .action-panel .header-row {
|
|
3796
|
+
display: block;
|
|
3797
|
+
text-align: center;
|
|
3798
|
+
}
|
|
3799
|
+
.uniface-data-table .action-panel .data-row .action-cell {
|
|
3800
|
+
display: flex;
|
|
3801
|
+
flex-direction: row;
|
|
3802
|
+
align-items: center;
|
|
3803
|
+
width: max-content;
|
|
3804
|
+
height: 100%;
|
|
3805
|
+
overflow-x: auto;
|
|
3806
|
+
white-space: nowrap;
|
|
3807
|
+
position: relative;
|
|
3808
|
+
}
|
|
3809
|
+
.uniface-data-table .table-row {
|
|
3843
3810
|
position: relative;
|
|
3844
|
-
width: 100%;
|
|
3845
3811
|
display: flex;
|
|
3846
|
-
|
|
3847
|
-
|
|
3812
|
+
width: 100%;
|
|
3813
|
+
flex-wrap: nowrap;
|
|
3848
3814
|
flex-direction: row;
|
|
3849
3815
|
align-items: center;
|
|
3816
|
+
background-color: var(--uniface-data-table-background-color, #ffffff);
|
|
3817
|
+
height: 36px;
|
|
3850
3818
|
}
|
|
3851
|
-
.uniface-data-table .
|
|
3819
|
+
.uniface-data-table .table-row.alternative {
|
|
3852
3820
|
background-color: var(--uniface-data-table-background-color, #f7f7f7);
|
|
3853
3821
|
}
|
|
3854
|
-
.uniface-data-table
|
|
3855
|
-
|
|
3822
|
+
.uniface-data-table.row-border .table-row {
|
|
3823
|
+
border-bottom: 1px solid var(--uniface-data-table-row-border-color, #f0f0f0);
|
|
3856
3824
|
}
|
|
3857
|
-
.uniface-data-table .data-content-panel
|
|
3825
|
+
.uniface-data-table .data-content-panel {
|
|
3826
|
+
position: relative;
|
|
3827
|
+
width: 100%;
|
|
3858
3828
|
flex: 1 1 auto;
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
.uniface-data-table .data-content-panel .action-button {
|
|
3863
|
-
display: inline-block;
|
|
3864
|
-
cursor: pointer;
|
|
3865
|
-
color: var(--uniface-button-primary-background-color, #42A5F5);
|
|
3866
|
-
box-sizing: border-box;
|
|
3867
|
-
padding: 2px 4px;
|
|
3868
|
-
text-decoration: none;
|
|
3829
|
+
overflow: hidden;
|
|
3830
|
+
display: flex;
|
|
3831
|
+
flex-direction: column;
|
|
3869
3832
|
}
|
|
3870
|
-
.uniface-data-table .data-content-panel .
|
|
3871
|
-
|
|
3833
|
+
.uniface-data-table .data-content-panel .data-cell {
|
|
3834
|
+
flex: 0 0 auto;
|
|
3872
3835
|
}
|
|
3873
|
-
.uniface-data-table .data-content-panel .
|
|
3836
|
+
.uniface-data-table .data-content-panel .data-cell > div:first-child {
|
|
3874
3837
|
position: relative;
|
|
3875
|
-
top:
|
|
3838
|
+
top: 50%;
|
|
3839
|
+
transform: translateY(-50%);
|
|
3876
3840
|
}
|
|
3877
|
-
.uniface-data-table .data-content-panel .
|
|
3841
|
+
.uniface-data-table .data-content-panel .header-row > div {
|
|
3878
3842
|
position: relative;
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
transition: none;
|
|
3884
|
-
display: block;
|
|
3885
|
-
}
|
|
3886
|
-
.uniface-data-table .data-content-panel .data-table-popover .contents-wrapper .contents {
|
|
3887
|
-
background: var(--uniface-app-background-color, #ffffff);
|
|
3888
|
-
box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
|
|
3889
|
-
padding-top: 0;
|
|
3890
|
-
opacity: 1;
|
|
3891
|
-
transform: scale(1);
|
|
3892
|
-
display: block;
|
|
3843
|
+
height: 100%;
|
|
3844
|
+
display: flex;
|
|
3845
|
+
flex-direction: row;
|
|
3846
|
+
align-items: center;
|
|
3893
3847
|
}
|
|
3894
|
-
.uniface-data-table .data-content-panel .
|
|
3895
|
-
|
|
3848
|
+
.uniface-data-table .data-content-panel .header-row .data-cell {
|
|
3849
|
+
text-align: center !important;
|
|
3896
3850
|
}
|
|
3897
|
-
.uniface-data-table .data-content-panel .data-
|
|
3898
|
-
|
|
3851
|
+
.uniface-data-table .data-content-panel .expand-data-row {
|
|
3852
|
+
background-color: var(--uniface-data-table-expand-row-bg, #f7f7f7);
|
|
3853
|
+
min-height: 32px;
|
|
3899
3854
|
box-sizing: border-box;
|
|
3900
|
-
line-height: 1.5em;
|
|
3901
|
-
cursor: pointer;
|
|
3902
|
-
}
|
|
3903
|
-
.uniface-data-table .data-content-panel .data-table-popover .contents-wrapper .contents .action-popover:hover {
|
|
3904
|
-
background-color: #f7f7f7;
|
|
3905
3855
|
}
|
|
3906
3856
|
.uniface-data-table .data-content-panel .data-view-panel {
|
|
3907
3857
|
flex: 1 1 auto;
|
|
@@ -4040,6 +3990,14 @@
|
|
|
4040
3990
|
width: fit-content;
|
|
4041
3991
|
}
|
|
4042
3992
|
|
|
3993
|
+
html {
|
|
3994
|
+
box-sizing: border-box;
|
|
3995
|
+
}
|
|
3996
|
+
|
|
3997
|
+
*, *:before, *:after {
|
|
3998
|
+
box-sizing: inherit;
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4043
4001
|
.uniface-mask, .uniface-mask-overlay {
|
|
4044
4002
|
position: absolute;
|
|
4045
4003
|
top: 0;
|
|
@@ -4068,3 +4026,9 @@
|
|
|
4068
4026
|
visibility: hidden;
|
|
4069
4027
|
opacity: 0;
|
|
4070
4028
|
}
|
|
4029
|
+
|
|
4030
|
+
.uniface-vertical-middle-block {
|
|
4031
|
+
position: relative;
|
|
4032
|
+
top: 50%;
|
|
4033
|
+
transform: translateY(-50%);
|
|
4034
|
+
}
|
package/package.json
CHANGED