@openui5/sap.m 1.109.0 → 1.111.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/m/.library +2 -2
- package/src/sap/m/AccButton.js +2 -2
- package/src/sap/m/AccButtonRenderer.js +1 -1
- package/src/sap/m/ActionListItem.js +2 -2
- package/src/sap/m/ActionListItemRenderer.js +1 -1
- package/src/sap/m/ActionSelect.js +3 -2
- package/src/sap/m/ActionSelectRenderer.js +1 -1
- package/src/sap/m/ActionSheet.js +3 -3
- package/src/sap/m/ActionSheetRenderer.js +1 -1
- package/src/sap/m/ActionTile.js +88 -88
- package/src/sap/m/ActionTileContent.js +2 -2
- package/src/sap/m/ActionTileContentRenderer.js +1 -1
- package/src/sap/m/AdditionalTextButton.js +2 -2
- package/src/sap/m/AdditionalTextButtonRenderer.js +1 -1
- package/src/sap/m/App.js +2 -2
- package/src/sap/m/AppRenderer.js +1 -1
- package/src/sap/m/AssociativeOverflowToolbar.js +2 -2
- package/src/sap/m/Avatar.js +2 -2
- package/src/sap/m/AvatarColor.js +1 -1
- package/src/sap/m/AvatarImageFitType.js +1 -1
- package/src/sap/m/AvatarRenderer.js +1 -1
- package/src/sap/m/AvatarShape.js +1 -1
- package/src/sap/m/AvatarSize.js +1 -1
- package/src/sap/m/AvatarType.js +1 -1
- package/src/sap/m/BadgeCustomData.js +1 -1
- package/src/sap/m/BadgeEnabler.js +1 -1
- package/src/sap/m/Bar.js +23 -22
- package/src/sap/m/BarInPageEnabler.js +21 -3
- package/src/sap/m/BarRenderer.js +1 -1
- package/src/sap/m/Breadcrumbs.js +16 -2
- package/src/sap/m/BreadcrumbsRenderer.js +1 -1
- package/src/sap/m/BusyDialog.js +2 -2
- package/src/sap/m/BusyIndicator.js +2 -2
- package/src/sap/m/BusyIndicatorRenderer.js +1 -1
- package/src/sap/m/Button.js +19 -4
- package/src/sap/m/ButtonRenderer.js +1 -1
- package/src/sap/m/Carousel.js +17 -10
- package/src/sap/m/CarouselLayout.js +3 -3
- package/src/sap/m/CarouselRenderer.js +3 -2
- package/src/sap/m/CheckBox.js +20 -4
- package/src/sap/m/CheckBoxRenderer.js +3 -2
- package/src/sap/m/ColorPalette.js +3 -3
- package/src/sap/m/ColorPalettePopover.js +2 -2
- package/src/sap/m/ColorPaletteRenderer.js +1 -1
- package/src/sap/m/Column.js +15 -7
- package/src/sap/m/ColumnHeaderPopover.js +2 -2
- package/src/sap/m/ColumnListItem.js +3 -3
- package/src/sap/m/ColumnListItemRenderer.js +1 -1
- package/src/sap/m/ColumnPopoverActionItem.js +2 -2
- package/src/sap/m/ColumnPopoverCustomItem.js +2 -2
- package/src/sap/m/ColumnPopoverItem.js +2 -2
- package/src/sap/m/ColumnPopoverSelectListItem.js +3 -3
- package/src/sap/m/ColumnPopoverSortItem.js +2 -2
- package/src/sap/m/ComboBox.js +46 -22
- package/src/sap/m/ComboBoxBase.js +19 -14
- package/src/sap/m/ComboBoxBaseRenderer.js +4 -4
- package/src/sap/m/ComboBoxRenderer.js +1 -1
- package/src/sap/m/ComboBoxTextField.js +2 -2
- package/src/sap/m/ComboBoxTextFieldRenderer.js +1 -1
- package/src/sap/m/CustomAttribute.js +1 -1
- package/src/sap/m/CustomDynamicDateOption.js +2 -2
- package/src/sap/m/CustomListItem.js +3 -3
- package/src/sap/m/CustomListItemRenderer.js +1 -1
- package/src/sap/m/CustomTile.js +2 -2
- package/src/sap/m/CustomTileRenderer.js +1 -1
- package/src/sap/m/CustomTreeItem.js +2 -2
- package/src/sap/m/CustomTreeItemRenderer.js +1 -1
- package/src/sap/m/DatePicker.js +46 -63
- package/src/sap/m/DatePickerRenderer.js +1 -1
- package/src/sap/m/DateRangeSelection.js +70 -58
- package/src/sap/m/DateRangeSelectionRenderer.js +1 -1
- package/src/sap/m/DateTimeField.js +24 -22
- package/src/sap/m/DateTimeFieldRenderer.js +1 -1
- package/src/sap/m/DateTimeInput.js +28 -5
- package/src/sap/m/DateTimeInputRenderer.js +1 -1
- package/src/sap/m/DateTimePicker.js +117 -103
- package/src/sap/m/DateTimePickerRenderer.js +16 -6
- package/src/sap/m/Dialog.js +82 -21
- package/src/sap/m/DialogRenderer.js +44 -36
- package/src/sap/m/DisplayListItem.js +2 -2
- package/src/sap/m/DisplayListItemRenderer.js +1 -1
- package/src/sap/m/DraftIndicator.js +2 -2
- package/src/sap/m/DraftIndicatorRenderer.js +1 -1
- package/src/sap/m/DynamicDate.js +6 -6
- package/src/sap/m/DynamicDateFormat.js +22 -5
- package/src/sap/m/DynamicDateOption.js +24 -18
- package/src/sap/m/DynamicDateRange.js +235 -45
- package/src/sap/m/DynamicDateRangeRenderer.js +1 -1
- package/src/sap/m/DynamicDateUtil.js +15 -6
- package/src/sap/m/DynamicDateValueHelpUIType.js +3 -3
- package/src/sap/m/ExpandableText.js +23 -11
- package/src/sap/m/ExpandableTextRenderer.js +1 -1
- package/src/sap/m/FacetFilter.js +7 -4
- package/src/sap/m/FacetFilterItem.js +2 -2
- package/src/sap/m/FacetFilterItemRenderer.js +1 -1
- package/src/sap/m/FacetFilterList.js +2 -2
- package/src/sap/m/FacetFilterListRenderer.js +1 -1
- package/src/sap/m/FacetFilterRenderer.js +1 -1
- package/src/sap/m/FeedContent.js +2 -2
- package/src/sap/m/FeedContentRenderer.js +1 -1
- package/src/sap/m/FeedInput.js +2 -2
- package/src/sap/m/FeedInputRenderer.js +1 -1
- package/src/sap/m/FeedListItem.js +2 -2
- package/src/sap/m/FeedListItemAction.js +2 -2
- package/src/sap/m/FeedListItemRenderer.js +1 -1
- package/src/sap/m/Fiori20Adapter.js +21 -14
- package/src/sap/m/FlexBox.js +3 -3
- package/src/sap/m/FlexBoxRenderer.js +1 -1
- package/src/sap/m/FlexBoxStylingHelper.js +1 -1
- package/src/sap/m/FlexItemData.js +2 -2
- package/src/sap/m/FormattedText.js +2 -2
- package/src/sap/m/FormattedTextAnchorGenerator.js +1 -1
- package/src/sap/m/FormattedTextRenderer.js +1 -1
- package/src/sap/m/GenericTag.js +19 -3
- package/src/sap/m/GenericTagRenderer.js +1 -1
- package/src/sap/m/GenericTile.js +43 -27
- package/src/sap/m/GenericTileLineModeRenderer.js +4 -4
- package/src/sap/m/GenericTileRenderer.js +2 -2
- package/src/sap/m/GroupHeaderListItem.js +2 -2
- package/src/sap/m/GroupHeaderListItemRenderer.js +1 -1
- package/src/sap/m/GrowingEnablement.js +29 -9
- package/src/sap/m/GrowingList.js +2 -2
- package/src/sap/m/GrowingListRenderer.js +1 -1
- package/src/sap/m/HBox.js +2 -2
- package/src/sap/m/HBoxRenderer.js +1 -1
- package/src/sap/m/HeaderContainer.js +2 -2
- package/src/sap/m/HeaderContainerItemNavigator.js +2 -2
- package/src/sap/m/HeaderContainerRenderer.js +1 -1
- package/src/sap/m/HyphenationSupport.js +1 -1
- package/src/sap/m/IconTabBar.js +16 -3
- package/src/sap/m/IconTabBarDragAndDropUtil.js +1 -1
- package/src/sap/m/IconTabBarRenderer.js +1 -1
- package/src/sap/m/IconTabBarSelectList.js +2 -2
- package/src/sap/m/IconTabBarSelectListRenderer.js +1 -1
- package/src/sap/m/IconTabFilter.js +9 -9
- package/src/sap/m/IconTabFilterExpandButtonBadge.js +2 -2
- package/src/sap/m/IconTabHeader.js +44 -2
- package/src/sap/m/IconTabHeaderRenderer.js +26 -4
- package/src/sap/m/IconTabSeparator.js +2 -2
- package/src/sap/m/IllustratedMessage.js +66 -27
- package/src/sap/m/IllustratedMessageRenderer.js +14 -6
- package/src/sap/m/IllustratedMessageSize.js +1 -1
- package/src/sap/m/IllustratedMessageType.js +1 -1
- package/src/sap/m/Illustration.js +2 -2
- package/src/sap/m/IllustrationPool.js +1 -1
- package/src/sap/m/IllustrationRenderer.js +1 -1
- package/src/sap/m/Image.js +4 -3
- package/src/sap/m/ImageContent.js +2 -2
- package/src/sap/m/ImageContentRenderer.js +1 -1
- package/src/sap/m/ImageRenderer.js +1 -1
- package/src/sap/m/Input.js +84 -19
- package/src/sap/m/InputBase.js +8 -8
- package/src/sap/m/InputBaseRenderer.js +2 -2
- package/src/sap/m/InputListItem.js +2 -2
- package/src/sap/m/InputListItemRenderer.js +1 -1
- package/src/sap/m/InputRenderer.js +1 -1
- package/src/sap/m/InstanceManager.js +1 -1
- package/src/sap/m/Label.js +18 -4
- package/src/sap/m/LabelRenderer.js +1 -1
- package/src/sap/m/LightBox.js +2 -2
- package/src/sap/m/LightBoxItem.js +2 -2
- package/src/sap/m/LightBoxRenderer.js +1 -1
- package/src/sap/m/Link.js +19 -4
- package/src/sap/m/LinkRenderer.js +1 -1
- package/src/sap/m/List.js +2 -2
- package/src/sap/m/ListBase.js +10 -8
- package/src/sap/m/ListBaseRenderer.js +1 -1
- package/src/sap/m/ListItemBase.js +6 -13
- package/src/sap/m/ListItemBaseRenderer.js +4 -4
- package/src/sap/m/ListRenderer.js +1 -1
- package/src/sap/m/MaskEnabler.js +2 -2
- package/src/sap/m/MaskInput.js +2 -2
- package/src/sap/m/MaskInputRenderer.js +1 -1
- package/src/sap/m/MaskInputRule.js +2 -2
- package/src/sap/m/Menu.js +5 -5
- package/src/sap/m/MenuButton.js +37 -34
- package/src/sap/m/MenuButtonRenderer.js +1 -1
- package/src/sap/m/MenuItem.js +2 -2
- package/src/sap/m/MenuListItem.js +2 -2
- package/src/sap/m/MenuListItemRenderer.js +1 -1
- package/src/sap/m/MessageBox.js +54 -36
- package/src/sap/m/MessageItem.js +2 -2
- package/src/sap/m/MessageListItem.js +23 -2
- package/src/sap/m/MessageListItemRenderer.js +1 -1
- package/src/sap/m/MessagePage.js +21 -23
- package/src/sap/m/MessagePageRenderer.js +1 -1
- package/src/sap/m/MessagePopover.js +4 -5
- package/src/sap/m/MessagePopoverItem.js +2 -2
- package/src/sap/m/MessagePopoverRenderer.js +1 -1
- package/src/sap/m/MessageStrip.js +8 -3
- package/src/sap/m/MessageStripRenderer.js +1 -1
- package/src/sap/m/MessageStripUtilities.js +2 -3
- package/src/sap/m/MessageToast.js +6 -4
- package/src/sap/m/MessageView.js +13 -25
- package/src/sap/m/MessageViewRenderer.js +1 -1
- package/src/sap/m/MultiComboBox.js +63 -35
- package/src/sap/m/MultiComboBoxRenderer.js +1 -1
- package/src/sap/m/MultiEditField.js +2 -2
- package/src/sap/m/MultiInput.js +33 -13
- package/src/sap/m/MultiInputRenderer.js +1 -1
- package/src/sap/m/NavContainer.js +68 -4
- package/src/sap/m/NavContainerRenderer.js +1 -1
- package/src/sap/m/NewsContent.js +2 -2
- package/src/sap/m/NewsContentRenderer.js +1 -1
- package/src/sap/m/NotificationList.js +27 -2
- package/src/sap/m/NotificationListBase.js +193 -3
- package/src/sap/m/NotificationListGroup.js +29 -3
- package/src/sap/m/NotificationListGroupRenderer.js +3 -5
- package/src/sap/m/NotificationListItem.js +6 -39
- package/src/sap/m/NotificationListItemRenderer.js +2 -5
- package/src/sap/m/NotificationListRenderer.js +1 -1
- package/src/sap/m/NumericContent.js +2 -2
- package/src/sap/m/NumericContentRenderer.js +1 -1
- package/src/sap/m/NumericInput.js +2 -2
- package/src/sap/m/NumericInputRenderer.js +1 -1
- package/src/sap/m/ObjectAttribute.js +2 -2
- package/src/sap/m/ObjectAttributeRenderer.js +1 -1
- package/src/sap/m/ObjectHeader.js +2 -2
- package/src/sap/m/ObjectHeaderRenderer.js +1 -1
- package/src/sap/m/ObjectIdentifier.js +3 -3
- package/src/sap/m/ObjectIdentifierRenderer.js +1 -1
- package/src/sap/m/ObjectListItem.js +2 -2
- package/src/sap/m/ObjectListItemRenderer.js +1 -1
- package/src/sap/m/ObjectMarker.js +10 -9
- package/src/sap/m/ObjectMarkerRenderer.js +1 -1
- package/src/sap/m/ObjectNumber.js +5 -3
- package/src/sap/m/ObjectNumberRenderer.js +1 -1
- package/src/sap/m/ObjectStatus.js +28 -15
- package/src/sap/m/ObjectStatusRenderer.js +3 -6
- package/src/sap/m/OverflowToolbar.js +56 -6
- package/src/sap/m/OverflowToolbarAssociativePopover.js +2 -2
- package/src/sap/m/OverflowToolbarAssociativePopoverControls.js +3 -3
- package/src/sap/m/OverflowToolbarAssociativePopoverRenderer.js +1 -1
- package/src/sap/m/OverflowToolbarButton.js +32 -18
- package/src/sap/m/OverflowToolbarLayoutData.js +2 -2
- package/src/sap/m/OverflowToolbarMenuButton.js +2 -2
- package/src/sap/m/OverflowToolbarRenderer.js +1 -1
- package/src/sap/m/OverflowToolbarToggleButton.js +2 -2
- package/src/sap/m/P13nAnyFilterItem.js +2 -2
- package/src/sap/m/P13nColumnsItem.js +2 -2
- package/src/sap/m/P13nColumnsPanel.js +2 -2
- package/src/sap/m/P13nConditionPanel.js +2 -2
- package/src/sap/m/P13nConditionPanelRenderer.js +1 -1
- package/src/sap/m/P13nDialog.js +2 -2
- package/src/sap/m/P13nDimMeasureItem.js +2 -2
- package/src/sap/m/P13nDimMeasurePanel.js +2 -2
- package/src/sap/m/P13nFilterItem.js +2 -2
- package/src/sap/m/P13nFilterPanel.js +2 -2
- package/src/sap/m/P13nFilterPanelRenderer.js +1 -1
- package/src/sap/m/P13nGroupItem.js +2 -2
- package/src/sap/m/P13nGroupPanel.js +2 -2
- package/src/sap/m/P13nItem.js +8 -6
- package/src/sap/m/P13nOperationsHelper.js +1 -1
- package/src/sap/m/P13nPanel.js +2 -2
- package/src/sap/m/P13nSelectionItem.js +2 -2
- package/src/sap/m/P13nSelectionPanel.js +2 -2
- package/src/sap/m/P13nSortItem.js +2 -2
- package/src/sap/m/P13nSortPanel.js +2 -2
- package/src/sap/m/PDFViewer.js +3 -3
- package/src/sap/m/PDFViewerRenderManager.js +1 -1
- package/src/sap/m/PDFViewerRenderer.js +14 -6
- package/src/sap/m/Page.js +5 -4
- package/src/sap/m/PageAccessibleLandmarkInfo.js +2 -2
- package/src/sap/m/PageRenderer.js +1 -1
- package/src/sap/m/PagingButton.js +2 -2
- package/src/sap/m/PagingButtonRenderer.js +1 -1
- package/src/sap/m/Panel.js +2 -2
- package/src/sap/m/PanelRenderer.js +1 -1
- package/src/sap/m/PlanningCalendar.js +61 -24
- package/src/sap/m/PlanningCalendarHeader.js +15 -4
- package/src/sap/m/PlanningCalendarHeaderRenderer.js +1 -1
- package/src/sap/m/PlanningCalendarLegend.js +2 -2
- package/src/sap/m/PlanningCalendarLegendRenderer.js +1 -1
- package/src/sap/m/PlanningCalendarRenderer.js +1 -1
- package/src/sap/m/PlanningCalendarRow.js +3 -4
- package/src/sap/m/PlanningCalendarView.js +2 -2
- package/src/sap/m/Popover.js +6 -8
- package/src/sap/m/PopoverRenderer.js +1 -1
- package/src/sap/m/ProgressIndicator.js +5 -4
- package/src/sap/m/ProgressIndicatorRenderer.js +1 -1
- package/src/sap/m/PullToRefresh.js +4 -6
- package/src/sap/m/PullToRefreshRenderer.js +1 -1
- package/src/sap/m/QuickView.js +3 -3
- package/src/sap/m/QuickViewBase.js +2 -2
- package/src/sap/m/QuickViewCard.js +2 -2
- package/src/sap/m/QuickViewCardRenderer.js +1 -1
- package/src/sap/m/QuickViewGroup.js +2 -2
- package/src/sap/m/QuickViewGroupElement.js +2 -2
- package/src/sap/m/QuickViewPage.js +43 -8
- package/src/sap/m/QuickViewPageRenderer.js +1 -1
- package/src/sap/m/RadioButton.js +21 -6
- package/src/sap/m/RadioButtonGroup.js +2 -2
- package/src/sap/m/RadioButtonGroupRenderer.js +1 -1
- package/src/sap/m/RadioButtonRenderer.js +1 -1
- package/src/sap/m/RangeSlider.js +3 -3
- package/src/sap/m/RangeSliderRenderer.js +1 -1
- package/src/sap/m/RatingIndicator.js +3 -3
- package/src/sap/m/RatingIndicatorRenderer.js +1 -1
- package/src/sap/m/ResponsivePopover.js +2 -2
- package/src/sap/m/ResponsivePopoverRenderer.js +1 -1
- package/src/sap/m/ResponsiveScale.js +2 -2
- package/src/sap/m/ScrollBar.js +2 -2
- package/src/sap/m/ScrollBarRenderer.js +1 -1
- package/src/sap/m/ScrollContainer.js +2 -2
- package/src/sap/m/ScrollContainerRenderer.js +1 -1
- package/src/sap/m/SearchField.js +28 -62
- package/src/sap/m/SearchFieldRenderer.js +3 -21
- package/src/sap/m/SegmentedButton.js +16 -5
- package/src/sap/m/SegmentedButtonItem.js +2 -2
- package/src/sap/m/SegmentedButtonRenderer.js +1 -1
- package/src/sap/m/Select.js +67 -6
- package/src/sap/m/SelectDialog.js +47 -7
- package/src/sap/m/SelectDialogBase.js +19 -9
- package/src/sap/m/SelectList.js +4 -7
- package/src/sap/m/SelectListRenderer.js +1 -1
- package/src/sap/m/SelectRenderer.js +1 -1
- package/src/sap/m/SelectionDetails.js +4 -4
- package/src/sap/m/SelectionDetailsFacade.js +3 -3
- package/src/sap/m/SelectionDetailsItem.js +2 -2
- package/src/sap/m/SelectionDetailsItemLine.js +2 -2
- package/src/sap/m/SelectionDetailsListItemRenderer.js +1 -1
- package/src/sap/m/SelectionDetailsRenderer.js +1 -1
- package/src/sap/m/Shell.js +12 -3
- package/src/sap/m/ShellRenderer.js +1 -1
- package/src/sap/m/SimpleFixFlex.js +2 -2
- package/src/sap/m/SimpleFixFlexRenderer.js +1 -1
- package/src/sap/m/SinglePlanningCalendar.js +56 -17
- package/src/sap/m/SinglePlanningCalendarDayView.js +2 -2
- package/src/sap/m/SinglePlanningCalendarGrid.js +52 -26
- package/src/sap/m/SinglePlanningCalendarGridRenderer.js +1 -1
- package/src/sap/m/SinglePlanningCalendarMonthGrid.js +68 -43
- package/src/sap/m/SinglePlanningCalendarMonthGridRenderer.js +24 -4
- package/src/sap/m/SinglePlanningCalendarMonthView.js +2 -2
- package/src/sap/m/SinglePlanningCalendarRenderer.js +1 -1
- package/src/sap/m/SinglePlanningCalendarUtilities.js +1 -1
- package/src/sap/m/SinglePlanningCalendarView.js +12 -4
- package/src/sap/m/SinglePlanningCalendarWeekView.js +20 -8
- package/src/sap/m/SinglePlanningCalendarWorkWeekView.js +2 -2
- package/src/sap/m/SlideTile.js +28 -25
- package/src/sap/m/SlideTileRenderer.js +1 -1
- package/src/sap/m/Slider.js +3 -3
- package/src/sap/m/SliderRenderer.js +1 -1
- package/src/sap/m/SliderTooltip.js +2 -2
- package/src/sap/m/SliderTooltipBase.js +2 -2
- package/src/sap/m/SliderTooltipBaseRenderer.js +1 -1
- package/src/sap/m/SliderTooltipContainer.js +2 -2
- package/src/sap/m/SliderTooltipContainerRenderer.js +1 -1
- package/src/sap/m/SliderTooltipRenderer.js +1 -1
- package/src/sap/m/SliderUtilities.js +1 -1
- package/src/sap/m/SplitApp.js +2 -2
- package/src/sap/m/SplitAppRenderer.js +1 -1
- package/src/sap/m/SplitButton.js +16 -4
- package/src/sap/m/SplitButtonRenderer.js +1 -1
- package/src/sap/m/SplitContainer.js +47 -47
- package/src/sap/m/SplitContainerRenderer.js +1 -1
- package/src/sap/m/StandardDynamicDateOption.js +52 -19
- package/src/sap/m/StandardListItem.js +2 -2
- package/src/sap/m/StandardListItemRenderer.js +1 -1
- package/src/sap/m/StandardTile.js +2 -2
- package/src/sap/m/StandardTileRenderer.js +1 -1
- package/src/sap/m/StandardTreeItem.js +2 -2
- package/src/sap/m/StandardTreeItemRenderer.js +1 -1
- package/src/sap/m/StepInput.js +40 -7
- package/src/sap/m/StepInputRenderer.js +1 -1
- package/src/sap/m/Suggest.js +1 -1
- package/src/sap/m/SuggestionItem.js +2 -2
- package/src/sap/m/SuggestionsList.js +1 -1
- package/src/sap/m/SuggestionsListRenderer.js +1 -1
- package/src/sap/m/SuggestionsPopover.js +2 -2
- package/src/sap/m/Support.js +1 -1
- package/src/sap/m/Switch.js +19 -5
- package/src/sap/m/SwitchRenderer.js +3 -3
- package/src/sap/m/TabContainer.js +2 -2
- package/src/sap/m/TabContainerItem.js +2 -2
- package/src/sap/m/TabContainerRenderer.js +1 -1
- package/src/sap/m/TabStrip.js +13 -8
- package/src/sap/m/TabStripItem.js +2 -2
- package/src/sap/m/TabStripRenderer.js +1 -1
- package/src/sap/m/Table.js +5 -5
- package/src/sap/m/TablePersoController.js +2 -2
- package/src/sap/m/TablePersoDialog.js +31 -8
- package/src/sap/m/TablePersoProvider.js +2 -2
- package/src/sap/m/TableRenderer.js +3 -2
- package/src/sap/m/TableSelectDialog.js +39 -4
- package/src/sap/m/Text.js +18 -4
- package/src/sap/m/TextArea.js +2 -2
- package/src/sap/m/TextAreaRenderer.js +1 -1
- package/src/sap/m/TextRenderer.js +1 -1
- package/src/sap/m/Tile.js +2 -2
- package/src/sap/m/TileContainer.js +5 -5
- package/src/sap/m/TileContainerRenderer.js +1 -1
- package/src/sap/m/TileContent.js +2 -2
- package/src/sap/m/TileContentRenderer.js +3 -4
- package/src/sap/m/TileRenderer.js +1 -1
- package/src/sap/m/TimePicker.js +30 -52
- package/src/sap/m/TimePickerClock.js +2 -2
- package/src/sap/m/TimePickerClockRenderer.js +1 -1
- package/src/sap/m/TimePickerClocks.js +8 -6
- package/src/sap/m/TimePickerClocksRenderer.js +1 -1
- package/src/sap/m/TimePickerInputs.js +2 -2
- package/src/sap/m/TimePickerInputsRenderer.js +1 -1
- package/src/sap/m/TimePickerInternals.js +7 -5
- package/src/sap/m/TimePickerInternalsRenderer.js +1 -1
- package/src/sap/m/TimePickerRenderer.js +1 -1
- package/src/sap/m/TimePickerSlider.js +5 -3
- package/src/sap/m/TimePickerSliderRenderer.js +1 -1
- package/src/sap/m/TimePickerSliders.js +4 -4
- package/src/sap/m/TimePickerSlidersRenderer.js +1 -1
- package/src/sap/m/Title.js +19 -4
- package/src/sap/m/TitlePropagationSupport.js +2 -2
- package/src/sap/m/TitleRenderer.js +1 -1
- package/src/sap/m/ToDoCardRenderer.js +1 -1
- package/src/sap/m/ToggleButton.js +18 -4
- package/src/sap/m/ToggleButtonRenderer.js +1 -1
- package/src/sap/m/Token.js +2 -2
- package/src/sap/m/TokenRenderer.js +1 -1
- package/src/sap/m/Tokenizer.js +34 -13
- package/src/sap/m/TokenizerRenderer.js +8 -22
- package/src/sap/m/Toolbar.js +30 -4
- package/src/sap/m/ToolbarLayoutData.js +2 -2
- package/src/sap/m/ToolbarRenderer.js +7 -6
- package/src/sap/m/ToolbarSeparator.js +4 -3
- package/src/sap/m/ToolbarSeparatorRenderer.js +1 -1
- package/src/sap/m/ToolbarSpacer.js +2 -2
- package/src/sap/m/ToolbarSpacerRenderer.js +1 -1
- package/src/sap/m/Tree.js +2 -2
- package/src/sap/m/TreeItemBase.js +2 -2
- package/src/sap/m/TreeItemBaseRenderer.js +1 -1
- package/src/sap/m/TreeRenderer.js +1 -1
- package/src/sap/m/UploadCollection.js +11 -26
- package/src/sap/m/UploadCollectionItem.js +2 -2
- package/src/sap/m/UploadCollectionParameter.js +2 -2
- package/src/sap/m/UploadCollectionRenderer.js +1 -1
- package/src/sap/m/UploadCollectionToolbarPlaceholder.js +2 -2
- package/src/sap/m/VBox.js +2 -2
- package/src/sap/m/VBoxRenderer.js +1 -1
- package/src/sap/m/ValueStateHeader.js +2 -2
- package/src/sap/m/VariantItem.js +1 -1
- package/src/sap/m/VariantManagement.js +21 -3
- package/src/sap/m/ViewSettingsCustomItem.js +8 -7
- package/src/sap/m/ViewSettingsCustomTab.js +2 -2
- package/src/sap/m/ViewSettingsDialog.js +55 -49
- package/src/sap/m/ViewSettingsDialogRenderer.js +1 -1
- package/src/sap/m/ViewSettingsFilterItem.js +2 -2
- package/src/sap/m/ViewSettingsItem.js +2 -2
- package/src/sap/m/VisibleItem.js +2 -2
- package/src/sap/m/WheelSlider.js +5 -3
- package/src/sap/m/WheelSliderContainer.js +2 -2
- package/src/sap/m/WheelSliderContainerRenderer.js +1 -1
- package/src/sap/m/WheelSliderRenderer.js +1 -1
- package/src/sap/m/Wizard.js +19 -11
- package/src/sap/m/WizardProgressNavigator.js +2 -2
- package/src/sap/m/WizardProgressNavigatorRenderer.js +1 -1
- package/src/sap/m/WizardRenderer.js +1 -1
- package/src/sap/m/WizardStep.js +21 -6
- package/src/sap/m/WizardStepRenderer.js +1 -1
- package/src/sap/m/changeHandler/AddTableColumn.js +2 -2
- package/src/sap/m/changeHandler/ChangeLinkTarget.js +2 -2
- package/src/sap/m/changeHandler/CombineButtons.js +2 -2
- package/src/sap/m/changeHandler/MoveTableColumns.js +2 -2
- package/src/sap/m/changeHandler/SelectIconTabBarFilter.js +2 -2
- package/src/sap/m/changeHandler/SplitMenuButton.js +2 -2
- package/src/sap/m/delegate/DateNavigation.js +11 -2
- package/src/sap/m/delegate/ValueStateMessage.js +1 -1
- package/src/sap/m/designtime/ActionSheet.designtime.js +1 -1
- package/src/sap/m/designtime/Avatar.designtime.js +1 -1
- package/src/sap/m/designtime/Bar.designtime.js +1 -1
- package/src/sap/m/designtime/Breadcrumbs.designtime.js +1 -1
- package/src/sap/m/designtime/BusyDialog.designtime.js +1 -1
- package/src/sap/m/designtime/Button.designtime.js +1 -1
- package/src/sap/m/designtime/Carousel.designtime.js +1 -1
- package/src/sap/m/designtime/CheckBox.designtime.js +1 -1
- package/src/sap/m/designtime/Column.designtime.js +1 -1
- package/src/sap/m/designtime/ComboBox.designtime.js +1 -1
- package/src/sap/m/designtime/CustomListItem.designtime.js +1 -1
- package/src/sap/m/designtime/CustomTile.designtime.js +1 -1
- package/src/sap/m/designtime/DatePicker.designtime.js +1 -1
- package/src/sap/m/designtime/DateRangeSelection.designtime.js +1 -1
- package/src/sap/m/designtime/DateTimeInput.designtime.js +1 -1
- package/src/sap/m/designtime/DateTimePicker.designtime.js +1 -1
- package/src/sap/m/designtime/Dialog.designtime.js +1 -1
- package/src/sap/m/designtime/DraftIndicator.designtime.js +1 -1
- package/src/sap/m/designtime/ExpandableText.designtime.js +1 -1
- package/src/sap/m/designtime/FeedInput.designtime.js +1 -1
- package/src/sap/m/designtime/FeedListItem.designtime.js +1 -1
- package/src/sap/m/designtime/FlexBox.designtime.js +1 -1
- package/src/sap/m/designtime/HBox.designtime.js +1 -1
- package/src/sap/m/designtime/IconTabBar.designtime.js +1 -1
- package/src/sap/m/designtime/IconTabFilter.designtime.js +1 -1
- package/src/sap/m/designtime/IconTabSeparator.designtime.js +1 -1
- package/src/sap/m/designtime/Image.designtime.js +1 -1
- package/src/sap/m/designtime/Input.designtime.js +1 -1
- package/src/sap/m/designtime/InputBase.designtime.js +1 -1
- package/src/sap/m/designtime/InputListItem.designtime.js +1 -1
- package/src/sap/m/designtime/Label.designtime.js +1 -1
- package/src/sap/m/designtime/LightBox.designtime.js +1 -1
- package/src/sap/m/designtime/Link.designtime.js +1 -1
- package/src/sap/m/designtime/ListBase.designtime.js +1 -1
- package/src/sap/m/designtime/ListItemBase.designtime.js +1 -1
- package/src/sap/m/designtime/MenuButton.designtime.js +1 -1
- package/src/sap/m/designtime/MessagePage.designtime.js +1 -1
- package/src/sap/m/designtime/MessageStrip.designtime.js +1 -1
- package/src/sap/m/designtime/MultiComboBox.designtime.js +1 -1
- package/src/sap/m/designtime/MultiInput.designtime.js +1 -1
- package/src/sap/m/designtime/NewsContent.designtime.js +1 -1
- package/src/sap/m/designtime/ObjectAttribute.designtime.js +1 -1
- package/src/sap/m/designtime/ObjectHeader.designtime.js +1 -1
- package/src/sap/m/designtime/ObjectIdentifier.designtime.js +1 -1
- package/src/sap/m/designtime/ObjectListItem.designtime.js +1 -1
- package/src/sap/m/designtime/ObjectMarker.designtime.js +1 -1
- package/src/sap/m/designtime/ObjectNumber.designtime.js +1 -1
- package/src/sap/m/designtime/ObjectStatus.designtime.js +1 -1
- package/src/sap/m/designtime/OverflowToolbar.designtime.js +1 -1
- package/src/sap/m/designtime/OverflowToolbarButton.designtime.js +1 -1
- package/src/sap/m/designtime/Page.designtime.js +1 -1
- package/src/sap/m/designtime/Panel.designtime.js +1 -1
- package/src/sap/m/designtime/PlanningCalendar.designtime.js +1 -1
- package/src/sap/m/designtime/PlanningCalendarLegend.designtime.js +1 -1
- package/src/sap/m/designtime/Popover.designtime.js +1 -1
- package/src/sap/m/designtime/ProgressIndicator.designtime.js +1 -1
- package/src/sap/m/designtime/QuickView.designtime.js +1 -1
- package/src/sap/m/designtime/QuickViewCard.designtime.js +1 -1
- package/src/sap/m/designtime/RadioButton.designtime.js +1 -1
- package/src/sap/m/designtime/RadioButtonGroup.designtime.js +1 -1
- package/src/sap/m/designtime/RangeSlider.designtime.js +1 -1
- package/src/sap/m/designtime/RatingIndicator.designtime.js +1 -1
- package/src/sap/m/designtime/ScrollContainer.designtime.js +1 -1
- package/src/sap/m/designtime/SearchField.designtime.js +1 -1
- package/src/sap/m/designtime/SegmentedButton.designtime.js +1 -1
- package/src/sap/m/designtime/Select.designtime.js +1 -1
- package/src/sap/m/designtime/Slider.designtime.js +1 -1
- package/src/sap/m/designtime/SplitApp.designtime.js +1 -1
- package/src/sap/m/designtime/SplitContainer.designtime.js +1 -1
- package/src/sap/m/designtime/StandardListItem.designtime.js +1 -1
- package/src/sap/m/designtime/StepInput.designtime.js +1 -1
- package/src/sap/m/designtime/Switch.designtime.js +1 -1
- package/src/sap/m/designtime/TabContainer.designtime.js +1 -1
- package/src/sap/m/designtime/Table.designtime.js +1 -1
- package/src/sap/m/designtime/Text.designtime.js +1 -1
- package/src/sap/m/designtime/TextArea.designtime.js +1 -1
- package/src/sap/m/designtime/TimePicker.designtime.js +6 -1
- package/src/sap/m/designtime/Title.designtime.js +1 -1
- package/src/sap/m/designtime/ToggleButton.designtime.js +1 -1
- package/src/sap/m/designtime/Toolbar.designtime.js +1 -1
- package/src/sap/m/designtime/VBox.designtime.js +1 -1
- package/src/sap/m/designtime/VariantManagement.designtime.js +1 -1
- package/src/sap/m/designtime/Wizard.designtime.js +1 -1
- package/src/sap/m/designtime/library.designtime.js +1 -1
- package/src/sap/m/designtime/semantic/DetailPage.designtime.js +1 -1
- package/src/sap/m/designtime/semantic/SemanticPage.designtime.js +1 -1
- package/src/sap/m/designtime/semantic/ShareMenuPage.designtime.js +1 -1
- package/src/sap/m/flexibility/Avatar.flexibility.js +1 -1
- package/src/sap/m/flexibility/Bar.flexibility.js +1 -1
- package/src/sap/m/flexibility/Button.flexibility.js +1 -1
- package/src/sap/m/flexibility/CheckBox.flexibility.js +1 -1
- package/src/sap/m/flexibility/Dialog.flexibility.js +1 -1
- package/src/sap/m/flexibility/EngineFlex.js +1 -1
- package/src/sap/m/flexibility/ExpandableText.flexibility.js +1 -1
- package/src/sap/m/flexibility/IconTabBar.flexibility.js +1 -1
- package/src/sap/m/flexibility/IconTabFilter.flexibility.js +1 -1
- package/src/sap/m/flexibility/InputListItem.flexibility.js +1 -1
- package/src/sap/m/flexibility/Label.flexibility.js +1 -1
- package/src/sap/m/flexibility/Link.flexibility.js +1 -1
- package/src/sap/m/flexibility/MenuButton.flexibility.js +1 -1
- package/src/sap/m/flexibility/OverflowToolbar.flexibility.js +1 -1
- package/src/sap/m/flexibility/OverflowToolbarButton.flexibility.js +1 -1
- package/src/sap/m/flexibility/Page.flexibility.js +1 -1
- package/src/sap/m/flexibility/Panel.flexibility.js +1 -1
- package/src/sap/m/flexibility/Popover.flexibility.js +1 -1
- package/src/sap/m/flexibility/RadioButton.flexibility.js +1 -1
- package/src/sap/m/flexibility/StandardListItem.flexibility.js +1 -1
- package/src/sap/m/flexibility/Table.flexibility.js +1 -1
- package/src/sap/m/flexibility/Text.flexibility.js +1 -1
- package/src/sap/m/flexibility/Title.flexibility.js +1 -1
- package/src/sap/m/flexibility/Toolbar.flexibility.js +1 -1
- package/src/sap/m/inputUtils/ListHelpers.js +4 -2
- package/src/sap/m/inputUtils/SuggestionsPopoverDialogMixin.js +9 -3
- package/src/sap/m/inputUtils/SuggestionsPopoverPopoverMixin.js +1 -1
- package/src/sap/m/inputUtils/calculateSelectionStart.js +1 -1
- package/src/sap/m/inputUtils/completeTextSelected.js +1 -1
- package/src/sap/m/inputUtils/filterItems.js +1 -1
- package/src/sap/m/inputUtils/forwardItemProperties.js +1 -1
- package/src/sap/m/inputUtils/forwardItemPropertiesToToken.js +1 -1
- package/src/sap/m/inputUtils/getTokenByItem.js +1 -1
- package/src/sap/m/inputUtils/highlightDOMElements.js +1 -1
- package/src/sap/m/inputUtils/inputsDefaultFilter.js +1 -1
- package/src/sap/m/inputUtils/itemsVisibilityHandler.js +1 -1
- package/src/sap/m/inputUtils/scrollToItem.js +1 -1
- package/src/sap/m/inputUtils/selectionRange.js +1 -1
- package/src/sap/m/inputUtils/typeAhead.js +11 -1
- package/src/sap/m/inputUtils/wordStartsWithValue.js +1 -1
- package/src/sap/m/library.js +133 -39
- package/src/sap/m/library.support.js +1 -1
- package/src/sap/m/messagebundle.properties +50 -30
- package/src/sap/m/messagebundle_ar.properties +55 -24
- package/src/sap/m/messagebundle_bg.properties +121 -90
- package/src/sap/m/messagebundle_ca.properties +49 -18
- package/src/sap/m/messagebundle_cs.properties +71 -40
- package/src/sap/m/messagebundle_cy.properties +47 -16
- package/src/sap/m/messagebundle_da.properties +47 -16
- package/src/sap/m/messagebundle_de.properties +57 -26
- package/src/sap/m/messagebundle_el.properties +64 -33
- package/src/sap/m/messagebundle_en.properties +45 -14
- package/src/sap/m/messagebundle_en_GB.properties +43 -12
- package/src/sap/m/messagebundle_en_US_sappsd.properties +40 -14
- package/src/sap/m/messagebundle_en_US_saprigi.properties +34 -20
- package/src/sap/m/messagebundle_en_US_saptrc.properties +44 -13
- package/src/sap/m/messagebundle_es.properties +63 -32
- package/src/sap/m/messagebundle_es_MX.properties +49 -18
- package/src/sap/m/messagebundle_et.properties +47 -16
- package/src/sap/m/messagebundle_fi.properties +50 -19
- package/src/sap/m/messagebundle_fr.properties +90 -59
- package/src/sap/m/messagebundle_fr_CA.properties +49 -18
- package/src/sap/m/messagebundle_hi.properties +56 -25
- package/src/sap/m/messagebundle_hr.properties +58 -27
- package/src/sap/m/messagebundle_hu.properties +67 -36
- package/src/sap/m/messagebundle_id.properties +49 -18
- package/src/sap/m/messagebundle_it.properties +58 -27
- package/src/sap/m/messagebundle_iw.properties +47 -16
- package/src/sap/m/messagebundle_ja.properties +63 -32
- package/src/sap/m/messagebundle_kk.properties +58 -27
- package/src/sap/m/messagebundle_ko.properties +50 -19
- package/src/sap/m/messagebundle_lt.properties +47 -16
- package/src/sap/m/messagebundle_lv.properties +49 -18
- package/src/sap/m/messagebundle_ms.properties +47 -16
- package/src/sap/m/messagebundle_nl.properties +50 -19
- package/src/sap/m/messagebundle_no.properties +50 -19
- package/src/sap/m/messagebundle_pl.properties +56 -25
- package/src/sap/m/messagebundle_pt.properties +49 -18
- package/src/sap/m/messagebundle_pt_PT.properties +47 -16
- package/src/sap/m/messagebundle_ro.properties +48 -17
- package/src/sap/m/messagebundle_ru.properties +47 -16
- package/src/sap/m/messagebundle_sh.properties +48 -17
- package/src/sap/m/messagebundle_sk.properties +48 -17
- package/src/sap/m/messagebundle_sl.properties +54 -23
- package/src/sap/m/messagebundle_sv.properties +57 -26
- package/src/sap/m/messagebundle_th.properties +78 -47
- package/src/sap/m/messagebundle_tr.properties +47 -16
- package/src/sap/m/messagebundle_uk.properties +47 -16
- package/src/sap/m/messagebundle_vi.properties +47 -16
- package/src/sap/m/messagebundle_zh_CN.properties +47 -16
- package/src/sap/m/messagebundle_zh_TW.properties +49 -18
- package/src/sap/m/p13n/AbstractContainer.js +3 -4
- package/src/sap/m/p13n/AbstractContainerItem.js +4 -4
- package/src/sap/m/p13n/BasePanel.js +58 -28
- package/src/sap/m/p13n/Container.js +2 -2
- package/src/sap/m/p13n/Engine.js +62 -52
- package/src/sap/m/p13n/FlexUtil.js +1 -1
- package/src/sap/m/p13n/GroupController.js +2 -3
- package/src/sap/m/p13n/GroupPanel.js +2 -4
- package/src/sap/m/p13n/MetadataHelper.js +2 -2
- package/src/sap/m/p13n/PersistenceProvider.js +28 -9
- package/src/sap/m/p13n/Popup.js +21 -9
- package/src/sap/m/p13n/QueryPanel.js +37 -17
- package/src/sap/m/p13n/SelectionController.js +23 -9
- package/src/sap/m/p13n/SelectionPanel.js +14 -5
- package/src/sap/m/p13n/SortController.js +3 -4
- package/src/sap/m/p13n/SortPanel.js +2 -4
- package/src/sap/m/p13n/enum/PersistenceMode.js +4 -1
- package/src/sap/m/p13n/enum/ProcessingStrategy.js +3 -2
- package/src/sap/m/p13n/handler/xConfigHandler.js +2 -2
- package/src/sap/m/p13n/modification/FlexModificationHandler.js +1 -1
- package/src/sap/m/p13n/modification/LocalStorageModificationHandler.js +1 -1
- package/src/sap/m/p13n/modification/ModificationHandler.js +1 -1
- package/src/sap/m/p13n/modules/AdaptationProvider.js +4 -7
- package/src/sap/m/p13n/modules/DefaultProviderRegistry.js +16 -14
- package/src/sap/m/p13n/modules/StateHandlerRegistry.js +5 -4
- package/src/sap/m/p13n/modules/UIManager.js +5 -5
- package/src/sap/m/p13n/modules/xConfigAPI.js +5 -2
- package/src/sap/m/plugins/CellSelector.js +114 -56
- package/src/sap/m/plugins/ColumnResizer.js +9 -9
- package/src/sap/m/plugins/CopyProvider.js +302 -0
- package/src/sap/m/plugins/DataStateIndicator.js +2 -2
- package/src/sap/m/plugins/PasteProvider.js +2 -2
- package/src/sap/m/plugins/PluginBase.js +8 -5
- package/src/sap/m/routing/RouteMatchedHandler.js +1 -1
- package/src/sap/m/routing/Router.js +1 -1
- package/src/sap/m/routing/Target.js +1 -1
- package/src/sap/m/routing/TargetHandler.js +1 -1
- package/src/sap/m/routing/Targets.js +1 -1
- package/src/sap/m/routing/async/Target.js +1 -1
- package/src/sap/m/routing/async/Targets.js +1 -1
- package/src/sap/m/routing/sync/Target.js +1 -1
- package/src/sap/m/routing/sync/Targets.js +1 -1
- package/src/sap/m/rules/Breadcrumbs.support.js +1 -1
- package/src/sap/m/rules/Button.support.js +1 -1
- package/src/sap/m/rules/CheckBox.support.js +1 -1
- package/src/sap/m/rules/DatePicker.support.js +1 -1
- package/src/sap/m/rules/DateRangeSelection.support.js +1 -1
- package/src/sap/m/rules/Dialog.support.js +1 -1
- package/src/sap/m/rules/FacetFilter.support.js +1 -1
- package/src/sap/m/rules/IconTabBar.support.js +1 -1
- package/src/sap/m/rules/Image.support.js +1 -1
- package/src/sap/m/rules/Input.support.js +1 -1
- package/src/sap/m/rules/Link.support.js +1 -1
- package/src/sap/m/rules/MaskInput.support.js +1 -1
- package/src/sap/m/rules/MessagePage.support.js +1 -1
- package/src/sap/m/rules/ObjectHeader.support.js +1 -1
- package/src/sap/m/rules/ObjectListItem.support.js +1 -1
- package/src/sap/m/rules/ObjectMarker.support.js +1 -1
- package/src/sap/m/rules/ObjectStatus.support.js +1 -1
- package/src/sap/m/rules/Panel.support.js +1 -1
- package/src/sap/m/rules/Select.support.js +1 -1
- package/src/sap/m/rules/SelectDialog.support.js +1 -1
- package/src/sap/m/rules/StepInput.support.js +1 -1
- package/src/sap/m/rules/Table.support.js +1 -1
- package/src/sap/m/rules/Title.support.js +1 -1
- package/src/sap/m/rules/Tokenizer.support.js +1 -1
- package/src/sap/m/rules/ViewSettingsDialog.support.js +1 -1
- package/src/sap/m/semantic/AddAction.js +2 -2
- package/src/sap/m/semantic/CancelAction.js +2 -2
- package/src/sap/m/semantic/DeleteAction.js +2 -2
- package/src/sap/m/semantic/DetailPage.js +2 -2
- package/src/sap/m/semantic/DiscussInJamAction.js +2 -2
- package/src/sap/m/semantic/EditAction.js +2 -2
- package/src/sap/m/semantic/FavoriteAction.js +2 -2
- package/src/sap/m/semantic/FilterAction.js +2 -2
- package/src/sap/m/semantic/FilterSelect.js +2 -2
- package/src/sap/m/semantic/FlagAction.js +2 -2
- package/src/sap/m/semantic/ForwardAction.js +2 -2
- package/src/sap/m/semantic/FullscreenPage.js +2 -2
- package/src/sap/m/semantic/GroupAction.js +2 -2
- package/src/sap/m/semantic/GroupSelect.js +2 -2
- package/src/sap/m/semantic/MainAction.js +2 -2
- package/src/sap/m/semantic/MasterPage.js +2 -2
- package/src/sap/m/semantic/MessagesIndicator.js +2 -2
- package/src/sap/m/semantic/MultiSelectAction.js +2 -2
- package/src/sap/m/semantic/NegativeAction.js +2 -2
- package/src/sap/m/semantic/OpenInAction.js +2 -2
- package/src/sap/m/semantic/PositiveAction.js +2 -2
- package/src/sap/m/semantic/PrintAction.js +2 -2
- package/src/sap/m/semantic/SaveAction.js +2 -2
- package/src/sap/m/semantic/Segment.js +2 -2
- package/src/sap/m/semantic/SegmentedContainer.js +2 -2
- package/src/sap/m/semantic/SemanticButton.js +2 -2
- package/src/sap/m/semantic/SemanticConfiguration.js +2 -2
- package/src/sap/m/semantic/SemanticControl.js +2 -2
- package/src/sap/m/semantic/SemanticOverflowToolbarButton.js +2 -2
- package/src/sap/m/semantic/SemanticOverflowToolbarToggleButton.js +2 -2
- package/src/sap/m/semantic/SemanticPage.js +2 -2
- package/src/sap/m/semantic/SemanticPageRenderer.js +1 -1
- package/src/sap/m/semantic/SemanticSelect.js +2 -2
- package/src/sap/m/semantic/SemanticToggleButton.js +2 -2
- package/src/sap/m/semantic/SendEmailAction.js +2 -2
- package/src/sap/m/semantic/SendMessageAction.js +2 -2
- package/src/sap/m/semantic/ShareInJamAction.js +2 -2
- package/src/sap/m/semantic/ShareMenu.js +2 -2
- package/src/sap/m/semantic/ShareMenuPage.js +2 -2
- package/src/sap/m/semantic/SortAction.js +2 -2
- package/src/sap/m/semantic/SortSelect.js +2 -2
- package/src/sap/m/table/Util.js +31 -11
- package/src/sap/m/table/columnmenu/ActionItem.js +20 -14
- package/src/sap/m/table/columnmenu/Entry.js +18 -14
- package/src/sap/m/table/columnmenu/Item.js +21 -19
- package/src/sap/m/table/columnmenu/ItemBase.js +26 -23
- package/src/sap/m/table/columnmenu/ItemContainer.js +1 -1
- package/src/sap/m/table/columnmenu/Menu.js +107 -106
- package/src/sap/m/table/columnmenu/MenuRenderer.js +2 -4
- package/src/sap/m/table/columnmenu/QuickAction.js +12 -11
- package/src/sap/m/table/columnmenu/QuickActionBase.js +12 -11
- package/src/sap/m/table/columnmenu/QuickActionContainer.js +1 -1
- package/src/sap/m/table/columnmenu/QuickActionItem.js +10 -9
- package/src/sap/m/table/columnmenu/QuickGroup.js +10 -8
- package/src/sap/m/table/columnmenu/QuickGroupItem.js +10 -9
- package/src/sap/m/table/columnmenu/QuickSort.js +11 -9
- package/src/sap/m/table/columnmenu/QuickSortItem.js +16 -9
- package/src/sap/m/table/columnmenu/QuickTotal.js +10 -8
- package/src/sap/m/table/columnmenu/QuickTotalItem.js +10 -9
- package/src/sap/m/themes/base/Carousel.less +17 -4
- package/src/sap/m/themes/base/ColumnResizer.less +1 -1
- package/src/sap/m/themes/base/Dialog.less +22 -52
- package/src/sap/m/themes/base/FeedInput.less +4 -0
- package/src/sap/m/themes/base/FeedListItem.less +1 -1
- package/src/sap/m/themes/base/GenericTile.less +97 -16
- package/src/sap/m/themes/base/IconTabBar.less +7 -4
- package/src/sap/m/themes/base/IllustratedMessage.less +1 -0
- package/src/sap/m/themes/base/InputBase.less +11 -2
- package/src/sap/m/themes/base/Label.less +22 -0
- package/src/sap/m/themes/base/Link.less +3 -1
- package/src/sap/m/themes/base/MenuButton.less +1 -1
- package/src/sap/m/themes/base/MessageBox.less +5 -5
- package/src/sap/m/themes/base/MessageView.less +4 -0
- package/src/sap/m/themes/base/MultiComboBox.less +6 -4
- package/src/sap/m/themes/base/NotificationListBase.less +3 -18
- package/src/sap/m/themes/base/NotificationListGroup.less +14 -0
- package/src/sap/m/themes/base/NotificationListItem.less +12 -0
- package/src/sap/m/themes/base/ObjectNumber.less +9 -0
- package/src/sap/m/themes/base/ObjectStatus.less +44 -0
- package/src/sap/m/themes/base/PlanningCalendar.less +1 -0
- package/src/sap/m/themes/base/RadioButton.less +1 -1
- package/src/sap/m/themes/base/SinglePlanningCalendarMonthGrid.less +1 -0
- package/src/sap/m/themes/base/SlideTile.less +4 -4
- package/src/sap/m/themes/base/SplitButton.less +3 -1
- package/src/sap/m/themes/base/SuggestionsPopover.less +14 -6
- package/src/sap/m/themes/base/Table.less +9 -16
- package/src/sap/m/themes/base/Text.less +1 -0
- package/src/sap/m/themes/base/TextArea.less +57 -16
- package/src/sap/m/themes/base/Tokenizer.less +23 -0
- package/src/sap/m/themes/base/Toolbar.less +1 -1
- package/src/sap/m/themes/base/WizardProgressNavigator.less +4 -3
- package/src/sap/m/themes/base/library.source.less +1 -1
- package/src/sap/m/themes/base/p13n.QueryPanel.less +5 -0
- package/src/sap/m/themes/sap_hcb/Dialog.less +2 -2
- package/src/sap/m/themes/sap_hcb/ObjectStatus.less +40 -0
- package/src/sap/m/themes/sap_hcb/library.source.less +1 -1
- package/src/sap/m/themes/sap_horizon/Label.less +10 -0
- package/src/sap/m/themes/sap_horizon/Text.less +10 -0
- package/src/sap/m/upload/UploadSet.js +65 -5
- package/src/sap/m/upload/UploadSetItem.js +15 -11
- package/src/sap/m/upload/UploadSetRenderer.js +1 -1
- package/src/sap/m/upload/UploadSetToolbarPlaceholder.js +2 -2
- package/src/sap/m/upload/Uploader.js +1 -1
- package/src/sap/m/upload/UploaderHttpRequestMethod.js +1 -1
|
@@ -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
|
|
|
@@ -82,7 +82,7 @@ function(
|
|
|
82
82
|
*
|
|
83
83
|
* @extends sap.ui.core.Control
|
|
84
84
|
* @author SAP SE
|
|
85
|
-
* @version 1.
|
|
85
|
+
* @version 1.111.0
|
|
86
86
|
*
|
|
87
87
|
* @constructor
|
|
88
88
|
* @public
|
|
@@ -796,20 +796,20 @@ function(
|
|
|
796
796
|
* The navigation is done inside the master area if the page has been added,
|
|
797
797
|
* otherwise, it tries to do the page navigation in the detail area.
|
|
798
798
|
*
|
|
799
|
-
* @param {string}
|
|
799
|
+
* @param {string} pageId
|
|
800
800
|
* The screen to which we are navigating to. The ID or the control itself can be given.
|
|
801
801
|
* @param {string} [transitionName=slide]
|
|
802
802
|
* The type of the transition/animation to apply. Options are "slide" (horizontal movement from the right), "baseSlide", "fade", "flip", and "show"
|
|
803
803
|
* and the names of any registered custom transitions.
|
|
804
804
|
*
|
|
805
805
|
* None of the standard transitions is currently making use of any given transition parameters.
|
|
806
|
-
* @param {object}
|
|
806
|
+
* @param {object} [data]
|
|
807
807
|
* This optional object can carry any payload data which should be made available to the target page. The BeforeShow event on the target page will contain this data object as data property.
|
|
808
808
|
*
|
|
809
809
|
* Use case: in scenarios where the entity triggering the navigation can or should not directly initialize the target page, it can fill this object and the target page itself (or a listener on it) can take over the initialization, using the given data.
|
|
810
810
|
*
|
|
811
811
|
* When the transitionParameters object is used, this "data" object must also be given (either as object or as null) in order to have a proper parameter order.
|
|
812
|
-
* @param {object}
|
|
812
|
+
* @param {object} [transitionParameters]
|
|
813
813
|
* This optional object can contain additional information for the transition function, like the DOM element which triggered the transition or the desired transition duration.
|
|
814
814
|
*
|
|
815
815
|
* For a proper parameter order, the "data" parameter must be given when the transitionParameters parameter is used (it can be given as "null").
|
|
@@ -819,11 +819,11 @@ function(
|
|
|
819
819
|
* @public
|
|
820
820
|
* @since 1.10.0
|
|
821
821
|
*/
|
|
822
|
-
SplitContainer.prototype.to = function(pageId, transitionName, data,
|
|
822
|
+
SplitContainer.prototype.to = function(pageId, transitionName, data, transitionParameters) {
|
|
823
823
|
if (this._oMasterNav.getPage(pageId)) {
|
|
824
|
-
this._oMasterNav.to(pageId, transitionName, data,
|
|
824
|
+
this._oMasterNav.to(pageId, transitionName, data, transitionParameters);
|
|
825
825
|
} else {
|
|
826
|
-
this._oDetailNav.to(pageId, transitionName, data,
|
|
826
|
+
this._oDetailNav.to(pageId, transitionName, data, transitionParameters);
|
|
827
827
|
}
|
|
828
828
|
};
|
|
829
829
|
|
|
@@ -839,9 +839,9 @@ function(
|
|
|
839
839
|
* The given backData object is available in the BeforeFirstShow, BeforeShow, and AfterShow event objects as data
|
|
840
840
|
* property. The original "data" object from the "to" navigation is also available in these event objects.
|
|
841
841
|
*
|
|
842
|
-
* @param {string}
|
|
842
|
+
* @param {string} pageId
|
|
843
843
|
* The screen to which is being navigated to. The ID or the control itself can be given.
|
|
844
|
-
* @param {object}
|
|
844
|
+
* @param {object} [backData]
|
|
845
845
|
* This optional object can carry any payload data which should be made available to the target page of the back navigation.
|
|
846
846
|
* The event on the target page will contain this data object as backData property. (the original data from the to() navigation will still be available as data property).
|
|
847
847
|
*
|
|
@@ -849,7 +849,7 @@ function(
|
|
|
849
849
|
* For back navigation this can be used, for example, when returning from a detail page to transfer any settings done there.
|
|
850
850
|
*
|
|
851
851
|
* When the transitionParameters object is used, this data object must also be given (either as object or as null) in order to have a proper parameter order.
|
|
852
|
-
* @param {object}
|
|
852
|
+
* @param {object} [transitionParameters]
|
|
853
853
|
* This optional object can give additional information to the transition function, like the DOM element, which triggered the transition or the desired transition duration.
|
|
854
854
|
* The animation type can NOT be selected here - it is always the inverse of the "to" navigation.
|
|
855
855
|
*
|
|
@@ -859,11 +859,11 @@ function(
|
|
|
859
859
|
* @public
|
|
860
860
|
* @since 1.10.0
|
|
861
861
|
*/
|
|
862
|
-
SplitContainer.prototype.backToPage = function(pageId, backData,
|
|
862
|
+
SplitContainer.prototype.backToPage = function(pageId, backData, transitionParameters) {
|
|
863
863
|
if (this._oMasterNav.getPage(pageId)) {
|
|
864
|
-
this._oMasterNav.backToPage(pageId, backData,
|
|
864
|
+
this._oMasterNav.backToPage(pageId, backData, transitionParameters);
|
|
865
865
|
} else {
|
|
866
|
-
this._oDetailNav.backToPage(pageId, backData,
|
|
866
|
+
this._oDetailNav.backToPage(pageId, backData, transitionParameters);
|
|
867
867
|
}
|
|
868
868
|
};
|
|
869
869
|
|
|
@@ -913,20 +913,20 @@ function(
|
|
|
913
913
|
/**
|
|
914
914
|
* Navigates to a given master page.
|
|
915
915
|
*
|
|
916
|
-
* @param {string}
|
|
916
|
+
* @param {string} pageId
|
|
917
917
|
* The screen to which drilldown should happen. The ID or the control itself can be given.
|
|
918
|
-
* @param {string}
|
|
918
|
+
* @param {string} transitionName
|
|
919
919
|
* The type of the transition/animation to apply. Options are "slide" (horizontal movement from the right), "baseSlide", "fade", "flip", and "show"
|
|
920
920
|
* and the names of any registered custom transitions.
|
|
921
921
|
*
|
|
922
922
|
* None of the standard transitions is currently making use of any given transition parameters.
|
|
923
|
-
* @param {object}
|
|
923
|
+
* @param {object} [data]
|
|
924
924
|
* Since version 1.7.1. This optional object can carry any payload data which should be made available to the target page. The BeforeShow event on the target page will contain this data object as data property.
|
|
925
925
|
*
|
|
926
926
|
* Use case: in scenarios where the entity triggering the navigation can't or shouldn't directly initialize the target page, it can fill this object and the target page itself (or a listener on it) can take over the initialization, using the given data.
|
|
927
927
|
*
|
|
928
928
|
* When the transitionParameters object is used, this data object must also be given (either as object or as null) in order to have a proper parameter order.
|
|
929
|
-
* @param {object}
|
|
929
|
+
* @param {object} [transitionParameters]
|
|
930
930
|
* Since version 1.7.1. This optional object can contain additional information for the transition function, like the DOM element, which triggered the transition or the desired transition duration.
|
|
931
931
|
*
|
|
932
932
|
* For a proper parameter order, the data parameter must be given when the transitionParameters parameter is used (it can be given as "null").
|
|
@@ -935,15 +935,15 @@ function(
|
|
|
935
935
|
* The "show", "slide" and "fade" transitions do not use any parameter.
|
|
936
936
|
* @public
|
|
937
937
|
*/
|
|
938
|
-
SplitContainer.prototype.toMaster = function(pageId, transitionName, data,
|
|
939
|
-
this._oMasterNav.to(pageId, transitionName, data,
|
|
938
|
+
SplitContainer.prototype.toMaster = function(pageId, transitionName, data, transitionParameters) {
|
|
939
|
+
this._oMasterNav.to(pageId, transitionName, data, transitionParameters);
|
|
940
940
|
};
|
|
941
941
|
|
|
942
942
|
|
|
943
943
|
/**
|
|
944
944
|
* Navigates back to the previous master page which is found in the history.
|
|
945
945
|
*
|
|
946
|
-
* @param {object}
|
|
946
|
+
* @param {object} [backData]
|
|
947
947
|
* This optional object can carry any payload data which should be made available to the target page of the back navigation.
|
|
948
948
|
* The event on the target page will contain this data object as backData property (the original data from the to() navigation will still be available as data property).
|
|
949
949
|
*
|
|
@@ -951,7 +951,7 @@ function(
|
|
|
951
951
|
* For back navigation this can be used, for example, when returning from a detail page to transfer any settings done there.
|
|
952
952
|
*
|
|
953
953
|
* When the transitionParameters object is used, this data object must also be given (either as object or as null) in order to have a proper parameter order.
|
|
954
|
-
* @param {object}
|
|
954
|
+
* @param {object} [transitionParameters]
|
|
955
955
|
* This optional object can give additional information to the transition function, like the DOM element, which triggered the transition or the desired transition duration.
|
|
956
956
|
* The animation type can NOT be selected here - it is always the inverse of the "to" navigation.
|
|
957
957
|
*
|
|
@@ -960,31 +960,31 @@ function(
|
|
|
960
960
|
* NOTE: it depends on the transition function how the object should be structured and which parameters are actually used to influence the transition.
|
|
961
961
|
* @public
|
|
962
962
|
*/
|
|
963
|
-
SplitContainer.prototype.backMaster = function(backData,
|
|
964
|
-
this._oMasterNav.back(backData,
|
|
963
|
+
SplitContainer.prototype.backMaster = function(backData, transitionParameters) {
|
|
964
|
+
this._oMasterNav.back(backData, transitionParameters);
|
|
965
965
|
};
|
|
966
966
|
|
|
967
|
-
SplitContainer.prototype.backMasterToPage = function(pageId, backData,
|
|
968
|
-
this._oMasterNav.backToPage(pageId, backData,
|
|
967
|
+
SplitContainer.prototype.backMasterToPage = function(pageId, backData, transitionParameters) {
|
|
968
|
+
this._oMasterNav.backToPage(pageId, backData, transitionParameters);
|
|
969
969
|
};
|
|
970
970
|
|
|
971
971
|
|
|
972
972
|
/**
|
|
973
973
|
* Navigates to a given detail page.
|
|
974
974
|
*
|
|
975
|
-
* @param {string}
|
|
976
|
-
* @param {string}
|
|
975
|
+
* @param {string} pageId Id of the page
|
|
976
|
+
* @param {string} transitionName
|
|
977
977
|
* The type of the transition/animation to apply. Options are "slide" (horizontal movement from the right), "baseSlide", "fade", "flip", and "show"
|
|
978
978
|
* and the names of any registered custom transitions.
|
|
979
979
|
*
|
|
980
980
|
* None of the standard transitions is currently making use of any given transition parameters.
|
|
981
|
-
* @param {object}
|
|
981
|
+
* @param {object} [data]
|
|
982
982
|
* This optional object can carry any payload data which should be made available to the target page. The BeforeShow event on the target page will contain this data object as data property.
|
|
983
983
|
*
|
|
984
984
|
* Use case: in scenarios where the entity triggering the navigation can or should not directly initialize the target page, it can fill this object and the target page itself (or a listener on it) can take over the initialization, using the given data.
|
|
985
985
|
*
|
|
986
986
|
* When the transitionParameters object is used, this data object must also be given (either as object or as null) in order to have a proper parameter order.
|
|
987
|
-
* @param {object}
|
|
987
|
+
* @param {object} [transitionParameters]
|
|
988
988
|
* This optional object can contain additional information for the transition function, like the DOM element, which triggered the transition or the desired transition duration.
|
|
989
989
|
*
|
|
990
990
|
* For a proper parameter order, the data parameter must be given when the transitionParameters parameter is used (it can be given as "null").
|
|
@@ -993,22 +993,22 @@ function(
|
|
|
993
993
|
* The "show", "slide" and "fade" transitions do not use any parameter.
|
|
994
994
|
* @public
|
|
995
995
|
*/
|
|
996
|
-
SplitContainer.prototype.toDetail = function(pageId, transitionName, data,
|
|
997
|
-
this._oDetailNav.to(pageId, transitionName, data,
|
|
996
|
+
SplitContainer.prototype.toDetail = function(pageId, transitionName, data, transitionParameters) {
|
|
997
|
+
this._oDetailNav.to(pageId, transitionName, data, transitionParameters);
|
|
998
998
|
};
|
|
999
999
|
|
|
1000
1000
|
|
|
1001
1001
|
/**
|
|
1002
1002
|
* Navigates back to the previous detail page found in the history.
|
|
1003
1003
|
*
|
|
1004
|
-
* @param {object}
|
|
1004
|
+
* @param {object} [backData]
|
|
1005
1005
|
* This optional object can carry any payload data which should be made available to the target page of the back navigation. The event on the target page will contain this data object as backData property. (The original data from the to() navigation will still be available as data property.)
|
|
1006
1006
|
*
|
|
1007
1007
|
* In scenarios where the entity triggering the navigation can or should not directly initialize the target page, it can fill this object and the target page itself (or a listener on it) can take over the initialization, using the given data.
|
|
1008
1008
|
* For back navigation this can be used, for example, when returning from a detail page to transfer any settings done there.
|
|
1009
1009
|
*
|
|
1010
1010
|
* When the transitionParameters object is used, this data object must also be given (either as object or as null) in order to have a proper parameter order.
|
|
1011
|
-
* @param {object}
|
|
1011
|
+
* @param {object} [transitionParameters]
|
|
1012
1012
|
* This optional object can give additional information to the transition function, like the DOM element, which triggered the transition or the desired transition duration.
|
|
1013
1013
|
* The animation type can NOT be selected here - it is always the inverse of the "to" navigation.
|
|
1014
1014
|
*
|
|
@@ -1017,12 +1017,12 @@ function(
|
|
|
1017
1017
|
* NOTE: it depends on the transition function how the object should be structured and which parameters are actually used to influence the transition.
|
|
1018
1018
|
* @public
|
|
1019
1019
|
*/
|
|
1020
|
-
SplitContainer.prototype.backDetail = function(backData,
|
|
1021
|
-
this._oDetailNav.back(backData,
|
|
1020
|
+
SplitContainer.prototype.backDetail = function(backData, transitionParameters) {
|
|
1021
|
+
this._oDetailNav.back(backData, transitionParameters);
|
|
1022
1022
|
};
|
|
1023
1023
|
|
|
1024
|
-
SplitContainer.prototype.backDetailToPage = function(pageId, backData,
|
|
1025
|
-
this._oDetailNav.backToPage(pageId, backData,
|
|
1024
|
+
SplitContainer.prototype.backDetailToPage = function(pageId, backData, transitionParameters) {
|
|
1025
|
+
this._oDetailNav.backToPage(pageId, backData, transitionParameters);
|
|
1026
1026
|
};
|
|
1027
1027
|
|
|
1028
1028
|
|
|
@@ -1031,14 +1031,14 @@ function(
|
|
|
1031
1031
|
* NOTE: If already on the initial page, nothing happens.
|
|
1032
1032
|
* The transition effect which had been used to get to the current page is inverted and used for this navigation.
|
|
1033
1033
|
*
|
|
1034
|
-
* @param {object}
|
|
1034
|
+
* @param {object} [backData]
|
|
1035
1035
|
* This optional object can carry any payload data which should be made available to the target page of the back navigation. The event on the target page will contain this data object as "backData" property. (The original data from the "to()" navigation will still be available as "data" property.)
|
|
1036
1036
|
*
|
|
1037
1037
|
* In scenarios where the entity triggering the navigation can or should not directly initialize the target page, it can fill this object and the target page itself (or a listener on it) can take over the initialization, using the given data.
|
|
1038
1038
|
* For back navigation this can be used e.g. when returning from a detail page to transfer any settings done there.
|
|
1039
1039
|
*
|
|
1040
1040
|
* When the "transitionParameters" object is used, this "data" object must also be given (either as object or as null) in order to have a proper parameter order.
|
|
1041
|
-
* @param {object}
|
|
1041
|
+
* @param {object} [transitionParameters]
|
|
1042
1042
|
* This optional object can give additional information to the transition function, like the DOM element which triggered the transition or the desired transition duration.
|
|
1043
1043
|
* The animation type can NOT be selected here - it is always the inverse of the "to" navigation.
|
|
1044
1044
|
*
|
|
@@ -1047,8 +1047,8 @@ function(
|
|
|
1047
1047
|
* NOTE: it depends on the transition function how the object should be structured and which parameters are actually used to influence the transition.
|
|
1048
1048
|
* @public
|
|
1049
1049
|
*/
|
|
1050
|
-
SplitContainer.prototype.backToTopMaster = function(backData,
|
|
1051
|
-
this._oMasterNav.backToTop(backData,
|
|
1050
|
+
SplitContainer.prototype.backToTopMaster = function(backData, transitionParameters) {
|
|
1051
|
+
this._oMasterNav.backToTop(backData, transitionParameters);
|
|
1052
1052
|
};
|
|
1053
1053
|
|
|
1054
1054
|
|
|
@@ -1057,14 +1057,14 @@ function(
|
|
|
1057
1057
|
* NOTE: If already on the initial page, nothing happens.
|
|
1058
1058
|
* The transition effect which had been used to get to the current page is inverted and used for this navigation.
|
|
1059
1059
|
*
|
|
1060
|
-
* @param {object}
|
|
1060
|
+
* @param {object} [backData]
|
|
1061
1061
|
* This optional object can carry any payload data which should be made available to the target page of the back navigation. The event on the target page will contain this data object as backData property (the original data from the to() navigation will still be available as data property).
|
|
1062
1062
|
*
|
|
1063
1063
|
* In scenarios where the entity triggering the navigation can or should not directly initialize the target page, it can fill this object and the target page itself (or a listener on it) can take over the initialization, using the given data.
|
|
1064
1064
|
* For back navigation this can be used, for example, when returning from a detail page to transfer any settings done there.
|
|
1065
1065
|
*
|
|
1066
1066
|
* When the transitionParameters object is used, this data object must also be given (either as object or as null) in order to have a proper parameter order.
|
|
1067
|
-
* @param {object}
|
|
1067
|
+
* @param {object} [transitionParameters]
|
|
1068
1068
|
* This optional object can give additional information to the transition function, like the DOM element, which triggered the transition or the desired transition duration.
|
|
1069
1069
|
* The animation type can NOT be selected here - it is always the inverse of the "to" navigation.
|
|
1070
1070
|
*
|
|
@@ -1073,8 +1073,8 @@ function(
|
|
|
1073
1073
|
* NOTE: it depends on the transition function how the object should be structured and which parameters are actually used to influence the transition.
|
|
1074
1074
|
* @public
|
|
1075
1075
|
*/
|
|
1076
|
-
SplitContainer.prototype.backToTopDetail = function(backData,
|
|
1077
|
-
this._oDetailNav.backToTop(backData,
|
|
1076
|
+
SplitContainer.prototype.backToTopDetail = function(backData, transitionParameters) {
|
|
1077
|
+
this._oDetailNav.backToTop(backData, transitionParameters);
|
|
1078
1078
|
};
|
|
1079
1079
|
|
|
1080
1080
|
SplitContainer.prototype.addMasterPage = function(oPage) {
|
|
@@ -2105,7 +2105,7 @@ function(
|
|
|
2105
2105
|
* @param {string} mSettings.aggregation The aggregation name to decide on which column/container the placeholder should be shown
|
|
2106
2106
|
*
|
|
2107
2107
|
* @private
|
|
2108
|
-
* @ui5-restricted SAPUI5 Distribution
|
|
2108
|
+
* @ui5-restricted SAPUI5 Distribution Layer Libraries
|
|
2109
2109
|
* @since 1.91
|
|
2110
2110
|
*/
|
|
2111
2111
|
SplitContainer.prototype.showPlaceholder = function(mSettings) {
|
|
@@ -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
|
|
|
@@ -42,7 +42,7 @@ sap.ui.define([
|
|
|
42
42
|
* @extends sap.m.DynamicDateOption
|
|
43
43
|
*
|
|
44
44
|
* @author SAP SE
|
|
45
|
-
* @version 1.
|
|
45
|
+
* @version 1.111.0
|
|
46
46
|
*
|
|
47
47
|
* @public
|
|
48
48
|
* @alias sap.m.StandardDynamicDateOption
|
|
@@ -50,7 +50,15 @@ sap.ui.define([
|
|
|
50
50
|
*/
|
|
51
51
|
var StandardDynamicDateOption = DynamicDateOption.extend("sap.m.StandardDynamicDateOption", /** @lends sap.m.StandardDynamicDateOption.prototype */ {
|
|
52
52
|
metadata: {
|
|
53
|
-
library: "sap.m"
|
|
53
|
+
library: "sap.m",
|
|
54
|
+
properties: {
|
|
55
|
+
/**
|
|
56
|
+
* If set, the calendar week numbering is used for display.
|
|
57
|
+
* If not set, the calendar week numbering of the global configuration is used.
|
|
58
|
+
* @since 1.111.0
|
|
59
|
+
*/
|
|
60
|
+
calendarWeekNumbering: { type : "sap.ui.core.date.CalendarWeekNumbering", group : "Appearance", defaultValue: null}
|
|
61
|
+
}
|
|
54
62
|
}
|
|
55
63
|
});
|
|
56
64
|
|
|
@@ -87,11 +95,15 @@ sap.ui.define([
|
|
|
87
95
|
"NEXTMONTH": "NEXTMONTH",
|
|
88
96
|
"NEXTQUARTER": "NEXTQUARTER",
|
|
89
97
|
"NEXTYEAR": "NEXTYEAR",
|
|
98
|
+
"LASTMINUTES": "LASTMINUTES",
|
|
99
|
+
"LASTHOURS": "LASTHOURS",
|
|
90
100
|
"LASTDAYS": "LASTDAYS",
|
|
91
101
|
"LASTWEEKS": "LASTWEEKS",
|
|
92
102
|
"LASTMONTHS": "LASTMONTHS",
|
|
93
103
|
"LASTQUARTERS": "LASTQUARTERS",
|
|
94
104
|
"LASTYEARS": "LASTYEARS",
|
|
105
|
+
"NEXTMINUTES": "NEXTMINUTES",
|
|
106
|
+
"NEXTHOURS": "NEXTHOURS",
|
|
95
107
|
"NEXTDAYS": "NEXTDAYS",
|
|
96
108
|
"NEXTWEEKS": "NEXTWEEKS",
|
|
97
109
|
"NEXTMONTHS": "NEXTMONTHS",
|
|
@@ -149,11 +161,15 @@ sap.ui.define([
|
|
|
149
161
|
"NEXTMONTH": _Groups.Months,
|
|
150
162
|
"NEXTQUARTER": _Groups.Quarters,
|
|
151
163
|
"NEXTYEAR": _Groups.Years,
|
|
164
|
+
"LASTMINUTES": _Groups.DateRanges,
|
|
165
|
+
"LASTHOURS": _Groups.DateRanges,
|
|
152
166
|
"LASTDAYS": _Groups.DateRanges,
|
|
153
167
|
"LASTWEEKS": _Groups.DateRanges,
|
|
154
168
|
"LASTMONTHS": _Groups.DateRanges,
|
|
155
169
|
"LASTQUARTERS": _Groups.DateRanges,
|
|
156
170
|
"LASTYEARS": _Groups.DateRanges,
|
|
171
|
+
"NEXTMINUTES": _Groups.DateRanges,
|
|
172
|
+
"NEXTHOURS": _Groups.DateRanges,
|
|
157
173
|
"NEXTDAYS": _Groups.DateRanges,
|
|
158
174
|
"NEXTWEEKS": _Groups.DateRanges,
|
|
159
175
|
"NEXTMONTHS": _Groups.DateRanges,
|
|
@@ -172,8 +188,8 @@ sap.ui.define([
|
|
|
172
188
|
"QUARTER4": _Groups.Quarters
|
|
173
189
|
};
|
|
174
190
|
|
|
175
|
-
var aLastOptions = ["LASTDAYS", "LASTWEEKS", "LASTMONTHS", "LASTQUARTERS", "LASTYEARS"];
|
|
176
|
-
var aNextOptions = ["NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS"];
|
|
191
|
+
var aLastOptions = ["LASTMINUTES", "LASTHOURS", "LASTDAYS", "LASTWEEKS", "LASTMONTHS", "LASTQUARTERS", "LASTYEARS"];
|
|
192
|
+
var aNextOptions = ["NEXTMINUTES", "NEXTHOURS", "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS"];
|
|
177
193
|
|
|
178
194
|
StandardDynamicDateOption.LastXKeys = aLastOptions;
|
|
179
195
|
StandardDynamicDateOption.NextXKeys = aNextOptions;
|
|
@@ -209,11 +225,15 @@ sap.ui.define([
|
|
|
209
225
|
}
|
|
210
226
|
|
|
211
227
|
switch (sKey) {
|
|
228
|
+
case Keys.LASTMINUTES:
|
|
229
|
+
case Keys.LASTHOURS:
|
|
212
230
|
case Keys.LASTDAYS:
|
|
213
231
|
case Keys.LASTWEEKS:
|
|
214
232
|
case Keys.LASTMONTHS:
|
|
215
233
|
case Keys.LASTQUARTERS:
|
|
216
234
|
case Keys.LASTYEARS:
|
|
235
|
+
case Keys.NEXTMINUTES:
|
|
236
|
+
case Keys.NEXTHOURS:
|
|
217
237
|
case Keys.NEXTDAYS:
|
|
218
238
|
case Keys.NEXTWEEKS:
|
|
219
239
|
case Keys.NEXTMONTHS:
|
|
@@ -301,11 +321,15 @@ sap.ui.define([
|
|
|
301
321
|
type: "custommonth"
|
|
302
322
|
})];
|
|
303
323
|
break;
|
|
324
|
+
case Keys.LASTMINUTES:
|
|
325
|
+
case Keys.LASTHOURS:
|
|
304
326
|
case Keys.LASTDAYS:
|
|
305
327
|
case Keys.LASTWEEKS:
|
|
306
328
|
case Keys.LASTMONTHS:
|
|
307
329
|
case Keys.LASTQUARTERS:
|
|
308
330
|
case Keys.LASTYEARS:
|
|
331
|
+
case Keys.NEXTMINUTES:
|
|
332
|
+
case Keys.NEXTHOURS:
|
|
309
333
|
case Keys.NEXTDAYS:
|
|
310
334
|
case Keys.NEXTWEEKS:
|
|
311
335
|
case Keys.NEXTMONTHS:
|
|
@@ -349,7 +373,7 @@ sap.ui.define([
|
|
|
349
373
|
|
|
350
374
|
/**
|
|
351
375
|
* Creates a UI for this DynamicDateOption.
|
|
352
|
-
* @param {sap.m.DynamicDateRange}
|
|
376
|
+
* @param {sap.m.DynamicDateRange} oControl to create the UI for
|
|
353
377
|
* @param {function} fnControlsUpdated A callback invoked when any of the created controls updates its value
|
|
354
378
|
*
|
|
355
379
|
* @return {sap.ui.core.Control[]} Returns an array of controls which is mapped to the parameters of this DynamicDateOption.
|
|
@@ -359,7 +383,8 @@ sap.ui.define([
|
|
|
359
383
|
oValue = oControl.getValue() && Object.assign({}, oControl.getValue()),
|
|
360
384
|
aParams = this.getValueHelpUITypes(oControl),
|
|
361
385
|
aControls = [],
|
|
362
|
-
oCurrentLabel
|
|
386
|
+
oCurrentLabel,
|
|
387
|
+
sCalendarWeekNumbering = oControl.getCalendarWeekNumbering();
|
|
363
388
|
|
|
364
389
|
if (!oControl.aControlsByParameters) {
|
|
365
390
|
oControl.aControlsByParameters = {};
|
|
@@ -415,18 +440,18 @@ sap.ui.define([
|
|
|
415
440
|
}
|
|
416
441
|
break;
|
|
417
442
|
case "date":
|
|
418
|
-
oInputControl = this._createDateControl(oValue, iIndex, fnControlsUpdated, bUTC);
|
|
443
|
+
oInputControl = this._createDateControl(oValue, iIndex, fnControlsUpdated, bUTC, sCalendarWeekNumbering);
|
|
419
444
|
break;
|
|
420
445
|
case "datetime":
|
|
421
446
|
if (aParams.length === 1) {
|
|
422
447
|
// creates "single" DateTime option (embedded in the DynamicDateRange popup)
|
|
423
|
-
oInputControl = this._createDateTimeInnerControl(oValue, iIndex, fnControlsUpdated, bUTC);
|
|
448
|
+
oInputControl = this._createDateTimeInnerControl(oValue, iIndex, fnControlsUpdated, bUTC, sCalendarWeekNumbering);
|
|
424
449
|
} else if (aParams.length === 2) {
|
|
425
|
-
oInputControl = this._createDateTimeControl(oValue, iIndex, fnControlsUpdated, bUTC);
|
|
450
|
+
oInputControl = this._createDateTimeControl(oValue, iIndex, fnControlsUpdated, bUTC, sCalendarWeekNumbering);
|
|
426
451
|
}
|
|
427
452
|
break;
|
|
428
453
|
case "daterange":
|
|
429
|
-
oInputControl = this._createDateRangeControl(oValue, iIndex, fnControlsUpdated, bUTC);
|
|
454
|
+
oInputControl = this._createDateRangeControl(oValue, iIndex, fnControlsUpdated, bUTC, sCalendarWeekNumbering);
|
|
430
455
|
break;
|
|
431
456
|
case "month":
|
|
432
457
|
oInputControl = this._createMonthControl(oValue, iIndex, fnControlsUpdated);
|
|
@@ -678,7 +703,7 @@ sap.ui.define([
|
|
|
678
703
|
return oFormatter.parse(sValue, this.getKey());
|
|
679
704
|
};
|
|
680
705
|
|
|
681
|
-
StandardDynamicDateOption.prototype.toDates = function(oValue) {
|
|
706
|
+
StandardDynamicDateOption.prototype.toDates = function(oValue, sCalendarWeekNumbering) {
|
|
682
707
|
if (!oValue) {
|
|
683
708
|
return null;
|
|
684
709
|
}
|
|
@@ -723,9 +748,9 @@ sap.ui.define([
|
|
|
723
748
|
case "TOMORROW":
|
|
724
749
|
return UniversalDateUtils.ranges.tomorrow();
|
|
725
750
|
case "FIRSTDAYWEEK":
|
|
726
|
-
return UniversalDateUtils.ranges.firstDayOfWeek();
|
|
751
|
+
return UniversalDateUtils.ranges.firstDayOfWeek(sCalendarWeekNumbering);
|
|
727
752
|
case "LASTDAYWEEK":
|
|
728
|
-
return UniversalDateUtils.ranges.lastDayOfWeek();
|
|
753
|
+
return UniversalDateUtils.ranges.lastDayOfWeek(sCalendarWeekNumbering);
|
|
729
754
|
case "FIRSTDAYMONTH":
|
|
730
755
|
return UniversalDateUtils.ranges.firstDayOfMonth();
|
|
731
756
|
case "LASTDAYMONTH":
|
|
@@ -739,7 +764,7 @@ sap.ui.define([
|
|
|
739
764
|
case "LASTDAYYEAR":
|
|
740
765
|
return UniversalDateUtils.ranges.lastDayOfYear();
|
|
741
766
|
case "THISWEEK":
|
|
742
|
-
return UniversalDateUtils.ranges.currentWeek();
|
|
767
|
+
return UniversalDateUtils.ranges.currentWeek(sCalendarWeekNumbering);
|
|
743
768
|
case "THISMONTH":
|
|
744
769
|
return UniversalDateUtils.ranges.currentMonth();
|
|
745
770
|
case "THISQUARTER":
|
|
@@ -747,7 +772,7 @@ sap.ui.define([
|
|
|
747
772
|
case "THISYEAR":
|
|
748
773
|
return UniversalDateUtils.ranges.currentYear();
|
|
749
774
|
case "LASTWEEK":
|
|
750
|
-
return UniversalDateUtils.ranges.lastWeek();
|
|
775
|
+
return UniversalDateUtils.ranges.lastWeek(sCalendarWeekNumbering);
|
|
751
776
|
case "LASTMONTH":
|
|
752
777
|
return UniversalDateUtils.ranges.lastMonth();
|
|
753
778
|
case "LASTQUARTER":
|
|
@@ -755,27 +780,35 @@ sap.ui.define([
|
|
|
755
780
|
case "LASTYEAR":
|
|
756
781
|
return UniversalDateUtils.ranges.lastYear();
|
|
757
782
|
case "NEXTWEEK":
|
|
758
|
-
return UniversalDateUtils.ranges.nextWeek();
|
|
783
|
+
return UniversalDateUtils.ranges.nextWeek(sCalendarWeekNumbering);
|
|
759
784
|
case "NEXTMONTH":
|
|
760
785
|
return UniversalDateUtils.ranges.nextMonth();
|
|
761
786
|
case "NEXTQUARTER":
|
|
762
787
|
return UniversalDateUtils.ranges.nextQuarter();
|
|
763
788
|
case "NEXTYEAR":
|
|
764
789
|
return UniversalDateUtils.ranges.nextYear();
|
|
790
|
+
case "LASTMINUTES":
|
|
791
|
+
return UniversalDateUtils.ranges.lastMinutes(iParamLastNext);
|
|
792
|
+
case "LASTHOURS":
|
|
793
|
+
return UniversalDateUtils.ranges.lastHours(iParamLastNext);
|
|
765
794
|
case "LASTDAYS":
|
|
766
795
|
return UniversalDateUtils.ranges.lastDays(iParamLastNext);
|
|
767
796
|
case "LASTWEEKS":
|
|
768
|
-
return UniversalDateUtils.ranges.lastWeeks(iParamLastNext);
|
|
797
|
+
return UniversalDateUtils.ranges.lastWeeks(iParamLastNext, sCalendarWeekNumbering);
|
|
769
798
|
case "LASTMONTHS":
|
|
770
799
|
return UniversalDateUtils.ranges.lastMonths(iParamLastNext);
|
|
771
800
|
case "LASTQUARTERS":
|
|
772
801
|
return UniversalDateUtils.ranges.lastQuarters(iParamLastNext);
|
|
773
802
|
case "LASTYEARS":
|
|
774
803
|
return UniversalDateUtils.ranges.lastYears(iParamLastNext);
|
|
804
|
+
case "NEXTMINUTES":
|
|
805
|
+
return UniversalDateUtils.ranges.nextMinutes(iParamLastNext);
|
|
806
|
+
case "NEXTHOURS":
|
|
807
|
+
return UniversalDateUtils.ranges.nextHours(iParamLastNext);
|
|
775
808
|
case "NEXTDAYS":
|
|
776
809
|
return UniversalDateUtils.ranges.nextDays(iParamLastNext);
|
|
777
810
|
case "NEXTWEEKS":
|
|
778
|
-
return UniversalDateUtils.ranges.nextWeeks(iParamLastNext);
|
|
811
|
+
return UniversalDateUtils.ranges.nextWeeks(iParamLastNext, sCalendarWeekNumbering);
|
|
779
812
|
case "NEXTMONTHS":
|
|
780
813
|
return UniversalDateUtils.ranges.nextMonths(iParamLastNext);
|
|
781
814
|
case "NEXTQUARTERS":
|
|
@@ -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
|
|
|
@@ -38,7 +38,7 @@ sap.ui.define([
|
|
|
38
38
|
* @extends sap.m.ListItemBase
|
|
39
39
|
*
|
|
40
40
|
* @author SAP SE
|
|
41
|
-
* @version 1.
|
|
41
|
+
* @version 1.111.0
|
|
42
42
|
*
|
|
43
43
|
* @constructor
|
|
44
44
|
* @public
|
|
@@ -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
|
|
|
@@ -40,7 +40,7 @@ sap.ui.define([
|
|
|
40
40
|
* @extends sap.m.Tile
|
|
41
41
|
*
|
|
42
42
|
* @author SAP SE
|
|
43
|
-
* @version 1.
|
|
43
|
+
* @version 1.111.0
|
|
44
44
|
*
|
|
45
45
|
* @constructor
|
|
46
46
|
* @public
|
|
@@ -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
|
|
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
* @extends sap.m.TreeItemBase
|
|
27
27
|
*
|
|
28
28
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
29
|
+
* @version 1.111.0
|
|
30
30
|
*
|
|
31
31
|
* @constructor
|
|
32
32
|
* @public
|