@eclipse-scout/core 22.0.29 → 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 (38) 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 +29 -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 +29 -4
  8. package/dist/eclipse-scout-core-theme.css.map +1 -1
  9. package/dist/eclipse-scout-core.js +8262 -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/desktop/outline/Outline.less +1 -0
  18. package/src/desktop/outline/OutlineLayout.js +1 -1
  19. package/src/desktop/outline/PageLayout.js +5 -2
  20. package/src/keystroke/KeyStroke.js +23 -18
  21. package/src/layout/graphics.js +15 -1
  22. package/src/main.less +1 -0
  23. package/src/popup/Popup.js +94 -15
  24. package/src/popup/Popup.less +6 -2
  25. package/src/session/Session.js +10 -5
  26. package/src/style/sizes.less +2 -0
  27. package/src/table/TableFooter.js +4 -4
  28. package/src/table/TableFooter.less +2 -2
  29. package/src/table/controls/TableControl.js +8 -3
  30. package/src/table/keystrokes/AbstractTableNavigationKeyStroke.js +1 -1
  31. package/src/tile/TileGrid.js +2 -1
  32. package/src/tree/Tree.js +46 -5
  33. package/src/tree/Tree.less +3 -1
  34. package/src/tree/TreeNode.js +4 -3
  35. package/dist/eclipse-scout-core-111d2d090dfd2183238f.min.js +0 -2
  36. package/dist/eclipse-scout-core-111d2d090dfd2183238f.min.js.map +0 -1
  37. package/dist/eclipse-scout-core-theme-dark-fd0e080c10f65e67b68b.min.css +0 -1
  38. package/dist/eclipse-scout-core-theme-f3a61fbc12acf8e27fcc.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;
@@ -3851,6 +3852,7 @@ iframe {
3851
3852
  .compact.outline.breadcrumb > .tree-data > .tree-node.selected {
3852
3853
  display: flex;
3853
3854
  flex-wrap: wrap;
3855
+ background-clip: content-box;
3854
3856
  }
3855
3857
  .compact.outline.breadcrumb > .tree-data > .tree-node.child-of-selected.animate-prev-selected {
3856
3858
  -webkit-animation-name: tree-node-prev-selection;
@@ -9948,11 +9950,11 @@ iframe {
9948
9950
  text-align: center;
9949
9951
  }
9950
9952
  /*
9951
- * Copyright (c) 2014-2018 BSI Business Systems Integration AG.
9953
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
9952
9954
  * All rights reserved. This program and the accompanying materials
9953
9955
  * are made available under the terms of the Eclipse Public License v1.0
9954
9956
  * which accompanies this distribution, and is available at
9955
- * http://www.eclipse.org/legal/epl-v10.html
9957
+ * https://www.eclipse.org/legal/epl-v10.html
9956
9958
  *
9957
9959
  * Contributors:
9958
9960
  * BSI Business Systems Integration AG - initial API and implementation
@@ -9972,6 +9974,28 @@ iframe {
9972
9974
  visibility: hidden !important;
9973
9975
  /* NOSONAR (!important is okay here) */
9974
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
+ }
9975
9999
  .popup-arrow {
9976
10000
  position: absolute;
9977
10001
  border: inherit;
@@ -12728,7 +12752,7 @@ Try these to switch between fonts:
12728
12752
  left: 0;
12729
12753
  height: 16px;
12730
12754
  cursor: row-resize;
12731
- z-index: 1;
12755
+ z-index: 2;
12732
12756
  border-top: 2px solid rgba(255, 255, 255, 0.12);
12733
12757
  }
12734
12758
  .table-control-container {
@@ -12741,7 +12765,7 @@ Try these to switch between fonts:
12741
12765
  /* Default value for TableControl.js */
12742
12766
  height: 364px;
12743
12767
  display: none;
12744
- z-index: 1;
12768
+ z-index: 2;
12745
12769
  /* Reset nowrap, forms may have fields which need wrapping (e.g. label field) */
12746
12770
  white-space: normal;
12747
12771
  }
@@ -14027,6 +14051,7 @@ Try these to switch between fonts:
14027
14051
  */
14028
14052
  .tree {
14029
14053
  position: relative;
14054
+ --node-padding-level-diff-parent-has-icon: 25px;
14030
14055
  }
14031
14056
  .tree:focus,
14032
14057
  .tree.focused {