@eclipse-scout/core 22.0.0-beta.1 → 22.0.0-beta.5
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.
- package/dist/eclipse-scout-core-theme-dark.css +71 -20
- package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-core-theme.css +70 -19
- package/dist/eclipse-scout-core-theme.css.map +1 -1
- package/dist/eclipse-scout-core.js +295 -242
- package/dist/eclipse-scout-core.js.map +1 -1
- package/package.json +2 -2
- package/src/App.js +71 -9
- package/src/RemoteApp.js +1 -0
- package/src/desktop/Desktop.js +3 -3
- package/src/desktop/notification/DesktopNotification.js +33 -8
- package/src/desktop/outline/Outline.js +2 -2
- package/src/desktop/outline/Outline.less +14 -6
- package/src/desktop/outline/OutlineViewButton.js +1 -0
- package/src/filechooser/FileChooser.js +2 -1
- package/src/form/Form.js +11 -3
- package/src/glasspane/DeferredGlassPaneTarget.js +2 -2
- package/src/login/LoginBox.less +8 -1
- package/src/main.less +1 -1
- package/src/menu/ComboMenu.js +22 -17
- package/src/menu/ComboMenu.less +71 -26
- package/src/menu/ContextMenuPopup.js +3 -2
- package/src/menu/ContextMenuPopup.less +1 -1
- package/src/menu/EllipsisMenu.js +4 -0
- package/src/menu/Menu.js +24 -11
- package/src/menu/menubar/MenuBar.js +2 -19
- package/src/menu/menubar/MenuBarBox.js +3 -34
- package/src/menu/menubar/MenuBarLayout.js +6 -19
- package/src/menu/menubox/MenuBoxLayout.js +1 -1
- package/src/menu/menus.js +4 -10
- package/src/messagebox/MessageBox.js +3 -22
- package/src/modeselector/ModeSelectorLayout.js +11 -6
- package/src/notification/Notification.js +15 -14
- package/src/popup/Popup.js +3 -20
- package/src/session/BusyIndicator.js +2 -1
- package/src/session/Session.js +0 -62
- package/src/status/Status.js +2 -1
- package/src/style/colors-dark.less +3 -1
- package/src/style/colors.less +2 -0
- package/src/style/sizes.less +1 -0
- package/src/table/columns/Column.js +4 -0
- package/src/tree/Tree.js +2 -2
- package/src/widget/LoadingSupport.js +1 -1
- package/src/widget/Widget.js +28 -32
- package/src/widget/WidgetSupport.js +1 -1
|
@@ -439,10 +439,10 @@ button::-moz-focus-inner {
|
|
|
439
439
|
pointer-events: none;
|
|
440
440
|
}
|
|
441
441
|
.application-loading-root.fadeout {
|
|
442
|
-
-webkit-animation: application-loading-fade-out 250ms linear 1;
|
|
443
|
-
-moz-animation: application-loading-fade-out 250ms linear 1;
|
|
444
|
-
-o-animation: application-loading-fade-out 250ms linear 1;
|
|
445
|
-
animation: application-loading-fade-out 250ms linear 1;
|
|
442
|
+
-webkit-animation: application-loading-fade-out 250ms linear 1 forwards;
|
|
443
|
+
-moz-animation: application-loading-fade-out 250ms linear 1 forwards;
|
|
444
|
+
-o-animation: application-loading-fade-out 250ms linear 1 forwards;
|
|
445
|
+
animation: application-loading-fade-out 250ms linear 1 forwards;
|
|
446
446
|
}
|
|
447
447
|
@-webkit-keyframes application-loading-fade-out {
|
|
448
448
|
to {
|
|
@@ -3532,10 +3532,6 @@ iframe {
|
|
|
3532
3532
|
* Contributors:
|
|
3533
3533
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
3534
3534
|
*/
|
|
3535
|
-
.outline.tree.in-background > .tree-data > .tree-node.selected {
|
|
3536
|
-
background-color: #808080;
|
|
3537
|
-
color: #fff;
|
|
3538
|
-
}
|
|
3539
3535
|
.outline.tree > .tree-data {
|
|
3540
3536
|
padding-top: 16px;
|
|
3541
3537
|
}
|
|
@@ -3612,6 +3608,15 @@ iframe {
|
|
|
3612
3608
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .font-icon {
|
|
3613
3609
|
color: rgba(255, 255, 255, 0.7);
|
|
3614
3610
|
}
|
|
3611
|
+
.outline.tree.in-background > .tree-data > .tree-node.group,
|
|
3612
|
+
.outline.tree.in-background > .tree-data > .animation-wrapper > .tree-node.group {
|
|
3613
|
+
background-color: #e8e8e8;
|
|
3614
|
+
}
|
|
3615
|
+
.outline.tree.in-background > .tree-data > .tree-node.selected,
|
|
3616
|
+
.outline.tree.in-background > .tree-data > .animation-wrapper > .tree-node.selected {
|
|
3617
|
+
background-color: #808080;
|
|
3618
|
+
color: #fff;
|
|
3619
|
+
}
|
|
3615
3620
|
.outline-title {
|
|
3616
3621
|
cursor: pointer;
|
|
3617
3622
|
color: #1561A7;
|
|
@@ -8498,10 +8503,10 @@ iframe {
|
|
|
8498
8503
|
.combo-menu:hover {
|
|
8499
8504
|
background-color: transparent;
|
|
8500
8505
|
}
|
|
8501
|
-
.combo-menu > .menu-item:not(
|
|
8506
|
+
.combo-menu > .menu-item:not(.first) {
|
|
8502
8507
|
margin-left: 3px;
|
|
8503
8508
|
}
|
|
8504
|
-
.combo-menu > .menu-item:not(
|
|
8509
|
+
.combo-menu > .menu-item:not(.first)::before {
|
|
8505
8510
|
content: '';
|
|
8506
8511
|
position: absolute;
|
|
8507
8512
|
left: -1px;
|
|
@@ -8510,8 +8515,13 @@ iframe {
|
|
|
8510
8515
|
width: 1px;
|
|
8511
8516
|
background-color: #DADADA;
|
|
8512
8517
|
}
|
|
8513
|
-
.combo-menu
|
|
8514
|
-
|
|
8518
|
+
.combo-menu > .menu-item:focus::before {
|
|
8519
|
+
display: none;
|
|
8520
|
+
}
|
|
8521
|
+
.combo-menu > .menu-item:not(.disabled):hover::before,
|
|
8522
|
+
.combo-menu > .menu-item.selected::before,
|
|
8523
|
+
.combo-menu > .menu-item:not(.disabled):hover ~ .menu-item::before,
|
|
8524
|
+
.combo-menu > .menu-item.selected ~ .menu-item::before {
|
|
8515
8525
|
display: none;
|
|
8516
8526
|
}
|
|
8517
8527
|
.combo-menu.menu-button {
|
|
@@ -8519,13 +8529,17 @@ iframe {
|
|
|
8519
8529
|
}
|
|
8520
8530
|
.combo-menu.menu-button > .menu-item {
|
|
8521
8531
|
border: 1px solid #1561A7;
|
|
8532
|
+
flex-grow: 1;
|
|
8522
8533
|
}
|
|
8523
|
-
.combo-menu.menu-button > .menu-item:not(
|
|
8534
|
+
.combo-menu.menu-button > .menu-item.menu-icononly:not(.first.last) {
|
|
8535
|
+
flex-grow: 0;
|
|
8536
|
+
}
|
|
8537
|
+
.combo-menu.menu-button > .menu-item:not(.last) {
|
|
8524
8538
|
border-top-right-radius: 0;
|
|
8525
8539
|
border-bottom-right-radius: 0;
|
|
8526
8540
|
border-right: 0;
|
|
8527
8541
|
}
|
|
8528
|
-
.combo-menu.menu-button > .menu-item:not(
|
|
8542
|
+
.combo-menu.menu-button > .menu-item:not(.first) {
|
|
8529
8543
|
border-top-left-radius: 0;
|
|
8530
8544
|
border-bottom-left-radius: 0;
|
|
8531
8545
|
border-left: 0;
|
|
@@ -8534,6 +8548,9 @@ iframe {
|
|
|
8534
8548
|
.disabled.combo-menu.menu-button > .menu-item {
|
|
8535
8549
|
border-color: #808080;
|
|
8536
8550
|
}
|
|
8551
|
+
.combo-menu.menu-button > .menu-item:focus {
|
|
8552
|
+
z-index: 1;
|
|
8553
|
+
}
|
|
8537
8554
|
.combo-menu.menu-button.default > .menu-item {
|
|
8538
8555
|
background-color: #1561A7;
|
|
8539
8556
|
/* border is necessary to align the text with text from buttons with a real border */
|
|
@@ -8560,20 +8577,47 @@ iframe {
|
|
|
8560
8577
|
box-shadow: 0 0 0 3px #93c5f4;
|
|
8561
8578
|
border-color: #64adf0;
|
|
8562
8579
|
}
|
|
8580
|
+
.combo-menu.menu-button.default > .menu-item::before {
|
|
8581
|
+
background-color: #DADADA;
|
|
8582
|
+
}
|
|
8563
8583
|
.combo-menu.menu-button.default > .menu-item.selected {
|
|
8564
8584
|
background-color: #012c53;
|
|
8565
8585
|
border-color: #012c53;
|
|
8566
8586
|
}
|
|
8587
|
+
.combo-menu.menu-button.default > .menu-item.disabled {
|
|
8588
|
+
color: rgba(255, 255, 255, 0.4);
|
|
8589
|
+
}
|
|
8590
|
+
.combo-menu.menu-button.default > .menu-item.disabled:hover,
|
|
8591
|
+
.combo-menu.menu-button.default > .menu-item.disabled.active,
|
|
8592
|
+
.combo-menu.menu-button.default > .menu-item.disabled:active,
|
|
8593
|
+
.combo-menu.menu-button.default > .menu-item.disabled.selected {
|
|
8594
|
+
background-color: #1561A7;
|
|
8595
|
+
border-color: #1561A7;
|
|
8596
|
+
}
|
|
8567
8597
|
.context-menu > .combo-menu {
|
|
8568
8598
|
padding: 0;
|
|
8569
8599
|
}
|
|
8570
8600
|
.context-menu > .combo-menu > .menu-item {
|
|
8571
8601
|
color: #000;
|
|
8572
|
-
padding
|
|
8573
|
-
|
|
8602
|
+
padding: 8px 16px 8px 16px;
|
|
8603
|
+
flex-grow: 1;
|
|
8604
|
+
justify-content: start;
|
|
8605
|
+
border-radius: 0;
|
|
8574
8606
|
}
|
|
8575
|
-
.context-menu > .combo-menu > .menu-item
|
|
8576
|
-
|
|
8607
|
+
.context-menu > .combo-menu > .menu-item > .font-icon {
|
|
8608
|
+
color: #1561A7;
|
|
8609
|
+
}
|
|
8610
|
+
.context-menu > .combo-menu > .menu-item.menu-textandicon > .icon {
|
|
8611
|
+
margin-right: 14px;
|
|
8612
|
+
}
|
|
8613
|
+
.context-menu > .combo-menu > .menu-item.menu-icononly:not(.first.last) {
|
|
8614
|
+
flex-grow: 0;
|
|
8615
|
+
}
|
|
8616
|
+
.context-menu > .combo-menu > .menu-item.disabled {
|
|
8617
|
+
color: #808080;
|
|
8618
|
+
}
|
|
8619
|
+
.context-menu > .combo-menu > .menu-item.disabled > .font-icon {
|
|
8620
|
+
color: #808080;
|
|
8577
8621
|
}
|
|
8578
8622
|
/*
|
|
8579
8623
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
@@ -15147,7 +15191,7 @@ Try these to switch between fonts:
|
|
|
15147
15191
|
}
|
|
15148
15192
|
}
|
|
15149
15193
|
/*
|
|
15150
|
-
* Copyright (c) 2010-
|
|
15194
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15151
15195
|
* All rights reserved. This program and the accompanying materials
|
|
15152
15196
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15153
15197
|
* which accompanies this distribution, and is available at
|
|
@@ -15221,6 +15265,13 @@ Try these to switch between fonts:
|
|
|
15221
15265
|
height: 18px;
|
|
15222
15266
|
vertical-align: middle;
|
|
15223
15267
|
}
|
|
15268
|
+
.login-body > .box-background-elements.box-background-elements-fadeout,
|
|
15269
|
+
.logout-body > .box-background-elements.box-background-elements-fadeout {
|
|
15270
|
+
-webkit-animation: nop 0.05s;
|
|
15271
|
+
-moz-animation: nop 0.05s;
|
|
15272
|
+
-o-animation: nop 0.05s;
|
|
15273
|
+
animation: nop 0.05s;
|
|
15274
|
+
}
|
|
15224
15275
|
/*
|
|
15225
15276
|
* Copyright (c) 2010-2020 BSI Business Systems Integration AG.
|
|
15226
15277
|
* All rights reserved. This program and the accompanying materials
|