@openui5/sap.ui.webc.main 1.93.3 → 1.96.1
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 +6 -11
- package/THIRDPARTY.txt +10 -16
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +16 -26
- package/src/sap/ui/webc/main/AvatarGroup.js +4 -20
- package/src/sap/ui/webc/main/Badge.js +1 -1
- package/src/sap/ui/webc/main/Breadcrumbs.js +128 -0
- package/src/sap/ui/webc/main/BreadcrumbsItem.js +98 -0
- package/src/sap/ui/webc/main/BusyIndicator.js +9 -1
- package/src/sap/ui/webc/main/Button.js +12 -2
- package/src/sap/ui/webc/main/Calendar.js +12 -2
- package/src/sap/ui/webc/main/CalendarDate.js +1 -1
- package/src/sap/ui/webc/main/Card.js +11 -71
- package/src/sap/ui/webc/main/CardHeader.js +127 -0
- package/src/sap/ui/webc/main/Carousel.js +13 -25
- package/src/sap/ui/webc/main/CheckBox.js +14 -7
- package/src/sap/ui/webc/main/ColorPalette.js +6 -27
- package/src/sap/ui/webc/main/ColorPaletteItem.js +1 -1
- package/src/sap/ui/webc/main/ColorPicker.js +4 -2
- package/src/sap/ui/webc/main/ComboBox.js +22 -17
- package/src/sap/ui/webc/main/ComboBoxGroupItem.js +58 -0
- package/src/sap/ui/webc/main/ComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/CustomListItem.js +4 -2
- package/src/sap/ui/webc/main/DatePicker.js +61 -3
- package/src/sap/ui/webc/main/DateRangePicker.js +66 -8
- package/src/sap/ui/webc/main/DateTimePicker.js +61 -3
- package/src/sap/ui/webc/main/Dialog.js +15 -12
- package/src/sap/ui/webc/main/FileUploader.js +1 -1
- package/src/sap/ui/webc/main/GroupHeaderListItem.js +1 -1
- package/src/sap/ui/webc/main/Icon.js +1 -1
- package/src/sap/ui/webc/main/Input.js +23 -4
- package/src/sap/ui/webc/main/Label.js +1 -1
- package/src/sap/ui/webc/main/Link.js +12 -2
- package/src/sap/ui/webc/main/List.js +38 -2
- package/src/sap/ui/webc/main/MessageStrip.js +4 -2
- package/src/sap/ui/webc/main/MultiComboBox.js +10 -4
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/MultiInput.js +26 -5
- package/src/sap/ui/webc/main/Option.js +1 -1
- package/src/sap/ui/webc/main/Panel.js +12 -2
- package/src/sap/ui/webc/main/Popover.js +21 -8
- package/src/sap/ui/webc/main/ProgressIndicator.js +1 -1
- package/src/sap/ui/webc/main/RadioButton.js +28 -21
- package/src/sap/ui/webc/main/RangeSlider.js +7 -3
- package/src/sap/ui/webc/main/RatingIndicator.js +12 -3
- package/src/sap/ui/webc/main/ResponsivePopover.js +22 -17
- package/src/sap/ui/webc/main/SegmentedButton.js +15 -15
- package/src/sap/ui/webc/main/SegmentedButtonItem.js +135 -0
- package/src/sap/ui/webc/main/Select.js +16 -1
- package/src/sap/ui/webc/main/Slider.js +7 -3
- package/src/sap/ui/webc/main/StandardListItem.js +4 -2
- package/src/sap/ui/webc/main/StepInput.js +19 -2
- package/src/sap/ui/webc/main/SuggestionGroupItem.js +58 -0
- package/src/sap/ui/webc/main/SuggestionItem.js +1 -11
- package/src/sap/ui/webc/main/Switch.js +4 -2
- package/src/sap/ui/webc/main/Tab.js +1 -1
- package/src/sap/ui/webc/main/TabContainer.js +1 -1
- package/src/sap/ui/webc/main/TabSeparator.js +1 -1
- package/src/sap/ui/webc/main/Table.js +12 -2
- package/src/sap/ui/webc/main/TableCell.js +1 -1
- package/src/sap/ui/webc/main/TableColumn.js +1 -1
- package/src/sap/ui/webc/main/TableGroupRow.js +69 -0
- package/src/sap/ui/webc/main/TableRow.js +1 -1
- package/src/sap/ui/webc/main/TextArea.js +22 -3
- package/src/sap/ui/webc/main/TimePicker.js +7 -3
- package/src/sap/ui/webc/main/Title.js +1 -1
- package/src/sap/ui/webc/main/Toast.js +1 -1
- package/src/sap/ui/webc/main/ToggleButton.js +12 -2
- package/src/sap/ui/webc/main/Token.js +4 -2
- package/src/sap/ui/webc/main/Tree.js +1 -1
- package/src/sap/ui/webc/main/TreeItem.js +1 -1
- package/src/sap/ui/webc/main/library.js +117 -31
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +12 -15
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +15 -7
- package/src/sap/ui/webc/main/thirdparty/Badge.js +11 -5
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +332 -0
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +41 -0
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +30 -1
- package/src/sap/ui/webc/main/thirdparty/Button.js +2 -9
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +73 -2
- package/src/sap/ui/webc/main/thirdparty/Card.js +8 -115
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +141 -0
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +89 -36
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +5 -29
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +13 -10
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +0 -3
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +1 -6
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +85 -65
- package/src/sap/ui/webc/main/thirdparty/ComboBoxGroupItem.js +39 -0
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +3 -0
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +44 -14
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +16 -17
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +0 -1
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +23 -4
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +117 -32
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Icon.js +17 -1
- package/src/sap/ui/webc/main/thirdparty/Input.js +18 -5
- package/src/sap/ui/webc/main/thirdparty/Interfaces.js +4 -0
- package/src/sap/ui/webc/main/thirdparty/Link.js +44 -6
- package/src/sap/ui/webc/main/thirdparty/List.js +12 -5
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +6 -0
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +0 -1
- package/src/sap/ui/webc/main/thirdparty/Panel.js +7 -4
- package/src/sap/ui/webc/main/thirdparty/Popover.js +8 -8
- package/src/sap/ui/webc/main/thirdparty/Popup.js +39 -8
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +18 -16
- package/src/sap/ui/webc/main/thirdparty/RadioButtonGroup.js +31 -31
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +4 -4
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +7 -4
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +63 -38
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +39 -0
- package/src/sap/ui/webc/main/thirdparty/Select.js +51 -20
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +9 -4
- package/src/sap/ui/webc/main/thirdparty/SuggestionGroupItem.js +36 -0
- package/src/sap/ui/webc/main/thirdparty/SuggestionItem.js +1 -5
- package/src/sap/ui/webc/main/thirdparty/SuggestionListItem.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Table.js +9 -2
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +89 -0
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +7 -1
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +8 -1
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/TreeItem.js +3 -0
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +6 -6
- package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +11 -3
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +8 -1
- package/src/sap/ui/webc/main/thirdparty/generated/json-imports/Themes.js +7 -7
- package/src/sap/ui/webc/main/thirdparty/generated/json-imports/i18n.js +47 -47
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +4 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +8 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarHeaderTemplate.lit.js +5 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +12 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +4 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteDialogTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +19 -26
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +12 -20
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/IconTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +23 -32
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LabelTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +4 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +13 -22
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MonthPickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +19 -28
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +13 -22
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopoverTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +3 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +9 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +9 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +15 -23
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +8 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +19 -28
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +20 -29
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +4 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +23 -32
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +15 -24
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +9 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableCellTemplate.lit.js +3 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableColumnTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +13 -22
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TitleTemplate.lit.js +9 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerPopoverTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +17 -26
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +4 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/YearPickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ar-23b6aec9.js → messagebundle_ar-7754de1c.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-b642f80f.js → messagebundle_bg-041345aa.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-20fa76b6.js → messagebundle_ca-df38eb0b.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-f636c9f4.js → messagebundle_cs-51d17321.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-668048df.js → messagebundle_cy-cc129f0c.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-ab0def1e.js → messagebundle_da-bc87b599.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-0bf4dd1a.js → messagebundle_de-518b0a75.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-4962a11e.js → messagebundle_el-9686b145.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-d45f8908.js → messagebundle_en-57ad19b6.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-22be6c54.js → messagebundle_en_GB-588d53e3.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-43f65212.js → messagebundle_en_US_sappsd-e370df7b.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-12f3828e.js → messagebundle_en_US_saprigi-adf0ddb3.js} +5 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-e9d14fae.js → messagebundle_en_US_saptrc-261422e2.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-357e1c36.js → messagebundle_es-ec258b44.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-8e0d2258.js → messagebundle_es_MX-5f113e73.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-5a1ea785.js → messagebundle_et-901c732b.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-25a76e5c.js → messagebundle_fi-0a2a6323.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-48f2bd02.js → messagebundle_fr-5df8899a.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-6e11af7d.js → messagebundle_fr_CA-0de6a568.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-b8e55814.js → messagebundle_hi-13e67957.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-b2f08f08.js → messagebundle_hr-93fbc1d1.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-81e9b34e.js → messagebundle_hu-dd94c35e.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-98262baf.js → messagebundle_it-0c46ce25.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-29c5b67e.js → messagebundle_iw-946df0a2.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-16deb9b7.js → messagebundle_ja-9cb333bb.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-bc7929b4.js → messagebundle_kk-239d7820.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-331e5063.js → messagebundle_ko-6f09e984.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-5708d85e.js → messagebundle_lt-2d4f9935.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-ce9a2b90.js → messagebundle_lv-d73bf0c0.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-b991460e.js → messagebundle_ms-9b4b2929.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-89ee9f6c.js → messagebundle_nl-55193168.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-1db10706.js → messagebundle_no-7f4a6832.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-49ee2166.js → messagebundle_pl-89c36a34.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-e1f22029.js → messagebundle_pt-b87f9645.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-19024d29.js → messagebundle_pt_PT-0e8230b0.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-9e2d0cd1.js → messagebundle_ro-83e7f44d.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-9f439834.js → messagebundle_ru-befd37d0.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-3fe24f0e.js → messagebundle_sh-4edec182.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-275cf4ec.js → messagebundle_sk-29160489.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-f774c011.js → messagebundle_sl-fd9ba370.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-716ad2e9.js → messagebundle_sv-57bfda52.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-503e18e9.js → messagebundle_th-184c45a0.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-1db67daa.js → messagebundle_tr-d5781fbb.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-58f2adad.js → messagebundle_uk-e49bb47f.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-f523cd98.js → messagebundle_vi-ce27847a.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-761506cb.js → messagebundle_zh_CN-bdbfb1bd.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-591c0661.js → messagebundle_zh_TW-ca1de535.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-09f8e92d.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-19666884.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-8e7c6ad9.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-cb713657.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dd8f2f47.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e3a31f8e.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e44b2b84.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/popup-utils/OpenedPopupsRegistry.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/popup-utils/PopoverRegistry.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/types/{AvatarFitType.js → BreadcrumbsDesign.js} +7 -7
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsSeparatorStyle.js +24 -0
- package/src/sap/ui/webc/main/thirdparty/types/ButtonDesign.js +1 -0
- package/ui5.yaml +1 -1
- package/src/sap/ui/webc/main/DurationPicker.js +0 -271
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-39cac16d.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-4ca42a34.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-6fc1faf3.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-94dc708f.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-cb1a26d8.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-d2d877b5.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e914e4ca.js +0 -9
|
@@ -1,16 +1,7 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<li id="${litRender.ifDefined(context._id)}" role="separator" style="list-style-type: none;"></li>`;
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<li id="${ifDefined__default(context._id)}" role="separator" style="list-style-type: none;"></li>`; };
|
|
8
|
-
const main = (context, tags, suffix) => {
|
|
9
|
-
litRender.setTags(tags);
|
|
10
|
-
litRender.setSuffix(suffix);
|
|
11
|
-
return block0(context);
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
return main;
|
|
5
|
+
return block0;
|
|
15
6
|
|
|
16
7
|
});
|
|
@@ -1,16 +1,7 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<div id="${litRender.ifDefined(context._id)}" class="ui5-tab-root"><slot></slot></div>`;
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<div id="${ifDefined__default(context._id)}" class="ui5-tab-root"><slot></slot></div>`; };
|
|
8
|
-
const main = (context, tags, suffix) => {
|
|
9
|
-
litRender.setTags(tags);
|
|
10
|
-
litRender.setSuffix(suffix);
|
|
11
|
-
return block0(context);
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
return main;
|
|
5
|
+
return block0;
|
|
15
6
|
|
|
16
7
|
});
|
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
const block0 = (context) =>
|
|
4
|
-
const main = (context, tags, suffix) => {
|
|
5
|
-
litRender.setTags(tags);
|
|
6
|
-
litRender.setSuffix(suffix);
|
|
7
|
-
return block0();
|
|
8
|
-
};
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<td tabindex="-1" part="cell" role="cell"><slot></slot></td>`;
|
|
9
4
|
|
|
10
|
-
return
|
|
5
|
+
return block0;
|
|
11
6
|
|
|
12
7
|
});
|
|
@@ -1,16 +1,7 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<th scope="col" part="column" role="columnheader" dir="${litRender.ifDefined(context.effectiveDir)}"><slot></slot></th>`;
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<th scope="col" part="column" role="columnheader" dir="${ifDefined__default(context.effectiveDir)}"><slot></slot></th>`; };
|
|
8
|
-
const main = (context, tags, suffix) => {
|
|
9
|
-
litRender.setTags(tags);
|
|
10
|
-
litRender.setSuffix(suffix);
|
|
11
|
-
return block0(context);
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
return main;
|
|
5
|
+
return block0;
|
|
15
6
|
|
|
16
7
|
});
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<tr class="ui5-table-group-row-root" part="group-row" role="row" aria-label=${litRender.ifDefined(context.ariaLabelText)} tabindex="${litRender.ifDefined(context._tabIndex)}" dir="${litRender.ifDefined(context.effectiveDir)}"><td colspan=${litRender.ifDefined(context.colSpan)}><slot></slot></td></tr>`;
|
|
4
|
+
|
|
5
|
+
return block0;
|
|
6
|
+
|
|
7
|
+
});
|
|
@@ -1,24 +1,15 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
const block7 = (item, index, context) => { return litRender.html`<tr part="popin-row" role="row" class="${ifDefined__default(item.classes)}" @click="${context._onrowclick}" @keydown="${context._onkeydown}" @keyup="${context._onkeyup}"><td colspan="${ifDefined__default(context.visibleCellsCount)}" role="cell">${ item.popinText ? block8(item) : undefined }<div><slot name="${ifDefined__default(item.cell._individualSlot)}"></slot></div></td></tr>`; };
|
|
15
|
-
const block8 = (item, index, context) => { return litRender.html`<span class="ui5-table-row-popin-title">${ifDefined__default(item.popinText)}:</span>`; };
|
|
16
|
-
const main = (context, tags, suffix) => {
|
|
17
|
-
litRender.setTags(tags);
|
|
18
|
-
litRender.setSuffix(suffix);
|
|
19
|
-
return block0(context);
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
return main;
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<tr class="ui5-table-row-root" tabindex="${litRender.ifDefined(context._tabIndex)}" @focusin="${context._onfocusin}" @click="${context._onrowclick}" @keydown="${context._onkeydown}" @keyup="${context._onkeyup}" @mouseup="${context._onmouseup}" @touchstart="${context._ontouchstart}" @touchend="${context._ontouchend}" aria-label="${litRender.ifDefined(context.ariaLabelText)}" aria-selected="${litRender.ifDefined(context.selected)}" data-sap-focus-ref part="row" role="row">${ context.isMultiSelect ? block1(context, tags, suffix) : undefined }${ context.shouldPopin ? block2(context) : block4(context) }</tr>${ context.shouldPopin ? block6(context) : undefined } `;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<td class="ui5-table-multi-select-cell" aria-hidden="true" role="presentation"><${litRender.scopeTag("ui5-checkbox", tags, suffix)} class="ui5-multi-select-checkbox" ?checked="${context.selected}" aria-label="${litRender.ifDefined(context.ariaLabelRowSelection)}" @ui5-change="${litRender.ifDefined(context._handleSelection)}"></${litRender.scopeTag("ui5-checkbox", tags, suffix)}></td>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`${ litRender.repeat(context.visibleCells, (item, index) => item._id || index, (item, index) => block3(item)) }`;
|
|
6
|
+
const block3 = (item, index, context, tags, suffix) => litRender.html`<slot name="${litRender.ifDefined(item._individualSlot)}"></slot>`;
|
|
7
|
+
const block4 = (context, tags, suffix) => litRender.html`${ litRender.repeat(context.cells, (item, index) => item._id || index, (item, index) => block5(item)) }`;
|
|
8
|
+
const block5 = (item, index, context, tags, suffix) => litRender.html`<slot name="${litRender.ifDefined(item._individualSlot)}"></slot>`;
|
|
9
|
+
const block6 = (context, tags, suffix) => litRender.html`${ litRender.repeat(context.popinCells, (item, index) => item._id || index, (item, index) => block7(item, index, context)) }`;
|
|
10
|
+
const block7 = (item, index, context, tags, suffix) => litRender.html`<tr part="popin-row" role="row" class="${litRender.ifDefined(item.classes)}" @click="${context._onrowclick}" @keydown="${context._onkeydown}" @keyup="${context._onkeyup}"><td colspan="${litRender.ifDefined(context.visibleCellsCount)}" role="cell">${ item.popinText ? block8(item) : undefined }<div><slot name="${litRender.ifDefined(item.cell._individualSlot)}"></slot></div></td></tr>`;
|
|
11
|
+
const block8 = (item, index, context, tags, suffix) => litRender.html`<span class="ui5-table-row-popin-title">${litRender.ifDefined(item.popinText)}:</span>`;
|
|
12
|
+
|
|
13
|
+
return block0;
|
|
23
14
|
|
|
24
15
|
});
|
|
@@ -1,25 +1,16 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<div class="ui5-table-root">${ context.busy ? block1(context, tags, suffix) : undefined }<table border="0" cellspacing="0" cellpadding="0" @keydown="${context._onkeydown}" role="table"><thead><tr id="${litRender.ifDefined(context._columnHeader.id)}" role="row" class="ui5-table-header-row" aria-label="${litRender.ifDefined(context.ariaLabelText)}" tabindex="${litRender.ifDefined(context._columnHeader._tabIndex)}" style="height: 48px" @click="${context._onColumnHeaderClick}">${ context.isMultiSelect ? block2(context, tags, suffix) : undefined }${ litRender.repeat(context.visibleColumns, (item, index) => item._id || index, (item, index) => block3(item)) }</tr></thead><tbody>${ litRender.repeat(context.rows, (item, index) => item._id || index, (item, index) => block4(item)) }${ !context.rows.length ? block5(context) : undefined }${ context.growsWithButton ? block7(context) : undefined }${ context.growsOnScroll ? block9() : undefined }</tbody></table></div>`;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<div tabindex="-1" class="ui5-table-busy-row"><${litRender.scopeTag("ui5-busy-indicator", tags, suffix)} delay="${litRender.ifDefined(context.busyDelay)}" class="ui5-table-busy-ind" style="${litRender.styleMap(context.styles.busy)}" active size="Medium"></${litRender.scopeTag("ui5-busy-indicator", tags, suffix)}></div>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`<th class="ui5-table-select-all-column" role="presentation" aria-hidden="true"><${litRender.scopeTag("ui5-checkbox", tags, suffix)} class="ui5-table-select-all-checkbox" ?checked="${context._allRowsSelected}" @ui5-change="${litRender.ifDefined(context._selectAll)}" aria-label="${litRender.ifDefined(context.ariaLabelSelectAllText)}"></${litRender.scopeTag("ui5-checkbox", tags, suffix)}></th>`;
|
|
6
|
+
const block3 = (item, index, context, tags, suffix) => litRender.html`<slot name="${litRender.ifDefined(item._individualSlot)}"></slot>`;
|
|
7
|
+
const block4 = (item, index, context, tags, suffix) => litRender.html`<slot name="${litRender.ifDefined(item._individualSlot)}"></slot>`;
|
|
8
|
+
const block5 = (context, tags, suffix) => litRender.html`${ !context.hideNoData ? block6(context) : undefined }`;
|
|
9
|
+
const block6 = (context, tags, suffix) => litRender.html`<tr class="ui5-table-no-data-row-root" role="row"><td colspan="${litRender.ifDefined(context.visibleColumnsCount)}" role="cell"><div class="ui5-table-no-data-row"><span>${litRender.ifDefined(context.noDataText)}</span></div></td></tr>`;
|
|
10
|
+
const block7 = (context, tags, suffix) => litRender.html`<tr><td colspan="${litRender.ifDefined(context.visibleColumnsCount)}"><div growing-button><div tabindex="0" role="button" aria-labelledby="${litRender.ifDefined(context.loadMoreAriaLabelledBy)}" ?active="${context._loadMoreActive}" @click="${context._onLoadMoreClick}" @keydown="${context._onLoadMoreKeydown}" @keyup="${context._onLoadMoreKeyup}" growing-button-inner><span id="${litRender.ifDefined(context._id)}-growingButton-text" growing-button-text>${litRender.ifDefined(context._growingButtonText)}</span>${ context.growingButtonSubtext ? block8(context) : undefined }</div></div></td></tr>`;
|
|
11
|
+
const block8 = (context, tags, suffix) => litRender.html`<span id="${litRender.ifDefined(context._id)}-growingButton-subtext" growing-button-subtext>${litRender.ifDefined(context.growingButtonSubtext)}</span>`;
|
|
12
|
+
const block9 = (context, tags, suffix) => litRender.html`<tr tabindex="-1" class="ui5-table-end-row"><td tabindex="-1"><span tabindex="-1" aria-hidden="true" class="ui5-table-end-marker"></span></td></tr>`;
|
|
4
13
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<div class="ui5-table-root">${ context.busy ? block1(context) : undefined }<table border="0" cellspacing="0" cellpadding="0" @keydown="${context._onkeydown}" role="table"><thead><tr id="${ifDefined__default(context._columnHeader.id)}" role="row" class="ui5-table-header-row" aria-label="${ifDefined__default(context.ariaLabelText)}" tabindex="${ifDefined__default(context._columnHeader._tabIndex)}" style="height: 48px" @click="${context._onColumnHeaderClick}">${ context.isMultiSelect ? block2(context) : undefined }${ litRender.repeat(context.visibleColumns, (item, index) => item._id || index, (item, index) => block3(item)) }</tr></thead><tbody>${ litRender.repeat(context.rows, (item, index) => item._id || index, (item, index) => block4(item)) }${ !context.rows.length ? block5(context) : undefined }${ context.growsWithButton ? block7(context) : undefined }${ context.growsOnScroll ? block9() : undefined }</tbody></table></div>`; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<div tabindex="-1" class="ui5-table-busy-row"><ui5-busy-indicator class="ui5-table-busy-ind" style="${litRender.styleMap(context.styles.busy)}" active size="Medium"></ui5-busy-indicator></div>`; };
|
|
9
|
-
const block2 = (context) => { return litRender.html`<th class="ui5-table-select-all-column" role="presentation" aria-hidden="true"><ui5-checkbox class="ui5-table-select-all-checkbox" ?checked="${context._allRowsSelected}" @ui5-change="${ifDefined__default(context._selectAll)}" aria-label="${ifDefined__default(context.ariaLabelSelectAllText)}"></ui5-checkbox></th>`; };
|
|
10
|
-
const block3 = (item, index, context) => { return litRender.html`<slot name="${ifDefined__default(item._individualSlot)}"></slot>`; };
|
|
11
|
-
const block4 = (item, index, context) => { return litRender.html`<slot name="${ifDefined__default(item._individualSlot)}"></slot>`; };
|
|
12
|
-
const block5 = (context) => { return litRender.html`${ !context.hideNoData ? block6(context) : undefined }`; };
|
|
13
|
-
const block6 = (context) => { return litRender.html`<tr class="ui5-table-no-data-row-root" role="row"><td colspan="${ifDefined__default(context.visibleColumnsCount)}" role="cell"><div class="ui5-table-no-data-row"><span>${ifDefined__default(context.noDataText)}</span></div></td></tr>`; };
|
|
14
|
-
const block7 = (context) => { return litRender.html`<tr><td colspan="${ifDefined__default(context.visibleColumnsCount)}"><div growing-button><div tabindex="0" role="button" aria-labelledby="${ifDefined__default(context.loadMoreAriaLabelledBy)}" ?active="${context._loadMoreActive}" @click="${context._onLoadMoreClick}" @keydown="${context._onLoadMoreKeydown}" @keyup="${context._onLoadMoreKeyup}" growing-button-inner><span id="${ifDefined__default(context._id)}-growingButton-text" growing-button-text>${ifDefined__default(context._growingButtonText)}</span>${ context.growingButtonSubtext ? block8(context) : undefined }</div></div></td></tr>`; };
|
|
15
|
-
const block8 = (context) => { return litRender.html`<span id="${ifDefined__default(context._id)}-growingButton-subtext" growing-button-subtext>${ifDefined__default(context.growingButtonSubtext)}</span>`; };
|
|
16
|
-
const block9 = (context) => { return litRender.html`<tr tabindex="-1" class="ui5-table-end-row"><td tabindex="-1"><span tabindex="-1" aria-hidden="true" class="ui5-table-end-marker"></span></td></tr>`; };
|
|
17
|
-
const main = (context, tags, suffix) => {
|
|
18
|
-
litRender.setTags(tags);
|
|
19
|
-
litRender.setSuffix(suffix);
|
|
20
|
-
return block0(context);
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
return main;
|
|
14
|
+
return block0;
|
|
24
15
|
|
|
25
16
|
});
|
|
@@ -1,20 +1,11 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`${ context.displayValueStateMessagePopover ? block1(context, tags, suffix) : undefined }`;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-popover", tags, suffix)} skip-registry-update prevent-focus-restore no-padding hide-arrow _disable-initial-focus class="ui5-valuestatemessage-popover" style="${litRender.styleMap(context.styles.valueStateMsgPopover)}" placement-type="Bottom" horizontal-align="Left"><div slot="header" class="ui5-valuestatemessage-root ${litRender.classMap(context.classes.valueStateMsg)}">${ context.hasCustomValueState ? block2(context) : block4(context) }</div></${litRender.scopeTag("ui5-popover", tags, suffix)}>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`${ litRender.repeat(context.valueStateMessageText, (item, index) => item._id || index, (item, index) => block3(item)) }`;
|
|
6
|
+
const block3 = (item, index, context, tags, suffix) => litRender.html`${litRender.ifDefined(item)}`;
|
|
7
|
+
const block4 = (context, tags, suffix) => litRender.html`${litRender.ifDefined(context.valueStateText)}`;
|
|
4
8
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`${ context.displayValueStateMessagePopover ? block1(context) : undefined }`; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<ui5-popover skip-registry-update prevent-focus-restore no-padding hide-arrow _disable-initial-focus class="ui5-valuestatemessage-popover" style="${litRender.styleMap(context.styles.valueStateMsgPopover)}" placement-type="Bottom" horizontal-align="Left"><div slot="header" class="ui5-valuestatemessage-root ${litRender.classMap(context.classes.valueStateMsg)}">${ context.hasCustomValueState ? block2(context) : block4(context) }</div></ui5-popover>`; };
|
|
9
|
-
const block2 = (context) => { return litRender.html`${ litRender.repeat(context.valueStateMessageText, (item, index) => item._id || index, (item, index) => block3(item)) }`; };
|
|
10
|
-
const block3 = (item, index, context) => { return litRender.html`${ifDefined__default(item)}`; };
|
|
11
|
-
const block4 = (context) => { return litRender.html`${ifDefined__default(context.valueStateText)}`; };
|
|
12
|
-
const main = (context, tags, suffix) => {
|
|
13
|
-
litRender.setTags(tags);
|
|
14
|
-
litRender.setSuffix(suffix);
|
|
15
|
-
return block0(context);
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
return main;
|
|
9
|
+
return block0;
|
|
19
10
|
|
|
20
11
|
});
|
|
@@ -1,20 +1,11 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<div class="ui5-textarea-root" style="${litRender.styleMap(context.styles.main)}" ?aria-invalid="${context.ariaInvalid}" @focusin="${context._onfocusin}" @focusout="${context._onfocusout}">${ context.growing ? block1(context) : undefined }<textarea id="${litRender.ifDefined(context._id)}-inner" class="ui5-textarea-inner" placeholder="${litRender.ifDefined(context.placeholder)}" ?disabled="${context.disabled}" ?readonly="${context.readonly}" aria-label="${litRender.ifDefined(context.ariaLabelText)}" aria-describedby="${litRender.ifDefined(context.ariaDescribedBy)}" aria-required="${litRender.ifDefined(context.required)}" maxlength="${litRender.ifDefined(context._exceededTextProps.calcedMaxLength)}" .value="${litRender.ifDefined(context.value)}" @input="${context._oninput}" @change="${context._onchange}" @keyup="${context._onkeyup}" @keydown="${context._onkeydown}" data-sap-focus-ref part="textarea"></textarea>${ context.showExceededText ? block3(context) : undefined }${ context.hasValueState ? block4(context) : undefined }<slot name="formSupport"></slot></div> `;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<div id="${litRender.ifDefined(context._id)}-mirror" style="${litRender.styleMap(context.styles.mirror)}" class="ui5-textarea-mirror" aria-hidden="true">${ litRender.repeat(context._mirrorText, (item, index) => item._id || index, (item, index) => block2(item)) }</div>`;
|
|
5
|
+
const block2 = (item, index, context, tags, suffix) => litRender.html`${litRender.ifDefined(item.text)}<br />`;
|
|
6
|
+
const block3 = (context, tags, suffix) => litRender.html`<span class="ui5-textarea-exceeded-text">${litRender.ifDefined(context._exceededTextProps.exceededText)}</span>`;
|
|
7
|
+
const block4 = (context, tags, suffix) => litRender.html`<span id="${litRender.ifDefined(context._id)}-valueStateDesc" class="ui5-hidden-text">${litRender.ifDefined(context.ariaValueStateHiddenText)}</span>`;
|
|
4
8
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<div class="ui5-textarea-root" style="${litRender.styleMap(context.styles.main)}" ?aria-invalid="${context.ariaInvalid}" @focusin="${context._onfocusin}" @focusout="${context._onfocusout}">${ context.growing ? block1(context) : undefined }<textarea id="${ifDefined__default(context._id)}-inner" class="ui5-textarea-inner" placeholder="${ifDefined__default(context.placeholder)}" ?disabled="${context.disabled}" ?readonly="${context.readonly}" aria-label="${ifDefined__default(context.ariaLabelText)}" aria-describedby="${ifDefined__default(context.ariaDescribedBy)}" aria-required="${ifDefined__default(context.required)}" maxlength="${ifDefined__default(context._exceededTextProps.calcedMaxLength)}" .value="${ifDefined__default(context.value)}" @input="${context._oninput}" @change="${context._onchange}" @keyup="${context._onkeyup}" @keydown="${context._onkeydown}" data-sap-focus-ref part="textarea"></textarea>${ context.showExceededText ? block3(context) : undefined }${ context.hasValueState ? block4(context) : undefined }<slot name="formSupport"></slot></div> `; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<div id="${ifDefined__default(context._id)}-mirror" style="${litRender.styleMap(context.styles.mirror)}" class="ui5-textarea-mirror" aria-hidden="true">${ litRender.repeat(context._mirrorText, (item, index) => item._id || index, (item, index) => block2(item)) }</div>`; };
|
|
9
|
-
const block2 = (item, index, context) => { return litRender.html`${ifDefined__default(item.text)}<br />`; };
|
|
10
|
-
const block3 = (context) => { return litRender.html`<span class="ui5-textarea-exceeded-text">${ifDefined__default(context._exceededTextProps.exceededText)}</span>`; };
|
|
11
|
-
const block4 = (context) => { return litRender.html`<span id="${ifDefined__default(context._id)}-valueStateDesc" class="ui5-hidden-text">${ifDefined__default(context.ariaValueStateHiddenText)}</span>`; };
|
|
12
|
-
const main = (context, tags, suffix) => {
|
|
13
|
-
litRender.setTags(tags);
|
|
14
|
-
litRender.setSuffix(suffix);
|
|
15
|
-
return block0(context);
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
return main;
|
|
9
|
+
return block0;
|
|
19
10
|
|
|
20
11
|
});
|
package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js
CHANGED
|
@@ -1,16 +1,7 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-responsive-popover", tags, suffix)} id="${litRender.ifDefined(context._id)}-responsive-popover" class="ui5-time-picker-popover" placement-type="Bottom" horizontal-align="Left" allow-target-overlap _hide-header hide-arrow no-stretch stay-open-on-scroll @ui5-after-close="${litRender.ifDefined(context.onResponsivePopoverAfterClose)}" @wheel="${context._handleWheel}"><${litRender.scopeTag("ui5-time-selection", tags, suffix)} id="${litRender.ifDefined(context._id)}-time-sel" value="${litRender.ifDefined(context._timeSelectionValue)}" format-pattern="${litRender.ifDefined(context._formatPattern)}" .hideHours="${litRender.ifDefined(context.hideHours)}" .hideMinutes="${litRender.ifDefined(context.hideMinutes)}" .hideSeconds="${litRender.ifDefined(context.hideSeconds)}" .minutesStep="${litRender.ifDefined(context.minutesStep)}" .secondsStep="${litRender.ifDefined(context.secondsStep)}" .maxHours="${litRender.ifDefined(context.maxHours)}" .maxMinutes="${litRender.ifDefined(context.maxMinutes)}" .maxSeconds="${litRender.ifDefined(context.maxSeconds)}" @ui5-change="${litRender.ifDefined(context.onTimeSelectionChange)}"></${litRender.scopeTag("ui5-time-selection", tags, suffix)}><div slot="footer" class="ui5-time-picker-footer" @keydown=${context._onfooterkeydown}><${litRender.scopeTag("ui5-button", tags, suffix)} id="submit" design="Emphasized" @click="${context.submitPickers}">${litRender.ifDefined(context.submitButtonLabel)}</${litRender.scopeTag("ui5-button", tags, suffix)}><${litRender.scopeTag("ui5-button", tags, suffix)} id="close" design="Transparent" @click="${context.closePicker}">${litRender.ifDefined(context.cancelButtonLabel)}</${litRender.scopeTag("ui5-button", tags, suffix)}></div></${litRender.scopeTag("ui5-responsive-popover", tags, suffix)}>`;
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<ui5-responsive-popover id="${ifDefined__default(context._id)}-responsive-popover" class="ui5-time-picker-popover" placement-type="Bottom" horizontal-align="Left" allow-target-overlap _hide-header hide-arrow no-stretch stay-open-on-scroll @ui5-after-close="${ifDefined__default(context.onResponsivePopoverAfterClose)}" @wheel="${context._handleWheel}"><ui5-time-selection id="${ifDefined__default(context._id)}-time-sel" value="${ifDefined__default(context._timeSelectionValue)}" format-pattern="${ifDefined__default(context._formatPattern)}" .hideHours="${ifDefined__default(context.hideHours)}" .hideMinutes="${ifDefined__default(context.hideMinutes)}" .hideSeconds="${ifDefined__default(context.hideSeconds)}" .minutesStep="${ifDefined__default(context.minutesStep)}" .secondsStep="${ifDefined__default(context.secondsStep)}" .maxHours="${ifDefined__default(context.maxHours)}" .maxMinutes="${ifDefined__default(context.maxMinutes)}" .maxSeconds="${ifDefined__default(context.maxSeconds)}" @ui5-change="${ifDefined__default(context.onTimeSelectionChange)}"></ui5-time-selection><div slot="footer" class="ui5-time-picker-footer" @keydown=${context._onfooterkeydown}><ui5-button id="submit" design="Emphasized" @click="${context.submitPickers}">${ifDefined__default(context.submitButtonLabel)}</ui5-button><ui5-button id="close" design="Transparent" @click="${context.closePicker}">${ifDefined__default(context.cancelButtonLabel)}</ui5-button></div></ui5-responsive-popover>`; };
|
|
8
|
-
const main = (context, tags, suffix) => {
|
|
9
|
-
litRender.setTags(tags);
|
|
10
|
-
litRender.setSuffix(suffix);
|
|
11
|
-
return block0(context);
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
return main;
|
|
5
|
+
return block0;
|
|
15
6
|
|
|
16
7
|
});
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<div id="${litRender.ifDefined(context._id)}" class="ui5-time-picker-root" @keydown="${context._onkeydown}"><${litRender.scopeTag("ui5-input", tags, suffix)} id="${litRender.ifDefined(context._id)}-inner" value="${litRender.ifDefined(context.value)}" placeholder="${litRender.ifDefined(context._placeholder)}" ?disabled="${context.disabled}" ?readonly="${context.readonly}" value-state="${litRender.ifDefined(context.valueState)}" ._inputAccInfo="${litRender.ifDefined(context.accInfo)}" @click="${context._handleInputClick}" @ui5-change="${litRender.ifDefined(context._handleInputChange)}" @ui5-input="${litRender.ifDefined(context._handleInputLiveChange)}" class="ui5-time-picker-input">${ context.valueStateMessage.length ? block1() : undefined }${ !context.readonly ? block2(context, tags, suffix) : undefined }</${litRender.scopeTag("ui5-input", tags, suffix)}></div>`;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<slot name="valueStateMessage" slot="valueStateMessage"></slot>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-icon", tags, suffix)} slot="icon" name="${litRender.ifDefined(context.openIconName)}" tabindex="-1" show-tooltip @click="${context.togglePicker}" input-icon ?pressed="${context._isPickerOpen}" class="ui5-time-picker-input-icon-button"></${litRender.scopeTag("ui5-icon", tags, suffix)}>`;
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<div id="${ifDefined__default(context._id)}" class="ui5-time-picker-root" @keydown="${context._onkeydown}"><ui5-input id="${ifDefined__default(context._id)}-inner" value="${ifDefined__default(context.value)}" placeholder="${ifDefined__default(context._placeholder)}" ?disabled="${context.disabled}" ?readonly="${context.readonly}" value-state="${ifDefined__default(context.valueState)}" ._inputAccInfo="${ifDefined__default(context.accInfo)}" @click="${context._handleInputClick}" @ui5-change="${ifDefined__default(context._handleInputChange)}" @ui5-input="${ifDefined__default(context._handleInputLiveChange)}" class="ui5-time-picker-input">${ context.valueStateMessage.length ? block1() : undefined }${ !context.readonly ? block2(context) : undefined }</ui5-input></div>`; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<slot name="valueStateMessage" slot="valueStateMessage"></slot>`; };
|
|
9
|
-
const block2 = (context) => { return litRender.html`<ui5-icon slot="icon" name="${ifDefined__default(context.openIconName)}" tabindex="-1" show-tooltip @click="${context.togglePicker}" input-icon ?pressed="${context._isPickerOpen}" class="ui5-time-picker-input-icon-button"></ui5-icon>`; };
|
|
10
|
-
const main = (context, tags, suffix) => {
|
|
11
|
-
litRender.setTags(tags);
|
|
12
|
-
litRender.setSuffix(suffix);
|
|
13
|
-
return block0(context);
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
return main;
|
|
7
|
+
return block0;
|
|
17
8
|
|
|
18
9
|
});
|
|
@@ -1,20 +1,11 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<div class="${litRender.classMap(context.classes.root)}" tabindex="-1" @keydown=${context._onkeydown} @focusin="${context._onfocusin}" @focusout="${context._onfocusout}">${ context._hasHoursSlider ? block1(context, tags, suffix) : undefined }${ context._hasMinutesSlider ? block2(context, tags, suffix) : undefined }${ context._hasSecondsSlider ? block3(context, tags, suffix) : undefined }${ context._hasPeriodsSlider ? block4(context, tags, suffix) : undefined }</div>`;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-wheelslider", tags, suffix)} label = "${litRender.ifDefined(context.hoursSliderTitle)}" ._items="${litRender.ifDefined(context.hoursArray)}" data-sap-focus-ref ?expanded="${context._hoursSliderFocused}" value="${litRender.ifDefined(context._hours)}" @ui5-select="${litRender.ifDefined(context.onHoursChange)}" @click="${context.selectSlider}" @focusin="${context.selectSlider}" data-sap-slider="hours" ?cyclic="${context._isCyclic}"></${litRender.scopeTag("ui5-wheelslider", tags, suffix)}>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-wheelslider", tags, suffix)} label = "${litRender.ifDefined(context.minutesSliderTitle)}" ._items="${litRender.ifDefined(context.minutesArray)}" ?expanded="${context._minutesSliderFocused}" value="${litRender.ifDefined(context._minutes)}" @ui5-select="${litRender.ifDefined(context.onMinutesChange)}" @click="${context.selectSlider}" @focusin="${context.selectSlider}" data-sap-slider="minutes" ?cyclic="${context._isCyclic}"></${litRender.scopeTag("ui5-wheelslider", tags, suffix)}>`;
|
|
6
|
+
const block3 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-wheelslider", tags, suffix)} label = "${litRender.ifDefined(context.secondsSliderTitle)}" ._items="${litRender.ifDefined(context.secondsArray)}" ?expanded="${context._secondsSliderFocused}" value="${litRender.ifDefined(context._seconds)}" @ui5-select="${litRender.ifDefined(context.onSecondsChange)}" @click="${context.selectSlider}" @focusin="${context.selectSlider}" data-sap-slider="seconds" ?cyclic="${context._isCyclic}"></${litRender.scopeTag("ui5-wheelslider", tags, suffix)}>`;
|
|
7
|
+
const block4 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-wheelslider", tags, suffix)} label = "${litRender.ifDefined(context.periodSliderTitle)}" ._items="${litRender.ifDefined(context.periodsArray)}" ?expanded="${context._periodSliderFocused}" value="${litRender.ifDefined(context._period)}" @ui5-select="${litRender.ifDefined(context.onPeriodChange)}" @click="${context.selectSlider}" @focusin="${context.selectSlider}" data-sap-slider="period"></${litRender.scopeTag("ui5-wheelslider", tags, suffix)}>`;
|
|
4
8
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<div class="${litRender.classMap(context.classes.root)}" tabindex="-1" @keydown=${context._onkeydown} @focusin="${context._onfocusin}" @focusout="${context._onfocusout}">${ context._hasHoursSlider ? block1(context) : undefined }${ context._hasMinutesSlider ? block2(context) : undefined }${ context._hasSecondsSlider ? block3(context) : undefined }${ context._hasPeriodsSlider ? block4(context) : undefined }</div>`; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<ui5-wheelslider label = "${ifDefined__default(context.hoursSliderTitle)}" ._items="${ifDefined__default(context.hoursArray)}" data-sap-focus-ref ?expanded="${context._hoursSliderFocused}" value="${ifDefined__default(context._hours)}" @ui5-select="${ifDefined__default(context.onHoursChange)}" @click="${context.selectSlider}" @focusin="${context.selectSlider}" data-sap-slider="hours" ?cyclic="${context._isCyclic}"></ui5-wheelslider>`; };
|
|
9
|
-
const block2 = (context) => { return litRender.html`<ui5-wheelslider label = "${ifDefined__default(context.minutesSliderTitle)}" ._items="${ifDefined__default(context.minutesArray)}" ?expanded="${context._minutesSliderFocused}" value="${ifDefined__default(context._minutes)}" @ui5-select="${ifDefined__default(context.onMinutesChange)}" @click="${context.selectSlider}" @focusin="${context.selectSlider}" data-sap-slider="minutes" ?cyclic="${context._isCyclic}"></ui5-wheelslider>`; };
|
|
10
|
-
const block3 = (context) => { return litRender.html`<ui5-wheelslider label = "${ifDefined__default(context.secondsSliderTitle)}" ._items="${ifDefined__default(context.secondsArray)}" ?expanded="${context._secondsSliderFocused}" value="${ifDefined__default(context._seconds)}" @ui5-select="${ifDefined__default(context.onSecondsChange)}" @click="${context.selectSlider}" @focusin="${context.selectSlider}" data-sap-slider="seconds" ?cyclic="${context._isCyclic}"></ui5-wheelslider>`; };
|
|
11
|
-
const block4 = (context) => { return litRender.html`<ui5-wheelslider label = "${ifDefined__default(context.periodSliderTitle)}" ._items="${ifDefined__default(context.periodsArray)}" ?expanded="${context._periodSliderFocused}" value="${ifDefined__default(context._period)}" @ui5-select="${ifDefined__default(context.onPeriodChange)}" @click="${context.selectSlider}" @focusin="${context.selectSlider}" data-sap-slider="period"></ui5-wheelslider>`; };
|
|
12
|
-
const main = (context, tags, suffix) => {
|
|
13
|
-
litRender.setTags(tags);
|
|
14
|
-
litRender.setSuffix(suffix);
|
|
15
|
-
return block0(context);
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
return main;
|
|
9
|
+
return block0;
|
|
19
10
|
|
|
20
11
|
});
|
|
@@ -1,22 +1,13 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`${ context.h1 ? block1(context) : undefined }${ context.h2 ? block2(context) : undefined }${ context.h3 ? block3(context) : undefined }${ context.h4 ? block4(context) : undefined }${ context.h5 ? block5(context) : undefined }${ context.h6 ? block6(context) : undefined }`;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<h1 class="ui5-title-root"><span id="${litRender.ifDefined(context._id)}-inner"><slot></slot></span></h1>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`<h2 class="ui5-title-root"><span id="${litRender.ifDefined(context._id)}-inner"><slot></slot></span></h2>`;
|
|
6
|
+
const block3 = (context, tags, suffix) => litRender.html`<h3 class="ui5-title-root"><span id="${litRender.ifDefined(context._id)}-inner"><slot></slot></span></h3>`;
|
|
7
|
+
const block4 = (context, tags, suffix) => litRender.html`<h4 class="ui5-title-root"><span id="${litRender.ifDefined(context._id)}-inner"><slot></slot></span></h4>`;
|
|
8
|
+
const block5 = (context, tags, suffix) => litRender.html`<h5 class="ui5-title-root"><span id="${litRender.ifDefined(context._id)}-inner"><slot></slot></span></h5>`;
|
|
9
|
+
const block6 = (context, tags, suffix) => litRender.html`<h6 class="ui5-title-root"><span id="${litRender.ifDefined(context._id)}-inner"><slot></slot></span></h6>`;
|
|
4
10
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`${ context.h1 ? block1(context) : undefined }${ context.h2 ? block2(context) : undefined }${ context.h3 ? block3(context) : undefined }${ context.h4 ? block4(context) : undefined }${ context.h5 ? block5(context) : undefined }${ context.h6 ? block6(context) : undefined }`; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<h1 class="ui5-title-root"><span id="${ifDefined__default(context._id)}-inner"><slot></slot></span></h1>`; };
|
|
9
|
-
const block2 = (context) => { return litRender.html`<h2 class="ui5-title-root"><span id="${ifDefined__default(context._id)}-inner"><slot></slot></span></h2>`; };
|
|
10
|
-
const block3 = (context) => { return litRender.html`<h3 class="ui5-title-root"><span id="${ifDefined__default(context._id)}-inner"><slot></slot></span></h3>`; };
|
|
11
|
-
const block4 = (context) => { return litRender.html`<h4 class="ui5-title-root"><span id="${ifDefined__default(context._id)}-inner"><slot></slot></span></h4>`; };
|
|
12
|
-
const block5 = (context) => { return litRender.html`<h5 class="ui5-title-root"><span id="${ifDefined__default(context._id)}-inner"><slot></slot></span></h5>`; };
|
|
13
|
-
const block6 = (context) => { return litRender.html`<h6 class="ui5-title-root"><span id="${ifDefined__default(context._id)}-inner"><slot></slot></span></h6>`; };
|
|
14
|
-
const main = (context, tags, suffix) => {
|
|
15
|
-
litRender.setTags(tags);
|
|
16
|
-
litRender.setSuffix(suffix);
|
|
17
|
-
return block0(context);
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
return main;
|
|
11
|
+
return block0;
|
|
21
12
|
|
|
22
13
|
});
|
|
@@ -1,16 +1,7 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<div class="ui5-toast-root" role="alert" style="${litRender.styleMap(context.styles.root)}" dir="${litRender.ifDefined(context.effectiveDir)}" @mouseover="${context._onmouseover}" @mouseleave="${context._onmouseleave}" @transitionend="${context._ontransitionend}"><bdi><slot></slot></bdi></div>`;
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<div class="ui5-toast-root" role="alert" style="${litRender.styleMap(context.styles.root)}" dir="${ifDefined__default(context.effectiveDir)}" @mouseover="${context._onmouseover}" @mouseleave="${context._onmouseleave}" @transitionend="${context._ontransitionend}"><bdi><slot></slot></bdi></div>`; };
|
|
8
|
-
const main = (context, tags, suffix) => {
|
|
9
|
-
litRender.setTags(tags);
|
|
10
|
-
litRender.setSuffix(suffix);
|
|
11
|
-
return block0(context);
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
return main;
|
|
5
|
+
return block0;
|
|
15
6
|
|
|
16
7
|
});
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<button type="button" class="ui5-button-root" ?disabled="${context.disabled}" data-sap-focus-ref aria-pressed="${litRender.ifDefined(context.pressed)}" dir="${litRender.ifDefined(context.effectiveDir)}" @focusout=${context._onfocusout} @focusin=${context._onfocusin} @click=${context._onclick} @mousedown=${context._onmousedown} @mouseup=${context._onmouseup} @keydown=${context._onkeydown} @keyup=${context._onkeyup} @touchstart="${context._ontouchstart}" @touchend="${context._ontouchend}" tabindex=${litRender.ifDefined(context.tabIndexValue)} aria-expanded="${litRender.ifDefined(context.accInfo.ariaExpanded)}" aria-controls="${litRender.ifDefined(context.accInfo.ariaControls)}" aria-haspopup="${litRender.ifDefined(context.accInfo.ariaHaspopup)}" aria-label="${litRender.ifDefined(context.accessibleName)}" title="${litRender.ifDefined(context.accInfo.title)}" part="button">${ context.icon ? block1(context, tags, suffix) : undefined }<span id="${litRender.ifDefined(context._id)}-content" class="ui5-button-text"><bdi><slot></slot></bdi></span>${ context.hasButtonType ? block2(context) : undefined }</button> `;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-icon", tags, suffix)} class="ui5-button-icon" name="${litRender.ifDefined(context.icon)}" part="icon" ?show-tooltip=${context.showIconTooltip}></${litRender.scopeTag("ui5-icon", tags, suffix)}>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`<span class="ui5-hidden-text">${litRender.ifDefined(context.buttonTypeText)}</span>`;
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<button type="button" class="ui5-button-root" ?disabled="${context.disabled}" data-sap-focus-ref aria-pressed="${ifDefined__default(context.pressed)}" dir="${ifDefined__default(context.effectiveDir)}" @focusout=${context._onfocusout} @focusin=${context._onfocusin} @click=${context._onclick} @mousedown=${context._onmousedown} @mouseup=${context._onmouseup} @keydown=${context._onkeydown} @keyup=${context._onkeyup} @touchstart="${context._ontouchstart}" @touchend="${context._ontouchend}" tabindex=${ifDefined__default(context.tabIndexValue)} aria-expanded="${ifDefined__default(context.accInfo.ariaExpanded)}" aria-controls="${ifDefined__default(context.accInfo.ariaControls)}" aria-haspopup="${ifDefined__default(context.accInfo.ariaHaspopup)}" aria-label="${ifDefined__default(context.ariaLabelText)}" title="${ifDefined__default(context.accInfo.title)}" part="button">${ context.icon ? block1(context) : undefined }<span id="${ifDefined__default(context._id)}-content" class="ui5-button-text"><bdi><slot></slot></bdi></span>${ context.hasButtonType ? block2(context) : undefined }</button> `; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<ui5-icon class="ui5-button-icon" name="${ifDefined__default(context.icon)}" part="icon" ?show-tooltip=${context.showIconTooltip}></ui5-icon>`; };
|
|
9
|
-
const block2 = (context) => { return litRender.html`<span class="ui5-hidden-text">${ifDefined__default(context.buttonTypeText)}</span>`; };
|
|
10
|
-
const main = (context, tags, suffix) => {
|
|
11
|
-
litRender.setTags(tags);
|
|
12
|
-
litRender.setSuffix(suffix);
|
|
13
|
-
return block0(context);
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
return main;
|
|
7
|
+
return block0;
|
|
17
8
|
|
|
18
9
|
});
|
|
@@ -1,19 +1,10 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<div tabindex="${litRender.ifDefined(context._tabIndex)}" @click="${context._handleSelect}" @keydown="${context._keydown}" class="ui5-token--wrapper" dir="${litRender.ifDefined(context.effectiveDir)}" role="option" aria-selected="${litRender.ifDefined(context.selected)}"><span class="ui5-token--text">${litRender.ifDefined(context.text)}</span>${ !context.readonly ? block1(context, tags, suffix) : undefined }</div>`;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<div class="ui5-token--icon" @click="${context._delete}">${ context.closeIcon.length ? block2() : block3(context, tags, suffix) }</div>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`<slot name="closeIcon"></slot>`;
|
|
6
|
+
const block3 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-icon", tags, suffix)} name="${litRender.ifDefined(context.iconURI)}" accessible-name="${litRender.ifDefined(context.tokenDeletableText)}" show-tooltip></${litRender.scopeTag("ui5-icon", tags, suffix)}>`;
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<div tabindex="${ifDefined__default(context._tabIndex)}" @click="${context._handleSelect}" @keydown="${context._keydown}" class="ui5-token--wrapper" dir="${ifDefined__default(context.effectiveDir)}" role="option" aria-selected="${ifDefined__default(context.selected)}"><span class="ui5-token--text">${ifDefined__default(context.text)}</span>${ !context.readonly ? block1(context) : undefined }</div>`; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<div class="ui5-token--icon" @click="${context._delete}">${ context.closeIcon.length ? block2() : block3(context) }</div>`; };
|
|
9
|
-
const block2 = (context) => { return litRender.html`<slot name="closeIcon"></slot>`; };
|
|
10
|
-
const block3 = (context) => { return litRender.html`<ui5-icon name="${ifDefined__default(context.iconURI)}" accessible-name="${ifDefined__default(context.tokenDeletableText)}" show-tooltip></ui5-icon>`; };
|
|
11
|
-
const main = (context, tags, suffix) => {
|
|
12
|
-
litRender.setTags(tags);
|
|
13
|
-
litRender.setSuffix(suffix);
|
|
14
|
-
return block0(context);
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
return main;
|
|
8
|
+
return block0;
|
|
18
9
|
|
|
19
10
|
});
|
|
@@ -1,21 +1,12 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-responsive-popover", tags, suffix)} tokenizer-popover="true" style=${litRender.styleMap(context.styles.popover)} header-text=${litRender.ifDefined(context.morePopoverTitle)} ?content-only-on-desktop="${context.hasValueState}" hide-arrow placement-type="Bottom" horizontal-align="Left">${ !context.hasValueState ? block1(context, tags, suffix) : undefined }<${litRender.scopeTag("ui5-list", tags, suffix)} class="ui5-tokenizer-list" mode="Delete" @ui5-item-delete=${litRender.ifDefined(context.itemDelete)}>${ litRender.repeat(context._tokens, (item, index) => item._id || index, (item, index) => block4(item, index, context, tags, suffix)) }</${litRender.scopeTag("ui5-list", tags, suffix)}>${ context._isPhone ? block5(context, tags, suffix) : undefined }</${litRender.scopeTag("ui5-responsive-popover", tags, suffix)}>`;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<div slot="header" class="ui5-responsive-popover-header" style="${litRender.styleMap(context.styles.popoverHeader)}">${ context._isPhone ? block2(context, tags, suffix) : undefined }<div class="${litRender.classMap(context.classes.popoverValueState)}" style="${litRender.styleMap(context.styles.popoverValueStateMessage)}">${ litRender.repeat(context.valueStateMessageText, (item, index) => item._id || index, (item, index) => block3(item)) }</div></div>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`<div class="row" style="${litRender.styleMap(context.styles.popoverHeaderTitle)}"><${litRender.scopeTag("ui5-title", tags, suffix)} level="H5" class="ui5-responsive-popover-header-text">Remove</${litRender.scopeTag("ui5-title", tags, suffix)}><${litRender.scopeTag("ui5-button", tags, suffix)} class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="${context.closeMorePopover}"></${litRender.scopeTag("ui5-button", tags, suffix)}></div>`;
|
|
6
|
+
const block3 = (item, index, context, tags, suffix) => litRender.html`${litRender.ifDefined(item)}`;
|
|
7
|
+
const block4 = (item, index, context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-li", tags, suffix)} .tokenRef=${litRender.ifDefined(item)}>${litRender.ifDefined(item.text)}</${litRender.scopeTag("ui5-li", tags, suffix)}>`;
|
|
8
|
+
const block5 = (context, tags, suffix) => litRender.html`<div slot="footer" class="ui5-responsive-popover-footer"><${litRender.scopeTag("ui5-button", tags, suffix)} design="Transparent" @click="${context.closeMorePopover}">OK</${litRender.scopeTag("ui5-button", tags, suffix)}></div>`;
|
|
4
9
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<ui5-responsive-popover tokenizer-popover="true" style=${litRender.styleMap(context.styles.popover)} header-text=${ifDefined__default(context.morePopoverTitle)} ?content-only-on-desktop="${context.hasValueState}" hide-arrow placement-type="Bottom" horizontal-align="Left">${ !context.hasValueState ? block1(context) : undefined }<ui5-list class="ui5-tokenizer-list" mode="Delete" @ui5-item-delete=${ifDefined__default(context.itemDelete)}>${ litRender.repeat(context._tokens, (item, index) => item._id || index, (item, index) => block4(item)) }</ui5-list>${ context._isPhone ? block5(context) : undefined }</ui5-responsive-popover>`; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<div slot="header" class="ui5-responsive-popover-header" style="${litRender.styleMap(context.styles.popoverHeader)}">${ context._isPhone ? block2(context) : undefined }<div class="${litRender.classMap(context.classes.popoverValueState)}" style="${litRender.styleMap(context.styles.popoverValueStateMessage)}">${ litRender.repeat(context.valueStateMessageText, (item, index) => item._id || index, (item, index) => block3(item)) }</div></div>`; };
|
|
9
|
-
const block2 = (context) => { return litRender.html`<div class="row" style="${litRender.styleMap(context.styles.popoverHeaderTitle)}"><ui5-title level="H5" class="ui5-responsive-popover-header-text">Remove</ui5-title><ui5-button class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="${context.closeMorePopover}"></ui5-button></div>`; };
|
|
10
|
-
const block3 = (item, index, context) => { return litRender.html`${ifDefined__default(item)}`; };
|
|
11
|
-
const block4 = (item, index, context) => { return litRender.html`<ui5-li .tokenRef=${ifDefined__default(item)}>${ifDefined__default(item.text)}</ui5-li>`; };
|
|
12
|
-
const block5 = (context) => { return litRender.html`<div slot="footer" class="ui5-responsive-popover-footer"><ui5-button design="Transparent" @click="${context.closeMorePopover}">OK</ui5-button></div>`; };
|
|
13
|
-
const main = (context, tags, suffix) => {
|
|
14
|
-
litRender.setTags(tags);
|
|
15
|
-
litRender.setSuffix(suffix);
|
|
16
|
-
return block0(context);
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
return main;
|
|
10
|
+
return block0;
|
|
20
11
|
|
|
21
12
|
});
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (litRender) { 'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const block0 = (context, tags, suffix) => litRender.html`<div dir="${litRender.ifDefined(context.effectiveDir)}" class="${litRender.classMap(context.classes.wrapper)}"><span id="${litRender.ifDefined(context._id)}-hiddenText" class="ui5-hidden-text">${litRender.ifDefined(context.tokenizerLabel)}</span><div class="${litRender.classMap(context.classes.content)}" @ui5-delete="${litRender.ifDefined(context._tokenDelete)}" @click="${context._click}" @mousedown="${context._onmousedown}" @keydown="${context._onkeydown}" role="listbox" aria-labelledby="${litRender.ifDefined(context._id)}-hiddenText">${ litRender.repeat(context.tokens, (item, index) => item._id || index, (item, index) => block1(item)) }</div>${ context.showNMore ? block2(context) : undefined }</div>`;
|
|
4
|
+
const block1 = (item, index, context, tags, suffix) => litRender.html`<slot name="${litRender.ifDefined(item._individualSlot)}"></slot>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`<span @click="${context._openOverflowPopover}" class="ui5-tokenizer-more-text">${litRender.ifDefined(context._nMoreText)}</span>`;
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<div dir="${ifDefined__default(context.effectiveDir)}" class="${litRender.classMap(context.classes.wrapper)}"><span id="${ifDefined__default(context._id)}-hiddenText" class="ui5-hidden-text">${ifDefined__default(context.tokenizerLabel)}</span><div class="${litRender.classMap(context.classes.content)}" @ui5-delete="${ifDefined__default(context._tokenDelete)}" @click="${context._click}" @mousedown="${context._onmousedown}" @keydown="${context._onkeydown}" role="listbox" aria-labelledby="${ifDefined__default(context._id)}-hiddenText">${ litRender.repeat(context.tokens, (item, index) => item._id || index, (item, index) => block1(item)) }</div>${ context.showNMore ? block2(context) : undefined }</div>`; };
|
|
8
|
-
const block1 = (item, index, context) => { return litRender.html`<slot name="${ifDefined__default(item._individualSlot)}"></slot>`; };
|
|
9
|
-
const block2 = (context) => { return litRender.html`<span @click="${context._openOverflowPopover}" class="ui5-tokenizer-more-text">${ifDefined__default(context._nMoreText)}</span>`; };
|
|
10
|
-
const main = (context, tags, suffix) => {
|
|
11
|
-
litRender.setTags(tags);
|
|
12
|
-
litRender.setSuffix(suffix);
|
|
13
|
-
return block0(context);
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
return main;
|
|
7
|
+
return block0;
|
|
17
8
|
|
|
18
9
|
});
|