@openui5/sap.ui.webc.main 1.94.0 → 1.97.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 +12 -12
- package/THIRDPARTY.txt +21 -17
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +17 -27
- 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 +14 -4
- package/src/sap/ui/webc/main/Calendar.js +15 -5
- package/src/sap/ui/webc/main/CalendarDate.js +1 -1
- package/src/sap/ui/webc/main/Card.js +20 -64
- 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 +7 -28
- package/src/sap/ui/webc/main/ColorPaletteItem.js +1 -1
- package/src/sap/ui/webc/main/ColorPalettePopover.js +112 -0
- package/src/sap/ui/webc/main/ColorPicker.js +6 -4
- package/src/sap/ui/webc/main/ComboBox.js +25 -20
- 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 +65 -7
- package/src/sap/ui/webc/main/DateRangePicker.js +68 -10
- package/src/sap/ui/webc/main/DateTimePicker.js +64 -8
- package/src/sap/ui/webc/main/Dialog.js +15 -12
- package/src/sap/ui/webc/main/FileUploader.js +2 -2
- 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 +27 -29
- package/src/sap/ui/webc/main/Label.js +2 -2
- package/src/sap/ui/webc/main/Link.js +13 -3
- package/src/sap/ui/webc/main/List.js +38 -3
- package/src/sap/ui/webc/main/MessageStrip.js +5 -3
- package/src/sap/ui/webc/main/MultiComboBox.js +13 -9
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/MultiInput.js +30 -30
- package/src/sap/ui/webc/main/Option.js +1 -1
- package/src/sap/ui/webc/main/Panel.js +16 -5
- package/src/sap/ui/webc/main/Popover.js +21 -8
- package/src/sap/ui/webc/main/ProgressIndicator.js +14 -1
- package/src/sap/ui/webc/main/RadioButton.js +28 -21
- package/src/sap/ui/webc/main/RangeSlider.js +21 -19
- package/src/sap/ui/webc/main/RatingIndicator.js +15 -6
- 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 +26 -22
- 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 +2 -12
- package/src/sap/ui/webc/main/Switch.js +8 -6
- 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 +5 -5
- package/src/sap/ui/webc/main/TextArea.js +26 -7
- package/src/sap/ui/webc/main/TimePicker.js +9 -5
- 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 +14 -4
- package/src/sap/ui/webc/main/Token.js +5 -3
- package/src/sap/ui/webc/main/Tree.js +29 -1
- package/src/sap/ui/webc/main/TreeItem.js +1 -1
- package/src/sap/ui/webc/main/library.js +123 -33
- package/src/sap/ui/webc/main/thirdparty/Assets.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +20 -26
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +21 -14
- package/src/sap/ui/webc/main/thirdparty/Badge.js +22 -11
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +334 -0
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +41 -0
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +32 -4
- package/src/sap/ui/webc/main/thirdparty/Button.js +5 -13
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +85 -6
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +50 -17
- package/src/sap/ui/webc/main/thirdparty/Card.js +15 -118
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +146 -0
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +97 -43
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +35 -34
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +174 -22
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +14 -7
- package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +110 -0
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +11 -7
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +215 -106
- package/src/sap/ui/webc/main/thirdparty/ComboBoxGroupItem.js +39 -0
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +5 -3
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +47 -17
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +17 -18
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +7 -7
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +31 -7
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +126 -34
- package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +15 -10
- package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +5 -8
- package/src/sap/ui/webc/main/thirdparty/Icon.js +31 -12
- package/src/sap/ui/webc/main/thirdparty/Input.js +85 -43
- package/src/sap/ui/webc/main/thirdparty/Interfaces.js +4 -0
- package/src/sap/ui/webc/main/thirdparty/Link.js +46 -9
- package/src/sap/ui/webc/main/thirdparty/List.js +52 -16
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +19 -8
- package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +2 -3
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +193 -62
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +1 -2
- package/src/sap/ui/webc/main/thirdparty/Panel.js +9 -7
- package/src/sap/ui/webc/main/thirdparty/Popover.js +59 -38
- package/src/sap/ui/webc/main/thirdparty/Popup.js +47 -27
- package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +8 -7
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +53 -23
- package/src/sap/ui/webc/main/thirdparty/RadioButtonGroup.js +31 -31
- package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +6 -7
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +7 -8
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +11 -26
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +66 -41
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +39 -0
- package/src/sap/ui/webc/main/thirdparty/Select.js +103 -66
- package/src/sap/ui/webc/main/thirdparty/Slider.js +2 -3
- package/src/sap/ui/webc/main/thirdparty/SliderBase.js +4 -9
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +12 -8
- 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/Switch.js +5 -6
- package/src/sap/ui/webc/main/thirdparty/Tab.js +12 -2
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +13 -6
- package/src/sap/ui/webc/main/thirdparty/Table.js +16 -7
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +88 -0
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +11 -9
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +14 -13
- package/src/sap/ui/webc/main/thirdparty/TimePicker.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +10 -7
- package/src/sap/ui/webc/main/thirdparty/TimeSelection.js +8 -9
- package/src/sap/ui/webc/main/thirdparty/Toast.js +5 -0
- package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +8 -1
- package/src/sap/ui/webc/main/thirdparty/Token.js +2 -6
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +13 -15
- package/src/sap/ui/webc/main/thirdparty/Tree.js +18 -0
- package/src/sap/ui/webc/main/thirdparty/TreeItem.js +3 -0
- package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +12 -15
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +6 -6
- package/src/sap/ui/webc/main/thirdparty/YearPicker.js +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/AvatarGroup.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/BreadcrumbsPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.ie11.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Carousel.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalette.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteStaticArea.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBoxPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateRangePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/FileUploader.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/GroupHeaderListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Icon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/InvisibleTextStyles.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Label.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Link.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popup.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupGlobal.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupStaticAreaStyles.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tab.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableCell.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TapHighlightColor.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Title.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Toast.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.ie11.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tree.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/features/ColorPaletteMoreColors.js +6 -6
- package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +30 -17
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +15 -1
- package/src/sap/ui/webc/main/thirdparty/generated/json-imports/Themes.js +10 -8
- 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/ColorPalettePopoverTemplate.lit.js +8 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteTemplate.lit.js +8 -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 +22 -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 +13 -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 +12 -19
- 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 +7 -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 +4 -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 +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +3 -3
- 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/BrowserScrollbar.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.ie11.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Carousel.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalette.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteStaticArea.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBoxPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateRangePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Icon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InvisibleTextStyles.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Label.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popup.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupStaticAreaStyles.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tab.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +3 -3
- 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 +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TapHighlightColor.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Title.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Toast.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.ie11.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tree.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +3 -3
- 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/generated/themes/sap_horizon/parameters-bundle.css.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ar-23b6aec9.js → messagebundle_ar-f610ffe9.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-b642f80f.js → messagebundle_bg-e372ad7a.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-20fa76b6.js → messagebundle_ca-64403819.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-f636c9f4.js → messagebundle_cs-f5276d1f.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-668048df.js → messagebundle_cy-5b51959f.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-ab0def1e.js → messagebundle_da-3f0c542a.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-0bf4dd1a.js → messagebundle_de-ff52e292.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-4962a11e.js → messagebundle_el-8a8f0e04.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-d45f8908.js → messagebundle_en-39f79920.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-22be6c54.js → messagebundle_en_GB-9a6995bc.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-43f65212.js → messagebundle_en_US_sappsd-1cd6f946.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-12f3828e.js → messagebundle_en_US_saprigi-88214efb.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-e9d14fae.js → messagebundle_en_US_saptrc-d8b4cc37.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-357e1c36.js → messagebundle_es-4e7804b3.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-8e0d2258.js → messagebundle_es_MX-5d55637e.js} +16 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-5a1ea785.js → messagebundle_et-d019447e.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-25a76e5c.js → messagebundle_fi-115f5a0c.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-48f2bd02.js → messagebundle_fr-f4458a8c.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-6e11af7d.js → messagebundle_fr_CA-d3ac2579.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-b8e55814.js → messagebundle_hi-3dbf5206.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-b2f08f08.js → messagebundle_hr-3112e358.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-81e9b34e.js → messagebundle_hu-90f77b24.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-98262baf.js → messagebundle_it-4fd2c566.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-29c5b67e.js → messagebundle_iw-ff53b57b.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-16deb9b7.js → messagebundle_ja-050a69c3.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-bc7929b4.js → messagebundle_kk-597a9724.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-331e5063.js → messagebundle_ko-d840efd8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-5708d85e.js → messagebundle_lt-d15c1526.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-ce9a2b90.js → messagebundle_lv-539ad33e.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-b991460e.js → messagebundle_ms-98b3e6dd.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-89ee9f6c.js → messagebundle_nl-5c52e887.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-1db10706.js → messagebundle_no-04ee2aaf.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-49ee2166.js → messagebundle_pl-6da30702.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-e1f22029.js → messagebundle_pt-71f281c3.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-19024d29.js → messagebundle_pt_PT-6d966418.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-9e2d0cd1.js → messagebundle_ro-e76a9c5d.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-9f439834.js → messagebundle_ru-dc34dd79.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-3fe24f0e.js → messagebundle_sh-f2171ee6.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-275cf4ec.js → messagebundle_sk-5c10a3c8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-f774c011.js → messagebundle_sl-14cff3cf.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-716ad2e9.js → messagebundle_sv-44a9e5d4.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-503e18e9.js → messagebundle_th-6cbca7a8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-1db67daa.js → messagebundle_tr-00ce0f94.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-58f2adad.js → messagebundle_uk-bf2de1c7.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-f523cd98.js → messagebundle_vi-a0de6aa8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-761506cb.js → messagebundle_zh_CN-7cbf9197.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-591c0661.js → messagebundle_zh_TW-53705d5b.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-0f28e359.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-1ee56435.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-4d4cd873.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-5bdedee7.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-60d672db.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-793a420b.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7c549d8f.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7e5617d6.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e75a0bfb.js +13 -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,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 stay-open-on-scroll @ui5-after-close="${litRender.ifDefined(context.onResponsivePopoverAfterClose)}" @wheel="${context._handleWheel}" @keydown="${context._onkeydown}"><${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"><${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)}" data-sap-focus-ref @click="${context._handleInputClick}" @ui5-change="${litRender.ifDefined(context._handleInputChange)}" @ui5-input="${litRender.ifDefined(context._handleInputLiveChange)}" class="ui5-time-picker-input" @keydown="${context._onkeydown}">${ 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="periods"></${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,8 @@
|
|
|
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.domRendered ? block1(context) : undefined } `;
|
|
4
|
+
const block1 = (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
5
|
|
|
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;
|
|
6
|
+
return block0;
|
|
15
7
|
|
|
16
8
|
});
|
|
@@ -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
|
});
|
|
@@ -1,30 +1,21 @@
|
|
|
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 part="native-li" tabindex="${litRender.ifDefined(context.tabIndex)}" class="${litRender.classMap(context.classes.main)}" dir="${litRender.ifDefined(context.effectiveDir)}" @focusin="${context._onfocusin}" @focusout="${context._onfocusout}" @keyup="${context._onkeyup}" @keydown="${context._onkeydown}" @mouseup="${context._onmouseup}" @mousedown="${context._onmousedown}" @touchstart="${context._ontouchstart}" @touchend="${context._ontouchend}" @click="${context._onclick}" role="${litRender.ifDefined(context._accInfo.role)}" aria-expanded="${litRender.ifDefined(context._accInfo.ariaExpanded)}" title="${litRender.ifDefined(context.title)}" aria-level="${litRender.ifDefined(context._accInfo.ariaLevel)}" aria-posinset="${litRender.ifDefined(context._accInfo.posinset)}" aria-setsize="${litRender.ifDefined(context._accInfo.setsize)}" aria-describedby="${litRender.ifDefined(context._id)}-invisibleText-describedby" aria-labelledby="${litRender.ifDefined(context._id)}-invisibleText ${litRender.ifDefined(context._id)}-content" aria-disabled="${litRender.ifDefined(context.ariaDisabled)}"><div class="ui5-li-tree-toggle-box" style="${litRender.styleMap(context.styles.preContent)}">${ context._showToggleButtonBeginning ? block1(context, tags, suffix) : undefined }</div>${ context.placeSelectionElementBefore ? block2(context, tags, suffix) : undefined }<div id="${litRender.ifDefined(context._id)}-content" class="ui5-li-content">${ context.icon ? block6(context, tags, suffix) : undefined }<div class="ui5-li-tree-text-wrapper">${ context._showTitle ? block7() : undefined }${ context.additionalText ? block8(context) : undefined }</div></div>${ context._showToggleButtonEnd ? block9(context, tags, suffix) : undefined }${ context.typeDetail ? block10(context, tags, suffix) : undefined }${ context.placeSelectionElementAfter ? block11(context, tags, suffix) : undefined }<span id="${litRender.ifDefined(context._id)}-invisibleText" class="ui5-hidden-text">${litRender.ifDefined(context._accInfo.listItemAriaLabel)}${litRender.ifDefined(context.accessibleName)}</span><span id="${litRender.ifDefined(context._id)}-invisibleText-describedby" class="ui5-hidden-text">${litRender.ifDefined(context._accInfo.ariaSelectedText)}</span></li> `;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-icon", tags, suffix)} class="ui5-li-tree-toggle-icon" name="${litRender.ifDefined(context._toggleIconName)}" show-tooltip accessible-name="${litRender.ifDefined(context.iconAccessibleName)}" @click="${context._toggleClick}"></${litRender.scopeTag("ui5-icon", tags, suffix)}>`;
|
|
5
|
+
const block2 = (context, tags, suffix) => litRender.html`${ context.modeSingleSelect ? block3(context, tags, suffix) : undefined }${ context.modeMultiSelect ? block4(context, tags, suffix) : undefined }${ context.renderDeleteButton ? block5(context, tags, suffix) : undefined }`;
|
|
6
|
+
const block3 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-radio-button", tags, suffix)} ?disabled="${context.isInactive}" accessible-name="${litRender.ifDefined(context._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${litRender.ifDefined(context._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${context.selected}" @click="${context.onSingleSelectionComponentPress}"></${litRender.scopeTag("ui5-radio-button", tags, suffix)}>`;
|
|
7
|
+
const block4 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-checkbox", tags, suffix)} ?disabled="${context.isInactive}" tabindex="-1" id="${litRender.ifDefined(context._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${context.selected}" aria-label="${litRender.ifDefined(context._accInfo.ariaLabel)}" @click="${context.onMultiSelectionComponentPress}"></${litRender.scopeTag("ui5-checkbox", tags, suffix)}>`;
|
|
8
|
+
const block5 = (context, tags, suffix) => litRender.html`<div class="ui5-li-deletebtn"><${litRender.scopeTag("ui5-button", tags, suffix)} tabindex="-1" data-sap-no-tab-ref id="${litRender.ifDefined(context._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${context.disableDeleteButton}" @click="${context.onDelete}" title="${litRender.ifDefined(context.deleteText)}"></${litRender.scopeTag("ui5-button", tags, suffix)}></div>`;
|
|
9
|
+
const block6 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-icon", tags, suffix)} part="icon" name="${litRender.ifDefined(context.icon)}" class="ui5-li-icon"></${litRender.scopeTag("ui5-icon", tags, suffix)}>`;
|
|
10
|
+
const block7 = (context, tags, suffix) => litRender.html`<div part="title" class="ui5-li-title"><slot></slot></div>`;
|
|
11
|
+
const block8 = (context, tags, suffix) => litRender.html`<span part="additional-text" class="ui5-li-additional-text">${litRender.ifDefined(context.additionalText)}</span>`;
|
|
12
|
+
const block9 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-icon", tags, suffix)} class="ui5-li-tree-toggle-icon" name="${litRender.ifDefined(context._toggleIconName)}" @click="${context._toggleClick}"></${litRender.scopeTag("ui5-icon", tags, suffix)}>`;
|
|
13
|
+
const block10 = (context, tags, suffix) => litRender.html`<div class="ui5-li-detailbtn"><${litRender.scopeTag("ui5-button", tags, suffix)} design="Transparent" icon="edit" @click="${context.onDetailClick}"></${litRender.scopeTag("ui5-button", tags, suffix)}></div>`;
|
|
14
|
+
const block11 = (context, tags, suffix) => litRender.html`${ context.modeSingleSelect ? block12(context, tags, suffix) : undefined }${ context.modeMultiSelect ? block13(context, tags, suffix) : undefined }${ context.renderDeleteButton ? block14(context, tags, suffix) : undefined }`;
|
|
15
|
+
const block12 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-radio-button", tags, suffix)} ?disabled="${context.isInactive}" accessible-name="${litRender.ifDefined(context._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${litRender.ifDefined(context._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${context.selected}" @click="${context.onSingleSelectionComponentPress}"></${litRender.scopeTag("ui5-radio-button", tags, suffix)}>`;
|
|
16
|
+
const block13 = (context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-checkbox", tags, suffix)} ?disabled="${context.isInactive}" tabindex="-1" id="${litRender.ifDefined(context._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${context.selected}" aria-label="${litRender.ifDefined(context._accInfo.ariaLabel)}" @click="${context.onMultiSelectionComponentPress}"></${litRender.scopeTag("ui5-checkbox", tags, suffix)}>`;
|
|
17
|
+
const block14 = (context, tags, suffix) => litRender.html`<div class="ui5-li-deletebtn"><${litRender.scopeTag("ui5-button", tags, suffix)} tabindex="-1" data-sap-no-tab-ref id="${litRender.ifDefined(context._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${context.disableDeleteButton}" @click="${context.onDelete}" title="${litRender.ifDefined(context.deleteText)}"></${litRender.scopeTag("ui5-button", tags, suffix)}></div>`;
|
|
4
18
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<li tabindex="${ifDefined__default(context.tabIndex)}" class="${litRender.classMap(context.classes.main)}" dir="${ifDefined__default(context.effectiveDir)}" @focusin="${context._onfocusin}" @focusout="${context._onfocusout}" @keyup="${context._onkeyup}" @keydown="${context._onkeydown}" @mouseup="${context._onmouseup}" @mousedown="${context._onmousedown}" @touchstart="${context._ontouchstart}" @touchend="${context._ontouchend}" @click="${context._onclick}" aria-selected="${ifDefined__default(context.ariaSelected)}" role="${ifDefined__default(context._accInfo.role)}" aria-expanded="${ifDefined__default(context._accInfo.ariaExpanded)}" aria-level="${ifDefined__default(context._accInfo.ariaLevel)}" aria-posinset="${ifDefined__default(context._accInfo.posinset)}" aria-setsize="${ifDefined__default(context._accInfo.setsize)}" aria-labelledby="${ifDefined__default(context._id)}-invisibleText ${ifDefined__default(context._id)}-content" aria-disabled="${ifDefined__default(context.ariaDisabled)}" style="list-style-type: none;"><div class="ui5-li-tree-toggle-box" style="padding-left: ${ifDefined__default(context.effectiveLevel)}rem; padding-left: calc(var(--_ui5-tree-indent-step) * ${ifDefined__default(context.effectiveLevel)});">${ context._showToggleButtonBeginning ? block1(context) : undefined }</div>${ context.placeSelectionElementBefore ? block2(context) : undefined }<div id="${ifDefined__default(context._id)}-content" class="ui5-li-content">${ context.icon ? block6(context) : undefined }<div class="ui5-li-tree-text-wrapper">${ context._showTitle ? block7() : undefined }${ context.info ? block8(context) : undefined }</div></div>${ context._showToggleButtonEnd ? block9(context) : undefined }${ context.typeDetail ? block10(context) : undefined }${ context.placeSelectionElementAfter ? block11(context) : undefined }<span id="${ifDefined__default(context._id)}-invisibleText" class="ui5-hidden-text">${ifDefined__default(context._accInfo.listItemAriaLabel)}${ifDefined__default(context.accessibleName)}</span></li> `; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<ui5-icon class="ui5-li-tree-toggle-icon" name="${ifDefined__default(context._toggleIconName)}" show-tooltip accessible-name="${ifDefined__default(context.iconAccessibleName)}" @click="${context._toggleClick}"></ui5-icon>`; };
|
|
9
|
-
const block2 = (context) => { return litRender.html`${ context.modeSingleSelect ? block3(context) : undefined }${ context.modeMultiSelect ? block4(context) : undefined }${ context.modeDelete ? block5(context) : undefined }`; };
|
|
10
|
-
const block3 = (context) => { return litRender.html`<ui5-radiobutton ?disabled="${context.isInactive}" tabindex="-1" id="${ifDefined__default(context._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?selected="${context.selected}" @click="${context.onSingleSelectionComponentPress}"></ui5-radiobutton>`; };
|
|
11
|
-
const block4 = (context) => { return litRender.html`<ui5-checkbox ?disabled="${context.isInactive}" tabindex="-1" id="${ifDefined__default(context._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${context.selected}" aria-label="${ifDefined__default(context._accInfo.ariaLabel)}" @click="${context.onMultiSelectionComponentPress}"></ui5-checkbox>`; };
|
|
12
|
-
const block5 = (context) => { return litRender.html`<div class="ui5-li-deletebtn"><ui5-button tabindex="-1" data-sap-no-tab-ref id="${ifDefined__default(context._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${context.disableDeleteButton}" @click="${context.onDelete}" title="${ifDefined__default(context.deleteText)}"></ui5-button></div>`; };
|
|
13
|
-
const block6 = (context) => { return litRender.html`<ui5-icon part="icon" name="${ifDefined__default(context.icon)}" class="ui5-li-icon"></ui5-icon>`; };
|
|
14
|
-
const block7 = (context) => { return litRender.html`<div part="title" class="ui5-li-title"><slot></slot></div>`; };
|
|
15
|
-
const block8 = (context) => { return litRender.html`<span part="info" class="ui5-li-additional-text">${ifDefined__default(context.info)}</span>`; };
|
|
16
|
-
const block9 = (context) => { return litRender.html`<ui5-icon class="ui5-li-tree-toggle-icon" name="${ifDefined__default(context._toggleIconName)}" @click="${context._toggleClick}"></ui5-icon>`; };
|
|
17
|
-
const block10 = (context) => { return litRender.html`<div class="ui5-li-detailbtn"><ui5-button design="Transparent" icon="edit" @click="${context.onDetailClick}"></ui5-button></div>`; };
|
|
18
|
-
const block11 = (context) => { return litRender.html`${ context.modeSingleSelect ? block12(context) : undefined }${ context.modeMultiSelect ? block13(context) : undefined }${ context.modeDelete ? block14(context) : undefined }`; };
|
|
19
|
-
const block12 = (context) => { return litRender.html`<ui5-radiobutton ?disabled="${context.isInactive}" tabindex="-1" id="${ifDefined__default(context._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?selected="${context.selected}" @click="${context.onSingleSelectionComponentPress}"></ui5-radiobutton>`; };
|
|
20
|
-
const block13 = (context) => { return litRender.html`<ui5-checkbox ?disabled="${context.isInactive}" tabindex="-1" id="${ifDefined__default(context._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${context.selected}" aria-label="${ifDefined__default(context._accInfo.ariaLabel)}" @click="${context.onMultiSelectionComponentPress}"></ui5-checkbox>`; };
|
|
21
|
-
const block14 = (context) => { return litRender.html`<div class="ui5-li-deletebtn"><ui5-button tabindex="-1" data-sap-no-tab-ref id="${ifDefined__default(context._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${context.disableDeleteButton}" @click="${context.onDelete}" title="${ifDefined__default(context.deleteText)}"></ui5-button></div>`; };
|
|
22
|
-
const main = (context, tags, suffix) => {
|
|
23
|
-
litRender.setTags(tags);
|
|
24
|
-
litRender.setSuffix(suffix);
|
|
25
|
-
return block0(context);
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
return main;
|
|
19
|
+
return block0;
|
|
29
20
|
|
|
30
21
|
});
|
|
@@ -1,17 +1,8 @@
|
|
|
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-list", tags, suffix)} .mode="${litRender.ifDefined(context.mode)}" .headerText="${litRender.ifDefined(context.headerText)}" .footerText="${litRender.ifDefined(context.footerText)}" .noDataText="${litRender.ifDefined(context.noDataText)}" .accessibleRole="${litRender.ifDefined(context._role)}" @ui5-item-click="${litRender.ifDefined(context._onListItemClick)}" @ui5-item-delete="${litRender.ifDefined(context._onListItemDelete)}" @ui5-selection-change="${litRender.ifDefined(context._onListSelectionChange)}" class="ui5-tree-root"><slot name="header" slot="header"></slot>${ litRender.repeat(context._listItems, (item, index) => item._id || index, (item, index) => block1(item, index, context, tags, suffix)) }</${litRender.scopeTag("ui5-list", tags, suffix)}> `;
|
|
4
|
+
const block1 = (item, index, context, tags, suffix) => litRender.html`<${litRender.scopeTag("ui5-li-tree", tags, suffix)} type="Active" level="${litRender.ifDefined(item.level)}" icon="${litRender.ifDefined(item.treeItem.icon)}" additional-text="${litRender.ifDefined(item.treeItem.additionalText)}" additional-text-state="${litRender.ifDefined(item.treeItem.additionalTextState)}" title="${litRender.ifDefined(item.treeItem.title)}" ?_toggle-button-end="${litRender.ifDefined(context._toggleButtonEnd)}" ?_minimal="${litRender.ifDefined(context._minimal)}" .treeItem="${litRender.ifDefined(item.treeItem)}" .expanded="${litRender.ifDefined(item.treeItem.expanded)}" .selected="${litRender.ifDefined(item.treeItem.selected)}" .showToggleButton="${litRender.ifDefined(item.treeItem.requiresToggleButton)}" ._posinset="${litRender.ifDefined(item.posinset)}" ._setsize="${litRender.ifDefined(item.size)}" @ui5-toggle="${litRender.ifDefined(context._onListItemToggle)}" @ui5-step-in="${litRender.ifDefined(context._onListItemStepIn)}" @ui5-step-out="${litRender.ifDefined(context._onListItemStepOut)}" @mouseover="${context._onListItemMouseOver}" @mouseout="${context._onListItemMouseOut}">${litRender.ifDefined(item.treeItem.text)}</${litRender.scopeTag("ui5-li-tree", tags, suffix)}>`;
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<ui5-list .mode="${ifDefined__default(context.mode)}" .headerText="${ifDefined__default(context.headerText)}" .footerText="${ifDefined__default(context.footerText)}" .noDataText="${ifDefined__default(context.noDataText)}" .accRole="${ifDefined__default(context._role)}" @ui5-item-click="${ifDefined__default(context._onListItemClick)}" @ui5-item-delete="${ifDefined__default(context._onListItemDelete)}" @ui5-selection-change="${ifDefined__default(context._onListSelectionChange)}" class="ui5-tree-root"><slot name="header" slot="header"></slot>${ litRender.repeat(context._listItems, (item, index) => item._id || index, (item, index) => block1(item, index, context)) }</ui5-list> `; };
|
|
8
|
-
const block1 = (item, index, context) => { return litRender.html`<ui5-li-tree type="Active" level="${ifDefined__default(item.level)}" icon="${ifDefined__default(item.treeItem.icon)}" additional-text="${ifDefined__default(item.treeItem.additionalText)}" additional-text-state="${ifDefined__default(item.treeItem.additionalTextState)}" ?_toggle-button-end="${ifDefined__default(context._toggleButtonEnd)}" ?_minimal="${ifDefined__default(context._minimal)}" .treeItem="${ifDefined__default(item.treeItem)}" .expanded="${ifDefined__default(item.treeItem.expanded)}" .selected="${ifDefined__default(item.treeItem.selected)}" .showToggleButton="${ifDefined__default(item.treeItem.requiresToggleButton)}" ._posinset="${ifDefined__default(item.posinset)}" ._setsize="${ifDefined__default(item.size)}" @ui5-toggle="${ifDefined__default(context._onListItemToggle)}" @ui5-step-in="${ifDefined__default(context._onListItemStepIn)}" @ui5-step-out="${ifDefined__default(context._onListItemStepOut)}">${ifDefined__default(item.treeItem.text)}</ui5-li-tree>`; };
|
|
9
|
-
const main = (context, tags, suffix) => {
|
|
10
|
-
litRender.setTags(tags);
|
|
11
|
-
litRender.setSuffix(suffix);
|
|
12
|
-
return block0(context);
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
return main;
|
|
6
|
+
return block0;
|
|
16
7
|
|
|
17
8
|
});
|
|
@@ -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 id="${litRender.ifDefined(context._id)}" ?disabled= "${litRender.ifDefined(context.disabled)}" value = "${litRender.ifDefined(context.value)}" label = "${litRender.ifDefined(context.label)}" @click = ${litRender.ifDefined(context._onclick)} @keydown=${context._onkeydown} class = "${litRender.classMap(context.classes.root)}" data-sap-focus-ref tabindex="0" @wheel="${context._handleWheel}"><div class="ui5-wheelslider-header-block"><div id="${litRender.ifDefined(context._id)}--label" class="ui5-wheelslider-label">${litRender.ifDefined(context.label)}</div><div class="ui5-wheelslider-invisible-text"></div><${litRender.scopeTag("ui5-button", tags, suffix)} class="ui5-wheelslider-arrow" icon="navigation-up-arrow" @click=${context._onArrowUp} tabindex="-1"></${litRender.scopeTag("ui5-button", tags, suffix)}></div><div id="${litRender.ifDefined(context._id)}--inner" class="ui5-wheelslider-inner"><div id="${litRender.ifDefined(context._id)}--selection-frame" class="ui5-wheelslider-selection-frame"></div><div id="${litRender.ifDefined(context._id)}--wrapper" class="ui5-wheelslider-wrapper">${ context.expanded ? block1(context) : block3(context) }</div></div><div class="ui5-wheelslider-footer-block"><${litRender.scopeTag("ui5-button", tags, suffix)} class="ui5-wheelslider-arrow" icon="navigation-down-arrow" @click=${context._onArrowDown} tabindex="-1"></${litRender.scopeTag("ui5-button", tags, suffix)}></div></div>`;
|
|
4
|
+
const block1 = (context, tags, suffix) => litRender.html`<ul id="${litRender.ifDefined(context._id)}--items-list" role="listbox" aria-label="${litRender.ifDefined(context.label)}">${ litRender.repeat(context._itemsToShow, (item, index) => item._id || index, (item, index) => block2(item, index)) }</ul>`;
|
|
5
|
+
const block2 = (item, index, context, tags, suffix) => litRender.html`<li class="ui5-wheelslider-item" data-item-index="${index}" role="option" aria-selected="${litRender.ifDefined(item.selected)}">${litRender.ifDefined(item.value)}</li>`;
|
|
6
|
+
const block3 = (context, tags, suffix) => litRender.html`<ul id="${litRender.ifDefined(context._id)}--items-list" role="listbox" aria-label="${litRender.ifDefined(context.label)}"><li class="ui5-wheelslider-item" role="option" aria-selected="true">${litRender.ifDefined(context.value)}</li></ul>`;
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<div id="${ifDefined__default(context._id)}" ?disabled= "${ifDefined__default(context.disabled)}" value = "${ifDefined__default(context.value)}" label = "${ifDefined__default(context.label)}" @click = ${ifDefined__default(context._onclick)} @keydown=${context._onkeydown} class = "${litRender.classMap(context.classes.root)}" data-sap-focus-ref tabindex="0" @wheel="${context._handleWheel}"><div class="ui5-wheelslider-header-block"><div id="${ifDefined__default(context._id)}--label" class="ui5-wheelslider-label">${ifDefined__default(context.label)}</div><div class="ui5-wheelslider-invisible-text"></div><ui5-button class="ui5-wheelslider-arrow" icon="navigation-up-arrow" @click=${context._onArrowUp} tabindex="-1"></ui5-button></div><div id="${ifDefined__default(context._id)}--inner" class="ui5-wheelslider-inner"><div id="${ifDefined__default(context._id)}--selection-frame" class="ui5-wheelslider-selection-frame"></div><div id="${ifDefined__default(context._id)}--wrapper" class="ui5-wheelslider-wrapper">${ context.expanded ? block1(context) : block3(context) }</div></div><div class="ui5-wheelslider-footer-block"><ui5-button class="ui5-wheelslider-arrow" icon="navigation-down-arrow" @click=${context._onArrowDown} tabindex="-1"></ui5-button></div></div>`; };
|
|
8
|
-
const block1 = (context) => { return litRender.html`<ul id="${ifDefined__default(context._id)}--items-list" role="listbox" aria-label="${ifDefined__default(context.label)}">${ litRender.repeat(context._itemsToShow, (item, index) => item._id || index, (item, index) => block2(item, index)) }</ul>`; };
|
|
9
|
-
const block2 = (item, index, context) => { return litRender.html`<li class="ui5-wheelslider-item" data-item-index="${index}" role="option" aria-selected="${ifDefined__default(item.selected)}" style="list-style-type: none;">${ifDefined__default(item.value)}</li>`; };
|
|
10
|
-
const block3 = (context) => { return litRender.html`<ul id="${ifDefined__default(context._id)}--items-list" role="listbox" aria-label="${ifDefined__default(context.label)}"><li class="ui5-wheelslider-item" role="option" aria-selected="true" style="list-style-type: none;">${ifDefined__default(context.value)}</li></ul>`; };
|
|
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,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 class="ui5-yp-root" role="grid" aria-readonly="false" aria-multiselectable="false" @keydown=${context._onkeydown} @keyup=${context._onkeyup} @click=${context._selectYear} @focusin=${context._onfocusin}>${ litRender.repeat(context._years, (item, index) => item._id || index, (item, index) => block1(item)) }</div>`;
|
|
4
|
+
const block1 = (item, index, context, tags, suffix) => litRender.html`<div class="ui5-yp-interval-container">${ litRender.repeat(item, (item, index) => item._id || index, (item, index) => block2(item)) }</div>`;
|
|
5
|
+
const block2 = (item, index, context, tags, suffix) => litRender.html`<div data-sap-timestamp="${litRender.ifDefined(item.timestamp)}" tabindex="${litRender.ifDefined(item._tabIndex)}" ?data-sap-focus-ref="${item.focusRef}" class="${litRender.ifDefined(item.classes)}" role="gridcell" aria-selected="${litRender.ifDefined(item.ariaSelected)}">${litRender.ifDefined(item.year)}</div>`;
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const block0 = (context) => { return litRender.html`<div class="ui5-yp-root" role="grid" aria-readonly="false" aria-multiselectable="false" @keydown=${context._onkeydown} @keyup=${context._onkeyup} @click=${context._selectYear} @focusin=${context._onfocusin}>${ litRender.repeat(context._years, (item, index) => item._id || index, (item, index) => block1(item)) }</div>`; };
|
|
8
|
-
const block1 = (item, index, context) => { return litRender.html`<div class="ui5-yp-interval-container">${ litRender.repeat(item, (item, index) => item._id || index, (item, index) => block2(item)) }</div>`; };
|
|
9
|
-
const block2 = (item, index, context) => { return litRender.html`<div data-sap-timestamp="${ifDefined__default(item.timestamp)}" tabindex="${ifDefined__default(item._tabIndex)}" ?data-sap-focus-ref="${item.focusRef}" class="${ifDefined__default(item.classes)}" role="gridcell" aria-selected="${ifDefined__default(item.ariaSelected)}">${ifDefined__default(item.year)}</div>`; };
|
|
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,12 +1,12 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/asset-registries/Themes', 'sap/ui/webc/common/thirdparty/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/asset-registries/Themes', 'sap/ui/webc/common/thirdparty/theming/generated/themes/sap_fiori_3/parameters-bundle.css', './sap_fiori_3/parameters-bundle.css'], function (Themes, defaultThemeBase, parametersBundle_css) { 'use strict';
|
|
2
2
|
|
|
3
3
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e['default'] : e; }
|
|
4
4
|
|
|
5
5
|
var defaultThemeBase__default = /*#__PURE__*/_interopDefaultLegacy(defaultThemeBase);
|
|
6
6
|
|
|
7
|
-
Themes.registerThemePropertiesLoader("@ui5/webcomponents-
|
|
7
|
+
Themes.registerThemePropertiesLoader("@ui5/webcomponents-theming", "sap_fiori_3", () => defaultThemeBase__default);
|
|
8
8
|
Themes.registerThemePropertiesLoader("@ui5/webcomponents", "sap_fiori_3", () => parametersBundle_css);
|
|
9
|
-
var AvatarCss = ":host(:not([hidden])){display:inline-block;box-sizing:border-box}:host(:not([hidden]).ui5_hovered){opacity:.7}:host([focused]){outline:var(--_ui5_avatar_outline);outline-offset:var(--_ui5_avatar_focus_offset)}:host([interactive]){cursor:pointer}:host{height:3rem;width:3rem;border-radius:50%;border:var(--ui5-avatar-initials-border);outline:none;color:var(--ui5-avatar-initials-color)}:host([shape=Square]){border-radius:.25rem}:host([shape=Square]) .ui5-avatar-root{border-radius:inherit}:host([shape=Square]) .ui5-avatar-img{border-radius:inherit}:host([_size=XS]),:host([size=XS]){height:2rem;width:2rem;min-height:2rem;min-width:2rem;font-size
|
|
9
|
+
var AvatarCss = {packageName:"@ui5/webcomponents",fileName:"themes/Avatar.css",content:":host(:not([hidden])){display:inline-block;box-sizing:border-box}:host(:not([hidden]).ui5_hovered){opacity:.7}:host([focused]){outline:var(--_ui5_avatar_outline);outline-offset:var(--_ui5_avatar_focus_offset)}:host([interactive]){cursor:pointer}:host{height:3rem;width:3rem;border-radius:50%;border:var(--ui5-avatar-initials-border);outline:none;color:var(--ui5-avatar-initials-color)}:host([shape=Square]),:host([shape=Square]) ::slotted(*){border-radius:.25rem}:host([shape=Square]) .ui5-avatar-root{border-radius:inherit}:host([shape=Square]) .ui5-avatar-img{border-radius:inherit}:host([_size=XS]),:host([size=XS]){height:2rem;width:2rem;min-height:2rem;min-width:2rem;font-size:var(--_ui5_avatar_fontsize_XS)}:host([_size=S]),:host([size=S]){min-height:3rem;min-width:3rem;font-size:var(--_ui5_avatar_fontsize_S)}:host([_size=M]),:host([size=M]){min-height:4rem;min-width:4rem;font-size:var(--_ui5_avatar_fontsize_M)}:host([_size=L]),:host([size=L]){min-height:5rem;min-width:5rem;font-size:var(--_ui5_avatar_fontsize_L)}:host([_size=XL]),:host([size=XL]){min-height:7rem;min-width:7rem;font-size:var(--_ui5_avatar_fontsize_XL)}:host .ui5-avatar-icon{height:1.5rem;width:1.5rem;color:inherit}:host([_size=XS]) .ui5-avatar-icon,:host([size=XS]) .ui5-avatar-icon{height:1rem;width:1rem}:host([_size=S]) .ui5-avatar-icon,:host([size=S]) .ui5-avatar-icon{height:1.5rem;width:1.5rem}:host([_size=M]) .ui5-avatar-icon,:host([size=M]) .ui5-avatar-icon{height:2rem;width:2rem}:host([_size=L]) .ui5-avatar-icon,:host([size=L]) .ui5-avatar-icon{height:2.5rem;width:2.5rem}:host([_size=XL]) .ui5-avatar-icon,:host([size=XL]) .ui5-avatar-icon{height:3rem;width:3rem}::slotted(*){border-radius:50%;width:100%;height:100%}:host(:not([_has-image])),:host(:not([color-scheme])),:host([_color-scheme=Accent6]),:host([color-scheme=Accent6]){background-color:var(--ui5-avatar-accent6)}:host([_color-scheme=Accent1]),:host([color-scheme=Accent1]){background-color:var(--ui5-avatar-accent1)}:host([_color-scheme=Accent2]),:host([color-scheme=Accent2]){background-color:var(--ui5-avatar-accent2)}:host([_color-scheme=Accent3]),:host([color-scheme=Accent3]){background-color:var(--ui5-avatar-accent3)}:host([_color-scheme=Accent4]),:host([color-scheme=Accent4]){background-color:var(--ui5-avatar-accent4)}:host([_color-scheme=Accent5]),:host([color-scheme=Accent5]){background-color:var(--ui5-avatar-accent5)}:host([_color-scheme=Accent7]),:host([color-scheme=Accent7]){background-color:var(--ui5-avatar-accent7)}:host([_color-scheme=Accent8]),:host([color-scheme=Accent8]){background-color:var(--ui5-avatar-accent8)}:host([_color-scheme=Accent9]),:host([color-scheme=Accent9]){background-color:var(--ui5-avatar-accent9)}:host([_color-scheme=Accent10]),:host([color-scheme=Accent10]){background-color:var(--ui5-avatar-accent10)}:host([_color-scheme=Placeholder]),:host([color-scheme=Placeholder]){background-color:var(--ui5-avatar-placeholder)}:host([_has-image]){background-color:transparent}:host([image-fit-type=Contain]) .ui5-avatar-img{background-size:contain}.ui5-avatar-root{display:flex;align-items:center;justify-content:center;outline:none}.ui5-avatar-img,.ui5-avatar-root{height:100%;width:100%;border-radius:50%}.ui5-avatar-img{background-repeat:no-repeat;background-position:50%;background-size:cover}.ui5-avatar-initials{color:inherit}::slotted(*){pointer-events:none}"};
|
|
10
10
|
|
|
11
11
|
return AvatarCss;
|
|
12
12
|
|