@openui5/sap.ui.mdc 1.108.2 → 1.110.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/.reuse/dep5 +16 -16
- package/THIRDPARTY.txt +2 -2
- package/package.json +4 -4
- package/src/sap/ui/mdc/.library +2 -2
- package/src/sap/ui/mdc/ActionToolbar.js +5 -5
- package/src/sap/ui/mdc/AggregationBaseDelegate.js +1 -1
- package/src/sap/ui/mdc/BaseDelegate.js +1 -1
- package/src/sap/ui/mdc/Chart.js +32 -34
- package/src/sap/ui/mdc/ChartDelegate.js +23 -19
- package/src/sap/ui/mdc/ChartRenderer.js +1 -1
- package/src/sap/ui/mdc/Control.js +2 -2
- package/src/sap/ui/mdc/Delegate.js +1 -1
- package/src/sap/ui/mdc/Element.js +2 -2
- package/src/sap/ui/mdc/Field.js +30 -20
- package/src/sap/ui/mdc/FilterBar.js +13 -8
- package/src/sap/ui/mdc/FilterBarDelegate.js +14 -10
- package/src/sap/ui/mdc/FilterField.js +8 -15
- package/src/sap/ui/mdc/Link.js +2 -2
- package/src/sap/ui/mdc/LinkDelegate.js +4 -2
- package/src/sap/ui/mdc/MultiValueField.js +2 -2
- package/src/sap/ui/mdc/Table.js +375 -632
- package/src/sap/ui/mdc/TableDelegate.js +34 -7
- package/src/sap/ui/mdc/ValueHelp.js +38 -21
- package/src/sap/ui/mdc/ValueHelpDelegate.js +86 -52
- package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +86 -65
- package/src/sap/ui/mdc/actiontoolbar/ActionToolbarActionRenderer.js +7 -12
- package/src/sap/ui/mdc/chart/ChartImplementationContainer.js +6 -6
- package/src/sap/ui/mdc/chart/ChartImplementationContainerRenderer.js +1 -1
- package/src/sap/ui/mdc/chart/ChartSelectionDetails.js +3 -3
- package/src/sap/ui/mdc/chart/ChartSettings.js +1 -1
- package/src/sap/ui/mdc/chart/ChartToolbar.js +22 -9
- package/src/sap/ui/mdc/chart/ChartTypeButton.js +22 -20
- package/src/sap/ui/mdc/chart/DrillBreadcrumbs.js +1 -1
- package/src/sap/ui/mdc/chart/DrillStackHandler.js +4 -6
- package/src/sap/ui/mdc/chart/Item.js +1 -1
- package/src/sap/ui/mdc/chart/PropertyHelper.js +2 -2
- package/src/sap/ui/mdc/chart/SelectionDetailsActions.js +1 -1
- package/src/sap/ui/mdc/condition/Condition.js +4 -5
- package/src/sap/ui/mdc/condition/ConditionConverter.js +2 -2
- package/src/sap/ui/mdc/condition/ConditionModel.js +2 -2
- package/src/sap/ui/mdc/condition/ConditionModelPropertyBinding.js +1 -1
- package/src/sap/ui/mdc/condition/ConditionValidateException.js +62 -0
- package/src/sap/ui/mdc/condition/FilterConverter.js +8 -4
- package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +4 -16
- package/src/sap/ui/mdc/condition/Operator.js +2 -2
- package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +4 -2
- package/src/sap/ui/mdc/condition/RangeOperator.js +2 -2
- package/src/sap/ui/mdc/designtime/Util.js +1 -1
- package/src/sap/ui/mdc/designtime/actiontoolbar/ActionToolbar.designtime.js +2 -2
- package/src/sap/ui/mdc/designtime/actiontoolbar/ActionToolbarAction.designtime.js +1 -1
- package/src/sap/ui/mdc/designtime/chart/Chart.designtime.js +2 -2
- package/src/sap/ui/mdc/designtime/field/Field.designtime.js +3 -4
- package/src/sap/ui/mdc/designtime/field/FieldBase.designtime.js +1 -1
- package/src/sap/ui/mdc/designtime/field/FilterField.designtime.js +1 -1
- package/src/sap/ui/mdc/designtime/field/MultiValueField.designtime.js +1 -1
- package/src/sap/ui/mdc/designtime/filterbar/FilterBar.designtime.js +2 -2
- package/src/sap/ui/mdc/designtime/filterbar/FilterBarBase.designtime.js +1 -1
- package/src/sap/ui/mdc/designtime/library.designtime.js +1 -1
- package/src/sap/ui/mdc/designtime/link/Panel.designtime.js +1 -1
- package/src/sap/ui/mdc/designtime/link/PanelItem.designtime.js +7 -6
- package/src/sap/ui/mdc/designtime/p13n/PersistenceProvider.designtime.js +1 -1
- package/src/sap/ui/mdc/designtime/table/Table.designtime.js +2 -2
- package/src/sap/ui/mdc/enum/ActionToolbarActionAlignment.js +1 -1
- package/src/sap/ui/mdc/enum/BaseType.js +1 -1
- package/src/sap/ui/mdc/enum/ConditionValidated.js +1 -1
- package/src/sap/ui/mdc/enum/ContentMode.js +1 -1
- package/src/sap/ui/mdc/enum/EditMode.js +1 -1
- package/src/sap/ui/mdc/enum/FieldDisplay.js +1 -1
- package/src/sap/ui/mdc/enum/OutParameterMode.js +1 -1
- package/src/sap/ui/mdc/enum/PersistenceMode.js +1 -1
- package/src/sap/ui/mdc/enum/ProcessingStrategy.js +1 -1
- package/src/sap/ui/mdc/enum/PropagationReason.js +1 -1
- package/src/sap/ui/mdc/enum/SelectType.js +1 -1
- package/src/sap/ui/mdc/field/BoolFieldHelp.js +3 -2
- package/src/sap/ui/mdc/field/ConditionFieldHelp.js +3 -2
- package/src/sap/ui/mdc/field/ConditionType.js +31 -15
- package/src/sap/ui/mdc/field/ConditionsType.js +98 -23
- package/src/sap/ui/mdc/field/CustomFieldHelp.js +3 -2
- package/src/sap/ui/mdc/field/CustomFieldInfo.js +2 -2
- package/src/sap/ui/mdc/field/DefineConditionPanel.js +42 -7
- package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +2 -2
- package/src/sap/ui/mdc/field/FieldBase.js +131 -236
- package/src/sap/ui/mdc/field/FieldBaseDelegate.js +2 -35
- package/src/sap/ui/mdc/field/FieldBaseRenderer.js +1 -1
- package/src/sap/ui/mdc/field/FieldHelpBase.js +9 -7
- package/src/sap/ui/mdc/field/FieldHelpBaseDelegate.js +2 -1
- package/src/sap/ui/mdc/field/FieldInfoBase.js +2 -2
- package/src/sap/ui/mdc/field/FieldInput.js +2 -2
- package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +2 -2
- package/src/sap/ui/mdc/field/FieldInputRenderer.js +1 -1
- package/src/sap/ui/mdc/field/FieldMultiInput.js +2 -2
- package/src/sap/ui/mdc/field/FieldMultiInputRenderer.js +1 -1
- package/src/sap/ui/mdc/field/FieldValueHelp.js +3 -2
- package/src/sap/ui/mdc/field/FieldValueHelpContentWrapperBase.js +3 -2
- package/src/sap/ui/mdc/field/FieldValueHelpDelegate.js +2 -1
- package/src/sap/ui/mdc/field/FieldValueHelpMTableWrapper.js +8 -7
- package/src/sap/ui/mdc/field/FieldValueHelpMdcTableWrapper.js +10 -9
- package/src/sap/ui/mdc/field/FieldValueHelpTableWrapperBase.js +3 -2
- package/src/sap/ui/mdc/field/FieldValueHelpUITableWrapper.js +8 -7
- package/src/sap/ui/mdc/field/InParameter.js +3 -2
- package/src/sap/ui/mdc/field/ListFieldHelp.js +3 -2
- package/src/sap/ui/mdc/field/ListFieldHelpItem.js +2 -2
- package/src/sap/ui/mdc/field/MultiValueFieldDelegate.js +1 -1
- package/src/sap/ui/mdc/field/MultiValueFieldItem.js +2 -2
- package/src/sap/ui/mdc/field/OutParameter.js +3 -2
- package/src/sap/ui/mdc/field/TokenDisplay.js +2 -2
- package/src/sap/ui/mdc/field/TokenDisplayRenderer.js +1 -1
- package/src/sap/ui/mdc/field/TokenizerDisplay.js +2 -2
- package/src/sap/ui/mdc/field/TokenizerDisplayRenderer.js +1 -1
- package/src/sap/ui/mdc/field/ValueHelpPanel.js +3 -2
- package/src/sap/ui/mdc/field/content/BooleanContent.js +1 -1
- package/src/sap/ui/mdc/field/content/ContentFactory.js +12 -13
- package/src/sap/ui/mdc/field/content/DateContent.js +4 -4
- package/src/sap/ui/mdc/field/content/DateTimeContent.js +1 -1
- package/src/sap/ui/mdc/field/content/DefaultContent.js +15 -5
- package/src/sap/ui/mdc/field/content/LinkContent.js +1 -2
- package/src/sap/ui/mdc/field/content/SearchContent.js +47 -5
- package/src/sap/ui/mdc/field/content/TimeContent.js +1 -1
- package/src/sap/ui/mdc/field/content/UnitContent.js +8 -19
- package/src/sap/ui/mdc/filterbar/FilterBarBase.js +60 -29
- package/src/sap/ui/mdc/filterbar/FilterBarBaseRenderer.js +1 -1
- package/src/sap/ui/mdc/filterbar/IFilterContainer.js +1 -1
- package/src/sap/ui/mdc/filterbar/PropertyHelper.js +2 -2
- package/src/sap/ui/mdc/filterbar/aligned/FilterContainer.js +1 -1
- package/src/sap/ui/mdc/filterbar/aligned/FilterItemLayout.js +1 -1
- package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +27 -4
- package/src/sap/ui/mdc/filterbar/p13n/FilterColumnLayout.js +1 -1
- package/src/sap/ui/mdc/filterbar/p13n/FilterGroupLayout.js +5 -1
- package/src/sap/ui/mdc/filterbar/p13n/GroupContainer.js +6 -2
- package/src/sap/ui/mdc/filterbar/p13n/TableContainer.js +5 -1
- package/src/sap/ui/mdc/filterbar/vh/CollectiveSearchSelect.js +16 -3
- package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +35 -2
- package/src/sap/ui/mdc/filterbar/vh/FilterBarDelegate.js +24 -0
- package/src/sap/ui/mdc/filterbar/vh/FilterContainer.js +2 -2
- package/src/sap/ui/mdc/flexibility/ActionToolbar.flexibility.js +1 -1
- package/src/sap/ui/mdc/flexibility/ActionToolbarAction.flexibility.js +1 -1
- package/src/sap/ui/mdc/flexibility/AggregateFlex.js +2 -2
- package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +2 -2
- package/src/sap/ui/mdc/flexibility/ChartItemFlex.js +1 -1
- package/src/sap/ui/mdc/flexibility/ChartTypeFlex.js +1 -1
- package/src/sap/ui/mdc/flexibility/ColumnFlex.js +2 -2
- package/src/sap/ui/mdc/flexibility/ConditionFlex.js +1 -1
- package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +2 -2
- package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +2 -2
- package/src/sap/ui/mdc/flexibility/GroupFlex.js +2 -2
- package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +2 -2
- package/src/sap/ui/mdc/flexibility/Panel.flexibility.js +1 -1
- package/src/sap/ui/mdc/flexibility/PanelItem.flexibility.js +1 -1
- package/src/sap/ui/mdc/flexibility/PropertyInfoFlex.js +1 -1
- package/src/sap/ui/mdc/flexibility/SortFlex.js +3 -3
- package/src/sap/ui/mdc/flexibility/Table.flexibility.js +1 -1
- package/src/sap/ui/mdc/flexibility/Util.js +2 -2
- package/src/sap/ui/mdc/flexibility/xConfigFlex.js +6 -6
- package/src/sap/ui/mdc/flp/FlpLinkDelegate.js +1 -1
- package/src/sap/ui/mdc/library.js +61 -30
- package/src/sap/ui/mdc/link/ContactDetails.js +2 -2
- package/src/sap/ui/mdc/link/ContactDetailsAddressItem.js +2 -2
- package/src/sap/ui/mdc/link/ContactDetailsEmailItem.js +2 -2
- package/src/sap/ui/mdc/link/ContactDetailsItem.js +2 -2
- package/src/sap/ui/mdc/link/ContactDetailsPhoneItem.js +2 -2
- package/src/sap/ui/mdc/link/ContactDetailsRenderer.js +1 -1
- package/src/sap/ui/mdc/link/Factory.js +2 -2
- package/src/sap/ui/mdc/link/FakeFlpConnector.js +2 -2
- package/src/sap/ui/mdc/link/LinkItem.js +3 -2
- package/src/sap/ui/mdc/link/Log.js +1 -1
- package/src/sap/ui/mdc/link/Panel.js +25 -13
- package/src/sap/ui/mdc/link/PanelItem.js +2 -2
- package/src/sap/ui/mdc/link/PanelRenderer.js +1 -1
- package/src/sap/ui/mdc/link/SemanticObjectMapping.js +2 -2
- package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +2 -2
- package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +2 -2
- package/src/sap/ui/mdc/messagebundle.properties +7 -3
- package/src/sap/ui/mdc/messagebundle_ar.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_bg.properties +33 -30
- package/src/sap/ui/mdc/messagebundle_ca.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_cs.properties +7 -4
- package/src/sap/ui/mdc/messagebundle_cy.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_da.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_de.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_el.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_en.properties +5 -3
- package/src/sap/ui/mdc/messagebundle_en_GB.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_en_US_sappsd.properties +4 -1
- package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_en_US_saptrc.properties +0 -1
- package/src/sap/ui/mdc/messagebundle_es.properties +9 -6
- package/src/sap/ui/mdc/messagebundle_es_MX.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_et.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_fi.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_fr.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_fr_CA.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_hi.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_hr.properties +11 -8
- package/src/sap/ui/mdc/messagebundle_hu.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_id.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_it.properties +6 -3
- package/src/sap/ui/mdc/messagebundle_iw.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_ja.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_kk.properties +11 -8
- package/src/sap/ui/mdc/messagebundle_ko.properties +4 -1
- package/src/sap/ui/mdc/messagebundle_lt.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_lv.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_ms.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_nl.properties +7 -4
- package/src/sap/ui/mdc/messagebundle_no.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_pl.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_pt.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_pt_PT.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_ro.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_ru.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_sh.properties +6 -3
- package/src/sap/ui/mdc/messagebundle_sk.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_sl.properties +10 -7
- package/src/sap/ui/mdc/messagebundle_sv.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_th.properties +7 -4
- package/src/sap/ui/mdc/messagebundle_tr.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_uk.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_vi.properties +5 -2
- package/src/sap/ui/mdc/messagebundle_zh_CN.properties +6 -3
- package/src/sap/ui/mdc/messagebundle_zh_TW.properties +5 -2
- package/src/sap/ui/mdc/mixin/AdaptationMixin.js +10 -5
- package/src/sap/ui/mdc/mixin/DelegateMixin.js +4 -4
- package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +3 -3
- package/src/sap/ui/mdc/mixin/PromiseMixin.js +10 -10
- package/src/sap/ui/mdc/mixin/PropertyHelperMixin.js +7 -3
- package/src/sap/ui/mdc/odata/TypeUtil.js +4 -4
- package/src/sap/ui/mdc/odata/v4/ChartDelegate.js +1 -1
- package/src/sap/ui/mdc/odata/v4/FieldBaseDelegate.js +1 -7
- package/src/sap/ui/mdc/odata/v4/FieldValueHelpDelegate.js +1 -1
- package/src/sap/ui/mdc/odata/v4/ODataMetaModelUtil.js +2 -2
- package/src/sap/ui/mdc/odata/v4/TableDelegate.js +3 -3
- package/src/sap/ui/mdc/odata/v4/TypeUtil.js +9 -1
- package/src/sap/ui/mdc/odata/v4/ValueHelpDelegate.js +34 -65
- package/src/sap/ui/mdc/odata/v4/util/DelegateUtil.js +1 -1
- package/src/sap/ui/mdc/odata/v4/vizChart/ChartDelegate.js +53 -53
- package/src/sap/ui/mdc/p13n/Engine.js +4 -4
- package/src/sap/ui/mdc/p13n/FlexUtil.js +1 -1
- package/src/sap/ui/mdc/p13n/P13nBuilder.js +1 -1
- package/src/sap/ui/mdc/p13n/PersistenceProvider.js +4 -154
- package/src/sap/ui/mdc/p13n/PropertyHelper.js +2 -2
- package/src/sap/ui/mdc/p13n/StateUtil.js +16 -2
- package/src/sap/ui/mdc/p13n/UIManager.js +3 -4
- package/src/sap/ui/mdc/p13n/panels/ActionToolbarPanel.js +1 -1
- package/src/sap/ui/mdc/p13n/panels/AdaptFiltersPanel.js +3 -2
- package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +4 -2
- package/src/sap/ui/mdc/p13n/panels/FilterPanel.js +23 -12
- package/src/sap/ui/mdc/p13n/panels/GroupView.js +15 -7
- package/src/sap/ui/mdc/p13n/panels/LinkSelectionPanel.js +3 -2
- package/src/sap/ui/mdc/p13n/subcontroller/ActionToolbarController.js +7 -11
- package/src/sap/ui/mdc/p13n/subcontroller/AdaptFiltersController.js +21 -9
- package/src/sap/ui/mdc/p13n/subcontroller/AggregateController.js +13 -8
- package/src/sap/ui/mdc/p13n/subcontroller/BaseController.js +2 -2
- package/src/sap/ui/mdc/p13n/subcontroller/ChartItemController.js +12 -28
- package/src/sap/ui/mdc/p13n/subcontroller/ChartTypeController.js +8 -4
- package/src/sap/ui/mdc/p13n/subcontroller/ColumnController.js +7 -15
- package/src/sap/ui/mdc/p13n/subcontroller/ColumnWidthController.js +7 -7
- package/src/sap/ui/mdc/p13n/subcontroller/FilterController.js +18 -9
- package/src/sap/ui/mdc/p13n/subcontroller/GroupController.js +5 -5
- package/src/sap/ui/mdc/p13n/subcontroller/LinkPanelController.js +6 -5
- package/src/sap/ui/mdc/p13n/subcontroller/SelectionController.js +76 -0
- package/src/sap/ui/mdc/p13n/subcontroller/SortController.js +5 -5
- package/src/sap/ui/mdc/table/Column.js +101 -22
- package/src/sap/ui/mdc/table/ColumnSettings.js +41 -0
- package/src/sap/ui/mdc/table/CreationRow.js +11 -12
- package/src/sap/ui/mdc/table/GridTableType.js +331 -107
- package/src/sap/ui/mdc/table/PropertyHelper.js +14 -8
- package/src/sap/ui/mdc/table/ResponsiveColumnSettings.js +76 -0
- package/src/sap/ui/mdc/table/ResponsiveTableType.js +312 -97
- package/src/sap/ui/mdc/table/RowActionItem.js +9 -3
- package/src/sap/ui/mdc/table/RowSettings.js +3 -3
- package/src/sap/ui/mdc/table/TableSettings.js +12 -13
- package/src/sap/ui/mdc/table/TableTypeBase.js +124 -41
- package/src/sap/ui/mdc/table/TreeTableType.js +106 -0
- package/src/sap/ui/mdc/table/V4AnalyticsPropertyHelper.js +3 -3
- package/src/sap/ui/mdc/table/menu/Item.js +4 -7
- package/src/sap/ui/mdc/table/menu/ItemContainer.js +1 -1
- package/src/sap/ui/mdc/table/menu/QuickActionContainer.js +3 -4
- package/src/sap/ui/mdc/themes/base/AdaptFiltersPanel.less +1 -5
- package/src/sap/ui/mdc/themes/base/Chart.less +1 -0
- package/src/sap/ui/mdc/themes/base/FieldBase.less +8 -2
- package/src/sap/ui/mdc/themes/base/PersonalizationDialog.less +7 -7
- package/src/sap/ui/mdc/themes/base/library.source.less +1 -1
- package/src/sap/ui/mdc/util/Common.js +1 -1
- package/src/sap/ui/mdc/util/DateUtil.js +3 -2
- package/src/sap/ui/mdc/util/FilterUtil.js +1 -1
- package/src/sap/ui/mdc/util/FormatUtil.js +1 -1
- package/src/sap/ui/mdc/util/IdentifierUtil.js +1 -1
- package/src/sap/ui/mdc/util/PromiseCache.js +10 -10
- package/src/sap/ui/mdc/util/PropertyHelper.js +3 -3
- package/src/sap/ui/mdc/util/TypeUtil.js +33 -2
- package/src/sap/ui/mdc/util/loadModules.js +1 -1
- package/src/sap/ui/mdc/valuehelp/Dialog.js +39 -9
- package/src/sap/ui/mdc/valuehelp/Popover.js +30 -5
- package/src/sap/ui/mdc/valuehelp/base/Container.js +8 -6
- package/src/sap/ui/mdc/valuehelp/base/Content.js +28 -5
- package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +2 -2
- package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +33 -32
- package/src/sap/ui/mdc/valuehelp/base/ListContent.js +5 -4
- package/src/sap/ui/mdc/valuehelp/content/Bool.js +8 -2
- package/src/sap/ui/mdc/valuehelp/content/Conditions.js +7 -3
- package/src/sap/ui/mdc/valuehelp/content/FixedList.js +11 -4
- package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +16 -14
- package/src/sap/ui/mdc/valuehelp/content/MTable.js +56 -73
- package/test/sap/ui/mdc/testutils/opa/field/Actions.js +4 -2
- package/test/sap/ui/mdc/testutils/opa/filterbar/Actions.js +1 -1
- package/test/sap/ui/mdc/testutils/opa/filterfield/Actions.js +8 -0
- package/test/sap/ui/mdc/testutils/opa/p13n/Actions.js +16 -25
- package/test/sap/ui/mdc/testutils/opa/p13n/Assertions.js +2 -1
- package/test/sap/ui/mdc/testutils/opa/p13n/waitForPanelInP13n.js +1 -1
- package/test/sap/ui/mdc/testutils/opa/table/Actions.js +291 -67
- package/test/sap/ui/mdc/testutils/opa/table/Assertions.js +4 -81
- package/test/sap/ui/mdc/testutils/opa/table/JSDoc.md +0 -50
- package/test/sap/ui/mdc/testutils/opa/table/TestObjects.js +7 -51
- package/test/sap/ui/mdc/testutils/opa/table/Util.js +0 -1
- package/test/sap/ui/mdc/testutils/opa/table/waitForTable.js +30 -5
- package/src/sap/ui/mdc/p13n/AdaptationProvider.js +0 -67
- package/src/sap/ui/mdc/p13n/modification/FlexModificationHandler.js +0 -76
- package/src/sap/ui/mdc/p13n/modification/ModificationHandler.js +0 -87
- package/src/sap/ui/mdc/p13n/modules/DefaultProviderRegistry.js +0 -149
- package/src/sap/ui/mdc/p13n/modules/StateHandlerRegistry.js +0 -86
- package/src/sap/ui/mdc/p13n/modules/xConfigAPI.js +0 -219
package/.reuse/dep5
CHANGED
|
@@ -28,7 +28,7 @@ Disclaimer: The code in this project may include calls to APIs (“API Calls”)
|
|
|
28
28
|
# OpenUI5 code
|
|
29
29
|
|
|
30
30
|
Files: *
|
|
31
|
-
Copyright: 2009-
|
|
31
|
+
Copyright: 2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
32
32
|
License: Apache-2.0
|
|
33
33
|
|
|
34
34
|
|
|
@@ -68,7 +68,7 @@ Comment: these files belong to: jQuery UI
|
|
|
68
68
|
|
|
69
69
|
Files: src/sap.ui.commons/src/sap/ui/commons/Carousel.js
|
|
70
70
|
Copyright:
|
|
71
|
-
2009-
|
|
71
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
72
72
|
Spencer Tipping
|
|
73
73
|
License: Apache-2.0 and MIT
|
|
74
74
|
Comment: these files contain content from SAP and jquery.fix.clone: Carousel.js is authored by SAP, but contains an improved implementation of the clone function which is taken from jquery-fix-clone
|
|
@@ -83,35 +83,35 @@ Comment: these files belong to: jQuery 3
|
|
|
83
83
|
|
|
84
84
|
Files: src/sap.ui.core/src/sap/base/util/isPlainObject.js
|
|
85
85
|
Copyright:
|
|
86
|
-
2009-
|
|
86
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
87
87
|
OpenJS Foundation and other contributors
|
|
88
88
|
License: Apache-2.0 and MIT
|
|
89
89
|
Comment: these files contain content from SAP and jQuery 3: isPlainObject.js is overall written by SAP, but contains a modified implementation of jQuery.isPlainObject taken from jQuery
|
|
90
90
|
|
|
91
91
|
Files: src/sap.ui.core/src/sap/base/util/_merge.js
|
|
92
92
|
Copyright:
|
|
93
|
-
2009-
|
|
93
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
94
94
|
OpenJS Foundation and other contributors
|
|
95
95
|
License: Apache-2.0 and MIT
|
|
96
96
|
Comment: these files contain content from SAP and jQuery 3: _merge.js is overall written by SAP, but contains a modified implementation of jQuery.extend taken from jQuery
|
|
97
97
|
|
|
98
98
|
Files: src/sap.ui.core/src/jquery.sap.script.js
|
|
99
99
|
Copyright:
|
|
100
|
-
2009-
|
|
100
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
101
101
|
OpenJS Foundation and other contributors
|
|
102
102
|
License: Apache-2.0 and MIT
|
|
103
103
|
Comment: these files contain content from SAP and jQuery 3: jquery.sap.script.js is overall written by SAP, but contains a modified implementation of jQuery.extend taken from jQuery
|
|
104
104
|
|
|
105
105
|
Files: src/sap.ui.core/src/sap/ui/Device.js
|
|
106
106
|
Copyright:
|
|
107
|
-
2009-
|
|
107
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
108
108
|
2011, John Resig
|
|
109
109
|
License: Apache-2.0 and MIT
|
|
110
110
|
Comment: these files contain content from SAP and jQuery 1: Device.js is overall written by SAP, but contains code taken from jQuery 1.7.1 (see the respective comment)
|
|
111
111
|
|
|
112
112
|
Files: src/sap.ui.core/src/sap/ui/dom/jquery/Selectors.js
|
|
113
113
|
Copyright:
|
|
114
|
-
2009-
|
|
114
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
115
115
|
2014 jQuery Foundation and other contributors
|
|
116
116
|
License: Apache-2.0 and MIT
|
|
117
117
|
Comment: these files contain content from SAP and jQuery UI 1.8: Selectors.js is overall written by SAP, but contains code taken from jQuery UI (see the respective comments)
|
|
@@ -123,14 +123,14 @@ Comment: these files belong to: jQuery UI 1.10
|
|
|
123
123
|
|
|
124
124
|
Files: src/sap.ui.core/src/jquery.sap.dom.js
|
|
125
125
|
Copyright:
|
|
126
|
-
2009-
|
|
126
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
127
127
|
2014 jQuery Foundation and other contributors
|
|
128
128
|
License: Apache-2.0 and MIT
|
|
129
129
|
Comment: these files contain content from SAP and jQuery UI 1.10: jquery.sap.dom.js is overall written by SAP, but contains code taken from jQuery UI Core (see the respective comment)
|
|
130
130
|
|
|
131
131
|
Files: src/sap.ui.core/src/sap/ui/dom/jquery/zIndex.js
|
|
132
132
|
Copyright:
|
|
133
|
-
2009-
|
|
133
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
134
134
|
2014 jQuery Foundation and other contributors
|
|
135
135
|
License: Apache-2.0 and MIT
|
|
136
136
|
Comment: these files contain content from SAP and jQuery UI 1.11: zIndex.js is overall written by SAP, but contains an implementation of the function 'fnzIndex' which is taken from jQuery UI Datepicker 1.11.1
|
|
@@ -162,7 +162,7 @@ Comment: these files belong to: jQuery Mobile
|
|
|
162
162
|
|
|
163
163
|
Files: src/sap.ui.core/src/sap/ui/util/_FeatureDetection.js
|
|
164
164
|
Copyright:
|
|
165
|
-
2009-
|
|
165
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
166
166
|
2012 Wei-Ko Kao
|
|
167
167
|
License: Apache-2.0 and MIT
|
|
168
168
|
Comment: these files contain content from SAP and jQuery.rtl-scroll-type: _FeatureDetection.js is overall written by SAP, but contains code which is inspired by jQuery.rtl-scroll-type
|
|
@@ -299,14 +299,14 @@ Comment: these files belong to: blanket.js
|
|
|
299
299
|
|
|
300
300
|
Files: src/sap.ui.core/src/sap/base/util/JSTokenizer.js
|
|
301
301
|
Copyright:
|
|
302
|
-
2009-
|
|
302
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
303
303
|
Douglas Crockford
|
|
304
304
|
License: Apache-2.0 and LicenseRef-JSONinJSPublicDomain
|
|
305
305
|
Comment: these files contain content from SAP and JSON in JS: JSTokenizer.js is overall written by SAP, but contains code has been taken from the component JSON in JavaScript (https://github.com/douglascrockford/JSON-js/blob/master/json2.js) from Douglas Crockford which is licensed under Public Domain
|
|
306
306
|
|
|
307
307
|
Files: src/sap.ui.core/src/sap/ui/base/ExpressionParser.js
|
|
308
308
|
Copyright:
|
|
309
|
-
2009-
|
|
309
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
310
310
|
2010 Douglas Crockford
|
|
311
311
|
License: Apache-2.0
|
|
312
312
|
Comment: these files contain content from SAP and Top Down Operator Precedence: ExpressionParser.js is overall written by SAP, but contains code taken from or inspired by TDOP by Douglas Crockford (see the respective comment)
|
|
@@ -340,7 +340,7 @@ Comment: these files contain content from p-cancelable and @babel/helpers: _Canc
|
|
|
340
340
|
|
|
341
341
|
Files: src/sap.ui.core/src/sap/ui/core/date/Persian.js
|
|
342
342
|
Copyright:
|
|
343
|
-
2009-
|
|
343
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
344
344
|
Behrang Norouzinia
|
|
345
345
|
License: Apache-2.0 and MIT
|
|
346
346
|
Comment: these files contain content from SAP and Jalaali JS: Persian.js is overall written by SAP, but the calculation is taken from jalaali-js
|
|
@@ -352,14 +352,14 @@ Comment: these files belong to: vkBeautify
|
|
|
352
352
|
|
|
353
353
|
Files: src/sap.ui.core/src/sap/ui/core/cache/LRUPersistentCache.js
|
|
354
354
|
Copyright:
|
|
355
|
-
2009-
|
|
355
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
356
356
|
Isaac Z. Schlueter and Contributors
|
|
357
357
|
License: Apache-2.0 and ISC
|
|
358
358
|
Comment: these files contain content from SAP and node-lru-cache: LRUPersistentCache.js is overall written by SAP, but portions ('Least Recently Used' logic) are taken from the node-lru-cache project (see https://github.com/isaacs/node-lru-cache/blob/v2.7.3/README.md) and modified.
|
|
359
359
|
|
|
360
360
|
Files: src/sap.ui.core/test/sap/ui/core/qunit/i18n/helper/_timezones.js
|
|
361
361
|
Copyright:
|
|
362
|
-
2009-
|
|
362
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
363
363
|
Arthur David Olson, Paul Eggert and other contributors
|
|
364
364
|
License: Apache-2.0 and LicenseRef-tzdata-PublicDomain
|
|
365
365
|
Comment: these files contain content from SAP and Time Zone Database: _timezones.js is overall written by SAP, but the list of IANA timezone IDs is taken from the Timezone Database
|
|
@@ -469,7 +469,7 @@ Comment: these files belong to: LESS
|
|
|
469
469
|
|
|
470
470
|
Files: lib/jsdoc/ui5/plugin.js
|
|
471
471
|
Copyright:
|
|
472
|
-
2009-
|
|
472
|
+
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
473
473
|
2011-present Michael Mathews micmath@gmail.com and the contributors to JSDoc
|
|
474
474
|
License: Apache-2.0
|
|
475
475
|
Comment: these files contain content from SAP and JSDoc 3: plugin.js is overall written by SAP, but contains code taken from JSDoc 3.6.7 (see the respective comments)
|
package/THIRDPARTY.txt
CHANGED
|
@@ -185,7 +185,7 @@ License: Apache-2.0
|
|
|
185
185
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
186
186
|
Contained in: src/sap.ui.core/src/sap/ui/thirdparty/caja-html-sanitizer.js
|
|
187
187
|
|
|
188
|
-
Component: Unicode Common Locale Data Repository, version:
|
|
188
|
+
Component: Unicode Common Locale Data Repository, version: 41
|
|
189
189
|
Copyright: 1991-2014 Unicode, Inc.
|
|
190
190
|
License: Unicode-DFS-2015
|
|
191
191
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Unicode-DFS-2015.txt
|
|
@@ -478,7 +478,7 @@ License: Apache-2.0
|
|
|
478
478
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
479
479
|
Contained in: lib/jsdoc/ui5/plugin.js
|
|
480
480
|
|
|
481
|
-
Component: SAP Theming Base Content, version: 11.1.
|
|
481
|
+
Component: SAP Theming Base Content, version: 11.1.48
|
|
482
482
|
Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
|
|
483
483
|
License: Apache-2.0
|
|
484
484
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.ui.mdc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.110.0",
|
|
4
4
|
"description": "OpenUI5 UI Library sap.ui.mdc",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"url": "https://github.com/SAP/openui5.git"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@openui5/sap.m": "1.
|
|
18
|
-
"@openui5/sap.ui.core": "1.
|
|
19
|
-
"@openui5/sap.ui.layout": "1.
|
|
17
|
+
"@openui5/sap.m": "1.110.0",
|
|
18
|
+
"@openui5/sap.ui.core": "1.110.0",
|
|
19
|
+
"@openui5/sap.ui.layout": "1.110.0"
|
|
20
20
|
}
|
|
21
21
|
}
|
package/src/sap/ui/mdc/.library
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
<name>sap.ui.mdc</name>
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
6
|
<copyright>OpenUI5
|
|
7
|
-
* (c) Copyright 2009-
|
|
7
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
8
8
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
|
|
9
|
-
<version>1.
|
|
9
|
+
<version>1.110.0</version>
|
|
10
10
|
|
|
11
11
|
<documentation>UI5 library: sap.ui.mdc</documentation>
|
|
12
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -12,7 +12,7 @@ sap.ui.define([
|
|
|
12
12
|
"sap/m/library",
|
|
13
13
|
"sap/ui/mdc/enum/ActionToolbarActionAlignment",
|
|
14
14
|
"sap/ui/mdc/p13n/subcontroller/ActionToolbarController",
|
|
15
|
-
"sap/
|
|
15
|
+
"sap/m/p13n/Engine"
|
|
16
16
|
], function(OverflowToolbar, OverflowToolbarRenderer, ToolbarSpacer, ToolbarSeparator, mobileLibrary, ActionToolbarActionAlignment, ActionToolbarController, Engine) {
|
|
17
17
|
"use strict";
|
|
18
18
|
|
|
@@ -31,7 +31,7 @@ sap.ui.define([
|
|
|
31
31
|
* @class The column for the metadata driven table, that hold the template to be shown when the rows has data.
|
|
32
32
|
* @extends sap.m.OverflowToolbar
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.
|
|
34
|
+
* @version 1.110.0
|
|
35
35
|
* @constructor
|
|
36
36
|
* @private
|
|
37
37
|
* @since 1.58
|
|
@@ -132,9 +132,9 @@ sap.ui.define([
|
|
|
132
132
|
|
|
133
133
|
this.setUseAsHeader(true);
|
|
134
134
|
|
|
135
|
-
Engine.getInstance().
|
|
135
|
+
Engine.getInstance().register(this, {
|
|
136
136
|
controller: {
|
|
137
|
-
actionsKey: ActionToolbarController
|
|
137
|
+
actionsKey: new ActionToolbarController({control: this})
|
|
138
138
|
}
|
|
139
139
|
});
|
|
140
140
|
};
|
package/src/sap/ui/mdc/Chart.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -24,7 +24,6 @@ sap.ui.define([
|
|
|
24
24
|
"sap/ui/base/ManagedObjectObserver",
|
|
25
25
|
"sap/ui/mdc/chart/DrillBreadcrumbs",
|
|
26
26
|
"sap/ui/mdc/actiontoolbar/ActionToolbarAction",
|
|
27
|
-
"sap/ui/thirdparty/jquery",
|
|
28
27
|
"sap/ui/core/library"
|
|
29
28
|
],
|
|
30
29
|
function (
|
|
@@ -47,7 +46,6 @@ sap.ui.define([
|
|
|
47
46
|
ManagedObjectObserver,
|
|
48
47
|
Breadcrumbs,
|
|
49
48
|
ActionToolbarAction,
|
|
50
|
-
jQuery,
|
|
51
49
|
coreLibrary
|
|
52
50
|
) {
|
|
53
51
|
"use strict";
|
|
@@ -63,9 +61,9 @@ sap.ui.define([
|
|
|
63
61
|
* @class The Chart control creates a chart based on metadata and the configuration specified.
|
|
64
62
|
* @extends sap.ui.mdc.Control
|
|
65
63
|
* @author SAP SE
|
|
66
|
-
* @version 1.
|
|
64
|
+
* @version 1.110.0
|
|
67
65
|
* @constructor
|
|
68
|
-
* @experimental As of version
|
|
66
|
+
* @experimental As of version 1.88
|
|
69
67
|
* @private
|
|
70
68
|
* @ui5-restricted sap.fe
|
|
71
69
|
* @MDC_PUBLIC_CANDIDATE
|
|
@@ -236,7 +234,7 @@ sap.ui.define([
|
|
|
236
234
|
/**
|
|
237
235
|
* Specifies the chart metadata.<br>
|
|
238
236
|
* <b>Note</b>: This property must not be bound.<br>
|
|
239
|
-
* <b>Note</b>: This property is used exclusively for SAPUI5 flexibility/
|
|
237
|
+
* <b>Note</b>: This property is used exclusively for SAPUI5 flexibility/ sap.fe. Do not use it otherwise.
|
|
240
238
|
*
|
|
241
239
|
* @since 1.99
|
|
242
240
|
*/
|
|
@@ -396,7 +394,7 @@ sap.ui.define([
|
|
|
396
394
|
*
|
|
397
395
|
* @experimental
|
|
398
396
|
* @private
|
|
399
|
-
* @ui5-restricted
|
|
397
|
+
* @ui5-restricted sap.fe
|
|
400
398
|
*/
|
|
401
399
|
Chart.prototype.setP13nMode = function(aMode) {
|
|
402
400
|
var aSortedKeys = null;
|
|
@@ -440,10 +438,10 @@ sap.ui.define([
|
|
|
440
438
|
};
|
|
441
439
|
|
|
442
440
|
var mRegistryOptions = {
|
|
443
|
-
Item: ChartItemController,
|
|
444
|
-
Sort: SortController,
|
|
445
|
-
Filter: FilterController,
|
|
446
|
-
Type: ChartTypeController
|
|
441
|
+
Item: new ChartItemController({control: this}),
|
|
442
|
+
Sort: new SortController({control: this}),
|
|
443
|
+
Filter: new FilterController({control: this}),
|
|
444
|
+
Type: new ChartTypeController({control: this})
|
|
447
445
|
};
|
|
448
446
|
|
|
449
447
|
if (aMode && aMode.length > 0) {
|
|
@@ -455,7 +453,7 @@ sap.ui.define([
|
|
|
455
453
|
}
|
|
456
454
|
});
|
|
457
455
|
|
|
458
|
-
this.getEngine().
|
|
456
|
+
this.getEngine().register(this, oRegisterConfig);
|
|
459
457
|
}
|
|
460
458
|
|
|
461
459
|
};
|
|
@@ -477,7 +475,7 @@ sap.ui.define([
|
|
|
477
475
|
*
|
|
478
476
|
* @experimental
|
|
479
477
|
* @private
|
|
480
|
-
* @ui5-restricted
|
|
478
|
+
* @ui5-restricted sap.fe
|
|
481
479
|
*/
|
|
482
480
|
Chart.prototype.getConditions = function() {
|
|
483
481
|
//may only return conditions if the inner FilterBar has already been initialized
|
|
@@ -630,7 +628,7 @@ sap.ui.define([
|
|
|
630
628
|
*
|
|
631
629
|
* @experimental
|
|
632
630
|
* @private
|
|
633
|
-
* @ui5-restricted
|
|
631
|
+
* @ui5-restricted sap.fe
|
|
634
632
|
*/
|
|
635
633
|
Chart.prototype.isFilteringEnabled = function () {
|
|
636
634
|
return this.getP13nMode().indexOf("Filter") > -1;
|
|
@@ -887,7 +885,7 @@ sap.ui.define([
|
|
|
887
885
|
*
|
|
888
886
|
* @experimental
|
|
889
887
|
* @private
|
|
890
|
-
* @ui5-restricted
|
|
888
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
891
889
|
*/
|
|
892
890
|
Chart.prototype.setLegendVisible = function (bVisible) {
|
|
893
891
|
this.setProperty("legendVisible", bVisible);
|
|
@@ -985,7 +983,7 @@ sap.ui.define([
|
|
|
985
983
|
*
|
|
986
984
|
* @experimental
|
|
987
985
|
* @private
|
|
988
|
-
* @ui5-restricted
|
|
986
|
+
* @ui5-restricted sap.fe
|
|
989
987
|
*
|
|
990
988
|
*/
|
|
991
989
|
Chart.prototype.getChartTypeInfo = function () {
|
|
@@ -1017,7 +1015,7 @@ sap.ui.define([
|
|
|
1017
1015
|
*
|
|
1018
1016
|
* @experimental
|
|
1019
1017
|
* @private
|
|
1020
|
-
* @ui5-restricted
|
|
1018
|
+
* @ui5-restricted sap.fe
|
|
1021
1019
|
*/
|
|
1022
1020
|
Chart.prototype.getAvailableChartTypes = function () {
|
|
1023
1021
|
return this.getControlDelegate().getAvailableChartTypes(this);
|
|
@@ -1049,7 +1047,7 @@ sap.ui.define([
|
|
|
1049
1047
|
*
|
|
1050
1048
|
* @experimental
|
|
1051
1049
|
* @private
|
|
1052
|
-
* @ui5-restricted
|
|
1050
|
+
* @ui5-restricted sap.fe
|
|
1053
1051
|
*/
|
|
1054
1052
|
Chart.prototype.setNoData = function(oControl) {
|
|
1055
1053
|
this.setAggregation("noData", oControl);
|
|
@@ -1208,15 +1206,15 @@ sap.ui.define([
|
|
|
1208
1206
|
};
|
|
1209
1207
|
|
|
1210
1208
|
/**
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1209
|
+
* Callback for when fuilters changed
|
|
1210
|
+
* Activates the overlay on the MDC chart
|
|
1211
|
+
*
|
|
1212
|
+
* @param oEvent filter changed event
|
|
1213
|
+
*
|
|
1214
|
+
* @experimental
|
|
1215
|
+
* @private
|
|
1216
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
1217
|
+
*/
|
|
1220
1218
|
Chart.prototype._onFiltersChanged = function(oEvent) {
|
|
1221
1219
|
if (this._bInnerChartReady && this.getControlDelegate() && this.getControlDelegate().getInnerChartBound(this) && oEvent.getParameter("conditionsBased")) {
|
|
1222
1220
|
this._renderOverlay(true);
|
|
@@ -1236,13 +1234,13 @@ sap.ui.define([
|
|
|
1236
1234
|
};
|
|
1237
1235
|
|
|
1238
1236
|
/**
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1237
|
+
* Adds/Removes the overlay shown above the inner chart.
|
|
1238
|
+
* @param {boolean} bShow true to show overlay, false to hide
|
|
1239
|
+
*
|
|
1240
|
+
* @experimental
|
|
1241
|
+
* @private
|
|
1242
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
1243
|
+
*/
|
|
1246
1244
|
Chart.prototype._renderOverlay = function(bShow) {
|
|
1247
1245
|
try {
|
|
1248
1246
|
this.getControlDelegate().showOverlay(this, bShow);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -32,7 +32,7 @@ sap.ui.define([
|
|
|
32
32
|
* @param {int} iValue Value to zoom in
|
|
33
33
|
* @experimental
|
|
34
34
|
* @private
|
|
35
|
-
* @ui5-restricted
|
|
35
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
36
36
|
*/
|
|
37
37
|
ChartDelegate.zoomIn = function (oMDCChart, iValue) {
|
|
38
38
|
};
|
|
@@ -43,7 +43,7 @@ sap.ui.define([
|
|
|
43
43
|
* @param {int} iValue value to zoom in
|
|
44
44
|
* @experimental
|
|
45
45
|
* @private
|
|
46
|
-
* @ui5-restricted
|
|
46
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
47
47
|
*/
|
|
48
48
|
ChartDelegate.zoomOut = function (oMDCChart, iValue) {
|
|
49
49
|
};
|
|
@@ -53,6 +53,8 @@ sap.ui.define([
|
|
|
53
53
|
* @typedef {object} ZoomState
|
|
54
54
|
* @property {boolean} enabled <code>true</code> if zooming is enabled
|
|
55
55
|
* @property {number} currentZoomLevel Current zoom level of the chart in percent (between 0 and 1)
|
|
56
|
+
* @private
|
|
57
|
+
* @ui5-restricted Fiori Elements, sap.ui.mdc
|
|
56
58
|
*/
|
|
57
59
|
/**
|
|
58
60
|
* Gets the current zooming information for the inner chart.
|
|
@@ -60,7 +62,7 @@ sap.ui.define([
|
|
|
60
62
|
* @returns {ZoomState} Current <code>ZoomState</code> of the inner chart
|
|
61
63
|
* @experimental
|
|
62
64
|
* @private
|
|
63
|
-
* @ui5-restricted
|
|
65
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
64
66
|
*/
|
|
65
67
|
ChartDelegate.getZoomState = function (oMDCChart) {
|
|
66
68
|
};
|
|
@@ -115,11 +117,11 @@ sap.ui.define([
|
|
|
115
117
|
* @param {string} sPropertyName the name of the property added
|
|
116
118
|
* @param {sap.ui.mdc.Chart} oMDCChart Reference to the MDC chart to add the property to
|
|
117
119
|
* @param {object} mPropertyBag the property bag containing useful information about the change
|
|
118
|
-
* @param {
|
|
120
|
+
* @param {string} sRole new role for given item (if available)
|
|
119
121
|
* @returns {Promise} Promise that resolves with new MDC chart Item as parameter
|
|
120
122
|
* @experimental
|
|
121
123
|
* @private
|
|
122
|
-
* @ui5-restricted
|
|
124
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
123
125
|
*/
|
|
124
126
|
ChartDelegate.addItem = function (sPropertyName, oMDCChart, mPropertyBag, sRole) {
|
|
125
127
|
};
|
|
@@ -140,7 +142,7 @@ sap.ui.define([
|
|
|
140
142
|
* @returns {object} Event handler for chartSelectionDetails
|
|
141
143
|
* @experimental
|
|
142
144
|
* @private
|
|
143
|
-
* @ui5-restricted
|
|
145
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
144
146
|
*/
|
|
145
147
|
ChartDelegate.getInnerChartSelectionHandler = function (oMDCChart) {
|
|
146
148
|
};
|
|
@@ -153,14 +155,14 @@ sap.ui.define([
|
|
|
153
155
|
*
|
|
154
156
|
* @experimental
|
|
155
157
|
* @private
|
|
156
|
-
* @ui5-restricted
|
|
158
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
157
159
|
*/
|
|
158
160
|
ChartDelegate.setLegendVisible = function (oMDCChart, bVisible) {
|
|
159
161
|
};
|
|
160
162
|
|
|
161
163
|
/**
|
|
162
164
|
* Creates a sorter for a given property.
|
|
163
|
-
* @param {sap.ui.mdc.
|
|
165
|
+
* @param {sap.ui.mdc.chart.Item} oMDCItem MDC item for which a sorter is created
|
|
164
166
|
* @param {object} oSortProperty The sorting information
|
|
165
167
|
*
|
|
166
168
|
* @experimental
|
|
@@ -182,7 +184,7 @@ sap.ui.define([
|
|
|
182
184
|
* @param {int} iIndex the index to insert into
|
|
183
185
|
* @experimental
|
|
184
186
|
* @private
|
|
185
|
-
* @ui5-restricted
|
|
187
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
186
188
|
*/
|
|
187
189
|
ChartDelegate.insertItemToInnerChart = function (oMDCChart, oMDCChartItem, iIndex) {
|
|
188
190
|
};
|
|
@@ -195,7 +197,7 @@ sap.ui.define([
|
|
|
195
197
|
* @param {sap.ui.mdc.chart.Item} oMDCChartItem Item to remove from the inner chart
|
|
196
198
|
* @experimental
|
|
197
199
|
* @private
|
|
198
|
-
* @ui5-restricted
|
|
200
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
199
201
|
*/
|
|
200
202
|
ChartDelegate.removeItemFromInnerChart = function (oMDCChart, oMDCChartItem) {
|
|
201
203
|
};
|
|
@@ -253,15 +255,17 @@ sap.ui.define([
|
|
|
253
255
|
};
|
|
254
256
|
|
|
255
257
|
/**
|
|
256
|
-
* @typedef {object} ChartTypeObject
|
|
258
|
+
* @typedef {object} sap.ui.mdc.ChartTypeObject
|
|
257
259
|
* @property {string} key Unique key of the chart type
|
|
258
260
|
* @property {string} icon URI for the icon for the current chart type
|
|
259
261
|
* @property {string} text Name of the current chart type
|
|
260
262
|
* @property {boolean} selected Whether the chart type is the one currently used
|
|
263
|
+
* @private
|
|
264
|
+
* @ui5-restricted sap.ui.mdc, Fiori Elements
|
|
261
265
|
*/
|
|
262
266
|
/**
|
|
263
267
|
* Returns the current chart type.
|
|
264
|
-
* @returns {ChartTypeObject} Information about the current chart type
|
|
268
|
+
* @returns {sap.ui.mdc.ChartTypeObject} Information about the current chart type
|
|
265
269
|
* @throws Exception if inner chart is not initialized yet
|
|
266
270
|
*
|
|
267
271
|
* @experimental
|
|
@@ -273,7 +277,7 @@ sap.ui.define([
|
|
|
273
277
|
|
|
274
278
|
/**
|
|
275
279
|
* This function is used by P13n to determine which chart type supports which layout options.
|
|
276
|
-
* There might be chart
|
|
280
|
+
* There might be chart types that do not support certain layout options (for example, "Axis3").
|
|
277
281
|
* Layout configuration is defined as followed:
|
|
278
282
|
* {
|
|
279
283
|
* key: string, //identifier for the chart type
|
|
@@ -289,11 +293,11 @@ sap.ui.define([
|
|
|
289
293
|
/**
|
|
290
294
|
* Gets the available chart types for the current state of the inner chart.
|
|
291
295
|
* @param {sap.ui.mdc.Chart} oMDCChart Reference to the MDC chart
|
|
292
|
-
* @returns {Array<ChartTypeObject>} Array containing the available chart types
|
|
296
|
+
* @returns {Array<sap.ui.mdc.ChartTypeObject>} Array containing the available chart types
|
|
293
297
|
*
|
|
294
298
|
* @experimental
|
|
295
299
|
* @private
|
|
296
|
-
* @ui5-restricted
|
|
300
|
+
* @ui5-restricted sap.fe
|
|
297
301
|
*/
|
|
298
302
|
ChartDelegate.getAvailableChartTypes = function (oMDCChart) {
|
|
299
303
|
};
|
|
@@ -490,7 +494,7 @@ sap.ui.define([
|
|
|
490
494
|
};
|
|
491
495
|
|
|
492
496
|
/**
|
|
493
|
-
* Returns the relevant
|
|
497
|
+
* Returns the relevant property infos based on the metadata used with the MDC chart instance.
|
|
494
498
|
*
|
|
495
499
|
* @param {sap.ui.mdc.Chart} oMDCChart Reference to the MDC chart
|
|
496
500
|
* @returns {array} Array of the property infos to be used within MDC chart
|
|
@@ -502,14 +506,14 @@ sap.ui.define([
|
|
|
502
506
|
ChartDelegate.fetchProperties = function (oMDCChart) {
|
|
503
507
|
};
|
|
504
508
|
|
|
505
|
-
|
|
509
|
+
/**
|
|
506
510
|
* Adds/Removes the overlay shown above the inner chart.
|
|
507
511
|
* @param {sap.ui.mdc.Chart} oMDCChart reference to the chart
|
|
508
512
|
* @param {boolean} bShow <code>true</code> to show overlay, <code>false</code> to hide
|
|
509
513
|
*
|
|
510
514
|
* @experimental
|
|
511
515
|
* @private
|
|
512
|
-
* @ui5-restricted
|
|
516
|
+
* @ui5-restricted sap.fe, sap.ui.mdc
|
|
513
517
|
*/
|
|
514
518
|
ChartDelegate.showOverlay = function(oMDCChart, bShow) {
|
|
515
519
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -20,7 +20,7 @@ sap.ui.define([
|
|
|
20
20
|
* @extends sap.ui.core.Control
|
|
21
21
|
* @abstract
|
|
22
22
|
* @author SAP SE
|
|
23
|
-
* @version 1.
|
|
23
|
+
* @version 1.110.0
|
|
24
24
|
* @alias sap.ui.mdc.Control
|
|
25
25
|
*
|
|
26
26
|
* @borrows sap.ui.mdc.mixin.DelegateMixin.awaitControlDelegate as awaitControlDelegate
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -20,7 +20,7 @@ sap.ui.define([
|
|
|
20
20
|
* @extends sap.ui.core.Element
|
|
21
21
|
* @abstract
|
|
22
22
|
* @author SAP SE
|
|
23
|
-
* @version 1.
|
|
23
|
+
* @version 1.110.0
|
|
24
24
|
* @alias sap.ui.mdc.Element
|
|
25
25
|
*
|
|
26
26
|
* @borrows sap.ui.mdc.mixin.DelegateMixin.awaitControlDelegate as awaitControlDelegate
|