@eclipse-scout/core 22.0.0-beta.5 → 22.0.0
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/eclipse-scout-core-theme-dark.css +64 -26
- package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-core-theme.css +64 -26
- package/dist/eclipse-scout-core-theme.css.map +1 -1
- package/dist/eclipse-scout-core.js +451 -400
- package/dist/eclipse-scout-core.js.map +1 -1
- package/package.json +2 -2
- package/src/App.js +16 -9
- package/src/desktop/desktoptab/DesktopTab.less +14 -0
- package/src/desktop/outline/Outline.js +0 -30
- package/src/desktop/viewbutton/ViewButtonBox.js +2 -2
- package/src/form/fields/groupbox/GroupBox.less +3 -1
- package/src/index.js +2 -1
- package/src/session/Session.js +4 -1
- package/src/style/sizes.less +4 -3
- package/src/table/Table.js +7 -3
- package/src/table/Table.less +13 -3
- package/src/tile/fields/htmlfield/TileHtmlField.js +28 -0
- package/src/tooltip/Tooltip.less +7 -5
- package/src/tree/LazyNodeFilter.js +24 -15
- package/src/tree/Tree.js +112 -143
- package/src/tree/Tree.less +2 -2
- package/src/tree/TreeLayout.js +1 -1
- package/src/tree/TreeNode.js +2 -2
- package/src/util/Device.js +6 -2
- package/src/widget/FilterSupport.js +6 -4
- package/src/widget/FilterSupport.less +38 -9
- package/src/widget/Widget.js +13 -4
|
@@ -2892,6 +2892,15 @@ iframe {
|
|
|
2892
2892
|
.desktop-tab.simple-tab:active > .title-line > .title {
|
|
2893
2893
|
color: inherit;
|
|
2894
2894
|
}
|
|
2895
|
+
.desktop-tab.simple-tab.glasspane-parent {
|
|
2896
|
+
pointer-events: unset;
|
|
2897
|
+
}
|
|
2898
|
+
.desktop-tab.simple-tab.glasspane-parent:not(.disabled):not(.selected):hover {
|
|
2899
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
2900
|
+
}
|
|
2901
|
+
.desktop-tab.simple-tab.glasspane-parent:not(.selected):hover > .closer {
|
|
2902
|
+
display: none;
|
|
2903
|
+
}
|
|
2895
2904
|
.desktop-tab.simple-tab.disabled {
|
|
2896
2905
|
background-color: transparent;
|
|
2897
2906
|
}
|
|
@@ -5914,7 +5923,7 @@ iframe {
|
|
|
5914
5923
|
height: 100%;
|
|
5915
5924
|
}
|
|
5916
5925
|
/*
|
|
5917
|
-
* Copyright (c) 2010-
|
|
5926
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
5918
5927
|
* All rights reserved. This program and the accompanying materials
|
|
5919
5928
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
5920
5929
|
* which accompanies this distribution, and is available at
|
|
@@ -6048,6 +6057,7 @@ iframe {
|
|
|
6048
6057
|
display: inline-block;
|
|
6049
6058
|
vertical-align: middle;
|
|
6050
6059
|
padding: 12px 0 12px 0;
|
|
6060
|
+
max-width: 100%;
|
|
6051
6061
|
}
|
|
6052
6062
|
.group-box.has-sub-label > .group-box-header > .title {
|
|
6053
6063
|
padding-bottom: 7px;
|
|
@@ -6063,6 +6073,8 @@ iframe {
|
|
|
6063
6073
|
font-size: 11px;
|
|
6064
6074
|
letter-spacing: 0.2px;
|
|
6065
6075
|
color: #666666;
|
|
6076
|
+
overflow: hidden;
|
|
6077
|
+
text-overflow: ellipsis;
|
|
6066
6078
|
}
|
|
6067
6079
|
.group-box-header > .status {
|
|
6068
6080
|
position: absolute;
|
|
@@ -11850,7 +11862,7 @@ Try these to switch between fonts:
|
|
|
11850
11862
|
background-color: rgba(255, 255, 255, 0.15);
|
|
11851
11863
|
}
|
|
11852
11864
|
/*
|
|
11853
|
-
* Copyright (c) 2010-
|
|
11865
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11854
11866
|
* All rights reserved. This program and the accompanying materials
|
|
11855
11867
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11856
11868
|
* which accompanies this distribution, and is available at
|
|
@@ -11975,7 +11987,7 @@ Try these to switch between fonts:
|
|
|
11975
11987
|
border-color: #fff;
|
|
11976
11988
|
}
|
|
11977
11989
|
/*
|
|
11978
|
-
* Copyright (c) 2010-
|
|
11990
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11979
11991
|
* All rights reserved. This program and the accompanying materials
|
|
11980
11992
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11981
11993
|
* which accompanies this distribution, and is available at
|
|
@@ -12067,18 +12079,24 @@ Try these to switch between fonts:
|
|
|
12067
12079
|
background-color: inherit;
|
|
12068
12080
|
}
|
|
12069
12081
|
.table > .filter-field {
|
|
12070
|
-
--filter-field-max-bottom: calc(50% - (
|
|
12082
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--controls-height)) / 2);
|
|
12071
12083
|
}
|
|
12072
12084
|
.table > .filter-field:not(.focused).empty {
|
|
12073
12085
|
--filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
|
|
12074
12086
|
}
|
|
12075
12087
|
.has-menubar.menubar-bottom.table > .filter-field {
|
|
12076
|
-
--filter-field-max-bottom: calc(50% - (
|
|
12088
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--controls-height)) / 2);
|
|
12077
12089
|
bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
|
|
12078
12090
|
}
|
|
12079
12091
|
.has-menubar.menubar-bottom.table > .filter-field:not(.focused).empty {
|
|
12080
12092
|
--filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
|
|
12081
12093
|
}
|
|
12094
|
+
.has-cell-editor-popup.table > .filter-field {
|
|
12095
|
+
opacity: 0;
|
|
12096
|
+
visibility: hidden;
|
|
12097
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
12098
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
12099
|
+
}
|
|
12082
12100
|
.table-data {
|
|
12083
12101
|
position: relative;
|
|
12084
12102
|
overflow: hidden;
|
|
@@ -13747,10 +13765,6 @@ Try these to switch between fonts:
|
|
|
13747
13765
|
max-width: 300px;
|
|
13748
13766
|
white-space: normal;
|
|
13749
13767
|
}
|
|
13750
|
-
.tooltip.has-menus {
|
|
13751
|
-
padding-top: 6px;
|
|
13752
|
-
padding-bottom: 6px;
|
|
13753
|
-
}
|
|
13754
13768
|
.tooltip-content {
|
|
13755
13769
|
padding: 8px 12px;
|
|
13756
13770
|
position: relative;
|
|
@@ -13766,6 +13780,7 @@ Try these to switch between fonts:
|
|
|
13766
13780
|
font-weight: bold;
|
|
13767
13781
|
padding-left: 16px;
|
|
13768
13782
|
padding-right: 16px;
|
|
13783
|
+
padding-top: 14px;
|
|
13769
13784
|
}
|
|
13770
13785
|
.tooltip-content .small {
|
|
13771
13786
|
font-size: 11px;
|
|
@@ -13777,6 +13792,11 @@ Try these to switch between fonts:
|
|
|
13777
13792
|
}
|
|
13778
13793
|
.tooltip-menus {
|
|
13779
13794
|
position: relative;
|
|
13795
|
+
background-color: inherit;
|
|
13796
|
+
padding-bottom: 6px;
|
|
13797
|
+
}
|
|
13798
|
+
.no-text > .tooltip-menus {
|
|
13799
|
+
padding-top: 6px;
|
|
13780
13800
|
}
|
|
13781
13801
|
.tooltip-menus > .menu-item {
|
|
13782
13802
|
display: flex;
|
|
@@ -13865,7 +13885,7 @@ Try these to switch between fonts:
|
|
|
13865
13885
|
position: relative;
|
|
13866
13886
|
}
|
|
13867
13887
|
/*
|
|
13868
|
-
* Copyright (c) 2010-
|
|
13888
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
13869
13889
|
* All rights reserved. This program and the accompanying materials
|
|
13870
13890
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
13871
13891
|
* which accompanies this distribution, and is available at
|
|
@@ -13894,7 +13914,7 @@ Try these to switch between fonts:
|
|
|
13894
13914
|
border-color: #1561A7;
|
|
13895
13915
|
}
|
|
13896
13916
|
.tree > .filter-field {
|
|
13897
|
-
--filter-field-max-bottom: calc(50% - (
|
|
13917
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--menubar-height)) / 2);
|
|
13898
13918
|
bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
|
|
13899
13919
|
}
|
|
13900
13920
|
.tree > .filter-field:not(.focused).empty {
|
|
@@ -15042,7 +15062,7 @@ Try these to switch between fonts:
|
|
|
15042
15062
|
color: #fff;
|
|
15043
15063
|
}
|
|
15044
15064
|
/*
|
|
15045
|
-
* Copyright (c) 2010-
|
|
15065
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15046
15066
|
* All rights reserved. This program and the accompanying materials
|
|
15047
15067
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15048
15068
|
* which accompanies this distribution, and is available at
|
|
@@ -15053,11 +15073,12 @@ Try these to switch between fonts:
|
|
|
15053
15073
|
*/
|
|
15054
15074
|
.filter-field {
|
|
15055
15075
|
position: absolute;
|
|
15056
|
-
--filter-field-
|
|
15057
|
-
--filter-field-
|
|
15076
|
+
--filter-field-height: 30px;
|
|
15077
|
+
--filter-field-bottom: 8px;
|
|
15078
|
+
--filter-field-max-bottom: calc(50% - var(--filter-field-height) / 2);
|
|
15058
15079
|
bottom: min(var(--filter-field-bottom), var(--filter-field-max-bottom));
|
|
15059
|
-
right:
|
|
15060
|
-
height:
|
|
15080
|
+
right: 8px;
|
|
15081
|
+
height: var(--filter-field-height);
|
|
15061
15082
|
width: 190px;
|
|
15062
15083
|
min-width: 75px;
|
|
15063
15084
|
max-width: 60%;
|
|
@@ -15068,10 +15089,16 @@ Try these to switch between fonts:
|
|
|
15068
15089
|
box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.2);
|
|
15069
15090
|
background-color: var(--filter-field-background-color);
|
|
15070
15091
|
opacity: 1;
|
|
15071
|
-
|
|
15092
|
+
visibility: visible;
|
|
15093
|
+
--filter-field-opacity-transition-delay: 100ms;
|
|
15094
|
+
--filter-field-visibility-transition-delay: var(--filter-field-opacity-transition-delay);
|
|
15095
|
+
transition: bottom 250ms ease-in-out, right 250ms ease-in-out, height 250ms ease-in-out, width 250ms ease-in-out, min-width 250ms ease-in-out, max-width 250ms ease-in-out, box-shadow 250ms ease-in-out, opacity 250ms ease-in-out var(--filter-field-opacity-transition-delay), visibility 0s var(--filter-field-visibility-transition-delay);
|
|
15072
15096
|
}
|
|
15073
15097
|
:not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15074
15098
|
opacity: 0;
|
|
15099
|
+
visibility: hidden;
|
|
15100
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
15101
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
15075
15102
|
}
|
|
15076
15103
|
.filter-field::before {
|
|
15077
15104
|
content: '\E02A';
|
|
@@ -15085,7 +15112,7 @@ Try these to switch between fonts:
|
|
|
15085
15112
|
justify-content: center;
|
|
15086
15113
|
align-items: center;
|
|
15087
15114
|
position: absolute;
|
|
15088
|
-
bottom:
|
|
15115
|
+
bottom: calc((var(--filter-field-height) - 24px) / 2);
|
|
15089
15116
|
right: 3px;
|
|
15090
15117
|
height: 24px;
|
|
15091
15118
|
width: 24px;
|
|
@@ -15121,19 +15148,19 @@ Try these to switch between fonts:
|
|
|
15121
15148
|
top: calc(50% - 22px / 2) !important;
|
|
15122
15149
|
}
|
|
15123
15150
|
.filter-field:not(.focused).empty {
|
|
15124
|
-
--filter-field-bottom:
|
|
15151
|
+
--filter-field-bottom: 8px + ((var(--filter-field-height) - 24px) / 2);
|
|
15125
15152
|
--filter-field-max-bottom: calc(50% - 24px / 2);
|
|
15126
|
-
right:
|
|
15153
|
+
right: 11px;
|
|
15127
15154
|
height: 24px;
|
|
15128
15155
|
width: 24px;
|
|
15129
15156
|
min-width: 24px;
|
|
15130
15157
|
max-width: 24px;
|
|
15131
15158
|
box-shadow: none;
|
|
15132
|
-
background-color: var(--filter-field-background-color);
|
|
15159
|
+
background-color: var(--filter-field-transparent-80-background-color);
|
|
15133
15160
|
}
|
|
15134
15161
|
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
|
|
15135
15162
|
.filter-field:not(.focused).empty {
|
|
15136
|
-
background-color: var(--filter-field-transparent-background-color);
|
|
15163
|
+
background-color: var(--filter-field-transparent-50-background-color);
|
|
15137
15164
|
-webkit-backdrop-filter: blur(2px);
|
|
15138
15165
|
backdrop-filter: blur(2px);
|
|
15139
15166
|
}
|
|
@@ -15158,10 +15185,11 @@ Try these to switch between fonts:
|
|
|
15158
15185
|
}
|
|
15159
15186
|
.filter-field-container {
|
|
15160
15187
|
position: sticky;
|
|
15161
|
-
--filter-field-
|
|
15162
|
-
--filter-field-container-
|
|
15188
|
+
--filter-field-height: 30px;
|
|
15189
|
+
--filter-field-container-top: calc(100% - 8px);
|
|
15190
|
+
--filter-field-container-min-top: calc(50% + var(--filter-field-height) / 2);
|
|
15163
15191
|
top: max(var(--filter-field-container-top), var(--filter-field-container-min-top));
|
|
15164
|
-
left: calc(100% -
|
|
15192
|
+
left: calc(100% - 8px);
|
|
15165
15193
|
width: 0;
|
|
15166
15194
|
height: 0;
|
|
15167
15195
|
overflow: visible;
|
|
@@ -15170,6 +15198,9 @@ Try these to switch between fonts:
|
|
|
15170
15198
|
}
|
|
15171
15199
|
.filter-field-container:not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15172
15200
|
opacity: 1;
|
|
15201
|
+
visibility: visible;
|
|
15202
|
+
--filter-field-opacity-transition-delay: 100ms;
|
|
15203
|
+
--filter-field-visibility-transition-delay: var(--filter-field-opacity-transition-delay);
|
|
15173
15204
|
}
|
|
15174
15205
|
.filter-field-container > .filter-field {
|
|
15175
15206
|
bottom: 0;
|
|
@@ -15178,9 +15209,12 @@ Try these to switch between fonts:
|
|
|
15178
15209
|
}
|
|
15179
15210
|
:not(:hover) > .filter-field-container > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15180
15211
|
opacity: 0;
|
|
15212
|
+
visibility: hidden;
|
|
15213
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
15214
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
15181
15215
|
}
|
|
15182
15216
|
.filter-field-container > .filter-field:not(.focused).empty {
|
|
15183
|
-
bottom:
|
|
15217
|
+
bottom: calc((var(--filter-field-height) - 24px) / 2);
|
|
15184
15218
|
right: 3px;
|
|
15185
15219
|
}
|
|
15186
15220
|
@supports not (bottom: min(50%, 42px)) {
|
|
@@ -15190,6 +15224,10 @@ Try these to switch between fonts:
|
|
|
15190
15224
|
/* NOSONAR (!important is okay here) */
|
|
15191
15225
|
}
|
|
15192
15226
|
}
|
|
15227
|
+
.dense .filter-field,
|
|
15228
|
+
.dense .filter-field-container {
|
|
15229
|
+
--filter-field-height: 24px;
|
|
15230
|
+
}
|
|
15193
15231
|
/*
|
|
15194
15232
|
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15195
15233
|
* All rights reserved. This program and the accompanying materials
|