@eclipse-scout/core 22.0.33 → 22.0.34
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-0c86d1e671be93def26c.min.js +2 -0
- package/dist/eclipse-scout-core-0c86d1e671be93def26c.min.js.map +1 -0
- package/dist/eclipse-scout-core-theme-dark-17a1d77d53510e113a3c.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark.css +28 -4
- package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-core-theme-dfed415a6b7fb17f3f4c.min.css +1 -0
- package/dist/eclipse-scout-core-theme.css +28 -4
- package/dist/eclipse-scout-core-theme.css.map +1 -1
- package/dist/eclipse-scout-core.js +8234 -26896
- package/dist/eclipse-scout-core.js.map +1 -1
- package/dist/file-list +4 -4
- package/package.json +2 -2
- package/src/App.js +31 -23
- package/src/ErrorHandler.js +3 -2
- package/src/RemoteApp.js +6 -13
- package/src/desktop/outline/Outline.js +3 -2
- package/src/keystroke/KeyStroke.js +23 -18
- package/src/main.less +1 -0
- package/src/popup/Popup.js +94 -15
- package/src/popup/Popup.less +6 -2
- package/src/session/Session.js +10 -5
- package/src/style/sizes.less +2 -0
- package/src/table/TableFooter.js +4 -4
- package/src/table/TableFooter.less +2 -2
- package/src/table/controls/TableControl.js +8 -3
- package/src/table/keystrokes/AbstractTableNavigationKeyStroke.js +1 -1
- package/src/tile/TileGrid.js +2 -1
- package/src/tree/Tree.js +46 -5
- package/src/tree/Tree.less +3 -1
- package/src/tree/TreeNode.js +4 -3
- package/dist/eclipse-scout-core-b11dde8e4ac1367f5a06.min.js +0 -2
- package/dist/eclipse-scout-core-b11dde8e4ac1367f5a06.min.js.map +0 -1
- package/dist/eclipse-scout-core-theme-dark-0d9d468e5722f73f5075.min.css +0 -1
- package/dist/eclipse-scout-core-theme-db0af3fa95956b820bfc.min.css +0 -1
|
@@ -542,6 +542,7 @@ a:focus,
|
|
|
542
542
|
padding: 20px;
|
|
543
543
|
border: 1px solid #D53F3F;
|
|
544
544
|
background-color: #FEE0E0;
|
|
545
|
+
border-radius: 12px;
|
|
545
546
|
}
|
|
546
547
|
.startup-error-title {
|
|
547
548
|
font-weight: bold;
|
|
@@ -9939,11 +9940,11 @@ iframe {
|
|
|
9939
9940
|
text-align: center;
|
|
9940
9941
|
}
|
|
9941
9942
|
/*
|
|
9942
|
-
* Copyright (c)
|
|
9943
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
9943
9944
|
* All rights reserved. This program and the accompanying materials
|
|
9944
9945
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
9945
9946
|
* which accompanies this distribution, and is available at
|
|
9946
|
-
*
|
|
9947
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
9947
9948
|
*
|
|
9948
9949
|
* Contributors:
|
|
9949
9950
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -9963,6 +9964,28 @@ iframe {
|
|
|
9963
9964
|
visibility: hidden !important;
|
|
9964
9965
|
/* NOSONAR (!important is okay here) */
|
|
9965
9966
|
}
|
|
9967
|
+
.popup.modal.animate-modality-highlight {
|
|
9968
|
+
-webkit-transform-origin: 50% 50%;
|
|
9969
|
+
-moz-transform-origin: 50% 50%;
|
|
9970
|
+
-ms-transform-origin: 50% 50%;
|
|
9971
|
+
transform-origin: 50% 50%;
|
|
9972
|
+
-webkit-animation-name: shake;
|
|
9973
|
+
-moz-animation-name: shake;
|
|
9974
|
+
-o-animation-name: shake;
|
|
9975
|
+
animation-name: shake;
|
|
9976
|
+
-webkit-animation-duration: 0.2s;
|
|
9977
|
+
-moz-animation-duration: 0.2s;
|
|
9978
|
+
-o-animation-duration: 0.2s;
|
|
9979
|
+
animation-duration: 0.2s;
|
|
9980
|
+
-webkit-animation-iteration-count: 1;
|
|
9981
|
+
-moz-animation-iteration-count: 1;
|
|
9982
|
+
-o-animation-iteration-count: 1;
|
|
9983
|
+
animation-iteration-count: 1;
|
|
9984
|
+
-webkit-animation-timing-function: linear;
|
|
9985
|
+
-moz-animation-timing-function: linear;
|
|
9986
|
+
-o-animation-timing-function: linear;
|
|
9987
|
+
animation-timing-function: linear;
|
|
9988
|
+
}
|
|
9966
9989
|
.popup-arrow {
|
|
9967
9990
|
position: absolute;
|
|
9968
9991
|
border: inherit;
|
|
@@ -12719,7 +12742,7 @@ Try these to switch between fonts:
|
|
|
12719
12742
|
left: 0;
|
|
12720
12743
|
height: 16px;
|
|
12721
12744
|
cursor: row-resize;
|
|
12722
|
-
z-index:
|
|
12745
|
+
z-index: 2;
|
|
12723
12746
|
border-top: 2px solid #DADADA;
|
|
12724
12747
|
}
|
|
12725
12748
|
.table-control-container {
|
|
@@ -12732,7 +12755,7 @@ Try these to switch between fonts:
|
|
|
12732
12755
|
/* Default value for TableControl.js */
|
|
12733
12756
|
height: 364px;
|
|
12734
12757
|
display: none;
|
|
12735
|
-
z-index:
|
|
12758
|
+
z-index: 2;
|
|
12736
12759
|
/* Reset nowrap, forms may have fields which need wrapping (e.g. label field) */
|
|
12737
12760
|
white-space: normal;
|
|
12738
12761
|
}
|
|
@@ -14018,6 +14041,7 @@ Try these to switch between fonts:
|
|
|
14018
14041
|
*/
|
|
14019
14042
|
.tree {
|
|
14020
14043
|
position: relative;
|
|
14044
|
+
--node-padding-level-diff-parent-has-icon: 25px;
|
|
14021
14045
|
}
|
|
14022
14046
|
.tree:focus,
|
|
14023
14047
|
.tree.focused {
|