@openui5/sap.ui.mdc 1.141.2 → 1.143.0
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/README.md +2 -2
- package/REUSE.toml +39 -1
- package/THIRDPARTY.txt +36 -3
- package/package.json +4 -4
- package/src/sap/ui/mdc/.library +1 -1
- package/src/sap/ui/mdc/ActionToolbar.js +89 -63
- package/src/sap/ui/mdc/Chart.js +1 -1
- package/src/sap/ui/mdc/Control.js +1 -1
- package/src/sap/ui/mdc/DefaultTypeMap.js +1 -1
- package/src/sap/ui/mdc/Element.js +1 -1
- package/src/sap/ui/mdc/Field.js +31 -8
- package/src/sap/ui/mdc/FilterBar.js +1 -1
- package/src/sap/ui/mdc/FilterField.js +11 -11
- package/src/sap/ui/mdc/Geomap.js +571 -0
- package/src/sap/ui/mdc/GeomapDelegate.js +285 -0
- package/src/sap/ui/mdc/GeomapRenderer.js +76 -0
- package/src/sap/ui/mdc/Link.js +1 -1
- package/src/sap/ui/mdc/MultiValueField.js +7 -7
- package/src/sap/ui/mdc/Table.js +141 -116
- package/src/sap/ui/mdc/TableDelegate.js +3 -2
- package/src/sap/ui/mdc/ValueHelp.js +1 -1
- package/src/sap/ui/mdc/ValueHelpDelegate.js +4 -1
- package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +1 -1
- package/src/sap/ui/mdc/chart/ChartImplementationContainer.js +1 -1
- package/src/sap/ui/mdc/chart/ChartSelectionDetails.js +1 -1
- package/src/sap/ui/mdc/chart/PropertyHelper.js +1 -1
- package/src/sap/ui/mdc/chart/ToolbarControlFactory.js +1 -1
- package/src/sap/ui/mdc/chart/Util.js +5 -2
- package/src/sap/ui/mdc/condition/Condition.js +1 -1
- package/src/sap/ui/mdc/condition/ConditionConverter.js +1 -1
- package/src/sap/ui/mdc/condition/ConditionModel.js +1 -1
- package/src/sap/ui/mdc/condition/FilterConverter.js +1 -1
- package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +1 -1
- package/src/sap/ui/mdc/condition/Operator.js +1 -1
- package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +1 -1
- package/src/sap/ui/mdc/condition/RangeOperator.js +1 -1
- package/src/sap/ui/mdc/designtime/geomap/Geomap.designtime.js +23 -0
- package/src/sap/ui/mdc/enums/GeomapControlPosition.js +46 -0
- package/src/sap/ui/mdc/enums/TableActionPosition.js +123 -0
- package/src/sap/ui/mdc/enums/TablePopinDisplay.js +36 -0
- package/src/sap/ui/mdc/field/ConditionType.js +1 -1
- package/src/sap/ui/mdc/field/ConditionTypeMixin.js +1 -1
- package/src/sap/ui/mdc/field/ConditionsType.js +1 -1
- package/src/sap/ui/mdc/field/CustomFieldInfo.js +1 -1
- package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +1 -1
- package/src/sap/ui/mdc/field/FieldBase.js +137 -66
- package/src/sap/ui/mdc/field/FieldInfoBase.js +1 -1
- package/src/sap/ui/mdc/field/FieldInput.js +1 -1
- package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +1 -1
- package/src/sap/ui/mdc/field/FieldMultiInput.js +1 -1
- package/src/sap/ui/mdc/field/FieldSelect.js +7 -1
- package/src/sap/ui/mdc/field/ListFieldHelpItem.js +1 -1
- package/src/sap/ui/mdc/field/MultiValueFieldDelegate.js +22 -0
- package/src/sap/ui/mdc/field/MultiValueFieldItem.js +1 -1
- package/src/sap/ui/mdc/field/TokenDisplay.js +1 -1
- package/src/sap/ui/mdc/field/TokenizerDisplay.js +1 -1
- package/src/sap/ui/mdc/field/content/ContentFactory.js +3 -0
- package/src/sap/ui/mdc/filterbar/FilterBarBase.js +35 -1
- package/src/sap/ui/mdc/filterbar/FilterBarBaseRenderer.js +3 -0
- package/src/sap/ui/mdc/filterbar/PropertyHelper.js +1 -1
- package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +1 -1
- package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +1 -1
- package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +1 -1
- package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +1 -1
- package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +1 -1
- package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +1 -1
- package/src/sap/ui/mdc/flexibility/SortFlex.js +12 -5
- package/src/sap/ui/mdc/flexibility/Table.flexibility.js +17 -11
- package/src/sap/ui/mdc/flexibility/actiontoolbar/CombineAction.js +1 -1
- package/src/sap/ui/mdc/flexibility/actiontoolbar/SplitAction.js +1 -1
- package/src/sap/ui/mdc/flexibility/helpers/getAffectedSorter.js +25 -0
- package/src/sap/ui/mdc/geomap/Item.js +48 -0
- package/src/sap/ui/mdc/geomap/PropertyHelper.js +70 -0
- package/src/sap/ui/mdc/library.js +19 -4
- package/src/sap/ui/mdc/link/Factory.js +1 -1
- package/src/sap/ui/mdc/link/LinkItem.js +1 -1
- package/src/sap/ui/mdc/link/Panel.js +1 -1
- package/src/sap/ui/mdc/link/PanelItem.js +1 -1
- package/src/sap/ui/mdc/link/SemanticObjectMapping.js +1 -1
- package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +1 -1
- package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +1 -1
- package/src/sap/ui/mdc/messagebundle.properties +15 -1
- package/src/sap/ui/mdc/messagebundle_ar.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_bg.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_ca.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_cnr.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_cs.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_cy.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_da.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_de.properties +10 -2
- package/src/sap/ui/mdc/messagebundle_el.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_en.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_en_GB.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +12 -1
- package/src/sap/ui/mdc/messagebundle_es.properties +10 -2
- package/src/sap/ui/mdc/messagebundle_es_MX.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_et.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_fi.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_fr.properties +11 -3
- package/src/sap/ui/mdc/messagebundle_fr_CA.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_hi.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_hr.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_hu.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_id.properties +11 -3
- package/src/sap/ui/mdc/messagebundle_it.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_iw.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_ja.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_kk.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_ko.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_lt.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_lv.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_mk.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_ms.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_nl.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_no.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_pl.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_pt.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_pt_PT.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_ro.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_ru.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_sh.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_sk.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_sl.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_sr.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_sv.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_th.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_tr.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_uk.properties +8 -0
- package/src/sap/ui/mdc/messagebundle_vi.properties +11 -3
- package/src/sap/ui/mdc/messagebundle_zh_CN.properties +9 -1
- package/src/sap/ui/mdc/messagebundle_zh_TW.properties +8 -0
- package/src/sap/ui/mdc/mixin/AdaptationMixin.js +1 -1
- package/src/sap/ui/mdc/mixin/DelegateMixin.js +1 -1
- package/src/sap/ui/mdc/mixin/FilterBarLayoutMixin.js +1 -1
- package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +1 -1
- package/src/sap/ui/mdc/mixin/PromiseMixin.js +1 -1
- package/src/sap/ui/mdc/mixin/PropertyHelperMixin.js +1 -1
- package/src/sap/ui/mdc/odata/TypeMap.js +1 -1
- package/src/sap/ui/mdc/odata/v4/GeomapDelegate.js +60 -0
- package/src/sap/ui/mdc/odata/v4/TableDelegate.js +53 -2
- package/src/sap/ui/mdc/odata/v4/TypeMap.js +1 -1
- package/src/sap/ui/mdc/odata/v4/vizChart/ChartDelegate.js +16 -0
- package/src/sap/ui/mdc/p13n/PropertyHelper.js +1 -1
- package/src/sap/ui/mdc/p13n/StateUtil.js +1 -1
- package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +3 -0
- package/src/sap/ui/mdc/p13n/subcontroller/ColumnFreezeController.js +1 -1
- package/src/sap/ui/mdc/p13n/subcontroller/ShowDetailsController.js +1 -1
- package/src/sap/ui/mdc/rules/Table.support.js +149 -118
- package/src/sap/ui/mdc/table/ActionLayoutData.js +47 -0
- package/src/sap/ui/mdc/table/Column.js +40 -186
- package/src/sap/ui/mdc/table/ColumnSettings.js +1 -1
- package/src/sap/ui/mdc/table/CreationRow.js +1 -1
- package/src/sap/ui/mdc/table/DragDropConfig.js +1 -1
- package/src/sap/ui/mdc/table/GridTableType.js +35 -21
- package/src/sap/ui/mdc/table/ODataV4PropertyHelper.js +1 -1
- package/src/sap/ui/mdc/table/PropertyHelper.js +1 -1
- package/src/sap/ui/mdc/table/ResponsiveColumnSettings.js +1 -1
- package/src/sap/ui/mdc/table/ResponsiveTableType.js +97 -14
- package/src/sap/ui/mdc/table/RowActionItem.js +1 -1
- package/src/sap/ui/mdc/table/RowSettings.js +1 -1
- package/src/sap/ui/mdc/table/TableSettings.js +34 -7
- package/src/sap/ui/mdc/table/TableTypeBase.js +38 -7
- package/src/sap/ui/mdc/table/utils/Personalization.js +1 -1
- package/src/sap/ui/mdc/themes/base/Geomap.less +50 -0
- package/src/sap/ui/mdc/ushell/SemanticObjectMapping.js +1 -1
- package/src/sap/ui/mdc/ushell/SemanticObjectMappingItem.js +1 -1
- package/src/sap/ui/mdc/ushell/SemanticObjectUnavailableAction.js +1 -1
- package/src/sap/ui/mdc/util/InfoBar.js +1 -1
- package/src/sap/ui/mdc/util/PromiseCache.js +1 -1
- package/src/sap/ui/mdc/util/PropertyHelper.js +1 -1
- package/src/sap/ui/mdc/util/PropertyHelperUtil.js +1 -1
- package/src/sap/ui/mdc/valuehelp/Dialog.js +2 -2
- package/src/sap/ui/mdc/valuehelp/FilterBar.js +22 -3
- package/src/sap/ui/mdc/valuehelp/Popover.js +1 -1
- package/src/sap/ui/mdc/valuehelp/base/Container.js +1 -1
- package/src/sap/ui/mdc/valuehelp/base/Content.js +1 -1
- package/src/sap/ui/mdc/valuehelp/base/DefineConditionPanel.js +140 -26
- package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +1 -1
- package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +4 -3
- package/src/sap/ui/mdc/valuehelp/base/ListContent.js +1 -1
- package/src/sap/ui/mdc/valuehelp/content/Bool.js +1 -1
- package/src/sap/ui/mdc/valuehelp/content/Conditions.js +1 -1
- package/src/sap/ui/mdc/valuehelp/content/FixedList.js +1 -1
- package/src/sap/ui/mdc/valuehelp/content/FixedListItem.js +1 -1
- package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +1 -1
- package/src/sap/ui/mdc/valuehelp/content/MTable.js +7 -5
- package/test/sap/ui/mdc/testutils/opa/filterbar/Actions.js +36 -0
- package/test/sap/ui/mdc/testutils/opa/filterfield/Actions.js +20 -3
- package/test/sap/ui/mdc/testutils/opa/valueHelp/Actions.js +33 -1
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2025 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Provides enumeration sap.ui.mdc.enums.GeomapControlPosition
|
|
8
|
+
sap.ui.define(["sap/ui/base/DataType"], (DataType) => {
|
|
9
|
+
"use strict";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Enumeration of the <code>position</code> property of the Geomap controls
|
|
13
|
+
*
|
|
14
|
+
* @enum {string}
|
|
15
|
+
* @public
|
|
16
|
+
* @ui5-experimental-since 1.142
|
|
17
|
+
* @alias sap.ui.mdc.enums.GeomapControlPosition
|
|
18
|
+
*/
|
|
19
|
+
const GeomapControlPosition = {
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* The control is positioned in the top left corner of the page
|
|
23
|
+
*/
|
|
24
|
+
TopLeft: "TopLeft",
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* The control is positioned in the top right corner of the page
|
|
28
|
+
*/
|
|
29
|
+
TopRight: "TopRight",
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* The control is positioned in the bottom left corner of the page
|
|
33
|
+
*/
|
|
34
|
+
BottomLeft: "BottomLeft",
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* The control is positioned in the bottom right corner of the page
|
|
38
|
+
*/
|
|
39
|
+
BottomRight: "BottomRight"
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
DataType.registerEnum("sap.ui.mdc.enums.GeomapControlPosition", GeomapControlPosition);
|
|
43
|
+
|
|
44
|
+
return GeomapControlPosition;
|
|
45
|
+
|
|
46
|
+
}, /* bExport= */ true);
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2025 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
sap.ui.define(["sap/ui/base/DataType"], (DataType) => {
|
|
8
|
+
"use strict";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Defines the supported positions for table-relevant actions within the table toolbar, in accordance with the {@link https://www.sap.com/design-system/fiori-design-web/ui-elements/table-bar/ SAP Design System}.
|
|
12
|
+
*
|
|
13
|
+
* @enum {string}
|
|
14
|
+
* @private
|
|
15
|
+
* @alias sap.ui.mdc.enums.TableActionPosition
|
|
16
|
+
* @since 1.143
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
const TableActionPosition = {
|
|
20
|
+
/**
|
|
21
|
+
* Extension point for the modification actions at the start of the group.
|
|
22
|
+
* These actions modify the structure or content of the table, such as cut, copy, paste, reorder.
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
ModificationActions: "ModificationActions",
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* The position of the copy action in the modification actions group.
|
|
29
|
+
* @private
|
|
30
|
+
*/
|
|
31
|
+
ModificationActionsCopy: "ModificationActionsCopy",
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* The position of the paste action in the modification actions group.
|
|
35
|
+
* @private
|
|
36
|
+
*/
|
|
37
|
+
ModificationActionsPaste: "ModificationActionsPaste",
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Extension point for the modification actions at the end of the group.
|
|
41
|
+
* These actions modify the structure or content of the table, such as cut, copy, paste, reorder.
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
ModificationActionsEnd: "ModificationActionsEnd",
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Extension point for the personalization actions at the start of the group.
|
|
48
|
+
* These actions change the arrangement or personalization of the table at the item level, such as Expand/Collapse All Rows, Show/Hide Details, Table Settings.
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
PersonalizationActions: "PersonalizationActions",
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* The position of the collapse all action in the personalization actions group.
|
|
55
|
+
* @private
|
|
56
|
+
*/
|
|
57
|
+
PersonalizationActionsCollapseAll: "PersonalizationActionsCollapseAll",
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* The position of the expand all action in the personalization actions group.
|
|
61
|
+
* @private
|
|
62
|
+
*/
|
|
63
|
+
PersonalizationActionsExpandAll: "PersonalizationActionsExpandAll",
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* The position of the show/hide details action in the personalization actions group.
|
|
67
|
+
* @private
|
|
68
|
+
*/
|
|
69
|
+
PersonalizationActionsShowHideDetails: "PersonalizationActionsShowHideDetails",
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Extension point for the personalization actions inserted after the first and before the second group of predefined actions.
|
|
73
|
+
* These actions change the arrangement or personalization of the table on an item level, such as Expand/Collapse Node, Show/Hide Details, Table Settings.
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
PersonalizationActionsMiddle: "PersonalizationActionsMiddle",
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* The position of the settings action in the personalization actions group.
|
|
80
|
+
* @private
|
|
81
|
+
*/
|
|
82
|
+
PersonalizationActionsSettings: "PersonalizationActionsSettings",
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Extension point for the share actions at the start of the group.
|
|
86
|
+
* These actions allow users to share table content with another application or with the homepage as a tile, such as Send as Email, Save as Tile.
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
ShareActions: "ShareActions",
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Extension point for the export actions at the start of the group.
|
|
93
|
+
* These actions convert the content of the table into an external format, such as Excel, PDF, Print.
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
ExportActions: "ExportActions",
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* The position of the export action in the export actions group.
|
|
100
|
+
* @private
|
|
101
|
+
*/
|
|
102
|
+
ExportActionsExport: "ExportActionsExport",
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Extension point for the view actions at the start of the group.
|
|
106
|
+
* These actions change the representation of the entire table, such as View Switch, Fullscreen.
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
ViewActions: "ViewActions",
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Extension point for actions displayed after all table-relevant actions.
|
|
113
|
+
* These actions allow applications to add additional functionality, such as Pagination, Refresh.
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
EndActions: "EndActions"
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
DataType.registerEnum("sap.ui.mdc.enums.TableActionPosition", TableActionPosition);
|
|
120
|
+
|
|
121
|
+
return TableActionPosition;
|
|
122
|
+
|
|
123
|
+
}, /* bExport= */ true);
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2025 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
sap.ui.define(["sap/ui/base/DataType"], (DataType) => {
|
|
8
|
+
"use strict";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Pop-in display mode of the table.
|
|
12
|
+
*
|
|
13
|
+
* @enum {string}
|
|
14
|
+
* @alias sap.ui.mdc.enums.TablePopinDisplay
|
|
15
|
+
* @since 1.143
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
const TablePopinDisplay = {
|
|
19
|
+
/**
|
|
20
|
+
* The header is displayed in the first line, and the cell content is displayed in the next line.
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
Block: "Block",
|
|
24
|
+
/**
|
|
25
|
+
* The cell content is displayed next to the header in the same line.
|
|
26
|
+
* <b>Note:</b> If there is not enough space for the cell content, then it is displayed in the next line.
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
Inline: "Inline"
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
DataType.registerEnum("sap.ui.mdc.enums.TablePopinDisplay", TablePopinDisplay);
|
|
33
|
+
|
|
34
|
+
return TablePopinDisplay;
|
|
35
|
+
|
|
36
|
+
}, /* bExport= */ true);
|
|
@@ -16,7 +16,7 @@ sap.ui.define([
|
|
|
16
16
|
* @param {object} [mSettings] Initial settings for the new control
|
|
17
17
|
* @class A field help used in the <code>FieldInfo</code> aggregation in <code>FieldBase</code> controls that allows you to add custom content.
|
|
18
18
|
* @extends sap.ui.mdc.field.FieldInfoBase
|
|
19
|
-
* @version 1.
|
|
19
|
+
* @version 1.143.0
|
|
20
20
|
* @constructor
|
|
21
21
|
* @private
|
|
22
22
|
* @ui5-restricted sap.fe
|