@openui5/sap.ui.webc.main 1.115.0 → 1.116.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 +0 -5
- package/THIRDPARTY.txt +1 -7
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +23 -3
- package/src/sap/ui/webc/main/AvatarGroup.js +1 -1
- package/src/sap/ui/webc/main/Badge.js +2 -2
- package/src/sap/ui/webc/main/Breadcrumbs.js +1 -1
- package/src/sap/ui/webc/main/BreadcrumbsItem.js +3 -3
- package/src/sap/ui/webc/main/BusyIndicator.js +1 -1
- package/src/sap/ui/webc/main/Button.js +4 -3
- package/src/sap/ui/webc/main/Calendar.js +6 -2
- package/src/sap/ui/webc/main/CalendarDate.js +2 -2
- package/src/sap/ui/webc/main/Card.js +3 -7
- package/src/sap/ui/webc/main/CardHeader.js +7 -2
- package/src/sap/ui/webc/main/Carousel.js +49 -4
- package/src/sap/ui/webc/main/CheckBox.js +14 -4
- package/src/sap/ui/webc/main/ColorPalette.js +1 -1
- package/src/sap/ui/webc/main/ColorPaletteItem.js +1 -1
- package/src/sap/ui/webc/main/ColorPalettePopover.js +1 -1
- package/src/sap/ui/webc/main/ColorPicker.js +1 -1
- package/src/sap/ui/webc/main/ComboBox.js +11 -8
- package/src/sap/ui/webc/main/ComboBoxGroupItem.js +1 -1
- package/src/sap/ui/webc/main/ComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/CustomListItem.js +19 -3
- package/src/sap/ui/webc/main/DatePicker.js +7 -2
- package/src/sap/ui/webc/main/DateRangePicker.js +9 -3
- package/src/sap/ui/webc/main/DateTimePicker.js +8 -3
- package/src/sap/ui/webc/main/Dialog.js +37 -6
- package/src/sap/ui/webc/main/FileUploader.js +1 -1
- package/src/sap/ui/webc/main/GroupHeaderListItem.js +1 -1
- package/src/sap/ui/webc/main/Icon.js +42 -2
- package/src/sap/ui/webc/main/Input.js +2 -2
- package/src/sap/ui/webc/main/Label.js +7 -3
- package/src/sap/ui/webc/main/Link.js +12 -2
- package/src/sap/ui/webc/main/List.js +2 -1
- package/src/sap/ui/webc/main/Menu.js +87 -3
- package/src/sap/ui/webc/main/MenuItem.js +34 -1
- package/src/sap/ui/webc/main/MessageStrip.js +1 -1
- package/src/sap/ui/webc/main/MultiComboBox.js +8 -7
- package/src/sap/ui/webc/main/MultiComboBoxGroupItem.js +1 -1
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/MultiInput.js +4 -4
- package/src/sap/ui/webc/main/Option.js +1 -1
- package/src/sap/ui/webc/main/Panel.js +3 -3
- package/src/sap/ui/webc/main/Popover.js +18 -4
- package/src/sap/ui/webc/main/ProgressIndicator.js +1 -1
- package/src/sap/ui/webc/main/RadioButton.js +17 -1
- package/src/sap/ui/webc/main/RangeSlider.js +12 -2
- package/src/sap/ui/webc/main/RatingIndicator.js +2 -2
- package/src/sap/ui/webc/main/ResponsivePopover.js +18 -4
- package/src/sap/ui/webc/main/SegmentedButton.js +40 -5
- package/src/sap/ui/webc/main/SegmentedButtonItem.js +4 -3
- package/src/sap/ui/webc/main/Select.js +20 -4
- package/src/sap/ui/webc/main/Slider.js +2 -2
- package/src/sap/ui/webc/main/SplitButton.js +7 -7
- package/src/sap/ui/webc/main/StandardListItem.js +31 -4
- package/src/sap/ui/webc/main/StepInput.js +2 -2
- package/src/sap/ui/webc/main/SuggestionGroupItem.js +1 -1
- package/src/sap/ui/webc/main/SuggestionItem.js +2 -2
- package/src/sap/ui/webc/main/Switch.js +2 -2
- package/src/sap/ui/webc/main/Tab.js +3 -3
- package/src/sap/ui/webc/main/TabContainer.js +40 -4
- package/src/sap/ui/webc/main/TabSeparator.js +10 -2
- package/src/sap/ui/webc/main/Table.js +2 -2
- package/src/sap/ui/webc/main/TableCell.js +1 -1
- package/src/sap/ui/webc/main/TableColumn.js +21 -1
- package/src/sap/ui/webc/main/TableGroupRow.js +1 -1
- package/src/sap/ui/webc/main/TableRow.js +9 -1
- package/src/sap/ui/webc/main/TextArea.js +2 -3
- package/src/sap/ui/webc/main/TimePicker.js +31 -3
- package/src/sap/ui/webc/main/Title.js +1 -1
- package/src/sap/ui/webc/main/Toast.js +1 -1
- package/src/sap/ui/webc/main/ToggleButton.js +4 -3
- package/src/sap/ui/webc/main/Token.js +6 -4
- package/src/sap/ui/webc/main/Tree.js +31 -2
- package/src/sap/ui/webc/main/TreeItem.js +63 -10
- package/src/sap/ui/webc/main/TreeItemCustom.js +205 -0
- package/src/sap/ui/webc/main/changeHandler/ChangeLinkTarget.js +1 -1
- package/src/sap/ui/webc/main/library.js +348 -70
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +130 -232
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +109 -184
- package/src/sap/ui/webc/main/thirdparty/Badge.js +40 -86
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +152 -202
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +27 -78
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +46 -115
- package/src/sap/ui/webc/main/thirdparty/Button.js +123 -287
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +146 -197
- package/src/sap/ui/webc/main/thirdparty/CalendarDate.js +16 -26
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +78 -113
- package/src/sap/ui/webc/main/thirdparty/CalendarPart.js +16 -27
- package/src/sap/ui/webc/main/thirdparty/Card.js +43 -92
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +69 -129
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +167 -229
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +103 -244
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +122 -173
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +41 -77
- package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +62 -105
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +138 -244
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +297 -419
- package/src/sap/ui/webc/main/thirdparty/ComboBoxGroupItem.js +20 -41
- package/src/sap/ui/webc/main/thirdparty/ComboBoxItem.js +30 -37
- package/src/sap/ui/webc/main/thirdparty/CustomListItem.js +33 -54
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +59 -76
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +207 -334
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +56 -72
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +63 -111
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +147 -212
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +162 -183
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +101 -242
- package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +25 -58
- package/src/sap/ui/webc/main/thirdparty/Icon.js +103 -193
- package/src/sap/ui/webc/main/thirdparty/Input.js +453 -717
- package/src/sap/ui/webc/main/thirdparty/Interfaces.js +51 -61
- package/src/sap/ui/webc/main/thirdparty/Label.js +49 -108
- package/src/sap/ui/webc/main/thirdparty/Link.js +104 -247
- package/src/sap/ui/webc/main/thirdparty/List.js +303 -468
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +126 -166
- package/src/sap/ui/webc/main/thirdparty/ListItemBase.js +64 -104
- package/src/sap/ui/webc/main/thirdparty/Menu.js +264 -200
- package/src/sap/ui/webc/main/thirdparty/MenuItem.js +66 -117
- package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +70 -141
- package/src/sap/ui/webc/main/thirdparty/MonthPicker.js +100 -103
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +381 -496
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxGroupItem.js +20 -34
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +19 -26
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +127 -137
- package/src/sap/ui/webc/main/thirdparty/Option.js +40 -107
- package/src/sap/ui/webc/main/thirdparty/Panel.js +102 -214
- package/src/sap/ui/webc/main/thirdparty/Popover.js +141 -274
- package/src/sap/ui/webc/main/thirdparty/Popup.js +155 -250
- package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +41 -109
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +111 -263
- package/src/sap/ui/webc/main/thirdparty/RadioButtonGroup.js +32 -13
- package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +208 -208
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +79 -146
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +70 -81
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +141 -126
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +41 -73
- package/src/sap/ui/webc/main/thirdparty/Select.js +186 -285
- package/src/sap/ui/webc/main/thirdparty/Slider.js +84 -80
- package/src/sap/ui/webc/main/thirdparty/SliderBase.js +151 -326
- package/src/sap/ui/webc/main/thirdparty/SplitButton.js +111 -240
- package/src/sap/ui/webc/main/thirdparty/StandardListItem.js +50 -142
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +137 -309
- package/src/sap/ui/webc/main/thirdparty/SuggestionGroupItem.js +22 -35
- package/src/sap/ui/webc/main/thirdparty/SuggestionItem.js +37 -114
- package/src/sap/ui/webc/main/thirdparty/SuggestionListItem.js +29 -37
- package/src/sap/ui/webc/main/thirdparty/Switch.js +63 -146
- package/src/sap/ui/webc/main/thirdparty/Tab.js +126 -168
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +344 -453
- package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +35 -26
- package/src/sap/ui/webc/main/thirdparty/Table.js +319 -489
- package/src/sap/ui/webc/main/thirdparty/TableCell.js +41 -50
- package/src/sap/ui/webc/main/thirdparty/TableColumn.js +38 -88
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +50 -90
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +137 -174
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +162 -358
- package/src/sap/ui/webc/main/thirdparty/TimePicker.js +24 -52
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +116 -159
- package/src/sap/ui/webc/main/thirdparty/TimeSelection.js +121 -167
- package/src/sap/ui/webc/main/thirdparty/Title.js +38 -71
- package/src/sap/ui/webc/main/thirdparty/Toast.js +41 -110
- package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +25 -39
- package/src/sap/ui/webc/main/thirdparty/Token.js +86 -143
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +256 -202
- package/src/sap/ui/webc/main/thirdparty/Tree.js +227 -302
- package/src/sap/ui/webc/main/thirdparty/TreeItem.js +42 -156
- package/src/sap/ui/webc/main/thirdparty/TreeItemBase.js +256 -0
- package/src/sap/ui/webc/main/thirdparty/TreeItemCustom.js +80 -0
- package/src/sap/ui/webc/main/thirdparty/TreeList.js +51 -0
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +75 -120
- package/src/sap/ui/webc/main/thirdparty/YearPicker.js +135 -124
- package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/AvatarGroup.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BreadcrumbsPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Carousel.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalette.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteStaticArea.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBoxPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateRangePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/FileUploader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/FormComponents.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/GroupHeaderListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Icon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/InvisibleTextStyles.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Label.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Link.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Menu.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popup.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupStaticAreaStyles.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +3 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RangeSlider.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SplitButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tab.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSemanticIcon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInOverflow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableCell.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +2 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Title.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Toast.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tree.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/custom-elements.json.js +1 -0
- package/src/sap/ui/webc/main/thirdparty/features/InputElementsFormSupport.js +25 -10
- package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +70 -72
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +108 -23
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarTemplate.lit.js +15 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarHeaderTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteDialogTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +57 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +48 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +36 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/IconTemplate.lit.js +16 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +63 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LabelTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +48 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +27 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MenuTemplate.lit.js +33 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MonthPickerTemplate.lit.js +12 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +72 -24
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +21 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +33 -11
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +13 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +39 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +51 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +24 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +27 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SplitButtonTemplate.lit.js +6 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +78 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +87 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +33 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +18 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +24 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInOverflowTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInStripTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableCellTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableColumnTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +36 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +33 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TitleTemplate.lit.js +21 -7
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerPopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemBaseTemplate.lit.js +72 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemCustomTemplate.lit.js +72 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemTemplate.lit.js +78 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/YearPickerTemplate.lit.js +12 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Carousel.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalette.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteStaticArea.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBoxPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateRangePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FormComponents.css.js +20 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Icon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InvisibleTextStyles.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Label.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Menu.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBoxPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popup.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupStaticAreaStyles.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RangeSlider.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SplitButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tab.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSemanticIcon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInOverflow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TapHighlightColor.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Title.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Toast.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TokenizerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tree.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeItem.css.js +20 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/popup-utils/OpenedPopupsRegistry.js +16 -1
- package/src/sap/ui/webc/main/thirdparty/popup-utils/PopoverRegistry.js +36 -21
- package/src/sap/ui/webc/main/thirdparty/timepicker-utils/TimeSlider.js +6 -3
- package/src/sap/ui/webc/main/thirdparty/types/AvatarColorScheme.js +21 -34
- package/src/sap/ui/webc/main/thirdparty/types/AvatarGroupType.js +13 -26
- package/src/sap/ui/webc/main/thirdparty/types/AvatarShape.js +11 -24
- package/src/sap/ui/webc/main/thirdparty/types/AvatarSize.js +19 -32
- package/src/sap/ui/webc/main/thirdparty/types/BackgroundDesign.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/BorderDesign.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsDesign.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsSeparatorStyle.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/BusyIndicatorSize.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/ButtonDesign.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/CalendarPickersMode.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/CalendarSelectionMode.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/CarouselArrowsPlacement.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/CarouselPageIndicatorStyle.js +35 -0
- package/src/sap/ui/webc/main/thirdparty/types/ComboBoxFilter.js +46 -0
- package/src/sap/ui/webc/main/thirdparty/types/HasPopup.js +14 -27
- package/src/sap/ui/webc/main/thirdparty/types/IconDesign.js +70 -0
- package/src/sap/ui/webc/main/thirdparty/types/InputType.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/LinkDesign.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/ListGrowingMode.js +15 -27
- package/src/sap/ui/webc/main/thirdparty/types/ListItemType.js +19 -25
- package/src/sap/ui/webc/main/thirdparty/types/ListMode.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/ListSeparators.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/MessageStripDesign.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PanelAccessibleRole.js +19 -28
- package/src/sap/ui/webc/main/thirdparty/types/PopoverHorizontalAlign.js +18 -30
- package/src/sap/ui/webc/main/thirdparty/types/PopoverPlacementType.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PopoverVerticalAlign.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PopupAccessibleRole.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/Priority.js +13 -26
- package/src/sap/ui/webc/main/thirdparty/types/SegmentedButtonMode.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/SemanticColor.js +15 -27
- package/src/sap/ui/webc/main/thirdparty/types/SwitchDesign.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabContainerBackgroundDesign.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/TabContainerTabsPlacement.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabLayout.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/TableColumnPopinDisplay.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/TableGrowingMode.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/TableMode.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/TableRowType.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabsOverflowMode.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TitleLevel.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/ToastPlacement.js +28 -40
- package/src/sap/ui/webc/main/thirdparty/types/WrappingType.js +11 -24
- package/ui5.yaml +15 -2
- package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +0 -300
- package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +0 -316
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeListItem.css +0 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +0 -27
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +0 -19
- package/src/sap/ui/webc/main/thirdparty/types/GrowingMode.js +0 -53
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/BrowserScrollbar.css",
|
16
|
-
content: "::-webkit-scrollbar:horizontal{
|
16
|
+
content: ":not(.ui5-content-native-scrollbars) ::-webkit-scrollbar:horizontal {\n\theight: var(--sapScrollBar_Dimension);\n}\n\n:not(.ui5-content-native-scrollbars) ::-webkit-scrollbar:vertical {\n\twidth: var(--sapScrollBar_Dimension);\n}\n\n:not(.ui5-content-native-scrollbars) ::-webkit-scrollbar {\n\tbackground-color: var(--sapScrollBar_TrackColor);\n\tborder-left: var(--browser_scrollbar_border);\n}\n\n:not(.ui5-content-native-scrollbars) ::-webkit-scrollbar-thumb {\n\tborder-radius: var(--browser_scrollbar_border_radius);\n\tbackground-color: var(--sapScrollBar_FaceColor);\n}\n\n:not(.ui5-content-native-scrollbars) ::-webkit-scrollbar-thumb:hover {\n\tbackground-color: var(--sapScrollBar_Hover_FaceColor);\n}\n\n:not(.ui5-content-native-scrollbars) ::-webkit-scrollbar-corner {\n\tbackground-color: var(--sapScrollBar_TrackColor);\n}"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/BusyIndicator.css",
|
16
|
-
content: ":host(:not([hidden])){
|
16
|
+
content: ":host(:not([hidden])) {\n\tdisplay: inline-block;\n}\n\n:host([_is-busy]) {\n\tcolor: var(--_ui5_busy_indicator_color);\n}\n\n:host([size=\"Small\"]) .ui5-busy-indicator-root {\n\tmin-width: 1.5rem;\n\tmin-height: .5rem;\n}\n\n:host([size=\"Small\"][text]:not([text=\"\"])) .ui5-busy-indicator-root {\n\tmin-height: 1.75rem;\n}\n\n:host([size=\"Small\"]) .ui5-busy-indicator-circle {\n\twidth: .5rem;\n\theight: .5rem;\n}\n\n:host(:not([size])) .ui5-busy-indicator-root,\n:host([size=\"Medium\"]) .ui5-busy-indicator-root {\n\tmin-width: 3rem;\n\tmin-height: 1rem;\n}\n\n:host(:not([size])[text]:not([text=\"\"])) .ui5-busy-indicator-root,\n:host([size=\"Medium\"][text]:not([text=\"\"])) .ui5-busy-indicator-root {\n\tmin-height: 2.25rem;\n}\n\n:host(:not([size])) .ui5-busy-indicator-circle,\n:host([size=\"Medium\"]) .ui5-busy-indicator-circle {\n\twidth: 1rem;\n\theight: 1rem;\n}\n\n:host([size=\"Large\"]) .ui5-busy-indicator-root {\n\tmin-width: 6rem;\n\tmin-height: 2rem;\n}\n\n:host([size=\"Large\"][text]:not([text=\"\"])) .ui5-busy-indicator-root {\n\tmin-height: 3.25rem;\n}\n\n:host([size=\"Large\"]) .ui5-busy-indicator-circle {\n\twidth: 2rem;\n\theight: 2rem;\n}\n\n.ui5-busy-indicator-root {\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tposition: relative;\n\tbackground-color: inherit;\n\theight: inherit;\n}\n\n.ui5-busy-indicator-busy-area {\n\tposition: absolute;\n\tz-index: 99;\n\tleft: 0;\n\tright: 0;\n\ttop: 0;\n\tbottom: 0;\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tbackground-color: inherit;\n\tflex-direction: column;\n}\n\n.ui5-busy-indicator-busy-area:focus-visible {\n\toutline: var(--_ui5_busy_indicator_focus_outline);\n\toutline-offset: -2px;\n border-radius: var(--_ui5_busy_indicator_focus_border_radius);\n}\n\n.ui5-busy-indicator-circles-wrapper {\n\tline-height: 0;\n}\n\n.ui5-busy-indicator-circle {\n\tdisplay: inline-block;\n\tbackground-color: currentColor;\n\tborder-radius: 50%;\n}\n\n.ui5-busy-indicator-circle::before {\n\tcontent: \"\";\n\twidth: 100%;\n\theight: 100%;\n\tborder-radius: 100%;\n}\n\n.circle-animation-0 {\n\tanimation: grow 1.6s infinite cubic-bezier(0.32, 0.06, 0.85, 1.11);\n}\n\n.circle-animation-1 {\n\tanimation: grow 1.6s infinite cubic-bezier(0.32, 0.06, 0.85, 1.11);\n\tanimation-delay: 200ms;\n}\n\n.circle-animation-2 {\n\tanimation: grow 1.6s infinite cubic-bezier(0.32, 0.06, 0.85, 1.11);\n\tanimation-delay: 400ms;\n}\n\n.ui5-busy-indicator-text {\n\twidth: 100%;\n\tmargin-top: .25rem;\n\ttext-align: center;\n}\n\n@keyframes grow {\n\t0%, 50%, 100% {\n\t\t-webkit-transform: scale(0.5);\n\t\t-moz-transform: scale(0.5);\n\t\ttransform: scale(0.5);\n\t}\n\t25% {\n\t\t-webkit-transform: scale(1);\n\t\t-moz-transform: scale(1);\n\t\ttransform: scale(1);\n\t}\n}\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/Button.css",
|
16
|
-
content: ".ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host(:not([hidden])){display:inline-block}:host{min-width:var(--_ui5_button_base_min_width);height:var(--_ui5_button_base_height);line-height:normal;font-family:var(--_ui5_button_fontFamily);font-size:var(--sapFontSize);text-shadow:var(--_ui5_button_text_shadow);border-radius:var(--_ui5_button_border_radius);cursor:pointer;background-color:var(--sapButton_Background);border:var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);color:var(--sapButton_TextColor);box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ui5-button-root{min-width:inherit;cursor:inherit;height:100%;width:100%;box-sizing:border-box;display:flex;justify-content:center;align-items:center;outline:none;padding:0 var(--_ui5_button_base_padding);position:relative;background:transparent;border:none;color:inherit;text-shadow:inherit;font:inherit;white-space:inherit;overflow:inherit;text-overflow:inherit;letter-spacing:inherit;word-spacing:inherit;line-height:inherit;-webkit-user-select:none;-moz-user-select:none;user-select:none}:host(:not([active]):not([non-interactive]):not([_is-touch]):hover),:host(:not([hidden]).ui5_hovered){background:var(--sapButton_Hover_Background);box-shadow:var(--sapContent_Interaction_Shadow);border:1px solid var(--sapButton_Hover_BorderColor);color:var(--sapButton_Hover_TextColor)}.ui5-button-icon{color:inherit;flex-shrink:0}:host([icon-end]) .ui5-button-root{flex-direction:row-reverse}:host([icon-end]) .ui5-button-icon{margin-inline-start:var(--_ui5_button_base_icon_margin)}:host([icon-only]) .ui5-button-root{min-width:auto;padding:0}:host([icon-only]) .ui5-button-text{display:none}.ui5-button-text{outline:none;position:relative;white-space:inherit;overflow:inherit;text-overflow:inherit}:host([has-icon]:not([icon-end])) .ui5-button-text{margin-inline-start:var(--_ui5_button_base_icon_margin)}:host([has-icon][icon-end]) .ui5-button-text{margin-inline-start:0}:host([disabled]){opacity:var(--sapContent_DisabledOpacity);pointer-events:none}:host([focused]) .ui5-button-root:after{content:\"\";position:absolute;box-sizing:border-box;left:.0625rem;top:.0625rem;right:.0625rem;bottom:.0625rem;border:var(--_ui5_button_focused_border);pointer-events:none;border-radius:var(--_ui5_button_focused_border_radius)}:host([design=Emphasized][focused]) .ui5-button-root:after{border-color:var(--_ui5_button_emphasized_focused_border_color)}:host([design=Emphasized][focused]) .ui5-button-root:before{content:\"\";position:absolute;box-sizing:border-box;left:.0625rem;top:.0625rem;right:.0625rem;bottom:.0625rem;border:var(--_ui5_button_emphasized_focused_border_before);pointer-events:none;border-radius:var(--_ui5_button_focused_border_radius)}.ui5-button-root::-moz-focus-inner{border:0}bdi{display:block;white-space:inherit;overflow:inherit;text-overflow:inherit}:host([ui5-button][active]:not([disabled]):not([non-interactive])){background-image:none;background-color:var(--sapButton_Active_Background);border-color:var(--sapButton_Active_BorderColor);color:var(--sapButton_Active_TextColor)}:host([design=Positive]){background-color:var(--sapButton_Accept_Background);border-color:var(--sapButton_Accept_BorderColor);color:var(--sapButton_Accept_TextColor)}:host([design=Positive]:not([active]):not([non-interactive]):not([_is-touch]).ui5_hovered),:host([design=Positive]:not([active]):not([non-interactive]):not([_is-touch]):hover){background-color:var(--sapButton_Accept_Hover_Background);border-color:var(--sapButton_Accept_Hover_BorderColor);box-shadow:var(--sapContent_Positive_Shadow);color:var(--sapButton_Accept_Hover_TextColor)}:host([ui5-button][design=Positive][active]:not([non-interactive])){background-color:var(--sapButton_Accept_Active_Background);border-color:var(--sapButton_Accept_Active_BorderColor);color:var(--sapButton_Accept_Active_TextColor)}:host([design=Negative]){background-color:var(--sapButton_Reject_Background);border-color:var(--sapButton_Reject_BorderColor);color:var(--sapButton_Reject_TextColor)}:host([design=Negative]:not([active]):not([non-interactive]):not([_is-touch]).ui5_hovered),:host([design=Negative]:not([active]):not([non-interactive]):not([_is-touch]):hover){background-color:var(--sapButton_Reject_Hover_Background);border-color:var(--sapButton_Reject_Hover_BorderColor);box-shadow:var(--sapContent_Negative_Shadow);color:var(--sapButton_Reject_Hover_TextColor)}:host([ui5-button][design=Negative][active]:not([non-interactive])){background-color:var(--sapButton_Reject_Active_Background);border-color:var(--sapButton_Reject_Active_BorderColor);color:var(--sapButton_Reject_Active_TextColor)}:host([design=Attention]){background-color:var(--sapButton_Attention_Background);border-color:var(--sapButton_Attention_BorderColor);color:var(--sapButton_Attention_TextColor)}:host([design=Attention]:not([active]):not([non-interactive]):not([_is-touch]).ui5_hovered),:host([design=Attention]:not([active]):not([non-interactive]):not([_is-touch]):hover){background-color:var(--sapButton_Attention_Hover_Background);border-color:var(--sapButton_Attention_Hover_BorderColor);color:var(--sapButton_Attention_Hover_TextColor);box-shadow:var(--sapContent_Critical_Shadow)}:host([ui5-button][design=Attention][active]:not([non-interactive])){background-color:var(--sapButton_Attention_Active_Background);border-color:var(--sapButton_Attention_Active_BorderColor);color:var(--sapButton_Attention_Active_TextColor)}:host([design=Emphasized]){background-color:var(--sapButton_Emphasized_Background);border-color:var(--sapButton_Emphasized_BorderColor);border-width:var(--_ui5_button_emphasized_border_width);color:var(--sapButton_Emphasized_TextColor);font-weight:var(--_ui5_button_emphasized_font_weight)}:host([design=Emphasized]:not([active]):not([non-interactive]):not([_is-touch]).ui5_hovered),:host([design=Emphasized]:not([active]):not([non-interactive]):not([_is-touch]):hover){background-color:var(--sapButton_Emphasized_Hover_Background);border-color:var(--sapButton_Emphasized_Hover_BorderColor);border-width:var(--_ui5_button_emphasized_border_width);color:var(--sapButton_Emphasized_Hover_TextColor);box-shadow:none}:host([ui5-button][design=Empasized][active]:not([non-interactive])){background-color:var(--sapButton_Emphasized_Active_Background);border-color:var(--sapButton_Emphasized_Active_BorderColor);color:var(--sapButton_Emphasized_Active_TextColor)}:host([design=Emphasized][focused]) .ui5-button-root:after{border-color:var(--sapContent_ContrastFocusColor);outline:none}:host([design=Transparent]){background-color:var(--sapButton_Lite_Background);color:var(--sapButton_Lite_TextColor);border-color:var(--sapButton_Lite_BorderColor)}:host([design=Transparent]:not([active]):not([non-interactive]):not([_is-touch]).ui5_hovered),:host([design=Transparent]:not([active]):not([non-interactive]):not([_is-touch]):hover){background-color:var(--sapButton_Lite_Hover_Background);border-color:var(--sapButton_Lite_Hover_BorderColor);box-shadow:var(--sapContent_Interaction_Shadow);color:var(--sapButton_Lite_Hover_TextColor)}:host([ui5-button][design=Transparent][active]:not([non-interactive])){background-color:var(--sapButton_Lite_Active_Background);border-color:var(--sapButton_Lite_Active_BorderColor);color:var(--sapButton_Active_TextColor)}:host([pressed][focused]) .ui5-button-root:after,:host([ui5-segmented-button-item][active][focused]) .ui5-button-root:after{border-color:var(--_ui5_button_pressed_focused_border_color);outline:none}:host([ui5-segmented-button-item][focused]:not(:last-child)) .ui5-button-root:after{border-top-right-radius:var(--_ui5_button_focused_inner_border_radius);border-bottom-right-radius:var(--_ui5_button_focused_inner_border_radius)}:host([ui5-segmented-button-item][focused]:not(:first-child)) .ui5-button-root:after{border-top-left-radius:var(--_ui5_button_focused_inner_border_radius);border-bottom-left-radius:var(--_ui5_button_focused_inner_border_radius)}"
|
16
|
+
content: ":host {\n\tvertical-align: middle;\n}\n.ui5-hidden-text {\n\tposition: absolute;\n\tclip: rect(1px,1px,1px,1px);\n\tuser-select: none;\n\tleft: -1000px; /* ensure the invisible texts are never part of the viewport */\n\ttop: -1000px;\n\tpointer-events: none;\n\tfont-size: 0;\n}\n:host(:not([hidden])) {\n\tdisplay: inline-block;\n}\n:host {\n\tmin-width: var(--_ui5_button_base_min_width);\n\theight: var(--_ui5_button_base_height);\n\tline-height: normal;\n\tfont-family: var(--_ui5_button_fontFamily);\n\tfont-size: var(--sapFontSize);\n\ttext-shadow: var(--_ui5_button_text_shadow);\n\tborder-radius: var(--_ui5_button_border_radius);\n\tcursor: pointer;\n\tbackground-color: var(--sapButton_Background);\n\tborder: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);\n\tcolor: var(--sapButton_TextColor);\n\tbox-sizing: border-box;\n\twhite-space: nowrap;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n.ui5-button-root {\n\tmin-width: inherit;\n\tcursor: inherit;\n\theight: 100%;\n\twidth: 100%;\n\tbox-sizing: border-box;\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\toutline: none;\n\tpadding: 0 var(--_ui5_button_base_padding);\n\tposition: relative;\n\tbackground: transparent;\n\tborder: none;\n\tcolor: inherit;\n\ttext-shadow: inherit;\n\tfont: inherit;\n\twhite-space: inherit;\n\toverflow: inherit;\n\ttext-overflow: inherit;\n\tletter-spacing: inherit;\n\tword-spacing: inherit;\n\tline-height: inherit;\n\t-webkit-user-select: none;\n\t-moz-user-select: none;\n\tuser-select: none;\n}\n:host(:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),\n:host(:not([hidden]):not([disabled]).ui5_hovered) {\n\tbackground: var(--sapButton_Hover_Background);\n\tbox-shadow: var(--sapContent_Interaction_Shadow);\n\tborder: 1px solid var(--sapButton_Hover_BorderColor);\n\tcolor: var(--sapButton_Hover_TextColor);\n}\n.ui5-button-icon {\n\tcolor: inherit;\n\tflex-shrink: 0;\n}\n:host([icon-end]) .ui5-button-root {\n\tflex-direction: row-reverse;\n}\n:host([icon-end]) .ui5-button-icon {\n\tmargin-inline-start: var(--_ui5_button_base_icon_margin);\n}\n:host([icon-only]) .ui5-button-root {\n\tmin-width: auto;\n\tpadding: 0;\n}\n:host([icon-only]) .ui5-button-text {\n\tdisplay: none;\n}\n.ui5-button-text {\n\toutline: none;\n\tposition: relative;\n\twhite-space: inherit;\n\toverflow: inherit;\n\ttext-overflow: inherit;\n}\n:host([has-icon]:not([icon-end])) .ui5-button-text {\n\tmargin-inline-start: var(--_ui5_button_base_icon_margin);\n}\n:host([has-icon][icon-end]) .ui5-button-text {\n\tmargin-inline-start: 0;\n}\n:host([disabled]) {\n\topacity: var(--sapContent_DisabledOpacity);\n\tpointer-events: unset;\n\tcursor: default;\n}\n:host([has-icon]:not([icon-only])) .ui5-button-text{\n\t/* calculating the minimum width by removing the icon size */\n\tmin-width: calc(var(--_ui5_button_base_min_width) - var(--_ui5_button_base_icon_margin) - 1rem);\n}\n:host([disabled]:active) {\n\tpointer-events: none;\n}\n:host([focused]) .ui5-button-root:after {\n\tcontent: \"\";\n\tposition: absolute;\n\tbox-sizing: border-box;\n\tleft: 0.0625rem;\n\ttop: 0.0625rem;\n\tright: 0.0625rem;\n\tbottom: 0.0625rem;\n\tborder: var(--_ui5_button_focused_border);\n\tborder-radius: var(--_ui5_button_focused_border_radius);\n}\n:host([design=\"Emphasized\"][focused]) .ui5-button-root:after {\n\tborder-color: var(--_ui5_button_emphasized_focused_border_color);\n}\n:host([design=\"Emphasized\"][focused]) .ui5-button-root:before {\n\tcontent: \"\";\n\tposition: absolute;\n\tbox-sizing: border-box;\n\tleft: 0.0625rem;\n\ttop: 0.0625rem;\n\tright: 0.0625rem;\n\tbottom: 0.0625rem;\n\tborder: var(--_ui5_button_emphasized_focused_border_before);\n\tborder-radius: var(--_ui5_button_focused_border_radius);\n}\n.ui5-button-root::-moz-focus-inner {\n\tborder: 0;\n}\nbdi {\n\tdisplay: block;\n\twhite-space: inherit;\n\toverflow: inherit;\n\ttext-overflow: inherit;\n}\n:host([ui5-button][active]:not([disabled]):not([non-interactive])) {\n\tbackground-image: none;\n\tbackground-color: var(--sapButton_Active_Background);\n\tborder-color: var(--sapButton_Active_BorderColor);\n\tcolor: var(--sapButton_Active_TextColor);\n}\n:host([design=\"Positive\"]) {\n\tbackground-color: var(--sapButton_Accept_Background);\n\tborder-color: var(--sapButton_Accept_BorderColor);\n\tcolor: var(--sapButton_Accept_TextColor);\n}\n/*The ui5_hovered class is set by FileUploader to indicate hover state of the control*/\n:host([design=\"Positive\"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),\n:host([design=\"Positive\"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered) {\n\tbackground-color: var(--sapButton_Accept_Hover_Background);\n\tborder-color: var(--sapButton_Accept_Hover_BorderColor);\n\tbox-shadow: var(--sapContent_Positive_Shadow);\n\tcolor: var(--sapButton_Accept_Hover_TextColor);\n}\n:host([ui5-button][design=\"Positive\"][active]:not([non-interactive])) {\n\tbackground-color: var(--sapButton_Accept_Active_Background);\n\tborder-color: var(--sapButton_Accept_Active_BorderColor);\n\tcolor: var(--sapButton_Accept_Active_TextColor);\n}\n:host([design=\"Negative\"]) {\n\tbackground-color: var(--sapButton_Reject_Background);\n\tborder-color: var(--sapButton_Reject_BorderColor);\n\tcolor: var(--sapButton_Reject_TextColor);\n}\n/*The ui5_hovered class is set by FileUploader to indicate hover state of the control*/\n:host([design=\"Negative\"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),\n:host([design=\"Negative\"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered) {\n\tbackground-color: var(--sapButton_Reject_Hover_Background);\n\tborder-color: var(--sapButton_Reject_Hover_BorderColor);\n\tbox-shadow: var(--sapContent_Negative_Shadow);\n\tcolor: var(--sapButton_Reject_Hover_TextColor);\n}\n:host([ui5-button][design=\"Negative\"][active]:not([non-interactive])) {\n\tbackground-color: var(--sapButton_Reject_Active_Background);\n\tborder-color: var(--sapButton_Reject_Active_BorderColor);\n\tcolor: var(--sapButton_Reject_Active_TextColor);\n}\n:host([design=\"Attention\"]) {\n\tbackground-color: var(--sapButton_Attention_Background);\n\tborder-color: var(--sapButton_Attention_BorderColor);\n\tcolor: var(--sapButton_Attention_TextColor);\n}\n/*The ui5_hovered class is set by FileUploader to indicate hover state of the control*/\n:host([design=\"Attention\"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),\n:host([design=\"Attention\"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered) {\n\tbackground-color: var(--sapButton_Attention_Hover_Background);\n\tborder-color: var(--sapButton_Attention_Hover_BorderColor);\n\tcolor: var(--sapButton_Attention_Hover_TextColor);\n\tbox-shadow: var(--sapContent_Critical_Shadow)\n}\n:host([ui5-button][design=\"Attention\"][active]:not([non-interactive])) {\n\tbackground-color: var(--sapButton_Attention_Active_Background);\n\tborder-color: var(--sapButton_Attention_Active_BorderColor);\n\tcolor: var(--sapButton_Attention_Active_TextColor);\n}\n:host([design=\"Emphasized\"]) {\n\tbackground-color: var(--sapButton_Emphasized_Background);\n\tborder-color: var(--sapButton_Emphasized_BorderColor);\n\tborder-width: var(--_ui5_button_emphasized_border_width);\n\tcolor: var(--sapButton_Emphasized_TextColor);\n\tfont-weight: var(--_ui5_button_emphasized_font_weight);\n}\n/*The ui5_hovered class is set by FileUploader to indicate hover state of the control*/\n:host([design=\"Emphasized\"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),\n:host([design=\"Emphasized\"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered) {\n\tbackground-color: var(--sapButton_Emphasized_Hover_Background);\n\tborder-color: var(--sapButton_Emphasized_Hover_BorderColor);\n\tborder-width: var(--_ui5_button_emphasized_border_width);\n\tcolor: var(--sapButton_Emphasized_Hover_TextColor);\n\tbox-shadow: none;\n}\n:host([ui5-button][design=\"Empasized\"][active]:not([non-interactive])) {\n\tbackground-color: var(--sapButton_Emphasized_Active_Background);\n\tborder-color: var(--sapButton_Emphasized_Active_BorderColor);\n\tcolor: var(--sapButton_Emphasized_Active_TextColor);\n}\n:host([design=\"Emphasized\"][focused]) .ui5-button-root:after {\n\tborder-color: var(--sapContent_ContrastFocusColor);\n\toutline: none;\n}\n:host([design=\"Transparent\"]) {\n\tbackground-color: var(--sapButton_Lite_Background);\n\tcolor: var(--sapButton_Lite_TextColor);\n\tborder-color: var(--sapButton_Lite_BorderColor);\n}\n/*The ui5_hovered class is set by FileUploader to indicate hover state of the control*/\n:host([design=\"Transparent\"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),\n:host([design=\"Transparent\"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered) {\n\tbackground-color: var(--sapButton_Lite_Hover_Background);\n\tborder-color: var(--sapButton_Lite_Hover_BorderColor);\n\tbox-shadow: var(--sapContent_Interaction_Shadow);\n\tcolor: var(--sapButton_Lite_Hover_TextColor);\n}\n:host([ui5-button][design=\"Transparent\"][active]:not([non-interactive])) {\n\tbackground-color: var(--sapButton_Lite_Active_Background);\n\tborder-color: var(--sapButton_Lite_Active_BorderColor);\n\tcolor: var(--sapButton_Active_TextColor);\n}\n/* SegmentedButton and ToggleButton */\n:host([ui5-segmented-button-item][active][focused]) .ui5-button-root:after,\n:host([pressed][focused]) .ui5-button-root:after {\n\tborder-color: var(--_ui5_button_pressed_focused_border_color);\n\toutline: none;\n}\n:host([ui5-segmented-button-item][focused]:not(:last-child)) .ui5-button-root:after {\n\tborder-top-right-radius: var(--_ui5_button_focused_inner_border_radius);\n\tborder-bottom-right-radius: var(--_ui5_button_focused_inner_border_radius);\n}\n:host([ui5-segmented-button-item][focused]:not(:first-child)) .ui5-button-root:after {\n\tborder-top-left-radius: var(--_ui5_button_focused_inner_border_radius);\n\tborder-bottom-left-radius: var(--_ui5_button_focused_inner_border_radius);\n}\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/Calendar.css",
|
16
|
-
content: ":host(:not([hidden])){display:inline-block}.ui5-cal-root{background:var(--sapList_Background)
|
16
|
+
content: ":host(:not([hidden])) {\n display: inline-block;\n}\n\n.ui5-cal-root {\n background: var(--sapList_Background);\n box-sizing: border-box;\n height: var(--_ui5_calendar_height);\n width: var(--_ui5_calendar_width);\n padding: var(--_ui5_calendar_top_bottom_padding) var(--_ui5_calendar_left_right_padding) 0;\n display: flex;\n flex-direction: column-reverse;\n justify-content: flex-end;\n}\n\n.ui5-cal-root [ui5-calendar-header] {\n height: var(--_ui5_calendar_header_height);\n font-family: var(--_ui5_button_fontFamily);\n}\n\n.ui5-cal-root .ui5-cal-content {\n padding: 0 var(--_ui5_calendar_left_right_padding) var(--_ui5_calendar_top_bottom_padding);\n}"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/CalendarHeader.css",
|
16
|
-
content: ":host{
|
16
|
+
content: ":host {\n\tdisplay: block;\n\twidth: 100%;\n\theight: 100%;\n}\n\n.ui5-calheader-root {\n\tdisplay: flex;\n\theight: 100%;\n\tpadding: var(--_ui5_calendar_header_padding);\n\tbox-sizing: border-box;\n}\n\n.ui5-calheader-arrowbtn {\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\twidth: var(--_ui5_calendar_header_arrow_button_width);\n\tbackground-color: var(--sapButton_Lite_Background);\n\tcolor: var(--sapButton_Lite_TextColor);\n\tcursor: pointer;\n\toverflow: hidden;\n\twhite-space: nowrap;\n\tpadding: 0;\n\tfont-size: var(--sapFontSize);\n\tuser-select: none;\n}\n\n.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:hover,\n.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:active,\n.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:focus,\n.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled {\n\tpointer-events: none;\n\topacity: 0.4;\n\toutline: none;\n\tbackground-color: var(--sapButton_Lite_Background);\n\tcolor: var(--sapButton_Lite_TextColor);\n}\n\n[hidden].ui5-calheader-arrowbtn.ui5-calheader-middlebtn {\n\tdisplay: none;\n}\n\n.ui5-calheader-arrowbtn:focus {\n\toutline: none;\n}\n\n.ui5-calheader-arrowbtn:hover {\n\tbackground-color: var(--sapButton_Hover_Background);\n\tcolor: var(--sapButton_Lite_TextColor);\n\tbox-shadow: var(--_ui5_calendar_header_arrow_button_box_shadow);\n}\n\n.ui5-calheader-arrowbtn:active {\n\tbackground-color: var(--sapButton_Active_Background);\n\tcolor: var(--sapButton_Active_TextColor);\n}\n\n.ui5-calheader-arrowbtn,\n.ui5-calheader-middlebtn {\n\tborder: var(--_ui5_calendar_header_arrow_button_border);\n\tborder-radius: var(--_ui5_calendar_header_arrow_button_border_radius);\n\tdisplay:flex;\n\tbackground-color: var(--sapButton_Lite_Background);\n\tborder-color: var(--sapButton_Lite_BorderColor);\n}\n\n.ui5-calheader-middlebtn {\n\tflex-direction: column;\n\talign-items: center;\n\tjustify-content:center;\n}\n\n.ui5-calheader-arrowbtn:not(:active) .ui5-calheader-btn-sectext {\n\tcolor: var(--sapNeutralElementColor);\n\tfont-size: var(--sapFontSmallSize);\n}\n\n.ui5-calheader-arrowicon {\n\tcolor: currentColor;\n\tpointer-events: none;\n}\n\n.ui5-calheader-midcontainer {\n\tdisplay: flex;\n\tjustify-content: space-around;\n\tflex: 1 1 auto;\n\tpadding: 0 0.5rem;\n}\n\n.ui5-calheader-midcontainer .ui5-calheader-middlebtn:first-child {\n\tmargin-inline-end: 0.5rem;\n}\n\n.ui5-calheader-middlebtn {\n\tfont-family: var(--_ui5_button_fontFamily);\n\twidth: var(--_ui5_calendar_header_middle_button_width);\n\tflex: var(--_ui5_calendar_header_middle_button_flex);\n\tposition: relative;\n\tbox-sizing: border-box;\n\t-webkit-user-select: none;\n\t-moz-user-select: none;\n\tuser-select: none;\n}\n\n.ui5-calheader-middlebtn:focus {\n\tborder: var(--_ui5_calendar_header_middle_button_focus_border);\n\tborder-radius: var(--_ui5_calendar_header_middle_button_focus_border_radius);\n\toutline: var(--_ui5_calendar_header_middle_button_focus_outline);\n\toutline-offset: -0.125rem;\n\tbackground: var(--_ui5_calendar_header_middle_button_focus_background);\n}\n\n.ui5-calheader-middlebtn:focus:active {\n\toutline: var(--_ui5_calendar_header_middle_button_focus_active_outline);\n\toutline-offset: -0.0625rem;\n\tbackground: var(--_ui5_calendar_header_middle_button_focus_active_background)\n}\n\n.ui5-calheader-middlebtn:focus::after {\n\tcontent: \"\";\n\tdisplay: var(--_ui5_calendar_header_middle_button_focus_after_display);\n\twidth: var(--_ui5_calendar_header_middle_button_focus_after_width);\n\theight: var(--_ui5_calendar_header_middle_button_focus_after_height);\n\tborder: var(--_ui5_calendar_header_middle_button_focus_after_border);\n\tposition: absolute;\n\ttop: var(--_ui5_calendar_header_middle_button_focus_after_top_offset);\n\tleft: var(--_ui5_calendar_header_middle_button_focus_after_left_offset);\n}\n\n.ui5-calheader-middlebtn:focus:active::after {\n\tborder-color: var(--sapContent_ContrastFocusColor);\n}\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/Card.css",
|
16
|
-
content: ".ui5-hidden-text{
|
16
|
+
content: ".ui5-hidden-text {\n\tposition: absolute;\n\tclip: rect(1px,1px,1px,1px);\n\tuser-select: none;\n\tleft: -1000px; /* ensure the invisible texts are never part of the viewport */\n\ttop: -1000px;\n\tpointer-events: none;\n\tfont-size: 0;\n}\n\n:host(:not([hidden])) {\n\tdisplay: inline-block;\n\twidth: 100%;\n}\n\n.ui5-card-root {\n\twidth: 100%;\n\theight: 100%;\n\tcolor: var(--sapGroup_TitleTextColor);\n\tbackground: var(--sapTile_Background);\n\tbox-shadow: var(--_ui5_card_box_shadow);\n\tborder-radius: var(--_ui5_card_border-radius);\n\tborder: var(--_ui5_card_border);\n\toverflow: hidden;\n\tfont-family: \"72override\", var(--sapFontFamily);\n\tfont-size: var(--sapFontSize);\n\tbox-sizing: border-box;\n}\n\n.ui5-card-root.ui5-card--interactive:hover {\n\tbox-shadow: var(--_ui5_card_hover_box_shadow);\n}\n\n.ui5-card-root.ui5-card--interactive:active {\n\tbox-shadow: var(--_ui5_card_box_shadow);\n}\n\n/* Card with no content */\n\n.ui5-card-root.ui5-card--nocontent {\n\theight: auto;\n}\n\n.ui5-card-root.ui5-card--nocontent .ui5-card-header-root {\n border-bottom: none;\n}\n\n.ui5-card--nocontent ::slotted([ui5-card-header]) {\n\t--_ui5_card_header_focus_bottom_radius: var(--_ui5_card_header_focus_radius);\n}\n\n.ui5-card-root .ui5-card-header-root {\n\tborder-bottom: var(--_ui5_card_header_border);\n}\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/CardHeader.css",
|
16
|
-
content: ".ui5-hidden-text{
|
16
|
+
content: ".ui5-hidden-text {\n\tposition: absolute;\n\tclip: rect(1px,1px,1px,1px);\n\tuser-select: none;\n\tleft: -1000px; /* ensure the invisible texts are never part of the viewport */\n\ttop: -1000px;\n\tpointer-events: none;\n\tfont-size: 0;\n}\n\n.ui5-card-header {\n\tposition: relative;\n\tdisplay: flex;\n\talign-items: center;\n\tpadding: var(--_ui5_card_header_padding);\n\toutline: none;\n}\n\n:host([subtitleText]) .ui5-card-header {\n\talign-items: flex-start;\n}\n\n.ui5-card-header.ui5-card-header-ff:not(.ui5-card-header-hide-focus):focus-within:before {\n\toutline: none;\n\tcontent: \"\";\n\tposition: absolute;\n\tborder: var(--_ui5_card_header_focus_border);\n\tpointer-events: none;\n\ttop: var(--_ui5_card_header_focus_offset);\n\tleft: var(--_ui5_card_header_focus_offset);\n\tright: var(--_ui5_card_header_focus_offset);\n\tbottom: var(--_ui5_card_header_focus_offset);\n\tborder-top-left-radius: var(--_ui5_card_header_focus_radius);\n\tborder-top-right-radius: var(--_ui5_card_header_focus_radius);\n\tborder-bottom-left-radius: var(--_ui5_card_header_focus_bottom_radius);\n\tborder-bottom-right-radius: var(--_ui5_card_header_focus_bottom_radius);\n}\n\n/* cannot be combined with the above style, because :has selector breaks the whole style if FF */\n\n.ui5-card-header:not(.ui5-card-header-ff):not(.ui5-card-header-hide-focus):has(.ui5-card-header-focusable-element:focus-visible):before {\n\toutline: none;\n\tcontent: \"\";\n\tposition: absolute;\n\tborder: var(--_ui5_card_header_focus_border);\n\tpointer-events: none;\n\ttop: var(--_ui5_card_header_focus_offset);\n\tleft: var(--_ui5_card_header_focus_offset);\n\tright: var(--_ui5_card_header_focus_offset);\n\tbottom: var(--_ui5_card_header_focus_offset);\n\tborder-top-left-radius: var(--_ui5_card_header_focus_radius);\n\tborder-top-right-radius: var(--_ui5_card_header_focus_radius);\n\tborder-bottom-left-radius: var(--_ui5_card_header_focus_bottom_radius);\n\tborder-bottom-right-radius: var(--_ui5_card_header_focus_bottom_radius);\n}\n\n.ui5-card-header-focusable-element {\n\toutline: none;\n}\n\n.ui5-card-header-focusable-element {\n\tdisplay: inherit;\n\talign-items: inherit;\n\tflex: 1;\n}\n\n.ui5-card-header.ui5-card-header--interactive:hover {\n\tcursor: pointer;\n\tbackground: var(--_ui5_card_header_hover_bg);\n}\n\n.ui5-card-header.ui5-card-header--active,\n.ui5-card-header.ui5-card-header--interactive:active {\n\tbackground: var(--_ui5_card_header_active_bg);\n}\n\n.ui5-card-header .ui5-card-header-text {\n\tflex: 1;\n\tpointer-events: none;\n}\n\n.ui5-card-header-first-line {\n\tdisplay: flex;\n\tflex-flow: row;\n\tjustify-content: space-between;\n}\n\n.ui5-card-header-status {\n\tflex: none;\n}\n\n.ui5-card-header .ui5-card-header-avatar {\n\theight: 3rem;\n\twidth: 3rem;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\tmargin-inline-end: .75rem;\n\tpointer-events: none;\n\talign-self: flex-start;\n}\n\n::slotted([ui5-icon]) {\n\twidth: 1.5rem;\n\theight: 1.5rem;\n\tcolor: var(--sapTile_IconColor);\n}\n\n::slotted(img[slot=\"avatar\"]) {\n\twidth: 100%;\n\theight: 100%;\n\tborder-radius: 50%;\n}\n\n.ui5-card-header .ui5-card-header-status {\n\tdisplay: inline-block;\n\tfont-family: \"72override\", var(--sapFontFamily);\n\tfont-size: var(--sapFontSmallSize);\n\tcolor: var(--sapTile_TextColor);\n\ttext-align: left;\n\ttext-overflow: ellipsis;\n\toverflow: hidden;\n\twhite-space: nowrap;\n\tvertical-align: middle;\n\tmargin-inline-start: 1rem;\n\tmargin-block-start: 0.125rem;\n}\n\n.ui5-card-header .ui5-card-header-text .ui5-card-header-title {\n\tfont-family: var(--_ui5_card_header_title_font_family);\n\tfont-size: var(--_ui5_card_header_title_font_size);\n\tfont-weight: var(--_ui5_card_header_title_font_weight);\n\tcolor: var(--sapTile_TitleTextColor);\n\tmax-height: 3.5rem;\n\talign-self: flex-end;\n}\n\n.ui5-card-header .ui5-card-header-text .ui5-card-header-subtitle {\n\tfont-family: \"72override\", var(--sapFontFamily);\n\tfont-size: var(--sapFontSize);\n\tfont-weight: normal;\n\tcolor: var(--sapTile_TextColor);\n\tmargin-top: var(--_ui5_card_header_subtitle_margin_top);\n\tmax-height: 2.1rem;\n}\n\n.ui5-card-header .ui5-card-header-text .ui5-card-header-title,\n.ui5-card-header .ui5-card-header-text .ui5-card-header-subtitle {\n\ttext-align: start;\n\ttext-overflow: ellipsis;\n\twhite-space: normal;\n\tword-wrap: break-word;\n\toverflow: hidden;\n\t-webkit-line-clamp: 2;\n\t-webkit-box-orient: vertical;\n\tdisplay: -webkit-box;\n\tmax-width: 100%;\n}\n\n.ui5-card-header .ui5-card-header-text .ui5-card-header-title {\n\t-webkit-line-clamp: 3;\n}\n\n.ui5-card-header-action {\n\tdisplay: flex;\n\tpadding-inline-start: 1rem;\n\talign-self: flex-start;\n}"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/Carousel.css",
|
16
|
-
content: ":host(:not([hidden])){display:inline-block}:host{width:100
|
16
|
+
content: ":host(:not([hidden])) {\n display: inline-block;\n}\n\n:host {\n width: 100%;\n min-width: 15.5rem;\n height: 100%;\n}\n\n.ui5-carousel-root:focus-visible {\n outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);\n}\n\n.ui5-carousel-root {\n height: inherit;\n position: relative;\n display: flex;\n flex-direction: column;\n align-items: center;\n background: var(--ui5_carousel_background_color_translucent);\n}\n\n.ui5-carousel-background-solid {\n background: var(--ui5_carousel_background_color_solid);\n}\n\n.ui5-carousel-background-transparent {\n background: transparent;\n}\n\n.ui5-carousel-viewport {\n width: 100%;\n height: inherit;\n position: relative;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n overflow: hidden;\n padding: 1px;\n flex: 1;\n min-height: 0;\n}\n\n.ui5-carousel-viewport.ui5-carousel-viewport--single {\n align-items: center;\n}\n\n.ui5-carousel-content {\n height: 100%;\n position: relative;\n display: flex;\n flex-direction: row;\n flex-wrap: nowrap;\n transition: transform 0.5s cubic-bezier(.46, 0, .44, 1);\n will-change: transform;\n}\n\n.ui5-carousel-content.ui5-carousel-content-no-animation {\n transition: none;\n}\n\n.ui5-carousel-content.ui5-carousel-content-has-navigation {\n height: calc(100% - 1rem);\n}\n\n.ui5-carousel-item {\n height: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 0 0.75rem;\n box-sizing: border-box;\n transition: opacity 0.5s linear;\n will-change: opacity;\n}\n\n.ui5-carousel-item--hidden {\n opacity: 0;\n}\n\n.ui5-carousel-navigation-arrows {\n width: 100%;\n padding: 0 0.5rem;\n position: absolute;\n top: calc(50% - var(--ui5_carousel_button_size) / 2);\n left: 0;\n display: flex;\n justify-content: space-between;\n box-sizing: border-box;\n pointer-events: none;\n}\n\n.ui5-carousel-navigation-arrows > [ui5-button] {\n pointer-events: all;\n}\n\n.ui5-carousel-navigation-wrapper {\n width: 100%;\n height: 2.75rem;\n display: flex;\n flex-wrap: nowrap;\n justify-content: center;\n align-items: center;\n box-sizing: border-box;\n}\n\n.ui5-carousel-navigation-wrapper-bg-solid {\n background: var(--sapPageFooter_Background);\n}\n\n.ui5-carousel-navigation-wrapper-bg-translucent {\n background: var(--ui5_carousel_background_color_translucent);\n}\n\n.ui5-carousel-navigation-wrapper-bg-transparent {\n background: transparent;\n}\n\n.ui5-carousel-navigation-wrapper-border-solid {\n border-top: var(--sapElement_BorderWidth) solid var(--sapList_BorderColor);\n}\n\n.ui5-carousel-navigation-wrapper.ui5-carousel-navigation-with-buttons {\n height: 3.5rem;\n}\n\n.ui5-carousel-navigation-button {\n width: var(--ui5_carousel_button_size);\n height: var(--ui5_carousel_button_size);\n border-radius: 50%;\n box-shadow: none;\n cursor: pointer;\n outline-offset: .1rem;\n --_ui5_button_focused_border_radius: 50%;\n}\n\n.ui5-carousel-navigation-arrows .ui5-carousel-navigation-button {\n box-shadow: var(--sapContent_Shadow1);\n}\n\n.ui5-carousel-navigation-button--hidden {\n visibility: hidden;\n padding: 0;\n}\n\n.ui5-carousel-navigation {\n width: 9rem;\n height: 2rem;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n.ui5-carousel-navigation-dot {\n box-sizing: border-box;\n width: var(--ui5_carousel_inactive_dot_size);\n height: var(--ui5_carousel_inactive_dot_size);\n margin: var(--ui5_carousel_inactive_dot_margin);\n border-radius: 50%;\n background-color: var(--ui5_carousel_inactive_dot_background);\n border: var(--ui5_carousel_inactive_dot_border);\n transition: background-color .1s ease-in;\n}\n\n.ui5-carousel-navigation-dot[active] {\n width: .5rem;\n height: .5rem;\n margin: 0 .25rem;\n background-color: var(--ui5_carousel_active_dot_background);\n border: var(--ui5_carousel_active_dot_border);\n}\n\n.ui5-carousel-navigation-text {\n font-family: var(--sapFontFamily);\n font-size: var(--sapFontSize);\n font-weight: normal;\n color: var(--sapPageFooter_TextColor);\n white-space: nowrap;\n overflow: hidden;\n text-align: center;\n text-overflow: ellipsis;\n}\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/CheckBox.css",
|
16
|
-
content: ".ui5-hidden-text{
|
16
|
+
content: ".ui5-hidden-text {\n\tposition: absolute;\n\tclip: rect(1px,1px,1px,1px);\n\tuser-select: none;\n\tleft: -1000px; /* ensure the invisible texts are never part of the viewport */\n\ttop: -1000px;\n\tpointer-events: none;\n\tfont-size: 0;\n}\n:host {\n\t-webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n:host(:not([hidden])) {\n\tdisplay: inline-block;\n}\n:host {\n\toverflow: hidden;\n\tmax-width: 100%;\n\toutline: none;\n\tborder-radius: var(--_ui5_checkbox_border_radius);\n\ttransition: var(--_ui5_checkbox_transition);\n\tcursor: pointer;\n}\n/* disabled */\n:host([disabled]) {\n\tcursor: default;\n}\n:host([disabled]) .ui5-checkbox-root {\n\topacity: var(--_ui5_checkbox_disabled_opacity);\n}\n:host([disabled]) .ui5-checkbox-inner {\n\tborder-color: var(--_ui5_checkbox_inner_disabled_border_color);\n}\n:host([disabled]) .ui5-checkbox-label {\n\tcolor: var(--_ui5_checkbox_disabled_label_color);\n}\n/* readonly */\n:host([readonly]:not([value-state=\"Warning\"]):not([value-state=\"Error\"])) .ui5-checkbox-inner {\n\tbackground: var(--sapField_ReadOnly_Background);\n\tborder: var(--_ui5_checkbox_inner_readonly_border);\n\tcolor: var(--sapField_TextColor);\n}\n/* wrap */\n:host([wrapping-type=\"Normal\"][text]) .ui5-checkbox-root {\n\tmin-height: auto;\n\tbox-sizing: border-box;\n\talign-items: flex-start;\n\tpadding-top: var(--_ui5_checkbox_root_side_padding);\n\tpadding-bottom: var(--_ui5_checkbox_root_side_padding);\n}\n:host([wrapping-type=\"Normal\"][text]) .ui5-checkbox-root .ui5-checkbox-inner,\n:host([wrapping-type=\"Normal\"][text]) .ui5-checkbox-root .ui5-checkbox-label {\n\tmargin-top: var(--_ui5_checkbox_wrapped_content_margin_top);\n}\n:host([wrapping-type=\"Normal\"][text]) .ui5-checkbox-root .ui5-checkbox-label {\n\toverflow-wrap: break-word;\n\talign-self: center;\n}\n:host([wrapping-type=\"Normal\"]) .ui5-checkbox-root:focus::before {\n\tbottom: var(--_ui5_checkbox_wrapped_focus_left_top_bottom_position);\n}\n/* value states */\n:host([value-state=\"Error\"]) .ui5-checkbox-inner,\n:host([value-state=\"Error\"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner {\n\tbackground: var(--sapField_InvalidBackground);\n\tborder: var(--_ui5_checkbox_inner_error_border);\n\tcolor: var(--sapField_InvalidColor);\n}\n:host([value-state=\"Error\"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner {\n\tbackground: var(--_ui5_checkbox_inner_error_background_hover);\n}\n:host([value-state=\"Warning\"]) .ui5-checkbox-inner,\n:host([value-state=\"Warning\"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner {\n\tbackground: var(--sapField_WarningBackground);\n\tborder: var(--_ui5_checkbox_inner_warning_border);\n\tcolor: var(--_ui5_checkbox_inner_warning_color);\n}\n:host([value-state=\"Warning\"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner {\n\tbackground: var(--_ui5_checkbox_inner_warning_background_hover);\n}\n:host([value-state=\"Information\"]) .ui5-checkbox-inner,\n:host([value-state=\"Information\"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner {\n\tbackground: var(--sapField_InformationBackground);\n\tborder: var(--_ui5_checkbox_inner_information_border);\n\tcolor: var(--_ui5_checkbox_inner_information_color);\n}\n:host([value-state=\"Information\"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner {\n\tbackground: var(--_ui5_checkbox_inner_information_background_hover);\n}\n:host([value-state=\"Success\"]) .ui5-checkbox-inner,\n:host([value-state=\"Success\"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner {\n\tbackground: var(--sapField_SuccessBackground);\n\tborder: var(--_ui5_checkbox_inner_success_border);\n\tcolor: var(--sapField_SuccessColor);\n}\n:host([value-state=\"Success\"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner {\n\tbackground: var(--_ui5_checkbox_inner_success_background_hover);\n}\n:host([value-state=\"Warning\"]) .ui5-checkbox-icon,\n:host([value-state=\"Warning\"][indeterminate]) .ui5-checkbox-inner::after {\n\tcolor: var(--_ui5_checkbox_checkmark_warning_color);\n}\n:host([text]) .ui5-checkbox-root {\n\tpadding-inline-end: var(--_ui5_checkbox_right_focus_distance);\n}\n:host([text]) .ui5-checkbox-root:focus::before {\n\tinset-inline-end: 0;\n}\n.ui5-checkbox-root {\n\tposition: relative;\n\tdisplay: inline-flex;\n\talign-items: center;\n\twidth: 100%;\n\tmin-height: var(--_ui5_checkbox_width_height);\n\tmin-width: var(--_ui5_checkbox_width_height);\n\tpadding: 0 var(--_ui5_checkbox_wrapper_padding);\n\tbox-sizing: border-box;\n\toutline: none;\n\ttransition: var(--_ui5_checkbox_transition);\n\tborder: var(--_ui5_checkbox_default_focus_border);\n\tborder-radius: var(--_ui5_checkbox_border_radius);\n\tbox-sizing: border-box;\n}\n/* focused */\n.ui5-checkbox-root:focus::before {\n\tdisplay: var(--_ui5_checkbox_focus_outline_display);\n\tcontent: \"\";\n\tposition: absolute;\n\tinset-inline: var(--_ui5_checkbox_focus_position);\n\tinset-block: var(--_ui5_checkbox_focus_position);\n\tborder: var(--_ui5_checkbox_focus_outline);\n\tborder-radius: var(--_ui5_checkbox_focus_border_radius);\n}\n:host .ui5-checkbox-root:focus {\n\tborder: var(--_ui5_checkbox_focus_border);\n\tborder-radius: 0.5rem;\n}\n/* hover */\n:host(:hover:not([disabled])) {\n\tbackground: var(--_ui5_checkbox_outer_hover_background);\n}\n.ui5-checkbox--hoverable .ui5-checkbox-label:hover {\n\tcolor: var(--_ui5_checkbox_label_color);\n}\n/* hover, not active, not checked */\n:host(:not([active]):not([checked]):not([value-state])) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner,\n:host(:not([active]):not([checked])[value-state=\"None\"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner {\n\tbackground: var(--_ui5_checkbox_hover_background);\n\tborder-color: var(--_ui5_checkbox_inner_hover_border_color);\n}\n/* hover, not active, checked */\n:host(:not([active])[checked]:not([value-state])) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner,\n:host(:not([active])[checked][value-state=\"None\"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner {\n\tbackground: var(--_ui5_checkbox_hover_background);\n\tborder-color: var(--_ui5_checkbox_inner_hover_checked_border_color);\n}\n/* checked */\n:host([checked]:not([value-state])) .ui5-checkbox-inner,\n:host([checked][value-state=\"None\"]) .ui5-checkbox-inner {\n\tborder-color: var(--_ui5_checkbox_inner_selected_border_color);\n}\n/* active, not checked */\n:host([active]:not([checked]):not([value-state]):not([disabled])) .ui5-checkbox-inner,\n:host([active]:not([checked])[value-state=\"None\"]:not([disabled])) .ui5-checkbox-inner {\n\tborder-color: var(--_ui5_checkbox_inner_active_border_color);\n\tbackground-color: var(--_ui5_checkbox_active_background);\n}\n/* active, checked */\n:host([active][checked]:not([value-state]):not([disabled])) .ui5-checkbox-inner,\n:host([active][checked][value-state=\"None\"]:not([disabled])) .ui5-checkbox-inner {\n\tborder-color: var(--_ui5_checkbox_inner_selected_border_color);\n\tbackground-color: var(--_ui5_checkbox_active_background);\n}\n.ui5-checkbox-inner {\n\tmin-width: var(--_ui5_checkbox_inner_width_height);\n\tmax-width: var(--_ui5_checkbox_inner_width_height);\n\theight: var(--_ui5_checkbox_inner_width_height);\n\tmax-height: var(--_ui5_checkbox_inner_width_height);\n\tborder: var(--_ui5_checkbox_inner_border);\n\tborder-radius: var(--_ui5_checkbox_inner_border_radius);\n\tbackground: var(--_ui5_checkbox_inner_background);\n\tcolor: var(--_ui5_checkbox_checkmark_color);\n\tbox-sizing: border-box;\n\tposition: relative;\n\tcursor: inherit;\n}\n:host([indeterminate][checked]) .ui5-checkbox-inner::after {\n\tcontent: \"\";\n\tbackground-color: currentColor;\n\tposition: absolute;\n\tleft:50%;\n\ttop:50%;\n\ttransform: translate(-50%, -50%);\n\twidth: var(--_ui5_checkbox_partially_icon_size);\n\theight: var(--_ui5_checkbox_partially_icon_size);\n}\n.ui5-checkbox-inner input {\n\t-webkit-appearance: none;\n\tvisibility: hidden;\n\twidth: 0;\n\tleft: 0;\n\tposition: absolute;\n\tfont-size: inherit;\n}\n.ui5-checkbox-root .ui5-checkbox-label {\n\tmargin-inline-start: var(--_ui5_checkbox_label_offset);\n\tcursor: inherit;\n\ttext-overflow: ellipsis;\n\toverflow: hidden;\n\tpointer-events: none;\n\tuser-select: none;\n\t-webkit-user-select: none;\n\tcolor: var(--_ui5_checkbox_label_color);\n}\n.ui5-checkbox-icon {\n\twidth: var(--_ui5_checkbox_icon_size);\n\theight: var(--_ui5_checkbox_icon_size);\n\tcolor: currentColor;\n\tcursor: inherit;\n\tposition: absolute;\n\tleft:50%;\n\ttop:50%;\n\ttransform: translate(-50%, -50%);\n}\n\n\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/ColorPalette.css",
|
16
|
-
content: ":host(:not([hidden])){
|
16
|
+
content: ":host(:not([hidden])) {\n\tdisplay: inline-block;\n}\n\n:host(:not([hidden])[popup-mode]) {\n\twidth: 100%;\n}\n\n.ui5-cp-root {\n\tdisplay: flex;\n\tflex-direction: column;\n}\n\n.ui5-cp-root.ui5-cp-root-phone,\n.ui5-cp-separator,\n.ui5-cp-root.ui5-cp-root-phone .ui5-cp-more-colors-wrapper,\n.ui5-cp-root.ui5-cp-root-phone .ui5-cp-default-color-button-wrapper,\n.ui5-cp-recent-colors-wrapper {\n\twidth: 100%;\n}\n\n.ui5-cp-root.ui5-cp-root-phone .ui5-cp-item-container {\n\twidth: 18.5rem;\n\tmax-width: 19.5rem;\n\tmax-height: 13rem;\n\tpadding: 0.375rem 0.625rem;\n}\n\n.ui5-cp-recent-colors-wrapper {\n\tdisplay: flex;\n\talign-items: center;\n\tflex-direction: column;\n}\n\n.ui5-cp-root.ui5-cp-root-phone {\n\tdisplay: flex;\n\talign-items: center;\n}\n\n.ui5-cp-item-container {\n\tdisplay: flex;\n\tmax-width: var(--_ui5_color-palette-row-width);\n\tflex-flow: wrap;\n\tmax-height: var(--_ui5_color-palette-row-height);\n\toverflow: hidden;\n\tpadding: var(--_ui5_color-palette-swatch-container-padding);\n}\n\n.ui5-cp-separator {\n\theight: 0.0625rem;\n\tbackground: var(--sapToolbar_SeparatorColor);\n}\n\n.ui5-cp-more-colors,\n.ui5-cp-default-color-button {\n\twidth: 100%;\n\theight: var(--_ui5_color-palette-button-height);\n\ttext-align: center;\n\tborder: none;\n}\n\n.ui5-cp-more-colors-wrapper,\n.ui5-cp-default-color-button-wrapper {\n\tdisplay: flex;\n\tflex-direction: column;\n}\n\n.ui5-cp-separator {\n\theight: 0.0625rem;\n\tbackground: var(--sapToolbar_SeparatorColor);\n}\n\n.ui5-cp-default-color-button,\n.ui5-cp-more-colors {\n\tpadding: 0.0625rem;\n}"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/ColorPaletteItem.css",
|
16
|
-
content: ":host(:not([hidden])){
|
16
|
+
content: ":host(:not([hidden])) {\n\theight: var(--_ui5_color-palette-item-height);\n\twidth: var(--_ui5_color-palette-item-height);\n\tborder: 1px solid var(--sapContent_ForegroundBorderColor);\n\tborder-radius: var(--_ui5_color-palette-item-outer-border-radius);\n\tdisplay: inline-block;\n\tmargin: var(--_ui5_color-palette-item-margin);\n\tbox-sizing: border-box;\n}\n\n:host(:not([_disabled]):hover) {\n\theight: var(--_ui5_color-palette-item-hover-height);\n\twidth: var(--_ui5_color-palette-item-hover-height);\n\tmargin: var(--_ui5_color-palette-item-hover-margin);\n\tborder-radius: var(--_ui5_color-palette-item-hover-outer-border-radius);\n}\n\n:host(:not([hidden])[phone]) {\n\theight: 2.75rem;\n\twidth: 2.75rem;\n\tborder: 1px solid var(--sapContent_ForegroundBorderColor);\n\tborder-radius: 0.25rem;\n\tdisplay: inline-block;\n\tmargin: 0.375rem;\n}\n\n.ui5-cp-item {\n\tposition: relative;\n\tbox-sizing: border-box;\n\tborder-radius: var(--_ui5_color-palette-item-inner-border-radius);\n\twidth: 100%;\n\theight: 100%;\n}\n\n:host(:not([_disabled]):not([phone]):hover) .ui5-cp-item {\n\tborder-radius: var(--_ui5_color-palette-item-hover-inner-border-radius);\n}\n\n:host(:not([_disabled])[phone]) .ui5-cp-item {\n\tborder-radius: 0.1875rem;\n}\n\n.ui5-cp-item:hover:not(:focus) {\n\tborder: 1px solid var(--sapGroup_ContentBackground);\n\tborder-radius: var(--_ui5_color-palette-item-hover-inner-border-radius);\n\tbox-sizing: border-box;\n}\n\n:host(:not([_disabled]):not([phone])) .ui5-cp-item:focus{\n\toutline: none;\n}\n\n:host(:not([_disabled]):not([phone]):focus) .ui5-cp-item {\n\tpointer-events: none;\n}\n\n:host(:not([_disabled]):not([phone])) .ui5-cp-item:focus:not(:hover)::before {\n\tcontent: \"\";\n\tbox-sizing: border-box;\n\tposition: absolute;\n\tleft: var(--_ui5_color-palette-item-before-focus-offset);\n\ttop: var(--_ui5_color-palette-item-before-focus-offset);\n\tright: var(--_ui5_color-palette-item-before-focus-offset);\n\tbottom: var(--_ui5_color-palette-item-before-focus-offset);\n\tborder: var(--_ui5_color-palette-item-before-focus-color);\n\tborder-radius: var(--_ui5_color-palette-item-before-focus-border-radius);\n\tpointer-events: none;\n}\n\n:host(:not([_disabled])) .ui5-cp-item:focus:not(:hover)::after {\n\tcontent: \"\";\n\tbox-sizing: border-box;\n\tposition: absolute;\n\tleft: var(--_ui5_color-palette-item-after-focus-offset);\n\ttop: var(--_ui5_color-palette-item-after-focus-offset);\n\tright: var(--_ui5_color-palette-item-after-focus-offset);\n\tbottom: var(--_ui5_color-palette-item-after-focus-offset);\n\tborder: var(--_ui5_color-palette-item-after-focus-color);\n\tborder-radius: var(--_ui5_color-palette-item-after-focus-border-radius);\n\tpointer-events: none;\n}\n\n:host(:not([_disabled]):not([phone]):hover:focus) .ui5-cp-item:focus:not(:hover)::before {\n\tcontent: \"\";\n\tbox-sizing: border-box;\n\tposition: absolute;\n\tleft: var(--_ui5_color-palette-item-before-focus-hover-offset);\n\ttop: var(--_ui5_color-palette-item-before-focus-hover-offset);\n\tright: var(--_ui5_color-palette-item-before-focus-hover-offset);\n\tbottom: var(--_ui5_color-palette-item-before-focus-hover-offset);\n\tborder: var(--_ui5_color-palette-item-before-focus-color);\n\tborder-radius: var(--_ui5_color-palette-item-before-focus-border-radius);\n\tpointer-events: none;\n}\n\n:host(:not([_disabled]):not([phone]):hover:focus) .ui5-cp-item:focus:not(:hover)::after {\n\tcontent: \"\";\n\tbox-sizing: border-box;\n\tposition: absolute;\n\tleft: var(--_ui5_color-palette-item-after-focus-hover-offset);\n\ttop: var(--_ui5_color-palette-item-after-focus-hover-offset);\n\tright: var(--_ui5_color-palette-item-after-focus-hover-offset);\n\tbottom: var(--_ui5_color-palette-item-after-focus-hover-offset);\n\tborder: var(--_ui5_color-palette-item-after-focus-color);\n\tborder-radius: var(--_ui5_color-palette-item-after-focus-border-radius);\n\tpointer-events: none;\n}\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/ColorPalettePopover.css",
|
16
|
-
content: ".ui5-cp-header{
|
16
|
+
content: ".ui5-cp-header {\n\twidth: 100%;\n\theight: var(--_ui5_color-palette-button-height);\n\tdisplay: flex;\n\talign-items: center;\n}\n\n.ui5-cp-footer {\n\twidth: 100%;\n\tdisplay: flex;\n\tjustify-content: flex-end;\n\tmargin: 0.1875rem 0;\n}\n\n[ui5-responsive-popover]::part(content) {\n\tpadding: 0;\n}\n\n.ui5-cp-item-container {\n\tpadding: 0.3125rem 0.6875rem;\n}"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/ColorPaletteStaticArea.css",
|
16
|
-
content: ".ui5-cp-dialog-content{
|
16
|
+
content: ".ui5-cp-dialog-content {\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tmargin: 1rem 0;\n}\n\n.ui5-cp-dialog-footer {\n\twidth: 100%;\n\tdisplay: flex;\n\tjustify-content: flex-end;\n\tmargin: 0.1875rem 1rem;\n}\n\n.ui5-cp-dialog-footer [ui5-button]:first-child{\n\tmargin-right: 1rem;\n}\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/ColorPicker.css",
|
16
|
-
content: ":host(:not([hidden])){display:inline-block}.ui5-color-picker-root{width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}.ui5-color-picker-main-color{width:16rem;height:16rem;position:relative;margin-bottom:1.5rem;border:1px solid var(--sapContent_ForegroundBorderColor);background-size:100%;background-image:-webkit-linear-gradient(left,#000,transparent),-webkit-linear-gradient(top,hsla(0,0%,100%,0),#fff);background-image:-moz-linear-gradient(left,#000,transparent),-moz-linear-gradient(top,hsla(0,0%,100%,0),#fff);background-image:linear-gradient(left,#000,transparent),linear-gradient(top,hsla(0,0%,100%,0),#fff);background-image:-webkit-linear-gradient(left,#000,transparent,#fff),-webkit-linear-gradient(top,hsla(0,0%,50.2%,0),grey);background-image:-moz-linear-gradient(left,#000,transparent,#fff),-moz-linear-gradient(top,hsla(0,0%,50.2%,0),grey);background-image:linear-gradient(left,#000,transparent,#fff),linear-gradient(top,hsla(0,0%,50.2%,0),grey);user-select:none;-moz-user-select:none}.ui5-color-picker-circle{position:absolute;box-sizing:border-box;width:13px;height:13px;border:var(--_ui5_color_picker_circle_outer_border);border-radius:.6875rem;pointer-events:none}.ui5-color-picker-circle:after{content:\"\";position:absolute;width:var(--_ui5_color_picker_circle_inner_circle_size);height:var(--_ui5_color_picker_circle_inner_circle_size);border:var(--_ui5_color_picker_circle_inner_border);border-radius:.9375rem;pointer-events:none}.ui5-color-picker-sliders-wrapper{width:calc(100% - 11px);margin-left:-10px}[ui5-slider]{--_ui5_slider_active_progress_border:none;--_ui5_slider_progress_box_sizing:content-box}[ui5-slider]::part(handle){width:.9375rem;height:1.5rem;background:transparent;margin-left:-2px;margin-top:var(--_ui5_color_picker_slider_handle_margin_top);box-sizing:border-box}[ui5-slider]::part(handle):after{content:\"\";border:2px solid #fff;display:block;height:1.25rem;border-radius:1rem;width:100%;box-sizing:border-box}[ui5-slider]::part(root-container){padding:1rem 0}[ui5-slider]::part(progress-container){width:calc(100% + 11px);height:18px;position:absolute;margin-top:var(--_ui5_color_picker_slider_container_margin_top);border-radius:0;border:1px solid var(--sapField_BorderColor)}[ui5-slider].ui5-color-picker-hue-slider::part(progress-container){background-size:100%;background-image:-webkit-linear-gradient(left,red,#ff0,#0f0,#0ff,#00f,#f0f,red);background-image:-moz-linear-gradient(left,red,#ff0,#0f0,#0ff,#00f,#f0f,red);background-image:linear-gradient(left,red,#ff0,#0f0,#0ff,#00f,#f0f,red);background-color:none}[ui5-slider].ui5-color-picker-alpha-slider::part(progress-container){background-image:-webkit-linear-gradient(left,rgba(65,120,13,0),var(--ui5_Color_Picker_Progress_Container_Color)),url(\"data:image/png;base64,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\")}[ui5-slider]::part(progress-bar){background:transparent}.ui5-color-picker-current-color{width:100%;display:flex;justify-content:space-around;align-items:center}.ui5-color-picker-colors-wrapper{display:flex;flex-wrap:nowrap;height:1.5rem;border:1px solid var(--sapField_BorderColor)}.ui5-color-picker-color,.ui5-color-picker-white{width:3.1rem;background:#fff;display:block}.ui5-color-picker-color{background-image:url(\"data:image/png;base64,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\")}.ui5-color-picker-color-inner{width:100%;height:100%}.ui5-color-picker-hex-input-wrapper{display:flex;align-items:center;flex-wrap:nowrap}.ui5-color-picker-hex-input{width:4.5rem;min-width:4.5rem;margin-left:.2rem}.ui5-color-picker-rgb-wrapper{display:flex;justify-content:space-around;width:100%}.ui5-color-picker-rgb{display:flex;flex-direction:column;align-items:center;margin-top:1rem}.ui5-color-picker-rgb-input{width:2.5rem;min-width:2.5rem;text-align:center}.ui5-color-picker-alpha-slider::part(progress-container):after,.ui5-color-picker-alpha-slider::part(progress-container):before,.ui5-color-picker-hue-slider::part(progress-container):after,.ui5-color-picker-hue-slider::part(progress-container):before,[ui5-slider].ui5-color-picker-alpha-slider::part(icon-slider),[ui5-slider].ui5-color-picker-hue-slider::part(icon-slider){display:none}.ui5-color-picker-alpha-slider::part(handle),.ui5-color-picker-hue-slider::part(handle){box-shadow:var(--_ui5_color_picker_slider_handle_box_shadow);border:var(--_ui5_color_picker_slider_handle_border)}.ui5-color-picker-alpha-slider::part(handle):hover,.ui5-color-picker-hue-slider::part(handle):hover{border:var(--_ui5_color_picker_slider_handle_outline_hover)}.ui5-color-picker-alpha-slider::part(handle):focus,.ui5-color-picker-hue-slider::part(handle):focus{outline:var(--_ui5_color_picker_slider_handle_outline_focus);outline-offset:.0625rem}.ui5-color-picker-alpha-slider::part(handle):focus:before,.ui5-color-picker-hue-slider::part(handle):focus:before{content:\"\";border:var(--_ui5_color_picker_slider_handle_inline_focus);display:block;height:1.625rem;border-radius:1rem;width:1.05rem;box-sizing:border-box;top:-3px;position:absolute;bottom:2px;left:-3px;right:-3px}.ui5-color-picker-alpha-slider::part(handle):before,.ui5-color-picker-hue-slider::part(handle):before{display:none}.ui5-color-picker-alpha-slider::part(handle):focus,.ui5-color-picker-hue-slider::part(handle):focus{margin-top:var(--_ui5_color_picker_slider_handle_focus_margin_top)}[dir=rtl] [ui5-slider].ui5-color-picker-hue-slider::part(progress-container){background-image:-webkit-linear-gradient(right,red,#ff0,#0f0,#0ff,#00f,#f0f,red);background-image:-moz-linear-gradient(right,red,#ff0,#0f0,#0ff,#00f,#f0f,red);background-image:linear-gradient(right,red,#ff0,#0f0,#0ff,#00f,#f0f,red)}[dir=rtl] .ui5-color-picker-alpha-slider::part(handle),[dir=rtl] .ui5-color-picker-hue-slider::part(handle){--_ui5_slider_handle_margin_left:0}[dir=rtl] .ui5-color-picker-sliders-wrapper{margin-left:10px}"
|
16
|
+
content: ":host(:not([hidden])) {\n display: inline-block;\n}\n\n.ui5-color-picker-root {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n}\n\n.ui5-color-picker-main-color {\n width: 16rem;\n height: 16rem;\n position: relative;\n margin-bottom: 1.5rem;\n border: 1px solid var(--sapContent_ForegroundBorderColor);\n background-size: 100%;\n background-image: -webkit-linear-gradient(left, #000, rgba(0,0,0,0)),-webkit-linear-gradient(top, rgba(255,255,255,0), #fff);\n background-image: -moz-linear-gradient(left, #000, rgba(0,0,0,0)),-moz-linear-gradient(top, rgba(255,255,255,0), #fff);\n background-image: linear-gradient(left, #000, rgba(0,0,0,0)),linear-gradient(top, rgba(255,255,255,0), #fff);\n background-image: -webkit-linear-gradient(left, #000, rgba(0,0,0,0), #fff),-webkit-linear-gradient(top, rgba(128,128,128,0), #808080);\n background-image: -moz-linear-gradient(left, #000, rgba(0,0,0,0), #fff),-moz-linear-gradient(top, rgba(128,128,128,0), #808080);\n background-image: linear-gradient(left, #000, rgba(0,0,0,0), #fff),linear-gradient(top, rgba(128,128,128,0), #808080);\n\tuser-select: none;\n -moz-user-select: none;\n}\n\n.ui5-color-picker-circle {\n position: absolute;\n box-sizing: border-box;\n width: 13px;\n height: 13px;\n border: var(--_ui5_color_picker_circle_outer_border);\n border-radius: 0.6875rem;\n pointer-events: none;\n}\n\n.ui5-color-picker-circle:after {\n content: \"\";\n position: absolute;\n width: var(--_ui5_color_picker_circle_inner_circle_size);\n height: var(--_ui5_color_picker_circle_inner_circle_size);;\n border: var(--_ui5_color_picker_circle_inner_border);\n border-radius: 0.9375rem;\n pointer-events: none;\n}\n\n.ui5-color-picker-sliders-wrapper {\n width: calc(100% - 11px);\n margin-left: -10px;\n}\n\n[ui5-slider] {\n --_ui5_slider_active_progress_border: none;\n --_ui5_slider_progress_box_sizing: content-box;\n}\n\n[ui5-slider]::part(handle) {\n width: 0.9375rem;\n height: 1.5rem;\n background: transparent;\n margin-left: -2px;\n margin-top: var(--_ui5_color_picker_slider_handle_margin_top);\n box-sizing: border-box;\n}\n\n[ui5-slider]::part(handle)::after {\n content: \"\";\n border: 2px solid #fff;\n display: block;\n height: 1.25rem;\n border-radius: 1rem;\n width: 100%;\n box-sizing: border-box;\n}\n\n[ui5-slider]::part(root-container) {\n\tpadding: 1rem 0;\n}\n\n[ui5-slider]::part(progress-container) {\n width: calc(100% + 11px);\n height: 18px;\n position: absolute;\n margin-top: var(--_ui5_color_picker_slider_container_margin_top);\n border-radius: 0;\n border: 1px solid var(--sapField_BorderColor);\n}\n\n[ui5-slider].ui5-color-picker-hue-slider::part(progress-container) {\n background-size: 100%;\n background-image: -webkit-linear-gradient(left, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00);\n background-image: -moz-linear-gradient(left, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00);\n background-image: linear-gradient(left, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00);\n background-color: none;\n}\n\n[ui5-slider].ui5-color-picker-alpha-slider::part(progress-container) {\n background-image: -webkit-linear-gradient(left, rgba(65, 120, 13, 0), var(--ui5_Color_Picker_Progress_Container_Color)), url('data:image/png;base64,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');\n}\n\n[ui5-slider]::part(progress-bar) {\n background: transparent;\n}\n\n.ui5-color-picker-current-color {\n width: 100%;\n display: flex;\n justify-content: space-around;\n align-items: center;\n}\n\n.ui5-color-picker-colors-wrapper {\n display: flex;\n flex-wrap: nowrap;\n height: 1.5rem;\n border: 1px solid var(--sapField_BorderColor);\n}\n\n.ui5-color-picker-white,\n.ui5-color-picker-color {\n width: 3.1rem;\n background: #fff;\n display: block;\n}\n\n.ui5-color-picker-color {\n background-image: url('data:image/png;base64,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');\n}\n\n.ui5-color-picker-color-inner {\n width: 100%;\n height: 100%;\n}\n\n.ui5-color-picker-hex-input-wrapper {\n display: flex;\n align-items: center;\n flex-wrap: nowrap;\n}\n\n.ui5-color-picker-hex-input {\n width: 4.5rem;\n min-width: 4.5rem;\n margin-left: .2rem;\n}\n\n.ui5-color-picker-rgb-wrapper {\n display: flex;\n justify-content: space-around;\n width: 100%;\n}\n\n.ui5-color-picker-rgb {\n display: flex;\n flex-direction: column;\n align-items: center;\n margin-top: 1rem;\n}\n\n.ui5-color-picker-rgb-input {\n width: 2.5rem;\n min-width: 2.5rem;\n text-align: center;\n}\n\n.ui5-color-picker-hue-slider::part(progress-container)::before,\n.ui5-color-picker-alpha-slider::part(progress-container)::before,\n.ui5-color-picker-hue-slider::part(progress-container)::after,\n.ui5-color-picker-alpha-slider::part(progress-container)::after,\n[ui5-slider].ui5-color-picker-hue-slider::part(icon-slider),\n[ui5-slider].ui5-color-picker-alpha-slider::part(icon-slider) {\n display: none;\n}\n\n.ui5-color-picker-alpha-slider::part(handle),\n.ui5-color-picker-hue-slider::part(handle) {\n box-shadow: var(--_ui5_color_picker_slider_handle_box_shadow);\n border: var(--_ui5_color_picker_slider_handle_border);\n}\n\n.ui5-color-picker-alpha-slider::part(handle):hover,\n.ui5-color-picker-hue-slider::part(handle):hover {\n border: var(--_ui5_color_picker_slider_handle_outline_hover);\n}\n\n.ui5-color-picker-alpha-slider::part(handle):focus,\n.ui5-color-picker-hue-slider::part(handle):focus {\n outline: var(--_ui5_color_picker_slider_handle_outline_focus);\n outline-offset: 0.0625rem;\n}\n\n.ui5-color-picker-alpha-slider::part(handle):focus::before,\n.ui5-color-picker-hue-slider::part(handle):focus::before {\n content: \"\";\n border: var(--_ui5_color_picker_slider_handle_inline_focus);\n display: block;\n height: 1.625rem;\n border-radius: 1rem;\n width: 1.05rem;\n box-sizing: border-box;\n top: -3px;\n position: absolute;\n bottom: 2px;\n left: -3px;\n right: -3px;\n}\n\n.ui5-color-picker-alpha-slider::part(handle)::before,\n.ui5-color-picker-hue-slider::part(handle)::before {\n display: none;\n}\n\n.ui5-color-picker-alpha-slider::part(handle):focus,\n.ui5-color-picker-hue-slider::part(handle):focus {\n margin-top: var(--_ui5_color_picker_slider_handle_focus_margin_top);\n}\n\n[dir=rtl] [ui5-slider].ui5-color-picker-hue-slider::part(progress-container) {\n background-image: -webkit-linear-gradient(right, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00);\n background-image: -moz-linear-gradient(right, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00);\n background-image: linear-gradient(right, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00);\n}\n\n[dir=\"rtl\"] .ui5-color-picker-alpha-slider::part(handle),\n[dir=\"rtl\"] .ui5-color-picker-hue-slider::part(handle){\n\t--_ui5_slider_handle_margin_left: 0;\n}\n\n[dir=\"rtl\"] .ui5-color-picker-sliders-wrapper {\n\tmargin-left: 10px;\n}\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|