@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
@@ -2003,11 +2003,11 @@ iframe {
2003
2003
  border: 1px solid #fff;
2004
2004
  }
2005
2005
  /*
2006
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
2006
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
2007
2007
  * All rights reserved. This program and the accompanying materials
2008
2008
  * are made available under the terms of the Eclipse Public License v1.0
2009
2009
  * which accompanies this distribution, and is available at
2010
- * http://www.eclipse.org/legal/epl-v10.html
2010
+ * https://www.eclipse.org/legal/epl-v10.html
2011
2011
  *
2012
2012
  * Contributors:
2013
2013
  * BSI Business Systems Integration AG - initial API and implementation
@@ -2060,7 +2060,8 @@ iframe {
2060
2060
  .dense .proposal-chooser > .active-filter > .radiobutton-group > .radiobutton-group-body {
2061
2061
  height: 30px;
2062
2062
  }
2063
- .dense .menubar:not(.main-menubar) > .menubar-box > .menu-item {
2063
+ .dense .menubar:not(.main-menubar) > .menubar-box > .menu-item,
2064
+ .dense .menubar:not(.main-menubar) > .menubar-box > .combo-menu > .menu-item {
2064
2065
  padding-top: 3px;
2065
2066
  /* @menubar-item-padding-y; */
2066
2067
  padding-bottom: 3px;
@@ -2069,10 +2070,20 @@ iframe {
2069
2070
  min-height: 24px;
2070
2071
  /* @logical-grid-row-height; */
2071
2072
  }
2072
- .dense .menubar:not(.main-menubar) > .menubar-box > .menu-button {
2073
+ .dense .menubar:not(.main-menubar) > .menubar-box > .menu-button,
2074
+ .dense .menubar:not(.main-menubar) > .menubar-box > .combo-menu > .menu-button {
2073
2075
  padding-top: 2px;
2074
2076
  padding-bottom: 2px;
2075
2077
  }
2078
+ .dense .menubar:not(.main-menubar) > .menubar-box > .combo-menu {
2079
+ padding: 0;
2080
+ }
2081
+ .dense .menubar:not(.main-menubar) > .menubar-box > .form-field-menu {
2082
+ padding-top: 0;
2083
+ padding-bottom: 0;
2084
+ margin-top: 0;
2085
+ margin-bottom: 0;
2086
+ }
2076
2087
  .dense .group-box-header {
2077
2088
  margin-top: 6px;
2078
2089
  /* @group-box-title-margin-top; */
@@ -2134,11 +2145,15 @@ iframe {
2134
2145
  margin-bottom: 2px;
2135
2146
  min-height: 24px;
2136
2147
  }
2137
- .dense .context-menu > .menu-item {
2148
+ .dense .context-menu > .menu-item,
2149
+ .dense .context-menu > .combo-menu > .menu-item {
2138
2150
  padding-top: 6px;
2139
2151
  /* padding: 11px 15px; */
2140
2152
  padding-bottom: 6px;
2141
2153
  }
2154
+ .dense .context-menu > .combo-menu {
2155
+ padding: 0;
2156
+ }
2142
2157
  .dense .check-box-field > .field {
2143
2158
  padding-top: 2px;
2144
2159
  /* padding: 6px 0; */