@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.
Files changed (34) hide show
  1. package/dist/eclipse-scout-core-0c86d1e671be93def26c.min.js +2 -0
  2. package/dist/eclipse-scout-core-0c86d1e671be93def26c.min.js.map +1 -0
  3. package/dist/eclipse-scout-core-theme-dark-17a1d77d53510e113a3c.min.css +1 -0
  4. package/dist/eclipse-scout-core-theme-dark.css +28 -4
  5. package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
  6. package/dist/eclipse-scout-core-theme-dfed415a6b7fb17f3f4c.min.css +1 -0
  7. package/dist/eclipse-scout-core-theme.css +28 -4
  8. package/dist/eclipse-scout-core-theme.css.map +1 -1
  9. package/dist/eclipse-scout-core.js +8234 -26896
  10. package/dist/eclipse-scout-core.js.map +1 -1
  11. package/dist/file-list +4 -4
  12. package/package.json +2 -2
  13. package/src/App.js +31 -23
  14. package/src/ErrorHandler.js +3 -2
  15. package/src/RemoteApp.js +6 -13
  16. package/src/desktop/outline/Outline.js +3 -2
  17. package/src/keystroke/KeyStroke.js +23 -18
  18. package/src/main.less +1 -0
  19. package/src/popup/Popup.js +94 -15
  20. package/src/popup/Popup.less +6 -2
  21. package/src/session/Session.js +10 -5
  22. package/src/style/sizes.less +2 -0
  23. package/src/table/TableFooter.js +4 -4
  24. package/src/table/TableFooter.less +2 -2
  25. package/src/table/controls/TableControl.js +8 -3
  26. package/src/table/keystrokes/AbstractTableNavigationKeyStroke.js +1 -1
  27. package/src/tile/TileGrid.js +2 -1
  28. package/src/tree/Tree.js +46 -5
  29. package/src/tree/Tree.less +3 -1
  30. package/src/tree/TreeNode.js +4 -3
  31. package/dist/eclipse-scout-core-b11dde8e4ac1367f5a06.min.js +0 -2
  32. package/dist/eclipse-scout-core-b11dde8e4ac1367f5a06.min.js.map +0 -1
  33. package/dist/eclipse-scout-core-theme-dark-0d9d468e5722f73f5075.min.css +0 -1
  34. package/dist/eclipse-scout-core-theme-db0af3fa95956b820bfc.min.css +0 -1
@@ -552,6 +552,7 @@ a:focus,
552
552
  padding: 20px;
553
553
  border: 1px solid #FF8888;
554
554
  background-color: #252F34;
555
+ border-radius: 12px;
555
556
  }
556
557
  .startup-error-title {
557
558
  font-weight: bold;
@@ -9949,11 +9950,11 @@ iframe {
9949
9950
  text-align: center;
9950
9951
  }
9951
9952
  /*
9952
- * Copyright (c) 2014-2018 BSI Business Systems Integration AG.
9953
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
9953
9954
  * All rights reserved. This program and the accompanying materials
9954
9955
  * are made available under the terms of the Eclipse Public License v1.0
9955
9956
  * which accompanies this distribution, and is available at
9956
- * http://www.eclipse.org/legal/epl-v10.html
9957
+ * https://www.eclipse.org/legal/epl-v10.html
9957
9958
  *
9958
9959
  * Contributors:
9959
9960
  * BSI Business Systems Integration AG - initial API and implementation
@@ -9973,6 +9974,28 @@ iframe {
9973
9974
  visibility: hidden !important;
9974
9975
  /* NOSONAR (!important is okay here) */
9975
9976
  }
9977
+ .popup.modal.animate-modality-highlight {
9978
+ -webkit-transform-origin: 50% 50%;
9979
+ -moz-transform-origin: 50% 50%;
9980
+ -ms-transform-origin: 50% 50%;
9981
+ transform-origin: 50% 50%;
9982
+ -webkit-animation-name: shake;
9983
+ -moz-animation-name: shake;
9984
+ -o-animation-name: shake;
9985
+ animation-name: shake;
9986
+ -webkit-animation-duration: 0.2s;
9987
+ -moz-animation-duration: 0.2s;
9988
+ -o-animation-duration: 0.2s;
9989
+ animation-duration: 0.2s;
9990
+ -webkit-animation-iteration-count: 1;
9991
+ -moz-animation-iteration-count: 1;
9992
+ -o-animation-iteration-count: 1;
9993
+ animation-iteration-count: 1;
9994
+ -webkit-animation-timing-function: linear;
9995
+ -moz-animation-timing-function: linear;
9996
+ -o-animation-timing-function: linear;
9997
+ animation-timing-function: linear;
9998
+ }
9976
9999
  .popup-arrow {
9977
10000
  position: absolute;
9978
10001
  border: inherit;
@@ -12729,7 +12752,7 @@ Try these to switch between fonts:
12729
12752
  left: 0;
12730
12753
  height: 16px;
12731
12754
  cursor: row-resize;
12732
- z-index: 1;
12755
+ z-index: 2;
12733
12756
  border-top: 2px solid rgba(255, 255, 255, 0.12);
12734
12757
  }
12735
12758
  .table-control-container {
@@ -12742,7 +12765,7 @@ Try these to switch between fonts:
12742
12765
  /* Default value for TableControl.js */
12743
12766
  height: 364px;
12744
12767
  display: none;
12745
- z-index: 1;
12768
+ z-index: 2;
12746
12769
  /* Reset nowrap, forms may have fields which need wrapping (e.g. label field) */
12747
12770
  white-space: normal;
12748
12771
  }
@@ -14028,6 +14051,7 @@ Try these to switch between fonts:
14028
14051
  */
14029
14052
  .tree {
14030
14053
  position: relative;
14054
+ --node-padding-level-diff-parent-has-icon: 25px;
14031
14055
  }
14032
14056
  .tree:focus,
14033
14057
  .tree.focused {