@ui5/webcomponents 0.0.0-4e88b8243 → 0.0.0-50f1454ef
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/CHANGELOG.md +489 -0
- package/README.md +22 -17
- package/cypress/specs/Avatar.cy.tsx +55 -0
- package/cypress/specs/AvatarGroup.cy.tsx +66 -0
- package/cypress/specs/Breadcrumbs.mobile.cy.tsx +53 -0
- package/cypress/specs/{Button.cy.ts → Button.cy.tsx} +109 -37
- package/cypress/specs/Calendar.cy.tsx +710 -0
- package/cypress/specs/CalendarLegend.cy.tsx +77 -0
- package/cypress/specs/Card.cy.tsx +338 -0
- package/cypress/specs/Carousel.cy.tsx +581 -0
- package/cypress/specs/Carousel.mobile.cy.tsx +67 -0
- package/cypress/specs/ColorPalette.cy.tsx +213 -0
- package/cypress/specs/ColorPicker.cy.tsx +332 -0
- package/cypress/specs/ComboBox.cy.tsx +198 -0
- package/cypress/specs/DateControlsWithTimezone.cy.tsx +75 -0
- package/cypress/specs/DatePicker.cy.tsx +1699 -0
- package/cypress/specs/DateRangePicker.cy.tsx +594 -0
- package/cypress/specs/DateTimePicker.cy.tsx +568 -0
- package/cypress/specs/DayPicker.cy.tsx +81 -0
- package/cypress/specs/Dialog.cy.tsx +133 -0
- package/cypress/specs/{ExpandableText.cy.ts → ExpandableText.cy.tsx} +27 -23
- package/cypress/specs/F6.cy.tsx +977 -0
- package/cypress/specs/Form.cy.tsx +1022 -0
- package/cypress/specs/FormSupport.cy.tsx +975 -0
- package/cypress/specs/Input.cy.tsx +978 -0
- package/cypress/specs/Label.cy.tsx +144 -0
- package/cypress/specs/Link.cy.tsx +216 -0
- package/cypress/specs/List.cy.tsx +309 -0
- package/cypress/specs/List.mobile.cy.tsx +31 -0
- package/cypress/specs/{LitKeyFunction.cy.ts → LitKeyFunction.cy.tsx} +10 -9
- package/cypress/specs/{Menu.cy.ts → Menu.cy.tsx} +210 -92
- package/cypress/specs/MessageStrip.cy.tsx +171 -0
- package/cypress/specs/MultiComboBox.cy.tsx +189 -0
- package/cypress/specs/MultiInput.cy.tsx +72 -0
- package/cypress/specs/Popover.cy.tsx +419 -0
- package/cypress/specs/RTL.cy.tsx +18 -0
- package/cypress/specs/RadioButton.cy.tsx +499 -0
- package/cypress/specs/RangeSlider.cy.tsx +52 -0
- package/cypress/specs/RatingIndicator.cy.tsx +279 -0
- package/cypress/specs/{ResponsivePopover.mobile.cy.ts → ResponsivePopover.mobile.cy.tsx} +35 -16
- package/cypress/specs/SegmentedButton.cy.tsx +215 -0
- package/cypress/specs/Select.cy.tsx +241 -0
- package/cypress/specs/Slider.cy.tsx +87 -0
- package/cypress/specs/{StepInput.cy.ts → StepInput.cy.tsx} +4 -6
- package/cypress/specs/TabContainer.cy.tsx +78 -0
- package/cypress/specs/Table.cy.tsx +1025 -0
- package/cypress/specs/{TableDragAndDrop.cy.ts → TableDragAndDrop.cy.tsx} +27 -24
- package/cypress/specs/TableGrowing.cy.tsx +336 -0
- package/cypress/specs/TableLoading.cy.tsx +48 -0
- package/cypress/specs/TableNavigation.cy.tsx +223 -0
- package/cypress/specs/TableNavigationFixedHeader.cy.tsx +199 -0
- package/cypress/specs/TableRowActions.cy.tsx +239 -0
- package/cypress/specs/TableSelection.cy.tsx +275 -0
- package/cypress/specs/TableSelections.cy.tsx +332 -0
- package/cypress/specs/TableUtils.cy.tsx +63 -0
- package/cypress/specs/{TableVirtualizer.cy.ts → TableVirtualizer.cy.tsx} +12 -15
- package/cypress/specs/Tag.cy.tsx +120 -0
- package/cypress/specs/Text.cy.tsx +46 -0
- package/cypress/specs/{TextArea.cy.ts → TextArea.cy.tsx} +85 -49
- package/cypress/specs/Title.cy.tsx +36 -0
- package/cypress/specs/{Toast.cy.ts → Toast.cy.tsx} +17 -16
- package/cypress/specs/Tokenizer.cy.tsx +209 -0
- package/cypress/specs/Toolbar.cy.tsx +194 -0
- package/cypress/specs/Tree.cy.tsx +72 -0
- package/cypress/specs/base/{AccessibilityTextsHelper.cy.ts → AccessibilityTextsHelper.cy.tsx} +193 -41
- package/cypress/specs/base/{Events.cy.ts → Events.cy.tsx} +78 -60
- package/cypress/specs/base/{IconCollection.cy.ts → IconCollection.cy.tsx} +4 -4
- package/cypress/specs/base/{IgnoreCustomElements.cy.ts → IgnoreCustomElements.cy.tsx} +15 -12
- package/cypress/specs/base/Tooltips.cy.tsx +64 -0
- package/cypress/support/commands/Calendar.commands.ts +21 -0
- package/cypress/support/commands/ColorPalette.commands.ts +27 -3
- package/cypress/support/commands/ColorPicker.commands.ts +38 -0
- package/cypress/support/commands/DatePicker.commands.ts +218 -0
- package/cypress/support/commands/DateTimePicker.commands.ts +105 -0
- package/cypress/support/commands/Dialog.commands.ts +16 -0
- package/cypress/support/commands/Menu.commands.ts +7 -7
- package/cypress/support/commands/Popover.commands.ts +16 -0
- package/cypress/support/commands/ResponsivePopover.commands.ts +42 -0
- package/cypress/support/commands/SegmentedButton.commands.ts +32 -0
- package/cypress/support/commands/utils/popup-open.ts +35 -0
- package/cypress/support/commands.ts +37 -2
- package/cypress/support/component-index.html +12 -0
- package/cypress/support/component.ts +19 -2
- package/cypress/tsconfig.json +9 -3
- package/cypress.config.js +11 -6
- package/dist/.tsbuildinfo +1 -1
- package/dist/Avatar.d.ts +10 -5
- package/dist/Avatar.js +9 -6
- package/dist/Avatar.js.map +1 -1
- package/dist/AvatarGroup.d.ts +4 -3
- package/dist/AvatarGroup.js +6 -2
- package/dist/AvatarGroup.js.map +1 -1
- package/dist/AvatarGroupTemplate.js +1 -0
- package/dist/AvatarGroupTemplate.js.map +1 -1
- package/dist/AvatarTemplate.js +1 -1
- package/dist/AvatarTemplate.js.map +1 -1
- package/dist/Bar.d.ts +18 -0
- package/dist/Bar.js +22 -0
- package/dist/Bar.js.map +1 -1
- package/dist/BarTemplate.js +1 -1
- package/dist/BarTemplate.js.map +1 -1
- package/dist/Breadcrumbs.d.ts +5 -0
- package/dist/Breadcrumbs.js +9 -0
- package/dist/Breadcrumbs.js.map +1 -1
- package/dist/BreadcrumbsPopoverTemplate.js +5 -1
- package/dist/BreadcrumbsPopoverTemplate.js.map +1 -1
- package/dist/BusyIndicatorTemplate.js +1 -1
- package/dist/BusyIndicatorTemplate.js.map +1 -1
- package/dist/Button.d.ts +24 -6
- package/dist/Button.js +72 -18
- package/dist/Button.js.map +1 -1
- package/dist/ButtonBadge.d.ts +38 -0
- package/dist/ButtonBadge.js +71 -0
- package/dist/ButtonBadge.js.map +1 -0
- package/dist/ButtonBadgeTemplate.d.ts +2 -0
- package/dist/ButtonBadgeTemplate.js +6 -0
- package/dist/ButtonBadgeTemplate.js.map +1 -0
- package/dist/ButtonTemplate.js +9 -4
- package/dist/ButtonTemplate.js.map +1 -1
- package/dist/Calendar.d.ts +4 -0
- package/dist/Calendar.js +21 -11
- package/dist/Calendar.js.map +1 -1
- package/dist/CalendarHeaderTemplate.js +2 -1
- package/dist/CalendarHeaderTemplate.js.map +1 -1
- package/dist/CardHeader.d.ts +1 -1
- package/dist/CardHeader.js +1 -1
- package/dist/CardHeader.js.map +1 -1
- package/dist/CardHeaderTemplate.js +1 -1
- package/dist/CardHeaderTemplate.js.map +1 -1
- package/dist/Carousel.d.ts +4 -1
- package/dist/Carousel.js +4 -1
- package/dist/Carousel.js.map +1 -1
- package/dist/CarouselTemplate.js +2 -2
- package/dist/CarouselTemplate.js.map +1 -1
- package/dist/CheckBox.d.ts +3 -0
- package/dist/CheckBox.js +3 -0
- package/dist/CheckBox.js.map +1 -1
- package/dist/ColorPalette.d.ts +21 -12
- package/dist/ColorPalette.js +38 -32
- package/dist/ColorPalette.js.map +1 -1
- package/dist/ColorPaletteItemTemplate.js +1 -1
- package/dist/ColorPaletteItemTemplate.js.map +1 -1
- package/dist/ColorPalettePopover.d.ts +0 -1
- package/dist/ColorPalettePopover.js +0 -1
- package/dist/ColorPalettePopover.js.map +1 -1
- package/dist/ColorPaletteTemplate.js +2 -2
- package/dist/ColorPaletteTemplate.js.map +1 -1
- package/dist/ColorPicker.d.ts +33 -28
- package/dist/ColorPicker.js +146 -100
- package/dist/ColorPicker.js.map +1 -1
- package/dist/ColorPickerTemplate.js +5 -3
- package/dist/ColorPickerTemplate.js.map +1 -1
- package/dist/ComboBox.d.ts +4 -3
- package/dist/ComboBox.js +28 -7
- package/dist/ComboBox.js.map +1 -1
- package/dist/ComboBoxItemGroupTemplate.js +2 -2
- package/dist/ComboBoxItemGroupTemplate.js.map +1 -1
- package/dist/DatePicker.d.ts +9 -5
- package/dist/DatePicker.js +42 -22
- package/dist/DatePicker.js.map +1 -1
- package/dist/DatePickerInputTemplate.js +2 -2
- package/dist/DatePickerInputTemplate.js.map +1 -1
- package/dist/DatePickerPopoverTemplate.js +34 -1
- package/dist/DatePickerPopoverTemplate.js.map +1 -1
- package/dist/DateRangePicker.d.ts +6 -2
- package/dist/DateRangePicker.js +10 -8
- package/dist/DateRangePicker.js.map +1 -1
- package/dist/DateTimeInput.d.ts +21 -0
- package/dist/DateTimeInput.js +48 -0
- package/dist/DateTimeInput.js.map +1 -0
- package/dist/DateTimePicker.d.ts +1 -18
- package/dist/DateTimePicker.js +5 -25
- package/dist/DateTimePicker.js.map +1 -1
- package/dist/DateTimePickerTemplate.js +16 -18
- package/dist/DateTimePickerTemplate.js.map +1 -1
- package/dist/DayPicker.d.ts +5 -0
- package/dist/DayPicker.js +24 -6
- package/dist/DayPicker.js.map +1 -1
- package/dist/DayPickerTemplate.js +1 -1
- package/dist/DayPickerTemplate.js.map +1 -1
- package/dist/Dialog.js +1 -0
- package/dist/Dialog.js.map +1 -1
- package/dist/DialogTemplate.js +1 -1
- package/dist/DialogTemplate.js.map +1 -1
- package/dist/ExpandableText.d.ts +3 -2
- package/dist/ExpandableText.js +0 -7
- package/dist/ExpandableText.js.map +1 -1
- package/dist/ExpandableTextTemplate.js +1 -1
- package/dist/ExpandableTextTemplate.js.map +1 -1
- package/dist/FileUploader.js +1 -1
- package/dist/FileUploader.js.map +1 -1
- package/dist/Form.d.ts +23 -3
- package/dist/Form.js +40 -5
- package/dist/Form.js.map +1 -1
- package/dist/FormGroup.d.ts +9 -1
- package/dist/FormGroup.js +11 -1
- package/dist/FormGroup.js.map +1 -1
- package/dist/FormItem.d.ts +0 -1
- package/dist/FormItem.js +0 -1
- package/dist/FormItem.js.map +1 -1
- package/dist/FormTemplate.js +3 -3
- package/dist/FormTemplate.js.map +1 -1
- package/dist/Icon.d.ts +1 -1
- package/dist/Icon.js +3 -4
- package/dist/Icon.js.map +1 -1
- package/dist/Input.d.ts +43 -17
- package/dist/Input.js +91 -38
- package/dist/Input.js.map +1 -1
- package/dist/InputPopoverTemplate.d.ts +4 -1
- package/dist/InputPopoverTemplate.js +3 -2
- package/dist/InputPopoverTemplate.js.map +1 -1
- package/dist/InputTemplate.d.ts +3 -1
- package/dist/InputTemplate.js +7 -5
- package/dist/InputTemplate.js.map +1 -1
- package/dist/Link.d.ts +15 -0
- package/dist/Link.js +17 -0
- package/dist/Link.js.map +1 -1
- package/dist/List.d.ts +18 -6
- package/dist/List.js +63 -18
- package/dist/List.js.map +1 -1
- package/dist/ListBoxItemGroupTemplate.d.ts +4 -0
- package/dist/ListBoxItemGroupTemplate.js +13 -0
- package/dist/ListBoxItemGroupTemplate.js.map +1 -0
- package/dist/ListItem.d.ts +7 -8
- package/dist/ListItem.js +18 -10
- package/dist/ListItem.js.map +1 -1
- package/dist/ListItemGroupHeader.d.ts +6 -0
- package/dist/ListItemGroupHeader.js +19 -2
- package/dist/ListItemGroupHeader.js.map +1 -1
- package/dist/ListItemGroupHeaderTemplate.js +3 -3
- package/dist/ListItemGroupHeaderTemplate.js.map +1 -1
- package/dist/ListItemGroupTemplate.d.ts +1 -3
- package/dist/ListItemGroupTemplate.js +5 -8
- package/dist/ListItemGroupTemplate.js.map +1 -1
- package/dist/ListItemStandard.d.ts +48 -6
- package/dist/ListItemStandard.js +69 -9
- package/dist/ListItemStandard.js.map +1 -1
- package/dist/ListItemStandardTemplate.js +33 -1
- package/dist/ListItemStandardTemplate.js.map +1 -1
- package/dist/ListItemTemplate.js +3 -3
- package/dist/ListItemTemplate.js.map +1 -1
- package/dist/ListTemplate.js +2 -2
- package/dist/ListTemplate.js.map +1 -1
- package/dist/Menu.d.ts +17 -6
- package/dist/Menu.js +99 -55
- package/dist/Menu.js.map +1 -1
- package/dist/MenuItem.d.ts +30 -7
- package/dist/MenuItem.js +148 -24
- package/dist/MenuItem.js.map +1 -1
- package/dist/MenuItemTemplate.d.ts +1 -5
- package/dist/MenuItemTemplate.js +3 -3
- package/dist/MenuItemTemplate.js.map +1 -1
- package/dist/MenuTemplate.js +2 -2
- package/dist/MenuTemplate.js.map +1 -1
- package/dist/MessageStrip.js +1 -3
- package/dist/MessageStrip.js.map +1 -1
- package/dist/MessageStripTemplate.js +3 -3
- package/dist/MessageStripTemplate.js.map +1 -1
- package/dist/MonthPicker.js +7 -1
- package/dist/MonthPicker.js.map +1 -1
- package/dist/MultiComboBox.d.ts +7 -12
- package/dist/MultiComboBox.js +48 -52
- package/dist/MultiComboBox.js.map +1 -1
- package/dist/MultiComboBoxItemGroupTemplate.js +2 -2
- package/dist/MultiComboBoxItemGroupTemplate.js.map +1 -1
- package/dist/MultiComboBoxPopoverTemplate.d.ts +2 -0
- package/dist/MultiComboBoxPopoverTemplate.js +35 -0
- package/dist/MultiComboBoxPopoverTemplate.js.map +1 -0
- package/dist/MultiComboBoxTemplate.d.ts +2 -0
- package/dist/MultiComboBoxTemplate.js +26 -0
- package/dist/MultiComboBoxTemplate.js.map +1 -0
- package/dist/MultiInput.d.ts +4 -1
- package/dist/MultiInput.js +8 -2
- package/dist/MultiInput.js.map +1 -1
- package/dist/MultiInputTemplate.js +2 -1
- package/dist/MultiInputTemplate.js.map +1 -1
- package/dist/OptionCustom.d.ts +1 -3
- package/dist/OptionCustom.js.map +1 -1
- package/dist/Panel.d.ts +3 -1
- package/dist/Panel.js +1 -1
- package/dist/Panel.js.map +1 -1
- package/dist/Popover.d.ts +6 -8
- package/dist/Popover.js +23 -22
- package/dist/Popover.js.map +1 -1
- package/dist/Popup.js +5 -8
- package/dist/Popup.js.map +1 -1
- package/dist/PopupTemplate.d.ts +1 -1
- package/dist/RadioButtonGroup.js +3 -2
- package/dist/RadioButtonGroup.js.map +1 -1
- package/dist/RangeSliderTemplate.js +2 -2
- package/dist/RangeSliderTemplate.js.map +1 -1
- package/dist/RatingIndicator.js +4 -1
- package/dist/RatingIndicator.js.map +1 -1
- package/dist/ResponsivePopoverTemplate.js +1 -1
- package/dist/ResponsivePopoverTemplate.js.map +1 -1
- package/dist/Select.d.ts +66 -10
- package/dist/Select.js +95 -29
- package/dist/Select.js.map +1 -1
- package/dist/SelectPopoverTemplate.d.ts +2 -0
- package/dist/SelectPopoverTemplate.js +28 -0
- package/dist/SelectPopoverTemplate.js.map +1 -0
- package/dist/SelectTemplate.d.ts +2 -0
- package/dist/SelectTemplate.js +23 -0
- package/dist/SelectTemplate.js.map +1 -0
- package/dist/Slider.d.ts +1 -0
- package/dist/Slider.js +8 -0
- package/dist/Slider.js.map +1 -1
- package/dist/SliderBase.d.ts +2 -1
- package/dist/SliderBase.js +14 -2
- package/dist/SliderBase.js.map +1 -1
- package/dist/SliderBaseTemplate.js +3 -4
- package/dist/SliderBaseTemplate.js.map +1 -1
- package/dist/SliderTemplate.js +1 -1
- package/dist/SliderTemplate.js.map +1 -1
- package/dist/SpecialCalendarDate.d.ts +6 -0
- package/dist/SpecialCalendarDate.js +9 -0
- package/dist/SpecialCalendarDate.js.map +1 -1
- package/dist/SplitButton.d.ts +9 -21
- package/dist/SplitButton.js +40 -74
- package/dist/SplitButton.js.map +1 -1
- package/dist/SplitButtonTemplate.js +1 -1
- package/dist/SplitButtonTemplate.js.map +1 -1
- package/dist/SuggestionItemGroup.js +2 -0
- package/dist/SuggestionItemGroup.js.map +1 -1
- package/dist/SuggestionListItem.d.ts +1 -1
- package/dist/SuggestionListItem.js +1 -1
- package/dist/SuggestionListItem.js.map +1 -1
- package/dist/Switch.js +0 -1
- package/dist/Switch.js.map +1 -1
- package/dist/SwitchTemplate.js +1 -1
- package/dist/SwitchTemplate.js.map +1 -1
- package/dist/Tab.d.ts +1 -1
- package/dist/TabContainer.d.ts +10 -21
- package/dist/TabContainer.js +22 -32
- package/dist/TabContainer.js.map +1 -1
- package/dist/TabContainerTemplate.js +1 -0
- package/dist/TabContainerTemplate.js.map +1 -1
- package/dist/Table.d.ts +70 -36
- package/dist/Table.js +130 -115
- package/dist/Table.js.map +1 -1
- package/dist/TableCell.d.ts +3 -1
- package/dist/TableCell.js +23 -5
- package/dist/TableCell.js.map +1 -1
- package/dist/TableCellBase.d.ts +4 -2
- package/dist/TableCellBase.js +11 -14
- package/dist/TableCellBase.js.map +1 -1
- package/dist/TableCellTemplate.d.ts +2 -0
- package/dist/TableCellTemplate.js +6 -0
- package/dist/TableCellTemplate.js.map +1 -0
- package/dist/TableDragAndDrop.d.ts +1 -1
- package/dist/TableDragAndDrop.js.map +1 -1
- package/dist/TableExtension.d.ts +1 -1
- package/dist/TableExtension.js +1 -1
- package/dist/TableExtension.js.map +1 -1
- package/dist/TableGrowing.d.ts +19 -14
- package/dist/TableGrowing.js +33 -31
- package/dist/TableGrowing.js.map +1 -1
- package/dist/TableGrowingTemplate.d.ts +2 -0
- package/dist/TableGrowingTemplate.js +6 -0
- package/dist/TableGrowingTemplate.js.map +1 -0
- package/dist/TableHeaderCell.d.ts +53 -13
- package/dist/TableHeaderCell.js +37 -37
- package/dist/TableHeaderCell.js.map +1 -1
- package/dist/TableHeaderCellActionAI.d.ts +29 -0
- package/dist/TableHeaderCellActionAI.js +49 -0
- package/dist/TableHeaderCellActionAI.js.map +1 -0
- package/dist/TableHeaderCellActionBase.d.ts +35 -0
- package/dist/TableHeaderCellActionBase.js +57 -0
- package/dist/TableHeaderCellActionBase.js.map +1 -0
- package/dist/TableHeaderCellActionBaseTemplate.d.ts +2 -0
- package/dist/TableHeaderCellActionBaseTemplate.js +7 -0
- package/dist/TableHeaderCellActionBaseTemplate.js.map +1 -0
- package/dist/TableHeaderCellTemplate.d.ts +2 -0
- package/dist/TableHeaderCellTemplate.js +19 -0
- package/dist/TableHeaderCellTemplate.js.map +1 -0
- package/dist/TableHeaderRow.d.ts +4 -3
- package/dist/TableHeaderRow.js +11 -11
- package/dist/TableHeaderRow.js.map +1 -1
- package/dist/TableHeaderRowTemplate.d.ts +2 -0
- package/dist/TableHeaderRowTemplate.js +11 -0
- package/dist/TableHeaderRowTemplate.js.map +1 -0
- package/dist/TableNavigation.d.ts +2 -2
- package/dist/TableNavigation.js +6 -7
- package/dist/TableNavigation.js.map +1 -1
- package/dist/TableRow.d.ts +26 -7
- package/dist/TableRow.js +66 -45
- package/dist/TableRow.js.map +1 -1
- package/dist/TableRowAction.d.ts +47 -0
- package/dist/TableRowAction.js +71 -0
- package/dist/TableRowAction.js.map +1 -0
- package/dist/TableRowActionBase.d.ts +39 -0
- package/dist/TableRowActionBase.js +112 -0
- package/dist/TableRowActionBase.js.map +1 -0
- package/dist/TableRowActionBaseTemplate.d.ts +2 -0
- package/dist/TableRowActionBaseTemplate.js +15 -0
- package/dist/TableRowActionBaseTemplate.js.map +1 -0
- package/dist/TableRowActionNavigation.d.ts +38 -0
- package/dist/TableRowActionNavigation.js +65 -0
- package/dist/TableRowActionNavigation.js.map +1 -0
- package/dist/TableRowBase.d.ts +9 -6
- package/dist/TableRowBase.js +30 -27
- package/dist/TableRowBase.js.map +1 -1
- package/dist/TableRowTemplate.d.ts +2 -0
- package/dist/TableRowTemplate.js +18 -0
- package/dist/TableRowTemplate.js.map +1 -0
- package/dist/TableSelection.d.ts +10 -8
- package/dist/TableSelection.js +40 -39
- package/dist/TableSelection.js.map +1 -1
- package/dist/TableSelectionBase.d.ts +77 -0
- package/dist/TableSelectionBase.js +107 -0
- package/dist/TableSelectionBase.js.map +1 -0
- package/dist/TableSelectionMulti.d.ts +90 -0
- package/dist/TableSelectionMulti.js +255 -0
- package/dist/TableSelectionMulti.js.map +1 -0
- package/dist/TableSelectionSingle.d.ts +49 -0
- package/dist/TableSelectionSingle.js +67 -0
- package/dist/TableSelectionSingle.js.map +1 -0
- package/dist/TableTemplate.d.ts +2 -0
- package/dist/TableTemplate.js +18 -0
- package/dist/TableTemplate.js.map +1 -0
- package/dist/TableUtils.d.ts +9 -1
- package/dist/TableUtils.js +26 -2
- package/dist/TableUtils.js.map +1 -1
- package/dist/TableVirtualizer.d.ts +2 -2
- package/dist/TableVirtualizer.js +7 -5
- package/dist/TableVirtualizer.js.map +1 -1
- package/dist/Tag.d.ts +3 -2
- package/dist/Tag.js +3 -1
- package/dist/Tag.js.map +1 -1
- package/dist/TagTemplate.js +2 -2
- package/dist/TagTemplate.js.map +1 -1
- package/dist/TextArea.js +1 -4
- package/dist/TextArea.js.map +1 -1
- package/dist/TimePicker.d.ts +15 -7
- package/dist/TimePicker.js +61 -19
- package/dist/TimePicker.js.map +1 -1
- package/dist/TimePickerClock.d.ts +22 -52
- package/dist/TimePickerClock.js +71 -224
- package/dist/TimePickerClock.js.map +1 -1
- package/dist/TimePickerClockTemplate.js +9 -6
- package/dist/TimePickerClockTemplate.js.map +1 -1
- package/dist/TimePickerInternals.d.ts +2 -1
- package/dist/TimePickerInternals.js.map +1 -1
- package/dist/TimePickerPopoverTemplate.js +34 -2
- package/dist/TimePickerPopoverTemplate.js.map +1 -1
- package/dist/TimePickerTemplate.js +4 -3
- package/dist/TimePickerTemplate.js.map +1 -1
- package/dist/TimeSelectionClocks.d.ts +15 -3
- package/dist/TimeSelectionClocks.js +64 -28
- package/dist/TimeSelectionClocks.js.map +1 -1
- package/dist/TimeSelectionClocksTemplate.js +1 -1
- package/dist/TimeSelectionClocksTemplate.js.map +1 -1
- package/dist/ToastTemplate.js +3 -2
- package/dist/ToastTemplate.js.map +1 -1
- package/dist/Token.d.ts +1 -5
- package/dist/Token.js +6 -8
- package/dist/Token.js.map +1 -1
- package/dist/TokenTemplate.js +1 -1
- package/dist/TokenTemplate.js.map +1 -1
- package/dist/Tokenizer.d.ts +7 -2
- package/dist/Tokenizer.js +3 -26
- package/dist/Tokenizer.js.map +1 -1
- package/dist/TokenizerPopoverTemplate.js +0 -1
- package/dist/TokenizerPopoverTemplate.js.map +1 -1
- package/dist/Toolbar.d.ts +6 -5
- package/dist/Toolbar.js +15 -51
- package/dist/Toolbar.js.map +1 -1
- package/dist/ToolbarButton.d.ts +7 -5
- package/dist/ToolbarButton.js +15 -4
- package/dist/ToolbarButton.js.map +1 -1
- package/dist/ToolbarButtonTemplate.js +1 -1
- package/dist/ToolbarButtonTemplate.js.map +1 -1
- package/dist/ToolbarItem.d.ts +6 -17
- package/dist/ToolbarItem.js +18 -8
- package/dist/ToolbarItem.js.map +1 -1
- package/dist/ToolbarPopoverButtonTemplate.js +1 -1
- package/dist/ToolbarPopoverButtonTemplate.js.map +1 -1
- package/dist/ToolbarPopoverSelectTemplate.js +1 -1
- package/dist/ToolbarPopoverSelectTemplate.js.map +1 -1
- package/dist/ToolbarPopoverTemplate.js +1 -1
- package/dist/ToolbarPopoverTemplate.js.map +1 -1
- package/dist/ToolbarSelect.d.ts +9 -11
- package/dist/ToolbarSelect.js +41 -41
- package/dist/ToolbarSelect.js.map +1 -1
- package/dist/ToolbarSelectTemplate.js +1 -1
- package/dist/ToolbarSelectTemplate.js.map +1 -1
- package/dist/ToolbarTemplate.js +1 -1
- package/dist/ToolbarTemplate.js.map +1 -1
- package/dist/Tree.js +3 -0
- package/dist/Tree.js.map +1 -1
- package/dist/TreeItemBase.d.ts +16 -1
- package/dist/TreeItemBase.js +14 -0
- package/dist/TreeItemBase.js.map +1 -1
- package/dist/TreeItemBaseTemplate.js +5 -1
- package/dist/TreeItemBaseTemplate.js.map +1 -1
- package/dist/TreeItemCustom.js +5 -1
- package/dist/TreeItemCustom.js.map +1 -1
- package/dist/TreeItemTemplate.js +1 -1
- package/dist/TreeItemTemplate.js.map +1 -1
- package/dist/TreeList.js +3 -1
- package/dist/TreeList.js.map +1 -1
- package/dist/YearPicker.js +2 -2
- package/dist/YearPicker.js.map +1 -1
- package/dist/YearPickerTemplate.js +1 -1
- package/dist/YearPickerTemplate.js.map +1 -1
- package/dist/bundle.esm.d.ts +2 -3
- package/dist/bundle.esm.js +8 -7
- package/dist/bundle.esm.js.map +1 -1
- package/dist/colorpicker-utils/ColorValue.d.ts +53 -0
- package/dist/colorpicker-utils/ColorValue.js +143 -0
- package/dist/colorpicker-utils/ColorValue.js.map +1 -0
- package/dist/css/themes/Avatar.css +1 -1
- package/dist/css/themes/AvatarGroup.css +1 -1
- package/dist/css/themes/Bar.css +1 -1
- package/dist/css/themes/Breadcrumbs.css +1 -1
- package/dist/css/themes/BusyIndicator.css +1 -1
- package/dist/css/themes/Button.css +1 -1
- package/dist/css/themes/ButtonBadge.css +1 -0
- package/dist/css/themes/Calendar.css +1 -1
- package/dist/css/themes/CalendarHeader.css +1 -1
- package/dist/css/themes/CalendarLegend.css +1 -1
- package/dist/css/themes/CalendarLegendItem.css +1 -1
- package/dist/css/themes/Card.css +1 -1
- package/dist/css/themes/CardHeader.css +1 -1
- package/dist/css/themes/Carousel.css +1 -1
- package/dist/css/themes/CheckBox.css +1 -1
- package/dist/css/themes/ColorPalette.css +1 -1
- package/dist/css/themes/ColorPaletteItem.css +1 -1
- package/dist/css/themes/ColorPalettePopover.css +1 -1
- package/dist/css/themes/ColorPicker.css +1 -1
- package/dist/css/themes/ComboBox.css +1 -1
- package/dist/css/themes/ComboBoxItem.css +1 -1
- package/dist/css/themes/ComboBoxPopover.css +1 -1
- package/dist/css/themes/DatePicker.css +1 -1
- package/dist/css/themes/DatePickerPopover.css +1 -1
- package/dist/css/themes/DateTimePickerPopover.css +1 -1
- package/dist/css/themes/DayPicker.css +1 -1
- package/dist/css/themes/Dialog.css +1 -1
- package/dist/css/themes/FileUploader.css +1 -1
- package/dist/css/themes/Form.css +1 -1
- package/dist/css/themes/FormItem.css +1 -1
- package/dist/css/themes/FormItemSpan.css +1 -1
- package/dist/css/themes/GrowingButton.css +1 -1
- package/dist/css/themes/Icon.css +1 -1
- package/dist/css/themes/Input.css +1 -1
- package/dist/css/themes/InputIcon.css +1 -1
- package/dist/css/themes/InputSharedStyles.css +1 -1
- package/dist/css/themes/Label.css +1 -1
- package/dist/css/themes/Link.css +1 -1
- package/dist/css/themes/List.css +1 -1
- package/dist/css/themes/ListItem.css +1 -1
- package/dist/css/themes/ListItemBase.css +1 -1
- package/dist/css/themes/ListItemCustom.css +1 -1
- package/dist/css/themes/ListItemGroup.css +1 -1
- package/dist/css/themes/ListItemGroupHeader.css +1 -1
- package/dist/css/themes/ListItemIcon.css +1 -1
- package/dist/css/themes/Menu.css +1 -1
- package/dist/css/themes/MenuItem.css +1 -1
- package/dist/css/themes/MessageStrip.css +1 -1
- package/dist/css/themes/MonthPicker.css +1 -1
- package/dist/css/themes/MultiComboBox.css +1 -1
- package/dist/css/themes/MultiComboBoxItem.css +1 -1
- package/dist/css/themes/MultiComboBoxPopover.css +1 -1
- package/dist/css/themes/MultiInput.css +1 -1
- package/dist/css/themes/OptionBase.css +1 -1
- package/dist/css/themes/Panel.css +1 -1
- package/dist/css/themes/Popover.css +1 -1
- package/dist/css/themes/PopupsCommon.css +1 -1
- package/dist/css/themes/ProgressIndicator.css +1 -1
- package/dist/css/themes/RadioButton.css +1 -1
- package/dist/css/themes/RangeSlider.css +1 -1
- package/dist/css/themes/RatingIndicator.css +1 -1
- package/dist/css/themes/ResponsivePopover.css +1 -1
- package/dist/css/themes/ResponsivePopoverCommon.css +1 -1
- package/dist/css/themes/SegmentedButton.css +1 -1
- package/dist/css/themes/SegmentedButtonItem.css +1 -1
- package/dist/css/themes/Select.css +1 -1
- package/dist/css/themes/SliderBase.css +1 -1
- package/dist/css/themes/SplitButton.css +1 -1
- package/dist/css/themes/StepInput.css +1 -1
- package/dist/css/themes/SuggestionItem.css +1 -1
- package/dist/css/themes/SuggestionItemCustom.css +1 -1
- package/dist/css/themes/Switch.css +1 -1
- package/dist/css/themes/TabContainer.css +1 -1
- package/dist/css/themes/TabInOverflow.css +1 -1
- package/dist/css/themes/TabInStrip.css +1 -1
- package/dist/css/themes/TabSemanticIcon.css +1 -1
- package/dist/css/themes/TabSeparatorInOverflow.css +1 -1
- package/dist/css/themes/Table.css +1 -1
- package/dist/css/themes/TableCell.css +1 -1
- package/dist/css/themes/TableCellBase.css +1 -1
- package/dist/css/themes/TableGrowing.css +1 -1
- package/dist/css/themes/TableHeaderCell.css +1 -1
- package/dist/css/themes/TableHeaderCellActionBase.css +1 -0
- package/dist/css/themes/TableHeaderRow.css +1 -1
- package/dist/css/themes/TableRow.css +1 -1
- package/dist/css/themes/TableRowActionBase.css +1 -0
- package/dist/css/themes/TableRowBase.css +1 -1
- package/dist/css/themes/Tag.css +1 -1
- package/dist/css/themes/Text.css +1 -1
- package/dist/css/themes/TextArea.css +1 -1
- package/dist/css/themes/TimePicker.css +1 -1
- package/dist/css/themes/TimePickerClock.css +1 -1
- package/dist/css/themes/TimePickerPopover.css +1 -1
- package/dist/css/themes/Toast.css +1 -1
- package/dist/css/themes/ToggleButton.css +1 -1
- package/dist/css/themes/Token.css +1 -1
- package/dist/css/themes/Tokenizer.css +1 -1
- package/dist/css/themes/TokenizerPopover.css +1 -1
- package/dist/css/themes/Toolbar.css +1 -1
- package/dist/css/themes/ToolbarPopover.css +1 -1
- package/dist/css/themes/ToolbarSelect.css +1 -0
- package/dist/css/themes/TreeItem.css +1 -1
- package/dist/css/themes/ValueStateMessage.css +1 -1
- package/dist/css/themes/YearPicker.css +1 -1
- package/dist/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_horizon/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
- package/dist/custom-elements-internal.json +11970 -9476
- package/dist/custom-elements.json +2993 -1158
- package/dist/features/ColorPaletteMoreColors.d.ts +1 -11
- package/dist/features/ColorPaletteMoreColors.js +3 -18
- package/dist/features/ColorPaletteMoreColors.js.map +1 -1
- package/dist/features/ColorPaletteMoreColorsTemplate.js +1 -1
- package/dist/features/ColorPaletteMoreColorsTemplate.js.map +1 -1
- package/dist/features/InputSuggestions.d.ts +4 -7
- package/dist/features/InputSuggestions.js +11 -20
- package/dist/features/InputSuggestions.js.map +1 -1
- package/dist/features/InputSuggestionsTemplate.d.ts +5 -1
- package/dist/features/InputSuggestionsTemplate.js +9 -5
- package/dist/features/InputSuggestionsTemplate.js.map +1 -1
- package/dist/features/ListItemStandardExpandableText.d.ts +1 -0
- package/dist/features/ListItemStandardExpandableText.js +5 -0
- package/dist/features/ListItemStandardExpandableText.js.map +1 -0
- package/dist/features/ListItemStandardExpandableTextTemplate.d.ts +10 -0
- package/dist/features/ListItemStandardExpandableTextTemplate.js +14 -0
- package/dist/features/ListItemStandardExpandableTextTemplate.js.map +1 -0
- package/dist/generated/assets/i18n/messagebundle_ar.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_bg.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_ca.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_cnr.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_cs.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_cy.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_da.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_de.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_el.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_en.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_en_GB.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_en_US_sappsd.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_en_US_saprigi.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_en_US_saptrc.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_es.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_es_MX.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_et.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_fi.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_fr.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_fr_CA.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_hi.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_hr.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_hu.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_id.json +1 -0
- package/dist/generated/assets/i18n/messagebundle_it.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_iw.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_ja.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_kk.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_ko.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_lt.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_lv.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_mk.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_ms.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_nl.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_no.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_pl.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_pt.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_pt_PT.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_ro.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_ru.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_sh.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_sk.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_sl.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_sr.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_sv.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_th.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_tr.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_uk.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_vi.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_zh_CN.json +1 -1
- package/dist/generated/assets/i18n/messagebundle_zh_TW.json +1 -1
- package/dist/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json +1 -1
- package/dist/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json +1 -1
- package/dist/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json +1 -1
- package/dist/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json +1 -1
- package/dist/generated/assets/themes/sap_horizon/parameters-bundle.css.json +1 -1
- package/dist/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json +1 -1
- package/dist/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json +1 -1
- package/dist/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json +1 -1
- package/dist/generated/i18n/i18n-defaults.d.ts +19 -2
- package/dist/generated/i18n/i18n-defaults.js +20 -3
- package/dist/generated/i18n/i18n-defaults.js.map +1 -1
- package/dist/generated/json-imports/Themes-fetch.js +1 -5
- package/dist/generated/json-imports/Themes-fetch.js.map +1 -1
- package/dist/generated/json-imports/Themes.js +1 -5
- package/dist/generated/json-imports/Themes.js.map +1 -1
- package/dist/generated/json-imports/i18n-fetch.js +2 -2
- package/dist/generated/json-imports/i18n-fetch.js.map +1 -1
- package/dist/generated/json-imports/i18n.js +2 -2
- package/dist/generated/json-imports/i18n.js.map +1 -1
- package/dist/generated/themes/Avatar.css.d.ts +1 -1
- package/dist/generated/themes/Avatar.css.js +1 -1
- package/dist/generated/themes/Avatar.css.js.map +1 -1
- package/dist/generated/themes/AvatarGroup.css.d.ts +1 -1
- package/dist/generated/themes/AvatarGroup.css.js +1 -1
- package/dist/generated/themes/AvatarGroup.css.js.map +1 -1
- package/dist/generated/themes/Bar.css.d.ts +1 -1
- package/dist/generated/themes/Bar.css.js +1 -1
- package/dist/generated/themes/Bar.css.js.map +1 -1
- package/dist/generated/themes/Breadcrumbs.css.d.ts +1 -1
- package/dist/generated/themes/Breadcrumbs.css.js +1 -1
- package/dist/generated/themes/Breadcrumbs.css.js.map +1 -1
- package/dist/generated/themes/BusyIndicator.css.d.ts +1 -1
- package/dist/generated/themes/BusyIndicator.css.js +1 -1
- package/dist/generated/themes/BusyIndicator.css.js.map +1 -1
- package/dist/generated/themes/Button.css.d.ts +1 -1
- package/dist/generated/themes/Button.css.js +1 -1
- package/dist/generated/themes/Button.css.js.map +1 -1
- package/dist/generated/themes/ButtonBadge.css.d.ts +2 -0
- package/dist/generated/themes/ButtonBadge.css.js +8 -0
- package/dist/generated/themes/ButtonBadge.css.js.map +1 -0
- package/dist/generated/themes/Calendar.css.d.ts +1 -1
- package/dist/generated/themes/Calendar.css.js +1 -1
- package/dist/generated/themes/Calendar.css.js.map +1 -1
- package/dist/generated/themes/CalendarHeader.css.d.ts +1 -1
- package/dist/generated/themes/CalendarHeader.css.js +1 -1
- package/dist/generated/themes/CalendarHeader.css.js.map +1 -1
- package/dist/generated/themes/CalendarLegend.css.d.ts +1 -1
- package/dist/generated/themes/CalendarLegend.css.js +1 -1
- package/dist/generated/themes/CalendarLegend.css.js.map +1 -1
- package/dist/generated/themes/CalendarLegendItem.css.d.ts +1 -1
- package/dist/generated/themes/CalendarLegendItem.css.js +1 -1
- package/dist/generated/themes/CalendarLegendItem.css.js.map +1 -1
- package/dist/generated/themes/Card.css.d.ts +1 -1
- package/dist/generated/themes/Card.css.js +1 -1
- package/dist/generated/themes/Card.css.js.map +1 -1
- package/dist/generated/themes/CardHeader.css.d.ts +1 -1
- package/dist/generated/themes/CardHeader.css.js +1 -1
- package/dist/generated/themes/CardHeader.css.js.map +1 -1
- package/dist/generated/themes/Carousel.css.d.ts +1 -1
- package/dist/generated/themes/Carousel.css.js +1 -1
- package/dist/generated/themes/Carousel.css.js.map +1 -1
- package/dist/generated/themes/CheckBox.css.d.ts +1 -1
- package/dist/generated/themes/CheckBox.css.js +1 -1
- package/dist/generated/themes/CheckBox.css.js.map +1 -1
- package/dist/generated/themes/ColorPalette.css.d.ts +1 -1
- package/dist/generated/themes/ColorPalette.css.js +1 -1
- package/dist/generated/themes/ColorPalette.css.js.map +1 -1
- package/dist/generated/themes/ColorPaletteItem.css.d.ts +1 -1
- package/dist/generated/themes/ColorPaletteItem.css.js +1 -1
- package/dist/generated/themes/ColorPaletteItem.css.js.map +1 -1
- package/dist/generated/themes/ColorPalettePopover.css.d.ts +1 -1
- package/dist/generated/themes/ColorPalettePopover.css.js +1 -1
- package/dist/generated/themes/ColorPalettePopover.css.js.map +1 -1
- package/dist/generated/themes/ColorPicker.css.d.ts +1 -1
- package/dist/generated/themes/ColorPicker.css.js +1 -1
- package/dist/generated/themes/ColorPicker.css.js.map +1 -1
- package/dist/generated/themes/ComboBox.css.d.ts +1 -1
- package/dist/generated/themes/ComboBox.css.js +1 -1
- package/dist/generated/themes/ComboBox.css.js.map +1 -1
- package/dist/generated/themes/ComboBoxItem.css.d.ts +1 -1
- package/dist/generated/themes/ComboBoxItem.css.js +1 -1
- package/dist/generated/themes/ComboBoxItem.css.js.map +1 -1
- package/dist/generated/themes/ComboBoxPopover.css.d.ts +1 -1
- package/dist/generated/themes/ComboBoxPopover.css.js +1 -1
- package/dist/generated/themes/ComboBoxPopover.css.js.map +1 -1
- package/dist/generated/themes/DatePicker.css.d.ts +1 -1
- package/dist/generated/themes/DatePicker.css.js +1 -1
- package/dist/generated/themes/DatePicker.css.js.map +1 -1
- package/dist/generated/themes/DatePickerPopover.css.d.ts +1 -1
- package/dist/generated/themes/DatePickerPopover.css.js +1 -1
- package/dist/generated/themes/DatePickerPopover.css.js.map +1 -1
- package/dist/generated/themes/DateTimePickerPopover.css.d.ts +1 -1
- package/dist/generated/themes/DateTimePickerPopover.css.js +1 -1
- package/dist/generated/themes/DateTimePickerPopover.css.js.map +1 -1
- package/dist/generated/themes/DayPicker.css.d.ts +1 -1
- package/dist/generated/themes/DayPicker.css.js +1 -1
- package/dist/generated/themes/DayPicker.css.js.map +1 -1
- package/dist/generated/themes/Dialog.css.d.ts +1 -1
- package/dist/generated/themes/Dialog.css.js +1 -1
- package/dist/generated/themes/Dialog.css.js.map +1 -1
- package/dist/generated/themes/FileUploader.css.d.ts +1 -1
- package/dist/generated/themes/FileUploader.css.js +1 -1
- package/dist/generated/themes/FileUploader.css.js.map +1 -1
- package/dist/generated/themes/Form.css.d.ts +1 -1
- package/dist/generated/themes/Form.css.js +1 -1
- package/dist/generated/themes/Form.css.js.map +1 -1
- package/dist/generated/themes/FormItem.css.d.ts +1 -1
- package/dist/generated/themes/FormItem.css.js +1 -1
- package/dist/generated/themes/FormItem.css.js.map +1 -1
- package/dist/generated/themes/FormItemSpan.css.d.ts +1 -1
- package/dist/generated/themes/FormItemSpan.css.js +1 -1
- package/dist/generated/themes/FormItemSpan.css.js.map +1 -1
- package/dist/generated/themes/GrowingButton.css.d.ts +1 -1
- package/dist/generated/themes/GrowingButton.css.js +1 -1
- package/dist/generated/themes/GrowingButton.css.js.map +1 -1
- package/dist/generated/themes/Icon.css.d.ts +1 -1
- package/dist/generated/themes/Icon.css.js +1 -1
- package/dist/generated/themes/Icon.css.js.map +1 -1
- package/dist/generated/themes/Input.css.d.ts +1 -1
- package/dist/generated/themes/Input.css.js +1 -1
- package/dist/generated/themes/Input.css.js.map +1 -1
- package/dist/generated/themes/InputIcon.css.d.ts +1 -1
- package/dist/generated/themes/InputIcon.css.js +1 -1
- package/dist/generated/themes/InputIcon.css.js.map +1 -1
- package/dist/generated/themes/InputSharedStyles.css.d.ts +1 -1
- package/dist/generated/themes/InputSharedStyles.css.js +1 -1
- package/dist/generated/themes/InputSharedStyles.css.js.map +1 -1
- package/dist/generated/themes/Label.css.d.ts +1 -1
- package/dist/generated/themes/Label.css.js +1 -1
- package/dist/generated/themes/Label.css.js.map +1 -1
- package/dist/generated/themes/Link.css.d.ts +1 -1
- package/dist/generated/themes/Link.css.js +1 -1
- package/dist/generated/themes/Link.css.js.map +1 -1
- package/dist/generated/themes/List.css.d.ts +1 -1
- package/dist/generated/themes/List.css.js +1 -1
- package/dist/generated/themes/List.css.js.map +1 -1
- package/dist/generated/themes/ListItem.css.d.ts +1 -1
- package/dist/generated/themes/ListItem.css.js +1 -1
- package/dist/generated/themes/ListItem.css.js.map +1 -1
- package/dist/generated/themes/ListItemBase.css.d.ts +1 -1
- package/dist/generated/themes/ListItemBase.css.js +1 -1
- package/dist/generated/themes/ListItemBase.css.js.map +1 -1
- package/dist/generated/themes/ListItemCustom.css.d.ts +1 -1
- package/dist/generated/themes/ListItemCustom.css.js +1 -1
- package/dist/generated/themes/ListItemCustom.css.js.map +1 -1
- package/dist/generated/themes/ListItemGroup.css.d.ts +1 -1
- package/dist/generated/themes/ListItemGroup.css.js +1 -1
- package/dist/generated/themes/ListItemGroup.css.js.map +1 -1
- package/dist/generated/themes/ListItemGroupHeader.css.d.ts +1 -1
- package/dist/generated/themes/ListItemGroupHeader.css.js +1 -1
- package/dist/generated/themes/ListItemGroupHeader.css.js.map +1 -1
- package/dist/generated/themes/ListItemIcon.css.d.ts +1 -1
- package/dist/generated/themes/ListItemIcon.css.js +1 -1
- package/dist/generated/themes/ListItemIcon.css.js.map +1 -1
- package/dist/generated/themes/Menu.css.d.ts +1 -1
- package/dist/generated/themes/Menu.css.js +1 -1
- package/dist/generated/themes/Menu.css.js.map +1 -1
- package/dist/generated/themes/MenuItem.css.d.ts +1 -1
- package/dist/generated/themes/MenuItem.css.js +1 -1
- package/dist/generated/themes/MenuItem.css.js.map +1 -1
- package/dist/generated/themes/MessageStrip.css.d.ts +1 -1
- package/dist/generated/themes/MessageStrip.css.js +1 -1
- package/dist/generated/themes/MessageStrip.css.js.map +1 -1
- package/dist/generated/themes/MonthPicker.css.d.ts +1 -1
- package/dist/generated/themes/MonthPicker.css.js +1 -1
- package/dist/generated/themes/MonthPicker.css.js.map +1 -1
- package/dist/generated/themes/MultiComboBox.css.d.ts +1 -1
- package/dist/generated/themes/MultiComboBox.css.js +1 -1
- package/dist/generated/themes/MultiComboBox.css.js.map +1 -1
- package/dist/generated/themes/MultiComboBoxItem.css.d.ts +1 -1
- package/dist/generated/themes/MultiComboBoxItem.css.js +1 -1
- package/dist/generated/themes/MultiComboBoxItem.css.js.map +1 -1
- package/dist/generated/themes/MultiComboBoxPopover.css.d.ts +1 -1
- package/dist/generated/themes/MultiComboBoxPopover.css.js +1 -1
- package/dist/generated/themes/MultiComboBoxPopover.css.js.map +1 -1
- package/dist/generated/themes/MultiInput.css.d.ts +1 -1
- package/dist/generated/themes/MultiInput.css.js +1 -1
- package/dist/generated/themes/MultiInput.css.js.map +1 -1
- package/dist/generated/themes/OptionBase.css.d.ts +1 -1
- package/dist/generated/themes/OptionBase.css.js +1 -1
- package/dist/generated/themes/OptionBase.css.js.map +1 -1
- package/dist/generated/themes/Panel.css.d.ts +1 -1
- package/dist/generated/themes/Panel.css.js +1 -1
- package/dist/generated/themes/Panel.css.js.map +1 -1
- package/dist/generated/themes/Popover.css.d.ts +1 -1
- package/dist/generated/themes/Popover.css.js +1 -1
- package/dist/generated/themes/Popover.css.js.map +1 -1
- package/dist/generated/themes/PopupsCommon.css.d.ts +1 -1
- package/dist/generated/themes/PopupsCommon.css.js +1 -1
- package/dist/generated/themes/PopupsCommon.css.js.map +1 -1
- package/dist/generated/themes/ProgressIndicator.css.d.ts +1 -1
- package/dist/generated/themes/ProgressIndicator.css.js +1 -1
- package/dist/generated/themes/ProgressIndicator.css.js.map +1 -1
- package/dist/generated/themes/RadioButton.css.d.ts +1 -1
- package/dist/generated/themes/RadioButton.css.js +1 -1
- package/dist/generated/themes/RadioButton.css.js.map +1 -1
- package/dist/generated/themes/RangeSlider.css.d.ts +1 -1
- package/dist/generated/themes/RangeSlider.css.js +1 -1
- package/dist/generated/themes/RangeSlider.css.js.map +1 -1
- package/dist/generated/themes/RatingIndicator.css.d.ts +1 -1
- package/dist/generated/themes/RatingIndicator.css.js +1 -1
- package/dist/generated/themes/RatingIndicator.css.js.map +1 -1
- package/dist/generated/themes/ResponsivePopover.css.d.ts +1 -1
- package/dist/generated/themes/ResponsivePopover.css.js +1 -1
- package/dist/generated/themes/ResponsivePopover.css.js.map +1 -1
- package/dist/generated/themes/ResponsivePopoverCommon.css.d.ts +1 -1
- package/dist/generated/themes/ResponsivePopoverCommon.css.js +1 -1
- package/dist/generated/themes/ResponsivePopoverCommon.css.js.map +1 -1
- package/dist/generated/themes/SegmentedButton.css.d.ts +1 -1
- package/dist/generated/themes/SegmentedButton.css.js +1 -1
- package/dist/generated/themes/SegmentedButton.css.js.map +1 -1
- package/dist/generated/themes/SegmentedButtonItem.css.d.ts +1 -1
- package/dist/generated/themes/SegmentedButtonItem.css.js +1 -1
- package/dist/generated/themes/SegmentedButtonItem.css.js.map +1 -1
- package/dist/generated/themes/Select.css.d.ts +1 -1
- package/dist/generated/themes/Select.css.js +1 -1
- package/dist/generated/themes/Select.css.js.map +1 -1
- package/dist/generated/themes/SliderBase.css.d.ts +1 -1
- package/dist/generated/themes/SliderBase.css.js +1 -1
- package/dist/generated/themes/SliderBase.css.js.map +1 -1
- package/dist/generated/themes/SplitButton.css.d.ts +1 -1
- package/dist/generated/themes/SplitButton.css.js +1 -1
- package/dist/generated/themes/SplitButton.css.js.map +1 -1
- package/dist/generated/themes/StepInput.css.d.ts +1 -1
- package/dist/generated/themes/StepInput.css.js +1 -1
- package/dist/generated/themes/StepInput.css.js.map +1 -1
- package/dist/generated/themes/SuggestionItem.css.d.ts +1 -1
- package/dist/generated/themes/SuggestionItem.css.js +1 -1
- package/dist/generated/themes/SuggestionItem.css.js.map +1 -1
- package/dist/generated/themes/SuggestionItemCustom.css.d.ts +1 -1
- package/dist/generated/themes/SuggestionItemCustom.css.js +1 -1
- package/dist/generated/themes/SuggestionItemCustom.css.js.map +1 -1
- package/dist/generated/themes/Switch.css.d.ts +1 -1
- package/dist/generated/themes/Switch.css.js +1 -1
- package/dist/generated/themes/Switch.css.js.map +1 -1
- package/dist/generated/themes/TabContainer.css.d.ts +1 -1
- package/dist/generated/themes/TabContainer.css.js +1 -1
- package/dist/generated/themes/TabContainer.css.js.map +1 -1
- package/dist/generated/themes/TabInOverflow.css.d.ts +1 -1
- package/dist/generated/themes/TabInOverflow.css.js +1 -1
- package/dist/generated/themes/TabInOverflow.css.js.map +1 -1
- package/dist/generated/themes/TabInStrip.css.d.ts +1 -1
- package/dist/generated/themes/TabInStrip.css.js +1 -1
- package/dist/generated/themes/TabInStrip.css.js.map +1 -1
- package/dist/generated/themes/TabSemanticIcon.css.d.ts +1 -1
- package/dist/generated/themes/TabSemanticIcon.css.js +1 -1
- package/dist/generated/themes/TabSemanticIcon.css.js.map +1 -1
- package/dist/generated/themes/TabSeparatorInOverflow.css.d.ts +1 -1
- package/dist/generated/themes/TabSeparatorInOverflow.css.js +1 -1
- package/dist/generated/themes/TabSeparatorInOverflow.css.js.map +1 -1
- package/dist/generated/themes/Table.css.d.ts +1 -1
- package/dist/generated/themes/Table.css.js +1 -1
- package/dist/generated/themes/Table.css.js.map +1 -1
- package/dist/generated/themes/TableCell.css.d.ts +1 -1
- package/dist/generated/themes/TableCell.css.js +1 -1
- package/dist/generated/themes/TableCell.css.js.map +1 -1
- package/dist/generated/themes/TableCellBase.css.d.ts +1 -1
- package/dist/generated/themes/TableCellBase.css.js +1 -1
- package/dist/generated/themes/TableCellBase.css.js.map +1 -1
- package/dist/generated/themes/TableGrowing.css.d.ts +1 -1
- package/dist/generated/themes/TableGrowing.css.js +1 -1
- package/dist/generated/themes/TableGrowing.css.js.map +1 -1
- package/dist/generated/themes/TableHeaderCell.css.d.ts +1 -1
- package/dist/generated/themes/TableHeaderCell.css.js +1 -1
- package/dist/generated/themes/TableHeaderCell.css.js.map +1 -1
- package/dist/generated/themes/TableHeaderCellActionBase.css.d.ts +2 -0
- package/dist/generated/themes/TableHeaderCellActionBase.css.js +8 -0
- package/dist/generated/themes/TableHeaderCellActionBase.css.js.map +1 -0
- package/dist/generated/themes/TableHeaderRow.css.d.ts +1 -1
- package/dist/generated/themes/TableHeaderRow.css.js +1 -1
- package/dist/generated/themes/TableHeaderRow.css.js.map +1 -1
- package/dist/generated/themes/TableRow.css.d.ts +1 -1
- package/dist/generated/themes/TableRow.css.js +1 -1
- package/dist/generated/themes/TableRow.css.js.map +1 -1
- package/dist/generated/themes/TableRowActionBase.css.d.ts +2 -0
- package/dist/generated/themes/TableRowActionBase.css.js +8 -0
- package/dist/generated/themes/TableRowActionBase.css.js.map +1 -0
- package/dist/generated/themes/TableRowBase.css.d.ts +1 -1
- package/dist/generated/themes/TableRowBase.css.js +1 -1
- package/dist/generated/themes/TableRowBase.css.js.map +1 -1
- package/dist/generated/themes/Tag.css.d.ts +1 -1
- package/dist/generated/themes/Tag.css.js +1 -1
- package/dist/generated/themes/Tag.css.js.map +1 -1
- package/dist/generated/themes/Text.css.d.ts +1 -1
- package/dist/generated/themes/Text.css.js +1 -1
- package/dist/generated/themes/Text.css.js.map +1 -1
- package/dist/generated/themes/TextArea.css.d.ts +1 -1
- package/dist/generated/themes/TextArea.css.js +1 -1
- package/dist/generated/themes/TextArea.css.js.map +1 -1
- package/dist/generated/themes/TimePicker.css.d.ts +1 -1
- package/dist/generated/themes/TimePicker.css.js +1 -1
- package/dist/generated/themes/TimePicker.css.js.map +1 -1
- package/dist/generated/themes/TimePickerClock.css.d.ts +1 -1
- package/dist/generated/themes/TimePickerClock.css.js +1 -1
- package/dist/generated/themes/TimePickerClock.css.js.map +1 -1
- package/dist/generated/themes/TimePickerPopover.css.d.ts +1 -1
- package/dist/generated/themes/TimePickerPopover.css.js +1 -1
- package/dist/generated/themes/TimePickerPopover.css.js.map +1 -1
- package/dist/generated/themes/Toast.css.d.ts +1 -1
- package/dist/generated/themes/Toast.css.js +1 -1
- package/dist/generated/themes/Toast.css.js.map +1 -1
- package/dist/generated/themes/ToggleButton.css.d.ts +1 -1
- package/dist/generated/themes/ToggleButton.css.js +1 -1
- package/dist/generated/themes/ToggleButton.css.js.map +1 -1
- package/dist/generated/themes/Token.css.d.ts +1 -1
- package/dist/generated/themes/Token.css.js +1 -1
- package/dist/generated/themes/Token.css.js.map +1 -1
- package/dist/generated/themes/Tokenizer.css.d.ts +1 -1
- package/dist/generated/themes/Tokenizer.css.js +1 -1
- package/dist/generated/themes/Tokenizer.css.js.map +1 -1
- package/dist/generated/themes/TokenizerPopover.css.d.ts +1 -1
- package/dist/generated/themes/TokenizerPopover.css.js +1 -1
- package/dist/generated/themes/TokenizerPopover.css.js.map +1 -1
- package/dist/generated/themes/Toolbar.css.d.ts +1 -1
- package/dist/generated/themes/Toolbar.css.js +1 -1
- package/dist/generated/themes/Toolbar.css.js.map +1 -1
- package/dist/generated/themes/ToolbarPopover.css.d.ts +1 -1
- package/dist/generated/themes/ToolbarPopover.css.js +1 -1
- package/dist/generated/themes/ToolbarPopover.css.js.map +1 -1
- package/dist/generated/themes/ToolbarSelect.css.d.ts +2 -0
- package/dist/generated/themes/{MyDemo.css.js → ToolbarSelect.css.js} +3 -2
- package/dist/generated/themes/ToolbarSelect.css.js.map +1 -0
- package/dist/generated/themes/TreeItem.css.d.ts +1 -1
- package/dist/generated/themes/TreeItem.css.js +1 -1
- package/dist/generated/themes/TreeItem.css.js.map +1 -1
- package/dist/generated/themes/ValueStateMessage.css.d.ts +1 -1
- package/dist/generated/themes/ValueStateMessage.css.js +1 -1
- package/dist/generated/themes/ValueStateMessage.css.js.map +1 -1
- package/dist/generated/themes/YearPicker.css.d.ts +1 -1
- package/dist/generated/themes/YearPicker.css.js +1 -1
- package/dist/generated/themes/YearPicker.css.js.map +1 -1
- package/dist/generated/themes/sap_fiori_3/parameters-bundle.css.d.ts +1 -1
- package/dist/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_fiori_3/parameters-bundle.css.js.map +1 -1
- package/dist/generated/themes/sap_fiori_3_dark/parameters-bundle.css.d.ts +1 -1
- package/dist/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js.map +1 -1
- package/dist/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.d.ts +1 -1
- package/dist/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js.map +1 -1
- package/dist/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.d.ts +1 -1
- package/dist/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js.map +1 -1
- package/dist/generated/themes/sap_horizon/parameters-bundle.css.d.ts +1 -1
- package/dist/generated/themes/sap_horizon/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_horizon/parameters-bundle.css.js.map +1 -1
- package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.d.ts +1 -1
- package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.js.map +1 -1
- package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.d.ts +1 -1
- package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.js.map +1 -1
- package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.d.ts +1 -1
- package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.js.map +1 -1
- package/dist/popup-utils/PopoverRegistry.js +2 -2
- package/dist/popup-utils/PopoverRegistry.js.map +1 -1
- package/dist/types/AvatarColorScheme.d.ts +5 -0
- package/dist/types/AvatarColorScheme.js +5 -0
- package/dist/types/AvatarColorScheme.js.map +1 -1
- package/dist/types/BarAccessibleRole.d.ts +18 -0
- package/dist/types/BarAccessibleRole.js +20 -0
- package/dist/types/BarAccessibleRole.js.map +1 -0
- package/dist/types/ButtonBadgeDesign.d.ts +25 -0
- package/dist/types/ButtonBadgeDesign.js +27 -0
- package/dist/types/ButtonBadgeDesign.js.map +1 -0
- package/dist/types/ExpandableTextTemplateParams.d.ts +13 -0
- package/dist/types/ExpandableTextTemplateParams.js +2 -0
- package/dist/types/ExpandableTextTemplateParams.js.map +1 -0
- package/dist/types/InputKeyHint.d.ts +16 -0
- package/dist/types/InputKeyHint.js +18 -0
- package/dist/types/InputKeyHint.js.map +1 -0
- package/dist/types/InteractiveAreaSize.d.ts +19 -0
- package/dist/types/InteractiveAreaSize.js +21 -0
- package/dist/types/InteractiveAreaSize.js.map +1 -0
- package/dist/types/ListItemAccessibleRole.d.ts +5 -0
- package/dist/types/ListItemAccessibleRole.js +5 -0
- package/dist/types/ListItemAccessibleRole.js.map +1 -1
- package/dist/types/TableCellHorizontalAlign.d.ts +1 -0
- package/dist/types/TableCellHorizontalAlign.js +1 -0
- package/dist/types/TableCellHorizontalAlign.js.map +1 -1
- package/dist/types/TableGrowingMode.d.ts +3 -0
- package/dist/types/TableGrowingMode.js +3 -0
- package/dist/types/TableGrowingMode.js.map +1 -1
- package/dist/types/TableOverflowMode.d.ts +1 -0
- package/dist/types/TableOverflowMode.js +1 -0
- package/dist/types/TableOverflowMode.js.map +1 -1
- package/dist/types/TableSelectionMode.d.ts +2 -0
- package/dist/types/TableSelectionMode.js +2 -0
- package/dist/types/TableSelectionMode.js.map +1 -1
- package/dist/vscode.html-custom-data.json +339 -105
- package/dist/web-types.json +885 -208
- package/package-scripts.cjs +4 -0
- package/package.json +18 -11
- package/src/AvatarGroupTemplate.tsx +1 -0
- package/src/AvatarTemplate.tsx +1 -1
- package/src/BarTemplate.tsx +2 -2
- package/src/BreadcrumbsPopoverTemplate.tsx +6 -1
- package/src/BusyIndicatorTemplate.tsx +1 -0
- package/src/ButtonBadgeTemplate.tsx +6 -0
- package/src/ButtonTemplate.tsx +8 -5
- package/src/CalendarHeaderTemplate.tsx +12 -0
- package/src/CardHeaderTemplate.tsx +1 -2
- package/src/CarouselTemplate.tsx +3 -2
- package/src/ColorPaletteItemTemplate.tsx +1 -0
- package/src/ColorPaletteTemplate.tsx +2 -2
- package/src/ColorPickerTemplate.tsx +37 -37
- package/src/ComboBoxItemGroupTemplate.tsx +2 -2
- package/src/DatePickerInputTemplate.tsx +5 -4
- package/src/DatePickerPopoverTemplate.tsx +51 -0
- package/src/DateTimePickerTemplate.tsx +48 -51
- package/src/DayPickerTemplate.tsx +1 -0
- package/src/DialogTemplate.tsx +1 -1
- package/src/ExpandableTextTemplate.tsx +0 -1
- package/src/FormTemplate.tsx +3 -2
- package/src/InputPopoverTemplate.tsx +5 -2
- package/src/InputTemplate.tsx +14 -4
- package/src/ListBoxItemGroupTemplate.tsx +33 -0
- package/src/ListItemGroupHeaderTemplate.tsx +5 -3
- package/src/ListItemGroupTemplate.tsx +21 -19
- package/src/ListItemStandardTemplate.tsx +55 -16
- package/src/ListItemTemplate.tsx +2 -4
- package/src/ListTemplate.tsx +2 -1
- package/src/MenuItemTemplate.tsx +7 -19
- package/src/MenuTemplate.tsx +2 -0
- package/src/MessageStripTemplate.tsx +4 -3
- package/src/MultiComboBoxItemGroupTemplate.tsx +2 -2
- package/src/MultiComboBoxPopoverTemplate.tsx +150 -0
- package/src/MultiComboBoxTemplate.tsx +121 -0
- package/src/MultiInputTemplate.tsx +4 -0
- package/src/RangeSliderTemplate.tsx +2 -2
- package/src/ResponsivePopoverTemplate.tsx +1 -0
- package/src/SelectPopoverTemplate.tsx +107 -0
- package/src/SelectTemplate.tsx +78 -0
- package/src/SliderBaseTemplate.tsx +2 -9
- package/src/SliderTemplate.tsx +3 -2
- package/src/SplitButtonTemplate.tsx +0 -1
- package/src/SwitchTemplate.tsx +1 -7
- package/src/TabContainerTemplate.tsx +1 -0
- package/src/TableCellTemplate.tsx +15 -0
- package/src/TableGrowingTemplate.tsx +23 -0
- package/src/TableHeaderCellActionBaseTemplate.tsx +14 -0
- package/src/TableHeaderCellTemplate.tsx +26 -0
- package/src/TableHeaderRowTemplate.tsx +44 -0
- package/src/TableRowActionBaseTemplate.tsx +30 -0
- package/src/TableRowTemplate.tsx +77 -0
- package/src/TableTemplate.tsx +77 -0
- package/src/TagTemplate.tsx +2 -1
- package/src/TimePickerClockTemplate.tsx +35 -36
- package/src/TimePickerPopoverTemplate.tsx +54 -1
- package/src/TimePickerTemplate.tsx +7 -5
- package/src/TimeSelectionClocksTemplate.tsx +2 -1
- package/src/ToastTemplate.tsx +6 -4
- package/src/TokenTemplate.tsx +1 -0
- package/src/TokenizerPopoverTemplate.tsx +0 -1
- package/src/ToolbarButtonTemplate.tsx +1 -0
- package/src/ToolbarPopoverButtonTemplate.tsx +1 -0
- package/src/ToolbarPopoverSelectTemplate.tsx +4 -0
- package/src/ToolbarPopoverTemplate.tsx +1 -0
- package/src/ToolbarSelectTemplate.tsx +4 -0
- package/src/ToolbarTemplate.tsx +1 -0
- package/src/TreeItemBaseTemplate.tsx +7 -1
- package/src/TreeItemTemplate.tsx +1 -1
- package/src/YearPickerTemplate.tsx +1 -1
- package/src/features/ColorPaletteMoreColorsTemplate.tsx +2 -2
- package/src/features/InputSuggestionsTemplate.tsx +12 -6
- package/src/features/ListItemStandardExpandableTextTemplate.tsx +31 -0
- package/src/i18n/messagebundle.properties +57 -10
- package/src/i18n/messagebundle_ar.properties +32 -8
- package/src/i18n/messagebundle_bg.properties +33 -9
- package/src/i18n/messagebundle_ca.properties +32 -8
- package/src/i18n/messagebundle_cnr.properties +32 -8
- package/src/i18n/messagebundle_cs.properties +26 -2
- package/src/i18n/messagebundle_cy.properties +32 -8
- package/src/i18n/messagebundle_da.properties +32 -8
- package/src/i18n/messagebundle_de.properties +33 -9
- package/src/i18n/messagebundle_el.properties +32 -8
- package/src/i18n/messagebundle_en.properties +246 -3
- package/src/i18n/messagebundle_en_GB.properties +27 -3
- package/src/i18n/messagebundle_en_US_sappsd.properties +27 -3
- package/src/i18n/messagebundle_en_US_saprigi.properties +29 -3
- package/src/i18n/messagebundle_en_US_saptrc.properties +27 -3
- package/src/i18n/messagebundle_es.properties +33 -9
- package/src/i18n/messagebundle_es_MX.properties +32 -8
- package/src/i18n/messagebundle_et.properties +32 -8
- package/src/i18n/messagebundle_fi.properties +32 -8
- package/src/i18n/messagebundle_fr.properties +37 -13
- package/src/i18n/messagebundle_fr_CA.properties +36 -12
- package/src/i18n/messagebundle_hi.properties +32 -8
- package/src/i18n/messagebundle_hr.properties +38 -14
- package/src/i18n/messagebundle_hu.properties +33 -9
- package/src/i18n/messagebundle_id.properties +32 -8
- package/src/i18n/messagebundle_it.properties +48 -24
- package/src/i18n/messagebundle_iw.properties +32 -8
- package/src/i18n/messagebundle_ja.properties +32 -8
- package/src/i18n/messagebundle_kk.properties +27 -3
- package/src/i18n/messagebundle_ko.properties +33 -9
- package/src/i18n/messagebundle_lt.properties +32 -8
- package/src/i18n/messagebundle_lv.properties +45 -21
- package/src/i18n/messagebundle_mk.properties +32 -8
- package/src/i18n/messagebundle_ms.properties +34 -10
- package/src/i18n/messagebundle_nl.properties +32 -8
- package/src/i18n/messagebundle_no.properties +32 -8
- package/src/i18n/messagebundle_pl.properties +32 -8
- package/src/i18n/messagebundle_pt.properties +33 -9
- package/src/i18n/messagebundle_pt_PT.properties +32 -8
- package/src/i18n/messagebundle_ro.properties +34 -10
- package/src/i18n/messagebundle_ru.properties +34 -10
- package/src/i18n/messagebundle_sh.properties +32 -8
- package/src/i18n/messagebundle_sk.properties +33 -9
- package/src/i18n/messagebundle_sl.properties +34 -10
- package/src/i18n/messagebundle_sr.properties +32 -8
- package/src/i18n/messagebundle_sv.properties +33 -9
- package/src/i18n/messagebundle_th.properties +33 -9
- package/src/i18n/messagebundle_tr.properties +31 -7
- package/src/i18n/messagebundle_uk.properties +30 -6
- package/src/i18n/messagebundle_vi.properties +34 -10
- package/src/i18n/messagebundle_zh_CN.properties +32 -8
- package/src/i18n/messagebundle_zh_TW.properties +32 -8
- package/src/themes/Avatar.css +57 -3
- package/src/themes/Bar.css +22 -29
- package/src/themes/Breadcrumbs.css +1 -1
- package/src/themes/BusyIndicator.css +2 -2
- package/src/themes/Button.css +39 -1
- package/src/themes/ButtonBadge.css +17 -0
- package/src/themes/CalendarHeader.css +10 -0
- package/src/themes/CalendarLegendItem.css +14 -1
- package/src/themes/CheckBox.css +14 -1
- package/src/themes/ColorPaletteItem.css +3 -3
- package/src/themes/ColorPicker.css +51 -46
- package/src/themes/ComboBoxPopover.css +1 -2
- package/src/themes/DatePicker.css +4 -0
- package/src/themes/DatePickerPopover.css +7 -0
- package/src/themes/DateTimePickerPopover.css +9 -0
- package/src/themes/DayPicker.css +2 -1
- package/src/themes/FormItem.css +4 -5
- package/src/themes/Icon.css +1 -1
- package/src/themes/Input.css +8 -3
- package/src/themes/Label.css +1 -1
- package/src/themes/Link.css +9 -0
- package/src/themes/List.css +4 -3
- package/src/themes/ListItem.css +85 -13
- package/src/themes/ListItemBase.css +6 -6
- package/src/themes/Menu.css +7 -0
- package/src/themes/MenuItem.css +5 -1
- package/src/themes/MessageStrip.css +3 -3
- package/src/themes/OptionBase.css +1 -0
- package/src/themes/PopupsCommon.css +7 -4
- package/src/themes/SegmentedButton.css +1 -1
- package/src/themes/Select.css +14 -0
- package/src/themes/SplitButton.css +8 -8
- package/src/themes/Switch.css +1 -10
- package/src/themes/TabContainer.css +4 -0
- package/src/themes/TabInOverflow.css +6 -6
- package/src/themes/TabInStrip.css +48 -28
- package/src/themes/TabSemanticIcon.css +3 -3
- package/src/themes/Table.css +3 -3
- package/src/themes/TableCell.css +6 -1
- package/src/themes/TableCellBase.css +2 -2
- package/src/themes/TableGrowing.css +9 -6
- package/src/themes/TableHeaderCell.css +20 -3
- package/src/themes/TableHeaderCellActionBase.css +23 -0
- package/src/themes/TableHeaderRow.css +2 -0
- package/src/themes/TableRow.css +99 -73
- package/src/themes/TableRowActionBase.css +14 -0
- package/src/themes/TableRowBase.css +26 -8
- package/src/themes/Tag.css +1 -6
- package/src/themes/Text.css +9 -5
- package/src/themes/TextArea.css +10 -24
- package/src/themes/TimePicker.css +4 -0
- package/src/themes/TimePickerClock.css +180 -9
- package/src/themes/TimePickerPopover.css +5 -0
- package/src/themes/Toast.css +1 -1
- package/src/themes/Token.css +10 -10
- package/src/themes/Toolbar.css +13 -1
- package/src/themes/ToolbarSelect.css +8 -0
- package/src/themes/TreeItem.css +9 -0
- package/src/themes/base/Avatar-parameters.css +1 -4
- package/src/themes/base/Bar-parameters.css +2 -6
- package/src/themes/base/BusyIndicator-parameters.css +1 -2
- package/src/themes/base/Button-parameters.css +1 -9
- package/src/themes/base/ButtonBadge-parameters.css +3 -0
- package/src/themes/base/CalendarHeader-parameters.css +0 -1
- package/src/themes/base/CalendarLegendItem-parameters.css +1 -1
- package/src/themes/base/CheckBox-parameters.css +0 -7
- package/src/themes/base/ColorPalette-parameters.css +0 -5
- package/src/themes/base/ColorPicker-parameters.css +4 -5
- package/src/themes/base/DatePicker-parameters.css +0 -3
- package/src/themes/base/DayPicker-parameters.css +0 -18
- package/src/themes/base/Input-parameters.css +1 -5
- package/src/themes/base/InputIcon-parameters.css +2 -2
- package/src/themes/base/Link-parameters.css +1 -1
- package/src/themes/base/ListItemBase-parameters.css +0 -2
- package/src/themes/base/Menu-parameters.css +0 -1
- package/src/themes/base/MessageStrip-parameters.css +4 -15
- package/src/themes/base/Panel-parameters.css +0 -1
- package/src/themes/base/ProgressIndicator-parameters.css +0 -1
- package/src/themes/base/RadioButton-parameters.css +0 -1
- package/src/themes/base/SegmentedButtton-parameters.css +0 -4
- package/src/themes/base/Select-parameters.css +0 -5
- package/src/themes/base/SliderBase-parameters.css +0 -1
- package/src/themes/base/SplitButton-parameters.css +1 -16
- package/src/themes/base/Switch-parameters.css +0 -3
- package/src/themes/base/TabContainer-parameters.css +4 -27
- package/src/themes/base/Table-parameters.css +4 -9
- package/src/themes/base/Tag-parameters.css +0 -3
- package/src/themes/base/TextArea-parameters.css +0 -2
- package/src/themes/base/TimePicker-parameters.css +0 -1
- package/src/themes/base/TimelineItem-parameters.css +0 -5
- package/src/themes/base/Toast-parameters.css +2 -2
- package/src/themes/base/ToggleButton-parameters.css +0 -6
- package/src/themes/base/Token-parameters.css +0 -5
- package/src/themes/base/Toolbar-parameters.css +2 -1
- package/src/themes/base/YearPicker-parameters.css +0 -1
- package/src/themes/base/rtl-parameters.css +0 -4
- package/src/themes/base/sizes-parameters.css +35 -39
- package/src/themes/sap_fiori_3/Button-parameters.css +0 -4
- package/src/themes/sap_fiori_3/DayPicker-parameters.css +0 -1
- package/src/themes/sap_fiori_3/Input-parameters.css +1 -0
- package/src/themes/sap_fiori_3/MessageStrip-parameters.css +2 -3
- package/src/themes/sap_fiori_3/TabContainer-parameters.css +0 -3
- package/src/themes/sap_fiori_3/parameters-bundle.css +2 -2
- package/src/themes/sap_fiori_3/sizes-parameters.css +6 -0
- package/src/themes/sap_fiori_3_dark/Button-parameters.css +0 -4
- package/src/themes/sap_fiori_3_dark/Input-parameters.css +1 -0
- package/src/themes/sap_fiori_3_dark/MessageStrip-parameters.css +2 -4
- package/src/themes/sap_fiori_3_dark/TabContainer-parameters.css +0 -3
- package/src/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
- package/src/themes/sap_fiori_3_dark/sizes-parameters.css +6 -0
- package/src/themes/sap_fiori_3_hcb/Button-parameters.css +0 -2
- package/src/themes/sap_fiori_3_hcb/ColorPicker-parameters.css +5 -1
- package/src/themes/sap_fiori_3_hcb/DayPicker-parameters.css +0 -1
- package/src/themes/sap_fiori_3_hcb/Input-parameters.css +1 -2
- package/src/themes/sap_fiori_3_hcb/MessageStrip-parameters.css +3 -6
- package/src/themes/sap_fiori_3_hcb/Select-parameters.css +0 -5
- package/src/themes/sap_fiori_3_hcb/SliderBase-parameters.css +0 -1
- package/src/themes/sap_fiori_3_hcb/SplitButton-parameters.css +4 -10
- package/src/themes/sap_fiori_3_hcb/TabContainer-parameters.css +2 -21
- package/src/themes/sap_fiori_3_hcb/parameters-bundle.css +4 -5
- package/src/themes/sap_fiori_3_hcb/sizes-parameters.css +5 -2
- package/src/themes/sap_fiori_3_hcw/Button-parameters.css +0 -2
- package/src/themes/sap_fiori_3_hcw/ColorPicker-parameters.css +5 -1
- package/src/themes/sap_fiori_3_hcw/DayPicker-parameters.css +0 -1
- package/src/themes/sap_fiori_3_hcw/Input-parameters.css +1 -2
- package/src/themes/sap_fiori_3_hcw/MessageStrip-parameters.css +3 -6
- package/src/themes/sap_fiori_3_hcw/Select-parameters.css +0 -5
- package/src/themes/sap_fiori_3_hcw/SliderBase-parameters.css +0 -1
- package/src/themes/sap_fiori_3_hcw/SplitButton-parameters.css +3 -9
- package/src/themes/sap_fiori_3_hcw/TabContainer-parameters.css +2 -21
- package/src/themes/sap_fiori_3_hcw/parameters-bundle.css +5 -5
- package/src/themes/sap_fiori_3_hcw/sizes-parameters.css +5 -2
- package/src/themes/sap_horizon/Avatar-parameters.css +2 -2
- package/src/themes/sap_horizon/Button-parameters.css +1 -3
- package/src/themes/sap_horizon/CalendarHeader-parameters.css +0 -1
- package/src/themes/sap_horizon/CalendarLegendItem-parameters.css +1 -0
- package/src/themes/sap_horizon/ColorPalette-parameters.css +0 -5
- package/src/themes/sap_horizon/ColorPicker-parameters.css +0 -4
- package/src/themes/sap_horizon/DatePicker-parameters.css +0 -1
- package/src/themes/sap_horizon/DayPicker-parameters.css +0 -5
- package/src/themes/sap_horizon/InputIcon-parameters.css +1 -1
- package/src/themes/sap_horizon/Link-parameters.css +1 -0
- package/src/themes/sap_horizon/Panel-parameters.css +0 -1
- package/src/themes/sap_horizon/ProgressIndicatorLayout-parameters.css +0 -1
- package/src/themes/sap_horizon/RadioButton-parameters.css +5 -1
- package/src/themes/sap_horizon/SegmentedButtton-parameters.css +0 -4
- package/src/themes/sap_horizon/SplitButton-parameters.css +1 -6
- package/src/themes/sap_horizon/Switch-parameters.css +7 -9
- package/src/themes/sap_horizon/TabContainer-parameters.css +4 -10
- package/src/themes/sap_horizon/Tag-parameters.css +32 -2
- package/src/themes/sap_horizon/TimePicker-parameters.css +0 -1
- package/src/themes/sap_horizon/Token-parameters.css +0 -5
- package/src/themes/sap_horizon/parameters-bundle.css +3 -4
- package/src/themes/sap_horizon/sizes-parameters.css +0 -4
- package/src/themes/sap_horizon_dark/Avatar-parameters.css +1 -1
- package/src/themes/sap_horizon_dark/Button-parameters.css +1 -3
- package/src/themes/sap_horizon_dark/CalendarHeader-parameters.css +0 -1
- package/src/themes/sap_horizon_dark/CalendarLegendItem-parameters.css +1 -0
- package/src/themes/sap_horizon_dark/ColorPalette-parameters.css +0 -5
- package/src/themes/sap_horizon_dark/ColorPicker-parameters.css +0 -4
- package/src/themes/sap_horizon_dark/DatePicker-parameters.css +0 -1
- package/src/themes/sap_horizon_dark/DayPicker-parameters.css +0 -5
- package/src/themes/sap_horizon_dark/InputIcon-parameters.css +1 -1
- package/src/themes/sap_horizon_dark/Link-parameters.css +1 -0
- package/src/themes/sap_horizon_dark/MessageStrip-parameters.css +2 -4
- package/src/themes/sap_horizon_dark/Panel-parameters.css +0 -1
- package/src/themes/sap_horizon_dark/RadioButton-parameters.css +5 -1
- package/src/themes/sap_horizon_dark/SegmentedButtton-parameters.css +0 -4
- package/src/themes/sap_horizon_dark/SplitButton-parameters.css +0 -5
- package/src/themes/sap_horizon_dark/Switch-parameters.css +7 -9
- package/src/themes/sap_horizon_dark/TabContainer-parameters.css +4 -10
- package/src/themes/sap_horizon_dark/Tag-parameters.css +32 -2
- package/src/themes/sap_horizon_dark/TimePicker-parameters.css +0 -1
- package/src/themes/sap_horizon_dark/Token-parameters.css +0 -5
- package/src/themes/sap_horizon_dark/parameters-bundle.css +4 -4
- package/src/themes/sap_horizon_dark/sizes-parameters.css +0 -4
- package/src/themes/sap_horizon_hcb/Avatar-parameters.css +2 -2
- package/src/themes/sap_horizon_hcb/BusyIndicator-parameters.css +0 -1
- package/src/themes/sap_horizon_hcb/CalendarHeader-parameters.css +0 -1
- package/src/themes/sap_horizon_hcb/ColorPicker-parameters.css +3 -4
- package/src/themes/sap_horizon_hcb/DayPicker-parameters.css +0 -5
- package/src/themes/sap_horizon_hcb/Input-parameters.css +1 -2
- package/src/themes/sap_horizon_hcb/Link-parameters.css +1 -0
- package/src/themes/sap_horizon_hcb/MessageStrip-parameters.css +3 -6
- package/src/themes/sap_horizon_hcb/Panel-parameters.css +0 -1
- package/src/themes/sap_horizon_hcb/RadioButton-parameters.css +5 -5
- package/src/themes/sap_horizon_hcb/SegmentedButtton-parameters.css +0 -7
- package/src/themes/sap_horizon_hcb/Select-parameters.css +0 -5
- package/src/themes/sap_horizon_hcb/SplitButton-parameters.css +4 -10
- package/src/themes/sap_horizon_hcb/Switch-parameters.css +7 -30
- package/src/themes/sap_horizon_hcb/TabContainer-parameters.css +6 -24
- package/src/themes/sap_horizon_hcb/Tag-parameters.css +20 -22
- package/src/themes/sap_horizon_hcb/parameters-bundle.css +4 -4
- package/src/themes/sap_horizon_hcb/sizes-parameters.css +2 -3
- package/src/themes/sap_horizon_hcw/Avatar-parameters.css +2 -2
- package/src/themes/sap_horizon_hcw/BusyIndicator-parameters.css +0 -1
- package/src/themes/sap_horizon_hcw/CalendarHeader-parameters.css +0 -1
- package/src/themes/sap_horizon_hcw/ColorPicker-parameters.css +3 -4
- package/src/themes/sap_horizon_hcw/DayPicker-parameters.css +0 -5
- package/src/themes/sap_horizon_hcw/Input-parameters.css +1 -2
- package/src/themes/sap_horizon_hcw/Link-parameters.css +1 -0
- package/src/themes/sap_horizon_hcw/MessageStrip-parameters.css +3 -6
- package/src/themes/sap_horizon_hcw/Panel-parameters.css +0 -1
- package/src/themes/sap_horizon_hcw/RadioButton-parameters.css +5 -5
- package/src/themes/sap_horizon_hcw/SegmentedButtton-parameters.css +0 -7
- package/src/themes/sap_horizon_hcw/Select-parameters.css +0 -5
- package/src/themes/sap_horizon_hcw/SplitButton-parameters.css +4 -10
- package/src/themes/sap_horizon_hcw/Switch-parameters.css +7 -9
- package/src/themes/sap_horizon_hcw/TabContainer-parameters.css +6 -24
- package/src/themes/sap_horizon_hcw/Tag-parameters.css +20 -23
- package/src/themes/sap_horizon_hcw/parameters-bundle.css +4 -4
- package/src/themes/sap_horizon_hcw/sizes-parameters.css +2 -3
- package/vitest.config.js +9 -0
- package/cypress/specs/ColorPalette.cy.ts +0 -47
- package/cypress/specs/ColorPicker.cy.ts +0 -27
- package/cypress/specs/ComboBox.cy.ts +0 -22
- package/cypress/specs/F6.cy.ts +0 -793
- package/cypress/specs/Form.cy.ts +0 -856
- package/cypress/specs/FormSupport.cy.ts +0 -960
- package/cypress/specs/Input.cy.ts +0 -131
- package/cypress/specs/Link.cy.ts +0 -16
- package/cypress/specs/List.cy.ts +0 -155
- package/cypress/specs/MessageStrip.cy.ts +0 -91
- package/cypress/specs/MultiComboBox.cy.ts +0 -22
- package/cypress/specs/MultiInput.cy.ts +0 -47
- package/cypress/specs/Popover.cy.ts +0 -62
- package/cypress/specs/RTL.cy.ts +0 -17
- package/cypress/specs/RatingIndicator.cy.ts +0 -66
- package/cypress/specs/Select.cy.ts +0 -39
- package/cypress/specs/Table.cy.ts +0 -606
- package/cypress/specs/TableGrowing.cy.ts +0 -280
- package/cypress/specs/TableLoading.cy.ts +0 -44
- package/cypress/specs/TableUtils.cy.ts +0 -26
- package/cypress/specs/Tokenizer.cy.ts +0 -114
- package/cypress/specs/Toolbar.cy.ts +0 -99
- package/cypress/specs/Tree.cy.ts +0 -29
- package/cypress/specs/base/Tooltips.cy.ts +0 -55
- package/dist/MyDemo.d.ts +0 -34
- package/dist/MyDemo.js +0 -59
- package/dist/MyDemo.js.map +0 -1
- package/dist/MyDemoTemplate.d.ts +0 -2
- package/dist/MyDemoTemplate.js +0 -5
- package/dist/MyDemoTemplate.js.map +0 -1
- package/dist/NavigationMenu.d.ts +0 -34
- package/dist/NavigationMenu.js +0 -64
- package/dist/NavigationMenu.js.map +0 -1
- package/dist/NavigationMenuItem.d.ts +0 -76
- package/dist/NavigationMenuItem.js +0 -76
- package/dist/NavigationMenuItem.js.map +0 -1
- package/dist/NavigationMenuItemTemplate.d.ts +0 -3
- package/dist/NavigationMenuItemTemplate.js +0 -44
- package/dist/NavigationMenuItemTemplate.js.map +0 -1
- package/dist/NavigationMenuTemplate.d.ts +0 -2
- package/dist/NavigationMenuTemplate.js +0 -15
- package/dist/NavigationMenuTemplate.js.map +0 -1
- package/dist/SuggestionItemGroupTemplate.d.ts +0 -2
- package/dist/SuggestionItemGroupTemplate.js +0 -5
- package/dist/SuggestionItemGroupTemplate.js.map +0 -1
- package/dist/css/themes/BrowserScrollbar.css +0 -1
- package/dist/css/themes/MyDemo.css +0 -0
- package/dist/css/themes/NavigationMenu.css +0 -1
- package/dist/css/themes/NavigationMenuItem.css +0 -1
- package/dist/css/themes/sap_horizon_dark_exp/parameters-bundle.css +0 -1
- package/dist/css/themes/sap_horizon_exp/parameters-bundle.css +0 -1
- package/dist/css/themes/sap_horizon_hcb_exp/parameters-bundle.css +0 -1
- package/dist/css/themes/sap_horizon_hcw_exp/parameters-bundle.css +0 -1
- package/dist/generated/assets/i18n/messagebundle_in.json +0 -1
- package/dist/generated/assets/themes/sap_horizon_dark_exp/parameters-bundle.css.json +0 -1
- package/dist/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json +0 -1
- package/dist/generated/assets/themes/sap_horizon_hcb_exp/parameters-bundle.css.json +0 -1
- package/dist/generated/assets/themes/sap_horizon_hcw_exp/parameters-bundle.css.json +0 -1
- package/dist/generated/templates/MultiComboBoxPopoverTemplate.lit.d.ts +0 -3
- package/dist/generated/templates/MultiComboBoxPopoverTemplate.lit.js +0 -29
- package/dist/generated/templates/MultiComboBoxPopoverTemplate.lit.js.map +0 -1
- package/dist/generated/templates/MultiComboBoxTemplate.lit.d.ts +0 -3
- package/dist/generated/templates/MultiComboBoxTemplate.lit.js +0 -39
- package/dist/generated/templates/MultiComboBoxTemplate.lit.js.map +0 -1
- package/dist/generated/templates/SelectPopoverTemplate.lit.d.ts +0 -3
- package/dist/generated/templates/SelectPopoverTemplate.lit.js +0 -19
- package/dist/generated/templates/SelectPopoverTemplate.lit.js.map +0 -1
- package/dist/generated/templates/SelectTemplate.lit.d.ts +0 -3
- package/dist/generated/templates/SelectTemplate.lit.js +0 -24
- package/dist/generated/templates/SelectTemplate.lit.js.map +0 -1
- package/dist/generated/templates/TableCellTemplate.lit.d.ts +0 -3
- package/dist/generated/templates/TableCellTemplate.lit.js +0 -10
- package/dist/generated/templates/TableCellTemplate.lit.js.map +0 -1
- package/dist/generated/templates/TableGrowingTemplate.lit.d.ts +0 -3
- package/dist/generated/templates/TableGrowingTemplate.lit.js +0 -9
- package/dist/generated/templates/TableGrowingTemplate.lit.js.map +0 -1
- package/dist/generated/templates/TableHeaderCellTemplate.lit.d.ts +0 -3
- package/dist/generated/templates/TableHeaderCellTemplate.lit.js +0 -7
- package/dist/generated/templates/TableHeaderCellTemplate.lit.js.map +0 -1
- package/dist/generated/templates/TableHeaderRowTemplate.lit.d.ts +0 -3
- package/dist/generated/templates/TableHeaderRowTemplate.lit.js +0 -11
- package/dist/generated/templates/TableHeaderRowTemplate.lit.js.map +0 -1
- package/dist/generated/templates/TableRowTemplate.lit.d.ts +0 -3
- package/dist/generated/templates/TableRowTemplate.lit.js +0 -14
- package/dist/generated/templates/TableRowTemplate.lit.js.map +0 -1
- package/dist/generated/templates/TableTemplate.lit.d.ts +0 -3
- package/dist/generated/templates/TableTemplate.lit.js +0 -12
- package/dist/generated/templates/TableTemplate.lit.js.map +0 -1
- package/dist/generated/themes/BrowserScrollbar.css.d.ts +0 -2
- package/dist/generated/themes/BrowserScrollbar.css.js +0 -8
- package/dist/generated/themes/BrowserScrollbar.css.js.map +0 -1
- package/dist/generated/themes/MyDemo.css.d.ts +0 -2
- package/dist/generated/themes/MyDemo.css.js.map +0 -1
- package/dist/generated/themes/NavigationMenu.css.d.ts +0 -2
- package/dist/generated/themes/NavigationMenu.css.js +0 -8
- package/dist/generated/themes/NavigationMenu.css.js.map +0 -1
- package/dist/generated/themes/NavigationMenuItem.css.d.ts +0 -2
- package/dist/generated/themes/NavigationMenuItem.css.js +0 -8
- package/dist/generated/themes/NavigationMenuItem.css.js.map +0 -1
- package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.d.ts +0 -2
- package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.js +0 -3
- package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.js.map +0 -1
- package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.d.ts +0 -2
- package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.js +0 -3
- package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.js.map +0 -1
- package/dist/generated/themes/sap_horizon_hcb_exp/parameters-bundle.css.d.ts +0 -2
- package/dist/generated/themes/sap_horizon_hcb_exp/parameters-bundle.css.js +0 -3
- package/dist/generated/themes/sap_horizon_hcb_exp/parameters-bundle.css.js.map +0 -1
- package/dist/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.d.ts +0 -2
- package/dist/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.js +0 -3
- package/dist/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.js.map +0 -1
- package/src/MultiComboBox.hbs +0 -106
- package/src/MultiComboBoxPopover.hbs +0 -144
- package/src/NavigationMenuItemTemplate.tsx +0 -144
- package/src/NavigationMenuTemplate.tsx +0 -67
- package/src/Select.hbs +0 -51
- package/src/SelectPopover.hbs +0 -78
- package/src/SuggestionItemGroupTemplate.tsx +0 -6
- package/src/Table.hbs +0 -63
- package/src/TableCell.hbs +0 -11
- package/src/TableGrowing.hbs +0 -19
- package/src/TableHeaderCell.hbs +0 -1
- package/src/TableHeaderRow.hbs +0 -24
- package/src/TableRow.hbs +0 -36
- package/src/i18n/messagebundle_in.properties +0 -172
- package/src/themes/BrowserScrollbar.css +0 -25
- package/src/themes/NavigationMenu.css +0 -17
- package/src/themes/NavigationMenuItem.css +0 -54
- package/src/themes/base/MultiComboBox-parameters.css +0 -3
- package/src/themes/base/SelectPopover-parameters.css +0 -4
- package/src/themes/sap_fiori_3/MultiComboBox-parameters.css +0 -5
- package/src/themes/sap_fiori_3/TimePicker-parameters.css +0 -5
- package/src/themes/sap_fiori_3_dark/MultiComboBox-parameters.css +0 -5
- package/src/themes/sap_fiori_3_hcb/BusyIndicator-parameters.css +0 -5
- package/src/themes/sap_fiori_3_hcb/DatePicker-parameters.css +0 -5
- package/src/themes/sap_fiori_3_hcb/TimePicker-parameters.css +0 -5
- package/src/themes/sap_fiori_3_hcb/ToggleButton-parameters.css +0 -6
- package/src/themes/sap_fiori_3_hcw/BusyIndicator-parameters.css +0 -5
- package/src/themes/sap_fiori_3_hcw/DatePicker-parameters.css +0 -5
- package/src/themes/sap_fiori_3_hcw/TimePicker-parameters.css +0 -5
- package/src/themes/sap_fiori_3_hcw/ToggleButton-parameters.css +0 -6
- package/src/themes/sap_horizon/ListItemBase-parameters.css +0 -5
- package/src/themes/sap_horizon/MultiComboBox-parameters.css +0 -5
- package/src/themes/sap_horizon/SelectPopover-parameters.css +0 -4
- package/src/themes/sap_horizon/ToggleButton-parameters.css +0 -1
- package/src/themes/sap_horizon_dark/ListItemBase-parameters.css +0 -5
- package/src/themes/sap_horizon_dark/MultiComboBox-parameters.css +0 -5
- package/src/themes/sap_horizon_dark/SelectPopover-parameters.css +0 -4
- package/src/themes/sap_horizon_dark/ToggleButton-parameters.css +0 -1
- package/src/themes/sap_horizon_dark_exp/Avatar-parameters.css +0 -54
- package/src/themes/sap_horizon_dark_exp/Breadcrumbs-parameters.css +0 -3
- package/src/themes/sap_horizon_dark_exp/Button-parameters.css +0 -17
- package/src/themes/sap_horizon_dark_exp/CalendarHeader-parameters.css +0 -19
- package/src/themes/sap_horizon_dark_exp/CalendarLegendItem-parameters.css +0 -6
- package/src/themes/sap_horizon_dark_exp/Card-parameters.css +0 -15
- package/src/themes/sap_horizon_dark_exp/Carousel-parameters.css +0 -5
- package/src/themes/sap_horizon_dark_exp/CheckBox-parameters.css +0 -44
- package/src/themes/sap_horizon_dark_exp/ColorPalette-parameters.css +0 -25
- package/src/themes/sap_horizon_dark_exp/ColorPicker-parameters.css +0 -12
- package/src/themes/sap_horizon_dark_exp/DatePicker-parameters.css +0 -6
- package/src/themes/sap_horizon_dark_exp/DayPicker-parameters.css +0 -68
- package/src/themes/sap_horizon_dark_exp/Dialog-parameters.css +0 -9
- package/src/themes/sap_horizon_dark_exp/FileUploader-parameters.css +0 -5
- package/src/themes/sap_horizon_dark_exp/GrowingButton-parameters.css +0 -6
- package/src/themes/sap_horizon_dark_exp/Icon-parameters.css +0 -3
- package/src/themes/sap_horizon_dark_exp/Input-parameters.css +0 -34
- package/src/themes/sap_horizon_dark_exp/InputIcon-parameters.css +0 -24
- package/src/themes/sap_horizon_dark_exp/Link-parameters.css +0 -15
- package/src/themes/sap_horizon_dark_exp/List-parameters.css +0 -5
- package/src/themes/sap_horizon_dark_exp/ListItemBase-parameters.css +0 -5
- package/src/themes/sap_horizon_dark_exp/Menu-parameters.css +0 -5
- package/src/themes/sap_horizon_dark_exp/MessageStrip-parameters.css +0 -5
- package/src/themes/sap_horizon_dark_exp/MonthPicker-parameters.css +0 -16
- package/src/themes/sap_horizon_dark_exp/MultiComboBox-parameters.css +0 -5
- package/src/themes/sap_horizon_dark_exp/Panel-parameters.css +0 -14
- package/src/themes/sap_horizon_dark_exp/PopupsCommon-parameters.css +0 -5
- package/src/themes/sap_horizon_dark_exp/RadioButton-parameters.css +0 -23
- package/src/themes/sap_horizon_dark_exp/RatingIndicator-parameters.css +0 -17
- package/src/themes/sap_horizon_dark_exp/SegmentedButtton-parameters.css +0 -13
- package/src/themes/sap_horizon_dark_exp/Select-parameters.css +0 -5
- package/src/themes/sap_horizon_dark_exp/SelectPopover-parameters.css +0 -4
- package/src/themes/sap_horizon_dark_exp/SliderBase-parameters.css +0 -72
- package/src/themes/sap_horizon_dark_exp/SplitButton-parameters.css +0 -31
- package/src/themes/sap_horizon_dark_exp/StepInput-parameters.css +0 -25
- package/src/themes/sap_horizon_dark_exp/Switch-parameters.css +0 -148
- package/src/themes/sap_horizon_dark_exp/TabContainer-parameters.css +0 -38
- package/src/themes/sap_horizon_dark_exp/Tag-parameters.css +0 -1
- package/src/themes/sap_horizon_dark_exp/TextArea-parameters.css +0 -45
- package/src/themes/sap_horizon_dark_exp/TimePicker-parameters.css +0 -6
- package/src/themes/sap_horizon_dark_exp/ToggleButton-parameters.css +0 -1
- package/src/themes/sap_horizon_dark_exp/Token-parameters.css +0 -28
- package/src/themes/sap_horizon_dark_exp/Tokenizer-parameters.css +0 -5
- package/src/themes/sap_horizon_dark_exp/ValueStateMessage-parameters.css +0 -12
- package/src/themes/sap_horizon_dark_exp/YearPicker-parameters.css +0 -15
- package/src/themes/sap_horizon_dark_exp/parameters-bundle.css +0 -57
- package/src/themes/sap_horizon_dark_exp/rtl-parameters.css +0 -6
- package/src/themes/sap_horizon_dark_exp/sizes-parameters.css +0 -52
- package/src/themes/sap_horizon_exp/Avatar-parameters.css +0 -54
- package/src/themes/sap_horizon_exp/AvatarGroup-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/Breadcrumbs-parameters.css +0 -3
- package/src/themes/sap_horizon_exp/Button-parameters.css +0 -17
- package/src/themes/sap_horizon_exp/CalendarHeader-parameters.css +0 -19
- package/src/themes/sap_horizon_exp/Card-parameters.css +0 -15
- package/src/themes/sap_horizon_exp/Carousel-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/CheckBox-parameters.css +0 -44
- package/src/themes/sap_horizon_exp/ColorPalette-parameters.css +0 -25
- package/src/themes/sap_horizon_exp/ColorPicker-parameters.css +0 -12
- package/src/themes/sap_horizon_exp/DatePicker-parameters.css +0 -6
- package/src/themes/sap_horizon_exp/DayPicker-parameters.css +0 -71
- package/src/themes/sap_horizon_exp/Dialog-parameters.css +0 -9
- package/src/themes/sap_horizon_exp/FileUploader-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/GrowingButton-parameters.css +0 -6
- package/src/themes/sap_horizon_exp/Icon-parameters.css +0 -3
- package/src/themes/sap_horizon_exp/Input-parameters.css +0 -34
- package/src/themes/sap_horizon_exp/InputIcon-parameters.css +0 -24
- package/src/themes/sap_horizon_exp/Link-parameters.css +0 -15
- package/src/themes/sap_horizon_exp/List-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/ListItemBase-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/Menu-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/MessageStrip-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/MonthPicker-parameters.css +0 -16
- package/src/themes/sap_horizon_exp/MultiComboBox-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/Panel-parameters.css +0 -14
- package/src/themes/sap_horizon_exp/PopupsCommon-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/ProgressIndicator-parameters.css +0 -32
- package/src/themes/sap_horizon_exp/ProgressIndicatorLayout-parameters.css +0 -40
- package/src/themes/sap_horizon_exp/RadioButton-parameters.css +0 -23
- package/src/themes/sap_horizon_exp/RatingIndicator-parameters.css +0 -17
- package/src/themes/sap_horizon_exp/SegmentedButtton-parameters.css +0 -13
- package/src/themes/sap_horizon_exp/Select-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/SelectPopover-parameters.css +0 -4
- package/src/themes/sap_horizon_exp/SliderBase-parameters.css +0 -71
- package/src/themes/sap_horizon_exp/SplitButton-parameters.css +0 -31
- package/src/themes/sap_horizon_exp/StepInput-parameters.css +0 -25
- package/src/themes/sap_horizon_exp/Switch-parameters.css +0 -150
- package/src/themes/sap_horizon_exp/TabContainer-parameters.css +0 -38
- package/src/themes/sap_horizon_exp/Tag-parameters.css +0 -1
- package/src/themes/sap_horizon_exp/TextArea-parameters.css +0 -45
- package/src/themes/sap_horizon_exp/TimePicker-parameters.css +0 -6
- package/src/themes/sap_horizon_exp/ToggleButton-parameters.css +0 -1
- package/src/themes/sap_horizon_exp/Token-parameters.css +0 -28
- package/src/themes/sap_horizon_exp/Tokenizer-parameters.css +0 -5
- package/src/themes/sap_horizon_exp/ValueStateMessage-parameters.css +0 -12
- package/src/themes/sap_horizon_exp/YearPicker-parameters.css +0 -15
- package/src/themes/sap_horizon_exp/parameters-bundle.css +0 -57
- package/src/themes/sap_horizon_exp/rtl-parameters.css +0 -6
- package/src/themes/sap_horizon_exp/sizes-parameters.css +0 -51
- package/src/themes/sap_horizon_hcb/DatePicker-parameters.css +0 -5
- package/src/themes/sap_horizon_hcb/TimePicker-parameters.css +0 -5
- package/src/themes/sap_horizon_hcb/ToggleButton-parameters.css +0 -1
- package/src/themes/sap_horizon_hcb_exp/Avatar-parameters.css +0 -54
- package/src/themes/sap_horizon_hcb_exp/BusyIndicator-parameters.css +0 -5
- package/src/themes/sap_horizon_hcb_exp/Button-parameters.css +0 -9
- package/src/themes/sap_horizon_hcb_exp/CalendarHeader-parameters.css +0 -11
- package/src/themes/sap_horizon_hcb_exp/Card-parameters.css +0 -11
- package/src/themes/sap_horizon_hcb_exp/Carousel-parameters.css +0 -9
- package/src/themes/sap_horizon_hcb_exp/CheckBox-parameters.css +0 -45
- package/src/themes/sap_horizon_hcb_exp/ColorPicker-parameters.css +0 -10
- package/src/themes/sap_horizon_hcb_exp/DatePicker-parameters.css +0 -5
- package/src/themes/sap_horizon_hcb_exp/DayPicker-parameters.css +0 -70
- package/src/themes/sap_horizon_hcb_exp/FileUploader-parameters.css +0 -6
- package/src/themes/sap_horizon_hcb_exp/GrowingButton-parameters.css +0 -8
- package/src/themes/sap_horizon_hcb_exp/Input-parameters.css +0 -32
- package/src/themes/sap_horizon_hcb_exp/InputIcon-parameters.css +0 -11
- package/src/themes/sap_horizon_hcb_exp/Link-parameters.css +0 -11
- package/src/themes/sap_horizon_hcb_exp/ListItem-parameters.css +0 -3
- package/src/themes/sap_horizon_hcb_exp/Menu-parameters.css +0 -5
- package/src/themes/sap_horizon_hcb_exp/MessageStrip-parameters.css +0 -10
- package/src/themes/sap_horizon_hcb_exp/MonthPicker-parameters.css +0 -12
- package/src/themes/sap_horizon_hcb_exp/Panel-parameters.css +0 -10
- package/src/themes/sap_horizon_hcb_exp/PopupsCommon-parameters.css +0 -5
- package/src/themes/sap_horizon_hcb_exp/ProgressIndicator-parameters.css +0 -15
- package/src/themes/sap_horizon_hcb_exp/RadioButton-parameters.css +0 -26
- package/src/themes/sap_horizon_hcb_exp/RatingIndicator-parameters.css +0 -16
- package/src/themes/sap_horizon_hcb_exp/SegmentedButtton-parameters.css +0 -8
- package/src/themes/sap_horizon_hcb_exp/Select-parameters.css +0 -10
- package/src/themes/sap_horizon_hcb_exp/SliderBase-parameters.css +0 -78
- package/src/themes/sap_horizon_hcb_exp/SplitButton-parameters.css +0 -34
- package/src/themes/sap_horizon_hcb_exp/Switch-parameters.css +0 -144
- package/src/themes/sap_horizon_hcb_exp/TabContainer-parameters.css +0 -49
- package/src/themes/sap_horizon_hcb_exp/Tag-parameters.css +0 -1
- package/src/themes/sap_horizon_hcb_exp/TextArea-parameters.css +0 -42
- package/src/themes/sap_horizon_hcb_exp/TimePicker-parameters.css +0 -5
- package/src/themes/sap_horizon_hcb_exp/ToggleButton-parameters.css +0 -1
- package/src/themes/sap_horizon_hcb_exp/Token-parameters.css +0 -17
- package/src/themes/sap_horizon_hcb_exp/ValueStateMessage-parameters.css +0 -13
- package/src/themes/sap_horizon_hcb_exp/YearPicker-parameters.css +0 -12
- package/src/themes/sap_horizon_hcb_exp/parameters-bundle.css +0 -52
- package/src/themes/sap_horizon_hcb_exp/sizes-parameters.css +0 -16
- package/src/themes/sap_horizon_hcw/DatePicker-parameters.css +0 -5
- package/src/themes/sap_horizon_hcw/TimePicker-parameters.css +0 -5
- package/src/themes/sap_horizon_hcw/ToggleButton-parameters.css +0 -1
- package/src/themes/sap_horizon_hcw_exp/Avatar-parameters.css +0 -54
- package/src/themes/sap_horizon_hcw_exp/BusyIndicator-parameters.css +0 -5
- package/src/themes/sap_horizon_hcw_exp/Button-parameters.css +0 -9
- package/src/themes/sap_horizon_hcw_exp/CalendarHeader-parameters.css +0 -11
- package/src/themes/sap_horizon_hcw_exp/Card-parameters.css +0 -11
- package/src/themes/sap_horizon_hcw_exp/Carousel-parameters.css +0 -9
- package/src/themes/sap_horizon_hcw_exp/CheckBox-parameters.css +0 -45
- package/src/themes/sap_horizon_hcw_exp/ColorPicker-parameters.css +0 -10
- package/src/themes/sap_horizon_hcw_exp/DatePicker-parameters.css +0 -5
- package/src/themes/sap_horizon_hcw_exp/DayPicker-parameters.css +0 -69
- package/src/themes/sap_horizon_hcw_exp/FileUploader-parameters.css +0 -6
- package/src/themes/sap_horizon_hcw_exp/GrowingButton-parameters.css +0 -8
- package/src/themes/sap_horizon_hcw_exp/Input-parameters.css +0 -32
- package/src/themes/sap_horizon_hcw_exp/InputIcon-parameters.css +0 -11
- package/src/themes/sap_horizon_hcw_exp/Link-parameters.css +0 -11
- package/src/themes/sap_horizon_hcw_exp/ListItem-parameters.css +0 -3
- package/src/themes/sap_horizon_hcw_exp/Menu-parameters.css +0 -5
- package/src/themes/sap_horizon_hcw_exp/MessageStrip-parameters.css +0 -10
- package/src/themes/sap_horizon_hcw_exp/MonthPicker-parameters.css +0 -12
- package/src/themes/sap_horizon_hcw_exp/Panel-parameters.css +0 -11
- package/src/themes/sap_horizon_hcw_exp/PopupsCommon-parameters.css +0 -5
- package/src/themes/sap_horizon_hcw_exp/RadioButton-parameters.css +0 -30
- package/src/themes/sap_horizon_hcw_exp/RatingIndicator-parameters.css +0 -16
- package/src/themes/sap_horizon_hcw_exp/SegmentedButtton-parameters.css +0 -8
- package/src/themes/sap_horizon_hcw_exp/Select-parameters.css +0 -10
- package/src/themes/sap_horizon_hcw_exp/SliderBase-parameters.css +0 -78
- package/src/themes/sap_horizon_hcw_exp/SplitButton-parameters.css +0 -34
- package/src/themes/sap_horizon_hcw_exp/Switch-parameters.css +0 -149
- package/src/themes/sap_horizon_hcw_exp/TabContainer-parameters.css +0 -49
- package/src/themes/sap_horizon_hcw_exp/Tag-parameters.css +0 -1
- package/src/themes/sap_horizon_hcw_exp/TextArea-parameters.css +0 -42
- package/src/themes/sap_horizon_hcw_exp/TimePicker-parameters.css +0 -5
- package/src/themes/sap_horizon_hcw_exp/ToggleButton-parameters.css +0 -1
- package/src/themes/sap_horizon_hcw_exp/Token-parameters.css +0 -17
- package/src/themes/sap_horizon_hcw_exp/ValueStateMessage-parameters.css +0 -13
- package/src/themes/sap_horizon_hcw_exp/YearPicker-parameters.css +0 -12
- package/src/themes/sap_horizon_hcw_exp/parameters-bundle.css +0 -52
- package/src/themes/sap_horizon_hcw_exp/sizes-parameters.css +0 -16
- /package/cypress/specs/base/{InvisibleMessage.cy.ts → InvisibleMessage.cy.tsx} +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"tags": [
|
|
4
4
|
{
|
|
5
5
|
"name": "ui5-avatar",
|
|
6
|
-
"description": "### Overview\n\nAn image-like component that has different display options for representing images and icons\nin different shapes and sizes, depending on the use case.\n\nThe shape can be circular or square. There are several predefined sizes, as well as an option to\nset a custom size.\n\n### Keyboard Handling\n\n- [Space] / [Enter] or [Return] - Fires the `click` event if the `interactive` property is set to true.\n- [Shift] - If [Space] is pressed, pressing [Shift] releases the component without triggering the click event.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/Avatar.js\";`\n\n\n---\n\n\n\n\n### **Slots:**\n - **default** - Receives the desired `<img>` tag\n\n**Note:** If you experience flickering of the provided image, you can hide the component until it is
|
|
6
|
+
"description": "### Overview\n\nAn image-like component that has different display options for representing images and icons\nin different shapes and sizes, depending on the use case.\n\nThe shape can be circular or square. There are several predefined sizes, as well as an option to\nset a custom size.\n\n### Keyboard Handling\n\n- [Space] / [Enter] or [Return] - Fires the `click` event if the `interactive` property is set to true.\n- [Shift] - If [Space] is pressed, pressing [Shift] releases the component without triggering the click event.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/Avatar.js\";`\n\n\n---\n\n\n\n\n### **Slots:**\n - **default** - Receives the desired `<img>` tag\n\n**Note:** If you experience flickering of the provided image, you can hide the component until it is defined with the following CSS:<br/>\n`ui5-avatar:not(:defined) {`<br/>\n `visibility: hidden;`<br/>\n`}`\n- **badge** - Defines the optional badge that will be used for visual affordance.\n\n**Note:** While the slot allows for custom badges, to achieve\nthe Fiori design, you can use the `ui5-tag` with `ui5-icon`\nin the corresponding `icon` slot, without text nodes.",
|
|
7
7
|
"attributes": [
|
|
8
8
|
{
|
|
9
9
|
"name": "disabled",
|
|
@@ -48,8 +48,9 @@
|
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
"name": "color-scheme",
|
|
51
|
-
"description": "Defines the background color of the desired image.",
|
|
51
|
+
"description": "Defines the background color of the desired image.\nIf `colorScheme` is set to `Auto`, the avatar will be displayed with the `Accent6` color.",
|
|
52
52
|
"values": [
|
|
53
|
+
{ "name": "Auto" },
|
|
53
54
|
{ "name": "Accent1" },
|
|
54
55
|
{ "name": "Accent2" },
|
|
55
56
|
{ "name": "Accent3" },
|
|
@@ -116,6 +117,11 @@
|
|
|
116
117
|
{ "name": "Footer" },
|
|
117
118
|
{ "name": "FloatingFooter" }
|
|
118
119
|
]
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "accessible-role",
|
|
123
|
+
"description": "Specifies the ARIA role applied to the component for accessibility purposes.\n\n**Note:**\n\n- Set accessibleRole to \"toolbar\" only when the component contains two or more active, interactive elements (such as buttons, links, or input fields) within the bar.\n\n- If there is only one or no active element, it is recommended to avoid using the \"toolbar\" role, as it implies a grouping of multiple interactive controls.",
|
|
124
|
+
"values": [{ "name": "Toolbar" }, { "name": "None" }]
|
|
119
125
|
}
|
|
120
126
|
],
|
|
121
127
|
"references": []
|
|
@@ -200,7 +206,7 @@
|
|
|
200
206
|
},
|
|
201
207
|
{
|
|
202
208
|
"name": "ui5-button",
|
|
203
|
-
"description": "### Overview\n\nThe `ui5-button` component represents a simple push button.\nIt enables users to trigger actions by clicking or tapping the `ui5-button`, or by pressing\ncertain keyboard keys, such as Enter.\n\n### Usage\n\nFor the `ui5-button` UI, you can define text, icon, or both. You can also specify\nwhether the text or the icon is displayed first.\n\nYou can choose from a set of predefined types that offer different\nstyling to correspond to the triggered action.\n\nYou can set the `ui5-button` as enabled or disabled. An enabled\n`ui5-button` can be pressed by clicking or tapping it. The button changes\nits style to provide visual feedback to the user that it is pressed or hovered over with\nthe mouse cursor. A disabled `ui5-button` appears inactive and cannot be pressed.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Button.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **
|
|
209
|
+
"description": "### Overview\n\nThe `ui5-button` component represents a simple push button.\nIt enables users to trigger actions by clicking or tapping the `ui5-button`, or by pressing\ncertain keyboard keys, such as Enter.\n\n### Usage\n\nFor the `ui5-button` UI, you can define text, icon, or both. You can also specify\nwhether the text or the icon is displayed first.\n\nYou can choose from a set of predefined types that offer different\nstyling to correspond to the triggered action.\n\nYou can set the `ui5-button` as enabled or disabled. An enabled\n`ui5-button` can be pressed by clicking or tapping it. The button changes\nits style to provide visual feedback to the user that it is pressed or hovered over with\nthe mouse cursor. A disabled `ui5-button` appears inactive and cannot be pressed.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Button.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n- **badge** - Adds a badge to the button.\n\n### **CSS Parts:**\n - **button** - Used to style the native button element\n- **icon** - Used to style the icon in the native button element\n- **endIcon** - Used to style the end icon in the native button element",
|
|
204
210
|
"attributes": [
|
|
205
211
|
{
|
|
206
212
|
"name": "design",
|
|
@@ -276,6 +282,27 @@
|
|
|
276
282
|
],
|
|
277
283
|
"references": []
|
|
278
284
|
},
|
|
285
|
+
{
|
|
286
|
+
"name": "ui5-button-badge",
|
|
287
|
+
"description": "The `ui5-button-badge` component defines a badge that appears in the `ui5-button`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ButtonBadge.js\";`\n\n\n---\n\n\n",
|
|
288
|
+
"attributes": [
|
|
289
|
+
{
|
|
290
|
+
"name": "design",
|
|
291
|
+
"description": "Defines the badge placement and appearance.\n- **InlineText** - displayed inside the button after its text, and recommended for **compact** density.\n- **OverlayText** - displayed at the top-end corner of the button, and recommended for **cozy** density.\n- **AttentionDot** - displayed at the top-end corner of the button as a dot, and suitable for both **cozy** and **compact** densities.",
|
|
292
|
+
"values": [
|
|
293
|
+
{ "name": "InlineText" },
|
|
294
|
+
{ "name": "OverlayText" },
|
|
295
|
+
{ "name": "AttentionDot" }
|
|
296
|
+
]
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "text",
|
|
300
|
+
"description": "Defines the text of the component.\n\n**Note:** Text is not applied when the `design` property is set to `AttentionDot`.\n\n**Note:** The badge component only accepts numeric values and the \"+\" symbol. Using other characters or formats may result in unpredictable behavior, which is not guaranteed or supported.",
|
|
301
|
+
"values": []
|
|
302
|
+
}
|
|
303
|
+
],
|
|
304
|
+
"references": []
|
|
305
|
+
},
|
|
279
306
|
{
|
|
280
307
|
"name": "ui5-calendar",
|
|
281
308
|
"description": "### Overview\n\nThe `ui5-calendar` component allows users to select one or more dates.\n\nCurrently selected dates are represented with instances of `ui5-date` as\nchildren of the `ui5-calendar`. The value property of each `ui5-date` must be a\ndate string, correctly formatted according to the `ui5-calendar`'s `formatPattern` property.\nWhenever the user changes the date selection, `ui5-calendar` will automatically create/remove instances\nof `ui5-date` in itself, unless you prevent this behavior by calling `preventDefault()` for the\n`selection-change` event. This is useful if you want to control the selected dates externally.\n\n### Usage\n\nThe user can navigate to a particular date by:\n\n- Pressing over a month inside the months view\n- Pressing over an year inside the years view\n\nThe user can confirm a date selection by pressing over a date inside the days view.\n\n### Keyboard Handling\nThe `ui5-calendar` provides advanced keyboard handling.\nWhen a picker is showed and focused the user can use the following keyboard\nshortcuts in order to perform a navigation:\n\n- Day picker:\n\n- [F4] - Shows month picker\n- [Shift] + [F4] - Shows year picker\n- [Page Up] - Navigate to the previous month\n- [Page Down] - Navigate to the next month\n- [Shift] + [Page Up] - Navigate to the previous year\n- [Shift] + [Page Down] - Navigate to the next year\n- [Ctrl] + [Shift] + [Page Up] - Navigate ten years backwards\n- [Ctrl] + [Shift] + [Page Down] - Navigate ten years forwards\n- [Home] - Navigate to the first day of the week\n- [End] - Navigate to the last day of the week\n- [Ctrl] + [Home] - Navigate to the first day of the month\n- [Ctrl] + [End] - Navigate to the last day of the month\n\n- Month picker:\n\n- [Page Up] - Navigate to the previous year\n- [Page Down] - Navigate to the next year\n- [Home] - Navigate to the first month of the current row\n- [End] - Navigate to the last month of the current row\n- [Ctrl] + [Home] - Navigate to the first month of the current year\n- [Ctrl] + [End] - Navigate to the last month of the year\n\n- Year picker:\n\n- [Page Up] - Navigate to the previous year range\n- [Page Down] - Navigate the next year range\n- [Home] - Navigate to the first year of the current row\n- [End] - Navigate to the last year of the current row\n- [Ctrl] + [Home] - Navigate to the first year of the current year range\n- [Ctrl] + [End] - Navigate to the last year of the current year range\n\n#### Fast Navigation\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\n### Calendar types\nThe component supports several calendar types - Gregorian, Buddhist, Islamic, Japanese and Persian.\nBy default the Gregorian Calendar is used. In order to use the Buddhist, Islamic, Japanese or Persian calendar,\nyou need to set the `primaryCalendarType` property and import one or more of the following modules:\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Buddhist.js\";`\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Islamic.js\";`\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Japanese.js\";`\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Persian.js\";`\n\nOr, you can use the global configuration and set the `calendarType` key:\n\n```html\n<script data-id=\"sap-ui-config\" type=\"application/json\">\n\t{\n\t\t\"calendarType\": \"Japanese\"\n\t}\n</script>\n```\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Calendar.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **selection-change** - Fired when the selected dates change.\n\n**Note:** If you call `preventDefault()` for this event, the component will not\ncreate instances of `ui5-date` for the newly selected dates. In that case you should do this manually.\n\n### **Slots:**\n - **calendarLegend** - Defines the calendar legend of the component.\n- **default** - Defines the selected date or dates (depending on the `selectionMode` property)\nfor this calendar as instances of `ui5-date` or `ui5-date-range`.\nUse `ui5-date` for single or multiple selection, and `ui5-date-range` for range selection.\n- **specialDates** - Defines the special dates, visually emphasized in the calendar.\n\n### **CSS Parts:**\n - **day-cell** - Used to style the day cells.\n- **day-cell-selected** - Used to style the day cells when selected.\n- **day-cell-selected-between** - Used to style the day cells in between of selected dates in range.\n- **month-cell** - Used to style the month cells.\n- **month-cell-selected** - Used to style the month cells when selected.\n- **month-cell-selected-between** - Used to style the day cells in between of selected months in range.\n- **year-cell** - Used to style the year cells.\n- **year-cell-selected** - Used to style the year cells when selected.\n- **year-cell-selected-between** - Used to style the day cells in between of selected years in range.",
|
|
@@ -413,9 +440,9 @@
|
|
|
413
440
|
"name": "type",
|
|
414
441
|
"description": "Defines the type of the Calendar Legend Item.",
|
|
415
442
|
"values": [
|
|
443
|
+
{ "name": "None" },
|
|
416
444
|
{ "name": "Today" },
|
|
417
445
|
{ "name": "Selected" },
|
|
418
|
-
{ "name": "None" },
|
|
419
446
|
{ "name": "Working" },
|
|
420
447
|
{ "name": "NonWorking" },
|
|
421
448
|
{ "name": "Type01" },
|
|
@@ -650,7 +677,7 @@
|
|
|
650
677
|
},
|
|
651
678
|
{
|
|
652
679
|
"name": "required",
|
|
653
|
-
"description": "Defines whether the component is required.",
|
|
680
|
+
"description": "Defines whether the component is required.\n\n**Note:** We advise against using the text property of the checkbox when there is a\nlabel associated with it to avoid having two required asterisks.",
|
|
654
681
|
"values": []
|
|
655
682
|
},
|
|
656
683
|
{
|
|
@@ -672,9 +699,9 @@
|
|
|
672
699
|
"name": "value-state",
|
|
673
700
|
"description": "Defines the value state of the component.",
|
|
674
701
|
"values": [
|
|
702
|
+
{ "name": "None" },
|
|
675
703
|
{ "name": "Positive" },
|
|
676
704
|
{ "name": "Negative" },
|
|
677
|
-
{ "name": "None" },
|
|
678
705
|
{ "name": "Critical" },
|
|
679
706
|
{ "name": "Information" }
|
|
680
707
|
]
|
|
@@ -726,7 +753,7 @@
|
|
|
726
753
|
},
|
|
727
754
|
{
|
|
728
755
|
"name": "show-more-colors",
|
|
729
|
-
"description": "Defines whether the user can choose a custom color from a component
|
|
756
|
+
"description": "Defines whether the user can choose a custom color from a component.",
|
|
730
757
|
"values": []
|
|
731
758
|
},
|
|
732
759
|
{
|
|
@@ -776,7 +803,7 @@
|
|
|
776
803
|
},
|
|
777
804
|
{
|
|
778
805
|
"name": "ui5-combobox",
|
|
779
|
-
"description": "### Overview\n\nThe `ui5-combobox` component represents a drop-down menu with a list of the available options and a text input field to narrow down the options.\n\nIt is commonly used to enable users to select an option from a predefined list.\n\n### Structure\nThe `ui5-combobox` consists of the following elements:\n\n- Input field - displays the selected option or a custom user entry. Users can type to narrow down the list or enter their own value.\n- Drop-down arrow - expands\\collapses the option list.\n- Option list - the list of available options.\n\n### Keyboard Handling\n\nThe `ui5-combobox` provides advanced keyboard handling.\n\n- [F4], [Alt]+[Up], or [Alt]+[Down] - Toggles the picker.\n- [Escape] - Closes the picker, if open. If closed, cancels changes and reverts the typed in value.\n- [Enter] or [Return] - If picker is open, takes over the currently selected item and closes it.\n- [Down] - Selects the next matching item in the picker.\n- [Up] - Selects the previous matching item in the picker.\n- [Page Down] - Moves selection down by page size (10 items by default).\n- [Page Up] - Moves selection up by page size (10 items by default).\n- [Home] - If focus is in the ComboBox, moves cursor at the beginning of text. If focus is in the picker, selects the first item.\n- [End] - If focus is in the ComboBox, moves cursor at the end of text. If focus is in the picker, selects the last item.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ComboBox.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter, focusout or an item is selected.\n- **input** - Fired when typing in input or clear icon is pressed.\n\n**Note:** filterValue property is updated, input is changed.\n- **selection-change** - Fired when selection is changed by user interaction\n\n### **Slots:**\n - **default** - Defines the component items.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the `ui5-combobox` is in `Information`, `Critical` or `Negative` value state.\n- **icon** - Defines the icon to be displayed in the input field.",
|
|
806
|
+
"description": "### Overview\n\nThe `ui5-combobox` component represents a drop-down menu with a list of the available options and a text input field to narrow down the options.\n\nIt is commonly used to enable users to select an option from a predefined list.\n\n### Structure\nThe `ui5-combobox` consists of the following elements:\n\n- Input field - displays the selected option or a custom user entry. Users can type to narrow down the list or enter their own value.\n- Drop-down arrow - expands\\collapses the option list.\n- Option list - the list of available options.\n\n### Keyboard Handling\n\nThe `ui5-combobox` provides advanced keyboard handling.\n\n- [F4], [Alt]+[Up], or [Alt]+[Down] - Toggles the picker.\n- [Escape] - Closes the picker, if open. If closed, cancels changes and reverts the typed in value.\n- [Enter] or [Return] - If picker is open, takes over the currently selected item and closes it.\n- [Down] - Selects the next matching item in the picker.\n- [Up] - Selects the previous matching item in the picker.\n- [Page Down] - Moves selection down by page size (10 items by default).\n- [Page Up] - Moves selection up by page size (10 items by default).\n- [Home] - If focus is in the ComboBox, moves cursor at the beginning of text. If focus is in the picker, selects the first item.\n- [End] - If focus is in the ComboBox, moves cursor at the end of text. If focus is in the picker, selects the last item.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ComboBox.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter, focusout or an item is selected.\n- **open** - Fired when the dropdown is opened.\n- **close** - Fired when the dropdown is closed.\n- **input** - Fired when typing in input or clear icon is pressed.\n\n**Note:** filterValue property is updated, input is changed.\n- **selection-change** - Fired when selection is changed by user interaction\n\n### **Slots:**\n - **default** - Defines the component items.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the `ui5-combobox` is in `Information`, `Critical` or `Negative` value state.\n- **icon** - Defines the icon to be displayed in the input field.",
|
|
780
807
|
"attributes": [
|
|
781
808
|
{
|
|
782
809
|
"name": "value",
|
|
@@ -807,9 +834,9 @@
|
|
|
807
834
|
"name": "value-state",
|
|
808
835
|
"description": "Defines the value state of the component.",
|
|
809
836
|
"values": [
|
|
837
|
+
{ "name": "None" },
|
|
810
838
|
{ "name": "Positive" },
|
|
811
839
|
{ "name": "Negative" },
|
|
812
|
-
{ "name": "None" },
|
|
813
840
|
{ "name": "Critical" },
|
|
814
841
|
{ "name": "Information" }
|
|
815
842
|
]
|
|
@@ -853,6 +880,11 @@
|
|
|
853
880
|
"name": "accessible-name-ref",
|
|
854
881
|
"description": "Receives id(or many ids) of the elements that label the component",
|
|
855
882
|
"values": []
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"name": "open",
|
|
886
|
+
"description": "Indicates whether the items picker is open.",
|
|
887
|
+
"values": []
|
|
856
888
|
}
|
|
857
889
|
],
|
|
858
890
|
"references": []
|
|
@@ -876,7 +908,7 @@
|
|
|
876
908
|
},
|
|
877
909
|
{
|
|
878
910
|
"name": "ui5-cb-item-group",
|
|
879
|
-
"description": "The `ui5-cb-group-item` is type of suggestion item,\nthat can be used to split the `ui5-combobox` suggestions into groups.\n\n\n---\n\n\n\n\n### **Events:**\n - **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\n### **Slots:**\n - **default** - Defines the items of the <code>ui5-cb-item-group</code
|
|
911
|
+
"description": "The `ui5-cb-group-item` is type of suggestion item,\nthat can be used to split the `ui5-combobox` suggestions into groups.\n\n\n---\n\n\n\n\n### **Events:**\n - **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\n### **Slots:**\n - **default** - Defines the items of the <code>ui5-cb-item-group</code>.\n- **header** - Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten.\n\n### **CSS Parts:**\n - **header** - Used to style the header item of the group",
|
|
880
912
|
"attributes": [
|
|
881
913
|
{
|
|
882
914
|
"name": "header-text",
|
|
@@ -958,9 +990,9 @@
|
|
|
958
990
|
"name": "value-state",
|
|
959
991
|
"description": "Defines the value state of the component.",
|
|
960
992
|
"values": [
|
|
993
|
+
{ "name": "None" },
|
|
961
994
|
{ "name": "Positive" },
|
|
962
995
|
{ "name": "Negative" },
|
|
963
|
-
{ "name": "None" },
|
|
964
996
|
{ "name": "Critical" },
|
|
965
997
|
{ "name": "Information" }
|
|
966
998
|
]
|
|
@@ -1067,7 +1099,7 @@
|
|
|
1067
1099
|
},
|
|
1068
1100
|
{
|
|
1069
1101
|
"name": "ui5-daterange-picker",
|
|
1070
|
-
"description": "### Overview\nThe DateRangePicker enables the users to enter a localized date range using touch, mouse, keyboard input, or by selecting a date range in the calendar.\n\n### Usage\nThe user can enter a date by:\nUsing the calendar that opens in a popup or typing it in directly in the input field (not available for mobile devices).\nFor the `ui5-daterange-picker`\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/DateRangePicker.js\";`\n\n### Keyboard Handling\nThe `ui5-daterange-picker` provides advanced keyboard handling.\n\nWhen the `ui5-daterange-picker` input field is focused the user can\nincrement or decrement respectively the range start or end date, depending on where the cursor is.\nThe following shortcuts are available:\n\n- [Page Down] - Decrements the corresponding day of the month by one\n- [Shift] + [Page Down] - Decrements the corresponding month by one\n- [Shift] + [Ctrl] + [Page Down] - Decrements the corresponding year by one\n- [Page Up] - Increments the corresponding day of the month by one\n- [Shift] + [Page Up] - Increments the corresponding month by one\n- [Shift] + [Ctrl] + [Page Up] - Increments the corresponding year by one\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **input** - Fired when the value of the component is changed at each key stroke.\n- **value-state-change** - Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state.\n- **open** - Fired after the component's picker is opened.\n- **close** - Fired after the component's picker is closed.\n\n### **Methods:**\n - **isValid(value: _string_): _boolean_** - Checks if a value is valid against the current date format of the DatePicker.\n- **isInValidRange(value: _string_): _boolean_** - Checks if a date is between the minimum and maximum date.\n- **formatValue(date: _Date_): _string_** - Formats a Java Script date object into a string representing a locale date\naccording to the `formatPattern` property of the DatePicker instance",
|
|
1102
|
+
"description": "### Overview\nThe DateRangePicker enables the users to enter a localized date range using touch, mouse, keyboard input, or by selecting a date range in the calendar.\n\n### Usage\nThe user can enter a date by:\nUsing the calendar that opens in a popup or typing it in directly in the input field (not available for mobile devices).\nFor the `ui5-daterange-picker`\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/DateRangePicker.js\";`\n\n### Keyboard Handling\nThe `ui5-daterange-picker` provides advanced keyboard handling.\n\nWhen the `ui5-daterange-picker` input field is focused the user can\nincrement or decrement respectively the range start or end date, depending on where the cursor is.\nThe following shortcuts are available:\n\n- [Page Down] - Decrements the corresponding day of the month by one\n- [Shift] + [Page Down] - Decrements the corresponding month by one\n- [Shift] + [Ctrl] + [Page Down] - Decrements the corresponding year by one\n- [Page Up] - Increments the corresponding day of the month by one\n- [Shift] + [Page Up] - Increments the corresponding month by one\n- [Shift] + [Ctrl] + [Page Up] - Increments the corresponding year by one\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **input** - Fired when the value of the component is changed at each key stroke.\n- **value-state-change** - Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state.\n- **open** - Fired after the component's picker is opened.\n- **close** - Fired after the component's picker is closed.\n\n### **Methods:**\n - **isValid(value: _string_): _boolean_** - Checks if a value is valid against the current date format of the DatePicker.\n- **isInValidRange(value: _string_): _boolean_** - Checks if a date is between the minimum and maximum date.\n- **formatValue(date: _Date_): _string_** - Formats a Java Script date object into a string representing a locale date\naccording to the `formatPattern` property of the DatePicker instance\n\n### **Slots:**\n - **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.",
|
|
1071
1103
|
"attributes": [
|
|
1072
1104
|
{
|
|
1073
1105
|
"name": "delimiter",
|
|
@@ -1103,9 +1135,9 @@
|
|
|
1103
1135
|
"name": "value-state",
|
|
1104
1136
|
"description": "Defines the value state of the component.",
|
|
1105
1137
|
"values": [
|
|
1138
|
+
{ "name": "None" },
|
|
1106
1139
|
{ "name": "Positive" },
|
|
1107
1140
|
{ "name": "Negative" },
|
|
1108
|
-
{ "name": "None" },
|
|
1109
1141
|
{ "name": "Critical" },
|
|
1110
1142
|
{ "name": "Information" }
|
|
1111
1143
|
]
|
|
@@ -1207,7 +1239,7 @@
|
|
|
1207
1239
|
},
|
|
1208
1240
|
{
|
|
1209
1241
|
"name": "ui5-datetime-picker",
|
|
1210
|
-
"description": "### Overview\nThe `DateTimePicker` component alows users to select both date (day, month and year) and time (hours, minutes and seconds)\nand for the purpose it consists of input field and Date/Time picker.\n\n### Usage\n\nUse the `DateTimePicker` if you need a combined date and time input component.\nDon't use it if you want to use either date, or time value.\nIn this case, use the `DatePicker` or the `TimePicker` components instead.\n\nThe user can set date/time by:\n\n- using the calendar and the time selectors\n- typing in the input field\n\nProgrammatically, to set date/time for the `DateTimePicker`, use the `value` property\n\n### Formatting\n\nThe value entered by typing into the input field must fit to the used date/time format.\n\nSupported format options are pattern-based on Unicode LDML Date Format notation.\nFor more information, see [UTS #35: Unicode Locale Data Markup Language](https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table).\n\n**Example:** the following format `dd/MM/yyyy, hh:mm:ss aa`\ncorresponds the `13/04/2020, 03:16:16 AM` value.\n\nThe small 'h' defines \"12\" hours format and the \"aa\" symbols - \"AM/PM\" time periods.\n\n**Example:** the following format `dd/MM/yyyy, HH:mm:ss`\ncorresponds the `13/04/2020, 15:16:16` value.\n\nThe capital 'H' indicates \"24\" hours format.\n\n**Note:** If the `formatPattern` does NOT include time,\nthe `DateTimePicker` will fallback to the default time format according to the locale.\n\n**Note:** If no placeholder is set to the `DateTimePicker`,\nthe current `formatPattern` is displayed as a placeholder.\nIf another placeholder is needed, it must be set or in case no placeholder is needed - it can be set to an empty string.\n\n**Note:** If the user input does NOT match the `formatPattern`,\nthe `DateTimePicker` makes an attempt to parse it based on the\nlocale settings.\n\n### Responsive behavior\n\nThe `DateTimePicker` is responsive and fully adapts to all devices.\nFor larger screens, such as tablet or desktop, it is displayed as a popover, while\non phone devices, it is displayed full screen.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/DateTimePicker.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **input** - Fired when the value of the component is changed at each key stroke.\n- **value-state-change** - Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state.\n- **open** - Fired after the component's picker is opened.\n- **close** - Fired after the component's picker is closed.\n\n### **Methods:**\n - **isValid(value: _string_): _boolean_** - Checks if a value is valid against the current date format of the DatePicker.\n- **isInValidRange(value: _string_): _boolean_** - Checks if a date is between the minimum and maximum date.\n- **formatValue(date: _Date_): _string_** - Formats a Java Script date object into a string representing a locale date\naccording to the `formatPattern` property of the DatePicker instance",
|
|
1242
|
+
"description": "### Overview\nThe `DateTimePicker` component alows users to select both date (day, month and year) and time (hours, minutes and seconds)\nand for the purpose it consists of input field and Date/Time picker.\n\n### Usage\n\nUse the `DateTimePicker` if you need a combined date and time input component.\nDon't use it if you want to use either date, or time value.\nIn this case, use the `DatePicker` or the `TimePicker` components instead.\n\nThe user can set date/time by:\n\n- using the calendar and the time selectors\n- typing in the input field\n\nProgrammatically, to set date/time for the `DateTimePicker`, use the `value` property\n\n### Formatting\n\nThe value entered by typing into the input field must fit to the used date/time format.\n\nSupported format options are pattern-based on Unicode LDML Date Format notation.\nFor more information, see [UTS #35: Unicode Locale Data Markup Language](https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table).\n\n**Example:** the following format `dd/MM/yyyy, hh:mm:ss aa`\ncorresponds the `13/04/2020, 03:16:16 AM` value.\n\nThe small 'h' defines \"12\" hours format and the \"aa\" symbols - \"AM/PM\" time periods.\n\n**Example:** the following format `dd/MM/yyyy, HH:mm:ss`\ncorresponds the `13/04/2020, 15:16:16` value.\n\nThe capital 'H' indicates \"24\" hours format.\n\n**Note:** If the `formatPattern` does NOT include time,\nthe `DateTimePicker` will fallback to the default time format according to the locale.\n\n**Note:** If no placeholder is set to the `DateTimePicker`,\nthe current `formatPattern` is displayed as a placeholder.\nIf another placeholder is needed, it must be set or in case no placeholder is needed - it can be set to an empty string.\n\n**Note:** If the user input does NOT match the `formatPattern`,\nthe `DateTimePicker` makes an attempt to parse it based on the\nlocale settings.\n\n### Responsive behavior\n\nThe `DateTimePicker` is responsive and fully adapts to all devices.\nFor larger screens, such as tablet or desktop, it is displayed as a popover, while\non phone devices, it is displayed full screen.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/DateTimePicker.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **input** - Fired when the value of the component is changed at each key stroke.\n- **value-state-change** - Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state.\n- **open** - Fired after the component's picker is opened.\n- **close** - Fired after the component's picker is closed.\n\n### **Methods:**\n - **isValid(value: _string_): _boolean_** - Checks if a value is valid against the current date format of the DatePicker.\n- **isInValidRange(value: _string_): _boolean_** - Checks if a date is between the minimum and maximum date.\n- **formatValue(date: _Date_): _string_** - Formats a Java Script date object into a string representing a locale date\naccording to the `formatPattern` property of the DatePicker instance\n\n### **Slots:**\n - **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.",
|
|
1211
1243
|
"attributes": [
|
|
1212
1244
|
{
|
|
1213
1245
|
"name": "value",
|
|
@@ -1218,9 +1250,9 @@
|
|
|
1218
1250
|
"name": "value-state",
|
|
1219
1251
|
"description": "Defines the value state of the component.",
|
|
1220
1252
|
"values": [
|
|
1253
|
+
{ "name": "None" },
|
|
1221
1254
|
{ "name": "Positive" },
|
|
1222
1255
|
{ "name": "Negative" },
|
|
1223
|
-
{ "name": "None" },
|
|
1224
1256
|
{ "name": "Critical" },
|
|
1225
1257
|
{ "name": "Information" }
|
|
1226
1258
|
]
|
|
@@ -1327,7 +1359,7 @@
|
|
|
1327
1359
|
},
|
|
1328
1360
|
{
|
|
1329
1361
|
"name": "ui5-dialog",
|
|
1330
|
-
"description": "### Overview\nThe `ui5-dialog` component is used to temporarily display some information in a\nsize-limited window in front of the regular app screen.\nIt is used to prompt the user for an action or a confirmation.\nThe `ui5-dialog` interrupts the current app processing as it is the only focused UI element and\nthe main screen is dimmed/blocked.\nThe dialog combines concepts known from other technologies where the windows have\nnames such as dialog box, dialog window, pop-up, pop-up window, alert box, or message box.\n\nThe `ui5-dialog` is modal, which means that a user action is required before it is possible to return to the parent window.\nTo open multiple dialogs, each dialog element should be separate in the markup. This will ensure the correct modal behavior. Avoid nesting dialogs within each other.\nThe content of the `ui5-dialog` is fully customizable.\n\n### Structure\nA `ui5-dialog` consists of a header, content, and a footer for action buttons.\nThe `ui5-dialog` is usually displayed at the center of the screen.\nIts position can be changed by the user. To enable this, you need to set the property `draggable` accordingly.\n\n\n### Responsive Behavior\nThe `stretch` property can be used to stretch the `ui5-dialog` to full screen. For better usability, it's recommended to stretch the dialog to full screen on phone devices.\n\n**Note:** When a `ui5-bar` is used in the header or in the footer, you should remove the default dialog's paddings.\n\nFor more information see the sample \"Bar in Header/Footer\".\n\n### Keyboard Handling\n\n#### Basic Navigation\nWhen the `ui5-dialog` has the `draggable` property set to `true` and the header is focused, the user can move the dialog\nwith the following keyboard shortcuts:\n\n- [Up] or [Down] arrow keys - Move the dialog up/down.\n- [Left] or [Right] arrow keys - Move the dialog left/right.\n\n#### Resizing\nWhen the `ui5-dialog` has the `resizable` property set to `true` and the header is focused, the user can change the size of the dialog\nwith the following keyboard shortcuts:\n\n- [Shift] + [Up] or [Down] - Decrease/Increase the height of the dialog.\n- [Shift] + [Left] or [Right] - Decrease/Increase the width of the dialog.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Dialog\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **before-open** - Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening.\n- **open** - Fired after the component is opened.\n- **before-close** - Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing.\n- **close** - Fired after the component is closed.\n\n### **Methods:**\n - **applyFocus(): _Promise<void>_** - Focuses the element denoted by `initialFocus`, if provided,\nor the first focusable element otherwise.\n\n### **Slots:**\n - **header** - Defines the header HTML Element.\n\n**Note:** When a `ui5-bar` is used in the header, you should remove the default dialog's paddings.\n\n**Note:** If `header` slot is provided, the labelling of the dialog is a responsibility of the application developer.\n`accessibleName` should be used.\n- **footer** - Defines the footer HTML Element.\n\n**Note:** When a `ui5-bar` is used in the footer, you should remove the default dialog's paddings.\n\n### **CSS Parts:**\n - **header** - Used to style the header of the component\n- **content** - Used to style the content of the component\n- **footer** - Used to style the footer of the component",
|
|
1362
|
+
"description": "### Overview\nThe `ui5-dialog` component is used to temporarily display some information in a\nsize-limited window in front of the regular app screen.\nIt is used to prompt the user for an action or a confirmation.\nThe `ui5-dialog` interrupts the current app processing as it is the only focused UI element and\nthe main screen is dimmed/blocked.\nThe dialog combines concepts known from other technologies where the windows have\nnames such as dialog box, dialog window, pop-up, pop-up window, alert box, or message box.\n\nThe `ui5-dialog` is modal, which means that a user action is required before it is possible to return to the parent window.\nTo open multiple dialogs, each dialog element should be separate in the markup. This will ensure the correct modal behavior. Avoid nesting dialogs within each other.\nThe content of the `ui5-dialog` is fully customizable.\n\n### Structure\nA `ui5-dialog` consists of a header, content, and a footer for action buttons.\nThe `ui5-dialog` is usually displayed at the center of the screen.\nIts position can be changed by the user. To enable this, you need to set the property `draggable` accordingly.\n\n\n### Responsive Behavior\nThe `stretch` property can be used to stretch the `ui5-dialog` to full screen. For better usability, it's recommended to stretch the dialog to full screen on phone devices.\n\n**Note:** When a `ui5-bar` is used in the header or in the footer, you should remove the default dialog's paddings.\n\nFor more information see the sample \"Bar in Header/Footer\".\n\n### Keyboard Handling\n\n#### Basic Navigation\nWhen the `ui5-dialog` has the `draggable` property set to `true` and the header is focused, the user can move the dialog\nwith the following keyboard shortcuts:\n\n- [Up] or [Down] arrow keys - Move the dialog up/down.\n- [Left] or [Right] arrow keys - Move the dialog left/right.\n\n#### Resizing\nWhen the `ui5-dialog` has the `resizable` property set to `true` and the header is focused, the user can change the size of the dialog\nwith the following keyboard shortcuts:\n\n- [Shift] + [Up] or [Down] - Decrease/Increase the height of the dialog.\n- [Shift] + [Left] or [Right] - Decrease/Increase the width of the dialog.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Dialog\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **before-open** - Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening.\n- **open** - Fired after the component is opened.\n- **before-close** - Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing.\n- **close** - Fired after the component is closed.\n\n### **Methods:**\n - **applyFocus(): _Promise<void>_** - Focuses the element denoted by `initialFocus`, if provided,\nor the first focusable element otherwise.\n\n### **Slots:**\n - **header** - Defines the header HTML Element.\n\n**Note:** When a `ui5-bar` is used in the header, you should remove the default dialog's paddings.\n\n**Note:** If `header` slot is provided, the labelling of the dialog is a responsibility of the application developer.\n`accessibleName` should be used.\n- **footer** - Defines the footer HTML Element.\n\n**Note:** When a `ui5-bar` is used in the footer, you should remove the default dialog's paddings.\n- **default** - Defines the content of the Popup.\n\n### **CSS Parts:**\n - **header** - Used to style the header of the component\n- **content** - Used to style the content of the component\n- **footer** - Used to style the footer of the component",
|
|
1331
1363
|
"attributes": [
|
|
1332
1364
|
{
|
|
1333
1365
|
"name": "header-text",
|
|
@@ -1353,9 +1385,9 @@
|
|
|
1353
1385
|
"name": "state",
|
|
1354
1386
|
"description": "Defines the state of the `Dialog`.\n\n**Note:** If `\"Negative\"` and `\"Critical\"` states is set, it will change the\naccessibility role to \"alertdialog\", if the accessibleRole property is set to `\"Dialog\"`.",
|
|
1355
1387
|
"values": [
|
|
1388
|
+
{ "name": "None" },
|
|
1356
1389
|
{ "name": "Positive" },
|
|
1357
1390
|
{ "name": "Negative" },
|
|
1358
|
-
{ "name": "None" },
|
|
1359
1391
|
{ "name": "Critical" },
|
|
1360
1392
|
{ "name": "Information" }
|
|
1361
1393
|
]
|
|
@@ -1477,9 +1509,9 @@
|
|
|
1477
1509
|
"name": "value-state",
|
|
1478
1510
|
"description": "Defines the value state of the component.",
|
|
1479
1511
|
"values": [
|
|
1512
|
+
{ "name": "None" },
|
|
1480
1513
|
{ "name": "Positive" },
|
|
1481
1514
|
{ "name": "Negative" },
|
|
1482
|
-
{ "name": "None" },
|
|
1483
1515
|
{ "name": "Critical" },
|
|
1484
1516
|
{ "name": "Information" }
|
|
1485
1517
|
]
|
|
@@ -1496,6 +1528,11 @@
|
|
|
1496
1528
|
"name": "ui5-form",
|
|
1497
1529
|
"description": "### Overview\n\nThe Form is a layout component that arranges labels and form fields (like input fields) pairs\ninto a specific number of columns.\n\n**Note:** The Form web component is a layout component, it isn't a replacement for the native `form` HTML element.\nThe Form web component does not provide any APIs for form submission.\n\n### Structure\n\n- **Form** (`ui5-form`) is the top-level container component, responsible for the content layout and responsiveness.\n- **FormGroup** (`ui5-form-group`) enables the grouping of the Form content.\n- **FormItem** (`ui5-form-item`) is a pair of label and form fields and can be used directly in a Form, or as part of a FormGroup.\n\nThe simplest Form (`ui5-form`) consists of a header area on top,\ndisplaying a header text (see the `headingText` property) and content below - an arbitrary number of FormItems (ui5-form-item),\nrepresenting the pairs of label and form fields.\n\nAnd, there is also \"grouping\" available to assist the implementation of richer UIs.\nThis is enabled by the FormGroup (`ui5-form-group`) component.\nIn this case, the Form is structured into FormGroups and each FormGroup consists of FormItems.\n\n### Responsiveness\n\nThe Form component reacts and changes its layout on predefined breakpoints.\nDepending on its size, the Form content (FormGroups and FormItems) gets divided into one or more columns as follows:\n- **S** (< 600px) – 1 column is recommended (default: 1)\n- **M** (600px - 1022px) – up to 2 columns are recommended (default: 1)\n- **L** (1023px - 1439px) - up to 3 columns are recommended (default: 2)\n- **XL** (> 1439px) – up to 6 columns are recommended (default: 3)\n\nTo change the layout, use the `layout` property - f.e. layout=\"S1 M2 L3 XL6\".\n\n### Groups\n\nTo make better use of screen space, there is built-in logic to determine how many columns should a FormGroup occupy.\n\n- **Example #1** (perfect match):\n4 columns and 4 groups: each group will use 1 column.\n\n- **Example #2** (balanced distribution):\n4 columns and 2 groups: each group will use 2 columns.\n6 columns and 2 groups: each group will use 3 columns.\n\n- **Example #3** (unbalanced distribution):\n3 columns and 2 groups: the larger one will use 2 columns, the smaller 1 column.\n5 columns and 3 groups: two of the groups will use 2 columns each, the smallest 1 column.\n\n**Note:** The size of a group element is determined by the number of FormItems assigned to it.\nIn the case of equality, the first in the DOM will use more columns, and the last - fewer columns.\n\n- **Example #4** (more groups than columns):\n3 columns and 4 groups: each FormGroup uses only 1 column, the last FormGroup will wrap on the second row.\n\n### Groups Column Span\n\nTo influence the built-in group distribution, described in the previous section,\nyou can use the FormGroup's `columnSpan` property, that defines how many columns the group should expand to.\n\n### Items Column Span\n\nFormItem's columnSpan property defines how many columns the form item should expand to inside a form group or the form.\n\n### Items Label Span\n\nThe placement of the labels depends on the size of the used column.\nIf there is enough space, the labels are next to their associated fields, otherwise - above the fields.\nBy default, the labels take 4/12 of the FormItem, leaving 8/12 parts to associated fields.\nYou can control what space the labels should take via the `labelSpan` property.\n\n**For example:** To always place the labels on top set: `labelSpan=\"S12 M12 L12 XL12\"` property.\n\n### Items Empty Span\n\nBy default, a form item spans 12 cells, fully divided between its label and field, with no empty space at the end:\n- **Label:** occupies 4 cells.\n- **Field:** occupies 8 cells.\n\nThe `emptySpan` property provides additional layout flexibility by defining empty space at the form item’s end.\n\n**For example:** Setting \"S0 M0 L3 XL3\" (or just \"L3 XL3\") adjusts the layout as follows:\n- **Label:** remains 4 cells.\n- **Field:** is reduced to 5 cells.\n- **Empty space:** 3 cells are added at the end.\n\nGreater values increase the empty space at the end of the form item, reducing the space available for the label and its field.\nHowever, setting `emptySpan` to 1 cell is recommended and typically sufficient to achieve a balanced layout.\n\n### Navigation flow\n\nThe Form component supports two layout options for keyboard navigation:\n\n#### Simple form\n\nIn this \"simple form\" layout, each `ui5-form-item` acts as a standalone group\nwith one item, so focus moves horizontally across the grid from one `ui5-form-item` to the next.\nThis layout is ideal for simpler forms and supports custom arrangements, e.g.,\n\n```\n| 1 | 2 |\n| 3 |\n| 4 | 5 |\n```\n\n#### Complex form\n\nIn this layout, items are grouped into `ui5-form-group` elements, allowing more complex configurations:\n\n- **Single-Column Group**: Focus moves vertically down from one item to the next.\n ```\n | 1 |\n | 2 |\n | 3 |\n ```\n\n- **Multi-Column Group**: Focus moves horizontally within each row, advancing to the next row after completing the current one.\n ```\n | 1 | 4 |\n | 2 | 5 |\n | 3 | 6 |\n ```\n\n### Keyboard Handling\n\n- [Tab] - Moves the focus to the next interactive element within the Form/FormGroup (if available) or to the next element in the tab chain outside the Form\n- [Shift] + [Tab] - Moves the focus to the previous interactive element within the Form/FormGroup (if available) or to the previous element in the tab chain outside the Form\n- [F6] - Moves the focus to the first interactive element of the next FormGroup (if available) or to the next element in the tab chain outside the Form\n- [Shift] + [F6] - Moves the focus to the first interactive element of the previous FormGroup (if available) or to the previous element in the tab chain outside the Form\n\n### ES6 Module Import\n\n- import @ui5/webcomponents/dist/Form.js\";\n- import @ui5/webcomponents/dist/FormGroup.js\";\n- import @ui5/webcomponents/dist/FormItem.js\";\n\n\n---\n\n\n\n\n### **Slots:**\n - **header** - Defines the component header area.\n\n**Note:** When a `header` is provided, the `headerText` property is ignored.\n- **default** - Defines the component content - FormGroups or FormItems.\n\n**Note:** Mixing FormGroups and standalone FormItems (not belonging to a group) is not supported.\nEither use FormGroups and make sure all FormItems are part of a FormGroup, or use just FormItems without any FormGroups.\n\n### **CSS Parts:**\n - **header** - Used to style the wrapper of the header.\n- **layout** - Used to style the element defining the form column layout.\n- **column** - Used to style a single column of the form column layout.",
|
|
1498
1530
|
"attributes": [
|
|
1531
|
+
{
|
|
1532
|
+
"name": "accessible-name",
|
|
1533
|
+
"description": "Defines the accessible ARIA name of the component.",
|
|
1534
|
+
"values": []
|
|
1535
|
+
},
|
|
1499
1536
|
{
|
|
1500
1537
|
"name": "layout",
|
|
1501
1538
|
"description": "Defines the number of columns to distribute the form content by breakpoint.\n\nSupported values:\n- `S` - 1 column by default (1 column is recommended)\n- `M` - 1 column by default (up to 2 columns are recommended)\n- `L` - 2 columns by default (up to 3 columns are recommended)\n- `XL` - 3 columns by default (up to 6 columns are recommended)",
|
|
@@ -1516,6 +1553,18 @@
|
|
|
1516
1553
|
"description": "Defines the header text of the component.\n\n**Note:** The property gets overridden by the `header` slot.",
|
|
1517
1554
|
"values": []
|
|
1518
1555
|
},
|
|
1556
|
+
{
|
|
1557
|
+
"name": "header-level",
|
|
1558
|
+
"description": "Defines the compoennt heading level,\nset by the `headerText`.",
|
|
1559
|
+
"values": [
|
|
1560
|
+
{ "name": "H1" },
|
|
1561
|
+
{ "name": "H2" },
|
|
1562
|
+
{ "name": "H3" },
|
|
1563
|
+
{ "name": "H4" },
|
|
1564
|
+
{ "name": "H5" },
|
|
1565
|
+
{ "name": "H6" }
|
|
1566
|
+
]
|
|
1567
|
+
},
|
|
1519
1568
|
{
|
|
1520
1569
|
"name": "item-spacing",
|
|
1521
1570
|
"description": "Defines the vertical spacing between form items.\n\n**Note:** If the Form is meant to be switched between \"non-edit\" and \"edit\" modes,\nwe recommend using \"Large\" item spacing in \"non-edit\" mode, and \"Normal\" - for \"edit\" mode,\nto avoid \"jumping\" effect, caused by the hight difference between texts in \"non-edit\" mode and the input fields in \"edit\" mode.",
|
|
@@ -1533,6 +1582,18 @@
|
|
|
1533
1582
|
"description": "Defines header text of the component.",
|
|
1534
1583
|
"values": []
|
|
1535
1584
|
},
|
|
1585
|
+
{
|
|
1586
|
+
"name": "header-level",
|
|
1587
|
+
"description": "Defines the compoennt heading level,\nset by the `headerText`.",
|
|
1588
|
+
"values": [
|
|
1589
|
+
{ "name": "H1" },
|
|
1590
|
+
{ "name": "H2" },
|
|
1591
|
+
{ "name": "H3" },
|
|
1592
|
+
{ "name": "H4" },
|
|
1593
|
+
{ "name": "H5" },
|
|
1594
|
+
{ "name": "H6" }
|
|
1595
|
+
]
|
|
1596
|
+
},
|
|
1536
1597
|
{
|
|
1537
1598
|
"name": "column-span",
|
|
1538
1599
|
"description": "Defines column span of the component,\ne.g how many columns the group should span to.",
|
|
@@ -1600,7 +1661,7 @@
|
|
|
1600
1661
|
},
|
|
1601
1662
|
{
|
|
1602
1663
|
"name": "ui5-input",
|
|
1603
|
-
"description": "### Overview\n\nThe `ui5-input` component allows the user to enter and edit text or numeric values in one line.\n\nAdditionally, you can provide `suggestionItems`,\nthat are displayed in a popover right under the input.\n\nThe text field can be editable or read-only (`readonly` property),\nand it can be enabled or disabled (`disabled` property).\nTo visualize semantic states, such as \"Negative\" or \"Critical\", the `valueState` property is provided.\nWhen the user makes changes to the text, the change event is fired,\nwhich enables you to react on any text change.\n\n
|
|
1664
|
+
"description": "### Overview\n\nThe `ui5-input` component allows the user to enter and edit text or numeric values in one line.\n\nAdditionally, you can provide `suggestionItems`,\nthat are displayed in a popover right under the input.\n\nThe text field can be editable or read-only (`readonly` property),\nand it can be enabled or disabled (`disabled` property).\nTo visualize semantic states, such as \"Negative\" or \"Critical\", the `valueState` property is provided.\nWhen the user makes changes to the text, the change event is fired,\nwhich enables you to react on any text change.\n\n### Keyboard Handling\nThe `ui5-input` provides the following keyboard shortcuts:\n\n- [Escape] - Closes the suggestion list, if open. If closed or not enabled, cancels changes and reverts to the value which the Input field had when it got the focus.\n- [Enter] or [Return] - If suggestion list is open takes over the current matching item and closes it. If value state or group header is focused, does nothing.\n- [Down] - Focuses the next matching item in the suggestion list. Selection-change event is fired.\n- [Up] - Focuses the previous matching item in the suggestion list. Selection-change event is fired.\n- [Home] - If focus is in the text input, moves caret before the first character. If focus is in the list, highlights the first item and updates the input accordingly.\n- [End] - If focus is in the text input, moves caret after the last character. If focus is in the list, highlights the last item and updates the input accordingly.\n- [Page Up] - If focus is in the list, moves highlight up by page size (10 items by default). If focus is in the input, does nothing.\n- [Page Down] - If focus is in the list, moves highlight down by page size (10 items by default). If focus is in the input, does nothing.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Input.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **input** - Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected.\n- **select** - Fired when some text has been selected.\n- **selection-change** - Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection.\n- **open** - Fired when the suggestions picker is open.\n- **close** - Fired when the suggestions picker is closed.\n\n### **Slots:**\n - **default** - Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n- **icon** - Defines the icon to be displayed in the component.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone.\n\n### **CSS Parts:**\n - **root** - Used to style the root DOM element of the Input component\n- **input** - Used to style the native input element\n- **clear-icon** - Used to style the clear icon, which can be pressed to clear user input text",
|
|
1604
1665
|
"attributes": [
|
|
1605
1666
|
{
|
|
1606
1667
|
"name": "disabled",
|
|
@@ -1649,9 +1710,9 @@
|
|
|
1649
1710
|
"name": "value-state",
|
|
1650
1711
|
"description": "Defines the value state of the component.",
|
|
1651
1712
|
"values": [
|
|
1713
|
+
{ "name": "None" },
|
|
1652
1714
|
{ "name": "Positive" },
|
|
1653
1715
|
{ "name": "Negative" },
|
|
1654
|
-
{ "name": "None" },
|
|
1655
1716
|
{ "name": "Critical" },
|
|
1656
1717
|
{ "name": "Information" }
|
|
1657
1718
|
]
|
|
@@ -1663,7 +1724,7 @@
|
|
|
1663
1724
|
},
|
|
1664
1725
|
{
|
|
1665
1726
|
"name": "show-suggestions",
|
|
1666
|
-
"description": "Defines whether the component should show suggestions, if such are present
|
|
1727
|
+
"description": "Defines whether the component should show suggestions, if such are present.",
|
|
1667
1728
|
"values": []
|
|
1668
1729
|
},
|
|
1669
1730
|
{
|
|
@@ -1681,6 +1742,16 @@
|
|
|
1681
1742
|
"description": "Receives id(or many ids) of the elements that label the input.",
|
|
1682
1743
|
"values": []
|
|
1683
1744
|
},
|
|
1745
|
+
{
|
|
1746
|
+
"name": "accessible-description",
|
|
1747
|
+
"description": "Defines the accessible description of the component.",
|
|
1748
|
+
"values": []
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
"name": "accessible-description-ref",
|
|
1752
|
+
"description": "Receives id(or many ids) of the elements that describe the input.",
|
|
1753
|
+
"values": []
|
|
1754
|
+
},
|
|
1684
1755
|
{
|
|
1685
1756
|
"name": "show-clear-icon",
|
|
1686
1757
|
"description": "Defines whether the clear icon of the input will be shown.",
|
|
@@ -1754,6 +1825,11 @@
|
|
|
1754
1825
|
{ "name": "Subtle" }
|
|
1755
1826
|
]
|
|
1756
1827
|
},
|
|
1828
|
+
{
|
|
1829
|
+
"name": "interactive-area-size",
|
|
1830
|
+
"description": "Defines the target area size of the link:\n- **InteractiveAreaSize.Normal**: The default target area size.\n- **InteractiveAreaSize.Large**: The target area size is enlarged to 24px in height.\n\n**Note:**The property is designed to make links easier to activate and helps meet the WCAG 2.2 Target Size requirement. It is applicable only for the SAP Horizon themes.\n**Note:**To improve <code>ui5-link</code>'s reliability and usability, it is recommended to use the <code>InteractiveAreaSize.Large</code> value in scenarios where the <code>ui5-link</code> component is placed inside another interactive component, such as a list item or a table cell.\nSetting the <code>interactiveAreaSize</code> property to <code>InteractiveAreaSize.Large</code> increases the <code>ui5-link</code>'s invisible touch area. As a result, the user's intended one-time selection command is more likely to activate the desired <code>ui5-link</code>, with minimal chance of unintentionally activating the underlying component.",
|
|
1831
|
+
"values": [{ "name": "Normal" }, { "name": "Large" }]
|
|
1832
|
+
},
|
|
1757
1833
|
{
|
|
1758
1834
|
"name": "wrapping-type",
|
|
1759
1835
|
"description": "Defines how the text of a component will be displayed when there is not enough space.\n\n**Note:** By default the text will wrap. If \"None\" is set - the text will truncate.",
|
|
@@ -1799,7 +1875,7 @@
|
|
|
1799
1875
|
},
|
|
1800
1876
|
{
|
|
1801
1877
|
"name": "ui5-list",
|
|
1802
|
-
"description": "### Overview\n\nThe `ui5-list` component allows displaying a list of items, advanced keyboard\nhandling support for navigating between items, and predefined modes to improve the development efficiency.\n\nThe `ui5-list` is a container for the available list items:\n\n- `ui5-li`\n- `ui5-li-custom`\n- `ui5-li-group`\n\nTo benefit from the built-in selection mechanism, you can use the available\nselection modes, such as\n`Single`, `Multiple` and `Delete`.\n\nAdditionally, the `ui5-list` provides header, footer, and customization for the list item separators.\n\n### Keyboard Handling\n\n#### Basic Navigation\nThe `ui5-list` provides advanced keyboard handling.\nWhen a list is focused the user can use the following keyboard\nshortcuts in order to perform a navigation:\n\n- [Up] or [Down] - Navigates up and down the items\n- [Home] - Navigates to first item\n- [End] - Navigates to the last item\n\nThe user can use the following keyboard shortcuts to perform actions (such as select, delete),\nwhen the `selectionMode` property is in use:\n\n- [Space] - Select an item (if `type` is 'Active') when `selectionMode` is selection\n- [Delete] - Delete an item if `selectionMode` property is `Delete`\n\n#### Fast Navigation\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/List.js\";`\n\n`import \"@ui5/webcomponents/dist/ListItemStandard.js\";` (for `ui5-li`)\n\n`import \"@ui5/webcomponents/dist/ListItemCustom.js\";` (for `ui5-li-custom`)\n\n`import \"@ui5/webcomponents/dist/ListItemGroup.js\";` (for `ui5-li-group`)\n\n\n---\n\n\n\n\n### **Events:**\n - **item-click** - Fired when an item is activated, unless the item's `type` property\nis set to `Inactive`.\n- **item-close** - Fired when the `Close` button of any item is clicked\n\n**Note:** This event is only applicable to list items that can be closed (such as notification list items),\nnot to be confused with `item-delete`.\n- **item-toggle** - Fired when the `Toggle` button of any item is clicked.\n\n**Note:** This event is only applicable to list items that can be toggled (such as notification group list items).\n- **item-delete** - Fired when the Delete button of any item is pressed.\n\n**Note:** A Delete button is displayed on each item,\nwhen the component `selectionMode` property is set to `Delete`.\n- **selection-change** - Fired when selection is changed by user interaction\nin `Single`, `SingleStart`, `SingleEnd` and `Multiple` selection modes.\n- **load-more** - Fired when the user scrolls to the bottom of the list.\n\n**Note:** The event is fired when the `growing='Scroll'` property is enabled.\n- **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\n### **Slots:**\n - **default** - Defines the items of the component.\n\n**Note:** Use `ui5-li`, `ui5-li-custom`, and `ui5-li-group` for the intended design.\n- **header** - Defines the component header.\n\n**Note:** When `header` is set, the\n`headerText` property is ignored.\n\n### **CSS Parts:**\n - **growing-button** - Used to style the button, that is used for growing of the component\n- **growing-button-inner** - Used to style the button inner element",
|
|
1878
|
+
"description": "### Overview\n\nThe `ui5-list` component allows displaying a list of items, advanced keyboard\nhandling support for navigating between items, and predefined modes to improve the development efficiency.\n\nThe `ui5-list` is a container for the available list items:\n\n- `ui5-li`\n- `ui5-li-custom`\n- `ui5-li-group`\n\nTo benefit from the built-in selection mechanism, you can use the available\nselection modes, such as\n`Single`, `Multiple` and `Delete`.\n\nAdditionally, the `ui5-list` provides header, footer, and customization for the list item separators.\n\n### Keyboard Handling\n\n#### Basic Navigation\nThe `ui5-list` provides advanced keyboard handling.\nWhen a list is focused the user can use the following keyboard\nshortcuts in order to perform a navigation:\n\n- [Up] or [Down] - Navigates up and down the items\n- [Home] - Navigates to first item\n- [End] - Navigates to the last item\n\nThe user can use the following keyboard shortcuts to perform actions (such as select, delete),\nwhen the `selectionMode` property is in use:\n\n- [Space] - Select an item (if `type` is 'Active') when `selectionMode` is selection\n- [Delete] - Delete an item if `selectionMode` property is `Delete`\n\n#### Fast Navigation\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/List.js\";`\n\n`import \"@ui5/webcomponents/dist/ListItemStandard.js\";` (for `ui5-li`)\n\n`import \"@ui5/webcomponents/dist/ListItemCustom.js\";` (for `ui5-li-custom`)\n\n`import \"@ui5/webcomponents/dist/ListItemGroup.js\";` (for `ui5-li-group`)\n\n\n---\n\n\n\n\n### **Events:**\n - **item-click** - Fired when an item is activated, unless the item's `type` property\nis set to `Inactive`.\n\n**Note**: This event is not triggered by interactions with selection components such as the checkboxes and radio buttons,\nassociated with non-default `selectionMode` values, or if any other **interactive** component\n(such as a button or input) within the list item is directly clicked.\n- **item-close** - Fired when the `Close` button of any item is clicked\n\n**Note:** This event is only applicable to list items that can be closed (such as notification list items),\nnot to be confused with `item-delete`.\n- **item-toggle** - Fired when the `Toggle` button of any item is clicked.\n\n**Note:** This event is only applicable to list items that can be toggled (such as notification group list items).\n- **item-delete** - Fired when the Delete button of any item is pressed.\n\n**Note:** A Delete button is displayed on each item,\nwhen the component `selectionMode` property is set to `Delete`.\n- **selection-change** - Fired when selection is changed by user interaction\nin `Single`, `SingleStart`, `SingleEnd` and `Multiple` selection modes.\n- **load-more** - Fired when the user scrolls to the bottom of the list.\n\n**Note:** The event is fired when the `growing='Scroll'` property is enabled.\n- **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\n### **Slots:**\n - **default** - Defines the items of the component.\n\n**Note:** Use `ui5-li`, `ui5-li-custom`, and `ui5-li-group` for the intended design.\n- **header** - Defines the component header.\n\n**Note:** When `header` is set, the\n`headerText` property is ignored.\n\n### **CSS Parts:**\n - **growing-button** - Used to style the button, that is used for growing of the component\n- **growing-button-inner** - Used to style the button inner element",
|
|
1803
1879
|
"attributes": [
|
|
1804
1880
|
{
|
|
1805
1881
|
"name": "header-text",
|
|
@@ -1820,9 +1896,9 @@
|
|
|
1820
1896
|
"name": "selection-mode",
|
|
1821
1897
|
"description": "Defines the selection mode of the component.",
|
|
1822
1898
|
"values": [
|
|
1899
|
+
{ "name": "None" },
|
|
1823
1900
|
{ "name": "Single" },
|
|
1824
1901
|
{ "name": "Multiple" },
|
|
1825
|
-
{ "name": "None" },
|
|
1826
1902
|
{ "name": "SingleStart" },
|
|
1827
1903
|
{ "name": "SingleEnd" },
|
|
1828
1904
|
{ "name": "SingleAuto" },
|
|
@@ -1843,8 +1919,8 @@
|
|
|
1843
1919
|
"name": "growing",
|
|
1844
1920
|
"description": "Defines whether the component will have growing capability either by pressing a `More` button,\nor via user scroll. In both cases `load-more` event is fired.\n\n**Restrictions:** `growing=\"Scroll\"` is not supported for Internet Explorer,\non IE the component will fallback to `growing=\"Button\"`.",
|
|
1845
1921
|
"values": [
|
|
1846
|
-
{ "name": "Button" },
|
|
1847
1922
|
{ "name": "None" },
|
|
1923
|
+
{ "name": "Button" },
|
|
1848
1924
|
{ "name": "Scroll" }
|
|
1849
1925
|
]
|
|
1850
1926
|
},
|
|
@@ -1934,9 +2010,9 @@
|
|
|
1934
2010
|
"name": "highlight",
|
|
1935
2011
|
"description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
1936
2012
|
"values": [
|
|
2013
|
+
{ "name": "None" },
|
|
1937
2014
|
{ "name": "Positive" },
|
|
1938
2015
|
{ "name": "Negative" },
|
|
1939
|
-
{ "name": "None" },
|
|
1940
2016
|
{ "name": "Critical" },
|
|
1941
2017
|
{ "name": "Information" }
|
|
1942
2018
|
]
|
|
@@ -1957,7 +2033,7 @@
|
|
|
1957
2033
|
},
|
|
1958
2034
|
{
|
|
1959
2035
|
"name": "ui5-li-custom",
|
|
1960
|
-
"description": "A component to be used as custom list item within the `ui5-list`\nthe same way as the standard `ui5-li`.\n\nThe component accepts arbitrary HTML content to allow full customization.\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Slots:**\n - **default** - Defines the content of the component.\n\n### **CSS Parts:**\n - **native-li** - Used to style the main li tag of the list item\n- **content** - Used to style the content area of the list item\n- **detail-button** - Used to style the button rendered when the list item is of type detail\n- **delete-button** - Used to style the button rendered when the list item is in delete mode\n- **radio** - Used to style the radio button rendered when the list item is in single selection mode\n- **checkbox** - Used to style the checkbox rendered when the list item is in multiple selection mode",
|
|
2036
|
+
"description": "A component to be used as custom list item within the `ui5-list`\nthe same way as the standard `ui5-li`.\n\nThe component accepts arbitrary HTML content to allow full customization.\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Slots:**\n - **default** - Defines the content of the component.\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.\n\n### **CSS Parts:**\n - **native-li** - Used to style the main li tag of the list item\n- **content** - Used to style the content area of the list item\n- **detail-button** - Used to style the button rendered when the list item is of type detail\n- **delete-button** - Used to style the button rendered when the list item is in delete mode\n- **radio** - Used to style the radio button rendered when the list item is in single selection mode\n- **checkbox** - Used to style the checkbox rendered when the list item is in multiple selection mode",
|
|
1961
2037
|
"attributes": [
|
|
1962
2038
|
{
|
|
1963
2039
|
"name": "movable",
|
|
@@ -1998,9 +2074,9 @@
|
|
|
1998
2074
|
"name": "highlight",
|
|
1999
2075
|
"description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
2000
2076
|
"values": [
|
|
2077
|
+
{ "name": "None" },
|
|
2001
2078
|
{ "name": "Positive" },
|
|
2002
2079
|
{ "name": "Negative" },
|
|
2003
|
-
{ "name": "None" },
|
|
2004
2080
|
{ "name": "Critical" },
|
|
2005
2081
|
{ "name": "Information" }
|
|
2006
2082
|
]
|
|
@@ -2032,8 +2108,13 @@
|
|
|
2032
2108
|
},
|
|
2033
2109
|
{
|
|
2034
2110
|
"name": "ui5-li",
|
|
2035
|
-
"description": "The `ui5-li` represents the simplest type of item for a `ui5-list`.\n\nThis is a list item,\nproviding the most common use cases such as `text`,\n`image` and `icon`.\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:**
|
|
2111
|
+
"description": "The `ui5-li` represents the simplest type of item for a `ui5-list`.\n\nThis is a list item,\nproviding the most common use cases such as `text`,\n`image` and `icon`.\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Slots:**\n - **default** - Defines the custom formatted text of the component.\n\n**Note:** For optimal text wrapping and a consistent layout, it is strongly recommended to use the `text` property.\n\nUse the `default` slot only when custom formatting with HTML elements (e.g., `<b>`, `<i>`) is required.\nBe aware that wrapping (via `wrappingType=\"Normal\"`) may not function correctly with custom HTML content in the `default` slot.\n\nIf both `text` and `default` slot are used, the `text` property takes precedence.\n- **image** - **Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with it's default size - S.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-li` should be customized in order to fit.\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.\n\n### **CSS Parts:**\n - **title** - Used to style the title of the list item\n- **description** - Used to style the description of the list item\n- **additional-text** - Used to style the additionalText of the list item\n- **icon** - Used to style the icon of the list item\n- **native-li** - Used to style the main li tag of the list item\n- **content** - Used to style the content area of the list item\n- **detail-button** - Used to style the button rendered when the list item is of type detail\n- **delete-button** - Used to style the button rendered when the list item is in delete mode\n- **radio** - Used to style the radio button rendered when the list item is in single selection mode\n- **checkbox** - Used to style the checkbox rendered when the list item is in multiple selection mode",
|
|
2036
2112
|
"attributes": [
|
|
2113
|
+
{
|
|
2114
|
+
"name": "text",
|
|
2115
|
+
"description": "Defines the text of the component.",
|
|
2116
|
+
"values": []
|
|
2117
|
+
},
|
|
2037
2118
|
{
|
|
2038
2119
|
"name": "description",
|
|
2039
2120
|
"description": "Defines the description displayed right under the item text, if such is present.",
|
|
@@ -2058,9 +2139,9 @@
|
|
|
2058
2139
|
"name": "additional-text-state",
|
|
2059
2140
|
"description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
2060
2141
|
"values": [
|
|
2142
|
+
{ "name": "None" },
|
|
2061
2143
|
{ "name": "Positive" },
|
|
2062
2144
|
{ "name": "Negative" },
|
|
2063
|
-
{ "name": "None" },
|
|
2064
2145
|
{ "name": "Critical" },
|
|
2065
2146
|
{ "name": "Information" }
|
|
2066
2147
|
]
|
|
@@ -2075,6 +2156,11 @@
|
|
|
2075
2156
|
"description": "Defines the text alternative of the component.\nNote: If not provided a default text alternative will be set, if present.",
|
|
2076
2157
|
"values": []
|
|
2077
2158
|
},
|
|
2159
|
+
{
|
|
2160
|
+
"name": "wrapping-type",
|
|
2161
|
+
"description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
|
|
2162
|
+
"values": [{ "name": "None" }, { "name": "Normal" }]
|
|
2163
|
+
},
|
|
2078
2164
|
{
|
|
2079
2165
|
"name": "type",
|
|
2080
2166
|
"description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
|
|
@@ -2104,9 +2190,9 @@
|
|
|
2104
2190
|
"name": "highlight",
|
|
2105
2191
|
"description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
2106
2192
|
"values": [
|
|
2193
|
+
{ "name": "None" },
|
|
2107
2194
|
{ "name": "Positive" },
|
|
2108
2195
|
{ "name": "Negative" },
|
|
2109
|
-
{ "name": "None" },
|
|
2110
2196
|
{ "name": "Critical" },
|
|
2111
2197
|
{ "name": "Information" }
|
|
2112
2198
|
]
|
|
@@ -2121,7 +2207,7 @@
|
|
|
2121
2207
|
},
|
|
2122
2208
|
{
|
|
2123
2209
|
"name": "ui5-menu",
|
|
2124
|
-
"description": "### Overview\n\n`ui5-menu` component represents a hierarchical menu structure.\n\n### Structure\n\nThe `ui5-menu` can hold two types of entities:\n\n- `ui5-menu-item` components\n- `ui5-menu-separator` - used to separate menu items with a line\n\nAn arbitrary hierarchy structure can be represented by recursively nesting menu items.\n\n### Keyboard Handling\n\nThe `ui5-menu` provides advanced keyboard handling.\nThe user can use the following keyboard shortcuts in order to navigate trough the tree:\n\n- `Arrow Up` / `Arrow Down` - Navigates up and down the menu items that are currently visible.\n- `Arrow Right`, `Space` or `Enter` - Opens a sub-menu if there are menu items nested\nin the currently clicked menu item.\n- `Arrow Left` or `Escape` - Closes the currently opened sub-menu.\n\nNote: if the text ditrection is set to Right-to-left (RTL), `Arrow Right` and `Arrow Left` functionality is swapped.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Menu.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **item-click** - Fired when an item is being clicked.\n\n**Note:** Since 1.17.0 the event is preventable, allowing the menu to remain open after an item is pressed.\n- **before-open** - Fired before the menu is opened. This event can be cancelled, which will prevent the menu from opening
|
|
2210
|
+
"description": "### Overview\n\n`ui5-menu` component represents a hierarchical menu structure.\n\n### Structure\n\nThe `ui5-menu` can hold two types of entities:\n\n- `ui5-menu-item` components\n- `ui5-menu-separator` - used to separate menu items with a line\n\nAn arbitrary hierarchy structure can be represented by recursively nesting menu items.\n\n### Keyboard Handling\n\nThe `ui5-menu` provides advanced keyboard handling.\nThe user can use the following keyboard shortcuts in order to navigate trough the tree:\n\n- `Arrow Up` / `Arrow Down` - Navigates up and down the menu items that are currently visible.\n- `Arrow Right`, `Space` or `Enter` - Opens a sub-menu if there are menu items nested\nin the currently clicked menu item.\n- `Arrow Left` or `Escape` - Closes the currently opened sub-menu.\n\nwhen there is `endContent` :\n- `Arrow Left` or `ArrowRight` - Navigate between the menu item actions and the menu item itself\n- `Arrow Up` / `Arrow Down` - Navigates up and down the currently visible menu items\n\nNote: if the text ditrection is set to Right-to-left (RTL), `Arrow Right` and `Arrow Left` functionality is swapped.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Menu.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **item-click** - Fired when an item is being clicked.\n\n**Note:** Since 1.17.0 the event is preventable, allowing the menu to remain open after an item is pressed.\n- **before-open** - Fired before the menu is opened. This event can be cancelled, which will prevent the menu from opening.\n\n**Note:** Since 1.14.0 the event is also fired before a sub-menu opens.\n- **open** - Fired after the menu is opened.\n- **before-close** - Fired before the menu is closed. This event can be cancelled, which will prevent the menu from closing.\n- **close** - Fired after the menu is closed.\n\n### **Slots:**\n - **default** - Defines the items of this component.\n\n**Note:** Use `ui5-menu-item` and `ui5-menu-separator` for their intended design.",
|
|
2125
2211
|
"attributes": [
|
|
2126
2212
|
{
|
|
2127
2213
|
"name": "header-text",
|
|
@@ -2130,9 +2216,19 @@
|
|
|
2130
2216
|
},
|
|
2131
2217
|
{
|
|
2132
2218
|
"name": "open",
|
|
2133
|
-
"description": "Indicates if the menu is open",
|
|
2219
|
+
"description": "Indicates if the menu is open.",
|
|
2134
2220
|
"values": []
|
|
2135
2221
|
},
|
|
2222
|
+
{
|
|
2223
|
+
"name": "horizontal-align",
|
|
2224
|
+
"description": "Determines the horizontal alignment of the menu relative to its opener control.",
|
|
2225
|
+
"values": [
|
|
2226
|
+
{ "name": "Center" },
|
|
2227
|
+
{ "name": "Start" },
|
|
2228
|
+
{ "name": "End" },
|
|
2229
|
+
{ "name": "Stretch" }
|
|
2230
|
+
]
|
|
2231
|
+
},
|
|
2136
2232
|
{
|
|
2137
2233
|
"name": "loading",
|
|
2138
2234
|
"description": "Defines if a loading indicator would be displayed inside the corresponding ui5-menu popover.",
|
|
@@ -2140,7 +2236,7 @@
|
|
|
2140
2236
|
},
|
|
2141
2237
|
{
|
|
2142
2238
|
"name": "loading-delay",
|
|
2143
|
-
"description": "Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding ui5-menu popover
|
|
2239
|
+
"description": "Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding ui5-menu popover.",
|
|
2144
2240
|
"values": []
|
|
2145
2241
|
},
|
|
2146
2242
|
{
|
|
@@ -2153,7 +2249,7 @@
|
|
|
2153
2249
|
},
|
|
2154
2250
|
{
|
|
2155
2251
|
"name": "ui5-menu-item",
|
|
2156
|
-
"description": "### Overview\n\n`ui5-menu-item` is the item to use inside a `ui5-menu`.\nAn arbitrary hierarchy structure can be represented by recursively nesting menu items.\n\n### Usage\n\n`ui5-menu-item` represents a node in a `ui5-menu`. The menu itself is rendered as a list,\nand each `ui5-menu-item` is represented by a list item in that list. Therefore, you should only use\n`ui5-menu-item` directly in your apps. The `ui5-li` list item is internal for the list, and not intended for public use.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/MenuItem.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Slots:**\n - **default** - Defines the items of this component.\n\n**Note:** The slot can hold `ui5-menu-item` and `ui5-menu-separator` items.\n\nIf there are items added to this slot, an arrow will be displayed at the end\nof the item in order to indicate that there are items added. In that case components added\nto `endContent` slot or `additionalText` content will not be displayed.\n\nThe priority of what will be displayed at the end of the menu item is as follows:\nsub-menu arrow (if there are items added in `items` slot) -> components added in `endContent` -> text set to `additionalText`.\n- **endContent** - Defines the components that should be displayed at the end of the menu item.\n\n**Note:** It is highly recommended to slot only components of type `ui5-button`,`ui5-link`\nor `ui5-icon` in order to preserve the intended design. If there are components added to this slot,\nand there is text set in `additionalText`, it will not be displayed. If there are items added to `items` slot,\nnether `additionalText` nor components added to this slot would be displayed.\n\nThe priority of what will be displayed at the end of the menu item is as follows:\nsub-menu arrow (if there are items added in `items` slot) -> components added in `endContent` -> text set to `additionalText
|
|
2252
|
+
"description": "### Overview\n\n`ui5-menu-item` is the item to use inside a `ui5-menu`.\nAn arbitrary hierarchy structure can be represented by recursively nesting menu items.\n\n### Usage\n\n`ui5-menu-item` represents a node in a `ui5-menu`. The menu itself is rendered as a list,\nand each `ui5-menu-item` is represented by a list item in that list. Therefore, you should only use\n`ui5-menu-item` directly in your apps. The `ui5-li` list item is internal for the list, and not intended for public use.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/MenuItem.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **before-open** - Fired before the menu is opened. This event can be cancelled, which will prevent the menu from opening.\n\n**Note:** Since 1.14.0 the event is also fired before a sub-menu opens.\n- **open** - Fired after the menu is opened.\n- **before-close** - Fired before the menu is closed. This event can be cancelled, which will prevent the menu from closing.\n- **close** - Fired after the menu is closed.\n- **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Slots:**\n - **default** - Defines the items of this component.\n\n**Note:** The slot can hold `ui5-menu-item` and `ui5-menu-separator` items.\n\nIf there are items added to this slot, an arrow will be displayed at the end\nof the item in order to indicate that there are items added. In that case components added\nto `endContent` slot or `additionalText` content will not be displayed.\n\nThe priority of what will be displayed at the end of the menu item is as follows:\nsub-menu arrow (if there are items added in `items` slot) -> components added in `endContent` -> text set to `additionalText`.\n- **endContent** - Defines the components that should be displayed at the end of the menu item.\n\n**Note:** It is highly recommended to slot only components of type `ui5-button`,`ui5-link`\nor `ui5-icon` in order to preserve the intended design. If there are components added to this slot,\nand there is text set in `additionalText`, it will not be displayed. If there are items added to `items` slot,\nnether `additionalText` nor components added to this slot would be displayed.\n\nThe priority of what will be displayed at the end of the menu item is as follows:\nsub-menu arrow (if there are items added in `items` slot) -> components added in `endContent` -> text set to `additionalText`.\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.",
|
|
2157
2253
|
"attributes": [
|
|
2158
2254
|
{
|
|
2159
2255
|
"name": "text",
|
|
@@ -2198,7 +2294,7 @@
|
|
|
2198
2294
|
{
|
|
2199
2295
|
"name": "accessibility-attributes",
|
|
2200
2296
|
"description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaKeyShortcuts**: Indicated the availability of a keyboard shortcuts defined for the menu item.\n\n- **role**: Defines the role of the menu item. If not set, menu item will have default role=\"menuitem\".",
|
|
2201
|
-
"values": [{ "name": "
|
|
2297
|
+
"values": [{ "name": "MenuItemAccessibilityAttributes" }]
|
|
2202
2298
|
},
|
|
2203
2299
|
{
|
|
2204
2300
|
"name": "type",
|
|
@@ -2219,9 +2315,9 @@
|
|
|
2219
2315
|
"name": "highlight",
|
|
2220
2316
|
"description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
2221
2317
|
"values": [
|
|
2318
|
+
{ "name": "None" },
|
|
2222
2319
|
{ "name": "Positive" },
|
|
2223
2320
|
{ "name": "Negative" },
|
|
2224
|
-
{ "name": "None" },
|
|
2225
2321
|
{ "name": "Critical" },
|
|
2226
2322
|
{ "name": "Information" }
|
|
2227
2323
|
]
|
|
@@ -2312,9 +2408,9 @@
|
|
|
2312
2408
|
"name": "value-state",
|
|
2313
2409
|
"description": "Defines the value state of the component.",
|
|
2314
2410
|
"values": [
|
|
2411
|
+
{ "name": "None" },
|
|
2315
2412
|
{ "name": "Positive" },
|
|
2316
2413
|
{ "name": "Negative" },
|
|
2317
|
-
{ "name": "None" },
|
|
2318
2414
|
{ "name": "Critical" },
|
|
2319
2415
|
{ "name": "Information" }
|
|
2320
2416
|
]
|
|
@@ -2361,8 +2457,8 @@
|
|
|
2361
2457
|
},
|
|
2362
2458
|
{
|
|
2363
2459
|
"name": "open",
|
|
2364
|
-
"description": "Indicates whether the
|
|
2365
|
-
"values": [
|
|
2460
|
+
"description": "Indicates whether the items picker is open.",
|
|
2461
|
+
"values": []
|
|
2366
2462
|
}
|
|
2367
2463
|
],
|
|
2368
2464
|
"references": []
|
|
@@ -2391,7 +2487,7 @@
|
|
|
2391
2487
|
},
|
|
2392
2488
|
{
|
|
2393
2489
|
"name": "ui5-mcb-item-group",
|
|
2394
|
-
"description": "The `ui5-mcb-item-group` is type of suggestion item,\nthat can be used to split the `ui5-multi-combobox` suggestions into groups.\n\n\n---\n\n\n\n\n### **Events:**\n - **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\n### **Slots:**\n - **default** - Defines the items of the <code>ui5-mcb-item-group</code
|
|
2490
|
+
"description": "The `ui5-mcb-item-group` is type of suggestion item,\nthat can be used to split the `ui5-multi-combobox` suggestions into groups.\n\n\n---\n\n\n\n\n### **Events:**\n - **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\n### **Slots:**\n - **default** - Defines the items of the <code>ui5-mcb-item-group</code>.\n- **header** - Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten.\n\n### **CSS Parts:**\n - **header** - Used to style the header item of the group",
|
|
2395
2491
|
"attributes": [
|
|
2396
2492
|
{
|
|
2397
2493
|
"name": "header-text",
|
|
@@ -2408,7 +2504,7 @@
|
|
|
2408
2504
|
},
|
|
2409
2505
|
{
|
|
2410
2506
|
"name": "ui5-multi-input",
|
|
2411
|
-
"description": "### Overview\nA `ui5-multi-input` field allows the user to enter multiple values, which are displayed as `ui5-token`.\n\nUser can choose interaction for creating tokens.\nFiori Guidelines say that user should create tokens when:\n\n- Type a value in the input and press enter or focus out the input field (`change` event is fired)\n- Move between suggestion items (`selection-change` event is fired)\n- Clicking on a suggestion item (`selection-change` event is fired if the clicked item is different than the current value. Also `change` event is fired )\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/MultiInput.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **value-help-trigger** - Fired when the value help icon is pressed\nand F4 or ALT/OPTION + ARROW_UP/ARROW_DOWN keyboard keys are used.\n- **token-delete** - Fired when tokens are being deleted.\n- **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **input** - Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected.\n- **select** - Fired when some text has been selected.\n- **selection-change** - Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection.\n- **open** - Fired when the suggestions picker is open.\n- **close** - Fired when the suggestions picker is closed.\n\n### **Slots:**\n - **tokens** - Defines the component tokens
|
|
2507
|
+
"description": "### Overview\nA `ui5-multi-input` field allows the user to enter multiple values, which are displayed as `ui5-token`.\n\nUser can choose interaction for creating tokens.\nFiori Guidelines say that user should create tokens when:\n\n- Type a value in the input and press enter or focus out the input field (`change` event is fired)\n- Move between suggestion items (`selection-change` event is fired)\n- Clicking on a suggestion item (`selection-change` event is fired if the clicked item is different than the current value. Also `change` event is fired )\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/MultiInput.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **value-help-trigger** - Fired when the value help icon is pressed\nand F4 or ALT/OPTION + ARROW_UP/ARROW_DOWN keyboard keys are used.\n- **token-delete** - Fired when tokens are being deleted.\n- **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **input** - Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected.\n- **select** - Fired when some text has been selected.\n- **selection-change** - Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection.\n- **open** - Fired when the suggestions picker is open.\n- **close** - Fired when the suggestions picker is closed.\n\n### **Slots:**\n - **tokens** - Defines the component tokens.\n- **default** - Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n- **icon** - Defines the icon to be displayed in the component.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone.\n\n### **CSS Parts:**\n - **root** - Used to style the root DOM element of the Input component\n- **input** - Used to style the native input element\n- **clear-icon** - Used to style the clear icon, which can be pressed to clear user input text",
|
|
2412
2508
|
"attributes": [
|
|
2413
2509
|
{
|
|
2414
2510
|
"name": "show-value-help-icon",
|
|
@@ -2467,16 +2563,16 @@
|
|
|
2467
2563
|
"name": "value-state",
|
|
2468
2564
|
"description": "Defines the value state of the component.",
|
|
2469
2565
|
"values": [
|
|
2566
|
+
{ "name": "None" },
|
|
2470
2567
|
{ "name": "Positive" },
|
|
2471
2568
|
{ "name": "Negative" },
|
|
2472
|
-
{ "name": "None" },
|
|
2473
2569
|
{ "name": "Critical" },
|
|
2474
2570
|
{ "name": "Information" }
|
|
2475
2571
|
]
|
|
2476
2572
|
},
|
|
2477
2573
|
{
|
|
2478
2574
|
"name": "show-suggestions",
|
|
2479
|
-
"description": "Defines whether the component should show suggestions, if such are present
|
|
2575
|
+
"description": "Defines whether the component should show suggestions, if such are present.",
|
|
2480
2576
|
"values": []
|
|
2481
2577
|
},
|
|
2482
2578
|
{
|
|
@@ -2494,6 +2590,16 @@
|
|
|
2494
2590
|
"description": "Receives id(or many ids) of the elements that label the input.",
|
|
2495
2591
|
"values": []
|
|
2496
2592
|
},
|
|
2593
|
+
{
|
|
2594
|
+
"name": "accessible-description",
|
|
2595
|
+
"description": "Defines the accessible description of the component.",
|
|
2596
|
+
"values": []
|
|
2597
|
+
},
|
|
2598
|
+
{
|
|
2599
|
+
"name": "accessible-description-ref",
|
|
2600
|
+
"description": "Receives id(or many ids) of the elements that describe the input.",
|
|
2601
|
+
"values": []
|
|
2602
|
+
},
|
|
2497
2603
|
{
|
|
2498
2604
|
"name": "show-clear-icon",
|
|
2499
2605
|
"description": "Defines whether the clear icon of the input will be shown.",
|
|
@@ -2541,7 +2647,7 @@
|
|
|
2541
2647
|
},
|
|
2542
2648
|
{
|
|
2543
2649
|
"name": "ui5-option-custom",
|
|
2544
|
-
"description": "### Overview\n\nThe `ui5-option-custom` component defines a custom content of an option in the `ui5-select`.\nA component to be the same way as the standard `ui5-option`.\nThe component accepts arbitrary HTML content to allow full customization.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/OptionCustom.js\";`\n\n\n---\n\n\n\n\n### **Slots:**\n - **default** - Defines the
|
|
2650
|
+
"description": "### Overview\n\nThe `ui5-option-custom` component defines a custom content of an option in the `ui5-select`.\nA component to be the same way as the standard `ui5-option`.\nThe component accepts arbitrary HTML content to allow full customization.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/OptionCustom.js\";`\n\n\n---\n\n\n\n\n### **Slots:**\n - **default** - Defines the content of the component.",
|
|
2545
2651
|
"attributes": [
|
|
2546
2652
|
{
|
|
2547
2653
|
"name": "display-text",
|
|
@@ -2626,7 +2732,7 @@
|
|
|
2626
2732
|
},
|
|
2627
2733
|
{
|
|
2628
2734
|
"name": "ui5-popover",
|
|
2629
|
-
"description": "### Overview\n\nThe `ui5-popover` component displays additional information for an object\nin a compact way and without leaving the page.\nThe Popover can contain various UI elements, such as fields, tables, images, and charts.\nIt can also include actions in the footer.\n\n### Structure\n\nThe popover has three main areas:\n\n- Header (optional)\n- Content\n- Footer (optional)\n\n**Note:** The `ui5-popover` is closed when the user clicks\nor taps outside the popover\nor selects an action within the popover. You can prevent this with the\n`modal` property.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Popover.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **before-open** - Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening.\n- **open** - Fired after the component is opened.\n- **before-close** - Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing.\n- **close** - Fired after the component is closed.\n\n### **Methods:**\n - **applyFocus(): _Promise<void>_** - Focuses the element denoted by `initialFocus`, if provided,\nor the first focusable element otherwise.\n\n### **Slots:**\n - **header** - Defines the header HTML Element.\n- **footer** - Defines the footer HTML Element.\n\n### **CSS Parts:**\n - **header** - Used to style the header of the component\n- **content** - Used to style the content of the component\n- **footer** - Used to style the footer of the component",
|
|
2735
|
+
"description": "### Overview\n\nThe `ui5-popover` component displays additional information for an object\nin a compact way and without leaving the page.\nThe Popover can contain various UI elements, such as fields, tables, images, and charts.\nIt can also include actions in the footer.\n\n### Structure\n\nThe popover has three main areas:\n\n- Header (optional)\n- Content\n- Footer (optional)\n\n**Note:** The `ui5-popover` is closed when the user clicks\nor taps outside the popover\nor selects an action within the popover. You can prevent this with the\n`modal` property.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Popover.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **before-open** - Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening.\n- **open** - Fired after the component is opened.\n- **before-close** - Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing.\n- **close** - Fired after the component is closed.\n\n### **Methods:**\n - **applyFocus(): _Promise<void>_** - Focuses the element denoted by `initialFocus`, if provided,\nor the first focusable element otherwise.\n\n### **Slots:**\n - **header** - Defines the header HTML Element.\n- **footer** - Defines the footer HTML Element.\n- **default** - Defines the content of the Popup.\n\n### **CSS Parts:**\n - **header** - Used to style the header of the component\n- **content** - Used to style the content of the component\n- **footer** - Used to style the footer of the component",
|
|
2630
2736
|
"attributes": [
|
|
2631
2737
|
{
|
|
2632
2738
|
"name": "header-text",
|
|
@@ -2647,9 +2753,9 @@
|
|
|
2647
2753
|
"name": "horizontal-align",
|
|
2648
2754
|
"description": "Determines the horizontal alignment of the component.",
|
|
2649
2755
|
"values": [
|
|
2756
|
+
{ "name": "Center" },
|
|
2650
2757
|
{ "name": "Start" },
|
|
2651
2758
|
{ "name": "End" },
|
|
2652
|
-
{ "name": "Center" },
|
|
2653
2759
|
{ "name": "Stretch" }
|
|
2654
2760
|
]
|
|
2655
2761
|
},
|
|
@@ -2799,9 +2905,9 @@
|
|
|
2799
2905
|
"name": "value-state",
|
|
2800
2906
|
"description": "Defines the value state of the component.",
|
|
2801
2907
|
"values": [
|
|
2908
|
+
{ "name": "None" },
|
|
2802
2909
|
{ "name": "Positive" },
|
|
2803
2910
|
{ "name": "Negative" },
|
|
2804
|
-
{ "name": "None" },
|
|
2805
2911
|
{ "name": "Critical" },
|
|
2806
2912
|
{ "name": "Information" }
|
|
2807
2913
|
]
|
|
@@ -2842,9 +2948,9 @@
|
|
|
2842
2948
|
"name": "value-state",
|
|
2843
2949
|
"description": "Defines the value state of the component.",
|
|
2844
2950
|
"values": [
|
|
2951
|
+
{ "name": "None" },
|
|
2845
2952
|
{ "name": "Positive" },
|
|
2846
2953
|
{ "name": "Negative" },
|
|
2847
|
-
{ "name": "None" },
|
|
2848
2954
|
{ "name": "Critical" },
|
|
2849
2955
|
{ "name": "Information" }
|
|
2850
2956
|
]
|
|
@@ -2998,7 +3104,7 @@
|
|
|
2998
3104
|
},
|
|
2999
3105
|
{
|
|
3000
3106
|
"name": "ui5-responsive-popover",
|
|
3001
|
-
"description": "### Overview\nThe `ui5-responsive-popover` acts as a Popover on desktop and tablet, while on phone it acts as a Dialog.\nThe component improves tremendously the user experience on mobile.\n\n### Usage\nUse it when you want to make sure that all the content is visible on any device.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ResponsivePopover.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **before-open** - Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening.\n- **open** - Fired after the component is opened.\n- **before-close** - Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing.\n- **close** - Fired after the component is closed.\n\n### **Methods:**\n - **applyFocus(): _Promise<void>_** - Focuses the element denoted by `initialFocus`, if provided,\nor the first focusable element otherwise.\n\n### **CSS Parts:**\n - **header** - Used to style the header of the component\n- **content** - Used to style the content of the component\n- **footer** - Used to style the footer of the component",
|
|
3107
|
+
"description": "### Overview\nThe `ui5-responsive-popover` acts as a Popover on desktop and tablet, while on phone it acts as a Dialog.\nThe component improves tremendously the user experience on mobile.\n\n### Usage\nUse it when you want to make sure that all the content is visible on any device.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ResponsivePopover.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **before-open** - Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening.\n- **open** - Fired after the component is opened.\n- **before-close** - Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing.\n- **close** - Fired after the component is closed.\n\n### **Methods:**\n - **applyFocus(): _Promise<void>_** - Focuses the element denoted by `initialFocus`, if provided,\nor the first focusable element otherwise.\n\n### **Slots:**\n - **header** - Defines the header HTML Element.\n- **footer** - Defines the footer HTML Element.\n- **default** - Defines the content of the Popup.\n\n### **CSS Parts:**\n - **header** - Used to style the header of the component\n- **content** - Used to style the content of the component\n- **footer** - Used to style the footer of the component",
|
|
3002
3108
|
"attributes": [
|
|
3003
3109
|
{
|
|
3004
3110
|
"name": "header-text",
|
|
@@ -3019,9 +3125,9 @@
|
|
|
3019
3125
|
"name": "horizontal-align",
|
|
3020
3126
|
"description": "Determines the horizontal alignment of the component.",
|
|
3021
3127
|
"values": [
|
|
3128
|
+
{ "name": "Center" },
|
|
3022
3129
|
{ "name": "Start" },
|
|
3023
3130
|
{ "name": "End" },
|
|
3024
|
-
{ "name": "Center" },
|
|
3025
3131
|
{ "name": "Stretch" }
|
|
3026
3132
|
]
|
|
3027
3133
|
},
|
|
@@ -3158,7 +3264,7 @@
|
|
|
3158
3264
|
},
|
|
3159
3265
|
{
|
|
3160
3266
|
"name": "ui5-select",
|
|
3161
|
-
"description": "### Overview\n\nThe `ui5-select` component is used to create a drop-down list.\n\n### Usage\n\nThere are two main usages of the `ui5-select>`.\n\
|
|
3267
|
+
"description": "### Overview\n\nThe `ui5-select` component is used to create a drop-down list.\n\n### Usage\n\nThere are two main usages of the `ui5-select>`.\n\n- With Option (`ui5-option`) web component:\n\nThe available options of the Select are defined by using the Option component.\nThe Option comes with predefined design and layout, including `icon`, `text` and `additional-text`.\n\n- With OptionCustom (`ui5-option-custom`) web component.\n\nOptions with custom content are defined by using the OptionCustom component.\nThe OptionCustom component comes with no predefined layout and it expects consumers to define it.\n\n### Selection\n\nThe options can be selected via user interaction (click or with the use of the Space and Enter keys)\nand programmatically - the Select component supports two distinct selection APIs, though mixing them is not supported:\n- The \"value\" property of the Select component\n- The \"selected\" property on individual options\n\n**Note:** If the \"value\" property is set but does not match any option,\nno option will be selected and the Select component will be displayed as empty.\n\n**Note:** when both \"value\" and \"selected\" are both used (although discouraged),\nthe \"value\" property will take precedence.\n\n### Keyboard Handling\n\nThe `ui5-select` provides advanced keyboard handling.\n\n- [F4] / [Alt] + [Up] / [Alt] + [Down] / [Space] or [Enter] - Opens/closes the drop-down.\n- [Up] or [Down] - If the drop-down is closed - changes selection to the next or the previous option. If the drop-down is opened - moves focus to the next or the previous option.\n- [Space], [Enter] - If the drop-down is opened - selects the focused option.\n- [Escape] - Closes the drop-down without changing the selection.\n- [Home] - Navigates to first option\n- [End] - Navigates to the last option\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Select\";`\n\n`import \"@ui5/webcomponents/dist/Option\";`\n`import \"@ui5/webcomponents/dist/OptionCustom\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the selected option changes.\n- **live-change** - Fired when the user navigates through the options, but the selection is not finalized,\nor when pressing the ESC key to revert the current selection.\n- **open** - Fired after the component's dropdown menu opens.\n- **close** - Fired after the component's dropdown menu closes.\n\n### **Slots:**\n - **default** - Defines the component options.\n\n**Note:** Only one selected option is allowed.\nIf more than one option is defined as selected, the last one would be considered as the selected one.\n\n**Note:** Use the `ui5-option` component to define the desired options.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone.\n- **label** - Defines the HTML element that will be displayed in the component input part,\nrepresenting the selected option.\n\n**Note:** If not specified and `ui5-option-custom` is used,\neither the option's `display-text` or its textContent will be displayed.\n\n**Note:** If not specified and `ui5-option` is used,\nthe option's textContent will be displayed.\n\n### **CSS Parts:**\n - **popover** - Used to style the popover element",
|
|
3162
3268
|
"attributes": [
|
|
3163
3269
|
{
|
|
3164
3270
|
"name": "disabled",
|
|
@@ -3174,9 +3280,9 @@
|
|
|
3174
3280
|
"name": "value-state",
|
|
3175
3281
|
"description": "Defines the value state of the component.",
|
|
3176
3282
|
"values": [
|
|
3283
|
+
{ "name": "None" },
|
|
3177
3284
|
{ "name": "Positive" },
|
|
3178
3285
|
{ "name": "Negative" },
|
|
3179
|
-
{ "name": "None" },
|
|
3180
3286
|
{ "name": "Critical" },
|
|
3181
3287
|
{ "name": "Information" }
|
|
3182
3288
|
]
|
|
@@ -3201,9 +3307,14 @@
|
|
|
3201
3307
|
"description": "Receives id(or many ids) of the elements that label the select.",
|
|
3202
3308
|
"values": []
|
|
3203
3309
|
},
|
|
3310
|
+
{
|
|
3311
|
+
"name": "tooltip",
|
|
3312
|
+
"description": "Defines the tooltip of the select.",
|
|
3313
|
+
"values": []
|
|
3314
|
+
},
|
|
3204
3315
|
{
|
|
3205
3316
|
"name": "value",
|
|
3206
|
-
"description": "Defines the value of the component:\n\n- when get - returns the value of the component
|
|
3317
|
+
"description": "Defines the value of the component:\n\n- when get - returns the value of the component or the value/text content of the selected option.\n- when set - selects the option with matching `value` property or text content.\n\n**Note:** Use either the Select's value or the Options' selected property.\nMixed usage could result in unexpected behavior.\n\n**Note:** If the given value does not match any existing option,\nno option will be selected and the Select component will be displayed as empty.",
|
|
3207
3318
|
"values": [{ "name": "any" }]
|
|
3208
3319
|
},
|
|
3209
3320
|
{
|
|
@@ -3346,9 +3457,9 @@
|
|
|
3346
3457
|
"name": "type",
|
|
3347
3458
|
"description": "Defines the type of the special date.",
|
|
3348
3459
|
"values": [
|
|
3460
|
+
{ "name": "None" },
|
|
3349
3461
|
{ "name": "Today" },
|
|
3350
3462
|
{ "name": "Selected" },
|
|
3351
|
-
{ "name": "None" },
|
|
3352
3463
|
{ "name": "Working" },
|
|
3353
3464
|
{ "name": "NonWorking" },
|
|
3354
3465
|
{ "name": "Type01" },
|
|
@@ -3371,7 +3482,7 @@
|
|
|
3371
3482
|
},
|
|
3372
3483
|
{
|
|
3373
3484
|
"name": "ui5-split-button",
|
|
3374
|
-
"description": "### Overview\n\n`ui5-split-button` enables users to trigger actions. It is constructed of two separate actions -\ndefault action and arrow action that can be activated by clicking or tapping, or by\npressing certain keyboard keys - `Space` or `Enter` for default action,\nand `Arrow Down` or `Arrow Up` for arrow action.\n\n### Usage\n\n`ui5-split-button` consists two separate buttons:\n\n- for the first one (default action) you can define some `text` or an `icon`, or both.\n- the second one (arrow action) contains only `slim-arrow-down` icon.\n\nYou can choose a `design` from a set of predefined types (the same as for ui5-button) that offer\ndifferent styling to correspond to the triggered action. Both text and arrow actions have the same design.\n\nYou can set the `ui5-split-button` as enabled or disabled. Both parts of an enabled\n`ui5-split-button` can be pressed by clicking or tapping it, or by certain keys, which changes\nthe style to provide visual feedback to the user that it is pressed or hovered over with\nthe mouse cursor. A disabled `ui5-split-button` appears inactive and any of the two buttons\ncannot be pressed.\n\n### Keyboard Handling\n\n- `Space` or `Enter` - triggers the default action\n- `Shift` or `Escape` - if `Space` is pressed, releases the default action button without triggering the click event.\n- `Arrow Down`, `Arrow Up`, `Alt`+`Arrow Down`, `Alt`+`Arrow Up`, or `F4` - triggers the arrow action\nThere are separate events that are fired on activating of `ui5-split-button` parts:\n\n- `click` for the first button (default action)\n- `arrow-click` for the second button (arrow action)\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/SplitButton.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when the user clicks on the default action.\n- **arrow-click** - Fired when the user clicks on the arrow action.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design
|
|
3485
|
+
"description": "### Overview\n\n`ui5-split-button` enables users to trigger actions. It is constructed of two separate actions -\ndefault action and arrow action that can be activated by clicking or tapping, or by\npressing certain keyboard keys - `Space` or `Enter` for default action,\nand `Arrow Down` or `Arrow Up` for arrow action.\n\n### Usage\n\n`ui5-split-button` consists two separate buttons:\n\n- for the first one (default action) you can define some `text` or an `icon`, or both.\n- the second one (arrow action) contains only `slim-arrow-down` icon.\n\nYou can choose a `design` from a set of predefined types (the same as for ui5-button) that offer\ndifferent styling to correspond to the triggered action. Both text and arrow actions have the same design.\n\nYou can set the `ui5-split-button` as enabled or disabled. Both parts of an enabled\n`ui5-split-button` can be pressed by clicking or tapping it, or by certain keys, which changes\nthe style to provide visual feedback to the user that it is pressed or hovered over with\nthe mouse cursor. A disabled `ui5-split-button` appears inactive and any of the two buttons\ncannot be pressed.\n\n### Keyboard Handling\n\n- `Space` or `Enter` - triggers the default action\n- `Shift` or `Escape` - if `Space` is pressed, releases the default action button without triggering the click event.\n- `Arrow Down`, `Arrow Up`, `Alt`+`Arrow Down`, `Alt`+`Arrow Up`, or `F4` - triggers the arrow action\nThere are separate events that are fired on activating of `ui5-split-button` parts:\n\n- `click` for the first button (default action)\n- `arrow-click` for the second button (arrow action)\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/SplitButton.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when the user clicks on the default action.\n- **arrow-click** - Fired when the user clicks on the arrow action.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n\n### **CSS Parts:**\n - **button** - Used to style the native button element\n- **icon** - Used to style the icon in the native button element\n- **endIcon** - Used to style the end icon in the native button element",
|
|
3375
3486
|
"attributes": [
|
|
3376
3487
|
{
|
|
3377
3488
|
"name": "icon",
|
|
@@ -3436,9 +3547,9 @@
|
|
|
3436
3547
|
"name": "value-state",
|
|
3437
3548
|
"description": "Defines the value state of the component.",
|
|
3438
3549
|
"values": [
|
|
3550
|
+
{ "name": "None" },
|
|
3439
3551
|
{ "name": "Positive" },
|
|
3440
3552
|
{ "name": "Negative" },
|
|
3441
|
-
{ "name": "None" },
|
|
3442
3553
|
{ "name": "Critical" },
|
|
3443
3554
|
{ "name": "Information" }
|
|
3444
3555
|
]
|
|
@@ -3517,7 +3628,7 @@
|
|
|
3517
3628
|
},
|
|
3518
3629
|
{
|
|
3519
3630
|
"name": "ui5-suggestion-item-group",
|
|
3520
|
-
"description": "The `ui5-suggestion-item-group` is type of suggestion item,\nthat can be used to split the `ui5-input` suggestions into groups.\n\n\n---\n\n\n\n\n### **Events:**\n - **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\n### **Slots:**\n - **default** - Defines the items of the <code>ui5-suggestion-item-group</code
|
|
3631
|
+
"description": "The `ui5-suggestion-item-group` is type of suggestion item,\nthat can be used to split the `ui5-input` suggestions into groups.\n\n\n---\n\n\n\n\n### **Events:**\n - **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\n### **Slots:**\n - **default** - Defines the items of the <code>ui5-suggestion-item-group</code>.\n- **header** - Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten.\n\n### **CSS Parts:**\n - **header** - Used to style the header item of the group",
|
|
3521
3632
|
"attributes": [
|
|
3522
3633
|
{
|
|
3523
3634
|
"name": "header-text",
|
|
@@ -3669,6 +3780,11 @@
|
|
|
3669
3780
|
{ "name": "Translucent" }
|
|
3670
3781
|
]
|
|
3671
3782
|
},
|
|
3783
|
+
{
|
|
3784
|
+
"name": "no-auto-selection",
|
|
3785
|
+
"description": "Defines if automatic tab selection is deactivated.\n\n**Note:** By default, if none of the child tabs have the `selected` property set, the first tab will be automatically selected.\nSetting this property to `true` allows preventing this behavior.",
|
|
3786
|
+
"values": []
|
|
3787
|
+
},
|
|
3672
3788
|
{
|
|
3673
3789
|
"name": "all-items",
|
|
3674
3790
|
"description": "Returns all slotted tabs and their subTabs in a flattened array.\nThe order of tabs is depth-first.",
|
|
@@ -3685,7 +3801,7 @@
|
|
|
3685
3801
|
},
|
|
3686
3802
|
{
|
|
3687
3803
|
"name": "ui5-table",
|
|
3688
|
-
"description": "### Overview\n\nThe `ui5-table` component provides a set of sophisticated features for displaying and dealing with vast amounts of data in a responsive manner.\nTo render the `ui5-table`, you need to define the columns and rows. You can use the provided `ui5-table-header-row` and `ui5-table-row` components for this purpose.\n\n### Features\n\nThe `ui5-table` can be enhanced in its functionalities by applying different features.\nFeatures can be slotted into the `features` slot, to enable them in the component.\nFeatures need to be imported separately, as they are not enabled by default.\n\nThe following features are currently available:\n\n* [TableSelection](../TableSelection) - adds selection capabilities to the table\n* [TableGrowing](../TableGrowing) - provides growing capabilities to load more data\n\n### Keyboard Handling\n\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\nFurthermore, you can interact with `ui5-table` via the following keys:\n\nIf the focus is on a row, the following keyboard shortcuts are available:\n* <kbd>Down</kbd> - Navigates down\n* <kbd>Up</kbd> - Navigates up\n* <kbd>Right</kbd> - Selects the first cell of the row\n* <kbd>Space</kbd> - Toggles the selection of the row\n* <kbd>Ctrl/Cmd + A</kbd> - In multi selection mode, toggles the selection of all rows\n* <kbd>Home</kbd> - Navigates to the first row, if the focus is on the first row, navigates to the header row\n* <kbd>End</kbd> - Navigates to the last row, if the focus is on the last row, navigates to the growing button\n* <kbd>Page Up</kbd> - Navigates one page up, if the focus is on the first row, navigates to the header row\n* <kbd>Page Down</kbd> - Navigates one page down, if the focus is on the last row, navigates to the growing button\n* <kbd>F2</kbd> - Focuses the first tabbable element in the row\n* <kbd>F7</kbd> - If focus position is remembered, moves focus to the corresponding focus position row, otherwise to the first tabbable element within the row\n* <kbd>[Shift]Tab</kbd> - Move focus to the element in the tab chain outside the table\n\n\nIf the focus is on a cell, the following keyboard shortcuts are available:\n* <kbd>Down</kbd> - Navigates down\n* <kbd>Up</kbd> - Navigates up\n* <kbd>Right</kbd> - Navigates right\n* <kbd>Left</kbd> - Navigates left, if the focus is on the first cell of the row, the focus is moved to the row.\n* <kbd>Home</kbd> - Navigates to the first cell of the current row, if the focus is on the first cell, navigates to the corresponding row\n* <kbd>End</kbd> - Navigates to the last cell of the current row, if the focus is on the last cell, navigates to the corresponding row\n* <kbd>Page Up</kbd> - Navigates one page up while keeping the focus in same column\n* <kbd>Page Down</kbd> - Navigates one page down while keeping the focus in same column\n* <kbd>F2</kbd> - Toggles the focus between the first tabbable cell content and the cell\n* <kbd>Enter</kbd> - Focuses the first tabbable cell content\n* <kbd>F7</kbd> - If the focus is on an interactive element inside a row, moves focus to the corresponding row and remembers the focus position of the element within the row\n* <kbd>[Shift]Tab</kbd> - Move focus to the element in the tab chain outside the table\n\n\nIf the focus is on an interactive cell content, the following keyboard shortcuts are available:\n* <kbd>Down</kbd> - Move the focus to the interactive element in the same column of the previous row, unless the focused element prevents the default\n* <kbd>Up</kbd> - Move the focus to the interactive element in the same column of the next row, unless the focused element prevents the default\n* <kbd>[Shift]Tab</kbd> - Move the focus to the element in the tab chain\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Table.js\";`\\\n`import \"@ui5/webcomponents/dist/TableRow.js\";` (`ui5-table-row`)\\\n`import \"@ui5/webcomponents/dist/TableCell.js\";` (`ui5-table-cell`)\\\n`import \"@ui5/webcomponents/dist/TableHeaderRow.js\";` (`ui5-table-header-row`)\\\n`import \"@ui5/webcomponents/dist/TableHeaderCell.js\";` (`ui5-table-header-cell`)\n\n\n---\n\n\n\n\n### **Events:**\n - **row-click** - Fired when an interactive row is clicked.\n- **move-over** - Fired when a movable item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n\n**Note:** If the dragging operation is a cross-browser operation or files are moved to a potential drop target,\nthe `source` parameter will be `null`.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Notes:**\n\nThe `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\nIf the dragging operation is a cross-browser operation or files are moved to a potential drop target,\nthe `source` parameter will be `null`.\n\n### **Slots:**\n - **default** - Defines the rows of the component.\n\
|
|
3804
|
+
"description": "### Overview\n\nThe `ui5-table` component provides a set of sophisticated features for displaying and dealing with vast amounts of data in a responsive manner.\nTo render the `ui5-table`, you need to define the columns and rows. You can use the provided `ui5-table-header-row` and `ui5-table-row` components for this purpose.\n\n### Features\n\nThe `ui5-table` can be enhanced in its functionalities by applying different features.\nFeatures can be slotted into the `features` slot, to enable them in the component.\nFeatures need to be imported separately, as they are not enabled by default.\n\nThe following features are currently available:\n\n* [TableSelection](../TableSelection) - adds selection capabilities to the table\n* [TableGrowing](../TableGrowing) - provides growing capabilities to load more data\n\n### Keyboard Handling\n\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\nFurthermore, you can interact with `ui5-table` via the following keys:\n\nIf the focus is on a row, the following keyboard shortcuts are available:\n* <kbd>Down</kbd> - Navigates down\n* <kbd>Up</kbd> - Navigates up\n* <kbd>Right</kbd> - Selects the first cell of the row\n* <kbd>Space</kbd> - Toggles the selection of the row\n* <kbd>Ctrl/Cmd + A</kbd> - In multi selection mode, toggles the selection of all rows\n* <kbd>Home</kbd> - Navigates to the first row, if the focus is on the first row, navigates to the header row\n* <kbd>End</kbd> - Navigates to the last row, if the focus is on the last row, navigates to the growing button\n* <kbd>Page Up</kbd> - Navigates one page up, if the focus is on the first row, navigates to the header row\n* <kbd>Page Down</kbd> - Navigates one page down, if the focus is on the last row, navigates to the growing button\n* <kbd>F2</kbd> - Focuses the first tabbable element in the row\n* <kbd>F7</kbd> - If focus position is remembered, moves focus to the corresponding focus position row, otherwise to the first tabbable element within the row\n* <kbd>[Shift]Tab</kbd> - Move focus to the element in the tab chain outside the table\n\n\nIf the focus is on a cell, the following keyboard shortcuts are available:\n* <kbd>Down</kbd> - Navigates down\n* <kbd>Up</kbd> - Navigates up\n* <kbd>Right</kbd> - Navigates right\n* <kbd>Left</kbd> - Navigates left, if the focus is on the first cell of the row, the focus is moved to the row.\n* <kbd>Home</kbd> - Navigates to the first cell of the current row, if the focus is on the first cell, navigates to the corresponding row\n* <kbd>End</kbd> - Navigates to the last cell of the current row, if the focus is on the last cell, navigates to the corresponding row\n* <kbd>Page Up</kbd> - Navigates one page up while keeping the focus in same column\n* <kbd>Page Down</kbd> - Navigates one page down while keeping the focus in same column\n* <kbd>F2</kbd> - Toggles the focus between the first tabbable cell content and the cell\n* <kbd>Enter</kbd> - Focuses the first tabbable cell content\n* <kbd>F7</kbd> - If the focus is on an interactive element inside a row, moves focus to the corresponding row and remembers the focus position of the element within the row\n* <kbd>[Shift]Tab</kbd> - Move focus to the element in the tab chain outside the table\n\n\nIf the focus is on an interactive cell content, the following keyboard shortcuts are available:\n* <kbd>Down</kbd> - Move the focus to the interactive element in the same column of the previous row, unless the focused element prevents the default\n* <kbd>Up</kbd> - Move the focus to the interactive element in the same column of the next row, unless the focused element prevents the default\n* <kbd>[Shift]Tab</kbd> - Move the focus to the element in the tab chain\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Table.js\";`\\\n`import \"@ui5/webcomponents/dist/TableRow.js\";` (`ui5-table-row`)\\\n`import \"@ui5/webcomponents/dist/TableCell.js\";` (`ui5-table-cell`)\\\n`import \"@ui5/webcomponents/dist/TableHeaderRow.js\";` (`ui5-table-header-row`)\\\n`import \"@ui5/webcomponents/dist/TableHeaderCell.js\";` (`ui5-table-header-cell`)\n\n\n---\n\n\n\n\n### **Events:**\n - **row-click** - Fired when an interactive row is clicked.\n- **move-over** - Fired when a movable item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n\n**Note:** If the dragging operation is a cross-browser operation or files are moved to a potential drop target,\nthe `source` parameter will be `null`.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Notes:**\n\nThe `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\nIf the dragging operation is a cross-browser operation or files are moved to a potential drop target,\nthe `source` parameter will be `null`.\n- **row-action-click** - Fired when a row action is clicked.\n\n### **Slots:**\n - **default** - Defines the rows of the component.\n\n**Note:** Use `ui5-table-row` for the intended design.\n- **headerRow** - Defines the header row of the component.\n\n**Note:** Use `ui5-table-header-row` for the intended design.\n- **noData** - Defines the custom visualization if there is no data available.\n- **features** - Defines the features of the component.",
|
|
3689
3805
|
"attributes": [
|
|
3690
3806
|
{
|
|
3691
3807
|
"name": "accessible-name",
|
|
@@ -3704,33 +3820,38 @@
|
|
|
3704
3820
|
},
|
|
3705
3821
|
{
|
|
3706
3822
|
"name": "overflow-mode",
|
|
3707
|
-
"description": "Defines the mode of the <code>ui5-table</code> overflow behavior.\n\nAvailable options are:\n\n<code>Scroll</code> - Columns are shown as regular columns and horizontal scrolling is enabled.\n
|
|
3823
|
+
"description": "Defines the mode of the <code>ui5-table</code> overflow behavior.\n\nAvailable options are:\n\n<code>Scroll</code> - Columns are shown as regular columns and horizontal scrolling is enabled.\n<code>Popin</code> - Columns are shown as pop-ins instead of regular columns.",
|
|
3708
3824
|
"values": [{ "name": "Scroll" }, { "name": "Popin" }]
|
|
3709
3825
|
},
|
|
3710
3826
|
{
|
|
3711
3827
|
"name": "loading",
|
|
3712
|
-
"description": "Defines if the loading indicator should be shown.\n\n
|
|
3828
|
+
"description": "Defines if the loading indicator should be shown.\n\n**Note:** When the component is loading, it is not interactive.",
|
|
3713
3829
|
"values": []
|
|
3714
3830
|
},
|
|
3715
3831
|
{
|
|
3716
3832
|
"name": "loading-delay",
|
|
3717
3833
|
"description": "Defines the delay in milliseconds, after which the loading indicator will show up for this component.",
|
|
3718
3834
|
"values": []
|
|
3835
|
+
},
|
|
3836
|
+
{
|
|
3837
|
+
"name": "row-action-count",
|
|
3838
|
+
"description": "Defines the maximum number of row actions that is displayed, which determines the width of the row action column.\n\n**Note:** It is recommended to use a maximum of 3 row actions, as exceeding this limit may take up too much space on smaller screens.",
|
|
3839
|
+
"values": []
|
|
3719
3840
|
}
|
|
3720
3841
|
],
|
|
3721
3842
|
"references": []
|
|
3722
3843
|
},
|
|
3723
3844
|
{
|
|
3724
3845
|
"name": "ui5-table-cell",
|
|
3725
|
-
"description": "### Overview\n\nThe `ui5-table-cell` represents a cell inside of a `ui5-table`.\nIt is tightly coupled to the `ui5-table` and thus should only be used in the table component.\n\n### ES6 Module Import\n\n`import @ui5/webcomponents/dist/TableCell.js;`\n\n\n---\n\n\n",
|
|
3846
|
+
"description": "### Overview\n\nThe `ui5-table-cell` represents a cell inside of a `ui5-table`.\nIt is tightly coupled to the `ui5-table` and thus should only be used in the table component.\n\n### ES6 Module Import\n\n`import @ui5/webcomponents/dist/TableCell.js;`\n\n\n---\n\n\n\n\n### **Slots:**\n - **default** - Defines the content of the component.",
|
|
3726
3847
|
"attributes": [
|
|
3727
3848
|
{
|
|
3728
3849
|
"name": "horizontal-align",
|
|
3729
|
-
"description": "Determines the horizontal alignment of table cells
|
|
3850
|
+
"description": "Determines the horizontal alignment of table cells.",
|
|
3730
3851
|
"values": [
|
|
3852
|
+
{ "name": "Center" },
|
|
3731
3853
|
{ "name": "Start" },
|
|
3732
3854
|
{ "name": "End" },
|
|
3733
|
-
{ "name": "Center" },
|
|
3734
3855
|
{ "name": "Left" },
|
|
3735
3856
|
{ "name": "Right" }
|
|
3736
3857
|
]
|
|
@@ -3744,11 +3865,11 @@
|
|
|
3744
3865
|
"attributes": [
|
|
3745
3866
|
{
|
|
3746
3867
|
"name": "horizontal-align",
|
|
3747
|
-
"description": "Determines the horizontal alignment of table cells
|
|
3868
|
+
"description": "Determines the horizontal alignment of table cells.",
|
|
3748
3869
|
"values": [
|
|
3870
|
+
{ "name": "Center" },
|
|
3749
3871
|
{ "name": "Start" },
|
|
3750
3872
|
{ "name": "End" },
|
|
3751
|
-
{ "name": "Center" },
|
|
3752
3873
|
{ "name": "Left" },
|
|
3753
3874
|
{ "name": "Right" }
|
|
3754
3875
|
]
|
|
@@ -3758,21 +3879,21 @@
|
|
|
3758
3879
|
},
|
|
3759
3880
|
{
|
|
3760
3881
|
"name": "ui5-table-growing",
|
|
3761
|
-
"description": "### Overview\n\nThe `ui5-table-growing` component is used inside the `ui5-table` to add a growing/data loading functionalities\nto the table.\n\nThe component offers two options:\n* Button - a More button is displayed, clicking it will load more data.\n* Scroll - additional data is loaded automatically when the user scrolls to the end of the table.\n\n### Usage\n\nThe `ui5-table-growing` component is only used inside the `ui5-table` component as a feature.\nIt has to be slotted inside the `ui5-table` in the `features` slot.\nThe component is not intended to be used as a standalone component.\n\n```html\n<ui5-table>\n\t<ui5-table-growing
|
|
3882
|
+
"description": "### Overview\n\nThe `ui5-table-growing` component is used inside the `ui5-table` to add a growing/data loading functionalities\nto the table.\n\nThe component offers two options:\n* Button - a More button is displayed, clicking it will load more data.\n* Scroll - additional data is loaded automatically when the user scrolls to the end of the table.\n\n### Usage\n\nThe `ui5-table-growing` component is only used inside the `ui5-table` component as a feature.\nIt has to be slotted inside the `ui5-table` in the `features` slot.\nThe component is not intended to be used as a standalone component.\n\n```html\n<ui5-table>\n\t<ui5-table-growing mode=\"Button\" text=\"More\" slot=\"features\"></ui5-table-growing>\n</ui5-table>\n```\n\n**Notes**:\n* When the `ui5-table-growing` component is used with the `Scroll` mode and the table is currently not scrollable,\nthe component will render a growing button instead to ensure growing capabilities until the table becomes scrollable.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableGrowing.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **load-more** - Fired when the growing button is pressed or the user scrolls to the end of the table.",
|
|
3762
3883
|
"attributes": [
|
|
3763
3884
|
{
|
|
3764
|
-
"name": "
|
|
3765
|
-
"description": "Defines the mode of the <code>ui5-table</code> growing.\n\nAvailable options are:\n\nButton - Shows a More button at the bottom of the table, pressing it will load more rows.\n\nScroll - The rows are loaded automatically by scrolling to the bottom of the table. If the table is not scrollable
|
|
3885
|
+
"name": "mode",
|
|
3886
|
+
"description": "Defines the mode of the <code>ui5-table</code> growing.\n\nAvailable options are:\n\nButton - Shows a More button at the bottom of the table, pressing it will load more rows.\n\nScroll - The rows are loaded automatically by scrolling to the bottom of the table. If the table is not scrollable,\na growing button will be rendered instead to ensure growing functionality.",
|
|
3766
3887
|
"values": [{ "name": "Button" }, { "name": "Scroll" }]
|
|
3767
3888
|
},
|
|
3768
3889
|
{
|
|
3769
|
-
"name": "
|
|
3770
|
-
"description": "Defines the text that will be displayed inside the growing button.\nHas no effect when
|
|
3890
|
+
"name": "text",
|
|
3891
|
+
"description": "Defines the text that will be displayed inside the growing button.\nHas no effect when mode is set to `Scroll`.\n\n**Note:** When not provided and the mode is set to Button, a default text is displayed, corresponding to the\ncurrent language.",
|
|
3771
3892
|
"values": []
|
|
3772
3893
|
},
|
|
3773
3894
|
{
|
|
3774
|
-
"name": "
|
|
3775
|
-
"description": "Defines the text that will be displayed below the `
|
|
3895
|
+
"name": "subtext",
|
|
3896
|
+
"description": "Defines the text that will be displayed below the `text` inside the growing button.\nHas no effect when mode is set to Scroll.",
|
|
3776
3897
|
"values": []
|
|
3777
3898
|
}
|
|
3778
3899
|
],
|
|
@@ -3780,35 +3901,49 @@
|
|
|
3780
3901
|
},
|
|
3781
3902
|
{
|
|
3782
3903
|
"name": "ui5-table-header-cell",
|
|
3783
|
-
"description": "### Overview\n\nThe `ui5-table-header-cell` component represents a column in the `ui5-table`.\n\nAs it is tightly coupled to the `ui5-table`, it should only be used in the `ui5-table-header-row`\nto ensure correct layout and design.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableHeaderCell.js\";`\n\n\n---\n\n\n",
|
|
3904
|
+
"description": "### Overview\n\nThe `ui5-table-header-cell` component represents a column in the `ui5-table`.\n\nAs it is tightly coupled to the `ui5-table`, it should only be used in the `ui5-table-header-row`\nto ensure correct layout and design.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableHeaderCell.js\";`\n\n\n---\n\n\n\n\n### **Slots:**\n - **action** - Defines the action of the column.\n\n**Note:** While multiple actions are technically possible, this is not supported.\n- **default** - Defines the content of the component.",
|
|
3784
3905
|
"attributes": [
|
|
3785
3906
|
{
|
|
3786
3907
|
"name": "width",
|
|
3787
|
-
"description": "Defines the width of column.",
|
|
3908
|
+
"description": "Defines the width of the column.\n\nBy default, the column will grow and shrink according to the available space.\nThis will distribute the space proportionally among all columns with no specific width set.\n\nSee [\\<length\\>](https://developer.mozilla.org/en-US/docs/Web/CSS/length) and\n[\\<percentage\\>](https://developer.mozilla.org/en-US/docs/Web/CSS/percentage) for possible width values.",
|
|
3788
3909
|
"values": []
|
|
3789
3910
|
},
|
|
3790
3911
|
{
|
|
3791
3912
|
"name": "min-width",
|
|
3792
|
-
"description": "Defines the minimum width of the column.\n\nIf the table is in `Popin` mode and the minimum width does not fit anymore,\nthe column will move into the popin.\n\
|
|
3913
|
+
"description": "Defines the minimum width of the column.\n\nIf the table is in `Popin` mode and the minimum width does not fit anymore,\nthe column will move into the popin.\n\nBy default, the table prevents the column from becoming too small.\nChanging this value to a small value might lead to accessibility issues.\n\n**Note:** This property only takes effect for columns with a [\\<percentage\\>](https://developer.mozilla.org/en-US/docs/Web/CSS/percentage) value\nor the default width.",
|
|
3793
3914
|
"values": []
|
|
3794
3915
|
},
|
|
3795
3916
|
{
|
|
3796
|
-
"name": "
|
|
3797
|
-
"description": "Defines the
|
|
3917
|
+
"name": "importance",
|
|
3918
|
+
"description": "Defines the importance of the column.\n\nThis property affects the popin behaviour.\nColumns with higher importance will move into the popin area later then less important\ncolumns.",
|
|
3798
3919
|
"values": []
|
|
3799
3920
|
},
|
|
3800
3921
|
{
|
|
3801
|
-
"name": "
|
|
3802
|
-
"description": "
|
|
3922
|
+
"name": "popin-text",
|
|
3923
|
+
"description": "The text for the column when it pops in.",
|
|
3924
|
+
"values": []
|
|
3925
|
+
},
|
|
3926
|
+
{
|
|
3927
|
+
"name": "sort-indicator",
|
|
3928
|
+
"description": "Defines the sort indicator of the column.",
|
|
3929
|
+
"values": [
|
|
3930
|
+
{ "name": "None" },
|
|
3931
|
+
{ "name": "Ascending" },
|
|
3932
|
+
{ "name": "Descending" }
|
|
3933
|
+
]
|
|
3934
|
+
},
|
|
3935
|
+
{
|
|
3936
|
+
"name": "popin-hidden",
|
|
3937
|
+
"description": "Defines if the column is hidden in the popin.\n\n**Note:** Please be aware that hiding the column in the popin might lead to accessibility issues as\nusers might not be able to access the content of the column on small screens.",
|
|
3803
3938
|
"values": []
|
|
3804
3939
|
},
|
|
3805
3940
|
{
|
|
3806
3941
|
"name": "horizontal-align",
|
|
3807
|
-
"description": "Determines the horizontal alignment of table cells
|
|
3942
|
+
"description": "Determines the horizontal alignment of table cells.",
|
|
3808
3943
|
"values": [
|
|
3944
|
+
{ "name": "Center" },
|
|
3809
3945
|
{ "name": "Start" },
|
|
3810
3946
|
{ "name": "End" },
|
|
3811
|
-
{ "name": "Center" },
|
|
3812
3947
|
{ "name": "Left" },
|
|
3813
3948
|
{ "name": "Right" }
|
|
3814
3949
|
]
|
|
@@ -3816,6 +3951,18 @@
|
|
|
3816
3951
|
],
|
|
3817
3952
|
"references": []
|
|
3818
3953
|
},
|
|
3954
|
+
{
|
|
3955
|
+
"name": "ui5-table-header-cell-action-ai",
|
|
3956
|
+
"description": "### Overview\n\nThe `ui5-table-header-cell-action-ai` component defines a dedicated AI action for the table column.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableHeaderCellActionAI.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when a header cell action is clicked.",
|
|
3957
|
+
"attributes": [],
|
|
3958
|
+
"references": []
|
|
3959
|
+
},
|
|
3960
|
+
{
|
|
3961
|
+
"name": "table-header-cell-action-base",
|
|
3962
|
+
"description": "The `TableHeaderCellActionBase` class serves as a foundation for table header cell actions.\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when a header cell action is clicked.",
|
|
3963
|
+
"attributes": [],
|
|
3964
|
+
"references": []
|
|
3965
|
+
},
|
|
3819
3966
|
{
|
|
3820
3967
|
"name": "ui5-table-header-row",
|
|
3821
3968
|
"description": "### Overview\n\nThe `ui5-table-header-row` component represents the table headers of a `ui5-table`.\n\nIt is tightly coupled to the `ui5-table` and should therefore be used in the `ui5-table` only.\nThe header row is placed in the `headerRow` slot of the table.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableHeaderRow.js\";`\n\n\n---\n\n\n\n\n### **Slots:**\n - **default** - Defines the cells of the component.\n\n**Note:** Use `ui5-table-header-cell` for the intended design.",
|
|
@@ -3830,16 +3977,16 @@
|
|
|
3830
3977
|
},
|
|
3831
3978
|
{
|
|
3832
3979
|
"name": "ui5-table-row",
|
|
3833
|
-
"description": "### Overview\n\nThe `ui5-table-row` component represents a row in the `ui5-table`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableRow.js\";`\n\n\n---\n\n\n\n\n### **Slots:**\n - **default** - Defines the cells of the component.\n\n**Note:** Use `ui5-table-cell` for the intended design.",
|
|
3980
|
+
"description": "### Overview\n\nThe `ui5-table-row` component represents a row in the `ui5-table`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableRow.js\";`\n\n\n---\n\n\n\n\n### **Slots:**\n - **default** - Defines the cells of the component.\n\n**Note:** Use `ui5-table-cell` for the intended design.\n- **actions** - Defines the actions of the component.\n\n**Note:** Use `ui5-table-row-action` or `ui5-table-row-action-navigation` for the intended design.",
|
|
3834
3981
|
"attributes": [
|
|
3835
3982
|
{
|
|
3836
3983
|
"name": "row-key",
|
|
3837
|
-
"description": "Unique identifier of the row.",
|
|
3984
|
+
"description": "Unique identifier of the row.\n\n**Note:** For selection features to work properly, this property is mandatory, and its value must not contain spaces.",
|
|
3838
3985
|
"values": []
|
|
3839
3986
|
},
|
|
3840
3987
|
{
|
|
3841
3988
|
"name": "position",
|
|
3842
|
-
"description": "Defines the position of the row
|
|
3989
|
+
"description": "Defines the position of the row related to the total number of rows within the table when the `ui5-table-virtualizer` feature is used.",
|
|
3843
3990
|
"values": []
|
|
3844
3991
|
},
|
|
3845
3992
|
{
|
|
@@ -3860,6 +4007,57 @@
|
|
|
3860
4007
|
],
|
|
3861
4008
|
"references": []
|
|
3862
4009
|
},
|
|
4010
|
+
{
|
|
4011
|
+
"name": "ui5-table-row-action",
|
|
4012
|
+
"description": "### Overview\n\nThe `ui5-table-row-action` component defines an action for table rows.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableRowAction.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when a row action is clicked.",
|
|
4013
|
+
"attributes": [
|
|
4014
|
+
{
|
|
4015
|
+
"name": "icon",
|
|
4016
|
+
"description": "Defines the icon of the row action.\n\n**Note:** For row actions to work properly, this property is mandatory.\n\n**Note:** SAP-icons font provides numerous built-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
|
|
4017
|
+
"values": []
|
|
4018
|
+
},
|
|
4019
|
+
{
|
|
4020
|
+
"name": "text",
|
|
4021
|
+
"description": "Defines the text of the row action.\n\n**Note:** For row actions to work properly, this property is mandatory.",
|
|
4022
|
+
"values": []
|
|
4023
|
+
},
|
|
4024
|
+
{
|
|
4025
|
+
"name": "invisible",
|
|
4026
|
+
"description": "Defines the visibility of the row action.\n\n**Note:** Invisible row actions still take up space, allowing to hide the action while maintaining its position.",
|
|
4027
|
+
"values": []
|
|
4028
|
+
}
|
|
4029
|
+
],
|
|
4030
|
+
"references": []
|
|
4031
|
+
},
|
|
4032
|
+
{
|
|
4033
|
+
"name": "table-row-action-base",
|
|
4034
|
+
"description": "The `TableRowActionBase` class serves as a foundation for table row actions.\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when a row action is clicked.",
|
|
4035
|
+
"attributes": [
|
|
4036
|
+
{
|
|
4037
|
+
"name": "invisible",
|
|
4038
|
+
"description": "Defines the visibility of the row action.\n\n**Note:** Invisible row actions still take up space, allowing to hide the action while maintaining its position.",
|
|
4039
|
+
"values": []
|
|
4040
|
+
}
|
|
4041
|
+
],
|
|
4042
|
+
"references": []
|
|
4043
|
+
},
|
|
4044
|
+
{
|
|
4045
|
+
"name": "ui5-table-row-action-navigation",
|
|
4046
|
+
"description": "### Overview\n\nThe `ui5-table-row-action-navigation` component defines a navigation action for table rows.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableRowActionNavigation.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when a row action is clicked.",
|
|
4047
|
+
"attributes": [
|
|
4048
|
+
{
|
|
4049
|
+
"name": "interactive",
|
|
4050
|
+
"description": "Defines the interactive state of the navigation action.",
|
|
4051
|
+
"values": []
|
|
4052
|
+
},
|
|
4053
|
+
{
|
|
4054
|
+
"name": "invisible",
|
|
4055
|
+
"description": "Defines the visibility of the row action.\n\n**Note:** Invisible row actions still take up space, allowing to hide the action while maintaining its position.",
|
|
4056
|
+
"values": []
|
|
4057
|
+
}
|
|
4058
|
+
],
|
|
4059
|
+
"references": []
|
|
4060
|
+
},
|
|
3863
4061
|
{
|
|
3864
4062
|
"name": "table-row-base",
|
|
3865
4063
|
"description": "A class to serve as a foundation for the `TableRow` and `TableHeaderRow` classes.\n\n\n---\n\n\n",
|
|
@@ -3868,15 +4066,15 @@
|
|
|
3868
4066
|
},
|
|
3869
4067
|
{
|
|
3870
4068
|
"name": "ui5-table-selection",
|
|
3871
|
-
"description": "### Overview\n\nThe `ui5-table-selection` component is used inside the `ui5-table`
|
|
4069
|
+
"description": "### Overview\n\nThe `ui5-table-selection` component is used inside the `ui5-table` to add key-based selection capabilities to the `ui5-table`.\n\nThe component offers three selection modes:\n* Single - select a single row.\n* Multiple - select multiple rows.\n* None - no selection active.\n\nAs the selection is key-based, `ui5-table-row` components need to define a unique `row-key` property.\n\n### Usage\n\nThe `ui5-table-selection` component is only used inside the `ui5-table` component as a feature.\nIt has to be slotted inside the `ui5-table` in the `features` slot.\nThe component is not intended to be used as a standalone component.\n\n```html\n<ui5-table>\n\t<ui5-table-selection mode=\"Multiple\" slot=\"features\"></ui5-table-selection>\n</ui5-table>\n```\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableSelection.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the selection is changed by user interaction.",
|
|
3872
4070
|
"attributes": [
|
|
3873
4071
|
{
|
|
3874
4072
|
"name": "mode",
|
|
3875
4073
|
"description": "Defines the selection mode.",
|
|
3876
4074
|
"values": [
|
|
4075
|
+
{ "name": "None" },
|
|
3877
4076
|
{ "name": "Single" },
|
|
3878
|
-
{ "name": "Multiple" }
|
|
3879
|
-
{ "name": "None" }
|
|
4077
|
+
{ "name": "Multiple" }
|
|
3880
4078
|
]
|
|
3881
4079
|
},
|
|
3882
4080
|
{
|
|
@@ -3887,18 +4085,54 @@
|
|
|
3887
4085
|
],
|
|
3888
4086
|
"references": []
|
|
3889
4087
|
},
|
|
4088
|
+
{
|
|
4089
|
+
"name": "table-selection-base",
|
|
4090
|
+
"description": "The `TableSelectionBase` class serves as a foundation for table selections.\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the selection is changed by user interaction.\n\n### **Methods:**\n - **getRowByKey(rowKey: _string_): _TableRow | undefined_** - Returns the table row instance for the given row key.",
|
|
4091
|
+
"attributes": [
|
|
4092
|
+
{
|
|
4093
|
+
"name": "selected",
|
|
4094
|
+
"description": "Defines the selected elements of the component.",
|
|
4095
|
+
"values": []
|
|
4096
|
+
}
|
|
4097
|
+
],
|
|
4098
|
+
"references": []
|
|
4099
|
+
},
|
|
4100
|
+
{
|
|
4101
|
+
"name": "ui5-table-selection-multi",
|
|
4102
|
+
"description": "### Overview\n\nThe `ui5-table-selection-multi` component is used inside the `ui5-table` to add multi-selection capabilities to the `ui5-table`.\nSince selection is key-based, each `ui5-table-row` must define a unique `row-key` property.\n\n### Usage\n\nThe `ui5-table-selection-multi` component is a feature designed exclusively for use within the `ui5-table` component.\nIt must be placed inside the `features` slot of `ui5-table`.\nThis component is not intended for standalone use.\n\n```html\n<ui5-table>\n\t<ui5-table-selection-multi slot=\"features\" selected=\"Row1 Row3\"></ui5-table-selection-multi>\n</ui5-table>\n```\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableSelectionMulti.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the selection is changed by user interaction.\n\n### **Methods:**\n - **getSelectedRows(): _Array<TableRow>_** - Returns an array of the selected rows.\n- **getSelectedAsSet(): _Set<string>_** - Returns the `selected` property as a set of unique `row-key` values.\n- **setSelectedAsSet(selectedSet: _Set<string>_): _void_** - Sets the `selected` property using the provided set of unique `row-key` values.\n- **getRowByKey(rowKey: _string_): _TableRow | undefined_** - Returns the table row instance for the given row key.",
|
|
4103
|
+
"attributes": [
|
|
4104
|
+
{
|
|
4105
|
+
"name": "selected",
|
|
4106
|
+
"description": "Defines the `row-key` values of selected rows, with each value separated by a space.",
|
|
4107
|
+
"values": []
|
|
4108
|
+
}
|
|
4109
|
+
],
|
|
4110
|
+
"references": []
|
|
4111
|
+
},
|
|
4112
|
+
{
|
|
4113
|
+
"name": "ui5-table-selection-single",
|
|
4114
|
+
"description": "### Overview\n\nThe `ui5-table-selection-single` component is used inside the `ui5-table` to add single selection capabilities to the `ui5-table`.\nSince selection is key-based, each `ui5-table-row` must define a unique `row-key` property.\n\n### Usage\n\nThe `ui5-table-selection-single` component is a feature designed exclusively for use within the `ui5-table` component.\nIt must be placed inside the `features` slot of `ui5-table`.\nThis component is not intended for standalone use.\n\n```html\n<ui5-table>\n\t<ui5-table-selection-single slot=\"features\" selected=\"Row1\"></ui5-table-selection-single>\n</ui5-table>\n```\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableSelectionSingle.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **change** - Fired when the selection is changed by user interaction.\n\n### **Methods:**\n - **getSelectedRow(): _TableRow | undefined_** - Returns the selected row.\n- **getRowByKey(rowKey: _string_): _TableRow | undefined_** - Returns the table row instance for the given row key.",
|
|
4115
|
+
"attributes": [
|
|
4116
|
+
{
|
|
4117
|
+
"name": "selected",
|
|
4118
|
+
"description": "Defines the `row-key` value of the selected row.",
|
|
4119
|
+
"values": []
|
|
4120
|
+
}
|
|
4121
|
+
],
|
|
4122
|
+
"references": []
|
|
4123
|
+
},
|
|
3890
4124
|
{
|
|
3891
4125
|
"name": "ui5-table-virtualizer",
|
|
3892
4126
|
"description": "### Overview\n\nThe `ui5-table-virtualizer` component is used inside the `ui5-table` to virtualize the table rows, if the `overflowMode` property of the table is set to 'Scroll'.\nIt is responsible for rendering only the rows that are visible in the viewport and updating them on scroll.\nThis allows large numbers of rows to exist, but maintain high performance by only paying the cost for those that are currently visible.\n\n**Note:** The maximum number of virtualized rows is limited by browser constraints, specifically the maximum supported height for a DOM element.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/TableVirtualizer.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **range-change** - Fired when the virtualizer is changed by user interaction e.g. on scrolling.\n\n### **Methods:**\n - **reset(): _void_** - Resets the virtualizer to its initial state and triggers the `range-change` event.",
|
|
3893
4127
|
"attributes": [
|
|
3894
4128
|
{
|
|
3895
4129
|
"name": "row-height",
|
|
3896
|
-
"description": "Defines the height of the rows in the table.\n\n**Note:**
|
|
4130
|
+
"description": "Defines the height of the rows in the table.\n\n**Note:** For virtualization to work properly, this property is mandatory.",
|
|
3897
4131
|
"values": []
|
|
3898
4132
|
},
|
|
3899
4133
|
{
|
|
3900
4134
|
"name": "row-count",
|
|
3901
|
-
"description": "Defines the total count of rows in the table.\n\n**Note:**
|
|
4135
|
+
"description": "Defines the total count of rows in the table.\n\n**Note:** For virtualization to work properly, this property is mandatory.",
|
|
3902
4136
|
"values": []
|
|
3903
4137
|
},
|
|
3904
4138
|
{
|
|
@@ -3911,7 +4145,7 @@
|
|
|
3911
4145
|
},
|
|
3912
4146
|
{
|
|
3913
4147
|
"name": "ui5-tag",
|
|
3914
|
-
"description": "### Overview\n\nThe `ui5-tag` is a component which serves\nthe purpose to attract the user attention to some piece\nof information (state, quantity, condition, etc.).\nIt can contain icon and text information, and its design can be chosen from specific design types.\n\n### Usage Guidelines\n\n- If the text is longer than the width of the component, it can wrap, or it can show ellipsis, depending on the `wrappingType` property.\n- Colors can be semantic or not semantic.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Tag.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when the user clicks on an interactive tag.\n\n**Note:** The event will be fired if the `interactive` property is `true`\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n- **icon** - Defines the icon to be displayed in the component.",
|
|
4148
|
+
"description": "### Overview\n\nThe `ui5-tag` is a component which serves\nthe purpose to attract the user attention to some piece\nof information (state, quantity, condition, etc.).\nIt can contain icon and text information, and its design can be chosen from specific design types.\n\n### Usage Guidelines\n\n- If the text is longer than the width of the component, it can wrap, or it can show ellipsis, depending on the `wrappingType` property.\n- Colors can be semantic or not semantic.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Tag.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when the user clicks on an interactive tag.\n\n**Note:** The event will be fired if the `interactive` property is `true`\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n- **icon** - Defines the icon to be displayed in the component.\n\n### **CSS Parts:**\n - **root** - Used to style the root element.",
|
|
3915
4149
|
"attributes": [
|
|
3916
4150
|
{
|
|
3917
4151
|
"name": "design",
|
|
@@ -4004,9 +4238,9 @@
|
|
|
4004
4238
|
"name": "value-state",
|
|
4005
4239
|
"description": "Defines the value state of the component.\n\n**Note:** If `maxlength` property is set,\nthe component turns into \"Critical\" state once the characters exceeds the limit.\nIn this case, only the \"Negative\" state is considered and can be applied.",
|
|
4006
4240
|
"values": [
|
|
4241
|
+
{ "name": "None" },
|
|
4007
4242
|
{ "name": "Positive" },
|
|
4008
4243
|
{ "name": "Negative" },
|
|
4009
|
-
{ "name": "None" },
|
|
4010
4244
|
{ "name": "Critical" },
|
|
4011
4245
|
{ "name": "Information" }
|
|
4012
4246
|
]
|
|
@@ -4072,9 +4306,9 @@
|
|
|
4072
4306
|
"name": "value-state",
|
|
4073
4307
|
"description": "Defines the value state of the component.",
|
|
4074
4308
|
"values": [
|
|
4309
|
+
{ "name": "None" },
|
|
4075
4310
|
{ "name": "Positive" },
|
|
4076
4311
|
{ "name": "Negative" },
|
|
4077
|
-
{ "name": "None" },
|
|
4078
4312
|
{ "name": "Critical" },
|
|
4079
4313
|
{ "name": "Information" }
|
|
4080
4314
|
]
|
|
@@ -4197,7 +4431,7 @@
|
|
|
4197
4431
|
},
|
|
4198
4432
|
{
|
|
4199
4433
|
"name": "ui5-toggle-button",
|
|
4200
|
-
"description": "### Overview\n\nThe `ui5-toggle-button` component is an enhanced `ui5-button`\nthat can be toggled between pressed and normal states.\nUsers can use the `ui5-toggle-button` as a switch to turn a setting on or off.\nIt can also be used to represent an independent choice similar to a check box.\n\nClicking or tapping on a `ui5-toggle-button` changes its state to `pressed`. The button returns to\nits initial state when the user clicks or taps on it again.\nBy applying additional custom CSS-styling classes, apps can give a different style to any `ui5-toggle-button`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ToggleButton.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **
|
|
4434
|
+
"description": "### Overview\n\nThe `ui5-toggle-button` component is an enhanced `ui5-button`\nthat can be toggled between pressed and normal states.\nUsers can use the `ui5-toggle-button` as a switch to turn a setting on or off.\nIt can also be used to represent an independent choice similar to a check box.\n\nClicking or tapping on a `ui5-toggle-button` changes its state to `pressed`. The button returns to\nits initial state when the user clicks or taps on it again.\nBy applying additional custom CSS-styling classes, apps can give a different style to any `ui5-toggle-button`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ToggleButton.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n- **badge** - Adds a badge to the button.\n\n### **CSS Parts:**\n - **button** - Used to style the native button element\n- **icon** - Used to style the icon in the native button element\n- **endIcon** - Used to style the end icon in the native button element",
|
|
4201
4435
|
"attributes": [
|
|
4202
4436
|
{
|
|
4203
4437
|
"name": "pressed",
|
|
@@ -4297,7 +4531,7 @@
|
|
|
4297
4531
|
},
|
|
4298
4532
|
{
|
|
4299
4533
|
"name": "ui5-tokenizer",
|
|
4300
|
-
"description": "### Overview\n\nA `ui5-tokenizer` is an invisible container for `ui5-token`s that supports keyboard navigation and token selection.\n\nThe `ui5-tokenizer` consists of two parts:\n- Tokens - displays the available tokens.\n- N-more indicator - contains the number of the remaining tokens that cannot be displayed due to the limited space.\n\n### Keyboard Handling\n\n#### Basic Navigation\nThe `ui5-tokenizer` provides advanced keyboard handling.\nWhen a token is focused the user can use the following keyboard\nshortcuts in order to perform a navigation:\n\n- [Left] or [Right] / [Up] or [Down] - Navigates left and right through the tokens.\n- [Home] - Navigates to the first token.\n- [End] - Navigates to the last token.\n\nThe user can use the following keyboard shortcuts to perform actions (such as select, delete):\n\n- [Space] - Selects a token.\n- [Backspace] / [Delete] - Deletes a token.\n**Note:** The deletion of a token is handled by the application with the use of the `token-delete` event.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Tokenizer.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **token-delete** - Fired when tokens are being deleted (delete icon, delete or backspace is pressed)\n- **selection-change** - Fired when token selection is changed by user interaction",
|
|
4534
|
+
"description": "### Overview\n\nA `ui5-tokenizer` is an invisible container for `ui5-token`s that supports keyboard navigation and token selection.\n\nThe `ui5-tokenizer` consists of two parts:\n- Tokens - displays the available tokens.\n- N-more indicator - contains the number of the remaining tokens that cannot be displayed due to the limited space.\n\n### Keyboard Handling\n\n#### Basic Navigation\nThe `ui5-tokenizer` provides advanced keyboard handling.\nWhen a token is focused the user can use the following keyboard\nshortcuts in order to perform a navigation:\n\n- [Left] or [Right] / [Up] or [Down] - Navigates left and right through the tokens.\n- [Home] - Navigates to the first token.\n- [End] - Navigates to the last token.\n\nThe user can use the following keyboard shortcuts to perform actions (such as select, delete):\n\n- [Space] - Selects a token.\n- [Backspace] / [Delete] - Deletes a token.\n**Note:** The deletion of a token is handled by the application with the use of the `token-delete` event.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Tokenizer.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **token-delete** - Fired when tokens are being deleted (delete icon, delete or backspace is pressed)\n- **selection-change** - Fired when token selection is changed by user interaction\n\n### **Slots:**\n - **default** - Defines the tokens to be displayed.",
|
|
4301
4535
|
"attributes": [
|
|
4302
4536
|
{
|
|
4303
4537
|
"name": "readonly",
|
|
@@ -4467,9 +4701,9 @@
|
|
|
4467
4701
|
"name": "value-state",
|
|
4468
4702
|
"description": "Defines the value state of the component.",
|
|
4469
4703
|
"values": [
|
|
4704
|
+
{ "name": "None" },
|
|
4470
4705
|
{ "name": "Positive" },
|
|
4471
4706
|
{ "name": "Negative" },
|
|
4472
|
-
{ "name": "None" },
|
|
4473
4707
|
{ "name": "Critical" },
|
|
4474
4708
|
{ "name": "Information" }
|
|
4475
4709
|
]
|
|
@@ -4573,9 +4807,9 @@
|
|
|
4573
4807
|
"name": "selection-mode",
|
|
4574
4808
|
"description": "Defines the selection mode of the component. Since the tree uses a `ui5-list` to display its structure,\nthe tree modes are exactly the same as the list modes, and are all applicable.",
|
|
4575
4809
|
"values": [
|
|
4810
|
+
{ "name": "None" },
|
|
4576
4811
|
{ "name": "Single" },
|
|
4577
4812
|
{ "name": "Multiple" },
|
|
4578
|
-
{ "name": "None" },
|
|
4579
4813
|
{ "name": "SingleStart" },
|
|
4580
4814
|
{ "name": "SingleEnd" },
|
|
4581
4815
|
{ "name": "SingleAuto" },
|
|
@@ -4622,7 +4856,7 @@
|
|
|
4622
4856
|
},
|
|
4623
4857
|
{
|
|
4624
4858
|
"name": "ui5-tree-item",
|
|
4625
|
-
"description": "### Overview\nThe `ui5-tree-item` represents a node in a tree structure, shown as a `ui5-list`.\n\nThis is the item to use inside a `ui5-tree`.\nYou can represent an arbitrary tree structure by recursively nesting tree items.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/TreeItem.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Methods:**\n - **toggle(): _void_** - Call this method to manually switch the `expanded` state of a tree item.\n\n### **CSS Parts:**\n - **title** - Used to style the title of the tree list item\n- **additionalText** - Used to style the additionalText of the tree list item\n- **icon** - Used to style the icon of the tree list item",
|
|
4859
|
+
"description": "### Overview\nThe `ui5-tree-item` represents a node in a tree structure, shown as a `ui5-list`.\n\nThis is the item to use inside a `ui5-tree`.\nYou can represent an arbitrary tree structure by recursively nesting tree items.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/TreeItem.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Methods:**\n - **toggle(): _void_** - Call this method to manually switch the `expanded` state of a tree item.\n\n### **Slots:**\n - **default** - Defines the items of the component.\n\n**Note:** Use `ui5-tree-item` or `ui5-tree-item-custom`\n- **image** - **Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with size XS.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-tree-item` should be customized in order to fit.\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.\n\n### **CSS Parts:**\n - **title** - Used to style the title of the tree list item\n- **additionalText** - Used to style the additionalText of the tree list item\n- **icon** - Used to style the icon of the tree list item",
|
|
4626
4860
|
"attributes": [
|
|
4627
4861
|
{
|
|
4628
4862
|
"name": "text",
|
|
@@ -4663,9 +4897,9 @@
|
|
|
4663
4897
|
"name": "additional-text-state",
|
|
4664
4898
|
"description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
4665
4899
|
"values": [
|
|
4900
|
+
{ "name": "None" },
|
|
4666
4901
|
{ "name": "Positive" },
|
|
4667
4902
|
{ "name": "Negative" },
|
|
4668
|
-
{ "name": "None" },
|
|
4669
4903
|
{ "name": "Critical" },
|
|
4670
4904
|
{ "name": "Information" }
|
|
4671
4905
|
]
|
|
@@ -4704,9 +4938,9 @@
|
|
|
4704
4938
|
"name": "highlight",
|
|
4705
4939
|
"description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
4706
4940
|
"values": [
|
|
4941
|
+
{ "name": "None" },
|
|
4707
4942
|
{ "name": "Positive" },
|
|
4708
4943
|
{ "name": "Negative" },
|
|
4709
|
-
{ "name": "None" },
|
|
4710
4944
|
{ "name": "Critical" },
|
|
4711
4945
|
{ "name": "Information" }
|
|
4712
4946
|
]
|
|
@@ -4721,7 +4955,7 @@
|
|
|
4721
4955
|
},
|
|
4722
4956
|
{
|
|
4723
4957
|
"name": "tree-item-base",
|
|
4724
|
-
"description": "A class to serve as a foundation\nfor the `TreeItem` and `TreeItemCustom` classes.\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Methods:**\n - **toggle(): _void_** - Call this method to manually switch the `expanded` state of a tree item.\n\n### **Slots:**\n - **default** - Defines the items of the component.\n\n**Note:** Use `ui5-tree-item` or `ui5-tree-item-custom`",
|
|
4958
|
+
"description": "A class to serve as a foundation\nfor the `TreeItem` and `TreeItemCustom` classes.\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Methods:**\n - **toggle(): _void_** - Call this method to manually switch the `expanded` state of a tree item.\n\n### **Slots:**\n - **default** - Defines the items of the component.\n\n**Note:** Use `ui5-tree-item` or `ui5-tree-item-custom`\n- **image** - **Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with size XS.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-tree-item` should be customized in order to fit.\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.",
|
|
4725
4959
|
"attributes": [
|
|
4726
4960
|
{
|
|
4727
4961
|
"name": "icon",
|
|
@@ -4752,9 +4986,9 @@
|
|
|
4752
4986
|
"name": "additional-text-state",
|
|
4753
4987
|
"description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
4754
4988
|
"values": [
|
|
4989
|
+
{ "name": "None" },
|
|
4755
4990
|
{ "name": "Positive" },
|
|
4756
4991
|
{ "name": "Negative" },
|
|
4757
|
-
{ "name": "None" },
|
|
4758
4992
|
{ "name": "Critical" },
|
|
4759
4993
|
{ "name": "Information" }
|
|
4760
4994
|
]
|
|
@@ -4793,9 +5027,9 @@
|
|
|
4793
5027
|
"name": "highlight",
|
|
4794
5028
|
"description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
4795
5029
|
"values": [
|
|
5030
|
+
{ "name": "None" },
|
|
4796
5031
|
{ "name": "Positive" },
|
|
4797
5032
|
{ "name": "Negative" },
|
|
4798
|
-
{ "name": "None" },
|
|
4799
5033
|
{ "name": "Critical" },
|
|
4800
5034
|
{ "name": "Information" }
|
|
4801
5035
|
]
|
|
@@ -4810,7 +5044,7 @@
|
|
|
4810
5044
|
},
|
|
4811
5045
|
{
|
|
4812
5046
|
"name": "ui5-tree-item-custom",
|
|
4813
|
-
"description": "The `ui5-tree-item-custom` represents a node in a tree structure, shown as a `ui5-list`.\n\nThis is the item to use inside a `ui5-tree`.\nYou can represent an arbitrary tree structure by recursively nesting tree items.\n\nYou can use this item to put any custom content inside the tree item.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/TreeItemCustom.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Methods:**\n - **toggle(): _void_** - Call this method to manually switch the `expanded` state of a tree item.\n\n### **Slots:**\n - **content** - Defines the content of the `ui5-tree-item`.\n\n### **CSS Parts:**\n - **title** - Used to style the title of the tree list item\n- **additionalText** - Used to style the additionalText of the tree list item\n- **icon** - Used to style the icon of the tree list item",
|
|
5047
|
+
"description": "The `ui5-tree-item-custom` represents a node in a tree structure, shown as a `ui5-list`.\n\nThis is the item to use inside a `ui5-tree`.\nYou can represent an arbitrary tree structure by recursively nesting tree items.\n\nYou can use this item to put any custom content inside the tree item.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/TreeItemCustom.js\";`\n\n\n---\n\n\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Methods:**\n - **toggle(): _void_** - Call this method to manually switch the `expanded` state of a tree item.\n\n### **Slots:**\n - **content** - Defines the content of the `ui5-tree-item`.\n- **default** - Defines the items of the component.\n\n**Note:** Use `ui5-tree-item` or `ui5-tree-item-custom`\n- **image** - **Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with size XS.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-tree-item` should be customized in order to fit.\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.\n\n### **CSS Parts:**\n - **title** - Used to style the title of the tree list item\n- **additionalText** - Used to style the additionalText of the tree list item\n- **icon** - Used to style the icon of the tree list item",
|
|
4814
5048
|
"attributes": [
|
|
4815
5049
|
{
|
|
4816
5050
|
"name": "hide-selection-element",
|
|
@@ -4846,9 +5080,9 @@
|
|
|
4846
5080
|
"name": "additional-text-state",
|
|
4847
5081
|
"description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
4848
5082
|
"values": [
|
|
5083
|
+
{ "name": "None" },
|
|
4849
5084
|
{ "name": "Positive" },
|
|
4850
5085
|
{ "name": "Negative" },
|
|
4851
|
-
{ "name": "None" },
|
|
4852
5086
|
{ "name": "Critical" },
|
|
4853
5087
|
{ "name": "Information" }
|
|
4854
5088
|
]
|
|
@@ -4887,9 +5121,9 @@
|
|
|
4887
5121
|
"name": "highlight",
|
|
4888
5122
|
"description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
|
|
4889
5123
|
"values": [
|
|
5124
|
+
{ "name": "None" },
|
|
4890
5125
|
{ "name": "Positive" },
|
|
4891
5126
|
{ "name": "Negative" },
|
|
4892
|
-
{ "name": "None" },
|
|
4893
5127
|
{ "name": "Critical" },
|
|
4894
5128
|
{ "name": "Information" }
|
|
4895
5129
|
]
|