@eclipse-scout/core 22.0.33 → 22.0.37

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 (41) hide show
  1. package/dist/eclipse-scout-core-990e036967fa14669bd8.min.js +2 -0
  2. package/dist/eclipse-scout-core-990e036967fa14669bd8.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 +8311 -26955
  10. package/dist/eclipse-scout-core.js.map +1 -1
  11. package/dist/file-list +4 -4
  12. package/dist/texts.json +7 -0
  13. package/package.json +2 -2
  14. package/src/App.js +31 -23
  15. package/src/ErrorHandler.js +3 -2
  16. package/src/RemoteApp.js +6 -13
  17. package/src/datepicker/DatePicker.js +5 -9
  18. package/src/desktop/outline/Outline.js +3 -2
  19. package/src/form/fields/datefield/DateField.js +26 -8
  20. package/src/form/fields/datefield/DateFieldAdapter.js +18 -8
  21. package/src/form/js/JsFormAdapter.js +2 -0
  22. package/src/keystroke/KeyStroke.js +23 -18
  23. package/src/lookup/StaticLookupCall.js +28 -3
  24. package/src/main.less +1 -0
  25. package/src/popup/Popup.js +94 -15
  26. package/src/popup/Popup.less +6 -2
  27. package/src/session/Session.js +10 -5
  28. package/src/style/sizes.less +2 -0
  29. package/src/table/TableFooter.js +4 -4
  30. package/src/table/TableFooter.less +2 -2
  31. package/src/table/controls/TableControl.js +8 -3
  32. package/src/table/keystrokes/AbstractTableNavigationKeyStroke.js +1 -1
  33. package/src/tile/TileGrid.js +21 -9
  34. package/src/timepicker/TimePicker.js +0 -33
  35. package/src/tree/Tree.js +46 -5
  36. package/src/tree/Tree.less +3 -1
  37. package/src/tree/TreeNode.js +4 -3
  38. package/dist/eclipse-scout-core-b11dde8e4ac1367f5a06.min.js +0 -2
  39. package/dist/eclipse-scout-core-b11dde8e4ac1367f5a06.min.js.map +0 -1
  40. package/dist/eclipse-scout-core-theme-dark-0d9d468e5722f73f5075.min.css +0 -1
  41. 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) 2014-2018 BSI Business Systems Integration AG.
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
- * http://www.eclipse.org/legal/epl-v10.html
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: 1;
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: 1;
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 {