@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
|
/*
|
|
@@ -11,6 +11,7 @@ sap.ui.define([
|
|
|
11
11
|
"sap/m/library",
|
|
12
12
|
"sap/ui/core/Core",
|
|
13
13
|
"sap/ui/core/IconPool",
|
|
14
|
+
"sap/ui/core/library",
|
|
14
15
|
"sap/m/Dialog",
|
|
15
16
|
"sap/m/Button",
|
|
16
17
|
"sap/m/Bar",
|
|
@@ -18,12 +19,15 @@ sap.ui.define([
|
|
|
18
19
|
"sap/m/Toolbar",
|
|
19
20
|
"sap/m/ToggleButton",
|
|
20
21
|
"sap/m/ValueStateHeader"
|
|
21
|
-
], function (library, Core, IconPool, Dialog, Button, Bar, Title, Toolbar, ToggleButton, ValueStateHeader) {
|
|
22
|
+
], function (library, Core, IconPool, coreLibrary, Dialog, Button, Bar, Title, Toolbar, ToggleButton, ValueStateHeader) {
|
|
22
23
|
"use strict";
|
|
23
24
|
|
|
24
25
|
// shortcut for sap.m.TitleAlignment
|
|
25
26
|
var TitleAlignment = library.TitleAlignment;
|
|
26
27
|
|
|
28
|
+
// shortcut for sap.ui.core.TitleLevel
|
|
29
|
+
var TitleLevel = coreLibrary.TitleLevel;
|
|
30
|
+
|
|
27
31
|
return function () {
|
|
28
32
|
/**
|
|
29
33
|
* Returns a reference to the title inside the dialog.
|
|
@@ -177,7 +181,9 @@ sap.ui.define([
|
|
|
177
181
|
titleAlignment: TitleAlignment.Auto,
|
|
178
182
|
customHeader: new Bar(oInput.getId() + "-popup-header", {
|
|
179
183
|
titleAlignment: TitleAlignment.Auto,
|
|
180
|
-
contentMiddle: new Title(
|
|
184
|
+
contentMiddle: new Title({
|
|
185
|
+
level: TitleLevel.H1
|
|
186
|
+
}),
|
|
181
187
|
contentRight: new Button({
|
|
182
188
|
icon: IconPool.getIconURI("decline")
|
|
183
189
|
})
|
|
@@ -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
|
/*
|
|
@@ -103,6 +103,7 @@ sap.ui.define(["sap/ui/Device"], function (Device) {
|
|
|
103
103
|
* Sorts items based on the best match. The first item is most likely to be the selected one.
|
|
104
104
|
*
|
|
105
105
|
* Items could have multiple texts and the sorting criteria is:
|
|
106
|
+
* - item with text that matches exactly the input value has the highest priority
|
|
106
107
|
* - the matching text with lower index in the array gets a higher priority
|
|
107
108
|
* For example, if there's an array of texts: left: ["bar", "foo"], right: ["foo", "bar"] and the search is "fo",
|
|
108
109
|
* the order would be:
|
|
@@ -129,6 +130,15 @@ sap.ui.define(["sap/ui/Device"], function (Device) {
|
|
|
129
130
|
bLeft = _startsWithIgnoreCase(aLeftTexts[i], sTextToFilter);
|
|
130
131
|
bRight = _startsWithIgnoreCase(aRightTexts[i], sTextToFilter);
|
|
131
132
|
|
|
133
|
+
// In case of exact match always return with highest priority
|
|
134
|
+
if (aLeftTexts[i].toLowerCase() === sTextToFilter.toLowerCase()) {
|
|
135
|
+
return -1;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
if (aRightTexts[i].toLowerCase() === sTextToFilter.toLowerCase()) {
|
|
139
|
+
return 1;
|
|
140
|
+
}
|
|
141
|
+
|
|
132
142
|
if (bLeft && bRight) {
|
|
133
143
|
return 0;
|
|
134
144
|
} else if (_startsWithIgnoreCase(aLeftTexts[i], sTextToFilter)) {
|
package/src/sap/m/library.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
|
|
|
@@ -70,13 +70,13 @@ sap.ui.define([
|
|
|
70
70
|
* @namespace
|
|
71
71
|
* @alias sap.m
|
|
72
72
|
* @author SAP SE
|
|
73
|
-
* @version 1.
|
|
73
|
+
* @version 1.111.0
|
|
74
74
|
* @since 1.4
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
77
|
var thisLib = sap.ui.getCore().initLibrary({
|
|
78
78
|
name : "sap.m",
|
|
79
|
-
version: "1.
|
|
79
|
+
version: "1.111.0",
|
|
80
80
|
dependencies : ["sap.ui.core"],
|
|
81
81
|
designtime: "sap/m/designtime/library.designtime",
|
|
82
82
|
types: [
|
|
@@ -196,6 +196,7 @@ sap.ui.define([
|
|
|
196
196
|
"sap.m.ObjectHeaderContainer",
|
|
197
197
|
"sap.m.IOverflowToolbarContent",
|
|
198
198
|
"sap.m.IOverflowToolbarFlexibleContent",
|
|
199
|
+
"sap.m.IToolbarInteractiveControl",
|
|
199
200
|
"sap.m.IHyphenation"
|
|
200
201
|
],
|
|
201
202
|
controls: [
|
|
@@ -451,6 +452,7 @@ sap.ui.define([
|
|
|
451
452
|
"sap.m.ViewSettingsItem",
|
|
452
453
|
"sap.m.plugins.CellSelector",
|
|
453
454
|
"sap.m.plugins.ColumnResizer",
|
|
455
|
+
"sap.m.plugins.CopyProvider",
|
|
454
456
|
"sap.m.plugins.DataStateIndicator",
|
|
455
457
|
"sap.m.plugins.PasteProvider",
|
|
456
458
|
"sap.m.plugins.PluginBase",
|
|
@@ -485,6 +487,7 @@ sap.ui.define([
|
|
|
485
487
|
"sap.m.semantic.SortAction",
|
|
486
488
|
"sap.m.semantic.SortSelect",
|
|
487
489
|
"sap.m.table.columnmenu.Entry",
|
|
490
|
+
"sap.m.table.columnmenu.ActionItem",
|
|
488
491
|
"sap.m.table.columnmenu.Item",
|
|
489
492
|
"sap.m.table.columnmenu.ItemBase",
|
|
490
493
|
"sap.m.table.columnmenu.QuickAction",
|
|
@@ -1200,6 +1203,23 @@ sap.ui.define([
|
|
|
1200
1203
|
|
|
1201
1204
|
};
|
|
1202
1205
|
|
|
1206
|
+
/**
|
|
1207
|
+
* @typedef {object} sap.m.DynamicDateRangeValue
|
|
1208
|
+
* @description Defines the <code>value</code> property of the DynamicDateRange control.
|
|
1209
|
+
* The object has two properties:
|
|
1210
|
+
* 'operator' - a string, the key of a DynamicDateOption
|
|
1211
|
+
* 'values' - an array of parameters for the same option
|
|
1212
|
+
* see {@link sap.m.DynamicDateRange}
|
|
1213
|
+
*
|
|
1214
|
+
* @property {string} operator
|
|
1215
|
+
* The key of a DynamicDateOption.
|
|
1216
|
+
* @property {Array<Date|int|string|any>} values
|
|
1217
|
+
* An array of parameters for the same option.
|
|
1218
|
+
*
|
|
1219
|
+
* @public
|
|
1220
|
+
* @since 1.111
|
|
1221
|
+
*/
|
|
1222
|
+
|
|
1203
1223
|
|
|
1204
1224
|
/**
|
|
1205
1225
|
* FacetFilterList data types.
|
|
@@ -2040,7 +2060,6 @@ sap.ui.define([
|
|
|
2040
2060
|
/**
|
|
2041
2061
|
* Returns the number of tickmarks, which should be placed between labels.
|
|
2042
2062
|
*
|
|
2043
|
-
* @param {object} mOptions The option array
|
|
2044
2063
|
* @returns {int} The number of tickmarks
|
|
2045
2064
|
*
|
|
2046
2065
|
* @function
|
|
@@ -2158,40 +2177,9 @@ sap.ui.define([
|
|
|
2158
2177
|
|
|
2159
2178
|
/**
|
|
2160
2179
|
*
|
|
2161
|
-
*
|
|
2162
|
-
*
|
|
2163
|
-
*
|
|
2164
|
-
* <ul>
|
|
2165
|
-
* <li><code>canOverflow</code> - A boolean that tells whether the control can move to the overflow menu or not.
|
|
2166
|
-
*
|
|
2167
|
-
* <b>Note:</b> Even if <code>canOverflow</code> is set to <code>false</code>, the <code>propsUnrelatedToSize</code> field is taken into account,
|
|
2168
|
-
* allowing to optimize the behavior of controls that do not need to overflow, but are used in an <code>sap.m.OverflowToolbar</code> regardless.</li>
|
|
2169
|
-
*
|
|
2170
|
-
* <li><code>autoCloseEvents</code> - An array of strings, listing all of the control's events that should trigger the closing of the overflow menu, when fired.</li>
|
|
2171
|
-
*
|
|
2172
|
-
* <li><code>invalidationEvents</code> - An array of strings, listing all of the control's events that should trigger the invalidation of the <code>sap.m.OverflowToolbar</code>, when fired.</li>
|
|
2173
|
-
*
|
|
2174
|
-
* <li><code>propsUnrelatedToSize</code> - An array of strings, listing all of the control's properties that, when changed, should not cause the overflow toolbar to invalidate.
|
|
2175
|
-
*
|
|
2176
|
-
* <b>Note:</b> By default <code>sap.m.OverflowToolbar</code> invalidates whenever any property of a child control changes. This is to ensure that whenever the size of a child control changes, the overflow toolbar's layout is recalculated.
|
|
2177
|
-
* Some properties however do not affect control size, making it unnecessary to invalidate the overflow toolbar when they change. You can list them here for optimization purposes.</li>
|
|
2178
|
-
*
|
|
2179
|
-
* <li><code>onBeforeEnterOverflow(oControl)</code> - A callback function that will be invoked before moving the control into the overflow menu. The control instance will be passed as an argument.
|
|
2180
|
-
*
|
|
2181
|
-
* <b>Note:</b> The context of the function is not the control instance (use the <code>oControl</code> parameter for this purpose), but rather an internal helper object, associated with the current <code>sap.m.OverflowToolbar</code> instance.
|
|
2182
|
-
* This object only needs to be manipulated in special cases (e.g. when you want to store state on it, rather than on the control instance).</li>
|
|
2183
|
-
*
|
|
2184
|
-
* <li><code>onAfterExitOverflow(oControl)</code> - A callback function that will be invoked after taking the control out of the overflow menu (before moving it back to the toolbar itself). The control instance will be passed as an argument.
|
|
2185
|
-
*
|
|
2186
|
-
* <b>Note:</b> See: <code>onBeforeEnterOverflow</code> for details about the function's context.</li>
|
|
2187
|
-
*
|
|
2188
|
-
* <li><code>getCustomImportance()</code> - A function that, if provided, will be called to determine the priority of the control.
|
|
2189
|
-
* This function must return a value of type <code>sap.m.OverflowToolbarPriority</code>. The string "Medium" is also accepted and interpreted as priority between <code>Low</code> and <code>High</code>.
|
|
2190
|
-
*
|
|
2191
|
-
* <b>Note:</b> Normally priority in <code>sap.m.OverflowToolbar</code> is managed with the <code>priority</code> property of <code>sap.m.OverflowToolbarLayoutData</code>.
|
|
2192
|
-
* However, some controls may have other means of defining priority, such as dedicated properties or other types of layout data for that purpose.
|
|
2193
|
-
* In summary, implementing this function allows a control to override the default priority logic (<code>sap.m.OverflowToolbarLayoutData</code>) by providing its own.</li>
|
|
2194
|
-
* </ul>
|
|
2180
|
+
* Interface for controls which can have special behavior inside <code>sap.m.OverflowToolbar</code>.
|
|
2181
|
+
* Controls that implement this interface must provide a <code>getOverflowToolbarConfig</code> method
|
|
2182
|
+
* that accepts no arguments and returns an object of type <code>sap.m.OverflowToolbarConfig</code>.
|
|
2195
2183
|
*
|
|
2196
2184
|
* <b>Important:</b> In addition, the control can implement a CSS class, scoped with the <code>.sapMOverflowToolbarMenu-CTX</code> context selector, that will be applied whenever the control is inside the overflow menu.
|
|
2197
2185
|
* For example, to make your control take up the whole width of the overflow menu, you can add a context class to your control's base CSS file like this:
|
|
@@ -2969,6 +2957,62 @@ sap.ui.define([
|
|
|
2969
2957
|
|
|
2970
2958
|
};
|
|
2971
2959
|
|
|
2960
|
+
/**
|
|
2961
|
+
* @typedef {object} sap.m.OverflowToolbarConfig
|
|
2962
|
+
* @description The object contains configuration information for the {@link sap.m.IOverflowToolbarContent} interface.
|
|
2963
|
+
*
|
|
2964
|
+
* @property {boolean} [canOverflow]
|
|
2965
|
+
* A boolean that tells whether the control can move to the overflow menu or not.
|
|
2966
|
+
* <b>Note:</b> Even if <code>canOverflow</code> is set to <code>false</code>, the <code>propsUnrelatedToSize</code> field is taken into account,
|
|
2967
|
+
* allowing to optimize the behavior of controls that do not need to overflow, but are used in an <code>sap.m.OverflowToolbar</code> regardless.
|
|
2968
|
+
* @property {string[]} [autoCloseEvents]
|
|
2969
|
+
* An array of strings, listing all of the control's events that should trigger the closing of the overflow menu, when fired.
|
|
2970
|
+
* @property {string[]} [invalidationEvents]
|
|
2971
|
+
* An array of strings, listing all of the control's events that should trigger the invalidation of the <code>sap.m.OverflowToolbar</code>, when fired.
|
|
2972
|
+
* <b>Note:</b> By default <code>sap.m.OverflowToolbar</code> invalidates whenever any property of a child control changes. This is to ensure that whenever the size of a child control changes, the overflow toolbar's layout is recalculated.
|
|
2973
|
+
* Some properties however do not affect control size, making it unnecessary to invalidate the overflow toolbar when they change. You can list them here for optimization purposes.
|
|
2974
|
+
* @property {string[]} [propsUnrelatedToSize]
|
|
2975
|
+
* An array of strings, listing all of the control's properties that, when changed, should not cause the overflow toolbar to invalidate.
|
|
2976
|
+
* @property {function} [onBeforeEnterOverflow]
|
|
2977
|
+
* A callback function that will be invoked before moving the control into the overflow menu. The control instance will be passed as an argument.
|
|
2978
|
+
* <b>Note:</b> The context of the function is not the control instance (use the <code>oControl</code> parameter for this purpose), but rather an internal helper object, associated with the current <code>sap.m.OverflowToolbar</code> instance.
|
|
2979
|
+
* This object only needs to be manipulated in special cases (e.g. when you want to store state on it, rather than on the control instance).
|
|
2980
|
+
* @property {function} [onAfterExitOverflow]
|
|
2981
|
+
* A callback function that will be invoked after taking the control out of the overflow menu (before moving it back to the toolbar itself). The control instance will be passed as an argument.
|
|
2982
|
+
* <b>Note:</b> See: <code>onBeforeEnterOverflow</code> for details about the function's context.
|
|
2983
|
+
* @property {function} [getCustomImportance]
|
|
2984
|
+
* A function that, if provided, will be called to determine the priority of the control.
|
|
2985
|
+
* This function must return a value of type <code>sap.m.OverflowToolbarPriority</code>. The string "Medium" is also accepted and interpreted as priority between <code>Low</code> and <code>High</code>.
|
|
2986
|
+
* <b>Note:</b> Normally priority in <code>sap.m.OverflowToolbar</code> is managed with the <code>priority</code> property of <code>sap.m.OverflowToolbarLayoutData</code>.
|
|
2987
|
+
* However, some controls may have other means of defining priority, such as dedicated properties or other types of layout data for that purpose.
|
|
2988
|
+
* In summary, implementing this function allows a control to override the default priority logic (<code>sap.m.OverflowToolbarLayoutData</code>) by providing its own.
|
|
2989
|
+
* @public
|
|
2990
|
+
* @since 1.110
|
|
2991
|
+
*/
|
|
2992
|
+
|
|
2993
|
+
/**
|
|
2994
|
+
* The object contains accessibility state for a control.
|
|
2995
|
+
*
|
|
2996
|
+
* @typedef {object} sap.m.InputBaseAccessibilityState
|
|
2997
|
+
*
|
|
2998
|
+
* @property {string} [role]
|
|
2999
|
+
* The WAI-ARIA role which is implemented by the control.
|
|
3000
|
+
* @property {boolean} [invalid]
|
|
3001
|
+
* Whether the control is invalid.
|
|
3002
|
+
* @property {string} [errormessage]
|
|
3003
|
+
* The errormessage property.
|
|
3004
|
+
* @property {{value: string, append: boolean}} [labelledby]
|
|
3005
|
+
* The labelledby property.
|
|
3006
|
+
* @property {{value: string, append: boolean}} [describedby]
|
|
3007
|
+
* The describedby property.
|
|
3008
|
+
* @property {boolean | null} [disabled]
|
|
3009
|
+
* Whether the control is disabled. If not relevant, it shouldn`t be set or set as <code>null</code>.
|
|
3010
|
+
* @property {boolean | null} [readonly]
|
|
3011
|
+
* Whether the control is readonly. If not relevant, it shouldn`t be set or set as <code>null</code>.
|
|
3012
|
+
* @protected
|
|
3013
|
+
* @since 1.111
|
|
3014
|
+
*/
|
|
3015
|
+
|
|
2972
3016
|
/**
|
|
2973
3017
|
* Marker interface for controls which are suitable as items for the ObjectHeader.
|
|
2974
3018
|
*
|
|
@@ -3526,6 +3570,18 @@ sap.ui.define([
|
|
|
3526
3570
|
*/
|
|
3527
3571
|
DATETOYEAR : "DATETOYEAR",
|
|
3528
3572
|
|
|
3573
|
+
/**
|
|
3574
|
+
* The range will contain the last X minutes. The count of the minutes is selected from a StepInput.
|
|
3575
|
+
* @public
|
|
3576
|
+
*/
|
|
3577
|
+
LASTMINUTES : "LASTMINUTES",
|
|
3578
|
+
|
|
3579
|
+
/**
|
|
3580
|
+
* The range will contain the last X hours. The count of the hours is selected from a StepInput.
|
|
3581
|
+
* @public
|
|
3582
|
+
*/
|
|
3583
|
+
LASTHOURS : "LASTHOURS",
|
|
3584
|
+
|
|
3529
3585
|
/**
|
|
3530
3586
|
* The range will contain the last X days. The count of the days is selected from a StepInput.
|
|
3531
3587
|
* @public
|
|
@@ -3556,6 +3612,18 @@ sap.ui.define([
|
|
|
3556
3612
|
*/
|
|
3557
3613
|
LASTYEARS : "LASTYEARS",
|
|
3558
3614
|
|
|
3615
|
+
/**
|
|
3616
|
+
* The range will contain the next X minutes. The count of the minutes is selected from a StepInput.
|
|
3617
|
+
* @public
|
|
3618
|
+
*/
|
|
3619
|
+
NEXTMINUTES : "NEXTMINUTES",
|
|
3620
|
+
|
|
3621
|
+
/**
|
|
3622
|
+
* The range will contain the next X hours. The count of the hours is selected from a StepInput.
|
|
3623
|
+
* @public
|
|
3624
|
+
*/
|
|
3625
|
+
NEXTHOURS : "NEXTHOURS",
|
|
3626
|
+
|
|
3559
3627
|
/**
|
|
3560
3628
|
* The range will contain the next X days. The count of the days is selected from a StepInput.
|
|
3561
3629
|
* @public
|
|
@@ -4120,14 +4188,40 @@ sap.ui.define([
|
|
|
4120
4188
|
* Categories of column menu entries.
|
|
4121
4189
|
*
|
|
4122
4190
|
* @enum {string}
|
|
4123
|
-
* @
|
|
4191
|
+
* @public
|
|
4192
|
+
* @since 1.110
|
|
4124
4193
|
* @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
|
|
4125
4194
|
*/
|
|
4126
4195
|
thisLib.table.columnmenu.Category = {
|
|
4196
|
+
|
|
4197
|
+
/**
|
|
4198
|
+
* Sort category
|
|
4199
|
+
* @public
|
|
4200
|
+
*/
|
|
4127
4201
|
Sort: "Sort",
|
|
4202
|
+
|
|
4203
|
+
/**
|
|
4204
|
+
* Filter category
|
|
4205
|
+
* @public
|
|
4206
|
+
*/
|
|
4128
4207
|
Filter: "Filter",
|
|
4208
|
+
|
|
4209
|
+
/**
|
|
4210
|
+
* Group category
|
|
4211
|
+
* @public
|
|
4212
|
+
*/
|
|
4129
4213
|
Group: "Group",
|
|
4214
|
+
|
|
4215
|
+
/**
|
|
4216
|
+
* Aggregate category
|
|
4217
|
+
* @public
|
|
4218
|
+
*/
|
|
4130
4219
|
Aggregate: "Aggregate",
|
|
4220
|
+
|
|
4221
|
+
/**
|
|
4222
|
+
* Generic category
|
|
4223
|
+
* @public
|
|
4224
|
+
*/
|
|
4131
4225
|
Generic: "Generic"
|
|
4132
4226
|
};
|
|
4133
4227
|
|
|
@@ -258,6 +258,9 @@ MOBISCROLL_SECONDS=Seconds
|
|
|
258
258
|
#XBUT: Show Now button of MobiScroll Date&Time Picker
|
|
259
259
|
MOBISCROLL_NOW=Now
|
|
260
260
|
|
|
261
|
+
#XTOL: tooltip for open picker icon
|
|
262
|
+
OPEN_PICKER_TEXT=Open Picker
|
|
263
|
+
|
|
261
264
|
#XBUT: The navigation button text in master area in SplitContainer
|
|
262
265
|
SPLITCONTAINER_NAVBUTTON_TEXT=Navigation
|
|
263
266
|
|
|
@@ -477,6 +480,9 @@ FACETFILTERLIST_ARIA_POSITION={0} of {1}
|
|
|
477
480
|
#XACT: ARIA announcement for the title of the facet filter dialog
|
|
478
481
|
FACETFILTER_AVAILABLE_FILTER_NAMES=Available Filter Names
|
|
479
482
|
|
|
483
|
+
#XACT: ARIA announcement for the list
|
|
484
|
+
SELECTDIALOGBASE_LISTLABEL=Available items
|
|
485
|
+
|
|
480
486
|
#YMSG: Message displayed near the list of selection items in the SelectDialog and TableSelectDialog controls. It will be filled with the number of selected items
|
|
481
487
|
TABLESELECTDIALOG_SELECTEDITEMS=Selected\: {0}
|
|
482
488
|
|
|
@@ -615,12 +621,6 @@ EXPANDABLE_TEXT_SHOW_MORE=More
|
|
|
615
621
|
#XLNK: This link allows the user to collapse the complete text and display only the first characters that can fit
|
|
616
622
|
EXPANDABLE_TEXT_SHOW_LESS=Less
|
|
617
623
|
|
|
618
|
-
#XACT: ARIA-label text for link that allows the user to see complete text
|
|
619
|
-
EXPANDABLE_TEXT_SHOW_MORE_ARIA_LABEL=Expand the full text
|
|
620
|
-
|
|
621
|
-
#XACT: ARIA-label text for link that allows the user to collapse the complete text and display only the first characters that can fit
|
|
622
|
-
EXPANDABLE_TEXT_SHOW_LESS_ARIA_LABEL=Collapse some of the text
|
|
623
|
-
|
|
624
624
|
#XACT: ARIA-label text for link that allow the user to see complete text in a popover
|
|
625
625
|
EXPANDABLE_TEXT_SHOW_MORE_POPOVER_ARIA_LABEL=Show the full text
|
|
626
626
|
|
|
@@ -1114,8 +1114,11 @@ OVERFLOW_TOOLBAR_ROLE_DESCRIPTION=Overflow Toolbar
|
|
|
1114
1114
|
#XACT: ARIA announcement for the OverflowToolbar`s toggle button tooltip
|
|
1115
1115
|
OVERFLOW_TOOLBAR_TOGGLE_BUTTON_TOOLTIP=Additional options
|
|
1116
1116
|
|
|
1117
|
+
#XACT: ARIA description for IconTabHeader tablist when there are split tabs
|
|
1118
|
+
ICONTABHEADER_SPLIT_TAB_DESCRIPTION=Press down arrow key to open subitems menu
|
|
1119
|
+
|
|
1117
1120
|
#XACT: ARIA description for IconTabFilter split tab
|
|
1118
|
-
ICONTABFILTER_SPLIT_TAB=
|
|
1121
|
+
ICONTABFILTER_SPLIT_TAB=Tab with subitems
|
|
1119
1122
|
|
|
1120
1123
|
#XACT: ARIA description for the IconTabFilter badge
|
|
1121
1124
|
ICONTABFILTER_BADGE=New items were added
|
|
@@ -1126,7 +1129,7 @@ ICONTABFILTER_SUB_ITEMS_BADGES=Contains tabs with new items
|
|
|
1126
1129
|
#XACT: ARIA notification for the IconTabFilter, when a badge appears
|
|
1127
1130
|
ICONTABFILTER_BADGE_MSG=New items were added to the {0} tab
|
|
1128
1131
|
|
|
1129
|
-
#XACT: ARIA notification for the IconTabFilter, when a badge appears to a
|
|
1132
|
+
#XACT: ARIA notification for the IconTabFilter, when a badge appears to a subitem.
|
|
1130
1133
|
ICONTABFILTER_SUB_ITEM_BADGE=New items were added to the {0} tab. The tab is within the {1} tab
|
|
1131
1134
|
|
|
1132
1135
|
#XACT: ARIA text of current selected value vs. max. possible value of the RatingIndicator control
|
|
@@ -1870,8 +1873,14 @@ NOTIFICATION_LIST_GROUP_MAX_NOTIFICATIONS_TITLE=There are {0} more notifications
|
|
|
1870
1873
|
#XTXT: Reached maximum number of notifications in NotificationListGroup
|
|
1871
1874
|
NOTIFICATION_LIST_GROUP_MAX_NOTIFICATIONS_BODY=You need to close or take action on the listed notifications to display more.
|
|
1872
1875
|
|
|
1876
|
+
#XTOL: Tooltip of the button for increasing for example the quantity of a product inside shopping-cart application
|
|
1877
|
+
STEP_INPUT_INCREASE_BTN=Increase
|
|
1878
|
+
|
|
1879
|
+
#XTOL: Tooltip of the button for decreasing for example the quantity of a product inside shopping-cart application
|
|
1880
|
+
STEP_INPUT_DECREASE_BTN=Decrease
|
|
1881
|
+
|
|
1873
1882
|
#XACT: Object Status control name
|
|
1874
|
-
|
|
1883
|
+
OBJECT_STATUS_ACTIVE=Object Status Button
|
|
1875
1884
|
|
|
1876
1885
|
#XACT: Object Status icon announcement
|
|
1877
1886
|
OBJECT_STATUS_ICON=Status icon
|
|
@@ -2029,15 +2038,6 @@ PANEL_ICON=Expand/Collapse
|
|
|
2029
2038
|
#XACT: ARIA announcement for aria-describedby attribute of SearchFIled
|
|
2030
2039
|
SEARCHFIELD_ARIA_DESCRIBEDBY=Search field
|
|
2031
2040
|
|
|
2032
|
-
#XTOL: SearchField search button default tooltip
|
|
2033
|
-
SEARCHFIELD_SEARCH_BUTTON_TOOLTIP=Search
|
|
2034
|
-
|
|
2035
|
-
#XTOL: SearchField reset button default tooltip
|
|
2036
|
-
SEARCHFIELD_RESET_BUTTON_TOOLTIP=Reset
|
|
2037
|
-
|
|
2038
|
-
#XTOL: SearchField refresh button default tooltip
|
|
2039
|
-
SEARCHFIELD_REFRESH_BUTTON_TOOLTIP=Refresh
|
|
2040
|
-
|
|
2041
2041
|
#XTOL: Tooltip of the MessageStrip's close button
|
|
2042
2042
|
MESSAGE_STRIP_TITLE = Close
|
|
2043
2043
|
|
|
@@ -2256,6 +2256,10 @@ DYNAMIC_DATE_NEXTMONTH_FORMAT=Next Month
|
|
|
2256
2256
|
DYNAMIC_DATE_NEXTQUARTER_FORMAT=Next Quarter
|
|
2257
2257
|
#XACT: The Next year option format pattern of a Dynamic Date Range control
|
|
2258
2258
|
DYNAMIC_DATE_NEXTYEAR_FORMAT=Next Year
|
|
2259
|
+
#XACT: The Last minutes option format pattern of a Dynamic Date Range control
|
|
2260
|
+
DYNAMIC_DATE_LASTMINUTES_FORMAT=Last {0} Minutes
|
|
2261
|
+
#XACT: The Last hours option format pattern of a Dynamic Date Range control
|
|
2262
|
+
DYNAMIC_DATE_LASTHOURS_FORMAT=Last {0} Hours
|
|
2259
2263
|
#XACT: The Last days option format pattern of a Dynamic Date Range control
|
|
2260
2264
|
DYNAMIC_DATE_LASTDAYS_FORMAT=Last {0} Days
|
|
2261
2265
|
#XACT: The Last months option format pattern of a Dynamic Date Range control
|
|
@@ -2266,6 +2270,10 @@ DYNAMIC_DATE_LASTWEEKS_FORMAT=Last {0} Weeks
|
|
|
2266
2270
|
DYNAMIC_DATE_LASTQUARTERS_FORMAT=Last {0} Quarters
|
|
2267
2271
|
#XACT: The Last years option format pattern of a Dynamic Date Range control
|
|
2268
2272
|
DYNAMIC_DATE_LASTYEARS_FORMAT=Last {0} Years
|
|
2273
|
+
#XACT: The Next minutes option format pattern of a Dynamic Date Range control
|
|
2274
|
+
DYNAMIC_DATE_NEXTMINUTES_FORMAT=Next {0} Minutes
|
|
2275
|
+
#XACT: The Next hours option format pattern of a Dynamic Date Range control
|
|
2276
|
+
DYNAMIC_DATE_NEXTHOURS_FORMAT=Next {0} Hours
|
|
2269
2277
|
#XACT: The Next days option format pattern of a Dynamic Date Range control
|
|
2270
2278
|
DYNAMIC_DATE_NEXTDAYS_FORMAT=Next {0} Days
|
|
2271
2279
|
#XACT: The Next months option format pattern of a Dynamic Date Range control
|
|
@@ -2361,6 +2369,10 @@ DYNAMIC_DATE_NEXTYEAR_TITLE=Next Year
|
|
|
2361
2369
|
DYNAMIC_DATE_LASTX_TITLE=Last X {0}
|
|
2362
2370
|
#XACT: The Next X days/weeks/months/quarters/years option title of a Dynamic Date Range control when there is more than 1 option
|
|
2363
2371
|
DYNAMIC_DATE_NEXTX_TITLE=Next X {0}
|
|
2372
|
+
#XACT: The Last X minutes option title of a Dynamic Date Range control
|
|
2373
|
+
DYNAMIC_DATE_LASTMINUTES_TITLE=Last X Minutes
|
|
2374
|
+
#XACT: The Last X hours option title of a Dynamic Date Range control
|
|
2375
|
+
DYNAMIC_DATE_LASTHOURS_TITLE=Last X Hours
|
|
2364
2376
|
#XACT: The Last X days option title of a Dynamic Date Range control
|
|
2365
2377
|
DYNAMIC_DATE_LASTDAYS_TITLE=Last X Days
|
|
2366
2378
|
#XACT: The Last X weeks option title of a Dynamic Date Range control
|
|
@@ -2371,6 +2383,10 @@ DYNAMIC_DATE_LASTMONTHS_TITLE=Last X Months
|
|
|
2371
2383
|
DYNAMIC_DATE_LASTQUARTERS_TITLE=Last X Quarters
|
|
2372
2384
|
#XACT: The Last X years option title of a Dynamic Date Range control
|
|
2373
2385
|
DYNAMIC_DATE_LASTYEARS_TITLE=Last X Years
|
|
2386
|
+
#XACT: The Next X minutes option title of a Dynamic Date Range control
|
|
2387
|
+
DYNAMIC_DATE_NEXTMINUTES_TITLE=Next X Minutes
|
|
2388
|
+
#XACT: The Next X hours option title of a Dynamic Date Range control
|
|
2389
|
+
DYNAMIC_DATE_NEXTHOURS_TITLE=Next X Hours
|
|
2374
2390
|
#XACT: The Next X days option title of a Dynamic Date Range control
|
|
2375
2391
|
DYNAMIC_DATE_NEXTDAYS_TITLE=Next X Days
|
|
2376
2392
|
#XACT: The Next X weeks option title of a Dynamic Date Range control
|
|
@@ -2381,15 +2397,19 @@ DYNAMIC_DATE_NEXTMONTHS_TITLE=Next X Months
|
|
|
2381
2397
|
DYNAMIC_DATE_NEXTQUARTERS_TITLE=Next X Quarters
|
|
2382
2398
|
#XACT: The Next X years option title of a Dynamic Date Range control
|
|
2383
2399
|
DYNAMIC_DATE_NEXTYEARS_TITLE=Next X Years
|
|
2384
|
-
#XACT: The word '
|
|
2400
|
+
#XACT: The word 'minutes' in X minutes/hours/days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2401
|
+
DYNAMIC_DATE_MINUTES=Minutes
|
|
2402
|
+
#XACT: The word 'hours' in X minutes/hours/days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2403
|
+
DYNAMIC_DATE_HOURS=Hours
|
|
2404
|
+
#XACT: The word 'days' in X minutes/hours/days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2385
2405
|
DYNAMIC_DATE_DAYS=Days
|
|
2386
|
-
#XACT: The word 'weeks' in X days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2406
|
+
#XACT: The word 'weeks' in X minutes/hours/days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2387
2407
|
DYNAMIC_DATE_WEEKS=Weeks
|
|
2388
|
-
#XACT: The word 'months' in X days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2408
|
+
#XACT: The word 'months' in X minutes/hours/days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2389
2409
|
DYNAMIC_DATE_MONTHS=Months
|
|
2390
|
-
#XACT: The word 'quarters' in X days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2410
|
+
#XACT: The word 'quarters' in X minutes/hours/days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2391
2411
|
DYNAMIC_DATE_QUARTERS=Quarters
|
|
2392
|
-
#XACT: The word 'years' in X days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2412
|
+
#XACT: The word 'years' in X minutes/hours/days/weeks/months/quarters/years option title of a Dynamic Date Range Control
|
|
2393
2413
|
DYNAMIC_DATE_YEARS=Years
|
|
2394
2414
|
#XACT: The From option title of a Dynamic Date Range control
|
|
2395
2415
|
DYNAMIC_DATE_FROM_TITLE=From
|
|
@@ -2496,7 +2516,7 @@ table.COLUMNMENU_QUICK_GROUP=Group by
|
|
|
2496
2516
|
table.COLUMNMENU_QUICK_TOTAL=Totals for
|
|
2497
2517
|
|
|
2498
2518
|
#XFLD: Label for column resize
|
|
2499
|
-
table.
|
|
2519
|
+
table.COLUMNMENU_RESIZE=Resize
|
|
2500
2520
|
|
|
2501
2521
|
#XTIT: ColumnMenu description
|
|
2502
2522
|
table.COLUMNMENU_TITLE=Column settings
|
|
@@ -2652,22 +2672,22 @@ IllustratedMessage_TITLE_UploadCollection=Drop files here
|
|
|
2652
2672
|
IllustratedMessage_DESCRIPTION_UploadCollection=You can also upload several files at once.
|
|
2653
2673
|
|
|
2654
2674
|
#XTIT: IllustratedMessage's title for the Add Dimensions illustration
|
|
2655
|
-
IllustratedMessage_TITLE_AddDimensions=
|
|
2675
|
+
IllustratedMessage_TITLE_AddDimensions=Some dimensions are missing
|
|
2656
2676
|
|
|
2657
2677
|
#XTXT: IllustratedMessage's description for the Add Dimensions illustration
|
|
2658
|
-
IllustratedMessage_DESCRIPTION_AddDimensions=
|
|
2678
|
+
IllustratedMessage_DESCRIPTION_AddDimensions=Add more dimensions to complete your chart.
|
|
2659
2679
|
|
|
2660
2680
|
#XTIT: IllustratedMessage's title for the No Dimensions Set illustration
|
|
2661
|
-
IllustratedMessage_TITLE_NoDimensionsSet=
|
|
2681
|
+
IllustratedMessage_TITLE_NoDimensionsSet=No Chart Data
|
|
2662
2682
|
|
|
2663
2683
|
#XTXT: IllustratedMessage's description for the No Dimensions Set illustration
|
|
2664
|
-
IllustratedMessage_DESCRIPTION_NoDimensionsSet=
|
|
2684
|
+
IllustratedMessage_DESCRIPTION_NoDimensionsSet=Try adjusting your chart settings.
|
|
2665
2685
|
|
|
2666
2686
|
#XTIT: IllustratedMessage's title for the Upload To Cloud Set illustration
|
|
2667
|
-
IllustratedMessage_TITLE_UploadToCloud=
|
|
2687
|
+
IllustratedMessage_TITLE_UploadToCloud=Migrate to SAP Integration Suite
|
|
2668
2688
|
|
|
2669
2689
|
#XTXT: IllustratedMessage's description for the Upload To Cloud Set illustration
|
|
2670
|
-
IllustratedMessage_DESCRIPTION_UploadToCloud=
|
|
2690
|
+
IllustratedMessage_DESCRIPTION_UploadToCloud=Move your integration content from the existing Process Integration subscription to the Cloud Integration capability.
|
|
2671
2691
|
|
|
2672
2692
|
#XBUT: VariantManagement predefined text for Save action on Main dialog
|
|
2673
2693
|
VARIANT_MANAGEMENT_SAVE=Save
|