@eclipse-scout/core 22.0.15 → 22.0.19

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-d110a434bcc809661ce5.min.js +2 -0
  2. package/dist/eclipse-scout-core-d110a434bcc809661ce5.min.js.map +1 -0
  3. package/dist/eclipse-scout-core-theme-dark-fd0e080c10f65e67b68b.min.css +1 -0
  4. package/dist/eclipse-scout-core-theme-dark.css +20 -5
  5. package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
  6. package/dist/eclipse-scout-core-theme-f3a61fbc12acf8e27fcc.min.css +1 -0
  7. package/dist/eclipse-scout-core-theme.css +20 -5
  8. package/dist/eclipse-scout-core-theme.css.map +1 -1
  9. package/dist/eclipse-scout-core.js +178 -103
  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 +1 -0
  14. package/src/desktop/DesktopDense.less +24 -6
  15. package/src/desktop/OpenUriHandler.js +5 -5
  16. package/src/form/fields/FormField.js +1 -1
  17. package/src/form/fields/datefield/DateField.js +2 -0
  18. package/src/form/fields/sequencebox/SequenceBox.js +20 -3
  19. package/src/form/fields/stringfield/StringField.js +9 -1
  20. package/src/session/Session.js +21 -18
  21. package/src/table/Table.js +2 -3
  22. package/src/testing/JasmineScoutUtil.js +127 -0
  23. package/src/testing/index.js +7 -3
  24. package/src/tile/TileGrid.js +5 -15
  25. package/src/tile/TileGridLayout.js +21 -11
  26. package/src/tile/accordion/TileAccordion.js +4 -23
  27. package/src/tile/accordion/TileAccordionLayout.js +39 -2
  28. package/src/util/arrays.js +4 -0
  29. package/src/util/objects.js +4 -1
  30. package/src/widget/FilterSupport.js +19 -8
  31. package/dist/eclipse-scout-core-af5ff6abad5f1ff9fd18.min.js +0 -2
  32. package/dist/eclipse-scout-core-af5ff6abad5f1ff9fd18.min.js.map +0 -1
  33. package/dist/eclipse-scout-core-theme-74b63e0d57bed407a729.min.css +0 -1
  34. package/dist/eclipse-scout-core-theme-dark-b82aea152f416e38ce7f.min.css +0 -1
@@ -2013,11 +2013,11 @@ iframe {
2013
2013
  border: 1px solid transparent;
2014
2014
  }
2015
2015
  /*
2016
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
2016
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
2017
2017
  * All rights reserved. This program and the accompanying materials
2018
2018
  * are made available under the terms of the Eclipse Public License v1.0
2019
2019
  * which accompanies this distribution, and is available at
2020
- * http://www.eclipse.org/legal/epl-v10.html
2020
+ * https://www.eclipse.org/legal/epl-v10.html
2021
2021
  *
2022
2022
  * Contributors:
2023
2023
  * BSI Business Systems Integration AG - initial API and implementation
@@ -2070,7 +2070,8 @@ iframe {
2070
2070
  .dense .proposal-chooser > .active-filter > .radiobutton-group > .radiobutton-group-body {
2071
2071
  height: 30px;
2072
2072
  }
2073
- .dense .menubar:not(.main-menubar) > .menubar-box > .menu-item {
2073
+ .dense .menubar:not(.main-menubar) > .menubar-box > .menu-item,
2074
+ .dense .menubar:not(.main-menubar) > .menubar-box > .combo-menu > .menu-item {
2074
2075
  padding-top: 3px;
2075
2076
  /* @menubar-item-padding-y; */
2076
2077
  padding-bottom: 3px;
@@ -2079,10 +2080,20 @@ iframe {
2079
2080
  min-height: 24px;
2080
2081
  /* @logical-grid-row-height; */
2081
2082
  }
2082
- .dense .menubar:not(.main-menubar) > .menubar-box > .menu-button {
2083
+ .dense .menubar:not(.main-menubar) > .menubar-box > .menu-button,
2084
+ .dense .menubar:not(.main-menubar) > .menubar-box > .combo-menu > .menu-button {
2083
2085
  padding-top: 2px;
2084
2086
  padding-bottom: 2px;
2085
2087
  }
2088
+ .dense .menubar:not(.main-menubar) > .menubar-box > .combo-menu {
2089
+ padding: 0;
2090
+ }
2091
+ .dense .menubar:not(.main-menubar) > .menubar-box > .form-field-menu {
2092
+ padding-top: 0;
2093
+ padding-bottom: 0;
2094
+ margin-top: 0;
2095
+ margin-bottom: 0;
2096
+ }
2086
2097
  .dense .group-box-header {
2087
2098
  margin-top: 6px;
2088
2099
  /* @group-box-title-margin-top; */
@@ -2144,11 +2155,15 @@ iframe {
2144
2155
  margin-bottom: 2px;
2145
2156
  min-height: 24px;
2146
2157
  }
2147
- .dense .context-menu > .menu-item {
2158
+ .dense .context-menu > .menu-item,
2159
+ .dense .context-menu > .combo-menu > .menu-item {
2148
2160
  padding-top: 6px;
2149
2161
  /* padding: 11px 15px; */
2150
2162
  padding-bottom: 6px;
2151
2163
  }
2164
+ .dense .context-menu > .combo-menu {
2165
+ padding: 0;
2166
+ }
2152
2167
  .dense .check-box-field > .field {
2153
2168
  padding-top: 2px;
2154
2169
  /* padding: 6px 0; */