@eclipse-scout/core 22.0.2 → 22.0.12
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-af5ff6abad5f1ff9fd18.min.js +2 -0
- package/dist/eclipse-scout-core-af5ff6abad5f1ff9fd18.min.js.map +1 -0
- package/dist/eclipse-scout-core-theme-74b63e0d57bed407a729.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark-b82aea152f416e38ce7f.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark.css +153 -52
- package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-core-theme.css +153 -52
- package/dist/eclipse-scout-core-theme.css.map +1 -1
- package/dist/eclipse-scout-core.js +785 -564
- package/dist/eclipse-scout-core.js.map +1 -1
- package/dist/file-list +4 -4
- package/package.json +2 -2
- package/src/ErrorHandler.js +66 -28
- package/src/{table/TableHeaderMenuButtonKeyStroke.js → action/ActionExecKeyStroke.js} +4 -5
- package/src/box/Box.less +10 -6
- package/src/breadcrumbbar/BreadcrumbItem.less +3 -6
- package/src/checkbox/CheckBox.less +3 -1
- package/src/datepicker/DatePickerTouchPopup.js +8 -0
- package/src/desktop/DisableBrowserF5ReloadKeyStroke.js +1 -0
- package/src/desktop/bench/DesktopTabSelectKeyStroke.js +2 -1
- package/src/desktop/desktoptab/DisableBrowserTabSwitchingKeyStroke.js +1 -0
- package/src/desktop/navigation/EnlargeNavigationKeyStroke.js +1 -0
- package/src/desktop/navigation/ShrinkNavigationKeyStroke.js +1 -0
- package/src/desktop/viewbutton/ViewMenuPopupEnterKeyStroke.js +2 -1
- package/src/filechooser/FileChooser.js +1 -1
- package/src/filechooser/FileChooser.less +15 -10
- package/src/focus/FocusContext.js +11 -8
- package/src/focus/FocusManager.js +24 -5
- package/src/form/fields/LookupBox.js +3 -1
- package/src/form/fields/LookupBox.less +28 -2
- package/src/form/fields/TextFieldIcon.less +2 -2
- package/src/form/fields/ValueField.js +11 -2
- package/src/form/fields/breadcrumbbarfield/BreadcrumbBarField.less +10 -4
- package/src/form/fields/button/ButtonKeyStroke.js +0 -3
- package/src/form/fields/datefield/DateField.js +31 -47
- package/src/form/fields/filechooserfield/FileChooserFieldBrowseKeyStroke.js +1 -3
- package/src/form/fields/filechooserfield/FileChooserFieldDeleteKeyStroke.js +1 -3
- package/src/form/fields/groupbox/GroupBox.js +1 -0
- package/src/form/fields/listbox/ListBox.js +5 -4
- package/src/form/fields/lookupfield/lookupField.js +6 -5
- package/src/form/fields/smartfield/ProposalField.js +2 -1
- package/src/form/fields/smartfield/ProposalTreeNode.js +4 -8
- package/src/form/fields/smartfield/SmartField.js +4 -20
- package/src/form/fields/smartfield/SmartField.less +24 -11
- package/src/form/fields/splitbox/SplitBoxCollapseKeyStroke.js +1 -0
- package/src/form/fields/splitbox/SplitBoxFirstCollapseKeyStroke.js +1 -0
- package/src/form/fields/splitbox/SplitBoxSecondCollapseKeyStroke.js +1 -0
- package/src/form/fields/tabbox/TabAreaLeftKeyStroke.js +2 -0
- package/src/form/fields/tabbox/TabAreaRightKeyStroke.js +2 -0
- package/src/form/fields/tabbox/TabBox.js +4 -0
- package/src/form/fields/tabbox/TabBoxHeader.js +4 -0
- package/src/form/fields/tabbox/TabItem.js +4 -0
- package/src/form/fields/treebox/TreeBox.js +6 -5
- package/src/index.js +1 -1
- package/src/jquery/jquery-scout.js +12 -0
- package/src/keystroke/CloseKeyStroke.js +1 -0
- package/src/keystroke/ContextMenuKeyStroke.js +1 -0
- package/src/keystroke/FocusFilterFieldKeyStroke.js +1 -0
- package/src/keystroke/KeyStroke.js +11 -3
- package/src/keystroke/TabItemKeyStroke.js +8 -5
- package/src/logging/logging.js +16 -8
- package/src/login/LoginBox.js +3 -2
- package/src/login/LoginBox.less +18 -1
- package/src/menu/MenuExecKeyStroke.js +3 -17
- package/src/menu/MenuNavigationKeyStroke.js +1 -0
- package/src/menu/menubar/MenuBarLeftKeyStroke.js +2 -0
- package/src/menu/menubar/MenuBarRightKeyStroke.js +2 -0
- package/src/messagebox/MessageBox.less +17 -17
- package/src/planner/Planner.js +2 -0
- package/src/session/Session.js +8 -5
- package/src/style/fonts.less +5 -1
- package/src/style/sizes.less +14 -5
- package/src/table/Table.js +25 -19
- package/src/table/Table.less +14 -7
- package/src/table/TableAdapter.js +9 -12
- package/src/table/TableHeaderMenuButton.js +2 -2
- package/src/table/TableLayout.js +6 -0
- package/src/table/columns/Column.js +8 -5
- package/src/table/columns/ColumnOptimalWidthMeasurer.js +1 -1
- package/src/table/editor/CellEditorPopup.js +21 -14
- package/src/table/keystrokes/AbstractTableNavigationKeyStroke.js +1 -0
- package/src/table/keystrokes/TableCopyKeyStroke.js +1 -0
- package/src/table/keystrokes/TableNavigationCollapseKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationEndKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationExpandKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationHomeKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationPageDownKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationPageUpKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationUpKeyStroke.js +2 -2
- package/src/table/keystrokes/TableRefreshKeyStroke.js +2 -2
- package/src/table/keystrokes/TableSelectAllKeyStroke.js +3 -2
- package/src/table/keystrokes/TableStartCellEditKeyStroke.js +2 -2
- package/src/testing/index.js +1 -0
- package/src/testing/lookup/AbortableMicrotaskStaticLookupCall.js +50 -0
- package/src/tile/TileGrid.js +9 -11
- package/src/tile/fields/tablefield/TileTableField.less +19 -2
- package/src/tile/keystrokes/TileGridSelectKeyStroke.js +3 -2
- package/src/timepicker/TimePickerTouchPopup.js +8 -0
- package/src/tree/Tree.js +8 -4
- package/src/tree/Tree.less +12 -2
- package/src/tree/keystrokes/AbstractTreeNavigationKeyStroke.js +1 -0
- package/src/tree/keystrokes/TreeCollapseAllKeyStroke.js +2 -2
- package/src/tree/keystrokes/TreeExpandOrDrillDownKeyStroke.js +2 -2
- package/src/tree/keystrokes/TreeNavigationDownKeyStroke.js +2 -2
- package/src/tree/keystrokes/TreeNavigationEndKeyStroke.js +2 -2
- package/src/tree/keystrokes/TreeNavigationUpKeyStroke.js +2 -2
- package/src/util/Device.js +4 -4
- package/src/util/arrays.js +20 -0
- package/src/widget/Widget.js +6 -4
- package/dist/eclipse-scout-core-c98fb5230e71dcec75ce.min.js +0 -2
- package/dist/eclipse-scout-core-c98fb5230e71dcec75ce.min.js.map +0 -1
- package/dist/eclipse-scout-core-theme-6b2fef56e9e49231a49c.min.css +0 -1
- package/dist/eclipse-scout-core-theme-dark-d2bb274dd42f132bfca0.min.css +0 -1
|
@@ -618,23 +618,41 @@ class ErrorHandler {
|
|
|
618
618
|
|
|
619
619
|
_onWindowError(errorMessage, fileName, lineNumber, columnNumber, error) {
|
|
620
620
|
try {
|
|
621
|
+
if (this._isIgnorableScriptError(errorMessage, fileName, lineNumber, columnNumber, error)) {
|
|
622
|
+
this.handleErrorInfo({
|
|
623
|
+
log: "Ignoring error. Message: ".concat(errorMessage),
|
|
624
|
+
level: _index__WEBPACK_IMPORTED_MODULE_0__.logging.Level.INFO
|
|
625
|
+
});
|
|
626
|
+
return;
|
|
627
|
+
}
|
|
628
|
+
|
|
621
629
|
if (error instanceof Error) {
|
|
622
630
|
this.handle(error).catch(error => {
|
|
623
631
|
console.error('Error in global JavaScript error handler', error);
|
|
624
632
|
});
|
|
625
|
-
|
|
626
|
-
let code = 'J00';
|
|
627
|
-
let log = errorMessage + ' at ' + fileName + ':' + lineNumber + '\n(' + 'Code ' + code + ')';
|
|
628
|
-
this.handleErrorInfo({
|
|
629
|
-
code: code,
|
|
630
|
-
message: errorMessage,
|
|
631
|
-
log: log
|
|
632
|
-
});
|
|
633
|
+
return;
|
|
633
634
|
}
|
|
635
|
+
|
|
636
|
+
let code = 'J00';
|
|
637
|
+
let log = errorMessage + ' at ' + fileName + ':' + lineNumber + '\n(' + 'Code ' + code + ')';
|
|
638
|
+
this.handleErrorInfo({
|
|
639
|
+
code: code,
|
|
640
|
+
message: errorMessage,
|
|
641
|
+
log: log
|
|
642
|
+
});
|
|
634
643
|
} catch (err) {
|
|
635
644
|
throw new Error('Error in global JavaScript error handler: ' + err.message + ' (original error: ' + errorMessage + ' at ' + fileName + ':' + lineNumber + ')');
|
|
636
645
|
}
|
|
637
646
|
}
|
|
647
|
+
|
|
648
|
+
_isIgnorableScriptError(message, fileName, lineNumber, columnNumber, error) {
|
|
649
|
+
// Ignore errors caused by scripts from a different origin.
|
|
650
|
+
// Example: Firefox on iOS throws an error, probably caused by an internal Firefox script.
|
|
651
|
+
// The error does not affect the application and cannot be prevented by the app either since we don't know what script it is and what it does.
|
|
652
|
+
// In that case the error must no be shown to the user, instead just log it silently.
|
|
653
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onerror
|
|
654
|
+
return message && message.toLowerCase().indexOf('script error') > -1 && !fileName && !lineNumber && !columnNumber && !error;
|
|
655
|
+
}
|
|
638
656
|
/**
|
|
639
657
|
* Handles unexpected JavaScript errors. The arguments are first analyzed and then handled.
|
|
640
658
|
*
|
|
@@ -859,23 +877,10 @@ class ErrorHandler {
|
|
|
859
877
|
|
|
860
878
|
|
|
861
879
|
handleErrorInfo(errorInfo) {
|
|
862
|
-
|
|
863
|
-
jquery__WEBPACK_IMPORTED_MODULE_1___default().log.error(errorInfo.log); // Note: when the null-logger is active it has already written the error to the console
|
|
864
|
-
// when the $.log.error function has been called above, so we don't have to log again here.
|
|
865
|
-
|
|
866
|
-
let writeToConsole = ErrorHandler.CONSOLE_OUTPUT;
|
|
880
|
+
errorInfo.level = _index__WEBPACK_IMPORTED_MODULE_0__.scout.nvl(errorInfo.level, _index__WEBPACK_IMPORTED_MODULE_0__.logging.Level.ERROR);
|
|
867
881
|
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
if (writeToConsole && window && window.console) {
|
|
873
|
-
if (window.console.error) {
|
|
874
|
-
window.console.error(errorInfo.log);
|
|
875
|
-
} else if (window.console.log) {
|
|
876
|
-
window.console.log(errorInfo.log);
|
|
877
|
-
}
|
|
878
|
-
}
|
|
882
|
+
if (this.logError && errorInfo.log) {
|
|
883
|
+
this._logErrorInfo(errorInfo);
|
|
879
884
|
} // Note: The error handler is installed globally and we cannot tell in which scout session the error happened.
|
|
880
885
|
// We simply use the first scout session to display the message box and log the error. This is not ideal in the
|
|
881
886
|
// multi-session-case (portlet), but currently there is no other way. Besides, this feature is not in use yet.
|
|
@@ -884,17 +889,58 @@ class ErrorHandler {
|
|
|
884
889
|
if (_index__WEBPACK_IMPORTED_MODULE_0__.App.get().sessions.length > 0) {
|
|
885
890
|
let session = _index__WEBPACK_IMPORTED_MODULE_0__.App.get().sessions[0];
|
|
886
891
|
|
|
887
|
-
if (this.displayError) {
|
|
892
|
+
if (this.displayError && errorInfo.level === _index__WEBPACK_IMPORTED_MODULE_0__.logging.Level.ERROR) {
|
|
888
893
|
this._showMessageBox(session, errorInfo.message, errorInfo.code, errorInfo.log);
|
|
889
894
|
}
|
|
890
895
|
|
|
891
896
|
if (this.sendError) {
|
|
892
|
-
this._sendErrorMessage(session, errorInfo.log);
|
|
897
|
+
this._sendErrorMessage(session, errorInfo.log, errorInfo.level);
|
|
893
898
|
}
|
|
894
899
|
}
|
|
895
900
|
|
|
896
901
|
return errorInfo;
|
|
897
902
|
}
|
|
903
|
+
|
|
904
|
+
_logErrorInfo(errorInfo) {
|
|
905
|
+
switch (errorInfo.level) {
|
|
906
|
+
case _index__WEBPACK_IMPORTED_MODULE_0__.logging.Level.TRACE:
|
|
907
|
+
jquery__WEBPACK_IMPORTED_MODULE_1___default().log.trace(errorInfo.log);
|
|
908
|
+
break;
|
|
909
|
+
|
|
910
|
+
case _index__WEBPACK_IMPORTED_MODULE_0__.logging.Level.DEBUG:
|
|
911
|
+
jquery__WEBPACK_IMPORTED_MODULE_1___default().log.debug(errorInfo.log);
|
|
912
|
+
break;
|
|
913
|
+
|
|
914
|
+
case _index__WEBPACK_IMPORTED_MODULE_0__.logging.Level.INFO:
|
|
915
|
+
jquery__WEBPACK_IMPORTED_MODULE_1___default().log.info(errorInfo.log);
|
|
916
|
+
break;
|
|
917
|
+
|
|
918
|
+
case _index__WEBPACK_IMPORTED_MODULE_0__.logging.Level.WARN:
|
|
919
|
+
jquery__WEBPACK_IMPORTED_MODULE_1___default().log.warn(errorInfo.log);
|
|
920
|
+
break;
|
|
921
|
+
|
|
922
|
+
default:
|
|
923
|
+
jquery__WEBPACK_IMPORTED_MODULE_1___default().log.error(errorInfo.log);
|
|
924
|
+
} // Note: when the null-logger is active it has already written the error to the console
|
|
925
|
+
// when the $.log.error function has been called above, so we don't have to log again here.
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
let writeToConsole = ErrorHandler.CONSOLE_OUTPUT;
|
|
929
|
+
|
|
930
|
+
if ((jquery__WEBPACK_IMPORTED_MODULE_1___default().log) instanceof _index__WEBPACK_IMPORTED_MODULE_0__.NullLogger) {
|
|
931
|
+
writeToConsole = false;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
if (writeToConsole && window && window.console) {
|
|
935
|
+
if (errorInfo.level === _index__WEBPACK_IMPORTED_MODULE_0__.logging.Level.ERROR && window.console.error) {
|
|
936
|
+
window.console.error(errorInfo.log);
|
|
937
|
+
} else if (errorInfo.level === _index__WEBPACK_IMPORTED_MODULE_0__.logging.Level.WARN && window.console.warn) {
|
|
938
|
+
window.console.warn(errorInfo.log);
|
|
939
|
+
} else if (window.console.log) {
|
|
940
|
+
window.console.log(errorInfo.log);
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
}
|
|
898
944
|
/**
|
|
899
945
|
* Generate a "cool looking" error code from the JS error object, that
|
|
900
946
|
* does not reveal too much technical information, but at least indicates
|
|
@@ -954,8 +1000,8 @@ class ErrorHandler {
|
|
|
954
1000
|
session.showFatalMessage(options, errorCode);
|
|
955
1001
|
}
|
|
956
1002
|
|
|
957
|
-
_sendErrorMessage(session, logMessage) {
|
|
958
|
-
session.sendLogRequest(logMessage);
|
|
1003
|
+
_sendErrorMessage(session, logMessage, logLevel) {
|
|
1004
|
+
session.sendLogRequest(logMessage, logLevel);
|
|
959
1005
|
}
|
|
960
1006
|
|
|
961
1007
|
}
|
|
@@ -2412,6 +2458,44 @@ class ActionAdapter extends _index__WEBPACK_IMPORTED_MODULE_0__.ModelAdapter {
|
|
|
2412
2458
|
|
|
2413
2459
|
/***/ }),
|
|
2414
2460
|
|
|
2461
|
+
/***/ "./src/action/ActionExecKeyStroke.js":
|
|
2462
|
+
/*!*******************************************!*\
|
|
2463
|
+
!*** ./src/action/ActionExecKeyStroke.js ***!
|
|
2464
|
+
\*******************************************/
|
|
2465
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2466
|
+
|
|
2467
|
+
__webpack_require__.r(__webpack_exports__);
|
|
2468
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2469
|
+
/* harmony export */ "default": () => (/* binding */ ActionExecKeyStroke)
|
|
2470
|
+
/* harmony export */ });
|
|
2471
|
+
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../index */ "./src/index.js");
|
|
2472
|
+
/*
|
|
2473
|
+
* Copyright (c) 2014-2017 BSI Business Systems Integration AG.
|
|
2474
|
+
* All rights reserved. This program and the accompanying materials
|
|
2475
|
+
* are made available under the terms of the Eclipse Public License v1.0
|
|
2476
|
+
* which accompanies this distribution, and is available at
|
|
2477
|
+
* http://www.eclipse.org/legal/epl-v10.html
|
|
2478
|
+
*
|
|
2479
|
+
* Contributors:
|
|
2480
|
+
* BSI Business Systems Integration AG - initial API and implementation
|
|
2481
|
+
*/
|
|
2482
|
+
|
|
2483
|
+
class ActionExecKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke {
|
|
2484
|
+
constructor(menu) {
|
|
2485
|
+
super();
|
|
2486
|
+
this.field = menu;
|
|
2487
|
+
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.SPACE, _index__WEBPACK_IMPORTED_MODULE_0__.keys.ENTER];
|
|
2488
|
+
this.stopPropagation = true;
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2491
|
+
handle(event) {
|
|
2492
|
+
this.field.doAction();
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
/***/ }),
|
|
2498
|
+
|
|
2415
2499
|
/***/ "./src/action/ActionKeyStroke.js":
|
|
2416
2500
|
/*!***************************************!*\
|
|
2417
2501
|
!*** ./src/action/ActionKeyStroke.js ***!
|
|
@@ -8335,6 +8419,16 @@ class DatePickerTouchPopup extends _index__WEBPACK_IMPORTED_MODULE_0__.TouchPopu
|
|
|
8335
8419
|
|
|
8336
8420
|
this._touchField._triggerAcceptInput();
|
|
8337
8421
|
}
|
|
8422
|
+
/**
|
|
8423
|
+
* @override
|
|
8424
|
+
*/
|
|
8425
|
+
|
|
8426
|
+
|
|
8427
|
+
_acceptInput() {
|
|
8428
|
+
this._field.acceptDate();
|
|
8429
|
+
|
|
8430
|
+
this.close();
|
|
8431
|
+
}
|
|
8338
8432
|
|
|
8339
8433
|
}
|
|
8340
8434
|
|
|
@@ -10974,6 +11068,7 @@ class DisableBrowserF5ReloadKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0_
|
|
|
10974
11068
|
this.keyStrokeFirePolicy = _index__WEBPACK_IMPORTED_MODULE_0__.Action.KeyStrokeFirePolicy.ALWAYS; // ignore glass panes
|
|
10975
11069
|
|
|
10976
11070
|
this.renderingHints.render = false;
|
|
11071
|
+
this.inheritAccessibility = false;
|
|
10977
11072
|
}
|
|
10978
11073
|
/**
|
|
10979
11074
|
* @override KeyStroke.js
|
|
@@ -12573,6 +12668,8 @@ class DesktopTabSelectKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Rang
|
|
|
12573
12668
|
let viewIndex = event.which - _index__WEBPACK_IMPORTED_MODULE_0__.keys[1];
|
|
12574
12669
|
return this._viewTabs()[viewIndex].$container;
|
|
12575
12670
|
};
|
|
12671
|
+
|
|
12672
|
+
this.inheritAccessibility = false;
|
|
12576
12673
|
}
|
|
12577
12674
|
/**
|
|
12578
12675
|
* @override KeyStroke.js
|
|
@@ -12948,6 +13045,7 @@ class DisableBrowserTabSwitchingKeyStroke extends _index__WEBPACK_IMPORTED_MODUL
|
|
|
12948
13045
|
|
|
12949
13046
|
this.renderingHints.render = false;
|
|
12950
13047
|
this.preventDefault = true;
|
|
13048
|
+
this.inheritAccessibility = false;
|
|
12951
13049
|
}
|
|
12952
13050
|
/**
|
|
12953
13051
|
* @override KeyStroke.js
|
|
@@ -14123,6 +14221,8 @@ class EnlargeNavigationKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Key
|
|
|
14123
14221
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.forBrowser(_index__WEBPACK_IMPORTED_MODULE_0__.keys.ANGULAR_BRACKET)];
|
|
14124
14222
|
|
|
14125
14223
|
this.renderingHints.$drawingArea = ($drawingArea, event) => this.desktop.$container;
|
|
14224
|
+
|
|
14225
|
+
this.inheritAccessibility = false;
|
|
14126
14226
|
}
|
|
14127
14227
|
|
|
14128
14228
|
_accept(event) {
|
|
@@ -14188,6 +14288,8 @@ class ShrinkNavigationKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyS
|
|
|
14188
14288
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.forBrowser(_index__WEBPACK_IMPORTED_MODULE_0__.keys.ANGULAR_BRACKET)];
|
|
14189
14289
|
|
|
14190
14290
|
this.renderingHints.$drawingArea = ($drawingArea, event) => this.desktop.$container;
|
|
14291
|
+
|
|
14292
|
+
this.inheritAccessibility = false;
|
|
14191
14293
|
}
|
|
14192
14294
|
|
|
14193
14295
|
_accept(event) {
|
|
@@ -20152,6 +20254,8 @@ class ViewMenuPopupEnterKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Ke
|
|
|
20152
20254
|
return tile.$container;
|
|
20153
20255
|
}
|
|
20154
20256
|
};
|
|
20257
|
+
|
|
20258
|
+
this.inheritAccessibility = false;
|
|
20155
20259
|
}
|
|
20156
20260
|
|
|
20157
20261
|
accept(event) {
|
|
@@ -20732,7 +20836,7 @@ class FileChooser extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
20732
20836
|
this.$container.addClass('calc-helper');
|
|
20733
20837
|
let windowSize = this.$container.windowSize(); // Use css width, but ensure that it is not larger than the window (mobile)
|
|
20734
20838
|
|
|
20735
|
-
let w = Math.min(this.$container.width(), windowSize.width
|
|
20839
|
+
let w = Math.min(this.$container.width(), windowSize.width);
|
|
20736
20840
|
this.$container.css('min-width', w);
|
|
20737
20841
|
this.$container.css('max-width', w);
|
|
20738
20842
|
this.$container.removeClass('calc-helper'); // Render modality glass-panes
|
|
@@ -21638,7 +21742,7 @@ class FocusContext {
|
|
|
21638
21742
|
let $target = jquery__WEBPACK_IMPORTED_MODULE_1___default()(event.target);
|
|
21639
21743
|
$target.on('remove', this._removeListener);
|
|
21640
21744
|
this.focusedElement = event.target; // Do not update current focus context nor validate focus if target is $entryPoint.
|
|
21641
|
-
// That is because focusing the $entryPoint is done whenever no control is currently focusable, e.g. due to
|
|
21745
|
+
// That is because focusing the $entryPoint is done whenever no control is currently focusable, e.g. due to glass panes.
|
|
21642
21746
|
|
|
21643
21747
|
if (event.target === this.$container.entryPoint(true)) {
|
|
21644
21748
|
return;
|
|
@@ -21687,12 +21791,12 @@ class FocusContext {
|
|
|
21687
21791
|
/**
|
|
21688
21792
|
* Focuses the given element if being a child of this context's container and matches the given filter (if provided).
|
|
21689
21793
|
*
|
|
21690
|
-
* @param element
|
|
21691
|
-
* the element to
|
|
21692
|
-
* @param filter
|
|
21693
|
-
* filter
|
|
21794
|
+
* @param {HTMLElement|$} [element]
|
|
21795
|
+
* the element to focus, or null to focus the context's first focusable element matching the given filter.
|
|
21796
|
+
* @param {function} [filter]
|
|
21797
|
+
* filter that controls which element should be focused, or null to accept all focusable candidates.
|
|
21694
21798
|
* @param {object} [options]
|
|
21695
|
-
* @param {boolean} [options.preventScroll]
|
|
21799
|
+
* @param {boolean} [options.preventScroll] prevents scrolling to new focused element (defaults to false)
|
|
21696
21800
|
*/
|
|
21697
21801
|
|
|
21698
21802
|
|
|
@@ -21737,8 +21841,11 @@ class FocusContext {
|
|
|
21737
21841
|
}
|
|
21738
21842
|
/**
|
|
21739
21843
|
* Focuses the requested element.
|
|
21844
|
+
*
|
|
21845
|
+
* @param {HTMLElement} element
|
|
21846
|
+
* the element to focus, or null to focus the context's first focusable element matching the given filter.
|
|
21740
21847
|
* @param {object} [options]
|
|
21741
|
-
* @param {boolean} [options.preventScroll]
|
|
21848
|
+
* @param {boolean} [options.preventScroll] prevents scrolling to new focused element (defaults to false)
|
|
21742
21849
|
*/
|
|
21743
21850
|
|
|
21744
21851
|
|
|
@@ -21764,7 +21871,7 @@ class FocusContext {
|
|
|
21764
21871
|
}
|
|
21765
21872
|
|
|
21766
21873
|
elementToFocus = null;
|
|
21767
|
-
} // Focus $entryPoint if current focus is to be
|
|
21874
|
+
} // Focus $entryPoint if current focus is to be blurred.
|
|
21768
21875
|
// Otherwise, the HTML body would be focused which makes global keystrokes (like backspace) not to work anymore.
|
|
21769
21876
|
|
|
21770
21877
|
|
|
@@ -21833,7 +21940,8 @@ class FocusManager {
|
|
|
21833
21940
|
// Auto focusing of elements is bad with on screen keyboards -> deactivate to prevent unwanted popping up of the keyboard
|
|
21834
21941
|
active: !_index__WEBPACK_IMPORTED_MODULE_0__.Device.get().supportsOnlyTouch(),
|
|
21835
21942
|
// Preventing blur is bad on touch devices because every touch on a non input field is supposed to close the keyboard which does not happen if preventDefault is used on mouse down
|
|
21836
|
-
restrictedFocusGain: !_index__WEBPACK_IMPORTED_MODULE_0__.Device.get().supportsOnlyTouch()
|
|
21943
|
+
restrictedFocusGain: !_index__WEBPACK_IMPORTED_MODULE_0__.Device.get().supportsOnlyTouch(),
|
|
21944
|
+
session: null
|
|
21837
21945
|
};
|
|
21838
21946
|
jquery__WEBPACK_IMPORTED_MODULE_1___default().extend(this, defaults, options);
|
|
21839
21947
|
|
|
@@ -22083,16 +22191,35 @@ class FocusManager {
|
|
|
22083
22191
|
}
|
|
22084
22192
|
|
|
22085
22193
|
requestFocusIfReady(element, filter) {
|
|
22086
|
-
return this.requestFocus(element, filter,
|
|
22194
|
+
return this.requestFocus(element, filter, {
|
|
22195
|
+
onlyIfReady: true
|
|
22196
|
+
});
|
|
22087
22197
|
}
|
|
22088
22198
|
/**
|
|
22089
22199
|
* Requests the focus for the given element, but only if being a valid focus location.
|
|
22090
22200
|
*
|
|
22201
|
+
* @param {HTMLElement|$} [element]
|
|
22202
|
+
* the element to focus, or null to focus the context's first focusable element matching the given filter.
|
|
22203
|
+
* @param {function} [filter]
|
|
22204
|
+
* filter that controls which element should be focused, or null to accept all focusable candidates.
|
|
22205
|
+
* @param {object|boolean} [options]
|
|
22206
|
+
* Use object, boolean is deprecated
|
|
22207
|
+
* @param {boolean} [options.preventScroll] prevents scrolling to new focused element (defaults to false)
|
|
22208
|
+
* @param {boolean} [options.onlyIfReady] prevents focusing if not ready
|
|
22091
22209
|
* @return {boolean} true if focus was gained, false otherwise.
|
|
22092
22210
|
*/
|
|
22093
22211
|
|
|
22094
22212
|
|
|
22095
|
-
requestFocus(element, filter,
|
|
22213
|
+
requestFocus(element, filter, options) {
|
|
22214
|
+
// backward compatibility
|
|
22215
|
+
if (typeof options === 'boolean') {
|
|
22216
|
+
options = {
|
|
22217
|
+
onlyIfReady: options
|
|
22218
|
+
};
|
|
22219
|
+
} else {
|
|
22220
|
+
options = options || {};
|
|
22221
|
+
}
|
|
22222
|
+
|
|
22096
22223
|
element = element instanceof (jquery__WEBPACK_IMPORTED_MODULE_1___default()) ? element[0] : element;
|
|
22097
22224
|
|
|
22098
22225
|
if (!element) {
|
|
@@ -22102,11 +22229,11 @@ class FocusManager {
|
|
|
22102
22229
|
let context = this._findFocusContextFor(element);
|
|
22103
22230
|
|
|
22104
22231
|
if (context) {
|
|
22105
|
-
if (onlyIfReady && !context.prepared) {
|
|
22232
|
+
if (_index__WEBPACK_IMPORTED_MODULE_0__.scout.nvl(options.onlyIfReady, false) && !context.prepared) {
|
|
22106
22233
|
return false;
|
|
22107
22234
|
}
|
|
22108
22235
|
|
|
22109
|
-
context.validateAndSetFocus(element, filter);
|
|
22236
|
+
context.validateAndSetFocus(element, filter, options);
|
|
22110
22237
|
}
|
|
22111
22238
|
|
|
22112
22239
|
return _index__WEBPACK_IMPORTED_MODULE_0__.focusUtils.isActiveElement(element);
|
|
@@ -28918,7 +29045,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
|
|
|
28918
29045
|
* All rights reserved. This program and the accompanying materials
|
|
28919
29046
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
28920
29047
|
* which accompanies this distribution, and is available at
|
|
28921
|
-
*
|
|
29048
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
28922
29049
|
*
|
|
28923
29050
|
* Contributors:
|
|
28924
29051
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -28981,6 +29108,8 @@ class LookupBox extends _index__WEBPACK_IMPORTED_MODULE_0__.ValueField {
|
|
|
28981
29108
|
this.$field.addClass('structure');
|
|
28982
29109
|
|
|
28983
29110
|
this._renderFilterBox();
|
|
29111
|
+
|
|
29112
|
+
this.$container.css('--inactive-lookup-row-suffix-text', "'".concat(this.session.text('InactiveState'), "'"));
|
|
28984
29113
|
}
|
|
28985
29114
|
|
|
28986
29115
|
_renderFilterBox() {
|
|
@@ -29460,6 +29589,7 @@ class ValueField extends _index__WEBPACK_IMPORTED_MODULE_0__.FormField {
|
|
|
29460
29589
|
this.value = null;
|
|
29461
29590
|
this.validators = [];
|
|
29462
29591
|
this.validators.push(this._validateValue.bind(this));
|
|
29592
|
+
this._updateDisplayTextPending = false;
|
|
29463
29593
|
this.$clearIcon = null;
|
|
29464
29594
|
|
|
29465
29595
|
this._addCloneProperties(['value', 'displayText', 'clearable']);
|
|
@@ -30004,14 +30134,22 @@ class ValueField extends _index__WEBPACK_IMPORTED_MODULE_0__.FormField {
|
|
|
30004
30134
|
value = _index__WEBPACK_IMPORTED_MODULE_0__.scout.nvl(value, this.value);
|
|
30005
30135
|
let returned = this.formatValue(value);
|
|
30006
30136
|
|
|
30007
|
-
if (
|
|
30008
|
-
// Promise is returned -> set display text later
|
|
30137
|
+
if (_index__WEBPACK_IMPORTED_MODULE_0__.objects.isPromise(returned)) {
|
|
30138
|
+
this._updateDisplayTextPending = true; // Promise is returned -> set display text later
|
|
30139
|
+
|
|
30009
30140
|
returned.done(this.setDisplayText.bind(this)).fail(() => {
|
|
30010
|
-
|
|
30141
|
+
// If display text was updated in the meantime, don't override the text with an empty string
|
|
30142
|
+
if (this._updateDisplayTextPending) {
|
|
30143
|
+
this.setDisplayText('');
|
|
30144
|
+
}
|
|
30145
|
+
|
|
30011
30146
|
jquery__WEBPACK_IMPORTED_MODULE_1___default().log.isInfoEnabled() && jquery__WEBPACK_IMPORTED_MODULE_1___default().log.info('Could not resolve display text for value: ' + value);
|
|
30147
|
+
}).always(() => {
|
|
30148
|
+
this._updateDisplayTextPending = false;
|
|
30012
30149
|
});
|
|
30013
30150
|
} else {
|
|
30014
30151
|
this.setDisplayText(returned);
|
|
30152
|
+
this._updateDisplayTextPending = false;
|
|
30015
30153
|
}
|
|
30016
30154
|
}
|
|
30017
30155
|
/**
|
|
@@ -31892,10 +32030,6 @@ class ButtonKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke {
|
|
|
31892
32030
|
this.stopPropagation = true;
|
|
31893
32031
|
this.stopImmediatePropagation = true;
|
|
31894
32032
|
this.renderingHints.hAlign = _index__WEBPACK_IMPORTED_MODULE_0__.HAlign.RIGHT;
|
|
31895
|
-
|
|
31896
|
-
this.renderingHints.$drawingArea = function ($drawingArea, event) {
|
|
31897
|
-
return this.field.$container;
|
|
31898
|
-
}.bind(this);
|
|
31899
32033
|
}
|
|
31900
32034
|
/**
|
|
31901
32035
|
* @override KeyStroke.js
|
|
@@ -33753,7 +33887,7 @@ class DateField extends _index__WEBPACK_IMPORTED_MODULE_0__.ValueField {
|
|
|
33753
33887
|
}
|
|
33754
33888
|
|
|
33755
33889
|
_renderDateClearable() {
|
|
33756
|
-
if (this.hasDate
|
|
33890
|
+
if (this.hasDate && this.isClearable()) {
|
|
33757
33891
|
if (!this.$dateClearIcon) {
|
|
33758
33892
|
// date clear icon
|
|
33759
33893
|
this.$dateClearIcon = this.$field.appendSpan('icon date-clear unfocusable text-field-icon action').on('mousedown', this._onDateClearIconMouseDown.bind(this));
|
|
@@ -33768,13 +33902,17 @@ class DateField extends _index__WEBPACK_IMPORTED_MODULE_0__.ValueField {
|
|
|
33768
33902
|
}
|
|
33769
33903
|
|
|
33770
33904
|
_renderTimeClearable() {
|
|
33771
|
-
if (this.hasTime && this.isClearable()
|
|
33772
|
-
|
|
33773
|
-
|
|
33774
|
-
|
|
33775
|
-
|
|
33776
|
-
|
|
33777
|
-
this.$timeClearIcon
|
|
33905
|
+
if (this.hasTime && this.isClearable()) {
|
|
33906
|
+
if (!this.$timeClearIcon) {
|
|
33907
|
+
// time clear icon
|
|
33908
|
+
this.$timeClearIcon = this.$field.appendSpan('icon time-clear unfocusable text-field-icon action').on('mousedown', this._onTimeClearIconMouseDown.bind(this));
|
|
33909
|
+
}
|
|
33910
|
+
} else {
|
|
33911
|
+
if (this.$timeClearIcon) {
|
|
33912
|
+
// Remove clear icon
|
|
33913
|
+
this.$timeClearIcon.remove();
|
|
33914
|
+
this.$timeClearIcon = null;
|
|
33915
|
+
}
|
|
33778
33916
|
}
|
|
33779
33917
|
}
|
|
33780
33918
|
|
|
@@ -34308,29 +34446,23 @@ class DateField extends _index__WEBPACK_IMPORTED_MODULE_0__.ValueField {
|
|
|
34308
34446
|
}
|
|
34309
34447
|
|
|
34310
34448
|
_onDatePickerDateSelect(event) {
|
|
34311
|
-
this.
|
|
34312
|
-
|
|
34313
|
-
this._setTimeValid(true);
|
|
34314
|
-
|
|
34315
|
-
let newValue = this._newTimestampAsDate(event.date, this.value);
|
|
34316
|
-
|
|
34317
|
-
this.setValue(newValue);
|
|
34318
|
-
this.closePopup();
|
|
34319
|
-
|
|
34320
|
-
this._triggerAcceptInput();
|
|
34449
|
+
this._setNewDateTimeValue(this._newTimestampAsDate(event.date, this.value));
|
|
34321
34450
|
}
|
|
34322
34451
|
|
|
34323
34452
|
_onTimePickerTimeSelect(event) {
|
|
34453
|
+
this._setNewDateTimeValue(this._newTimestampAsDate(this.value, event.time));
|
|
34454
|
+
}
|
|
34455
|
+
|
|
34456
|
+
_setNewDateTimeValue(newValue) {
|
|
34324
34457
|
this._setDateValid(true);
|
|
34325
34458
|
|
|
34326
34459
|
this._setTimeValid(true);
|
|
34327
34460
|
|
|
34328
|
-
let newValue = this._newTimestampAsDate(this.value, event.time);
|
|
34329
|
-
|
|
34330
34461
|
this.setValue(newValue);
|
|
34331
|
-
this.closePopup();
|
|
34332
34462
|
|
|
34333
34463
|
this._triggerAcceptInput();
|
|
34464
|
+
|
|
34465
|
+
this.closePopup();
|
|
34334
34466
|
}
|
|
34335
34467
|
|
|
34336
34468
|
_createPredictionField($inputField) {
|
|
@@ -34535,11 +34667,14 @@ class DateField extends _index__WEBPACK_IMPORTED_MODULE_0__.ValueField {
|
|
|
34535
34667
|
this.popup = this.createDatePopup();
|
|
34536
34668
|
this.popup.open();
|
|
34537
34669
|
this.$dateField.addClass('focused');
|
|
34538
|
-
this.popup.
|
|
34539
|
-
|
|
34670
|
+
this.popup.one('destroy', event => {
|
|
34671
|
+
// Removing the class must happen before _onPopupDestroy() is called, otherwise the date field no longer exists,
|
|
34672
|
+
// because in touch mode _onPopupDestroy() destroys the date field.
|
|
34673
|
+
this.$dateField.removeClass('focused');
|
|
34674
|
+
|
|
34675
|
+
this._onPopupDestroy(event);
|
|
34540
34676
|
|
|
34541
34677
|
this.popup = null;
|
|
34542
|
-
this.$dateField.removeClass('focused');
|
|
34543
34678
|
});
|
|
34544
34679
|
this.getDatePicker().on('dateSelect', this._onDatePickerDateSelect.bind(this));
|
|
34545
34680
|
}
|
|
@@ -34569,11 +34704,14 @@ class DateField extends _index__WEBPACK_IMPORTED_MODULE_0__.ValueField {
|
|
|
34569
34704
|
this.popup = this.createTimePopup();
|
|
34570
34705
|
this.popup.open();
|
|
34571
34706
|
this.$timeField.addClass('focused');
|
|
34572
|
-
this.popup.
|
|
34573
|
-
|
|
34707
|
+
this.popup.one('destroy', event => {
|
|
34708
|
+
// Removing the class must happen before _onPopupDestroy() is called, otherwise the date field no longer exists,
|
|
34709
|
+
// because in touch mode _onPopupDestroy() destroys the date field.
|
|
34710
|
+
this.$timeField.removeClass('focused');
|
|
34711
|
+
|
|
34712
|
+
this._onPopupDestroy(event);
|
|
34574
34713
|
|
|
34575
34714
|
this.popup = null;
|
|
34576
|
-
this.$timeField.removeClass('focused');
|
|
34577
34715
|
});
|
|
34578
34716
|
this.getTimePicker().on('timeSelect', this._onTimePickerTimeSelect.bind(this));
|
|
34579
34717
|
}
|
|
@@ -34871,7 +35009,7 @@ class DateField extends _index__WEBPACK_IMPORTED_MODULE_0__.ValueField {
|
|
|
34871
35009
|
}
|
|
34872
35010
|
}
|
|
34873
35011
|
|
|
34874
|
-
|
|
35012
|
+
_onPopupDestroy(event) {
|
|
34875
35013
|
if (!this.touchMode || !this._cellEditorPopup) {
|
|
34876
35014
|
return;
|
|
34877
35015
|
}
|
|
@@ -36188,9 +36326,7 @@ class FileChooserFieldBrowseKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0_
|
|
|
36188
36326
|
this.stopPropagation = true;
|
|
36189
36327
|
this.renderingHints.hAlign = _index__WEBPACK_IMPORTED_MODULE_0__.HAlign.LEFT;
|
|
36190
36328
|
|
|
36191
|
-
this.renderingHints.$drawingArea =
|
|
36192
|
-
return this.field.$fieldContainer;
|
|
36193
|
-
}.bind(this);
|
|
36329
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => this.field.$fieldContainer;
|
|
36194
36330
|
}
|
|
36195
36331
|
/**
|
|
36196
36332
|
* @override KeyStroke.js
|
|
@@ -36236,9 +36372,7 @@ class FileChooserFieldDeleteKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0_
|
|
|
36236
36372
|
this.renderingHints.offset = 25;
|
|
36237
36373
|
this.renderingHints.hAlign = _index__WEBPACK_IMPORTED_MODULE_0__.HAlign.RIGHT;
|
|
36238
36374
|
|
|
36239
|
-
this.renderingHints.$drawingArea =
|
|
36240
|
-
return this.field.$fieldContainer;
|
|
36241
|
-
}.bind(this);
|
|
36375
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => this.field.$fieldContainer;
|
|
36242
36376
|
}
|
|
36243
36377
|
/**
|
|
36244
36378
|
* @override KeyStroke.js
|
|
@@ -36312,6 +36446,7 @@ class GroupBox extends _index__WEBPACK_IMPORTED_MODULE_0__.CompositeField {
|
|
|
36312
36446
|
this.processButtons = [];
|
|
36313
36447
|
this.processMenus = [];
|
|
36314
36448
|
this.staticMenus = [];
|
|
36449
|
+
this.selectionKeystroke = null;
|
|
36315
36450
|
this.responsive = null;
|
|
36316
36451
|
this.$header = null;
|
|
36317
36452
|
this.$body = null;
|
|
@@ -38541,7 +38676,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
38541
38676
|
* All rights reserved. This program and the accompanying materials
|
|
38542
38677
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
38543
38678
|
* which accompanies this distribution, and is available at
|
|
38544
|
-
*
|
|
38679
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
38545
38680
|
*
|
|
38546
38681
|
* Contributors:
|
|
38547
38682
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -38722,14 +38857,15 @@ class ListBox extends _index__WEBPACK_IMPORTED_MODULE_0__.LookupBox {
|
|
|
38722
38857
|
row.enabled = false;
|
|
38723
38858
|
}
|
|
38724
38859
|
|
|
38725
|
-
if (lookupRow.active === false) {
|
|
38726
|
-
row.active = false;
|
|
38727
|
-
}
|
|
38728
|
-
|
|
38729
38860
|
if (lookupRow.cssClass) {
|
|
38730
38861
|
row.cssClass = lookupRow.cssClass;
|
|
38731
38862
|
}
|
|
38732
38863
|
|
|
38864
|
+
if (lookupRow.active === false) {
|
|
38865
|
+
row.active = false;
|
|
38866
|
+
row.cssClass = (row.cssClass ? row.cssClass + ' ' : '') + 'inactive';
|
|
38867
|
+
}
|
|
38868
|
+
|
|
38733
38869
|
return row;
|
|
38734
38870
|
}
|
|
38735
38871
|
|
|
@@ -38889,11 +39025,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
38889
39025
|
/* harmony export */ });
|
|
38890
39026
|
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../index */ "./src/index.js");
|
|
38891
39027
|
/*
|
|
38892
|
-
* Copyright (c)
|
|
39028
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
38893
39029
|
* All rights reserved. This program and the accompanying materials
|
|
38894
39030
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
38895
39031
|
* which accompanies this distribution, and is available at
|
|
38896
|
-
*
|
|
39032
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
38897
39033
|
*
|
|
38898
39034
|
* Contributors:
|
|
38899
39035
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -38917,14 +39053,15 @@ function createTableRow(lookupRow, multipleColumns) {
|
|
|
38917
39053
|
row.enabled = false;
|
|
38918
39054
|
}
|
|
38919
39055
|
|
|
38920
|
-
if (lookupRow.active === false) {
|
|
38921
|
-
row.active = false;
|
|
38922
|
-
}
|
|
38923
|
-
|
|
38924
39056
|
if (lookupRow.cssClass) {
|
|
38925
39057
|
row.cssClass = lookupRow.cssClass;
|
|
38926
39058
|
}
|
|
38927
39059
|
|
|
39060
|
+
if (lookupRow.active === false) {
|
|
39061
|
+
row.active = false;
|
|
39062
|
+
row.cssClass = (row.cssClass ? row.cssClass + ' ' : '') + 'inactive';
|
|
39063
|
+
}
|
|
39064
|
+
|
|
38928
39065
|
if (!multipleColumns) {
|
|
38929
39066
|
cells.push(createTableCell(lookupRow, null, null));
|
|
38930
39067
|
}
|
|
@@ -42148,11 +42285,13 @@ class ProposalField extends _index__WEBPACK_IMPORTED_MODULE_0__.SmartField {
|
|
|
42148
42285
|
|
|
42149
42286
|
|
|
42150
42287
|
if (searchTextChanged) {
|
|
42288
|
+
this.clearErrorStatus();
|
|
42289
|
+
|
|
42151
42290
|
this._acceptByText(sync, searchText);
|
|
42152
42291
|
} else if (!this._hasUiError()) {
|
|
42153
42292
|
this._inputAccepted(false);
|
|
42154
42293
|
} else {
|
|
42155
|
-
// even though there's nothing
|
|
42294
|
+
// even though there's nothing to do, someone could wait for our promise to be resolved
|
|
42156
42295
|
this._acceptInputDeferred.resolve();
|
|
42157
42296
|
}
|
|
42158
42297
|
|
|
@@ -42222,11 +42361,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42222
42361
|
/* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! jquery */ "jquery");
|
|
42223
42362
|
/* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(jquery__WEBPACK_IMPORTED_MODULE_1__);
|
|
42224
42363
|
/*
|
|
42225
|
-
* Copyright (c)
|
|
42364
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
42226
42365
|
* All rights reserved. This program and the accompanying materials
|
|
42227
42366
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
42228
42367
|
* which accompanies this distribution, and is available at
|
|
42229
|
-
*
|
|
42368
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
42230
42369
|
*
|
|
42231
42370
|
* Contributors:
|
|
42232
42371
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -42243,16 +42382,10 @@ class ProposalTreeNode extends _index__WEBPACK_IMPORTED_MODULE_0__.TreeNode {
|
|
|
42243
42382
|
}
|
|
42244
42383
|
|
|
42245
42384
|
_renderText() {
|
|
42246
|
-
let text = this.text;
|
|
42247
|
-
|
|
42248
|
-
if (this.lookupRow.active === false) {
|
|
42249
|
-
text += ' (' + this.session.text('InactiveState') + ')';
|
|
42250
|
-
}
|
|
42251
|
-
|
|
42252
42385
|
if (this.htmlEnabled) {
|
|
42253
|
-
this.$text.html(text);
|
|
42386
|
+
this.$text.html(this.text);
|
|
42254
42387
|
} else {
|
|
42255
|
-
this.$text.textOrNbsp(text);
|
|
42388
|
+
this.$text.textOrNbsp(this.text);
|
|
42256
42389
|
}
|
|
42257
42390
|
}
|
|
42258
42391
|
|
|
@@ -42313,11 +42446,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
42313
42446
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
42314
42447
|
|
|
42315
42448
|
/*
|
|
42316
|
-
* Copyright (c) 2010-
|
|
42449
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
42317
42450
|
* All rights reserved. This program and the accompanying materials
|
|
42318
42451
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
42319
42452
|
* which accompanies this distribution, and is available at
|
|
42320
|
-
*
|
|
42453
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
42321
42454
|
*
|
|
42322
42455
|
* Contributors:
|
|
42323
42456
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -43274,6 +43407,7 @@ class SmartField extends _index__WEBPACK_IMPORTED_MODULE_0__.ValueField {
|
|
|
43274
43407
|
status: status
|
|
43275
43408
|
});
|
|
43276
43409
|
this.popup.open();
|
|
43410
|
+
this.popup.$container.css('--inactive-lookup-row-suffix-text', "'".concat(this.session.text('InactiveState'), "'"));
|
|
43277
43411
|
/* This variable is required to route events to the right field:
|
|
43278
43412
|
* - in normal mode popup events should be processed by the normal smart-field
|
|
43279
43413
|
* - in touch mode, the field flagged with the 'touch' property should process no
|
|
@@ -46452,6 +46586,7 @@ class SplitBoxCollapseKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyS
|
|
|
46452
46586
|
super();
|
|
46453
46587
|
this.field = splitBox;
|
|
46454
46588
|
this.parseAndSetKeyStroke(keyStroke);
|
|
46589
|
+
this.inheritAccessibility = false;
|
|
46455
46590
|
}
|
|
46456
46591
|
|
|
46457
46592
|
handle(event) {
|
|
@@ -46497,6 +46632,7 @@ class SplitBoxFirstCollapseKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__
|
|
|
46497
46632
|
super();
|
|
46498
46633
|
this.field = splitBox;
|
|
46499
46634
|
this.parseAndSetKeyStroke(keyStroke);
|
|
46635
|
+
this.inheritAccessibility = false;
|
|
46500
46636
|
}
|
|
46501
46637
|
|
|
46502
46638
|
handle(event) {
|
|
@@ -46774,6 +46910,7 @@ class SplitBoxSecondCollapseKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0_
|
|
|
46774
46910
|
super();
|
|
46775
46911
|
this.field = splitBox;
|
|
46776
46912
|
this.parseAndSetKeyStroke(keyStroke);
|
|
46913
|
+
this.inheritAccessibility = false;
|
|
46777
46914
|
}
|
|
46778
46915
|
|
|
46779
46916
|
handle(event) {
|
|
@@ -48523,6 +48660,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
48523
48660
|
*/
|
|
48524
48661
|
|
|
48525
48662
|
class TabAreaLeftKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke {
|
|
48663
|
+
// noinspection DuplicatedCode
|
|
48526
48664
|
constructor(tabArea) {
|
|
48527
48665
|
super();
|
|
48528
48666
|
this.field = tabArea;
|
|
@@ -48530,6 +48668,7 @@ class TabAreaLeftKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke
|
|
|
48530
48668
|
this.renderingHints.render = false;
|
|
48531
48669
|
this.stopPropagation = true;
|
|
48532
48670
|
this.keyStrokeMode = _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke.Mode.DOWN;
|
|
48671
|
+
this.inheritAccessibility = false;
|
|
48533
48672
|
}
|
|
48534
48673
|
|
|
48535
48674
|
handle(event) {
|
|
@@ -48564,6 +48703,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
48564
48703
|
*/
|
|
48565
48704
|
|
|
48566
48705
|
class TabAreaRightKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke {
|
|
48706
|
+
// noinspection DuplicatedCode
|
|
48567
48707
|
constructor(tabArea) {
|
|
48568
48708
|
super();
|
|
48569
48709
|
this.field = tabArea;
|
|
@@ -48571,6 +48711,7 @@ class TabAreaRightKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStrok
|
|
|
48571
48711
|
this.renderingHints.render = false;
|
|
48572
48712
|
this.stopPropagation = true;
|
|
48573
48713
|
this.keyStrokeMode = _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke.Mode.DOWN;
|
|
48714
|
+
this.inheritAccessibility = false;
|
|
48574
48715
|
}
|
|
48575
48716
|
|
|
48576
48717
|
handle(event) {
|
|
@@ -48916,6 +49057,10 @@ class TabBox extends _index__WEBPACK_IMPORTED_MODULE_0__.CompositeField {
|
|
|
48916
49057
|
this.header.focusTabItem(tabItem);
|
|
48917
49058
|
}
|
|
48918
49059
|
|
|
49060
|
+
getTabForItem(tabItem) {
|
|
49061
|
+
return this.header.getTabForItem(tabItem);
|
|
49062
|
+
}
|
|
49063
|
+
|
|
48919
49064
|
_onTabBoxHeaderPropertyChange(event) {
|
|
48920
49065
|
if (event.propertyName === 'selectedTabItem') {
|
|
48921
49066
|
this.setSelectedTab(event.newValue);
|
|
@@ -49068,6 +49213,10 @@ class TabBoxHeader extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
49068
49213
|
this.tabArea.focusTabItem(tabItem);
|
|
49069
49214
|
}
|
|
49070
49215
|
|
|
49216
|
+
getTabForItem(tabItem) {
|
|
49217
|
+
return this.tabArea.getTabForItem(tabItem);
|
|
49218
|
+
}
|
|
49219
|
+
|
|
49071
49220
|
_onTabBoxPropertyChange(event) {
|
|
49072
49221
|
if (event.propertyName === 'menus') {
|
|
49073
49222
|
this.menuBar.setMenuItems(this.tabBox.menus);
|
|
@@ -49456,6 +49605,10 @@ class TabItem extends _index__WEBPACK_IMPORTED_MODULE_0__.GroupBox {
|
|
|
49456
49605
|
}
|
|
49457
49606
|
}
|
|
49458
49607
|
|
|
49608
|
+
getTab() {
|
|
49609
|
+
return this.parent.getTabForItem(this);
|
|
49610
|
+
}
|
|
49611
|
+
|
|
49459
49612
|
}
|
|
49460
49613
|
|
|
49461
49614
|
/***/ }),
|
|
@@ -51014,11 +51167,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51014
51167
|
/* harmony export */ });
|
|
51015
51168
|
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../index */ "./src/index.js");
|
|
51016
51169
|
/*
|
|
51017
|
-
* Copyright (c)
|
|
51170
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
51018
51171
|
* All rights reserved. This program and the accompanying materials
|
|
51019
51172
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
51020
51173
|
* which accompanies this distribution, and is available at
|
|
51021
|
-
*
|
|
51174
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
51022
51175
|
*
|
|
51023
51176
|
* Contributors:
|
|
51024
51177
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -51223,14 +51376,15 @@ class TreeBox extends _index__WEBPACK_IMPORTED_MODULE_0__.LookupBox {
|
|
|
51223
51376
|
node.enabled = false;
|
|
51224
51377
|
}
|
|
51225
51378
|
|
|
51226
|
-
if (lookupRow.active === false) {
|
|
51227
|
-
node.active = false;
|
|
51228
|
-
}
|
|
51229
|
-
|
|
51230
51379
|
if (lookupRow.cssClass) {
|
|
51231
51380
|
node.cssClass = lookupRow.cssClass;
|
|
51232
51381
|
}
|
|
51233
51382
|
|
|
51383
|
+
if (lookupRow.active === false) {
|
|
51384
|
+
node.active = false;
|
|
51385
|
+
node.cssClass = (node.cssClass ? node.cssClass + ' ' : '') + 'inactive';
|
|
51386
|
+
}
|
|
51387
|
+
|
|
51234
51388
|
return node;
|
|
51235
51389
|
}
|
|
51236
51390
|
|
|
@@ -54265,134 +54419,134 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
54265
54419
|
/* harmony export */ "WidgetTooltip": () => (/* reexport safe */ _tooltip_WidgetTooltip__WEBPACK_IMPORTED_MODULE_170__["default"]),
|
|
54266
54420
|
/* harmony export */ "Action": () => (/* reexport safe */ _action_Action__WEBPACK_IMPORTED_MODULE_171__["default"]),
|
|
54267
54421
|
/* harmony export */ "ActionAdapter": () => (/* reexport safe */ _action_ActionAdapter__WEBPACK_IMPORTED_MODULE_172__["default"]),
|
|
54268
|
-
/* harmony export */ "
|
|
54269
|
-
/* harmony export */ "
|
|
54270
|
-
/* harmony export */ "
|
|
54271
|
-
/* harmony export */ "
|
|
54272
|
-
/* harmony export */ "
|
|
54273
|
-
/* harmony export */ "
|
|
54274
|
-
/* harmony export */ "
|
|
54275
|
-
/* harmony export */ "
|
|
54276
|
-
/* harmony export */ "
|
|
54277
|
-
/* harmony export */ "
|
|
54278
|
-
/* harmony export */ "
|
|
54279
|
-
/* harmony export */ "
|
|
54280
|
-
/* harmony export */ "
|
|
54281
|
-
/* harmony export */ "
|
|
54282
|
-
/* harmony export */ "
|
|
54283
|
-
/* harmony export */ "
|
|
54284
|
-
/* harmony export */ "
|
|
54285
|
-
/* harmony export */ "
|
|
54286
|
-
/* harmony export */ "
|
|
54287
|
-
/* harmony export */ "
|
|
54288
|
-
/* harmony export */ "
|
|
54289
|
-
/* harmony export */ "
|
|
54290
|
-
/* harmony export */ "
|
|
54291
|
-
/* harmony export */ "
|
|
54292
|
-
/* harmony export */ "
|
|
54293
|
-
/* harmony export */ "
|
|
54294
|
-
/* harmony export */ "
|
|
54295
|
-
/* harmony export */ "
|
|
54296
|
-
/* harmony export */ "
|
|
54297
|
-
/* harmony export */ "
|
|
54298
|
-
/* harmony export */ "
|
|
54299
|
-
/* harmony export */ "
|
|
54300
|
-
/* harmony export */ "
|
|
54301
|
-
/* harmony export */ "
|
|
54302
|
-
/* harmony export */ "
|
|
54303
|
-
/* harmony export */ "
|
|
54304
|
-
/* harmony export */ "
|
|
54305
|
-
/* harmony export */ "
|
|
54306
|
-
/* harmony export */ "
|
|
54307
|
-
/* harmony export */ "
|
|
54308
|
-
/* harmony export */ "
|
|
54309
|
-
/* harmony export */ "
|
|
54310
|
-
/* harmony export */ "
|
|
54311
|
-
/* harmony export */ "
|
|
54312
|
-
/* harmony export */ "
|
|
54313
|
-
/* harmony export */ "
|
|
54314
|
-
/* harmony export */ "
|
|
54315
|
-
/* harmony export */ "
|
|
54316
|
-
/* harmony export */ "
|
|
54317
|
-
/* harmony export */ "
|
|
54318
|
-
/* harmony export */ "
|
|
54319
|
-
/* harmony export */ "
|
|
54320
|
-
/* harmony export */ "
|
|
54321
|
-
/* harmony export */ "
|
|
54322
|
-
/* harmony export */ "
|
|
54323
|
-
/* harmony export */ "
|
|
54324
|
-
/* harmony export */ "
|
|
54325
|
-
/* harmony export */ "
|
|
54326
|
-
/* harmony export */ "
|
|
54327
|
-
/* harmony export */ "
|
|
54328
|
-
/* harmony export */ "
|
|
54329
|
-
/* harmony export */ "
|
|
54330
|
-
/* harmony export */ "
|
|
54331
|
-
/* harmony export */ "
|
|
54332
|
-
/* harmony export */ "
|
|
54333
|
-
/* harmony export */ "
|
|
54334
|
-
/* harmony export */ "
|
|
54335
|
-
/* harmony export */ "
|
|
54336
|
-
/* harmony export */ "
|
|
54337
|
-
/* harmony export */ "
|
|
54338
|
-
/* harmony export */ "
|
|
54339
|
-
/* harmony export */ "
|
|
54340
|
-
/* harmony export */ "
|
|
54341
|
-
/* harmony export */ "
|
|
54342
|
-
/* harmony export */ "
|
|
54343
|
-
/* harmony export */ "
|
|
54344
|
-
/* harmony export */ "
|
|
54345
|
-
/* harmony export */ "
|
|
54346
|
-
/* harmony export */ "
|
|
54347
|
-
/* harmony export */ "
|
|
54348
|
-
/* harmony export */ "
|
|
54349
|
-
/* harmony export */ "
|
|
54350
|
-
/* harmony export */ "
|
|
54351
|
-
/* harmony export */ "
|
|
54352
|
-
/* harmony export */ "
|
|
54353
|
-
/* harmony export */ "
|
|
54354
|
-
/* harmony export */ "
|
|
54355
|
-
/* harmony export */ "
|
|
54356
|
-
/* harmony export */ "
|
|
54357
|
-
/* harmony export */ "
|
|
54358
|
-
/* harmony export */ "
|
|
54359
|
-
/* harmony export */ "
|
|
54360
|
-
/* harmony export */ "
|
|
54361
|
-
/* harmony export */ "
|
|
54362
|
-
/* harmony export */ "
|
|
54363
|
-
/* harmony export */ "
|
|
54364
|
-
/* harmony export */ "
|
|
54365
|
-
/* harmony export */ "
|
|
54366
|
-
/* harmony export */ "
|
|
54367
|
-
/* harmony export */ "
|
|
54368
|
-
/* harmony export */ "
|
|
54369
|
-
/* harmony export */ "
|
|
54370
|
-
/* harmony export */ "
|
|
54371
|
-
/* harmony export */ "
|
|
54372
|
-
/* harmony export */ "
|
|
54373
|
-
/* harmony export */ "
|
|
54374
|
-
/* harmony export */ "
|
|
54375
|
-
/* harmony export */ "
|
|
54376
|
-
/* harmony export */ "
|
|
54377
|
-
/* harmony export */ "
|
|
54378
|
-
/* harmony export */ "
|
|
54379
|
-
/* harmony export */ "
|
|
54380
|
-
/* harmony export */ "
|
|
54381
|
-
/* harmony export */ "
|
|
54382
|
-
/* harmony export */ "
|
|
54383
|
-
/* harmony export */ "
|
|
54384
|
-
/* harmony export */ "
|
|
54385
|
-
/* harmony export */ "
|
|
54386
|
-
/* harmony export */ "
|
|
54387
|
-
/* harmony export */ "
|
|
54388
|
-
/* harmony export */ "
|
|
54389
|
-
/* harmony export */ "
|
|
54390
|
-
/* harmony export */ "
|
|
54391
|
-
/* harmony export */ "
|
|
54392
|
-
/* harmony export */ "
|
|
54393
|
-
/* harmony export */ "
|
|
54394
|
-
/* harmony export */ "
|
|
54395
|
-
/* harmony export */ "
|
|
54422
|
+
/* harmony export */ "ActionExecKeyStroke": () => (/* reexport safe */ _action_ActionExecKeyStroke__WEBPACK_IMPORTED_MODULE_173__["default"]),
|
|
54423
|
+
/* harmony export */ "ActionKeyStroke": () => (/* reexport safe */ _action_ActionKeyStroke__WEBPACK_IMPORTED_MODULE_174__["default"]),
|
|
54424
|
+
/* harmony export */ "Box": () => (/* reexport safe */ _box_Box__WEBPACK_IMPORTED_MODULE_175__["default"]),
|
|
54425
|
+
/* harmony export */ "Label": () => (/* reexport safe */ _label_Label__WEBPACK_IMPORTED_MODULE_176__["default"]),
|
|
54426
|
+
/* harmony export */ "LabelAdapter": () => (/* reexport safe */ _label_LabelAdapter__WEBPACK_IMPORTED_MODULE_177__["default"]),
|
|
54427
|
+
/* harmony export */ "Popup": () => (/* reexport safe */ _popup_Popup__WEBPACK_IMPORTED_MODULE_178__["default"]),
|
|
54428
|
+
/* harmony export */ "PopupAdapter": () => (/* reexport safe */ _popup_PopupAdapter__WEBPACK_IMPORTED_MODULE_179__["default"]),
|
|
54429
|
+
/* harmony export */ "PopupLayout": () => (/* reexport safe */ _popup_PopupLayout__WEBPACK_IMPORTED_MODULE_180__["default"]),
|
|
54430
|
+
/* harmony export */ "PopupManager": () => (/* reexport safe */ _popup_PopupManager__WEBPACK_IMPORTED_MODULE_181__["default"]),
|
|
54431
|
+
/* harmony export */ "PopupManagerAdapter": () => (/* reexport safe */ _popup_PopupManagerAdapter__WEBPACK_IMPORTED_MODULE_182__["default"]),
|
|
54432
|
+
/* harmony export */ "TouchPopup": () => (/* reexport safe */ _popup_TouchPopup__WEBPACK_IMPORTED_MODULE_183__["default"]),
|
|
54433
|
+
/* harmony export */ "TouchPopupLayout": () => (/* reexport safe */ _popup_TouchPopupLayout__WEBPACK_IMPORTED_MODULE_184__["default"]),
|
|
54434
|
+
/* harmony export */ "WidgetPopup": () => (/* reexport safe */ _popup_WidgetPopup__WEBPACK_IMPORTED_MODULE_185__["default"]),
|
|
54435
|
+
/* harmony export */ "WidgetPopupAdapter": () => (/* reexport safe */ _popup_WidgetPopupAdapter__WEBPACK_IMPORTED_MODULE_186__["default"]),
|
|
54436
|
+
/* harmony export */ "WidgetPopupLayout": () => (/* reexport safe */ _popup_WidgetPopupLayout__WEBPACK_IMPORTED_MODULE_187__["default"]),
|
|
54437
|
+
/* harmony export */ "MobilePopup": () => (/* reexport safe */ _popup_MobilePopup__WEBPACK_IMPORTED_MODULE_188__["default"]),
|
|
54438
|
+
/* harmony export */ "MobilePopupAdapter": () => (/* reexport safe */ _popup_MobilePopupAdapter__WEBPACK_IMPORTED_MODULE_189__["default"]),
|
|
54439
|
+
/* harmony export */ "MobilePopupLayout": () => (/* reexport safe */ _popup_MobilePopupLayout__WEBPACK_IMPORTED_MODULE_190__["default"]),
|
|
54440
|
+
/* harmony export */ "DatePicker": () => (/* reexport safe */ _datepicker_DatePicker__WEBPACK_IMPORTED_MODULE_191__["default"]),
|
|
54441
|
+
/* harmony export */ "DatePickerPopup": () => (/* reexport safe */ _datepicker_DatePickerPopup__WEBPACK_IMPORTED_MODULE_192__["default"]),
|
|
54442
|
+
/* harmony export */ "DatePickerPopupLayout": () => (/* reexport safe */ _datepicker_DatePickerPopupLayout__WEBPACK_IMPORTED_MODULE_193__["default"]),
|
|
54443
|
+
/* harmony export */ "DatePickerTouchPopup": () => (/* reexport safe */ _datepicker_DatePickerTouchPopup__WEBPACK_IMPORTED_MODULE_194__["default"]),
|
|
54444
|
+
/* harmony export */ "DatePickerTouchPopupLayout": () => (/* reexport safe */ _datepicker_DatePickerTouchPopupLayout__WEBPACK_IMPORTED_MODULE_195__["default"]),
|
|
54445
|
+
/* harmony export */ "Group": () => (/* reexport safe */ _group_Group__WEBPACK_IMPORTED_MODULE_196__["default"]),
|
|
54446
|
+
/* harmony export */ "GroupAdapter": () => (/* reexport safe */ _group_GroupAdapter__WEBPACK_IMPORTED_MODULE_197__["default"]),
|
|
54447
|
+
/* harmony export */ "GroupLayout": () => (/* reexport safe */ _group_GroupLayout__WEBPACK_IMPORTED_MODULE_198__["default"]),
|
|
54448
|
+
/* harmony export */ "GroupToggleCollapseKeyStroke": () => (/* reexport safe */ _group_keystrokes_GroupToggleCollapseKeyStroke__WEBPACK_IMPORTED_MODULE_199__["default"]),
|
|
54449
|
+
/* harmony export */ "Icon": () => (/* reexport safe */ _image_Icon__WEBPACK_IMPORTED_MODULE_200__["default"]),
|
|
54450
|
+
/* harmony export */ "IconDesc": () => (/* reexport safe */ _image_IconDesc__WEBPACK_IMPORTED_MODULE_201__["default"]),
|
|
54451
|
+
/* harmony export */ "Image": () => (/* reexport safe */ _image_Image__WEBPACK_IMPORTED_MODULE_202__["default"]),
|
|
54452
|
+
/* harmony export */ "ImageLayout": () => (/* reexport safe */ _image_ImageLayout__WEBPACK_IMPORTED_MODULE_203__["default"]),
|
|
54453
|
+
/* harmony export */ "Notification": () => (/* reexport safe */ _notification_Notification__WEBPACK_IMPORTED_MODULE_204__["default"]),
|
|
54454
|
+
/* harmony export */ "NotificationAdapter": () => (/* reexport safe */ _notification_NotificationAdapter__WEBPACK_IMPORTED_MODULE_205__["default"]),
|
|
54455
|
+
/* harmony export */ "menus": () => (/* reexport safe */ _menu_menus__WEBPACK_IMPORTED_MODULE_206__["default"]),
|
|
54456
|
+
/* harmony export */ "MenuDestinations": () => (/* reexport safe */ _menu_MenuDestinations__WEBPACK_IMPORTED_MODULE_207__["default"]),
|
|
54457
|
+
/* harmony export */ "Menu": () => (/* reexport safe */ _menu_Menu__WEBPACK_IMPORTED_MODULE_208__["default"]),
|
|
54458
|
+
/* harmony export */ "EllipsisMenu": () => (/* reexport safe */ _menu_EllipsisMenu__WEBPACK_IMPORTED_MODULE_209__["default"]),
|
|
54459
|
+
/* harmony export */ "MenuAdapter": () => (/* reexport safe */ _menu_MenuAdapter__WEBPACK_IMPORTED_MODULE_210__["default"]),
|
|
54460
|
+
/* harmony export */ "MenuKeyStroke": () => (/* reexport safe */ _menu_MenuKeyStroke__WEBPACK_IMPORTED_MODULE_211__["default"]),
|
|
54461
|
+
/* harmony export */ "MenuExecKeyStroke": () => (/* reexport safe */ _menu_MenuExecKeyStroke__WEBPACK_IMPORTED_MODULE_212__["default"]),
|
|
54462
|
+
/* harmony export */ "MenuItemsOrder": () => (/* reexport safe */ _menu_MenuItemsOrder__WEBPACK_IMPORTED_MODULE_213__["default"]),
|
|
54463
|
+
/* harmony export */ "ComboMenu": () => (/* reexport safe */ _menu_ComboMenu__WEBPACK_IMPORTED_MODULE_214__["default"]),
|
|
54464
|
+
/* harmony export */ "ComboMenuAdapter": () => (/* reexport safe */ _menu_ComboMenuAdapter__WEBPACK_IMPORTED_MODULE_215__["default"]),
|
|
54465
|
+
/* harmony export */ "ContextMenuPopup": () => (/* reexport safe */ _menu_ContextMenuPopup__WEBPACK_IMPORTED_MODULE_216__["default"]),
|
|
54466
|
+
/* harmony export */ "ContextMenuPopupLayout": () => (/* reexport safe */ _menu_ContextMenuPopupLayout__WEBPACK_IMPORTED_MODULE_217__["default"]),
|
|
54467
|
+
/* harmony export */ "MenuNavigationKeyStroke": () => (/* reexport safe */ _menu_MenuNavigationKeyStroke__WEBPACK_IMPORTED_MODULE_218__["default"]),
|
|
54468
|
+
/* harmony export */ "MenuNavigationExecKeyStroke": () => (/* reexport safe */ _menu_MenuNavigationExecKeyStroke__WEBPACK_IMPORTED_MODULE_219__["default"]),
|
|
54469
|
+
/* harmony export */ "MenuExecByNumberKeyStroke": () => (/* reexport safe */ _menu_MenuExecByNumberKeyStroke__WEBPACK_IMPORTED_MODULE_220__["default"]),
|
|
54470
|
+
/* harmony export */ "MenuNavigationDownKeyStroke": () => (/* reexport safe */ _menu_MenuNavigationDownKeyStroke__WEBPACK_IMPORTED_MODULE_221__["default"]),
|
|
54471
|
+
/* harmony export */ "MenuNavigationUpKeyStroke": () => (/* reexport safe */ _menu_MenuNavigationUpKeyStroke__WEBPACK_IMPORTED_MODULE_222__["default"]),
|
|
54472
|
+
/* harmony export */ "SubCloseKeyStroke": () => (/* reexport safe */ _menu_SubCloseKeyStroke__WEBPACK_IMPORTED_MODULE_223__["default"]),
|
|
54473
|
+
/* harmony export */ "menuNavigationKeyStrokes": () => (/* reexport safe */ _menu_menuNavigationKeyStrokes__WEBPACK_IMPORTED_MODULE_224__["default"]),
|
|
54474
|
+
/* harmony export */ "ButtonAdapterMenu": () => (/* reexport safe */ _menu_ButtonAdapterMenu__WEBPACK_IMPORTED_MODULE_225__["default"]),
|
|
54475
|
+
/* harmony export */ "FormFieldMenu": () => (/* reexport safe */ _menu_form_field_FormFieldMenu__WEBPACK_IMPORTED_MODULE_226__["default"]),
|
|
54476
|
+
/* harmony export */ "FormFieldMenuAdapter": () => (/* reexport safe */ _menu_form_field_FormFieldMenuAdapter__WEBPACK_IMPORTED_MODULE_227__["default"]),
|
|
54477
|
+
/* harmony export */ "MenuBox": () => (/* reexport safe */ _menu_menubox_MenuBox__WEBPACK_IMPORTED_MODULE_228__["default"]),
|
|
54478
|
+
/* harmony export */ "MenuBoxLayout": () => (/* reexport safe */ _menu_menubox_MenuBoxLayout__WEBPACK_IMPORTED_MODULE_229__["default"]),
|
|
54479
|
+
/* harmony export */ "MenuBar": () => (/* reexport safe */ _menu_menubar_MenuBar__WEBPACK_IMPORTED_MODULE_230__["default"]),
|
|
54480
|
+
/* harmony export */ "MenuBarLayout": () => (/* reexport safe */ _menu_menubar_MenuBarLayout__WEBPACK_IMPORTED_MODULE_231__["default"]),
|
|
54481
|
+
/* harmony export */ "MenuBarLeftKeyStroke": () => (/* reexport safe */ _menu_menubar_MenuBarLeftKeyStroke__WEBPACK_IMPORTED_MODULE_232__["default"]),
|
|
54482
|
+
/* harmony export */ "MenuBarRightKeyStroke": () => (/* reexport safe */ _menu_menubar_MenuBarRightKeyStroke__WEBPACK_IMPORTED_MODULE_233__["default"]),
|
|
54483
|
+
/* harmony export */ "MenuBarPopup": () => (/* reexport safe */ _menu_menubar_MenuBarPopup__WEBPACK_IMPORTED_MODULE_234__["default"]),
|
|
54484
|
+
/* harmony export */ "MenuBarBox": () => (/* reexport safe */ _menu_menubar_MenuBarBox__WEBPACK_IMPORTED_MODULE_235__["default"]),
|
|
54485
|
+
/* harmony export */ "MenuBarBoxLayout": () => (/* reexport safe */ _menu_menubar_MenuBarBoxLayout__WEBPACK_IMPORTED_MODULE_236__["default"]),
|
|
54486
|
+
/* harmony export */ "Calendar": () => (/* reexport safe */ _calendar_Calendar__WEBPACK_IMPORTED_MODULE_237__["default"]),
|
|
54487
|
+
/* harmony export */ "CalendarAdapter": () => (/* reexport safe */ _calendar_CalendarAdapter__WEBPACK_IMPORTED_MODULE_238__["default"]),
|
|
54488
|
+
/* harmony export */ "CalendarComponent": () => (/* reexport safe */ _calendar_CalendarComponent__WEBPACK_IMPORTED_MODULE_239__["default"]),
|
|
54489
|
+
/* harmony export */ "CalendarComponentAdapter": () => (/* reexport safe */ _calendar_CalendarComponentAdapter__WEBPACK_IMPORTED_MODULE_240__["default"]),
|
|
54490
|
+
/* harmony export */ "CalendarListComponent": () => (/* reexport safe */ _calendar_CalendarListComponent__WEBPACK_IMPORTED_MODULE_241__["default"]),
|
|
54491
|
+
/* harmony export */ "CalendarLayout": () => (/* reexport safe */ _calendar_CalendarLayout__WEBPACK_IMPORTED_MODULE_242__["default"]),
|
|
54492
|
+
/* harmony export */ "CalendarModeMenu": () => (/* reexport safe */ _calendar_CalendarModeMenu__WEBPACK_IMPORTED_MODULE_243__["default"]),
|
|
54493
|
+
/* harmony export */ "CalendarModesMenu": () => (/* reexport safe */ _calendar_CalendarModesMenu__WEBPACK_IMPORTED_MODULE_244__["default"]),
|
|
54494
|
+
/* harmony export */ "DateRange": () => (/* reexport safe */ _calendar_DateRange__WEBPACK_IMPORTED_MODULE_245__["default"]),
|
|
54495
|
+
/* harmony export */ "YearPanel": () => (/* reexport safe */ _calendar_YearPanel__WEBPACK_IMPORTED_MODULE_246__["default"]),
|
|
54496
|
+
/* harmony export */ "Lifecycle": () => (/* reexport safe */ _lifecycle_Lifecycle__WEBPACK_IMPORTED_MODULE_247__["default"]),
|
|
54497
|
+
/* harmony export */ "Planner": () => (/* reexport safe */ _planner_Planner__WEBPACK_IMPORTED_MODULE_248__["default"]),
|
|
54498
|
+
/* harmony export */ "PlannerAdapter": () => (/* reexport safe */ _planner_PlannerAdapter__WEBPACK_IMPORTED_MODULE_249__["default"]),
|
|
54499
|
+
/* harmony export */ "PlannerHeader": () => (/* reexport safe */ _planner_PlannerHeader__WEBPACK_IMPORTED_MODULE_250__["default"]),
|
|
54500
|
+
/* harmony export */ "PlannerLayout": () => (/* reexport safe */ _planner_PlannerLayout__WEBPACK_IMPORTED_MODULE_251__["default"]),
|
|
54501
|
+
/* harmony export */ "PlannerMenuItemsOrder": () => (/* reexport safe */ _planner_PlannerMenuItemsOrder__WEBPACK_IMPORTED_MODULE_252__["default"]),
|
|
54502
|
+
/* harmony export */ "FileChooser": () => (/* reexport safe */ _filechooser_FileChooser__WEBPACK_IMPORTED_MODULE_253__["default"]),
|
|
54503
|
+
/* harmony export */ "FileChooserAdapter": () => (/* reexport safe */ _filechooser_FileChooserAdapter__WEBPACK_IMPORTED_MODULE_254__["default"]),
|
|
54504
|
+
/* harmony export */ "FileChooserController": () => (/* reexport safe */ _filechooser_FileChooserController__WEBPACK_IMPORTED_MODULE_255__["default"]),
|
|
54505
|
+
/* harmony export */ "FileInput": () => (/* reexport safe */ _filechooser_FileInput__WEBPACK_IMPORTED_MODULE_256__["default"]),
|
|
54506
|
+
/* harmony export */ "Route": () => (/* reexport safe */ _router_Route__WEBPACK_IMPORTED_MODULE_257__["default"]),
|
|
54507
|
+
/* harmony export */ "router": () => (/* reexport safe */ _router_router__WEBPACK_IMPORTED_MODULE_258__["default"]),
|
|
54508
|
+
/* harmony export */ "Slider": () => (/* reexport safe */ _slider_Slider__WEBPACK_IMPORTED_MODULE_259__["default"]),
|
|
54509
|
+
/* harmony export */ "SliderAdapter": () => (/* reexport safe */ _slider_SliderAdapter__WEBPACK_IMPORTED_MODULE_260__["default"]),
|
|
54510
|
+
/* harmony export */ "SliderLayout": () => (/* reexport safe */ _slider_SliderLayout__WEBPACK_IMPORTED_MODULE_261__["default"]),
|
|
54511
|
+
/* harmony export */ "Mode": () => (/* reexport safe */ _modeselector_Mode__WEBPACK_IMPORTED_MODULE_262__["default"]),
|
|
54512
|
+
/* harmony export */ "ModeAdapter": () => (/* reexport safe */ _modeselector_ModeAdapter__WEBPACK_IMPORTED_MODULE_263__["default"]),
|
|
54513
|
+
/* harmony export */ "ModeSelector": () => (/* reexport safe */ _modeselector_ModeSelector__WEBPACK_IMPORTED_MODULE_264__["default"]),
|
|
54514
|
+
/* harmony export */ "ModeSelectorLayout": () => (/* reexport safe */ _modeselector_ModeSelectorLayout__WEBPACK_IMPORTED_MODULE_265__["default"]),
|
|
54515
|
+
/* harmony export */ "Form": () => (/* reexport safe */ _form_Form__WEBPACK_IMPORTED_MODULE_266__["default"]),
|
|
54516
|
+
/* harmony export */ "FormAdapter": () => (/* reexport safe */ _form_FormAdapter__WEBPACK_IMPORTED_MODULE_267__["default"]),
|
|
54517
|
+
/* harmony export */ "FormGrid": () => (/* reexport safe */ _form_FormGrid__WEBPACK_IMPORTED_MODULE_268__["default"]),
|
|
54518
|
+
/* harmony export */ "FormLayout": () => (/* reexport safe */ _form_FormLayout__WEBPACK_IMPORTED_MODULE_269__["default"]),
|
|
54519
|
+
/* harmony export */ "FormMenuActionKeyStroke": () => (/* reexport safe */ _form_FormMenuActionKeyStroke__WEBPACK_IMPORTED_MODULE_270__["default"]),
|
|
54520
|
+
/* harmony export */ "FormMenu": () => (/* reexport safe */ _form_FormMenu__WEBPACK_IMPORTED_MODULE_271__["default"]),
|
|
54521
|
+
/* harmony export */ "FormMenuAdapter": () => (/* reexport safe */ _form_FormMenuAdapter__WEBPACK_IMPORTED_MODULE_272__["default"]),
|
|
54522
|
+
/* harmony export */ "FormLifecycle": () => (/* reexport safe */ _form_lifecycle_FormLifecycle__WEBPACK_IMPORTED_MODULE_273__["default"]),
|
|
54523
|
+
/* harmony export */ "CancelMenu": () => (/* reexport safe */ _form_lifecycle_CancelMenu__WEBPACK_IMPORTED_MODULE_274__["default"]),
|
|
54524
|
+
/* harmony export */ "CloseMenu": () => (/* reexport safe */ _form_lifecycle_CloseMenu__WEBPACK_IMPORTED_MODULE_275__["default"]),
|
|
54525
|
+
/* harmony export */ "OkMenu": () => (/* reexport safe */ _form_lifecycle_OkMenu__WEBPACK_IMPORTED_MODULE_276__["default"]),
|
|
54526
|
+
/* harmony export */ "ResetMenu": () => (/* reexport safe */ _form_lifecycle_ResetMenu__WEBPACK_IMPORTED_MODULE_277__["default"]),
|
|
54527
|
+
/* harmony export */ "SaveMenu": () => (/* reexport safe */ _form_lifecycle_SaveMenu__WEBPACK_IMPORTED_MODULE_278__["default"]),
|
|
54528
|
+
/* harmony export */ "DialogLayout": () => (/* reexport safe */ _form_DialogLayout__WEBPACK_IMPORTED_MODULE_279__["default"]),
|
|
54529
|
+
/* harmony export */ "ResponsiveManager": () => (/* reexport safe */ _form_ResponsiveManager__WEBPACK_IMPORTED_MODULE_280__["default"]),
|
|
54530
|
+
/* harmony export */ "ResponsiveHandler": () => (/* reexport safe */ _form_ResponsiveHandler__WEBPACK_IMPORTED_MODULE_281__["default"]),
|
|
54531
|
+
/* harmony export */ "GroupBoxResponsiveHandler": () => (/* reexport safe */ _form_GroupBoxResponsiveHandler__WEBPACK_IMPORTED_MODULE_282__["default"]),
|
|
54532
|
+
/* harmony export */ "DesktopResponsiveHandler": () => (/* reexport safe */ _form_DesktopResponsiveHandler__WEBPACK_IMPORTED_MODULE_283__["default"]),
|
|
54533
|
+
/* harmony export */ "TileOverviewForm": () => (/* reexport safe */ _form_TileOverviewForm__WEBPACK_IMPORTED_MODULE_284__["default"]),
|
|
54534
|
+
/* harmony export */ "TileOverviewFormAdapter": () => (/* reexport safe */ _form_TileOverviewFormAdapter__WEBPACK_IMPORTED_MODULE_285__["default"]),
|
|
54535
|
+
/* harmony export */ "Table": () => (/* reexport safe */ _table_Table__WEBPACK_IMPORTED_MODULE_286__["default"]),
|
|
54536
|
+
/* harmony export */ "TableAdapter": () => (/* reexport safe */ _table_TableAdapter__WEBPACK_IMPORTED_MODULE_287__["default"]),
|
|
54537
|
+
/* harmony export */ "TableCompactHandler": () => (/* reexport safe */ _table_TableCompactHandler__WEBPACK_IMPORTED_MODULE_288__["default"]),
|
|
54538
|
+
/* harmony export */ "TableRow": () => (/* reexport safe */ _table_TableRow__WEBPACK_IMPORTED_MODULE_289__["default"]),
|
|
54539
|
+
/* harmony export */ "TableMatrix": () => (/* reexport safe */ _table_TableMatrix__WEBPACK_IMPORTED_MODULE_290__["default"]),
|
|
54540
|
+
/* harmony export */ "TableFooter": () => (/* reexport safe */ _table_TableFooter__WEBPACK_IMPORTED_MODULE_291__["default"]),
|
|
54541
|
+
/* harmony export */ "TableFooterLayout": () => (/* reexport safe */ _table_TableFooterLayout__WEBPACK_IMPORTED_MODULE_292__["default"]),
|
|
54542
|
+
/* harmony export */ "TableInfoFilterTooltip": () => (/* reexport safe */ _table_TableInfoFilterTooltip__WEBPACK_IMPORTED_MODULE_293__["default"]),
|
|
54543
|
+
/* harmony export */ "TableInfoLoadTooltip": () => (/* reexport safe */ _table_TableInfoLoadTooltip__WEBPACK_IMPORTED_MODULE_294__["default"]),
|
|
54544
|
+
/* harmony export */ "TableInfoSelectionTooltip": () => (/* reexport safe */ _table_TableInfoSelectionTooltip__WEBPACK_IMPORTED_MODULE_295__["default"]),
|
|
54545
|
+
/* harmony export */ "TableHeader": () => (/* reexport safe */ _table_TableHeader__WEBPACK_IMPORTED_MODULE_296__["default"]),
|
|
54546
|
+
/* harmony export */ "TableHeaderMenu": () => (/* reexport safe */ _table_TableHeaderMenu__WEBPACK_IMPORTED_MODULE_297__["default"]),
|
|
54547
|
+
/* harmony export */ "TableHeaderMenuLayout": () => (/* reexport safe */ _table_TableHeaderMenuLayout__WEBPACK_IMPORTED_MODULE_298__["default"]),
|
|
54548
|
+
/* harmony export */ "TableHeaderMenuGroup": () => (/* reexport safe */ _table_TableHeaderMenuGroup__WEBPACK_IMPORTED_MODULE_299__["default"]),
|
|
54549
|
+
/* harmony export */ "TableHeaderMenuButton": () => (/* reexport safe */ _table_TableHeaderMenuButton__WEBPACK_IMPORTED_MODULE_300__["default"]),
|
|
54396
54550
|
/* harmony export */ "TableLayout": () => (/* reexport safe */ _table_TableLayout__WEBPACK_IMPORTED_MODULE_301__["default"]),
|
|
54397
54551
|
/* harmony export */ "TableSelectionHandler": () => (/* reexport safe */ _table_TableSelectionHandler__WEBPACK_IMPORTED_MODULE_302__["default"]),
|
|
54398
54552
|
/* harmony export */ "TableTileGridMediator": () => (/* reexport safe */ _table_TableTileGridMediator__WEBPACK_IMPORTED_MODULE_303__["default"]),
|
|
@@ -54952,134 +55106,134 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
54952
55106
|
/* harmony import */ var _tooltip_WidgetTooltip__WEBPACK_IMPORTED_MODULE_170__ = __webpack_require__(/*! ./tooltip/WidgetTooltip */ "./src/tooltip/WidgetTooltip.js");
|
|
54953
55107
|
/* harmony import */ var _action_Action__WEBPACK_IMPORTED_MODULE_171__ = __webpack_require__(/*! ./action/Action */ "./src/action/Action.js");
|
|
54954
55108
|
/* harmony import */ var _action_ActionAdapter__WEBPACK_IMPORTED_MODULE_172__ = __webpack_require__(/*! ./action/ActionAdapter */ "./src/action/ActionAdapter.js");
|
|
54955
|
-
/* harmony import */ var
|
|
54956
|
-
/* harmony import */ var
|
|
54957
|
-
/* harmony import */ var
|
|
54958
|
-
/* harmony import */ var
|
|
54959
|
-
/* harmony import */ var
|
|
54960
|
-
/* harmony import */ var
|
|
54961
|
-
/* harmony import */ var
|
|
54962
|
-
/* harmony import */ var
|
|
54963
|
-
/* harmony import */ var
|
|
54964
|
-
/* harmony import */ var
|
|
54965
|
-
/* harmony import */ var
|
|
54966
|
-
/* harmony import */ var
|
|
54967
|
-
/* harmony import */ var
|
|
54968
|
-
/* harmony import */ var
|
|
54969
|
-
/* harmony import */ var
|
|
54970
|
-
/* harmony import */ var
|
|
54971
|
-
/* harmony import */ var
|
|
54972
|
-
/* harmony import */ var
|
|
54973
|
-
/* harmony import */ var
|
|
54974
|
-
/* harmony import */ var
|
|
54975
|
-
/* harmony import */ var
|
|
54976
|
-
/* harmony import */ var
|
|
54977
|
-
/* harmony import */ var
|
|
54978
|
-
/* harmony import */ var
|
|
54979
|
-
/* harmony import */ var
|
|
54980
|
-
/* harmony import */ var
|
|
54981
|
-
/* harmony import */ var
|
|
54982
|
-
/* harmony import */ var
|
|
54983
|
-
/* harmony import */ var
|
|
54984
|
-
/* harmony import */ var
|
|
54985
|
-
/* harmony import */ var
|
|
54986
|
-
/* harmony import */ var
|
|
54987
|
-
/* harmony import */ var
|
|
54988
|
-
/* harmony import */ var
|
|
54989
|
-
/* harmony import */ var
|
|
54990
|
-
/* harmony import */ var
|
|
54991
|
-
/* harmony import */ var
|
|
54992
|
-
/* harmony import */ var
|
|
54993
|
-
/* harmony import */ var
|
|
54994
|
-
/* harmony import */ var
|
|
54995
|
-
/* harmony import */ var
|
|
54996
|
-
/* harmony import */ var
|
|
54997
|
-
/* harmony import */ var
|
|
54998
|
-
/* harmony import */ var
|
|
54999
|
-
/* harmony import */ var
|
|
55000
|
-
/* harmony import */ var
|
|
55001
|
-
/* harmony import */ var
|
|
55002
|
-
/* harmony import */ var
|
|
55003
|
-
/* harmony import */ var
|
|
55004
|
-
/* harmony import */ var
|
|
55005
|
-
/* harmony import */ var
|
|
55006
|
-
/* harmony import */ var
|
|
55007
|
-
/* harmony import */ var
|
|
55008
|
-
/* harmony import */ var
|
|
55009
|
-
/* harmony import */ var
|
|
55010
|
-
/* harmony import */ var
|
|
55011
|
-
/* harmony import */ var
|
|
55012
|
-
/* harmony import */ var
|
|
55013
|
-
/* harmony import */ var
|
|
55014
|
-
/* harmony import */ var
|
|
55015
|
-
/* harmony import */ var
|
|
55016
|
-
/* harmony import */ var
|
|
55017
|
-
/* harmony import */ var
|
|
55018
|
-
/* harmony import */ var
|
|
55019
|
-
/* harmony import */ var
|
|
55020
|
-
/* harmony import */ var
|
|
55021
|
-
/* harmony import */ var
|
|
55022
|
-
/* harmony import */ var
|
|
55023
|
-
/* harmony import */ var
|
|
55024
|
-
/* harmony import */ var
|
|
55025
|
-
/* harmony import */ var
|
|
55026
|
-
/* harmony import */ var
|
|
55027
|
-
/* harmony import */ var
|
|
55028
|
-
/* harmony import */ var
|
|
55029
|
-
/* harmony import */ var
|
|
55030
|
-
/* harmony import */ var
|
|
55031
|
-
/* harmony import */ var
|
|
55032
|
-
/* harmony import */ var
|
|
55033
|
-
/* harmony import */ var
|
|
55034
|
-
/* harmony import */ var
|
|
55035
|
-
/* harmony import */ var
|
|
55036
|
-
/* harmony import */ var
|
|
55037
|
-
/* harmony import */ var
|
|
55038
|
-
/* harmony import */ var
|
|
55039
|
-
/* harmony import */ var
|
|
55040
|
-
/* harmony import */ var
|
|
55041
|
-
/* harmony import */ var
|
|
55042
|
-
/* harmony import */ var
|
|
55043
|
-
/* harmony import */ var
|
|
55044
|
-
/* harmony import */ var
|
|
55045
|
-
/* harmony import */ var
|
|
55046
|
-
/* harmony import */ var
|
|
55047
|
-
/* harmony import */ var
|
|
55048
|
-
/* harmony import */ var
|
|
55049
|
-
/* harmony import */ var
|
|
55050
|
-
/* harmony import */ var
|
|
55051
|
-
/* harmony import */ var
|
|
55052
|
-
/* harmony import */ var
|
|
55053
|
-
/* harmony import */ var
|
|
55054
|
-
/* harmony import */ var
|
|
55055
|
-
/* harmony import */ var
|
|
55056
|
-
/* harmony import */ var
|
|
55057
|
-
/* harmony import */ var
|
|
55058
|
-
/* harmony import */ var
|
|
55059
|
-
/* harmony import */ var
|
|
55060
|
-
/* harmony import */ var
|
|
55061
|
-
/* harmony import */ var
|
|
55062
|
-
/* harmony import */ var
|
|
55063
|
-
/* harmony import */ var
|
|
55064
|
-
/* harmony import */ var
|
|
55065
|
-
/* harmony import */ var
|
|
55066
|
-
/* harmony import */ var
|
|
55067
|
-
/* harmony import */ var
|
|
55068
|
-
/* harmony import */ var
|
|
55069
|
-
/* harmony import */ var
|
|
55070
|
-
/* harmony import */ var
|
|
55071
|
-
/* harmony import */ var
|
|
55072
|
-
/* harmony import */ var
|
|
55073
|
-
/* harmony import */ var
|
|
55074
|
-
/* harmony import */ var
|
|
55075
|
-
/* harmony import */ var
|
|
55076
|
-
/* harmony import */ var
|
|
55077
|
-
/* harmony import */ var
|
|
55078
|
-
/* harmony import */ var
|
|
55079
|
-
/* harmony import */ var
|
|
55080
|
-
/* harmony import */ var
|
|
55081
|
-
/* harmony import */ var
|
|
55082
|
-
/* harmony import */ var
|
|
55109
|
+
/* harmony import */ var _action_ActionExecKeyStroke__WEBPACK_IMPORTED_MODULE_173__ = __webpack_require__(/*! ./action/ActionExecKeyStroke */ "./src/action/ActionExecKeyStroke.js");
|
|
55110
|
+
/* harmony import */ var _action_ActionKeyStroke__WEBPACK_IMPORTED_MODULE_174__ = __webpack_require__(/*! ./action/ActionKeyStroke */ "./src/action/ActionKeyStroke.js");
|
|
55111
|
+
/* harmony import */ var _box_Box__WEBPACK_IMPORTED_MODULE_175__ = __webpack_require__(/*! ./box/Box */ "./src/box/Box.js");
|
|
55112
|
+
/* harmony import */ var _label_Label__WEBPACK_IMPORTED_MODULE_176__ = __webpack_require__(/*! ./label/Label */ "./src/label/Label.js");
|
|
55113
|
+
/* harmony import */ var _label_LabelAdapter__WEBPACK_IMPORTED_MODULE_177__ = __webpack_require__(/*! ./label/LabelAdapter */ "./src/label/LabelAdapter.js");
|
|
55114
|
+
/* harmony import */ var _popup_Popup__WEBPACK_IMPORTED_MODULE_178__ = __webpack_require__(/*! ./popup/Popup */ "./src/popup/Popup.js");
|
|
55115
|
+
/* harmony import */ var _popup_PopupAdapter__WEBPACK_IMPORTED_MODULE_179__ = __webpack_require__(/*! ./popup/PopupAdapter */ "./src/popup/PopupAdapter.js");
|
|
55116
|
+
/* harmony import */ var _popup_PopupLayout__WEBPACK_IMPORTED_MODULE_180__ = __webpack_require__(/*! ./popup/PopupLayout */ "./src/popup/PopupLayout.js");
|
|
55117
|
+
/* harmony import */ var _popup_PopupManager__WEBPACK_IMPORTED_MODULE_181__ = __webpack_require__(/*! ./popup/PopupManager */ "./src/popup/PopupManager.js");
|
|
55118
|
+
/* harmony import */ var _popup_PopupManagerAdapter__WEBPACK_IMPORTED_MODULE_182__ = __webpack_require__(/*! ./popup/PopupManagerAdapter */ "./src/popup/PopupManagerAdapter.js");
|
|
55119
|
+
/* harmony import */ var _popup_TouchPopup__WEBPACK_IMPORTED_MODULE_183__ = __webpack_require__(/*! ./popup/TouchPopup */ "./src/popup/TouchPopup.js");
|
|
55120
|
+
/* harmony import */ var _popup_TouchPopupLayout__WEBPACK_IMPORTED_MODULE_184__ = __webpack_require__(/*! ./popup/TouchPopupLayout */ "./src/popup/TouchPopupLayout.js");
|
|
55121
|
+
/* harmony import */ var _popup_WidgetPopup__WEBPACK_IMPORTED_MODULE_185__ = __webpack_require__(/*! ./popup/WidgetPopup */ "./src/popup/WidgetPopup.js");
|
|
55122
|
+
/* harmony import */ var _popup_WidgetPopupAdapter__WEBPACK_IMPORTED_MODULE_186__ = __webpack_require__(/*! ./popup/WidgetPopupAdapter */ "./src/popup/WidgetPopupAdapter.js");
|
|
55123
|
+
/* harmony import */ var _popup_WidgetPopupLayout__WEBPACK_IMPORTED_MODULE_187__ = __webpack_require__(/*! ./popup/WidgetPopupLayout */ "./src/popup/WidgetPopupLayout.js");
|
|
55124
|
+
/* harmony import */ var _popup_MobilePopup__WEBPACK_IMPORTED_MODULE_188__ = __webpack_require__(/*! ./popup/MobilePopup */ "./src/popup/MobilePopup.js");
|
|
55125
|
+
/* harmony import */ var _popup_MobilePopupAdapter__WEBPACK_IMPORTED_MODULE_189__ = __webpack_require__(/*! ./popup/MobilePopupAdapter */ "./src/popup/MobilePopupAdapter.js");
|
|
55126
|
+
/* harmony import */ var _popup_MobilePopupLayout__WEBPACK_IMPORTED_MODULE_190__ = __webpack_require__(/*! ./popup/MobilePopupLayout */ "./src/popup/MobilePopupLayout.js");
|
|
55127
|
+
/* harmony import */ var _datepicker_DatePicker__WEBPACK_IMPORTED_MODULE_191__ = __webpack_require__(/*! ./datepicker/DatePicker */ "./src/datepicker/DatePicker.js");
|
|
55128
|
+
/* harmony import */ var _datepicker_DatePickerPopup__WEBPACK_IMPORTED_MODULE_192__ = __webpack_require__(/*! ./datepicker/DatePickerPopup */ "./src/datepicker/DatePickerPopup.js");
|
|
55129
|
+
/* harmony import */ var _datepicker_DatePickerPopupLayout__WEBPACK_IMPORTED_MODULE_193__ = __webpack_require__(/*! ./datepicker/DatePickerPopupLayout */ "./src/datepicker/DatePickerPopupLayout.js");
|
|
55130
|
+
/* harmony import */ var _datepicker_DatePickerTouchPopup__WEBPACK_IMPORTED_MODULE_194__ = __webpack_require__(/*! ./datepicker/DatePickerTouchPopup */ "./src/datepicker/DatePickerTouchPopup.js");
|
|
55131
|
+
/* harmony import */ var _datepicker_DatePickerTouchPopupLayout__WEBPACK_IMPORTED_MODULE_195__ = __webpack_require__(/*! ./datepicker/DatePickerTouchPopupLayout */ "./src/datepicker/DatePickerTouchPopupLayout.js");
|
|
55132
|
+
/* harmony import */ var _group_Group__WEBPACK_IMPORTED_MODULE_196__ = __webpack_require__(/*! ./group/Group */ "./src/group/Group.js");
|
|
55133
|
+
/* harmony import */ var _group_GroupAdapter__WEBPACK_IMPORTED_MODULE_197__ = __webpack_require__(/*! ./group/GroupAdapter */ "./src/group/GroupAdapter.js");
|
|
55134
|
+
/* harmony import */ var _group_GroupLayout__WEBPACK_IMPORTED_MODULE_198__ = __webpack_require__(/*! ./group/GroupLayout */ "./src/group/GroupLayout.js");
|
|
55135
|
+
/* harmony import */ var _group_keystrokes_GroupToggleCollapseKeyStroke__WEBPACK_IMPORTED_MODULE_199__ = __webpack_require__(/*! ./group/keystrokes/GroupToggleCollapseKeyStroke */ "./src/group/keystrokes/GroupToggleCollapseKeyStroke.js");
|
|
55136
|
+
/* harmony import */ var _image_Icon__WEBPACK_IMPORTED_MODULE_200__ = __webpack_require__(/*! ./image/Icon */ "./src/image/Icon.js");
|
|
55137
|
+
/* harmony import */ var _image_IconDesc__WEBPACK_IMPORTED_MODULE_201__ = __webpack_require__(/*! ./image/IconDesc */ "./src/image/IconDesc.js");
|
|
55138
|
+
/* harmony import */ var _image_Image__WEBPACK_IMPORTED_MODULE_202__ = __webpack_require__(/*! ./image/Image */ "./src/image/Image.js");
|
|
55139
|
+
/* harmony import */ var _image_ImageLayout__WEBPACK_IMPORTED_MODULE_203__ = __webpack_require__(/*! ./image/ImageLayout */ "./src/image/ImageLayout.js");
|
|
55140
|
+
/* harmony import */ var _notification_Notification__WEBPACK_IMPORTED_MODULE_204__ = __webpack_require__(/*! ./notification/Notification */ "./src/notification/Notification.js");
|
|
55141
|
+
/* harmony import */ var _notification_NotificationAdapter__WEBPACK_IMPORTED_MODULE_205__ = __webpack_require__(/*! ./notification/NotificationAdapter */ "./src/notification/NotificationAdapter.js");
|
|
55142
|
+
/* harmony import */ var _menu_menus__WEBPACK_IMPORTED_MODULE_206__ = __webpack_require__(/*! ./menu/menus */ "./src/menu/menus.js");
|
|
55143
|
+
/* harmony import */ var _menu_MenuDestinations__WEBPACK_IMPORTED_MODULE_207__ = __webpack_require__(/*! ./menu/MenuDestinations */ "./src/menu/MenuDestinations.js");
|
|
55144
|
+
/* harmony import */ var _menu_Menu__WEBPACK_IMPORTED_MODULE_208__ = __webpack_require__(/*! ./menu/Menu */ "./src/menu/Menu.js");
|
|
55145
|
+
/* harmony import */ var _menu_EllipsisMenu__WEBPACK_IMPORTED_MODULE_209__ = __webpack_require__(/*! ./menu/EllipsisMenu */ "./src/menu/EllipsisMenu.js");
|
|
55146
|
+
/* harmony import */ var _menu_MenuAdapter__WEBPACK_IMPORTED_MODULE_210__ = __webpack_require__(/*! ./menu/MenuAdapter */ "./src/menu/MenuAdapter.js");
|
|
55147
|
+
/* harmony import */ var _menu_MenuKeyStroke__WEBPACK_IMPORTED_MODULE_211__ = __webpack_require__(/*! ./menu/MenuKeyStroke */ "./src/menu/MenuKeyStroke.js");
|
|
55148
|
+
/* harmony import */ var _menu_MenuExecKeyStroke__WEBPACK_IMPORTED_MODULE_212__ = __webpack_require__(/*! ./menu/MenuExecKeyStroke */ "./src/menu/MenuExecKeyStroke.js");
|
|
55149
|
+
/* harmony import */ var _menu_MenuItemsOrder__WEBPACK_IMPORTED_MODULE_213__ = __webpack_require__(/*! ./menu/MenuItemsOrder */ "./src/menu/MenuItemsOrder.js");
|
|
55150
|
+
/* harmony import */ var _menu_ComboMenu__WEBPACK_IMPORTED_MODULE_214__ = __webpack_require__(/*! ./menu/ComboMenu */ "./src/menu/ComboMenu.js");
|
|
55151
|
+
/* harmony import */ var _menu_ComboMenuAdapter__WEBPACK_IMPORTED_MODULE_215__ = __webpack_require__(/*! ./menu/ComboMenuAdapter */ "./src/menu/ComboMenuAdapter.js");
|
|
55152
|
+
/* harmony import */ var _menu_ContextMenuPopup__WEBPACK_IMPORTED_MODULE_216__ = __webpack_require__(/*! ./menu/ContextMenuPopup */ "./src/menu/ContextMenuPopup.js");
|
|
55153
|
+
/* harmony import */ var _menu_ContextMenuPopupLayout__WEBPACK_IMPORTED_MODULE_217__ = __webpack_require__(/*! ./menu/ContextMenuPopupLayout */ "./src/menu/ContextMenuPopupLayout.js");
|
|
55154
|
+
/* harmony import */ var _menu_MenuNavigationKeyStroke__WEBPACK_IMPORTED_MODULE_218__ = __webpack_require__(/*! ./menu/MenuNavigationKeyStroke */ "./src/menu/MenuNavigationKeyStroke.js");
|
|
55155
|
+
/* harmony import */ var _menu_MenuNavigationExecKeyStroke__WEBPACK_IMPORTED_MODULE_219__ = __webpack_require__(/*! ./menu/MenuNavigationExecKeyStroke */ "./src/menu/MenuNavigationExecKeyStroke.js");
|
|
55156
|
+
/* harmony import */ var _menu_MenuExecByNumberKeyStroke__WEBPACK_IMPORTED_MODULE_220__ = __webpack_require__(/*! ./menu/MenuExecByNumberKeyStroke */ "./src/menu/MenuExecByNumberKeyStroke.js");
|
|
55157
|
+
/* harmony import */ var _menu_MenuNavigationDownKeyStroke__WEBPACK_IMPORTED_MODULE_221__ = __webpack_require__(/*! ./menu/MenuNavigationDownKeyStroke */ "./src/menu/MenuNavigationDownKeyStroke.js");
|
|
55158
|
+
/* harmony import */ var _menu_MenuNavigationUpKeyStroke__WEBPACK_IMPORTED_MODULE_222__ = __webpack_require__(/*! ./menu/MenuNavigationUpKeyStroke */ "./src/menu/MenuNavigationUpKeyStroke.js");
|
|
55159
|
+
/* harmony import */ var _menu_SubCloseKeyStroke__WEBPACK_IMPORTED_MODULE_223__ = __webpack_require__(/*! ./menu/SubCloseKeyStroke */ "./src/menu/SubCloseKeyStroke.js");
|
|
55160
|
+
/* harmony import */ var _menu_menuNavigationKeyStrokes__WEBPACK_IMPORTED_MODULE_224__ = __webpack_require__(/*! ./menu/menuNavigationKeyStrokes */ "./src/menu/menuNavigationKeyStrokes.js");
|
|
55161
|
+
/* harmony import */ var _menu_ButtonAdapterMenu__WEBPACK_IMPORTED_MODULE_225__ = __webpack_require__(/*! ./menu/ButtonAdapterMenu */ "./src/menu/ButtonAdapterMenu.js");
|
|
55162
|
+
/* harmony import */ var _menu_form_field_FormFieldMenu__WEBPACK_IMPORTED_MODULE_226__ = __webpack_require__(/*! ./menu/form/field/FormFieldMenu */ "./src/menu/form/field/FormFieldMenu.js");
|
|
55163
|
+
/* harmony import */ var _menu_form_field_FormFieldMenuAdapter__WEBPACK_IMPORTED_MODULE_227__ = __webpack_require__(/*! ./menu/form/field/FormFieldMenuAdapter */ "./src/menu/form/field/FormFieldMenuAdapter.js");
|
|
55164
|
+
/* harmony import */ var _menu_menubox_MenuBox__WEBPACK_IMPORTED_MODULE_228__ = __webpack_require__(/*! ./menu/menubox/MenuBox */ "./src/menu/menubox/MenuBox.js");
|
|
55165
|
+
/* harmony import */ var _menu_menubox_MenuBoxLayout__WEBPACK_IMPORTED_MODULE_229__ = __webpack_require__(/*! ./menu/menubox/MenuBoxLayout */ "./src/menu/menubox/MenuBoxLayout.js");
|
|
55166
|
+
/* harmony import */ var _menu_menubar_MenuBar__WEBPACK_IMPORTED_MODULE_230__ = __webpack_require__(/*! ./menu/menubar/MenuBar */ "./src/menu/menubar/MenuBar.js");
|
|
55167
|
+
/* harmony import */ var _menu_menubar_MenuBarLayout__WEBPACK_IMPORTED_MODULE_231__ = __webpack_require__(/*! ./menu/menubar/MenuBarLayout */ "./src/menu/menubar/MenuBarLayout.js");
|
|
55168
|
+
/* harmony import */ var _menu_menubar_MenuBarLeftKeyStroke__WEBPACK_IMPORTED_MODULE_232__ = __webpack_require__(/*! ./menu/menubar/MenuBarLeftKeyStroke */ "./src/menu/menubar/MenuBarLeftKeyStroke.js");
|
|
55169
|
+
/* harmony import */ var _menu_menubar_MenuBarRightKeyStroke__WEBPACK_IMPORTED_MODULE_233__ = __webpack_require__(/*! ./menu/menubar/MenuBarRightKeyStroke */ "./src/menu/menubar/MenuBarRightKeyStroke.js");
|
|
55170
|
+
/* harmony import */ var _menu_menubar_MenuBarPopup__WEBPACK_IMPORTED_MODULE_234__ = __webpack_require__(/*! ./menu/menubar/MenuBarPopup */ "./src/menu/menubar/MenuBarPopup.js");
|
|
55171
|
+
/* harmony import */ var _menu_menubar_MenuBarBox__WEBPACK_IMPORTED_MODULE_235__ = __webpack_require__(/*! ./menu/menubar/MenuBarBox */ "./src/menu/menubar/MenuBarBox.js");
|
|
55172
|
+
/* harmony import */ var _menu_menubar_MenuBarBoxLayout__WEBPACK_IMPORTED_MODULE_236__ = __webpack_require__(/*! ./menu/menubar/MenuBarBoxLayout */ "./src/menu/menubar/MenuBarBoxLayout.js");
|
|
55173
|
+
/* harmony import */ var _calendar_Calendar__WEBPACK_IMPORTED_MODULE_237__ = __webpack_require__(/*! ./calendar/Calendar */ "./src/calendar/Calendar.js");
|
|
55174
|
+
/* harmony import */ var _calendar_CalendarAdapter__WEBPACK_IMPORTED_MODULE_238__ = __webpack_require__(/*! ./calendar/CalendarAdapter */ "./src/calendar/CalendarAdapter.js");
|
|
55175
|
+
/* harmony import */ var _calendar_CalendarComponent__WEBPACK_IMPORTED_MODULE_239__ = __webpack_require__(/*! ./calendar/CalendarComponent */ "./src/calendar/CalendarComponent.js");
|
|
55176
|
+
/* harmony import */ var _calendar_CalendarComponentAdapter__WEBPACK_IMPORTED_MODULE_240__ = __webpack_require__(/*! ./calendar/CalendarComponentAdapter */ "./src/calendar/CalendarComponentAdapter.js");
|
|
55177
|
+
/* harmony import */ var _calendar_CalendarListComponent__WEBPACK_IMPORTED_MODULE_241__ = __webpack_require__(/*! ./calendar/CalendarListComponent */ "./src/calendar/CalendarListComponent.js");
|
|
55178
|
+
/* harmony import */ var _calendar_CalendarLayout__WEBPACK_IMPORTED_MODULE_242__ = __webpack_require__(/*! ./calendar/CalendarLayout */ "./src/calendar/CalendarLayout.js");
|
|
55179
|
+
/* harmony import */ var _calendar_CalendarModeMenu__WEBPACK_IMPORTED_MODULE_243__ = __webpack_require__(/*! ./calendar/CalendarModeMenu */ "./src/calendar/CalendarModeMenu.js");
|
|
55180
|
+
/* harmony import */ var _calendar_CalendarModesMenu__WEBPACK_IMPORTED_MODULE_244__ = __webpack_require__(/*! ./calendar/CalendarModesMenu */ "./src/calendar/CalendarModesMenu.js");
|
|
55181
|
+
/* harmony import */ var _calendar_DateRange__WEBPACK_IMPORTED_MODULE_245__ = __webpack_require__(/*! ./calendar/DateRange */ "./src/calendar/DateRange.js");
|
|
55182
|
+
/* harmony import */ var _calendar_YearPanel__WEBPACK_IMPORTED_MODULE_246__ = __webpack_require__(/*! ./calendar/YearPanel */ "./src/calendar/YearPanel.js");
|
|
55183
|
+
/* harmony import */ var _lifecycle_Lifecycle__WEBPACK_IMPORTED_MODULE_247__ = __webpack_require__(/*! ./lifecycle/Lifecycle */ "./src/lifecycle/Lifecycle.js");
|
|
55184
|
+
/* harmony import */ var _planner_Planner__WEBPACK_IMPORTED_MODULE_248__ = __webpack_require__(/*! ./planner/Planner */ "./src/planner/Planner.js");
|
|
55185
|
+
/* harmony import */ var _planner_PlannerAdapter__WEBPACK_IMPORTED_MODULE_249__ = __webpack_require__(/*! ./planner/PlannerAdapter */ "./src/planner/PlannerAdapter.js");
|
|
55186
|
+
/* harmony import */ var _planner_PlannerHeader__WEBPACK_IMPORTED_MODULE_250__ = __webpack_require__(/*! ./planner/PlannerHeader */ "./src/planner/PlannerHeader.js");
|
|
55187
|
+
/* harmony import */ var _planner_PlannerLayout__WEBPACK_IMPORTED_MODULE_251__ = __webpack_require__(/*! ./planner/PlannerLayout */ "./src/planner/PlannerLayout.js");
|
|
55188
|
+
/* harmony import */ var _planner_PlannerMenuItemsOrder__WEBPACK_IMPORTED_MODULE_252__ = __webpack_require__(/*! ./planner/PlannerMenuItemsOrder */ "./src/planner/PlannerMenuItemsOrder.js");
|
|
55189
|
+
/* harmony import */ var _filechooser_FileChooser__WEBPACK_IMPORTED_MODULE_253__ = __webpack_require__(/*! ./filechooser/FileChooser */ "./src/filechooser/FileChooser.js");
|
|
55190
|
+
/* harmony import */ var _filechooser_FileChooserAdapter__WEBPACK_IMPORTED_MODULE_254__ = __webpack_require__(/*! ./filechooser/FileChooserAdapter */ "./src/filechooser/FileChooserAdapter.js");
|
|
55191
|
+
/* harmony import */ var _filechooser_FileChooserController__WEBPACK_IMPORTED_MODULE_255__ = __webpack_require__(/*! ./filechooser/FileChooserController */ "./src/filechooser/FileChooserController.js");
|
|
55192
|
+
/* harmony import */ var _filechooser_FileInput__WEBPACK_IMPORTED_MODULE_256__ = __webpack_require__(/*! ./filechooser/FileInput */ "./src/filechooser/FileInput.js");
|
|
55193
|
+
/* harmony import */ var _router_Route__WEBPACK_IMPORTED_MODULE_257__ = __webpack_require__(/*! ./router/Route */ "./src/router/Route.js");
|
|
55194
|
+
/* harmony import */ var _router_router__WEBPACK_IMPORTED_MODULE_258__ = __webpack_require__(/*! ./router/router */ "./src/router/router.js");
|
|
55195
|
+
/* harmony import */ var _slider_Slider__WEBPACK_IMPORTED_MODULE_259__ = __webpack_require__(/*! ./slider/Slider */ "./src/slider/Slider.js");
|
|
55196
|
+
/* harmony import */ var _slider_SliderAdapter__WEBPACK_IMPORTED_MODULE_260__ = __webpack_require__(/*! ./slider/SliderAdapter */ "./src/slider/SliderAdapter.js");
|
|
55197
|
+
/* harmony import */ var _slider_SliderLayout__WEBPACK_IMPORTED_MODULE_261__ = __webpack_require__(/*! ./slider/SliderLayout */ "./src/slider/SliderLayout.js");
|
|
55198
|
+
/* harmony import */ var _modeselector_Mode__WEBPACK_IMPORTED_MODULE_262__ = __webpack_require__(/*! ./modeselector/Mode */ "./src/modeselector/Mode.js");
|
|
55199
|
+
/* harmony import */ var _modeselector_ModeAdapter__WEBPACK_IMPORTED_MODULE_263__ = __webpack_require__(/*! ./modeselector/ModeAdapter */ "./src/modeselector/ModeAdapter.js");
|
|
55200
|
+
/* harmony import */ var _modeselector_ModeSelector__WEBPACK_IMPORTED_MODULE_264__ = __webpack_require__(/*! ./modeselector/ModeSelector */ "./src/modeselector/ModeSelector.js");
|
|
55201
|
+
/* harmony import */ var _modeselector_ModeSelectorLayout__WEBPACK_IMPORTED_MODULE_265__ = __webpack_require__(/*! ./modeselector/ModeSelectorLayout */ "./src/modeselector/ModeSelectorLayout.js");
|
|
55202
|
+
/* harmony import */ var _form_Form__WEBPACK_IMPORTED_MODULE_266__ = __webpack_require__(/*! ./form/Form */ "./src/form/Form.js");
|
|
55203
|
+
/* harmony import */ var _form_FormAdapter__WEBPACK_IMPORTED_MODULE_267__ = __webpack_require__(/*! ./form/FormAdapter */ "./src/form/FormAdapter.js");
|
|
55204
|
+
/* harmony import */ var _form_FormGrid__WEBPACK_IMPORTED_MODULE_268__ = __webpack_require__(/*! ./form/FormGrid */ "./src/form/FormGrid.js");
|
|
55205
|
+
/* harmony import */ var _form_FormLayout__WEBPACK_IMPORTED_MODULE_269__ = __webpack_require__(/*! ./form/FormLayout */ "./src/form/FormLayout.js");
|
|
55206
|
+
/* harmony import */ var _form_FormMenuActionKeyStroke__WEBPACK_IMPORTED_MODULE_270__ = __webpack_require__(/*! ./form/FormMenuActionKeyStroke */ "./src/form/FormMenuActionKeyStroke.js");
|
|
55207
|
+
/* harmony import */ var _form_FormMenu__WEBPACK_IMPORTED_MODULE_271__ = __webpack_require__(/*! ./form/FormMenu */ "./src/form/FormMenu.js");
|
|
55208
|
+
/* harmony import */ var _form_FormMenuAdapter__WEBPACK_IMPORTED_MODULE_272__ = __webpack_require__(/*! ./form/FormMenuAdapter */ "./src/form/FormMenuAdapter.js");
|
|
55209
|
+
/* harmony import */ var _form_lifecycle_FormLifecycle__WEBPACK_IMPORTED_MODULE_273__ = __webpack_require__(/*! ./form/lifecycle/FormLifecycle */ "./src/form/lifecycle/FormLifecycle.js");
|
|
55210
|
+
/* harmony import */ var _form_lifecycle_CancelMenu__WEBPACK_IMPORTED_MODULE_274__ = __webpack_require__(/*! ./form/lifecycle/CancelMenu */ "./src/form/lifecycle/CancelMenu.js");
|
|
55211
|
+
/* harmony import */ var _form_lifecycle_CloseMenu__WEBPACK_IMPORTED_MODULE_275__ = __webpack_require__(/*! ./form/lifecycle/CloseMenu */ "./src/form/lifecycle/CloseMenu.js");
|
|
55212
|
+
/* harmony import */ var _form_lifecycle_OkMenu__WEBPACK_IMPORTED_MODULE_276__ = __webpack_require__(/*! ./form/lifecycle/OkMenu */ "./src/form/lifecycle/OkMenu.js");
|
|
55213
|
+
/* harmony import */ var _form_lifecycle_ResetMenu__WEBPACK_IMPORTED_MODULE_277__ = __webpack_require__(/*! ./form/lifecycle/ResetMenu */ "./src/form/lifecycle/ResetMenu.js");
|
|
55214
|
+
/* harmony import */ var _form_lifecycle_SaveMenu__WEBPACK_IMPORTED_MODULE_278__ = __webpack_require__(/*! ./form/lifecycle/SaveMenu */ "./src/form/lifecycle/SaveMenu.js");
|
|
55215
|
+
/* harmony import */ var _form_DialogLayout__WEBPACK_IMPORTED_MODULE_279__ = __webpack_require__(/*! ./form/DialogLayout */ "./src/form/DialogLayout.js");
|
|
55216
|
+
/* harmony import */ var _form_ResponsiveManager__WEBPACK_IMPORTED_MODULE_280__ = __webpack_require__(/*! ./form/ResponsiveManager */ "./src/form/ResponsiveManager.js");
|
|
55217
|
+
/* harmony import */ var _form_ResponsiveHandler__WEBPACK_IMPORTED_MODULE_281__ = __webpack_require__(/*! ./form/ResponsiveHandler */ "./src/form/ResponsiveHandler.js");
|
|
55218
|
+
/* harmony import */ var _form_GroupBoxResponsiveHandler__WEBPACK_IMPORTED_MODULE_282__ = __webpack_require__(/*! ./form/GroupBoxResponsiveHandler */ "./src/form/GroupBoxResponsiveHandler.js");
|
|
55219
|
+
/* harmony import */ var _form_DesktopResponsiveHandler__WEBPACK_IMPORTED_MODULE_283__ = __webpack_require__(/*! ./form/DesktopResponsiveHandler */ "./src/form/DesktopResponsiveHandler.js");
|
|
55220
|
+
/* harmony import */ var _form_TileOverviewForm__WEBPACK_IMPORTED_MODULE_284__ = __webpack_require__(/*! ./form/TileOverviewForm */ "./src/form/TileOverviewForm.js");
|
|
55221
|
+
/* harmony import */ var _form_TileOverviewFormAdapter__WEBPACK_IMPORTED_MODULE_285__ = __webpack_require__(/*! ./form/TileOverviewFormAdapter */ "./src/form/TileOverviewFormAdapter.js");
|
|
55222
|
+
/* harmony import */ var _table_Table__WEBPACK_IMPORTED_MODULE_286__ = __webpack_require__(/*! ./table/Table */ "./src/table/Table.js");
|
|
55223
|
+
/* harmony import */ var _table_TableAdapter__WEBPACK_IMPORTED_MODULE_287__ = __webpack_require__(/*! ./table/TableAdapter */ "./src/table/TableAdapter.js");
|
|
55224
|
+
/* harmony import */ var _table_TableCompactHandler__WEBPACK_IMPORTED_MODULE_288__ = __webpack_require__(/*! ./table/TableCompactHandler */ "./src/table/TableCompactHandler.js");
|
|
55225
|
+
/* harmony import */ var _table_TableRow__WEBPACK_IMPORTED_MODULE_289__ = __webpack_require__(/*! ./table/TableRow */ "./src/table/TableRow.js");
|
|
55226
|
+
/* harmony import */ var _table_TableMatrix__WEBPACK_IMPORTED_MODULE_290__ = __webpack_require__(/*! ./table/TableMatrix */ "./src/table/TableMatrix.js");
|
|
55227
|
+
/* harmony import */ var _table_TableFooter__WEBPACK_IMPORTED_MODULE_291__ = __webpack_require__(/*! ./table/TableFooter */ "./src/table/TableFooter.js");
|
|
55228
|
+
/* harmony import */ var _table_TableFooterLayout__WEBPACK_IMPORTED_MODULE_292__ = __webpack_require__(/*! ./table/TableFooterLayout */ "./src/table/TableFooterLayout.js");
|
|
55229
|
+
/* harmony import */ var _table_TableInfoFilterTooltip__WEBPACK_IMPORTED_MODULE_293__ = __webpack_require__(/*! ./table/TableInfoFilterTooltip */ "./src/table/TableInfoFilterTooltip.js");
|
|
55230
|
+
/* harmony import */ var _table_TableInfoLoadTooltip__WEBPACK_IMPORTED_MODULE_294__ = __webpack_require__(/*! ./table/TableInfoLoadTooltip */ "./src/table/TableInfoLoadTooltip.js");
|
|
55231
|
+
/* harmony import */ var _table_TableInfoSelectionTooltip__WEBPACK_IMPORTED_MODULE_295__ = __webpack_require__(/*! ./table/TableInfoSelectionTooltip */ "./src/table/TableInfoSelectionTooltip.js");
|
|
55232
|
+
/* harmony import */ var _table_TableHeader__WEBPACK_IMPORTED_MODULE_296__ = __webpack_require__(/*! ./table/TableHeader */ "./src/table/TableHeader.js");
|
|
55233
|
+
/* harmony import */ var _table_TableHeaderMenu__WEBPACK_IMPORTED_MODULE_297__ = __webpack_require__(/*! ./table/TableHeaderMenu */ "./src/table/TableHeaderMenu.js");
|
|
55234
|
+
/* harmony import */ var _table_TableHeaderMenuLayout__WEBPACK_IMPORTED_MODULE_298__ = __webpack_require__(/*! ./table/TableHeaderMenuLayout */ "./src/table/TableHeaderMenuLayout.js");
|
|
55235
|
+
/* harmony import */ var _table_TableHeaderMenuGroup__WEBPACK_IMPORTED_MODULE_299__ = __webpack_require__(/*! ./table/TableHeaderMenuGroup */ "./src/table/TableHeaderMenuGroup.js");
|
|
55236
|
+
/* harmony import */ var _table_TableHeaderMenuButton__WEBPACK_IMPORTED_MODULE_300__ = __webpack_require__(/*! ./table/TableHeaderMenuButton */ "./src/table/TableHeaderMenuButton.js");
|
|
55083
55237
|
/* harmony import */ var _table_TableLayout__WEBPACK_IMPORTED_MODULE_301__ = __webpack_require__(/*! ./table/TableLayout */ "./src/table/TableLayout.js");
|
|
55084
55238
|
/* harmony import */ var _table_TableSelectionHandler__WEBPACK_IMPORTED_MODULE_302__ = __webpack_require__(/*! ./table/TableSelectionHandler */ "./src/table/TableSelectionHandler.js");
|
|
55085
55239
|
/* harmony import */ var _table_TableTileGridMediator__WEBPACK_IMPORTED_MODULE_303__ = __webpack_require__(/*! ./table/TableTileGridMediator */ "./src/table/TableTileGridMediator.js");
|
|
@@ -55468,7 +55622,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55468
55622
|
/* harmony import */ var _jquery_jquery_scout__WEBPACK_IMPORTED_MODULE_686__ = __webpack_require__(/*! ./jquery/jquery-scout */ "./src/jquery/jquery-scout.js");
|
|
55469
55623
|
/* harmony import */ var _jquery_jquery_scout_selectors__WEBPACK_IMPORTED_MODULE_687__ = __webpack_require__(/*! ./jquery/jquery-scout-selectors */ "./src/jquery/jquery-scout-selectors.js");
|
|
55470
55624
|
/* harmony import */ var _index_js__WEBPACK_IMPORTED_MODULE_688__ = __webpack_require__(/*! ./index.js */ "./src/index.js");
|
|
55471
|
-
function _extends() { _extends = Object.assign
|
|
55625
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
55472
55626
|
|
|
55473
55627
|
/*
|
|
55474
55628
|
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
@@ -57168,10 +57322,24 @@ const __origCleanData = (jquery__WEBPACK_IMPORTED_MODULE_0___default().cleanData
|
|
|
57168
57322
|
(jquery__WEBPACK_IMPORTED_MODULE_0___default().fn.isDisplayNone) = function () {
|
|
57169
57323
|
return this.css('display') === 'none';
|
|
57170
57324
|
};
|
|
57325
|
+
/**
|
|
57326
|
+
* @param {boolean} tabbable true, to make the component tabbable. False, to make it neither tabbable nor focusable.
|
|
57327
|
+
* @returns {$}
|
|
57328
|
+
*/
|
|
57329
|
+
|
|
57171
57330
|
|
|
57172
57331
|
(jquery__WEBPACK_IMPORTED_MODULE_0___default().fn.setTabbable) = function (tabbable) {
|
|
57173
57332
|
return this.attr('tabIndex', tabbable ? 0 : null);
|
|
57174
57333
|
};
|
|
57334
|
+
/**
|
|
57335
|
+
* @param {boolean} tabbable true, to make the component tabbable. False, to make it not tabbable but focusable, so the user can focus it with the mouse but not with the keyboard.
|
|
57336
|
+
* @returns {$}
|
|
57337
|
+
*/
|
|
57338
|
+
|
|
57339
|
+
|
|
57340
|
+
(jquery__WEBPACK_IMPORTED_MODULE_0___default().fn.setTabbableOrFocusable) = function (tabbable) {
|
|
57341
|
+
return this.attr('tabIndex', tabbable ? 0 : -1);
|
|
57342
|
+
};
|
|
57175
57343
|
|
|
57176
57344
|
(jquery__WEBPACK_IMPORTED_MODULE_0___default().fn.isTabbable) = function () {
|
|
57177
57345
|
return this.attr('tabIndex') >= 0;
|
|
@@ -58563,6 +58731,7 @@ class CloseKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke {
|
|
|
58563
58731
|
render: !!$drawingArea,
|
|
58564
58732
|
$drawingArea: $drawingArea
|
|
58565
58733
|
};
|
|
58734
|
+
this.inheritAccessibility = false;
|
|
58566
58735
|
}
|
|
58567
58736
|
|
|
58568
58737
|
handle(event) {
|
|
@@ -58607,6 +58776,7 @@ class ContextMenuKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke
|
|
|
58607
58776
|
this.ctrl = false;
|
|
58608
58777
|
this.shift = false;
|
|
58609
58778
|
this.stopPropagation = true;
|
|
58779
|
+
this.inheritAccessibility = false;
|
|
58610
58780
|
}
|
|
58611
58781
|
/**
|
|
58612
58782
|
* @override KeyStroke.js
|
|
@@ -58745,6 +58915,7 @@ class FocusFilterFieldKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyS
|
|
|
58745
58915
|
|
|
58746
58916
|
this.keyStrokeMode = _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke.Mode.DOWN;
|
|
58747
58917
|
this.stopPropagation = true;
|
|
58918
|
+
this.inheritAccessibility = false;
|
|
58748
58919
|
}
|
|
58749
58920
|
/**
|
|
58750
58921
|
* @override KeyStroke.js
|
|
@@ -59021,6 +59192,7 @@ class KeyStroke {
|
|
|
59021
59192
|
this.which = []; // keys which this keystroke is bound to. Typically, this is a single key, but may be multiple keys if handling the same action (e.g. ENTER and SPACE on a button).
|
|
59022
59193
|
|
|
59023
59194
|
this.ctrl = false;
|
|
59195
|
+
this.inheritAccessibility = true;
|
|
59024
59196
|
this.alt = false;
|
|
59025
59197
|
this.shift = false;
|
|
59026
59198
|
this.preventDefault = true;
|
|
@@ -59146,11 +59318,20 @@ class KeyStroke {
|
|
|
59146
59318
|
// Check visibility
|
|
59147
59319
|
if (this.field.visible !== undefined && !this.field.visible) {
|
|
59148
59320
|
return false;
|
|
59149
|
-
} // Check enabled state
|
|
59321
|
+
} // Check enabled state (if inheritAccessibility is true)
|
|
59150
59322
|
|
|
59151
59323
|
|
|
59152
|
-
if (
|
|
59153
|
-
return
|
|
59324
|
+
if (!this.inheritAccessibility) {
|
|
59325
|
+
return true;
|
|
59326
|
+
}
|
|
59327
|
+
|
|
59328
|
+
if (this.field.enabledComputed !== undefined) {
|
|
59329
|
+
return this.field.enabledComputed;
|
|
59330
|
+
}
|
|
59331
|
+
|
|
59332
|
+
if (this.field.enabled !== undefined) {
|
|
59333
|
+
// This should actually not happen because this.field should always be a hypothetical case if this.field is not a widget
|
|
59334
|
+
return this.field.enabled;
|
|
59154
59335
|
}
|
|
59155
59336
|
}
|
|
59156
59337
|
|
|
@@ -59996,17 +60177,22 @@ class TabItemKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke {
|
|
|
59996
60177
|
this.renderingHints.offset = 16;
|
|
59997
60178
|
this.renderingHints.hAlign = _index__WEBPACK_IMPORTED_MODULE_0__.HAlign.RIGHT;
|
|
59998
60179
|
|
|
59999
|
-
this.renderingHints
|
|
60000
|
-
|
|
60001
|
-
|
|
60180
|
+
this.renderingHints.render = () => {
|
|
60181
|
+
let tab = this.field.getTab();
|
|
60182
|
+
return tab && tab.rendered;
|
|
60183
|
+
};
|
|
60184
|
+
|
|
60185
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => this.field.getTab().$container;
|
|
60186
|
+
|
|
60187
|
+
this.inheritAccessibility = false;
|
|
60002
60188
|
}
|
|
60003
60189
|
/**
|
|
60004
|
-
* @override
|
|
60190
|
+
* @override
|
|
60005
60191
|
*/
|
|
60006
60192
|
|
|
60007
60193
|
|
|
60008
60194
|
handle(event) {
|
|
60009
|
-
this.field.
|
|
60195
|
+
this.field.select();
|
|
60010
60196
|
}
|
|
60011
60197
|
|
|
60012
60198
|
}
|
|
@@ -66176,9 +66362,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
66176
66362
|
|
|
66177
66363
|
|
|
66178
66364
|
|
|
66179
|
-
|
|
66180
|
-
|
|
66181
|
-
|
|
66365
|
+
const Level = {
|
|
66366
|
+
TRACE: 'trace',
|
|
66367
|
+
DEBUG: 'debug',
|
|
66368
|
+
INFO: 'info',
|
|
66369
|
+
WARN: 'warn',
|
|
66370
|
+
ERROR: 'error',
|
|
66371
|
+
FATAL: 'fatal'
|
|
66372
|
+
};
|
|
66373
|
+
const DEFAULT_LEVEL = Level.TRACE;
|
|
66182
66374
|
let initialized = false;
|
|
66183
66375
|
let _appendersToAdd = [];
|
|
66184
66376
|
let showStackTraces = true;
|
|
@@ -66247,22 +66439,22 @@ function parseLevel(level) {
|
|
|
66247
66439
|
level = level.toLowerCase();
|
|
66248
66440
|
|
|
66249
66441
|
switch (level) {
|
|
66250
|
-
case
|
|
66442
|
+
case Level.TRACE:
|
|
66251
66443
|
return log4javascript.Level.TRACE;
|
|
66252
66444
|
|
|
66253
|
-
case
|
|
66445
|
+
case Level.DEBUG:
|
|
66254
66446
|
return log4javascript.Level.DEBUG;
|
|
66255
66447
|
|
|
66256
|
-
case
|
|
66448
|
+
case Level.INFO:
|
|
66257
66449
|
return log4javascript.Level.INFO;
|
|
66258
66450
|
|
|
66259
|
-
case
|
|
66451
|
+
case Level.WARN:
|
|
66260
66452
|
return log4javascript.Level.WARN;
|
|
66261
66453
|
|
|
66262
|
-
case
|
|
66454
|
+
case Level.ERROR:
|
|
66263
66455
|
return log4javascript.Level.ERROR;
|
|
66264
66456
|
|
|
66265
|
-
case
|
|
66457
|
+
case Level.FATAL:
|
|
66266
66458
|
return log4javascript.Level.FATAL;
|
|
66267
66459
|
}
|
|
66268
66460
|
}
|
|
@@ -66281,6 +66473,7 @@ function addAppender(factoryName, options) {
|
|
|
66281
66473
|
}
|
|
66282
66474
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
66283
66475
|
DEFAULT_LEVEL,
|
|
66476
|
+
Level,
|
|
66284
66477
|
addAppender,
|
|
66285
66478
|
bootstrap,
|
|
66286
66479
|
initLog4Javascript,
|
|
@@ -66386,11 +66579,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
66386
66579
|
/* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! jquery */ "jquery");
|
|
66387
66580
|
/* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(jquery__WEBPACK_IMPORTED_MODULE_1__);
|
|
66388
66581
|
/*
|
|
66389
|
-
* Copyright (c) 2010-
|
|
66582
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
66390
66583
|
* All rights reserved. This program and the accompanying materials
|
|
66391
66584
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
66392
66585
|
* which accompanies this distribution, and is available at
|
|
66393
|
-
*
|
|
66586
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
66394
66587
|
*
|
|
66395
66588
|
* Contributors:
|
|
66396
66589
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -66435,7 +66628,7 @@ class LoginBox extends _index__WEBPACK_IMPORTED_MODULE_0__.Box {
|
|
|
66435
66628
|
this.$form = jquery__WEBPACK_IMPORTED_MODULE_1___default()('<form>').attr('action', this.authUrl).attr('method', 'post').submit(this._onLoginFormSubmit.bind(this)).appendTo(this.$content);
|
|
66436
66629
|
|
|
66437
66630
|
if (this.messageKey) {
|
|
66438
|
-
this.$message = jquery__WEBPACK_IMPORTED_MODULE_1___default()('<div>').attr('id', 'message-box').html(_index__WEBPACK_IMPORTED_MODULE_0__.strings.nl2br(this.texts.get(this.messageKey))).appendTo(this.$form);
|
|
66631
|
+
this.$message = jquery__WEBPACK_IMPORTED_MODULE_1___default()('<div>').attr('id', 'message-box').addClass('message-box').html(_index__WEBPACK_IMPORTED_MODULE_0__.strings.nl2br(this.texts.get(this.messageKey))).appendTo(this.$form);
|
|
66439
66632
|
}
|
|
66440
66633
|
|
|
66441
66634
|
this.$user = jquery__WEBPACK_IMPORTED_MODULE_1___default()('<input>').attr('type', 'text').attr('autocapitalize', 'off').attr('autocorrect', 'off').placeholder(this.texts.get('ui.User')).appendTo(this.$form);
|
|
@@ -70243,25 +70436,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
70243
70436
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
70244
70437
|
*/
|
|
70245
70438
|
|
|
70246
|
-
class MenuExecKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.
|
|
70439
|
+
class MenuExecKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.ActionExecKeyStroke {
|
|
70247
70440
|
constructor(menu) {
|
|
70248
|
-
super();
|
|
70249
|
-
this.field = menu;
|
|
70250
|
-
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.SPACE, _index__WEBPACK_IMPORTED_MODULE_0__.keys.ENTER];
|
|
70251
|
-
this.stopPropagation = true;
|
|
70441
|
+
super(menu);
|
|
70252
70442
|
this.renderingHints.offset = 16;
|
|
70253
|
-
|
|
70254
|
-
this.renderingHints.$drawingArea = function ($drawingArea, event) {
|
|
70255
|
-
return this.field.$container;
|
|
70256
|
-
}.bind(this);
|
|
70257
|
-
}
|
|
70258
|
-
/**
|
|
70259
|
-
* @override KeyStroke.js
|
|
70260
|
-
*/
|
|
70261
|
-
|
|
70262
|
-
|
|
70263
|
-
handle(event) {
|
|
70264
|
-
this.field.doAction();
|
|
70265
70443
|
}
|
|
70266
70444
|
|
|
70267
70445
|
}
|
|
@@ -70522,6 +70700,7 @@ class MenuNavigationKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStr
|
|
|
70522
70700
|
constructor(popup) {
|
|
70523
70701
|
super();
|
|
70524
70702
|
this.field = popup;
|
|
70703
|
+
this.inheritAccessibility = false;
|
|
70525
70704
|
}
|
|
70526
70705
|
|
|
70527
70706
|
_accept(event) {
|
|
@@ -71845,6 +72024,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
71845
72024
|
*/
|
|
71846
72025
|
|
|
71847
72026
|
class MenuBarLeftKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke {
|
|
72027
|
+
// noinspection DuplicatedCode
|
|
71848
72028
|
constructor(menuBar) {
|
|
71849
72029
|
super();
|
|
71850
72030
|
this.field = menuBar;
|
|
@@ -71852,6 +72032,7 @@ class MenuBarLeftKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke
|
|
|
71852
72032
|
this.renderingHints.render = false;
|
|
71853
72033
|
this.stopPropagation = true;
|
|
71854
72034
|
this.keyStrokeMode = _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke.Mode.DOWN;
|
|
72035
|
+
this.inheritAccessibility = false;
|
|
71855
72036
|
}
|
|
71856
72037
|
|
|
71857
72038
|
handle(event) {
|
|
@@ -71965,6 +72146,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
71965
72146
|
*/
|
|
71966
72147
|
|
|
71967
72148
|
class MenuBarRightKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke {
|
|
72149
|
+
// noinspection DuplicatedCode
|
|
71968
72150
|
constructor(menuBar) {
|
|
71969
72151
|
super();
|
|
71970
72152
|
this.field = menuBar;
|
|
@@ -71972,6 +72154,7 @@ class MenuBarRightKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStrok
|
|
|
71972
72154
|
this.renderingHints.render = false;
|
|
71973
72155
|
this.stopPropagation = true;
|
|
71974
72156
|
this.keyStrokeMode = _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke.Mode.DOWN;
|
|
72157
|
+
this.inheritAccessibility = false;
|
|
71975
72158
|
}
|
|
71976
72159
|
|
|
71977
72160
|
handle(event) {
|
|
@@ -75963,6 +76146,10 @@ class Planner extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
75963
76146
|
this._rerenderActivities();
|
|
75964
76147
|
|
|
75965
76148
|
this._renderSelectedActivity();
|
|
76149
|
+
|
|
76150
|
+
this.validateLayoutTree(); // Layouting is required for adjusting the scroll position
|
|
76151
|
+
|
|
76152
|
+
this._reconcileScrollPos();
|
|
75966
76153
|
}
|
|
75967
76154
|
}
|
|
75968
76155
|
|
|
@@ -84691,15 +84878,18 @@ class Session {
|
|
|
84691
84878
|
this._sendRequest(request);
|
|
84692
84879
|
}
|
|
84693
84880
|
/**
|
|
84694
|
-
* Sends a request containing the
|
|
84695
|
-
* The request is sent immediately (does not await pending requests)
|
|
84881
|
+
* Sends a request containing the log message for logging purpose.
|
|
84882
|
+
* The request is sent immediately (does not await pending requests).
|
|
84883
|
+
* @param {string} message the log message
|
|
84884
|
+
* @param {logging.Level} [level] the log level used to log the message. Default is {@link logging.Level.ERROR}.
|
|
84696
84885
|
*/
|
|
84697
84886
|
|
|
84698
84887
|
|
|
84699
|
-
sendLogRequest(message) {
|
|
84888
|
+
sendLogRequest(message, level) {
|
|
84700
84889
|
let request = this._newRequest({
|
|
84701
84890
|
log: true,
|
|
84702
|
-
message: message
|
|
84891
|
+
message: message,
|
|
84892
|
+
level: _index__WEBPACK_IMPORTED_MODULE_0__.scout.nvl(level, _index__WEBPACK_IMPORTED_MODULE_0__.logging.Level.ERROR)
|
|
84703
84893
|
});
|
|
84704
84894
|
|
|
84705
84895
|
if (this.currentEvent) {
|
|
@@ -88294,7 +88484,7 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
88294
88484
|
}
|
|
88295
88485
|
|
|
88296
88486
|
let oldRowHeight = row.height;
|
|
88297
|
-
row.height = $row
|
|
88487
|
+
row.height = this._measureRowHeight($row);
|
|
88298
88488
|
|
|
88299
88489
|
if (oldRowHeight !== row.height) {
|
|
88300
88490
|
this.invalidateLayoutTree();
|
|
@@ -89353,11 +89543,13 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
89353
89543
|
|
|
89354
89544
|
_updateRowHeight() {
|
|
89355
89545
|
let $emptyRow = this.$data.appendDiv('table-row');
|
|
89356
|
-
|
|
89546
|
+
|
|
89547
|
+
let $emptyAggrRow = this._build$AggregateRow().appendTo(this.$data);
|
|
89548
|
+
|
|
89357
89549
|
$emptyRow.appendDiv('table-cell').html(' ');
|
|
89358
|
-
$emptyAggrRow.appendDiv('table-cell').html(' ');
|
|
89359
|
-
this.rowHeight = $emptyRow
|
|
89360
|
-
this.aggregateRowHeight = $emptyAggrRow
|
|
89550
|
+
$emptyAggrRow.appendDiv('table-cell table-aggregate-cell').appendSpan('text').html(' ');
|
|
89551
|
+
this.rowHeight = this._measureRowHeight($emptyRow);
|
|
89552
|
+
this.aggregateRowHeight = this._measureRowHeight($emptyAggrRow);
|
|
89361
89553
|
$emptyRow.remove();
|
|
89362
89554
|
$emptyAggrRow.remove();
|
|
89363
89555
|
}
|
|
@@ -89371,7 +89563,7 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
89371
89563
|
if (!row.$row) {
|
|
89372
89564
|
row.height = null;
|
|
89373
89565
|
} else {
|
|
89374
|
-
row.height = row.$row
|
|
89566
|
+
row.height = this._measureRowHeight(row.$row);
|
|
89375
89567
|
}
|
|
89376
89568
|
});
|
|
89377
89569
|
|
|
@@ -89379,7 +89571,7 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
89379
89571
|
if (!aggregateRow.$row) {
|
|
89380
89572
|
aggregateRow.height = null;
|
|
89381
89573
|
} else {
|
|
89382
|
-
aggregateRow.height = aggregateRow.$row
|
|
89574
|
+
aggregateRow.height = this._measureRowHeight(aggregateRow.$row);
|
|
89383
89575
|
}
|
|
89384
89576
|
});
|
|
89385
89577
|
}
|
|
@@ -89733,7 +89925,7 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
89733
89925
|
|
|
89734
89926
|
this._destroyTooltipsForRow(row);
|
|
89735
89927
|
|
|
89736
|
-
this.
|
|
89928
|
+
this._destroyCellEditorForRow(row); // Do not remove rows which are removed using an animation
|
|
89737
89929
|
|
|
89738
89930
|
|
|
89739
89931
|
if (!$row.hasClass('hiding')) {
|
|
@@ -89814,7 +90006,7 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
89814
90006
|
|
|
89815
90007
|
|
|
89816
90008
|
_installRow(row) {
|
|
89817
|
-
row.height = row.$row
|
|
90009
|
+
row.height = this._measureRowHeight(row.$row);
|
|
89818
90010
|
|
|
89819
90011
|
if (row.hasError) {
|
|
89820
90012
|
this._showCellErrorForRow(row);
|
|
@@ -90340,11 +90532,11 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
90340
90532
|
return;
|
|
90341
90533
|
}
|
|
90342
90534
|
|
|
90343
|
-
let $aggregateRow = this.
|
|
90535
|
+
let $aggregateRow = this._build$AggregateRow(aggregateRow);
|
|
90344
90536
|
|
|
90345
90537
|
$aggregateRow[insertFunc](refRow.$row).width(this.rowWidth);
|
|
90346
90538
|
this.visibleColumns().map(column => jquery__WEBPACK_IMPORTED_MODULE_1___default()(column.buildCellForAggregateRow(aggregateRow)).appendTo($aggregateRow)).forEach($c => this._resizeAggregateCell($c));
|
|
90347
|
-
aggregateRow.height = $aggregateRow
|
|
90539
|
+
aggregateRow.height = this._measureRowHeight($aggregateRow);
|
|
90348
90540
|
aggregateRow.$row = $aggregateRow;
|
|
90349
90541
|
|
|
90350
90542
|
if (animate) {
|
|
@@ -90353,7 +90545,7 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
90353
90545
|
}, this);
|
|
90354
90546
|
}
|
|
90355
90547
|
|
|
90356
|
-
|
|
90548
|
+
_build$AggregateRow(aggregateRow) {
|
|
90357
90549
|
let onTop = this.groupingStyle === Table.GroupingStyle.TOP;
|
|
90358
90550
|
let $aggregateRow = this.$container.makeDiv('table-aggregate-row').data('aggregateRow', aggregateRow);
|
|
90359
90551
|
$aggregateRow.toggleClass('grouping-style-top', onTop);
|
|
@@ -90993,7 +91185,7 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
90993
91185
|
|
|
90994
91186
|
this._destroyTooltipsForRow(row);
|
|
90995
91187
|
|
|
90996
|
-
this.
|
|
91188
|
+
this._destroyCellEditorForRow(row);
|
|
90997
91189
|
|
|
90998
91190
|
this._installRow(row);
|
|
90999
91191
|
|
|
@@ -91072,9 +91264,9 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
91072
91264
|
}
|
|
91073
91265
|
}
|
|
91074
91266
|
|
|
91075
|
-
|
|
91267
|
+
_destroyCellEditorForRow(row) {
|
|
91076
91268
|
if (this.cellEditorPopup && this.cellEditorPopup.rendered && this.cellEditorPopup.row.id === row.id) {
|
|
91077
|
-
this.cellEditorPopup.
|
|
91269
|
+
this.cellEditorPopup.destroy();
|
|
91078
91270
|
}
|
|
91079
91271
|
}
|
|
91080
91272
|
|
|
@@ -93100,7 +93292,7 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
93100
93292
|
this.$data.setEnabled(enabled);
|
|
93101
93293
|
}
|
|
93102
93294
|
|
|
93103
|
-
this.$container.
|
|
93295
|
+
this.$container.setTabbableOrFocusable(enabled);
|
|
93104
93296
|
}
|
|
93105
93297
|
/**
|
|
93106
93298
|
* @override Widget.js
|
|
@@ -93257,8 +93449,12 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
93257
93449
|
}
|
|
93258
93450
|
|
|
93259
93451
|
_heightForRow(row) {
|
|
93260
|
-
let height = 0
|
|
93261
|
-
|
|
93452
|
+
let height = 0;
|
|
93453
|
+
let aggregateRow = row.aggregateRowBefore;
|
|
93454
|
+
|
|
93455
|
+
if (this.groupingStyle === Table.GroupingStyle.BOTTOM) {
|
|
93456
|
+
aggregateRow = row.aggregateRowAfter;
|
|
93457
|
+
}
|
|
93262
93458
|
|
|
93263
93459
|
if (row.height) {
|
|
93264
93460
|
height = row.height;
|
|
@@ -93277,6 +93473,13 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
93277
93473
|
|
|
93278
93474
|
return height;
|
|
93279
93475
|
}
|
|
93476
|
+
|
|
93477
|
+
_measureRowHeight($row) {
|
|
93478
|
+
return _index__WEBPACK_IMPORTED_MODULE_0__.graphics.size($row, {
|
|
93479
|
+
includeMargin: true,
|
|
93480
|
+
exact: true
|
|
93481
|
+
}).height;
|
|
93482
|
+
}
|
|
93280
93483
|
/**
|
|
93281
93484
|
* Returns a range of size this.viewRangeSize. Start of range is rowIndex - viewRangeSize / 4.
|
|
93282
93485
|
* -> 1/4 of the rows are before the viewport 2/4 in the viewport 1/4 after the viewport,
|
|
@@ -93731,7 +93934,6 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
93731
93934
|
if (promise.state() === 'resolved') {
|
|
93732
93935
|
// Do it immediately if promise has already been resolved.
|
|
93733
93936
|
// This makes sure updateRow does not immediately reopen the editor after closing.
|
|
93734
|
-
// At least for Scout JS, for Scout Classic it prevents flickering (endCellEdit comes after updateRows, but updateRows does not know whether the editor is closing so it will reopen it)
|
|
93735
93937
|
destroyEditor();
|
|
93736
93938
|
} else {
|
|
93737
93939
|
promise.then(destroyEditor);
|
|
@@ -93771,7 +93973,7 @@ class Table extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
93771
93973
|
_onDesktopPopupOpen(event) {
|
|
93772
93974
|
let popup = event.popup;
|
|
93773
93975
|
|
|
93774
|
-
if (!this.
|
|
93976
|
+
if (!this.isFocusable(false)) {
|
|
93775
93977
|
return;
|
|
93776
93978
|
} // Set table style to focused if a context menu or a menu bar popup opens, so that it looks as it still has the focus
|
|
93777
93979
|
|
|
@@ -94115,29 +94317,21 @@ class TableAdapter extends _index__WEBPACK_IMPORTED_MODULE_0__.ModelAdapter {
|
|
|
94115
94317
|
_onWidgetCompleteCellEdit(event) {
|
|
94116
94318
|
event.preventDefault();
|
|
94117
94319
|
|
|
94118
|
-
this._sendCompleteCellEdit(
|
|
94320
|
+
this._sendCompleteCellEdit();
|
|
94119
94321
|
}
|
|
94120
94322
|
|
|
94121
|
-
_sendCompleteCellEdit(
|
|
94122
|
-
|
|
94123
|
-
fieldId: field.id
|
|
94124
|
-
};
|
|
94125
|
-
|
|
94126
|
-
this._send('completeCellEdit', data);
|
|
94323
|
+
_sendCompleteCellEdit() {
|
|
94324
|
+
this._send('completeCellEdit');
|
|
94127
94325
|
}
|
|
94128
94326
|
|
|
94129
94327
|
_onWidgetCancelCellEdit(event) {
|
|
94130
94328
|
event.preventDefault();
|
|
94131
94329
|
|
|
94132
|
-
this._sendCancelCellEdit(
|
|
94330
|
+
this._sendCancelCellEdit();
|
|
94133
94331
|
}
|
|
94134
94332
|
|
|
94135
|
-
_sendCancelCellEdit(
|
|
94136
|
-
|
|
94137
|
-
fieldId: field.id
|
|
94138
|
-
};
|
|
94139
|
-
|
|
94140
|
-
this._send('cancelCellEdit', data);
|
|
94333
|
+
_sendCancelCellEdit() {
|
|
94334
|
+
this._send('cancelCellEdit');
|
|
94141
94335
|
}
|
|
94142
94336
|
|
|
94143
94337
|
_onWidgetRowsChecked(event) {
|
|
@@ -94453,6 +94647,11 @@ class TableAdapter extends _index__WEBPACK_IMPORTED_MODULE_0__.ModelAdapter {
|
|
|
94453
94647
|
|
|
94454
94648
|
_onEndCellEdit(fieldId) {
|
|
94455
94649
|
let field = this.session.getModelAdapter(fieldId);
|
|
94650
|
+
|
|
94651
|
+
if (!field) {
|
|
94652
|
+
throw new Error('Field adapter could not be resolved. Id: ' + fieldId);
|
|
94653
|
+
}
|
|
94654
|
+
|
|
94456
94655
|
this.widget.endCellEdit(field.widget);
|
|
94457
94656
|
}
|
|
94458
94657
|
|
|
@@ -97850,7 +98049,7 @@ class TableHeaderMenuButton extends _index__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
97850
98049
|
_initKeyStrokeContext() {
|
|
97851
98050
|
super._initKeyStrokeContext();
|
|
97852
98051
|
|
|
97853
|
-
this.keyStrokeContext.registerKeyStroke([new _index__WEBPACK_IMPORTED_MODULE_0__.
|
|
98052
|
+
this.keyStrokeContext.registerKeyStroke([new _index__WEBPACK_IMPORTED_MODULE_0__.ActionExecKeyStroke(this)]);
|
|
97854
98053
|
}
|
|
97855
98054
|
|
|
97856
98055
|
_render() {
|
|
@@ -97896,45 +98095,6 @@ class TableHeaderMenuButton extends _index__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
97896
98095
|
|
|
97897
98096
|
/***/ }),
|
|
97898
98097
|
|
|
97899
|
-
/***/ "./src/table/TableHeaderMenuButtonKeyStroke.js":
|
|
97900
|
-
/*!*****************************************************!*\
|
|
97901
|
-
!*** ./src/table/TableHeaderMenuButtonKeyStroke.js ***!
|
|
97902
|
-
\*****************************************************/
|
|
97903
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
97904
|
-
|
|
97905
|
-
__webpack_require__.r(__webpack_exports__);
|
|
97906
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
97907
|
-
/* harmony export */ "default": () => (/* binding */ TableHeaderMenuButtonKeyStroke)
|
|
97908
|
-
/* harmony export */ });
|
|
97909
|
-
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../index */ "./src/index.js");
|
|
97910
|
-
/*
|
|
97911
|
-
* Copyright (c) 2014-2017 BSI Business Systems Integration AG.
|
|
97912
|
-
* All rights reserved. This program and the accompanying materials
|
|
97913
|
-
* are made available under the terms of the Eclipse Public License v1.0
|
|
97914
|
-
* which accompanies this distribution, and is available at
|
|
97915
|
-
* http://www.eclipse.org/legal/epl-v10.html
|
|
97916
|
-
*
|
|
97917
|
-
* Contributors:
|
|
97918
|
-
* BSI Business Systems Integration AG - initial API and implementation
|
|
97919
|
-
*/
|
|
97920
|
-
|
|
97921
|
-
class TableHeaderMenuButtonKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke {
|
|
97922
|
-
constructor(field) {
|
|
97923
|
-
super();
|
|
97924
|
-
this.field = field;
|
|
97925
|
-
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.ENTER, _index__WEBPACK_IMPORTED_MODULE_0__.keys.SPACE];
|
|
97926
|
-
this.renderingHints.render = true;
|
|
97927
|
-
this.stopPropagation = true;
|
|
97928
|
-
}
|
|
97929
|
-
|
|
97930
|
-
handle(event) {
|
|
97931
|
-
this.field.doAction();
|
|
97932
|
-
}
|
|
97933
|
-
|
|
97934
|
-
}
|
|
97935
|
-
|
|
97936
|
-
/***/ }),
|
|
97937
|
-
|
|
97938
98098
|
/***/ "./src/table/TableHeaderMenuGroup.js":
|
|
97939
98099
|
/*!*******************************************!*\
|
|
97940
98100
|
!*** ./src/table/TableHeaderMenuGroup.js ***!
|
|
@@ -98533,7 +98693,13 @@ class TableLayout extends _index__WEBPACK_IMPORTED_MODULE_0__.AbstractLayout {
|
|
|
98533
98693
|
} // Always render viewport (not only when viewRangeSize changes), because view range depends on scroll position and data height
|
|
98534
98694
|
|
|
98535
98695
|
|
|
98536
|
-
this.table._renderViewport(); //
|
|
98696
|
+
this.table._renderViewport(); // Render scroll top again to make sure the data is really at the correct position after rendering viewport.
|
|
98697
|
+
// Somehow table.$data[0].scrollTop changes during _renderViewport sometimes (e.g. when there are aggregate rows)
|
|
98698
|
+
|
|
98699
|
+
|
|
98700
|
+
if (!htmlContainer.layouted) {
|
|
98701
|
+
this.table._renderScrollTop();
|
|
98702
|
+
} // Make sure tooltips and editor popup are at correct position after layouting (e.g after window resizing)
|
|
98537
98703
|
|
|
98538
98704
|
|
|
98539
98705
|
this.table.tooltips.forEach(tooltip => {
|
|
@@ -102081,15 +102247,19 @@ class Column {
|
|
|
102081
102247
|
cell.field = field; // Override field alignment with the cell's alignment
|
|
102082
102248
|
|
|
102083
102249
|
cell.field.gridData.horizontalAlignment = cell.horizontalAlignment;
|
|
102084
|
-
popup =
|
|
102250
|
+
popup = this._createEditorPopup(row, cell);
|
|
102251
|
+
popup.$anchor = $cell;
|
|
102252
|
+
popup.open(this.table.$data);
|
|
102253
|
+
return popup;
|
|
102254
|
+
}
|
|
102255
|
+
|
|
102256
|
+
_createEditorPopup(row, cell) {
|
|
102257
|
+
return _index__WEBPACK_IMPORTED_MODULE_0__.scout.create('CellEditorPopup', {
|
|
102085
102258
|
parent: this.table,
|
|
102086
102259
|
column: this,
|
|
102087
102260
|
row: row,
|
|
102088
102261
|
cell: cell
|
|
102089
102262
|
});
|
|
102090
|
-
popup.$anchor = $cell;
|
|
102091
|
-
popup.open(this.table.$data);
|
|
102092
|
-
return popup;
|
|
102093
102263
|
}
|
|
102094
102264
|
/**
|
|
102095
102265
|
* @returns {Cell} the cell object for this column from the given row.
|
|
@@ -102788,7 +102958,7 @@ _defineProperty(Column, "DEFAULT_MIN_WIDTH", 60);
|
|
|
102788
102958
|
|
|
102789
102959
|
_defineProperty(Column, "SMALL_MIN_WIDTH", 38);
|
|
102790
102960
|
|
|
102791
|
-
_defineProperty(Column, "NARROW_MIN_WIDTH",
|
|
102961
|
+
_defineProperty(Column, "NARROW_MIN_WIDTH", 34);
|
|
102792
102962
|
|
|
102793
102963
|
/***/ }),
|
|
102794
102964
|
|
|
@@ -102955,7 +103125,7 @@ class ColumnOptimalWidthMeasurer {
|
|
|
102955
103125
|
let columns = this.table.visibleColumns();
|
|
102956
103126
|
let colIndex = columns.indexOf(this.column);
|
|
102957
103127
|
|
|
102958
|
-
let $row = this.table.
|
|
103128
|
+
let $row = this.table._build$AggregateRow(row);
|
|
102959
103129
|
|
|
102960
103130
|
$row.appendTo(this.table.$data);
|
|
102961
103131
|
columns.map(c => c.buildCellForAggregateRow(row)).forEach(c => jquery__WEBPACK_IMPORTED_MODULE_1___default()(c).appendTo($row));
|
|
@@ -105780,14 +105950,11 @@ class CellEditorPopup extends _index__WEBPACK_IMPORTED_MODULE_0__.Popup {
|
|
|
105780
105950
|
field.render();
|
|
105781
105951
|
field.prepareForCellEdit({
|
|
105782
105952
|
cssClass: cssClass
|
|
105783
|
-
});
|
|
105784
|
-
|
|
105785
|
-
this._alignWithSelection(); // Make sure cell content is not visible while the editor is open (especially necessary for transparent editors like checkboxes)
|
|
105786
|
-
|
|
105953
|
+
}); // Make sure cell content is not visible while the editor is open (especially necessary for transparent editors like checkboxes)
|
|
105787
105954
|
|
|
105788
105955
|
this.$anchor.css('visibility', 'hidden');
|
|
105789
105956
|
|
|
105790
|
-
this._rowOrderChangedFunc =
|
|
105957
|
+
this._rowOrderChangedFunc = event => {
|
|
105791
105958
|
if (event.animating) {
|
|
105792
105959
|
// row is only set while animating
|
|
105793
105960
|
if (event.row === this.row) {
|
|
@@ -105796,7 +105963,7 @@ class CellEditorPopup extends _index__WEBPACK_IMPORTED_MODULE_0__.Popup {
|
|
|
105796
105963
|
} else {
|
|
105797
105964
|
this.position();
|
|
105798
105965
|
}
|
|
105799
|
-
}
|
|
105966
|
+
};
|
|
105800
105967
|
|
|
105801
105968
|
this.table.on('rowOrderChanged', this._rowOrderChangedFunc); // Set table style to focused, so that it looks as it still has the focus.
|
|
105802
105969
|
// This prevents flickering if the cell editor gets opened, especially when tabbing to the next cell editor.
|
|
@@ -105866,14 +106033,15 @@ class CellEditorPopup extends _index__WEBPACK_IMPORTED_MODULE_0__.Popup {
|
|
|
105866
106033
|
}
|
|
105867
106034
|
|
|
105868
106035
|
position() {
|
|
105869
|
-
let
|
|
105870
|
-
rowBounds,
|
|
105871
|
-
$tableData = this.table.$data,
|
|
106036
|
+
let $tableData = this.table.$data,
|
|
105872
106037
|
$row = this.row.$row,
|
|
105873
106038
|
$cell = this.$anchor,
|
|
105874
106039
|
insetsLeft = $tableData.cssPaddingLeft() + $row.cssMarginLeft() + $row.cssBorderLeftWidth();
|
|
105875
|
-
|
|
105876
|
-
|
|
106040
|
+
|
|
106041
|
+
this._alignWithSelection();
|
|
106042
|
+
|
|
106043
|
+
let cellBounds = _index__WEBPACK_IMPORTED_MODULE_0__.graphics.bounds($cell);
|
|
106044
|
+
let rowBounds = _index__WEBPACK_IMPORTED_MODULE_0__.graphics.bounds($row);
|
|
105877
106045
|
this.setLocation(new _index__WEBPACK_IMPORTED_MODULE_0__.Point(insetsLeft + cellBounds.x, $tableData.scrollTop() + rowBounds.y));
|
|
105878
106046
|
}
|
|
105879
106047
|
/**
|
|
@@ -105903,7 +106071,8 @@ class CellEditorPopup extends _index__WEBPACK_IMPORTED_MODULE_0__.Popup {
|
|
|
105903
106071
|
}
|
|
105904
106072
|
|
|
105905
106073
|
this._pendingCompleteCellEdit.then(() => {
|
|
105906
|
-
|
|
106074
|
+
// Ensure complete will never be called more than once
|
|
106075
|
+
this._pendingCompleteCellEdit = jquery__WEBPACK_IMPORTED_MODULE_1___default().resolvedPromise();
|
|
105907
106076
|
});
|
|
105908
106077
|
|
|
105909
106078
|
return this._pendingCompleteCellEdit;
|
|
@@ -105944,12 +106113,7 @@ class CellEditorPopup extends _index__WEBPACK_IMPORTED_MODULE_0__.Popup {
|
|
|
105944
106113
|
}
|
|
105945
106114
|
|
|
105946
106115
|
_onKeyStroke(event) {
|
|
105947
|
-
if (!this.
|
|
105948
|
-
return;
|
|
105949
|
-
}
|
|
105950
|
-
|
|
105951
|
-
if (this.$container.isOrHas(event.keyStrokeContext.$getScopeTarget())) {
|
|
105952
|
-
// Don't interfere with key strokes of the popup or children of the popup (otherwise pressing enter would close both the popup and the form at once)
|
|
106116
|
+
if (!this._invokeCompleteEditBeforeKeyStroke(event)) {
|
|
105953
106117
|
return;
|
|
105954
106118
|
} // Make sure completeEdit is called immediately after calling acceptInput.
|
|
105955
106119
|
// Otherwise the key stroke will be executed before completing the edit which prevents the input from being saved
|
|
@@ -105959,6 +106123,19 @@ class CellEditorPopup extends _index__WEBPACK_IMPORTED_MODULE_0__.Popup {
|
|
|
105959
106123
|
this.completeEdit(false);
|
|
105960
106124
|
}
|
|
105961
106125
|
|
|
106126
|
+
_invokeCompleteEditBeforeKeyStroke(event) {
|
|
106127
|
+
if (!this.session.keyStrokeManager.invokeAcceptInputOnActiveValueField(event.keyStroke, event.keyStrokeContext)) {
|
|
106128
|
+
return false;
|
|
106129
|
+
}
|
|
106130
|
+
|
|
106131
|
+
if (this.$container.isOrHas(event.keyStrokeContext.$getScopeTarget())) {
|
|
106132
|
+
// Don't interfere with key strokes of the popup or children of the popup (otherwise pressing enter would close both the popup and the form at once)
|
|
106133
|
+
return false;
|
|
106134
|
+
}
|
|
106135
|
+
|
|
106136
|
+
return true;
|
|
106137
|
+
}
|
|
106138
|
+
|
|
105962
106139
|
waitForCompleteCellEdit() {
|
|
105963
106140
|
if (this._pendingCompleteCellEdit) {
|
|
105964
106141
|
return this._pendingCompleteCellEdit.promise();
|
|
@@ -106130,6 +106307,7 @@ class AbstractTableNavigationKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0
|
|
|
106130
106307
|
this.shift = !table.multiSelect ? false : undefined;
|
|
106131
106308
|
this.stopPropagation = true;
|
|
106132
106309
|
this.keyStrokeMode = _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke.Mode.DOWN;
|
|
106310
|
+
this.inheritAccessibility = false;
|
|
106133
106311
|
}
|
|
106134
106312
|
|
|
106135
106313
|
_accept(event) {
|
|
@@ -106413,6 +106591,7 @@ class TableCopyKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke {
|
|
|
106413
106591
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.C];
|
|
106414
106592
|
this.ctrl = true;
|
|
106415
106593
|
this.renderingHints.render = false;
|
|
106594
|
+
this.inheritAccessibility = false;
|
|
106416
106595
|
}
|
|
106417
106596
|
|
|
106418
106597
|
handle(event) {
|
|
@@ -106452,13 +106631,13 @@ class TableNavigationCollapseKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0
|
|
|
106452
106631
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.SUBTRACT, _index__WEBPACK_IMPORTED_MODULE_0__.keys.LEFT];
|
|
106453
106632
|
this.renderingHints.text = '-';
|
|
106454
106633
|
|
|
106455
|
-
this.renderingHints.$drawingArea =
|
|
106634
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
106456
106635
|
let row = this.field.selectedRows[0];
|
|
106457
106636
|
|
|
106458
106637
|
if (row) {
|
|
106459
106638
|
return row.$row;
|
|
106460
106639
|
}
|
|
106461
|
-
}
|
|
106640
|
+
};
|
|
106462
106641
|
}
|
|
106463
106642
|
|
|
106464
106643
|
_accept(event) {
|
|
@@ -106643,13 +106822,13 @@ class TableNavigationEndKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Ab
|
|
|
106643
106822
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.END];
|
|
106644
106823
|
this.renderingHints.text = 'End';
|
|
106645
106824
|
|
|
106646
|
-
this.renderingHints.$drawingArea =
|
|
106825
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
106647
106826
|
let viewport = this._viewportInfo();
|
|
106648
106827
|
|
|
106649
106828
|
if (viewport.lastRow) {
|
|
106650
106829
|
return viewport.lastRow.$row;
|
|
106651
106830
|
}
|
|
106652
|
-
}
|
|
106831
|
+
};
|
|
106653
106832
|
}
|
|
106654
106833
|
|
|
106655
106834
|
handle(event) {
|
|
@@ -106720,13 +106899,13 @@ class TableNavigationExpandKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__
|
|
|
106720
106899
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.ADD, _index__WEBPACK_IMPORTED_MODULE_0__.keys.RIGHT];
|
|
106721
106900
|
this.renderingHints.text = '+';
|
|
106722
106901
|
|
|
106723
|
-
this.renderingHints.$drawingArea =
|
|
106902
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
106724
106903
|
let row = this.field.selectedRows[0];
|
|
106725
106904
|
|
|
106726
106905
|
if (row) {
|
|
106727
106906
|
return row.$row;
|
|
106728
106907
|
}
|
|
106729
|
-
}
|
|
106908
|
+
};
|
|
106730
106909
|
}
|
|
106731
106910
|
|
|
106732
106911
|
_accept(event) {
|
|
@@ -106802,13 +106981,13 @@ class TableNavigationHomeKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
106802
106981
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.HOME];
|
|
106803
106982
|
this.renderingHints.text = 'Home';
|
|
106804
106983
|
|
|
106805
|
-
this.renderingHints.$drawingArea =
|
|
106984
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
106806
106985
|
let viewport = this._viewportInfo();
|
|
106807
106986
|
|
|
106808
106987
|
if (viewport.firstRow) {
|
|
106809
106988
|
return viewport.firstRow.$row;
|
|
106810
106989
|
}
|
|
106811
|
-
}
|
|
106990
|
+
};
|
|
106812
106991
|
}
|
|
106813
106992
|
|
|
106814
106993
|
handle(event) {
|
|
@@ -106878,13 +107057,13 @@ class TableNavigationPageDownKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0
|
|
|
106878
107057
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.PAGE_DOWN];
|
|
106879
107058
|
this.renderingHints.text = 'PgDn';
|
|
106880
107059
|
|
|
106881
|
-
this.renderingHints.$drawingArea =
|
|
107060
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
106882
107061
|
let viewport = this._viewportInfo();
|
|
106883
107062
|
|
|
106884
107063
|
if (viewport.lastRow) {
|
|
106885
107064
|
return viewport.lastRow.$row;
|
|
106886
107065
|
}
|
|
106887
|
-
}
|
|
107066
|
+
};
|
|
106888
107067
|
}
|
|
106889
107068
|
|
|
106890
107069
|
handle(event) {
|
|
@@ -106978,13 +107157,13 @@ class TableNavigationPageUpKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__
|
|
|
106978
107157
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.PAGE_UP];
|
|
106979
107158
|
this.renderingHints.text = 'PgUp';
|
|
106980
107159
|
|
|
106981
|
-
this.renderingHints.$drawingArea =
|
|
107160
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
106982
107161
|
let viewport = this._viewportInfo();
|
|
106983
107162
|
|
|
106984
107163
|
if (viewport.firstRow) {
|
|
106985
107164
|
return viewport.firstRow.$row;
|
|
106986
107165
|
}
|
|
106987
|
-
}
|
|
107166
|
+
};
|
|
106988
107167
|
}
|
|
106989
107168
|
|
|
106990
107169
|
handle(event) {
|
|
@@ -107077,13 +107256,13 @@ class TableNavigationUpKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Abs
|
|
|
107077
107256
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.UP];
|
|
107078
107257
|
this.renderingHints.text = '↑';
|
|
107079
107258
|
|
|
107080
|
-
this.renderingHints.$drawingArea =
|
|
107259
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
107081
107260
|
let row = this.firstRowBeforeSelection();
|
|
107082
107261
|
|
|
107083
107262
|
if (row) {
|
|
107084
107263
|
return row.$row;
|
|
107085
107264
|
}
|
|
107086
|
-
}
|
|
107265
|
+
};
|
|
107087
107266
|
}
|
|
107088
107267
|
|
|
107089
107268
|
handle(event) {
|
|
@@ -107184,9 +107363,9 @@ class TableRefreshKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStrok
|
|
|
107184
107363
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.F5];
|
|
107185
107364
|
this.renderingHints.offset = 14;
|
|
107186
107365
|
|
|
107187
|
-
this.renderingHints.$drawingArea =
|
|
107366
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
107188
107367
|
return this.field.footer ? this.field.footer._$infoLoad.find('.table-info-button') : null;
|
|
107189
|
-
}
|
|
107368
|
+
};
|
|
107190
107369
|
}
|
|
107191
107370
|
|
|
107192
107371
|
_accept(event) {
|
|
@@ -107233,9 +107412,11 @@ class TableSelectAllKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStr
|
|
|
107233
107412
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.A];
|
|
107234
107413
|
this.renderingHints.offset = 14;
|
|
107235
107414
|
|
|
107236
|
-
this.renderingHints.$drawingArea =
|
|
107415
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
107237
107416
|
return this.field.footer ? this.field.footer._$infoSelection.find('.table-info-button') : null;
|
|
107238
|
-
}
|
|
107417
|
+
};
|
|
107418
|
+
|
|
107419
|
+
this.inheritAccessibility = false;
|
|
107239
107420
|
}
|
|
107240
107421
|
|
|
107241
107422
|
handle(event) {
|
|
@@ -107278,7 +107459,7 @@ class TableStartCellEditKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Ke
|
|
|
107278
107459
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.ENTER];
|
|
107279
107460
|
this.stopPropagation = true;
|
|
107280
107461
|
|
|
107281
|
-
this.renderingHints.$drawingArea =
|
|
107462
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
107282
107463
|
let editPosition = event._editPosition,
|
|
107283
107464
|
columnIndex = this.field.visibleColumns().indexOf(editPosition.column);
|
|
107284
107465
|
|
|
@@ -107288,7 +107469,7 @@ class TableStartCellEditKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Ke
|
|
|
107288
107469
|
}
|
|
107289
107470
|
|
|
107290
107471
|
return this.field.$cell(columnIndex, editPosition.row.$row);
|
|
107291
|
-
}
|
|
107472
|
+
};
|
|
107292
107473
|
}
|
|
107293
107474
|
|
|
107294
107475
|
_accept(event) {
|
|
@@ -111784,7 +111965,11 @@ class TileGrid extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
111784
111965
|
}
|
|
111785
111966
|
|
|
111786
111967
|
_updateTabbable() {
|
|
111787
|
-
|
|
111968
|
+
if (!this.textFilterEnabled && !this.selectable) {
|
|
111969
|
+
this.$container.setTabbable(false);
|
|
111970
|
+
} else {
|
|
111971
|
+
this.$container.setTabbableOrFocusable(this.enabledComputed);
|
|
111972
|
+
}
|
|
111788
111973
|
}
|
|
111789
111974
|
|
|
111790
111975
|
insertTile(tile) {
|
|
@@ -112428,18 +112613,12 @@ class TileGrid extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
112428
112613
|
|
|
112429
112614
|
if ($scrollables.length === 0) {
|
|
112430
112615
|
return;
|
|
112431
|
-
}
|
|
112616
|
+
} // Make sure the tile grid has the focus when focusing a tile
|
|
112432
112617
|
|
|
112433
|
-
let oldScrollTopArr = $scrollables.map((i, $elem) => {
|
|
112434
|
-
return $elem.scrollTop();
|
|
112435
|
-
}).toArray(); // Make sure the tile grid has the focus when focusing a tile
|
|
112436
112618
|
|
|
112437
|
-
|
|
112438
|
-
|
|
112439
|
-
|
|
112440
|
-
$scrollables[idx].scrollTop(val);
|
|
112441
|
-
}, this);
|
|
112442
|
-
}
|
|
112619
|
+
this.focus({
|
|
112620
|
+
preventScroll: true
|
|
112621
|
+
});
|
|
112443
112622
|
}
|
|
112444
112623
|
|
|
112445
112624
|
setSelectable(selectable) {
|
|
@@ -113119,7 +113298,7 @@ class TileGrid extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
113119
113298
|
}
|
|
113120
113299
|
|
|
113121
113300
|
_removeTileByFilter(tile) {
|
|
113122
|
-
// In virtual mode, filtered tiles are not rendered. In normal mode, the filter animation is
|
|
113301
|
+
// In virtual mode, filtered tiles are not rendered. In normal mode, the filter animation is triggered by _renderVisible of the tile.
|
|
113123
113302
|
// Since the tile is removed immediately, the invisible animation would not start, so we use the remove animation instead.
|
|
113124
113303
|
// But because the delete animation is a different one to the filter animation, the removeClass needs to be swapped
|
|
113125
113304
|
// Remove class first to make sure animation won't be finished before the animationend listener is attached in Widget._removeAnimated (which may happen because a setTimeout is used there)
|
|
@@ -116393,13 +116572,15 @@ class TileGridSelectKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.KeyStr
|
|
|
116393
116572
|
this.field = tileGrid;
|
|
116394
116573
|
this.shift = !tileGrid.multiSelect ? false : undefined;
|
|
116395
116574
|
|
|
116396
|
-
this.renderingHints.$drawingArea =
|
|
116575
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
116397
116576
|
let result = this._computeNewSelection();
|
|
116398
116577
|
|
|
116399
116578
|
if (result && result.focusedTile) {
|
|
116400
116579
|
return result.focusedTile.$container;
|
|
116401
116580
|
}
|
|
116402
|
-
}
|
|
116581
|
+
};
|
|
116582
|
+
|
|
116583
|
+
this.inheritAccessibility = false;
|
|
116403
116584
|
}
|
|
116404
116585
|
/**
|
|
116405
116586
|
* Selection handler should be used for every interaction with the tileGrid.
|
|
@@ -117137,6 +117318,16 @@ class TimePickerTouchPopup extends _index__WEBPACK_IMPORTED_MODULE_0__.TouchPopu
|
|
|
117137
117318
|
|
|
117138
117319
|
this._touchField._triggerAcceptInput();
|
|
117139
117320
|
}
|
|
117321
|
+
/**
|
|
117322
|
+
* @override
|
|
117323
|
+
*/
|
|
117324
|
+
|
|
117325
|
+
|
|
117326
|
+
_acceptInput() {
|
|
117327
|
+
this._field.acceptTime();
|
|
117328
|
+
|
|
117329
|
+
this.close();
|
|
117330
|
+
}
|
|
117140
117331
|
|
|
117141
117332
|
}
|
|
117142
117333
|
|
|
@@ -118265,7 +118456,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
|
|
|
118265
118456
|
* All rights reserved. This program and the accompanying materials
|
|
118266
118457
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
118267
118458
|
* which accompanies this distribution, and is available at
|
|
118268
|
-
*
|
|
118459
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
118269
118460
|
*
|
|
118270
118461
|
* Contributors:
|
|
118271
118462
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -119286,7 +119477,7 @@ class Tree extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
119286
119477
|
|
|
119287
119478
|
let enabled = this.enabledComputed;
|
|
119288
119479
|
this.$data.setEnabled(enabled);
|
|
119289
|
-
this.$container.
|
|
119480
|
+
this.$container.setTabbableOrFocusable(enabled);
|
|
119290
119481
|
}
|
|
119291
119482
|
/**
|
|
119292
119483
|
* @override Widget.js
|
|
@@ -120990,7 +121181,7 @@ class Tree extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
120990
121181
|
|
|
120991
121182
|
nodes = _index__WEBPACK_IMPORTED_MODULE_0__.arrays.ensure(nodes);
|
|
120992
121183
|
nodes.forEach(function (node) {
|
|
120993
|
-
if (!node.enabled && opts.checkOnlyEnabled || node.checked === opts.checked) {
|
|
121184
|
+
if (!node.enabled && opts.checkOnlyEnabled || node.checked === opts.checked || !node.filterAccepted) {
|
|
120994
121185
|
if (opts.checkChildren) {
|
|
120995
121186
|
this.checkNodes(node.childNodes, opts);
|
|
120996
121187
|
}
|
|
@@ -121546,6 +121737,10 @@ class Tree extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
121546
121737
|
} else if (newWidth > this.maxNodeWidth) {
|
|
121547
121738
|
this.maxNodeWidth = newWidth;
|
|
121548
121739
|
this.nodeWidthDirty = true;
|
|
121740
|
+
} else if (newWidth === oldWidth && newWidth === 0) {
|
|
121741
|
+
// newWidth and oldWidth are 0: this might be because the tree is invisible while a node is added:
|
|
121742
|
+
// Mark as dirty to update the width later during layouting (when the tree gets visible and the width is available)
|
|
121743
|
+
this.nodeWidthDirty = true;
|
|
121549
121744
|
}
|
|
121550
121745
|
|
|
121551
121746
|
node.width = newWidth;
|
|
@@ -121817,7 +122012,7 @@ class Tree extends _index__WEBPACK_IMPORTED_MODULE_0__.Widget {
|
|
|
121817
122012
|
_onDesktopPopupOpen(event) {
|
|
121818
122013
|
let popup = event.popup;
|
|
121819
122014
|
|
|
121820
|
-
if (!this.
|
|
122015
|
+
if (!this.isFocusable(false)) {
|
|
121821
122016
|
return;
|
|
121822
122017
|
} // Set tree style to focused if a context menu or a menu bar popup opens, so that it looks as it still has the focus
|
|
121823
122018
|
|
|
@@ -122840,6 +123035,7 @@ class AbstractTreeNavigationKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0_
|
|
|
122840
123035
|
this.shift = _index__WEBPACK_IMPORTED_MODULE_0__.keyStrokeModifier.isShift(modifierBitMask);
|
|
122841
123036
|
this.alt = _index__WEBPACK_IMPORTED_MODULE_0__.keyStrokeModifier.isAlt(modifierBitMask);
|
|
122842
123037
|
this.keyStrokeMode = _index__WEBPACK_IMPORTED_MODULE_0__.KeyStroke.Mode.DOWN;
|
|
123038
|
+
this.inheritAccessibility = false;
|
|
122843
123039
|
}
|
|
122844
123040
|
|
|
122845
123041
|
_accept(event) {
|
|
@@ -123073,11 +123269,11 @@ class TreeCollapseAllKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Abstr
|
|
|
123073
123269
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.HOME];
|
|
123074
123270
|
this.renderingHints.hAlign = _index__WEBPACK_IMPORTED_MODULE_0__.HAlign.RIGHT;
|
|
123075
123271
|
|
|
123076
|
-
this.renderingHints.$drawingArea =
|
|
123272
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
123077
123273
|
if (this.field.visibleNodesFlat.length > 0) {
|
|
123078
123274
|
return this.field.visibleNodesFlat[0].$node;
|
|
123079
123275
|
}
|
|
123080
|
-
}
|
|
123276
|
+
};
|
|
123081
123277
|
}
|
|
123082
123278
|
|
|
123083
123279
|
handle(event) {
|
|
@@ -123180,7 +123376,7 @@ class TreeExpandOrDrillDownKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__
|
|
|
123180
123376
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.ADD];
|
|
123181
123377
|
this.renderingHints.text = '+';
|
|
123182
123378
|
|
|
123183
|
-
this.renderingHints.$drawingArea =
|
|
123379
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
123184
123380
|
let currentNode = event._treeCurrentNode;
|
|
123185
123381
|
|
|
123186
123382
|
if (this.isNodeExpandable(currentNode)) {
|
|
@@ -123188,7 +123384,7 @@ class TreeExpandOrDrillDownKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__
|
|
|
123188
123384
|
} else if (currentNode.childNodes.length > 0) {
|
|
123189
123385
|
return currentNode.childNodes[0].$node;
|
|
123190
123386
|
}
|
|
123191
|
-
}
|
|
123387
|
+
};
|
|
123192
123388
|
}
|
|
123193
123389
|
|
|
123194
123390
|
_accept(event) {
|
|
@@ -123254,13 +123450,13 @@ class TreeNavigationDownKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Ab
|
|
|
123254
123450
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.DOWN];
|
|
123255
123451
|
this.renderingHints.text = '↓';
|
|
123256
123452
|
|
|
123257
|
-
this.renderingHints.$drawingArea =
|
|
123453
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
123258
123454
|
let newSelectedNode = this._computeNewSelection(event._treeCurrentNode);
|
|
123259
123455
|
|
|
123260
123456
|
if (newSelectedNode) {
|
|
123261
123457
|
return newSelectedNode.$node;
|
|
123262
123458
|
}
|
|
123263
|
-
}
|
|
123459
|
+
};
|
|
123264
123460
|
}
|
|
123265
123461
|
|
|
123266
123462
|
_computeNewSelection(currentNode) {
|
|
@@ -123308,13 +123504,13 @@ class TreeNavigationEndKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Abs
|
|
|
123308
123504
|
super(tree, modifierBitMask);
|
|
123309
123505
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.END];
|
|
123310
123506
|
|
|
123311
|
-
this.renderingHints.$drawingArea =
|
|
123507
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
123312
123508
|
let newSelectedNode = this._computeNewSelection(event._treeCurrentNode);
|
|
123313
123509
|
|
|
123314
123510
|
if (newSelectedNode) {
|
|
123315
123511
|
return newSelectedNode.$node;
|
|
123316
123512
|
}
|
|
123317
|
-
}
|
|
123513
|
+
};
|
|
123318
123514
|
}
|
|
123319
123515
|
|
|
123320
123516
|
handle(event) {
|
|
@@ -123367,13 +123563,13 @@ class TreeNavigationUpKeyStroke extends _index__WEBPACK_IMPORTED_MODULE_0__.Abst
|
|
|
123367
123563
|
this.which = [_index__WEBPACK_IMPORTED_MODULE_0__.keys.UP];
|
|
123368
123564
|
this.renderingHints.text = '↑';
|
|
123369
123565
|
|
|
123370
|
-
this.renderingHints.$drawingArea =
|
|
123566
|
+
this.renderingHints.$drawingArea = ($drawingArea, event) => {
|
|
123371
123567
|
let newSelectedNode = this._computeNewSelection(event._treeCurrentNode);
|
|
123372
123568
|
|
|
123373
123569
|
if (newSelectedNode) {
|
|
123374
123570
|
return newSelectedNode.$node;
|
|
123375
123571
|
}
|
|
123376
|
-
}
|
|
123572
|
+
};
|
|
123377
123573
|
}
|
|
123378
123574
|
|
|
123379
123575
|
_computeNewSelection(currentNode) {
|
|
@@ -123982,7 +124178,7 @@ class Device {
|
|
|
123982
124178
|
}
|
|
123983
124179
|
/**
|
|
123984
124180
|
* This method returns false for all browsers that are known to be unsupported, all others (e.g. unknown engines) are allowed by default.
|
|
123985
|
-
* The supported browser versions are mainly determined by the features needed by Scout (e.g. class syntax, Array.flatMap, IntersectionObserver, Custom CSS Properties, CSS flex-box).
|
|
124181
|
+
* The supported browser versions are mainly determined by the features needed by Scout (e.g. class syntax, Array.flatMap, IntersectionObserver, Custom CSS Properties, CSS flex-box, queueMicrotask).
|
|
123986
124182
|
*/
|
|
123987
124183
|
|
|
123988
124184
|
|
|
@@ -123990,7 +124186,7 @@ class Device {
|
|
|
123990
124186
|
browser = _index__WEBPACK_IMPORTED_MODULE_0__.scout.nvl(browser, this.browser);
|
|
123991
124187
|
version = _index__WEBPACK_IMPORTED_MODULE_0__.scout.nvl(version, this.browserVersion);
|
|
123992
124188
|
let browsers = Device.Browser;
|
|
123993
|
-
return browser === browsers.CHROME && version >=
|
|
124189
|
+
return browser === browsers.CHROME && version >= 71 || browser === browsers.FIREFOX && version >= 69 || browser === browsers.SAFARI && version >= 12.1;
|
|
123994
124190
|
}
|
|
123995
124191
|
/**
|
|
123996
124192
|
* Can not detect type until DOM is ready because we must create a DIV to measure the scrollbars.
|
|
@@ -126253,6 +126449,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
126253
126449
|
/* harmony export */ "randomElement": () => (/* binding */ randomElement),
|
|
126254
126450
|
/* harmony export */ "toMap": () => (/* binding */ toMap),
|
|
126255
126451
|
/* harmony export */ "nullIfEmpty": () => (/* binding */ nullIfEmpty),
|
|
126452
|
+
/* harmony export */ "clear": () => (/* binding */ clear),
|
|
126256
126453
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
126257
126454
|
/* harmony export */ });
|
|
126258
126455
|
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../index */ "./src/index.js");
|
|
@@ -126930,9 +127127,30 @@ function toMap(array) {
|
|
|
126930
127127
|
function nullIfEmpty(array) {
|
|
126931
127128
|
return empty(array) ? null : array;
|
|
126932
127129
|
}
|
|
127130
|
+
/**
|
|
127131
|
+
* Clears the content of an array <i>in-place</i>. All elements are removed from the array and the
|
|
127132
|
+
* length will be set to 0. If the given argument is not an array, nothing happens.
|
|
127133
|
+
*
|
|
127134
|
+
* This is a more readable version of `array.splice(0, a.length)`.
|
|
127135
|
+
*
|
|
127136
|
+
* The return value is an array of all deleted elements (never null).
|
|
127137
|
+
*
|
|
127138
|
+
* @template T
|
|
127139
|
+
* @param {T[]} array
|
|
127140
|
+
* @return {T[]}
|
|
127141
|
+
*/
|
|
127142
|
+
|
|
127143
|
+
function clear(array) {
|
|
127144
|
+
if (Array.isArray(array)) {
|
|
127145
|
+
return array.splice(0, array.length);
|
|
127146
|
+
}
|
|
127147
|
+
|
|
127148
|
+
return [];
|
|
127149
|
+
}
|
|
126933
127150
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
126934
127151
|
$indexOf,
|
|
126935
127152
|
$remove,
|
|
127153
|
+
clear,
|
|
126936
127154
|
contains,
|
|
126937
127155
|
containsAll,
|
|
126938
127156
|
containsAny,
|
|
@@ -135931,17 +136149,20 @@ class Widget {
|
|
|
135931
136149
|
* Tries to set the focus on the widget.
|
|
135932
136150
|
* <p>
|
|
135933
136151
|
* By default the focus is set on the container but this may vary from widget to widget.
|
|
136152
|
+
*
|
|
136153
|
+
* @param {object} [options]
|
|
136154
|
+
* @param {boolean} [options.preventScroll] prevents scrolling to new focused element (defaults to false)
|
|
135934
136155
|
* @returns {boolean} true if the element could be focused, false if not
|
|
135935
136156
|
*/
|
|
135936
136157
|
|
|
135937
136158
|
|
|
135938
|
-
focus() {
|
|
136159
|
+
focus(options) {
|
|
135939
136160
|
if (!this.rendered) {
|
|
135940
|
-
this.session.layoutValidator.schedulePostValidateFunction(this.focus.bind(this));
|
|
136161
|
+
this.session.layoutValidator.schedulePostValidateFunction(this.focus.bind(this, options));
|
|
135941
136162
|
return false;
|
|
135942
136163
|
}
|
|
135943
136164
|
|
|
135944
|
-
return this.session.focusManager.requestFocus(this.getFocusableElement());
|
|
136165
|
+
return this.session.focusManager.requestFocus(this.getFocusableElement(), null, options);
|
|
135945
136166
|
}
|
|
135946
136167
|
/**
|
|
135947
136168
|
* Calls {@link focus()} and prevents the default behavior of the event if the focusing was successful.
|