@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
@@ -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;
@@ -3841,6 +3842,7 @@ iframe {
3841
3842
  .compact.outline.breadcrumb > .tree-data > .tree-node.selected {
3842
3843
  display: flex;
3843
3844
  flex-wrap: wrap;
3845
+ background-clip: content-box;
3844
3846
  }
3845
3847
  .compact.outline.breadcrumb > .tree-data > .tree-node.child-of-selected.animate-prev-selected {
3846
3848
  -webkit-animation-name: tree-node-prev-selection;
@@ -9938,11 +9940,11 @@ iframe {
9938
9940
  text-align: center;
9939
9941
  }
9940
9942
  /*
9941
- * Copyright (c) 2014-2018 BSI Business Systems Integration AG.
9943
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
9942
9944
  * All rights reserved. This program and the accompanying materials
9943
9945
  * are made available under the terms of the Eclipse Public License v1.0
9944
9946
  * which accompanies this distribution, and is available at
9945
- * http://www.eclipse.org/legal/epl-v10.html
9947
+ * https://www.eclipse.org/legal/epl-v10.html
9946
9948
  *
9947
9949
  * Contributors:
9948
9950
  * BSI Business Systems Integration AG - initial API and implementation
@@ -9962,6 +9964,28 @@ iframe {
9962
9964
  visibility: hidden !important;
9963
9965
  /* NOSONAR (!important is okay here) */
9964
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
+ }
9965
9989
  .popup-arrow {
9966
9990
  position: absolute;
9967
9991
  border: inherit;
@@ -12718,7 +12742,7 @@ Try these to switch between fonts:
12718
12742
  left: 0;
12719
12743
  height: 16px;
12720
12744
  cursor: row-resize;
12721
- z-index: 1;
12745
+ z-index: 2;
12722
12746
  border-top: 2px solid #DADADA;
12723
12747
  }
12724
12748
  .table-control-container {
@@ -12731,7 +12755,7 @@ Try these to switch between fonts:
12731
12755
  /* Default value for TableControl.js */
12732
12756
  height: 364px;
12733
12757
  display: none;
12734
- z-index: 1;
12758
+ z-index: 2;
12735
12759
  /* Reset nowrap, forms may have fields which need wrapping (e.g. label field) */
12736
12760
  white-space: normal;
12737
12761
  }
@@ -14017,6 +14041,7 @@ Try these to switch between fonts:
14017
14041
  */
14018
14042
  .tree {
14019
14043
  position: relative;
14044
+ --node-padding-level-diff-parent-has-icon: 25px;
14020
14045
  }
14021
14046
  .tree:focus,
14022
14047
  .tree.focused {