@ui5/webcomponents 2.4.1-rc.0 → 2.5.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +38 -0
- package/cypress/specs/ColorPicker.cy.ts +27 -0
- package/cypress/specs/Form.cy.ts +491 -44
- package/cypress/specs/LitKeyFunction.cy.ts +23 -16
- package/cypress/specs/TableGrowing.cy.ts +358 -0
- package/cypress/specs/Tokenizer.cy.ts +114 -0
- package/cypress/specs/Toolbar.cy.ts +51 -0
- package/cypress/specs/Tree.cy.ts +29 -0
- package/cypress/specs/base/{AriaLabelHelper.cy.ts → AccessibilityTextsHelper.cy.ts} +37 -1
- package/cypress/specs/base/Events.cy.ts +1 -2
- package/cypress/support/commands.ts +1 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/Button.js +1 -1
- package/dist/Button.js.map +1 -1
- package/dist/Card.js +1 -1
- package/dist/Card.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/Carousel.js +1 -1
- package/dist/Carousel.js.map +1 -1
- package/dist/CheckBox.js +1 -1
- package/dist/CheckBox.js.map +1 -1
- package/dist/ColorPicker.d.ts +9 -0
- package/dist/ColorPicker.js +14 -0
- package/dist/ColorPicker.js.map +1 -1
- package/dist/ComboBox.d.ts +0 -1
- package/dist/ComboBox.js +11 -13
- package/dist/ComboBox.js.map +1 -1
- package/dist/ComboBoxItem.d.ts +11 -5
- package/dist/ComboBoxItem.js +21 -8
- package/dist/ComboBoxItem.js.map +1 -1
- package/dist/ComboBoxItemGroup.d.ts +5 -20
- package/dist/ComboBoxItemGroup.js +9 -26
- package/dist/ComboBoxItemGroup.js.map +1 -1
- package/dist/DatePicker.js +1 -1
- package/dist/DatePicker.js.map +1 -1
- package/dist/Dialog.d.ts +4 -5
- package/dist/Dialog.js +4 -5
- package/dist/Dialog.js.map +1 -1
- package/dist/Form.d.ts +46 -2
- package/dist/Form.js +75 -1
- package/dist/Form.js.map +1 -1
- package/dist/FormGroup.js +4 -1
- package/dist/FormGroup.js.map +1 -1
- package/dist/Input.js +1 -1
- package/dist/Input.js.map +1 -1
- package/dist/Link.js +1 -1
- package/dist/Link.js.map +1 -1
- package/dist/List.d.ts +27 -1
- package/dist/List.js +29 -5
- package/dist/List.js.map +1 -1
- package/dist/MultiComboBox.d.ts +1 -4
- package/dist/MultiComboBox.js +46 -37
- package/dist/MultiComboBox.js.map +1 -1
- package/dist/MultiComboBoxItem.d.ts +5 -1
- package/dist/MultiComboBoxItem.js +34 -4
- package/dist/MultiComboBoxItem.js.map +1 -1
- package/dist/MultiComboBoxItemGroup.d.ts +5 -10
- package/dist/MultiComboBoxItemGroup.js +12 -9
- package/dist/MultiComboBoxItemGroup.js.map +1 -1
- package/dist/Popover.js +4 -3
- package/dist/Popover.js.map +1 -1
- package/dist/Popup.js +1 -1
- package/dist/Popup.js.map +1 -1
- package/dist/RadioButton.js +1 -1
- package/dist/RadioButton.js.map +1 -1
- package/dist/RatingIndicator.js +1 -1
- package/dist/RatingIndicator.js.map +1 -1
- package/dist/SegmentedButtonItem.js +1 -1
- package/dist/SegmentedButtonItem.js.map +1 -1
- package/dist/Select.js +1 -1
- package/dist/Select.js.map +1 -1
- package/dist/SliderBase.js +2 -2
- package/dist/SliderBase.js.map +1 -1
- package/dist/StepInput.js +1 -1
- package/dist/StepInput.js.map +1 -1
- package/dist/Switch.js +1 -1
- package/dist/Switch.js.map +1 -1
- package/dist/Table.js +1 -1
- package/dist/Table.js.map +1 -1
- package/dist/TableGrowing.d.ts +5 -0
- package/dist/TableGrowing.js +21 -12
- package/dist/TableGrowing.js.map +1 -1
- package/dist/TextArea.js +1 -1
- package/dist/TextArea.js.map +1 -1
- package/dist/TimePicker.js +1 -1
- package/dist/TimePicker.js.map +1 -1
- package/dist/Tokenizer.d.ts +23 -2
- package/dist/Tokenizer.js +72 -15
- package/dist/Tokenizer.js.map +1 -1
- package/dist/Toolbar.js +1 -1
- package/dist/Toolbar.js.map +1 -1
- package/dist/ToolbarSpacer.js +2 -2
- package/dist/ToolbarSpacer.js.map +1 -1
- package/dist/Tree.d.ts +14 -1
- package/dist/Tree.js +6 -4
- package/dist/Tree.js.map +1 -1
- 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/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 -0
- package/dist/css/themes/DatePicker.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/FormLabelSpan.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/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 -0
- package/dist/css/themes/MultiComboBoxPopover.css +1 -1
- package/dist/css/themes/MultiInput.css +1 -1
- package/dist/css/themes/NavigationMenu.css +1 -1
- package/dist/css/themes/NavigationMenuItem.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/TableCellBase.css +1 -1
- package/dist/css/themes/TableHeaderRow.css +1 -1
- package/dist/css/themes/TableRow.css +1 -1
- 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/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/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_dark_exp/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_horizon_hcb_exp/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
- package/dist/css/themes/sap_horizon_hcw_exp/parameters-bundle.css +1 -1
- package/dist/custom-elements-internal.json +503 -62
- package/dist/custom-elements.json +363 -43
- package/dist/generated/assets/i18n/messagebundle_en.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/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_dark_exp/parameters-bundle.css.json +1 -1
- package/dist/generated/assets/themes/sap_horizon_exp/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_hcb_exp/parameters-bundle.css.json +1 -1
- package/dist/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json +1 -1
- package/dist/generated/assets/themes/sap_horizon_hcw_exp/parameters-bundle.css.json +1 -1
- package/dist/generated/i18n/i18n-defaults.d.ts +2 -1
- package/dist/generated/i18n/i18n-defaults.js +2 -1
- package/dist/generated/i18n/i18n-defaults.js.map +1 -1
- package/dist/generated/templates/ColorPickerTemplate.lit.js +3 -1
- package/dist/generated/templates/ColorPickerTemplate.lit.js.map +1 -1
- package/dist/generated/templates/ComboBoxItemGroupTemplate.lit.d.ts +4 -0
- package/dist/generated/templates/ComboBoxItemGroupTemplate.lit.js +10 -0
- package/dist/generated/templates/ComboBoxItemGroupTemplate.lit.js.map +1 -0
- package/dist/generated/templates/ComboBoxItemTemplate.lit.d.ts +4 -0
- package/dist/generated/templates/ComboBoxItemTemplate.lit.js +6 -0
- package/dist/generated/templates/ComboBoxItemTemplate.lit.js.map +1 -0
- package/dist/generated/templates/ComboBoxPopoverTemplate.lit.js +6 -11
- package/dist/generated/templates/ComboBoxPopoverTemplate.lit.js.map +1 -1
- package/dist/generated/templates/ComboBoxTemplate.lit.js +6 -11
- package/dist/generated/templates/ComboBoxTemplate.lit.js.map +1 -1
- package/dist/generated/templates/FormTemplate.lit.js +3 -3
- package/dist/generated/templates/FormTemplate.lit.js.map +1 -1
- package/dist/generated/templates/ListTemplate.lit.js +1 -1
- package/dist/generated/templates/ListTemplate.lit.js.map +1 -1
- package/dist/generated/templates/MultiComboBoxItemGroupTemplate.lit.d.ts +4 -0
- package/dist/generated/templates/MultiComboBoxItemGroupTemplate.lit.js +10 -0
- package/dist/generated/templates/MultiComboBoxItemGroupTemplate.lit.js.map +1 -0
- package/dist/generated/templates/MultiComboBoxItemTemplate.lit.d.ts +4 -0
- package/dist/generated/templates/MultiComboBoxItemTemplate.lit.js +6 -0
- package/dist/generated/templates/MultiComboBoxItemTemplate.lit.js.map +1 -0
- package/dist/generated/templates/MultiComboBoxPopoverTemplate.lit.js +11 -19
- package/dist/generated/templates/MultiComboBoxPopoverTemplate.lit.js.map +1 -1
- package/dist/generated/templates/MultiComboBoxTemplate.lit.js +11 -19
- package/dist/generated/templates/MultiComboBoxTemplate.lit.js.map +1 -1
- package/dist/generated/templates/TokenizerTemplate.lit.js +7 -6
- package/dist/generated/templates/TokenizerTemplate.lit.js.map +1 -1
- package/dist/generated/templates/TreeTemplate.lit.js +1 -1
- package/dist/generated/templates/TreeTemplate.lit.js.map +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.js +1 -1
- package/dist/generated/themes/AvatarGroup.css.js.map +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.js +1 -1
- package/dist/generated/themes/Breadcrumbs.css.js.map +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.js +1 -1
- package/dist/generated/themes/Button.css.js.map +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.js +1 -1
- package/dist/generated/themes/CalendarHeader.css.js.map +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.js +1 -1
- package/dist/generated/themes/CalendarLegendItem.css.js.map +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.js +1 -1
- package/dist/generated/themes/CardHeader.css.js.map +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.js +1 -1
- package/dist/generated/themes/CheckBox.css.js.map +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.js +1 -1
- package/dist/generated/themes/ColorPaletteItem.css.js.map +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.js +1 -1
- package/dist/generated/themes/ColorPicker.css.js.map +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 +3 -0
- package/dist/generated/themes/ComboBoxItem.css.js +9 -0
- package/dist/generated/themes/ComboBoxItem.css.js.map +1 -0
- package/dist/generated/themes/DatePicker.css.js +1 -1
- package/dist/generated/themes/DatePicker.css.js.map +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.js +1 -1
- package/dist/generated/themes/DayPicker.css.js.map +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.js +1 -1
- package/dist/generated/themes/FileUploader.css.js.map +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.js +1 -1
- package/dist/generated/themes/FormItem.css.js.map +1 -1
- package/dist/generated/themes/FormLabelSpan.css.js +1 -1
- package/dist/generated/themes/FormLabelSpan.css.js.map +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.js +1 -1
- package/dist/generated/themes/Icon.css.js.map +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.js +1 -1
- package/dist/generated/themes/InputIcon.css.js.map +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/Link.css.js +1 -1
- package/dist/generated/themes/Link.css.js.map +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.js +1 -1
- package/dist/generated/themes/ListItem.css.js.map +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.js +1 -1
- package/dist/generated/themes/ListItemCustom.css.js.map +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.js +1 -1
- package/dist/generated/themes/ListItemGroupHeader.css.js.map +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.js +1 -1
- package/dist/generated/themes/Menu.css.js.map +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.js +1 -1
- package/dist/generated/themes/MessageStrip.css.js.map +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.js +1 -1
- package/dist/generated/themes/MultiComboBox.css.js.map +1 -1
- package/dist/generated/themes/MultiComboBoxItem.css.d.ts +3 -0
- package/dist/generated/themes/MultiComboBoxItem.css.js +9 -0
- package/dist/generated/themes/MultiComboBoxItem.css.js.map +1 -0
- 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.js +1 -1
- package/dist/generated/themes/MultiInput.css.js.map +1 -1
- package/dist/generated/themes/NavigationMenu.css.js +1 -1
- package/dist/generated/themes/NavigationMenu.css.js.map +1 -1
- package/dist/generated/themes/NavigationMenuItem.css.js +1 -1
- package/dist/generated/themes/NavigationMenuItem.css.js.map +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.js +1 -1
- package/dist/generated/themes/Panel.css.js.map +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.js +1 -1
- package/dist/generated/themes/PopupsCommon.css.js.map +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.js +1 -1
- package/dist/generated/themes/RadioButton.css.js.map +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.js +1 -1
- package/dist/generated/themes/RatingIndicator.css.js.map +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.js +1 -1
- package/dist/generated/themes/ResponsivePopoverCommon.css.js.map +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.js +1 -1
- package/dist/generated/themes/SegmentedButtonItem.css.js.map +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.js +1 -1
- package/dist/generated/themes/SliderBase.css.js.map +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.js +1 -1
- package/dist/generated/themes/StepInput.css.js.map +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.js +1 -1
- package/dist/generated/themes/SuggestionItemCustom.css.js.map +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.js +1 -1
- package/dist/generated/themes/TabContainer.css.js.map +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.js +1 -1
- package/dist/generated/themes/TabInStrip.css.js.map +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.js +1 -1
- package/dist/generated/themes/TabSeparatorInOverflow.css.js.map +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/TableCellBase.css.js +1 -1
- package/dist/generated/themes/TableCellBase.css.js.map +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.js +1 -1
- package/dist/generated/themes/TableRow.css.js.map +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.js +1 -1
- package/dist/generated/themes/Tag.css.js.map +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.js +1 -1
- package/dist/generated/themes/TextArea.css.js.map +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/Toast.css.js +1 -1
- package/dist/generated/themes/Toast.css.js.map +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.js +1 -1
- package/dist/generated/themes/Token.css.js.map +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.js +1 -1
- package/dist/generated/themes/TokenizerPopover.css.js.map +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.js +1 -1
- package/dist/generated/themes/ToolbarPopover.css.js.map +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.js +1 -1
- package/dist/generated/themes/ValueStateMessage.css.js.map +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.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.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.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.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.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.js +1 -1
- package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.js.map +1 -1
- package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.js.map +1 -1
- package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.js.map +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_hcb_exp/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_horizon_hcb_exp/parameters-bundle.css.js.map +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/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.js +1 -1
- package/dist/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.js.map +1 -1
- package/dist/types/ColorPickerDisplayMode.d.ts +17 -0
- package/dist/types/ColorPickerDisplayMode.js +19 -0
- package/dist/types/ColorPickerDisplayMode.js.map +1 -0
- package/dist/vscode.html-custom-data.json +59 -9
- package/dist/web-types.json +158 -19
- package/package.json +10 -10
- package/src/ColorPicker.hbs +60 -56
- package/src/ComboBoxItem.hbs +18 -0
- package/src/ComboBoxItemGroup.hbs +9 -0
- package/src/ComboBoxPopover.hbs +2 -31
- package/src/Form.hbs +3 -3
- package/src/List.hbs +1 -0
- package/src/ListItemGroup.hbs +11 -4
- package/src/MultiComboBox.hbs +10 -12
- package/src/MultiComboBoxItem.hbs +19 -0
- package/src/MultiComboBoxItemGroup.hbs +9 -0
- package/src/MultiComboBoxPopover.hbs +5 -36
- package/src/Tokenizer.hbs +28 -17
- package/src/Tree.hbs +4 -1
- package/src/i18n/messagebundle.properties +3 -0
- package/src/i18n/messagebundle_en.properties +2 -0
- package/src/i18n/messagebundle_en_US_sappsd.properties +2 -0
- package/src/i18n/messagebundle_en_US_saprigi.properties +2 -0
- package/src/themes/ComboBoxItem.css +14 -0
- package/src/themes/Dialog.css +1 -0
- package/src/themes/FormItem.css +31 -1
- package/src/themes/MultiComboBoxItem.css +19 -0
- package/src/themes/MultiComboBoxPopover.css +5 -1
- package/src/themes/Table.css +1 -4
- package/src/themes/Tokenizer.css +45 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComboBoxPopoverTemplate.lit.js","sourceRoot":"","sources":["../../../src/generated/templates/ComboBoxPopoverTemplate.lit.ts"],"names":[],"mappings":"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","sourcesContent":["/* eslint no-unused-vars: 0 */\nimport { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\nimport type UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\ntype ComboBoxPopover = any;\nimport type { ClassMapValue } from \"@ui5/webcomponents-base/dist/types.js\";\n\t\nfunction block0 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-responsive-popover\", tags, suffix)} class=\"${classMap(this.classes.popover as ClassMapValue)}\" tabindex=\"-1\" hide-arrow prevent-focus-restore prevent-initial-focus placement=\"Bottom\" horizontal-align=\"Start\" style=\"${styleMap(this.styles.suggestionsPopover)}\" @ui5-before-open=\"${ifDefined(this._beforeOpenPopover)}\" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name=\"${ifDefined(this._popupLabel)}\" id=\"${ifDefined(this.responsivePopoverId)}\" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><${scopeTag(\"ui5-busy-indicator\", tags, suffix)} ?active=${this.loading} class=\"ui5-combobox-busy\"></${scopeTag(\"ui5-busy-indicator\", tags, suffix)}>${ this._isPhone ? block1.call(this, context, tags, suffix) : undefined }${ !this._isPhone ? block7.call(this, context, tags, suffix) : undefined }<${scopeTag(\"ui5-list\", tags, suffix)} accessible-role=\"ListBox\" class=\"ui5-combobox-items-list\" separators=\"None\" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode=\"Single\">${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block12.call(this, context, tags, suffix, item, index)) }</${scopeTag(\"ui5-list\", tags, suffix)}>${ this._isPhone ? block18.call(this, context, tags, suffix) : undefined }</${scopeTag(\"ui5-responsive-popover\", tags, suffix)}>${ this.shouldOpenValueStateMessagePopover ? block19.call(this, context, tags, suffix) : undefined } ` : html`<ui5-responsive-popover class=\"${classMap(this.classes.popover as ClassMapValue)}\" tabindex=\"-1\" hide-arrow prevent-focus-restore prevent-initial-focus placement=\"Bottom\" horizontal-align=\"Start\" style=\"${styleMap(this.styles.suggestionsPopover)}\" @ui5-before-open=\"${ifDefined(this._beforeOpenPopover)}\" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name=\"${ifDefined(this._popupLabel)}\" id=\"${ifDefined(this.responsivePopoverId)}\" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><ui5-busy-indicator ?active=${this.loading} class=\"ui5-combobox-busy\"></ui5-busy-indicator>${ this._isPhone ? block1.call(this, context, tags, suffix) : undefined }${ !this._isPhone ? block7.call(this, context, tags, suffix) : undefined }<ui5-list accessible-role=\"ListBox\" class=\"ui5-combobox-items-list\" separators=\"None\" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode=\"Single\">${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block12.call(this, context, tags, suffix, item, index)) }</ui5-list>${ this._isPhone ? block18.call(this, context, tags, suffix) : undefined }</ui5-responsive-popover>${ this.shouldOpenValueStateMessagePopover ? block19.call(this, context, tags, suffix) : undefined } `;}\nfunction block1 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"header\" class=\"ui5-responsive-popover-header\"><div class=\"row\"><span>${ifDefined(this._headerTitleText)}</span><${scopeTag(\"ui5-button\", tags, suffix)} class=\"ui5-responsive-popover-close-btn\" icon=\"decline\" design=\"Transparent\" @click=\"${this._closeRespPopover}\"></${scopeTag(\"ui5-button\", tags, suffix)}></div><div class=\"row\"><${scopeTag(\"ui5-input\", tags, suffix)} @keydown=\"${this._handleMobileKeydown}\" @ui5-input=\"${ifDefined(this._handleMobileInput)}\" @ui5-change=\"${ifDefined(this._inputChange)}\" placeholder=\"${ifDefined(this.placeholder)}\" value-state=\"${ifDefined(this.valueState)}\" ?show-clear-icon=\"${this.showClearIcon}\" ?no-typeahead=\"${this.noTypeahead}\" .open=${ifDefined(this.openOnMobile)}>${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block2.call(this, context, tags, suffix, item, index)) }</${scopeTag(\"ui5-input\", tags, suffix)}></div></div>${ this.hasValueStateText ? block3.call(this, context, tags, suffix) : undefined }` : html`<div slot=\"header\" class=\"ui5-responsive-popover-header\"><div class=\"row\"><span>${ifDefined(this._headerTitleText)}</span><ui5-button class=\"ui5-responsive-popover-close-btn\" icon=\"decline\" design=\"Transparent\" @click=\"${this._closeRespPopover}\"></ui5-button></div><div class=\"row\"><ui5-input @keydown=\"${this._handleMobileKeydown}\" @ui5-input=\"${ifDefined(this._handleMobileInput)}\" @ui5-change=\"${ifDefined(this._inputChange)}\" placeholder=\"${ifDefined(this.placeholder)}\" value-state=\"${ifDefined(this.valueState)}\" ?show-clear-icon=\"${this.showClearIcon}\" ?no-typeahead=\"${this.noTypeahead}\" .open=${ifDefined(this.openOnMobile)}>${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block2.call(this, context, tags, suffix, item, index)) }</ui5-input></div></div>${ this.hasValueStateText ? block3.call(this, context, tags, suffix) : undefined }`;}\nfunction block2 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<${scopeTag(\"ui5-suggestion-item\", tags, suffix)} text=\"${ifDefined(item.text)}\" additional-text=\"${ifDefined(item.additionalText)}\"></${scopeTag(\"ui5-suggestion-item\", tags, suffix)}>` : html`<ui5-suggestion-item text=\"${ifDefined(item.text)}\" additional-text=\"${ifDefined(item.additionalText)}\"></ui5-suggestion-item>`;}\nfunction block3 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverValueStateMessage)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.open ? block4.call(this, context, tags, suffix) : undefined }</div>` : html`<div class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverValueStateMessage)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.open ? block4.call(this, context, tags, suffix) : undefined }</div>`;}\nfunction block4 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.shouldDisplayDefaultValueStateMessage ? block5.call(this, context, tags, suffix) : block6.call(this, context, tags, suffix) }`;}\nfunction block5 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block6 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\nfunction block7 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.hasValueStateText ? block8.call(this, context, tags, suffix) : undefined }`;}\nfunction block8 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"header\" class=\"ui5-responsive-popover-header ${classMap(this.classes.popoverValueState as ClassMapValue)}\" ?focused=${this._isValueStateFocused} style=\"${styleMap(this.styles.suggestionPopoverHeader)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.open ? block9.call(this, context, tags, suffix) : undefined }</div>` : html`<div slot=\"header\" class=\"ui5-responsive-popover-header ${classMap(this.classes.popoverValueState as ClassMapValue)}\" ?focused=${this._isValueStateFocused} style=\"${styleMap(this.styles.suggestionPopoverHeader)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.open ? block9.call(this, context, tags, suffix) : undefined }</div>`;}\nfunction block9 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.shouldDisplayDefaultValueStateMessage ? block10.call(this, context, tags, suffix) : block11.call(this, context, tags, suffix) }`;}\nfunction block10 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block11 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\nfunction block12 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`${ item.isGroupItem ? block13.call(this, context, tags, suffix, item, index) : block17.call(this, context, tags, suffix, item, index) }`;}\nfunction block13 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`${ item._isVisible ? block14.call(this, context, tags, suffix, item, index) : undefined }`;}\nfunction block14 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<${scopeTag(\"ui5-li-group\", tags, suffix)} header-text=\"${ifDefined(item.headerText)}\" ?focused=${item.focused}>${ repeat(item.items, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block15.call(this, context, tags, suffix, item, index)) }</${scopeTag(\"ui5-li-group\", tags, suffix)}>` : html`<ui5-li-group header-text=\"${ifDefined(item.headerText)}\" ?focused=${item.focused}>${ repeat(item.items, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block15.call(this, context, tags, suffix, item, index)) }</ui5-li-group>`;}\nfunction block15 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`${ item._isVisible ? block16.call(this, context, tags, suffix, item, index) : undefined }`;}\nfunction block16 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<${scopeTag(\"ui5-li\", tags, suffix)} accessible-role=\"Option\" type=\"Active\" wrapping-type=\"Normal\" additional-text=${ifDefined(item.additionalText)} group-name=${ifDefined(item.groupName)} .mappedItem=${ifDefined(item)} ?selected=${item.selected} ?focused=${item.focused} data-ui5-stable=\"${ifDefined(item.stableDomRef)}\">${ifDefined(item.text)}</${scopeTag(\"ui5-li\", tags, suffix)}>` : html`<ui5-li accessible-role=\"Option\" type=\"Active\" wrapping-type=\"Normal\" additional-text=${ifDefined(item.additionalText)} group-name=${ifDefined(item.groupName)} .mappedItem=${ifDefined(item)} ?selected=${item.selected} ?focused=${item.focused} data-ui5-stable=\"${ifDefined(item.stableDomRef)}\">${ifDefined(item.text)}</ui5-li>`;}\nfunction block17 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<${scopeTag(\"ui5-li\", tags, suffix)} accessible-role=\"Option\" type=\"Active\" wrapping-type=\"Normal\" additional-text=${ifDefined(item.additionalText)} group-name=${ifDefined(item.groupName)} .mappedItem=${ifDefined(item)} ?selected=${item.selected} ?focused=${item.focused} data-ui5-stable=\"${ifDefined(item.stableDomRef)}\">${ifDefined(item.text)}</${scopeTag(\"ui5-li\", tags, suffix)}>` : html`<ui5-li accessible-role=\"Option\" type=\"Active\" wrapping-type=\"Normal\" additional-text=${ifDefined(item.additionalText)} group-name=${ifDefined(item.groupName)} .mappedItem=${ifDefined(item)} ?selected=${item.selected} ?focused=${item.focused} data-ui5-stable=\"${ifDefined(item.stableDomRef)}\">${ifDefined(item.text)}</ui5-li>`;}\nfunction block18 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"footer\" class=\"ui5-responsive-popover-footer\"><${scopeTag(\"ui5-button\", tags, suffix)} design=\"Transparent\" @click=\"${this._closeRespPopover}\">OK</${scopeTag(\"ui5-button\", tags, suffix)}></div>` : html`<div slot=\"footer\" class=\"ui5-responsive-popover-footer\"><ui5-button design=\"Transparent\" @click=\"${this._closeRespPopover}\">OK</ui5-button></div>`;}\nfunction block19 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-popover\", tags, suffix)} skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex=\"-1\" class=\"ui5-valuestatemessage-popover\" horizontal-align=\"${ifDefined(this._valueStatePopoverHorizontalAlign)}\" placement=\"Bottom\" .opener=\"${ifDefined(this)}\" .open=\"${ifDefined(this.valueStateOpen)}\" @ui5-close=\"${ifDefined(this._handleValueStatePopoverAfterClose)}\" @focusout=${this._handleValueStatePopoverFocusout}><div slot=\"header\" class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverHeader)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.shouldDisplayDefaultValueStateMessage ? block20.call(this, context, tags, suffix) : block21.call(this, context, tags, suffix) }</div></${scopeTag(\"ui5-popover\", tags, suffix)}>` : html`<ui5-popover skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex=\"-1\" class=\"ui5-valuestatemessage-popover\" horizontal-align=\"${ifDefined(this._valueStatePopoverHorizontalAlign)}\" placement=\"Bottom\" .opener=\"${ifDefined(this)}\" .open=\"${ifDefined(this.valueStateOpen)}\" @ui5-close=\"${ifDefined(this._handleValueStatePopoverAfterClose)}\" @focusout=${this._handleValueStatePopoverFocusout}><div slot=\"header\" class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverHeader)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.shouldDisplayDefaultValueStateMessage ? block20.call(this, context, tags, suffix) : block21.call(this, context, tags, suffix) }</div></ui5-popover>`;}\nfunction block20 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block21 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\n\n\nexport default block0;"]}
|
|
1
|
+
{"version":3,"file":"ComboBoxPopoverTemplate.lit.js","sourceRoot":"","sources":["../../../src/generated/templates/ComboBoxPopoverTemplate.lit.ts"],"names":[],"mappings":"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","sourcesContent":["/* eslint no-unused-vars: 0 */\nimport { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\nimport type UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\ntype ComboBoxPopover = any;\nimport type { ClassMapValue } from \"@ui5/webcomponents-base/dist/types.js\";\n\t\nfunction block0 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-responsive-popover\", tags, suffix)} class=\"${classMap(this.classes.popover as ClassMapValue)}\" tabindex=\"-1\" hide-arrow prevent-focus-restore prevent-initial-focus placement=\"Bottom\" horizontal-align=\"Start\" style=\"${styleMap(this.styles.suggestionsPopover)}\" @ui5-before-open=\"${ifDefined(this._beforeOpenPopover)}\" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name=\"${ifDefined(this._popupLabel)}\" id=\"${ifDefined(this.responsivePopoverId)}\" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><${scopeTag(\"ui5-busy-indicator\", tags, suffix)} ?active=${this.loading} class=\"ui5-combobox-busy\"></${scopeTag(\"ui5-busy-indicator\", tags, suffix)}>${ this._isPhone ? block1.call(this, context, tags, suffix) : undefined }${ !this._isPhone ? block7.call(this, context, tags, suffix) : undefined }<${scopeTag(\"ui5-list\", tags, suffix)} accessible-role=\"ListBox\" class=\"ui5-combobox-items-list\" separators=\"None\" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode=\"Single\">${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block12.call(this, context, tags, suffix, item, index)) }</${scopeTag(\"ui5-list\", tags, suffix)}>${ this._isPhone ? block13.call(this, context, tags, suffix) : undefined }</${scopeTag(\"ui5-responsive-popover\", tags, suffix)}>${ this.shouldOpenValueStateMessagePopover ? block14.call(this, context, tags, suffix) : undefined }` : html`<ui5-responsive-popover class=\"${classMap(this.classes.popover as ClassMapValue)}\" tabindex=\"-1\" hide-arrow prevent-focus-restore prevent-initial-focus placement=\"Bottom\" horizontal-align=\"Start\" style=\"${styleMap(this.styles.suggestionsPopover)}\" @ui5-before-open=\"${ifDefined(this._beforeOpenPopover)}\" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name=\"${ifDefined(this._popupLabel)}\" id=\"${ifDefined(this.responsivePopoverId)}\" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><ui5-busy-indicator ?active=${this.loading} class=\"ui5-combobox-busy\"></ui5-busy-indicator>${ this._isPhone ? block1.call(this, context, tags, suffix) : undefined }${ !this._isPhone ? block7.call(this, context, tags, suffix) : undefined }<ui5-list accessible-role=\"ListBox\" class=\"ui5-combobox-items-list\" separators=\"None\" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode=\"Single\">${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block12.call(this, context, tags, suffix, item, index)) }</ui5-list>${ this._isPhone ? block13.call(this, context, tags, suffix) : undefined }</ui5-responsive-popover>${ this.shouldOpenValueStateMessagePopover ? block14.call(this, context, tags, suffix) : undefined }`;}\nfunction block1 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"header\" class=\"ui5-responsive-popover-header\"><div class=\"row\"><span>${ifDefined(this._headerTitleText)}</span><${scopeTag(\"ui5-button\", tags, suffix)} class=\"ui5-responsive-popover-close-btn\" icon=\"decline\" design=\"Transparent\" @click=\"${this._closeRespPopover}\"></${scopeTag(\"ui5-button\", tags, suffix)}></div><div class=\"row\"><${scopeTag(\"ui5-input\", tags, suffix)} @keydown=\"${this._handleMobileKeydown}\" @ui5-input=\"${ifDefined(this._handleMobileInput)}\" @ui5-change=\"${ifDefined(this._inputChange)}\" placeholder=\"${ifDefined(this.placeholder)}\" value-state=\"${ifDefined(this.valueState)}\" ?show-clear-icon=\"${this.showClearIcon}\" ?no-typeahead=\"${this.noTypeahead}\" .open=${ifDefined(this.openOnMobile)}>${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block2.call(this, context, tags, suffix, item, index)) }</${scopeTag(\"ui5-input\", tags, suffix)}></div></div>${ this.hasValueStateText ? block3.call(this, context, tags, suffix) : undefined }` : html`<div slot=\"header\" class=\"ui5-responsive-popover-header\"><div class=\"row\"><span>${ifDefined(this._headerTitleText)}</span><ui5-button class=\"ui5-responsive-popover-close-btn\" icon=\"decline\" design=\"Transparent\" @click=\"${this._closeRespPopover}\"></ui5-button></div><div class=\"row\"><ui5-input @keydown=\"${this._handleMobileKeydown}\" @ui5-input=\"${ifDefined(this._handleMobileInput)}\" @ui5-change=\"${ifDefined(this._inputChange)}\" placeholder=\"${ifDefined(this.placeholder)}\" value-state=\"${ifDefined(this.valueState)}\" ?show-clear-icon=\"${this.showClearIcon}\" ?no-typeahead=\"${this.noTypeahead}\" .open=${ifDefined(this.openOnMobile)}>${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block2.call(this, context, tags, suffix, item, index)) }</ui5-input></div></div>${ this.hasValueStateText ? block3.call(this, context, tags, suffix) : undefined }`;}\nfunction block2 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<${scopeTag(\"ui5-suggestion-item\", tags, suffix)} text=\"${ifDefined(item.text)}\" additional-text=\"${ifDefined(item.additionalText)}\"></${scopeTag(\"ui5-suggestion-item\", tags, suffix)}>` : html`<ui5-suggestion-item text=\"${ifDefined(item.text)}\" additional-text=\"${ifDefined(item.additionalText)}\"></ui5-suggestion-item>`;}\nfunction block3 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverValueStateMessage)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.open ? block4.call(this, context, tags, suffix) : undefined }</div>` : html`<div class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverValueStateMessage)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.open ? block4.call(this, context, tags, suffix) : undefined }</div>`;}\nfunction block4 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.shouldDisplayDefaultValueStateMessage ? block5.call(this, context, tags, suffix) : block6.call(this, context, tags, suffix) }`;}\nfunction block5 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block6 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\nfunction block7 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.hasValueStateText ? block8.call(this, context, tags, suffix) : undefined }`;}\nfunction block8 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"header\" class=\"ui5-responsive-popover-header ${classMap(this.classes.popoverValueState as ClassMapValue)}\" ?focused=${this._isValueStateFocused} style=\"${styleMap(this.styles.suggestionPopoverHeader)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.open ? block9.call(this, context, tags, suffix) : undefined }</div>` : html`<div slot=\"header\" class=\"ui5-responsive-popover-header ${classMap(this.classes.popoverValueState as ClassMapValue)}\" ?focused=${this._isValueStateFocused} style=\"${styleMap(this.styles.suggestionPopoverHeader)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.open ? block9.call(this, context, tags, suffix) : undefined }</div>`;}\nfunction block9 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.shouldDisplayDefaultValueStateMessage ? block10.call(this, context, tags, suffix) : block11.call(this, context, tags, suffix) }`;}\nfunction block10 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block11 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\nfunction block12 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`<slot name=\"${ifDefined(item._individualSlot)}\"></slot>`;}\nfunction block13 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"footer\" class=\"ui5-responsive-popover-footer\"><${scopeTag(\"ui5-button\", tags, suffix)} design=\"Transparent\" @click=\"${this._closeRespPopover}\">OK</${scopeTag(\"ui5-button\", tags, suffix)}></div>` : html`<div slot=\"footer\" class=\"ui5-responsive-popover-footer\"><ui5-button design=\"Transparent\" @click=\"${this._closeRespPopover}\">OK</ui5-button></div>`;}\nfunction block14 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-popover\", tags, suffix)} skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex=\"-1\" class=\"ui5-valuestatemessage-popover\" horizontal-align=\"${ifDefined(this._valueStatePopoverHorizontalAlign)}\" placement=\"Bottom\" .opener=\"${ifDefined(this)}\" .open=\"${ifDefined(this.valueStateOpen)}\" @ui5-close=\"${ifDefined(this._handleValueStatePopoverAfterClose)}\" @focusout=${this._handleValueStatePopoverFocusout}><div slot=\"header\" class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverHeader)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.shouldDisplayDefaultValueStateMessage ? block15.call(this, context, tags, suffix) : block16.call(this, context, tags, suffix) }</div></${scopeTag(\"ui5-popover\", tags, suffix)}>` : html`<ui5-popover skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex=\"-1\" class=\"ui5-valuestatemessage-popover\" horizontal-align=\"${ifDefined(this._valueStatePopoverHorizontalAlign)}\" placement=\"Bottom\" .opener=\"${ifDefined(this)}\" .open=\"${ifDefined(this.valueStateOpen)}\" @ui5-close=\"${ifDefined(this._handleValueStatePopoverAfterClose)}\" @focusout=${this._handleValueStatePopoverFocusout}><div slot=\"header\" class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverHeader)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.shouldDisplayDefaultValueStateMessage ? block15.call(this, context, tags, suffix) : block16.call(this, context, tags, suffix) }</div></ui5-popover>`;}\nfunction block15 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block16 (this: ComboBoxPopover, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\n\n\nexport default block0;"]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint no-unused-vars: 0 */
|
|
2
2
|
import { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from "@ui5/webcomponents-base/dist/renderer/LitRenderer.js";
|
|
3
|
-
function block0(context, tags, suffix) { return suffix ? html `<div class="ui5-combobox-root ui5-input-focusable-element">${this.hasValueState ? block1.call(this, context, tags, suffix) : undefined}<input id="ui5-combobox-input" .value="${ifDefined(this.value)}" inner-input placeholder="${ifDefined(this.placeholder)}" ?disabled=${this.disabled} ?readonly=${this.readonly} value-state="${ifDefined(this.valueState)}" @keydown="${this._keydown}" @input="${this._input}" @change="${this._inputChange}" @click=${this._click} @keyup="${this._keyup}" @focusin="${this._focusin}" @focusout="${this._focusout}" aria-expanded="${ifDefined(this.open)}" role="combobox" aria-haspopup="dialog" aria-autocomplete="both" aria-describedby="value-state-description" aria-label="${ifDefined(this.ariaLabelText)}" aria-required="${ifDefined(this.required)}" aria-controls="${ifDefined(this.responsivePopoverId)}" autocomplete="off" data-sap-focus-ref />${this._effectiveShowClearIcon ? block2.call(this, context, tags, suffix) : undefined}${this.icon ? block3.call(this, context, tags, suffix) : undefined}${!this.readonly ? block4.call(this, context, tags, suffix) : undefined}</div><${scopeTag("ui5-responsive-popover", tags, suffix)} class="${classMap(this.classes.popover)}" tabindex="-1" hide-arrow prevent-focus-restore prevent-initial-focus placement="Bottom" horizontal-align="Start" style="${styleMap(this.styles.suggestionsPopover)}" @ui5-before-open="${ifDefined(this._beforeOpenPopover)}" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name="${ifDefined(this._popupLabel)}" id="${ifDefined(this.responsivePopoverId)}" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><${scopeTag("ui5-busy-indicator", tags, suffix)} ?active=${this.loading} class="ui5-combobox-busy"></${scopeTag("ui5-busy-indicator", tags, suffix)}>${this._isPhone ? block5.call(this, context, tags, suffix) : undefined}${!this._isPhone ? block11.call(this, context, tags, suffix) : undefined}<${scopeTag("ui5-list", tags, suffix)} accessible-role="ListBox" class="ui5-combobox-items-list" separators="None" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode="Single">${repeat(this._filteredItems, (item, index) => item._id || index, (item, index) => block16.call(this, context, tags, suffix, item, index))}</${scopeTag("ui5-list", tags, suffix)}>${this._isPhone ?
|
|
3
|
+
function block0(context, tags, suffix) { return suffix ? html `<div class="ui5-combobox-root ui5-input-focusable-element">${this.hasValueState ? block1.call(this, context, tags, suffix) : undefined}<input id="ui5-combobox-input" .value="${ifDefined(this.value)}" inner-input placeholder="${ifDefined(this.placeholder)}" ?disabled=${this.disabled} ?readonly=${this.readonly} value-state="${ifDefined(this.valueState)}" @keydown="${this._keydown}" @input="${this._input}" @change="${this._inputChange}" @click=${this._click} @keyup="${this._keyup}" @focusin="${this._focusin}" @focusout="${this._focusout}" aria-expanded="${ifDefined(this.open)}" role="combobox" aria-haspopup="dialog" aria-autocomplete="both" aria-describedby="value-state-description" aria-label="${ifDefined(this.ariaLabelText)}" aria-required="${ifDefined(this.required)}" aria-controls="${ifDefined(this.responsivePopoverId)}" autocomplete="off" data-sap-focus-ref />${this._effectiveShowClearIcon ? block2.call(this, context, tags, suffix) : undefined}${this.icon ? block3.call(this, context, tags, suffix) : undefined}${!this.readonly ? block4.call(this, context, tags, suffix) : undefined}</div><${scopeTag("ui5-responsive-popover", tags, suffix)} class="${classMap(this.classes.popover)}" tabindex="-1" hide-arrow prevent-focus-restore prevent-initial-focus placement="Bottom" horizontal-align="Start" style="${styleMap(this.styles.suggestionsPopover)}" @ui5-before-open="${ifDefined(this._beforeOpenPopover)}" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name="${ifDefined(this._popupLabel)}" id="${ifDefined(this.responsivePopoverId)}" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><${scopeTag("ui5-busy-indicator", tags, suffix)} ?active=${this.loading} class="ui5-combobox-busy"></${scopeTag("ui5-busy-indicator", tags, suffix)}>${this._isPhone ? block5.call(this, context, tags, suffix) : undefined}${!this._isPhone ? block11.call(this, context, tags, suffix) : undefined}<${scopeTag("ui5-list", tags, suffix)} accessible-role="ListBox" class="ui5-combobox-items-list" separators="None" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode="Single">${repeat(this._filteredItems, (item, index) => item._id || index, (item, index) => block16.call(this, context, tags, suffix, item, index))}</${scopeTag("ui5-list", tags, suffix)}>${this._isPhone ? block17.call(this, context, tags, suffix) : undefined}</${scopeTag("ui5-responsive-popover", tags, suffix)}>${this.shouldOpenValueStateMessagePopover ? block18.call(this, context, tags, suffix) : undefined} ` : html `<div class="ui5-combobox-root ui5-input-focusable-element">${this.hasValueState ? block1.call(this, context, tags, suffix) : undefined}<input id="ui5-combobox-input" .value="${ifDefined(this.value)}" inner-input placeholder="${ifDefined(this.placeholder)}" ?disabled=${this.disabled} ?readonly=${this.readonly} value-state="${ifDefined(this.valueState)}" @keydown="${this._keydown}" @input="${this._input}" @change="${this._inputChange}" @click=${this._click} @keyup="${this._keyup}" @focusin="${this._focusin}" @focusout="${this._focusout}" aria-expanded="${ifDefined(this.open)}" role="combobox" aria-haspopup="dialog" aria-autocomplete="both" aria-describedby="value-state-description" aria-label="${ifDefined(this.ariaLabelText)}" aria-required="${ifDefined(this.required)}" aria-controls="${ifDefined(this.responsivePopoverId)}" autocomplete="off" data-sap-focus-ref />${this._effectiveShowClearIcon ? block2.call(this, context, tags, suffix) : undefined}${this.icon ? block3.call(this, context, tags, suffix) : undefined}${!this.readonly ? block4.call(this, context, tags, suffix) : undefined}</div><ui5-responsive-popover class="${classMap(this.classes.popover)}" tabindex="-1" hide-arrow prevent-focus-restore prevent-initial-focus placement="Bottom" horizontal-align="Start" style="${styleMap(this.styles.suggestionsPopover)}" @ui5-before-open="${ifDefined(this._beforeOpenPopover)}" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name="${ifDefined(this._popupLabel)}" id="${ifDefined(this.responsivePopoverId)}" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><ui5-busy-indicator ?active=${this.loading} class="ui5-combobox-busy"></ui5-busy-indicator>${this._isPhone ? block5.call(this, context, tags, suffix) : undefined}${!this._isPhone ? block11.call(this, context, tags, suffix) : undefined}<ui5-list accessible-role="ListBox" class="ui5-combobox-items-list" separators="None" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode="Single">${repeat(this._filteredItems, (item, index) => item._id || index, (item, index) => block16.call(this, context, tags, suffix, item, index))}</ui5-list>${this._isPhone ? block17.call(this, context, tags, suffix) : undefined}</ui5-responsive-popover>${this.shouldOpenValueStateMessagePopover ? block18.call(this, context, tags, suffix) : undefined} `; }
|
|
4
4
|
function block1(context, tags, suffix) { return html `<span id="value-state-description" class="ui5-hidden-text">${ifDefined(this.ariaValueStateHiddenText)}</span>`; }
|
|
5
5
|
function block2(context, tags, suffix) { return suffix ? html `<div @click=${this._clear} class="ui5-input-clear-icon-wrapper inputIcon" tabindex="-1"><${scopeTag("ui5-icon", tags, suffix)} tabindex="-1" class="ui5-input-clear-icon" name="decline" accessible-name="${ifDefined(this.clearIconAccessibleName)}"></${scopeTag("ui5-icon", tags, suffix)}></div>` : html `<div @click=${this._clear} class="ui5-input-clear-icon-wrapper inputIcon" tabindex="-1"><ui5-icon tabindex="-1" class="ui5-input-clear-icon" name="decline" accessible-name="${ifDefined(this.clearIconAccessibleName)}"></ui5-icon></div>`; }
|
|
6
6
|
function block3(context, tags, suffix) { return html `<slot name="icon"></slot>`; }
|
|
@@ -16,15 +16,10 @@ function block12(context, tags, suffix) { return suffix ? html `<div slot="heade
|
|
|
16
16
|
function block13(context, tags, suffix) { return html `${this.shouldDisplayDefaultValueStateMessage ? block14.call(this, context, tags, suffix) : block15.call(this, context, tags, suffix)}`; }
|
|
17
17
|
function block14(context, tags, suffix) { return html `${ifDefined(this.valueStateDefaultText)}`; }
|
|
18
18
|
function block15(context, tags, suffix) { return html `<slot name="valueStateMessage"></slot>`; }
|
|
19
|
-
function block16(context, tags, suffix, item, index) { return html
|
|
20
|
-
function block17(context, tags, suffix
|
|
21
|
-
function block18(context, tags, suffix
|
|
22
|
-
function block19(context, tags, suffix
|
|
23
|
-
function block20(context, tags, suffix
|
|
24
|
-
function block21(context, tags, suffix, item, index) { return suffix ? html `<${scopeTag("ui5-li", tags, suffix)} accessible-role="Option" type="Active" wrapping-type="Normal" additional-text=${ifDefined(item.additionalText)} group-name=${ifDefined(item.groupName)} .mappedItem=${ifDefined(item)} ?selected=${item.selected} ?focused=${item.focused} data-ui5-stable="${ifDefined(item.stableDomRef)}">${ifDefined(item.text)}</${scopeTag("ui5-li", tags, suffix)}>` : html `<ui5-li accessible-role="Option" type="Active" wrapping-type="Normal" additional-text=${ifDefined(item.additionalText)} group-name=${ifDefined(item.groupName)} .mappedItem=${ifDefined(item)} ?selected=${item.selected} ?focused=${item.focused} data-ui5-stable="${ifDefined(item.stableDomRef)}">${ifDefined(item.text)}</ui5-li>`; }
|
|
25
|
-
function block22(context, tags, suffix) { return suffix ? html `<div slot="footer" class="ui5-responsive-popover-footer"><${scopeTag("ui5-button", tags, suffix)} design="Transparent" @click="${this._closeRespPopover}">OK</${scopeTag("ui5-button", tags, suffix)}></div>` : html `<div slot="footer" class="ui5-responsive-popover-footer"><ui5-button design="Transparent" @click="${this._closeRespPopover}">OK</ui5-button></div>`; }
|
|
26
|
-
function block23(context, tags, suffix) { return suffix ? html `<${scopeTag("ui5-popover", tags, suffix)} skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex="-1" class="ui5-valuestatemessage-popover" horizontal-align="${ifDefined(this._valueStatePopoverHorizontalAlign)}" placement="Bottom" .opener="${ifDefined(this)}" .open="${ifDefined(this.valueStateOpen)}" @ui5-close="${ifDefined(this._handleValueStatePopoverAfterClose)}" @focusout=${this._handleValueStatePopoverFocusout}><div slot="header" class="${classMap(this.classes.popoverValueState)}" style="${styleMap(this.styles.popoverHeader)}"><${scopeTag("ui5-icon", tags, suffix)} class="ui5-input-value-state-message-icon" name="${ifDefined(this._valueStateMessageIcon)}"></${scopeTag("ui5-icon", tags, suffix)}>${this.shouldDisplayDefaultValueStateMessage ? block24.call(this, context, tags, suffix) : block25.call(this, context, tags, suffix)}</div></${scopeTag("ui5-popover", tags, suffix)}>` : html `<ui5-popover skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex="-1" class="ui5-valuestatemessage-popover" horizontal-align="${ifDefined(this._valueStatePopoverHorizontalAlign)}" placement="Bottom" .opener="${ifDefined(this)}" .open="${ifDefined(this.valueStateOpen)}" @ui5-close="${ifDefined(this._handleValueStatePopoverAfterClose)}" @focusout=${this._handleValueStatePopoverFocusout}><div slot="header" class="${classMap(this.classes.popoverValueState)}" style="${styleMap(this.styles.popoverHeader)}"><ui5-icon class="ui5-input-value-state-message-icon" name="${ifDefined(this._valueStateMessageIcon)}"></ui5-icon>${this.shouldDisplayDefaultValueStateMessage ? block24.call(this, context, tags, suffix) : block25.call(this, context, tags, suffix)}</div></ui5-popover>`; }
|
|
27
|
-
function block24(context, tags, suffix) { return html `${ifDefined(this.valueStateDefaultText)}`; }
|
|
28
|
-
function block25(context, tags, suffix) { return html `<slot name="valueStateMessage"></slot>`; }
|
|
19
|
+
function block16(context, tags, suffix, item, index) { return html `<slot name="${ifDefined(item._individualSlot)}"></slot>`; }
|
|
20
|
+
function block17(context, tags, suffix) { return suffix ? html `<div slot="footer" class="ui5-responsive-popover-footer"><${scopeTag("ui5-button", tags, suffix)} design="Transparent" @click="${this._closeRespPopover}">OK</${scopeTag("ui5-button", tags, suffix)}></div>` : html `<div slot="footer" class="ui5-responsive-popover-footer"><ui5-button design="Transparent" @click="${this._closeRespPopover}">OK</ui5-button></div>`; }
|
|
21
|
+
function block18(context, tags, suffix) { return suffix ? html `<${scopeTag("ui5-popover", tags, suffix)} skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex="-1" class="ui5-valuestatemessage-popover" horizontal-align="${ifDefined(this._valueStatePopoverHorizontalAlign)}" placement="Bottom" .opener="${ifDefined(this)}" .open="${ifDefined(this.valueStateOpen)}" @ui5-close="${ifDefined(this._handleValueStatePopoverAfterClose)}" @focusout=${this._handleValueStatePopoverFocusout}><div slot="header" class="${classMap(this.classes.popoverValueState)}" style="${styleMap(this.styles.popoverHeader)}"><${scopeTag("ui5-icon", tags, suffix)} class="ui5-input-value-state-message-icon" name="${ifDefined(this._valueStateMessageIcon)}"></${scopeTag("ui5-icon", tags, suffix)}>${this.shouldDisplayDefaultValueStateMessage ? block19.call(this, context, tags, suffix) : block20.call(this, context, tags, suffix)}</div></${scopeTag("ui5-popover", tags, suffix)}>` : html `<ui5-popover skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex="-1" class="ui5-valuestatemessage-popover" horizontal-align="${ifDefined(this._valueStatePopoverHorizontalAlign)}" placement="Bottom" .opener="${ifDefined(this)}" .open="${ifDefined(this.valueStateOpen)}" @ui5-close="${ifDefined(this._handleValueStatePopoverAfterClose)}" @focusout=${this._handleValueStatePopoverFocusout}><div slot="header" class="${classMap(this.classes.popoverValueState)}" style="${styleMap(this.styles.popoverHeader)}"><ui5-icon class="ui5-input-value-state-message-icon" name="${ifDefined(this._valueStateMessageIcon)}"></ui5-icon>${this.shouldDisplayDefaultValueStateMessage ? block19.call(this, context, tags, suffix) : block20.call(this, context, tags, suffix)}</div></ui5-popover>`; }
|
|
22
|
+
function block19(context, tags, suffix) { return html `${ifDefined(this.valueStateDefaultText)}`; }
|
|
23
|
+
function block20(context, tags, suffix) { return html `<slot name="valueStateMessage"></slot>`; }
|
|
29
24
|
export default block0;
|
|
30
25
|
//# sourceMappingURL=ComboBoxTemplate.lit.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComboBoxTemplate.lit.js","sourceRoot":"","sources":["../../../src/generated/templates/ComboBoxTemplate.lit.ts"],"names":[],"mappings":"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","sourcesContent":["/* eslint no-unused-vars: 0 */\nimport { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\nimport type UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\nimport type ComboBox from \"../../ComboBox.js\";\nimport type { ClassMapValue } from \"@ui5/webcomponents-base/dist/types.js\";\n\t\nfunction block0 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div class=\"ui5-combobox-root ui5-input-focusable-element\">${ this.hasValueState ? block1.call(this, context, tags, suffix) : undefined }<input id=\"ui5-combobox-input\" .value=\"${ifDefined(this.value)}\" inner-input placeholder=\"${ifDefined(this.placeholder)}\" ?disabled=${this.disabled} ?readonly=${this.readonly} value-state=\"${ifDefined(this.valueState)}\" @keydown=\"${this._keydown}\" @input=\"${this._input}\" @change=\"${this._inputChange}\" @click=${this._click} @keyup=\"${this._keyup}\" @focusin=\"${this._focusin}\" @focusout=\"${this._focusout}\" aria-expanded=\"${ifDefined(this.open)}\" role=\"combobox\" aria-haspopup=\"dialog\" aria-autocomplete=\"both\" aria-describedby=\"value-state-description\" aria-label=\"${ifDefined(this.ariaLabelText)}\" aria-required=\"${ifDefined(this.required)}\" aria-controls=\"${ifDefined(this.responsivePopoverId)}\" autocomplete=\"off\" data-sap-focus-ref />${ this._effectiveShowClearIcon ? block2.call(this, context, tags, suffix) : undefined }${ this.icon ? block3.call(this, context, tags, suffix) : undefined }${ !this.readonly ? block4.call(this, context, tags, suffix) : undefined }</div><${scopeTag(\"ui5-responsive-popover\", tags, suffix)} class=\"${classMap(this.classes.popover as ClassMapValue)}\" tabindex=\"-1\" hide-arrow prevent-focus-restore prevent-initial-focus placement=\"Bottom\" horizontal-align=\"Start\" style=\"${styleMap(this.styles.suggestionsPopover)}\" @ui5-before-open=\"${ifDefined(this._beforeOpenPopover)}\" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name=\"${ifDefined(this._popupLabel)}\" id=\"${ifDefined(this.responsivePopoverId)}\" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><${scopeTag(\"ui5-busy-indicator\", tags, suffix)} ?active=${this.loading} class=\"ui5-combobox-busy\"></${scopeTag(\"ui5-busy-indicator\", tags, suffix)}>${ this._isPhone ? block5.call(this, context, tags, suffix) : undefined }${ !this._isPhone ? block11.call(this, context, tags, suffix) : undefined }<${scopeTag(\"ui5-list\", tags, suffix)} accessible-role=\"ListBox\" class=\"ui5-combobox-items-list\" separators=\"None\" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode=\"Single\">${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block16.call(this, context, tags, suffix, item, index)) }</${scopeTag(\"ui5-list\", tags, suffix)}>${ this._isPhone ? block22.call(this, context, tags, suffix) : undefined }</${scopeTag(\"ui5-responsive-popover\", tags, suffix)}>${ this.shouldOpenValueStateMessagePopover ? block23.call(this, context, tags, suffix) : undefined } ` : html`<div class=\"ui5-combobox-root ui5-input-focusable-element\">${ this.hasValueState ? block1.call(this, context, tags, suffix) : undefined }<input id=\"ui5-combobox-input\" .value=\"${ifDefined(this.value)}\" inner-input placeholder=\"${ifDefined(this.placeholder)}\" ?disabled=${this.disabled} ?readonly=${this.readonly} value-state=\"${ifDefined(this.valueState)}\" @keydown=\"${this._keydown}\" @input=\"${this._input}\" @change=\"${this._inputChange}\" @click=${this._click} @keyup=\"${this._keyup}\" @focusin=\"${this._focusin}\" @focusout=\"${this._focusout}\" aria-expanded=\"${ifDefined(this.open)}\" role=\"combobox\" aria-haspopup=\"dialog\" aria-autocomplete=\"both\" aria-describedby=\"value-state-description\" aria-label=\"${ifDefined(this.ariaLabelText)}\" aria-required=\"${ifDefined(this.required)}\" aria-controls=\"${ifDefined(this.responsivePopoverId)}\" autocomplete=\"off\" data-sap-focus-ref />${ this._effectiveShowClearIcon ? block2.call(this, context, tags, suffix) : undefined }${ this.icon ? block3.call(this, context, tags, suffix) : undefined }${ !this.readonly ? block4.call(this, context, tags, suffix) : undefined }</div><ui5-responsive-popover class=\"${classMap(this.classes.popover as ClassMapValue)}\" tabindex=\"-1\" hide-arrow prevent-focus-restore prevent-initial-focus placement=\"Bottom\" horizontal-align=\"Start\" style=\"${styleMap(this.styles.suggestionsPopover)}\" @ui5-before-open=\"${ifDefined(this._beforeOpenPopover)}\" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name=\"${ifDefined(this._popupLabel)}\" id=\"${ifDefined(this.responsivePopoverId)}\" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><ui5-busy-indicator ?active=${this.loading} class=\"ui5-combobox-busy\"></ui5-busy-indicator>${ this._isPhone ? block5.call(this, context, tags, suffix) : undefined }${ !this._isPhone ? block11.call(this, context, tags, suffix) : undefined }<ui5-list accessible-role=\"ListBox\" class=\"ui5-combobox-items-list\" separators=\"None\" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode=\"Single\">${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block16.call(this, context, tags, suffix, item, index)) }</ui5-list>${ this._isPhone ? block22.call(this, context, tags, suffix) : undefined }</ui5-responsive-popover>${ this.shouldOpenValueStateMessagePopover ? block23.call(this, context, tags, suffix) : undefined } `;}\nfunction block1 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<span id=\"value-state-description\" class=\"ui5-hidden-text\">${ifDefined(this.ariaValueStateHiddenText)}</span>`;}\nfunction block2 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div @click=${this._clear} class=\"ui5-input-clear-icon-wrapper inputIcon\" tabindex=\"-1\"><${scopeTag(\"ui5-icon\", tags, suffix)} tabindex=\"-1\" class=\"ui5-input-clear-icon\" name=\"decline\" accessible-name=\"${ifDefined(this.clearIconAccessibleName)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}></div>` : html`<div @click=${this._clear} class=\"ui5-input-clear-icon-wrapper inputIcon\" tabindex=\"-1\"><ui5-icon tabindex=\"-1\" class=\"ui5-input-clear-icon\" name=\"decline\" accessible-name=\"${ifDefined(this.clearIconAccessibleName)}\"></ui5-icon></div>`;}\nfunction block3 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"icon\"></slot>`;}\nfunction block4 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-icon\", tags, suffix)} name=\"slim-arrow-down\" slot=\"icon\" tabindex=\"-1\" class=\"inputIcon\" ?pressed=\"${this._iconPressed}\" @click=\"${this._arrowClick}\" accessible-name=\"${ifDefined(this._iconAccessibleNameText)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>` : html`<ui5-icon name=\"slim-arrow-down\" slot=\"icon\" tabindex=\"-1\" class=\"inputIcon\" ?pressed=\"${this._iconPressed}\" @click=\"${this._arrowClick}\" accessible-name=\"${ifDefined(this._iconAccessibleNameText)}\"></ui5-icon>`;}\nfunction block5 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"header\" class=\"ui5-responsive-popover-header\"><div class=\"row\"><span>${ifDefined(this._headerTitleText)}</span><${scopeTag(\"ui5-button\", tags, suffix)} class=\"ui5-responsive-popover-close-btn\" icon=\"decline\" design=\"Transparent\" @click=\"${this._closeRespPopover}\"></${scopeTag(\"ui5-button\", tags, suffix)}></div><div class=\"row\"><${scopeTag(\"ui5-input\", tags, suffix)} @keydown=\"${this._handleMobileKeydown}\" @ui5-input=\"${ifDefined(this._handleMobileInput)}\" @ui5-change=\"${ifDefined(this._inputChange)}\" placeholder=\"${ifDefined(this.placeholder)}\" value-state=\"${ifDefined(this.valueState)}\" ?show-clear-icon=\"${this.showClearIcon}\" ?no-typeahead=\"${this.noTypeahead}\" .open=${ifDefined(this.openOnMobile)}>${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block6.call(this, context, tags, suffix, item, index)) }</${scopeTag(\"ui5-input\", tags, suffix)}></div></div>${ this.hasValueStateText ? block7.call(this, context, tags, suffix) : undefined }` : html`<div slot=\"header\" class=\"ui5-responsive-popover-header\"><div class=\"row\"><span>${ifDefined(this._headerTitleText)}</span><ui5-button class=\"ui5-responsive-popover-close-btn\" icon=\"decline\" design=\"Transparent\" @click=\"${this._closeRespPopover}\"></ui5-button></div><div class=\"row\"><ui5-input @keydown=\"${this._handleMobileKeydown}\" @ui5-input=\"${ifDefined(this._handleMobileInput)}\" @ui5-change=\"${ifDefined(this._inputChange)}\" placeholder=\"${ifDefined(this.placeholder)}\" value-state=\"${ifDefined(this.valueState)}\" ?show-clear-icon=\"${this.showClearIcon}\" ?no-typeahead=\"${this.noTypeahead}\" .open=${ifDefined(this.openOnMobile)}>${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block6.call(this, context, tags, suffix, item, index)) }</ui5-input></div></div>${ this.hasValueStateText ? block7.call(this, context, tags, suffix) : undefined }`;}\nfunction block6 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<${scopeTag(\"ui5-suggestion-item\", tags, suffix)} text=\"${ifDefined(item.text)}\" additional-text=\"${ifDefined(item.additionalText)}\"></${scopeTag(\"ui5-suggestion-item\", tags, suffix)}>` : html`<ui5-suggestion-item text=\"${ifDefined(item.text)}\" additional-text=\"${ifDefined(item.additionalText)}\"></ui5-suggestion-item>`;}\nfunction block7 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverValueStateMessage)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.open ? block8.call(this, context, tags, suffix) : undefined }</div>` : html`<div class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverValueStateMessage)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.open ? block8.call(this, context, tags, suffix) : undefined }</div>`;}\nfunction block8 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.shouldDisplayDefaultValueStateMessage ? block9.call(this, context, tags, suffix) : block10.call(this, context, tags, suffix) }`;}\nfunction block9 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block10 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\nfunction block11 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.hasValueStateText ? block12.call(this, context, tags, suffix) : undefined }`;}\nfunction block12 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"header\" class=\"ui5-responsive-popover-header ${classMap(this.classes.popoverValueState as ClassMapValue)}\" ?focused=${this._isValueStateFocused} style=\"${styleMap(this.styles.suggestionPopoverHeader)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.open ? block13.call(this, context, tags, suffix) : undefined }</div>` : html`<div slot=\"header\" class=\"ui5-responsive-popover-header ${classMap(this.classes.popoverValueState as ClassMapValue)}\" ?focused=${this._isValueStateFocused} style=\"${styleMap(this.styles.suggestionPopoverHeader)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.open ? block13.call(this, context, tags, suffix) : undefined }</div>`;}\nfunction block13 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.shouldDisplayDefaultValueStateMessage ? block14.call(this, context, tags, suffix) : block15.call(this, context, tags, suffix) }`;}\nfunction block14 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block15 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\nfunction block16 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`${ item.isGroupItem ? block17.call(this, context, tags, suffix, item, index) : block21.call(this, context, tags, suffix, item, index) }`;}\nfunction block17 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`${ item._isVisible ? block18.call(this, context, tags, suffix, item, index) : undefined }`;}\nfunction block18 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<${scopeTag(\"ui5-li-group\", tags, suffix)} header-text=\"${ifDefined(item.headerText)}\" ?focused=${item.focused}>${ repeat(item.items, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block19.call(this, context, tags, suffix, item, index)) }</${scopeTag(\"ui5-li-group\", tags, suffix)}>` : html`<ui5-li-group header-text=\"${ifDefined(item.headerText)}\" ?focused=${item.focused}>${ repeat(item.items, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block19.call(this, context, tags, suffix, item, index)) }</ui5-li-group>`;}\nfunction block19 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`${ item._isVisible ? block20.call(this, context, tags, suffix, item, index) : undefined }`;}\nfunction block20 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<${scopeTag(\"ui5-li\", tags, suffix)} accessible-role=\"Option\" type=\"Active\" wrapping-type=\"Normal\" additional-text=${ifDefined(item.additionalText)} group-name=${ifDefined(item.groupName)} .mappedItem=${ifDefined(item)} ?selected=${item.selected} ?focused=${item.focused} data-ui5-stable=\"${ifDefined(item.stableDomRef)}\">${ifDefined(item.text)}</${scopeTag(\"ui5-li\", tags, suffix)}>` : html`<ui5-li accessible-role=\"Option\" type=\"Active\" wrapping-type=\"Normal\" additional-text=${ifDefined(item.additionalText)} group-name=${ifDefined(item.groupName)} .mappedItem=${ifDefined(item)} ?selected=${item.selected} ?focused=${item.focused} data-ui5-stable=\"${ifDefined(item.stableDomRef)}\">${ifDefined(item.text)}</ui5-li>`;}\nfunction block21 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<${scopeTag(\"ui5-li\", tags, suffix)} accessible-role=\"Option\" type=\"Active\" wrapping-type=\"Normal\" additional-text=${ifDefined(item.additionalText)} group-name=${ifDefined(item.groupName)} .mappedItem=${ifDefined(item)} ?selected=${item.selected} ?focused=${item.focused} data-ui5-stable=\"${ifDefined(item.stableDomRef)}\">${ifDefined(item.text)}</${scopeTag(\"ui5-li\", tags, suffix)}>` : html`<ui5-li accessible-role=\"Option\" type=\"Active\" wrapping-type=\"Normal\" additional-text=${ifDefined(item.additionalText)} group-name=${ifDefined(item.groupName)} .mappedItem=${ifDefined(item)} ?selected=${item.selected} ?focused=${item.focused} data-ui5-stable=\"${ifDefined(item.stableDomRef)}\">${ifDefined(item.text)}</ui5-li>`;}\nfunction block22 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"footer\" class=\"ui5-responsive-popover-footer\"><${scopeTag(\"ui5-button\", tags, suffix)} design=\"Transparent\" @click=\"${this._closeRespPopover}\">OK</${scopeTag(\"ui5-button\", tags, suffix)}></div>` : html`<div slot=\"footer\" class=\"ui5-responsive-popover-footer\"><ui5-button design=\"Transparent\" @click=\"${this._closeRespPopover}\">OK</ui5-button></div>`;}\nfunction block23 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-popover\", tags, suffix)} skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex=\"-1\" class=\"ui5-valuestatemessage-popover\" horizontal-align=\"${ifDefined(this._valueStatePopoverHorizontalAlign)}\" placement=\"Bottom\" .opener=\"${ifDefined(this)}\" .open=\"${ifDefined(this.valueStateOpen)}\" @ui5-close=\"${ifDefined(this._handleValueStatePopoverAfterClose)}\" @focusout=${this._handleValueStatePopoverFocusout}><div slot=\"header\" class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverHeader)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.shouldDisplayDefaultValueStateMessage ? block24.call(this, context, tags, suffix) : block25.call(this, context, tags, suffix) }</div></${scopeTag(\"ui5-popover\", tags, suffix)}>` : html`<ui5-popover skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex=\"-1\" class=\"ui5-valuestatemessage-popover\" horizontal-align=\"${ifDefined(this._valueStatePopoverHorizontalAlign)}\" placement=\"Bottom\" .opener=\"${ifDefined(this)}\" .open=\"${ifDefined(this.valueStateOpen)}\" @ui5-close=\"${ifDefined(this._handleValueStatePopoverAfterClose)}\" @focusout=${this._handleValueStatePopoverFocusout}><div slot=\"header\" class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverHeader)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.shouldDisplayDefaultValueStateMessage ? block24.call(this, context, tags, suffix) : block25.call(this, context, tags, suffix) }</div></ui5-popover>`;}\nfunction block24 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block25 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\n\n\nexport default block0;"]}
|
|
1
|
+
{"version":3,"file":"ComboBoxTemplate.lit.js","sourceRoot":"","sources":["../../../src/generated/templates/ComboBoxTemplate.lit.ts"],"names":[],"mappings":"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","sourcesContent":["/* eslint no-unused-vars: 0 */\nimport { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\nimport type UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\nimport type ComboBox from \"../../ComboBox.js\";\nimport type { ClassMapValue } from \"@ui5/webcomponents-base/dist/types.js\";\n\t\nfunction block0 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div class=\"ui5-combobox-root ui5-input-focusable-element\">${ this.hasValueState ? block1.call(this, context, tags, suffix) : undefined }<input id=\"ui5-combobox-input\" .value=\"${ifDefined(this.value)}\" inner-input placeholder=\"${ifDefined(this.placeholder)}\" ?disabled=${this.disabled} ?readonly=${this.readonly} value-state=\"${ifDefined(this.valueState)}\" @keydown=\"${this._keydown}\" @input=\"${this._input}\" @change=\"${this._inputChange}\" @click=${this._click} @keyup=\"${this._keyup}\" @focusin=\"${this._focusin}\" @focusout=\"${this._focusout}\" aria-expanded=\"${ifDefined(this.open)}\" role=\"combobox\" aria-haspopup=\"dialog\" aria-autocomplete=\"both\" aria-describedby=\"value-state-description\" aria-label=\"${ifDefined(this.ariaLabelText)}\" aria-required=\"${ifDefined(this.required)}\" aria-controls=\"${ifDefined(this.responsivePopoverId)}\" autocomplete=\"off\" data-sap-focus-ref />${ this._effectiveShowClearIcon ? block2.call(this, context, tags, suffix) : undefined }${ this.icon ? block3.call(this, context, tags, suffix) : undefined }${ !this.readonly ? block4.call(this, context, tags, suffix) : undefined }</div><${scopeTag(\"ui5-responsive-popover\", tags, suffix)} class=\"${classMap(this.classes.popover as ClassMapValue)}\" tabindex=\"-1\" hide-arrow prevent-focus-restore prevent-initial-focus placement=\"Bottom\" horizontal-align=\"Start\" style=\"${styleMap(this.styles.suggestionsPopover)}\" @ui5-before-open=\"${ifDefined(this._beforeOpenPopover)}\" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name=\"${ifDefined(this._popupLabel)}\" id=\"${ifDefined(this.responsivePopoverId)}\" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><${scopeTag(\"ui5-busy-indicator\", tags, suffix)} ?active=${this.loading} class=\"ui5-combobox-busy\"></${scopeTag(\"ui5-busy-indicator\", tags, suffix)}>${ this._isPhone ? block5.call(this, context, tags, suffix) : undefined }${ !this._isPhone ? block11.call(this, context, tags, suffix) : undefined }<${scopeTag(\"ui5-list\", tags, suffix)} accessible-role=\"ListBox\" class=\"ui5-combobox-items-list\" separators=\"None\" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode=\"Single\">${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block16.call(this, context, tags, suffix, item, index)) }</${scopeTag(\"ui5-list\", tags, suffix)}>${ this._isPhone ? block17.call(this, context, tags, suffix) : undefined }</${scopeTag(\"ui5-responsive-popover\", tags, suffix)}>${ this.shouldOpenValueStateMessagePopover ? block18.call(this, context, tags, suffix) : undefined } ` : html`<div class=\"ui5-combobox-root ui5-input-focusable-element\">${ this.hasValueState ? block1.call(this, context, tags, suffix) : undefined }<input id=\"ui5-combobox-input\" .value=\"${ifDefined(this.value)}\" inner-input placeholder=\"${ifDefined(this.placeholder)}\" ?disabled=${this.disabled} ?readonly=${this.readonly} value-state=\"${ifDefined(this.valueState)}\" @keydown=\"${this._keydown}\" @input=\"${this._input}\" @change=\"${this._inputChange}\" @click=${this._click} @keyup=\"${this._keyup}\" @focusin=\"${this._focusin}\" @focusout=\"${this._focusout}\" aria-expanded=\"${ifDefined(this.open)}\" role=\"combobox\" aria-haspopup=\"dialog\" aria-autocomplete=\"both\" aria-describedby=\"value-state-description\" aria-label=\"${ifDefined(this.ariaLabelText)}\" aria-required=\"${ifDefined(this.required)}\" aria-controls=\"${ifDefined(this.responsivePopoverId)}\" autocomplete=\"off\" data-sap-focus-ref />${ this._effectiveShowClearIcon ? block2.call(this, context, tags, suffix) : undefined }${ this.icon ? block3.call(this, context, tags, suffix) : undefined }${ !this.readonly ? block4.call(this, context, tags, suffix) : undefined }</div><ui5-responsive-popover class=\"${classMap(this.classes.popover as ClassMapValue)}\" tabindex=\"-1\" hide-arrow prevent-focus-restore prevent-initial-focus placement=\"Bottom\" horizontal-align=\"Start\" style=\"${styleMap(this.styles.suggestionsPopover)}\" @ui5-before-open=\"${ifDefined(this._beforeOpenPopover)}\" @ui5-open=${ifDefined(this._afterOpenPopover)} @ui5-close=${ifDefined(this._afterClosePopover)} @keydown=${this._handlePopoverKeydown} @focusout=${this._handlePopoverFocusout} accessible-name=\"${ifDefined(this._popupLabel)}\" id=\"${ifDefined(this.responsivePopoverId)}\" .open=${ifDefined(this.open)} .opener=${ifDefined(this)}><ui5-busy-indicator ?active=${this.loading} class=\"ui5-combobox-busy\"></ui5-busy-indicator>${ this._isPhone ? block5.call(this, context, tags, suffix) : undefined }${ !this._isPhone ? block11.call(this, context, tags, suffix) : undefined }<ui5-list accessible-role=\"ListBox\" class=\"ui5-combobox-items-list\" separators=\"None\" @ui5-item-click=${ifDefined(this._selectItem)} @ui5-item-focused=${ifDefined(this._onItemFocus)} @mousedown=${this._itemMousedown} selection-mode=\"Single\">${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block16.call(this, context, tags, suffix, item, index)) }</ui5-list>${ this._isPhone ? block17.call(this, context, tags, suffix) : undefined }</ui5-responsive-popover>${ this.shouldOpenValueStateMessagePopover ? block18.call(this, context, tags, suffix) : undefined } `;}\nfunction block1 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<span id=\"value-state-description\" class=\"ui5-hidden-text\">${ifDefined(this.ariaValueStateHiddenText)}</span>`;}\nfunction block2 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div @click=${this._clear} class=\"ui5-input-clear-icon-wrapper inputIcon\" tabindex=\"-1\"><${scopeTag(\"ui5-icon\", tags, suffix)} tabindex=\"-1\" class=\"ui5-input-clear-icon\" name=\"decline\" accessible-name=\"${ifDefined(this.clearIconAccessibleName)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}></div>` : html`<div @click=${this._clear} class=\"ui5-input-clear-icon-wrapper inputIcon\" tabindex=\"-1\"><ui5-icon tabindex=\"-1\" class=\"ui5-input-clear-icon\" name=\"decline\" accessible-name=\"${ifDefined(this.clearIconAccessibleName)}\"></ui5-icon></div>`;}\nfunction block3 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"icon\"></slot>`;}\nfunction block4 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-icon\", tags, suffix)} name=\"slim-arrow-down\" slot=\"icon\" tabindex=\"-1\" class=\"inputIcon\" ?pressed=\"${this._iconPressed}\" @click=\"${this._arrowClick}\" accessible-name=\"${ifDefined(this._iconAccessibleNameText)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>` : html`<ui5-icon name=\"slim-arrow-down\" slot=\"icon\" tabindex=\"-1\" class=\"inputIcon\" ?pressed=\"${this._iconPressed}\" @click=\"${this._arrowClick}\" accessible-name=\"${ifDefined(this._iconAccessibleNameText)}\"></ui5-icon>`;}\nfunction block5 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"header\" class=\"ui5-responsive-popover-header\"><div class=\"row\"><span>${ifDefined(this._headerTitleText)}</span><${scopeTag(\"ui5-button\", tags, suffix)} class=\"ui5-responsive-popover-close-btn\" icon=\"decline\" design=\"Transparent\" @click=\"${this._closeRespPopover}\"></${scopeTag(\"ui5-button\", tags, suffix)}></div><div class=\"row\"><${scopeTag(\"ui5-input\", tags, suffix)} @keydown=\"${this._handleMobileKeydown}\" @ui5-input=\"${ifDefined(this._handleMobileInput)}\" @ui5-change=\"${ifDefined(this._inputChange)}\" placeholder=\"${ifDefined(this.placeholder)}\" value-state=\"${ifDefined(this.valueState)}\" ?show-clear-icon=\"${this.showClearIcon}\" ?no-typeahead=\"${this.noTypeahead}\" .open=${ifDefined(this.openOnMobile)}>${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block6.call(this, context, tags, suffix, item, index)) }</${scopeTag(\"ui5-input\", tags, suffix)}></div></div>${ this.hasValueStateText ? block7.call(this, context, tags, suffix) : undefined }` : html`<div slot=\"header\" class=\"ui5-responsive-popover-header\"><div class=\"row\"><span>${ifDefined(this._headerTitleText)}</span><ui5-button class=\"ui5-responsive-popover-close-btn\" icon=\"decline\" design=\"Transparent\" @click=\"${this._closeRespPopover}\"></ui5-button></div><div class=\"row\"><ui5-input @keydown=\"${this._handleMobileKeydown}\" @ui5-input=\"${ifDefined(this._handleMobileInput)}\" @ui5-change=\"${ifDefined(this._inputChange)}\" placeholder=\"${ifDefined(this.placeholder)}\" value-state=\"${ifDefined(this.valueState)}\" ?show-clear-icon=\"${this.showClearIcon}\" ?no-typeahead=\"${this.noTypeahead}\" .open=${ifDefined(this.openOnMobile)}>${ repeat(this._filteredItems, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block6.call(this, context, tags, suffix, item, index)) }</ui5-input></div></div>${ this.hasValueStateText ? block7.call(this, context, tags, suffix) : undefined }`;}\nfunction block6 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<${scopeTag(\"ui5-suggestion-item\", tags, suffix)} text=\"${ifDefined(item.text)}\" additional-text=\"${ifDefined(item.additionalText)}\"></${scopeTag(\"ui5-suggestion-item\", tags, suffix)}>` : html`<ui5-suggestion-item text=\"${ifDefined(item.text)}\" additional-text=\"${ifDefined(item.additionalText)}\"></ui5-suggestion-item>`;}\nfunction block7 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverValueStateMessage)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.open ? block8.call(this, context, tags, suffix) : undefined }</div>` : html`<div class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverValueStateMessage)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.open ? block8.call(this, context, tags, suffix) : undefined }</div>`;}\nfunction block8 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.shouldDisplayDefaultValueStateMessage ? block9.call(this, context, tags, suffix) : block10.call(this, context, tags, suffix) }`;}\nfunction block9 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block10 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\nfunction block11 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.hasValueStateText ? block12.call(this, context, tags, suffix) : undefined }`;}\nfunction block12 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"header\" class=\"ui5-responsive-popover-header ${classMap(this.classes.popoverValueState as ClassMapValue)}\" ?focused=${this._isValueStateFocused} style=\"${styleMap(this.styles.suggestionPopoverHeader)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.open ? block13.call(this, context, tags, suffix) : undefined }</div>` : html`<div slot=\"header\" class=\"ui5-responsive-popover-header ${classMap(this.classes.popoverValueState as ClassMapValue)}\" ?focused=${this._isValueStateFocused} style=\"${styleMap(this.styles.suggestionPopoverHeader)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.open ? block13.call(this, context, tags, suffix) : undefined }</div>`;}\nfunction block13 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ this.shouldDisplayDefaultValueStateMessage ? block14.call(this, context, tags, suffix) : block15.call(this, context, tags, suffix) }`;}\nfunction block14 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block15 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\nfunction block16 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`<slot name=\"${ifDefined(item._individualSlot)}\"></slot>`;}\nfunction block17 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div slot=\"footer\" class=\"ui5-responsive-popover-footer\"><${scopeTag(\"ui5-button\", tags, suffix)} design=\"Transparent\" @click=\"${this._closeRespPopover}\">OK</${scopeTag(\"ui5-button\", tags, suffix)}></div>` : html`<div slot=\"footer\" class=\"ui5-responsive-popover-footer\"><ui5-button design=\"Transparent\" @click=\"${this._closeRespPopover}\">OK</ui5-button></div>`;}\nfunction block18 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-popover\", tags, suffix)} skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex=\"-1\" class=\"ui5-valuestatemessage-popover\" horizontal-align=\"${ifDefined(this._valueStatePopoverHorizontalAlign)}\" placement=\"Bottom\" .opener=\"${ifDefined(this)}\" .open=\"${ifDefined(this.valueStateOpen)}\" @ui5-close=\"${ifDefined(this._handleValueStatePopoverAfterClose)}\" @focusout=${this._handleValueStatePopoverFocusout}><div slot=\"header\" class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverHeader)}\"><${scopeTag(\"ui5-icon\", tags, suffix)} class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></${scopeTag(\"ui5-icon\", tags, suffix)}>${ this.shouldDisplayDefaultValueStateMessage ? block19.call(this, context, tags, suffix) : block20.call(this, context, tags, suffix) }</div></${scopeTag(\"ui5-popover\", tags, suffix)}>` : html`<ui5-popover skip-registry-update prevent-initial-focus prevent-focus-restore hide-arrow tabindex=\"-1\" class=\"ui5-valuestatemessage-popover\" horizontal-align=\"${ifDefined(this._valueStatePopoverHorizontalAlign)}\" placement=\"Bottom\" .opener=\"${ifDefined(this)}\" .open=\"${ifDefined(this.valueStateOpen)}\" @ui5-close=\"${ifDefined(this._handleValueStatePopoverAfterClose)}\" @focusout=${this._handleValueStatePopoverFocusout}><div slot=\"header\" class=\"${classMap(this.classes.popoverValueState as ClassMapValue)}\" style=\"${styleMap(this.styles.popoverHeader)}\"><ui5-icon class=\"ui5-input-value-state-message-icon\" name=\"${ifDefined(this._valueStateMessageIcon)}\"></ui5-icon>${ this.shouldDisplayDefaultValueStateMessage ? block19.call(this, context, tags, suffix) : block20.call(this, context, tags, suffix) }</div></ui5-popover>`;}\nfunction block19 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.valueStateDefaultText)}`;}\nfunction block20 (this: ComboBox, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"valueStateMessage\"></slot>`;}\n\n\nexport default block0;"]}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/* eslint no-unused-vars: 0 */
|
|
2
2
|
import { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from "@ui5/webcomponents-base/dist/renderer/LitRenderer.js";
|
|
3
|
-
function block0(context, tags, suffix) { return html `<div class="ui5-form-root" role="
|
|
3
|
+
function block0(context, tags, suffix) { return html `<div class="ui5-form-root" role="${ifDefined(this.effectiveAccessibleRole)}" aria-labelledby="${ifDefined(this.effectiveАccessibleNameRef)}">${this.hasHeader ? block1.call(this, context, tags, suffix) : undefined}<div class="ui5-form-layout" part="layout">${this.hasGroupItems ? block4.call(this, context, tags, suffix) : block7.call(this, context, tags, suffix)}</div></div>`; }
|
|
4
4
|
function block1(context, tags, suffix) { return html `<div class="ui5-form-header" part="header">${this.hasCustomHeader ? block2.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix)}</div>`; }
|
|
5
5
|
function block2(context, tags, suffix) { return html `<slot name="header"></slot>`; }
|
|
6
6
|
function block3(context, tags, suffix) { return suffix ? html `<${scopeTag("ui5-title", tags, suffix)} id="${ifDefined(this._id)}-header-text" level="H4">${ifDefined(this.headerText)}</${scopeTag("ui5-title", tags, suffix)}>` : html `<ui5-title id="${ifDefined(this._id)}-header-text" level="H4">${ifDefined(this.headerText)}</ui5-title>`; }
|
|
7
7
|
function block4(context, tags, suffix) { return html `${repeat(this.groupItemsInfo, (item, index) => item._id || index, (item, index) => block5.call(this, context, tags, suffix, item, index))}`; }
|
|
8
|
-
function block5(context, tags, suffix, item, index) { return html `<div class="ui5-form-column ${ifDefined(item.classes)}" part="column"><div class="ui5-form-group">${item.groupItem.headerText ? block6.call(this, context, tags, suffix, item, index) : undefined}<div class="ui5-form-group-layout"><slot name="${ifDefined(item.groupItem._individualSlot)}"></slot></div></div></div>`; }
|
|
9
|
-
function block6(context, tags, suffix, item, index) { return suffix ? html `<div class="ui5-form-group-heading"><${scopeTag("ui5-title", tags, suffix)} level="H6">${ifDefined(item.groupItem.headerText)}</${scopeTag("ui5-title", tags, suffix)}></div>` : html `<div class="ui5-form-group-heading"><ui5-title level="H6">${ifDefined(item.groupItem.headerText)}</ui5-title></div>`; }
|
|
8
|
+
function block5(context, tags, suffix, item, index) { return html `<div class="ui5-form-column ${ifDefined(item.classes)}" part="column"><div class="ui5-form-group" role="form" aria-labelledby="${ifDefined(item.accessibleNameRef)}">${item.groupItem.headerText ? block6.call(this, context, tags, suffix, item, index) : undefined}<div class="ui5-form-group-layout"><slot name="${ifDefined(item.groupItem._individualSlot)}"></slot></div></div></div>`; }
|
|
9
|
+
function block6(context, tags, suffix, item, index) { return suffix ? html `<div class="ui5-form-group-heading"><${scopeTag("ui5-title", tags, suffix)} id="${ifDefined(item.groupItem._id)}-group-header-text" level="H6">${ifDefined(item.groupItem.headerText)}</${scopeTag("ui5-title", tags, suffix)}></div>` : html `<div class="ui5-form-group-heading"><ui5-title id="${ifDefined(item.groupItem._id)}-group-header-text" level="H6">${ifDefined(item.groupItem.headerText)}</ui5-title></div>`; }
|
|
10
10
|
function block7(context, tags, suffix) { return html `${repeat(this.itemsInfo, (item, index) => item._id || index, (item, index) => block8.call(this, context, tags, suffix, item, index))}`; }
|
|
11
11
|
function block8(context, tags, suffix, item, index) { return html `<div class="ui5-form-item ${ifDefined(item.classes)}"><slot name="${ifDefined(item.item._individualSlot)}"></slot></div>`; }
|
|
12
12
|
export default block0;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormTemplate.lit.js","sourceRoot":"","sources":["../../../src/generated/templates/FormTemplate.lit.ts"],"names":[],"mappings":"AAAA,8BAA8B;AAC9B,OAAO,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,sDAAsD,CAAC;AAK9I,SAAS,MAAM,CAAc,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,IAAI,CAAA,
|
|
1
|
+
{"version":3,"file":"FormTemplate.lit.js","sourceRoot":"","sources":["../../../src/generated/templates/FormTemplate.lit.ts"],"names":[],"mappings":"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","sourcesContent":["/* eslint no-unused-vars: 0 */\nimport { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\nimport type UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\nimport type Form from \"../../Form.js\";\nimport type { ClassMapValue } from \"@ui5/webcomponents-base/dist/types.js\";\n\t\nfunction block0 (this: Form, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<div class=\"ui5-form-root\" role=\"${ifDefined(this.effectiveAccessibleRole)}\" aria-labelledby=\"${ifDefined(this.effectiveАccessibleNameRef)}\">${ this.hasHeader ? block1.call(this, context, tags, suffix) : undefined }<div class=\"ui5-form-layout\" part=\"layout\">${ this.hasGroupItems ? block4.call(this, context, tags, suffix) : block7.call(this, context, tags, suffix) }</div></div>`;}\nfunction block1 (this: Form, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<div class=\"ui5-form-header\" part=\"header\">${ this.hasCustomHeader ? block2.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix) }</div>`;}\nfunction block2 (this: Form, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"header\"></slot>`;}\nfunction block3 (this: Form, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-title\", tags, suffix)} id=\"${ifDefined(this._id)}-header-text\" level=\"H4\">${ifDefined(this.headerText)}</${scopeTag(\"ui5-title\", tags, suffix)}>` : html`<ui5-title id=\"${ifDefined(this._id)}-header-text\" level=\"H4\">${ifDefined(this.headerText)}</ui5-title>`;}\nfunction block4 (this: Form, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ repeat(this.groupItemsInfo, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block5.call(this, context, tags, suffix, item, index)) }`;}\nfunction block5 (this: Form, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`<div class=\"ui5-form-column ${ifDefined(item.classes)}\" part=\"column\"><div class=\"ui5-form-group\" role=\"form\" aria-labelledby=\"${ifDefined(item.accessibleNameRef)}\">${ item.groupItem.headerText ? block6.call(this, context, tags, suffix, item, index) : undefined }<div class=\"ui5-form-group-layout\"><slot name=\"${ifDefined(item.groupItem._individualSlot)}\"></slot></div></div></div>`;}\nfunction block6 (this: Form, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return suffix ? html`<div class=\"ui5-form-group-heading\"><${scopeTag(\"ui5-title\", tags, suffix)} id=\"${ifDefined(item.groupItem._id)}-group-header-text\" level=\"H6\">${ifDefined(item.groupItem.headerText)}</${scopeTag(\"ui5-title\", tags, suffix)}></div>` : html`<div class=\"ui5-form-group-heading\"><ui5-title id=\"${ifDefined(item.groupItem._id)}-group-header-text\" level=\"H6\">${ifDefined(item.groupItem.headerText)}</ui5-title></div>`;}\nfunction block7 (this: Form, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ repeat(this.itemsInfo, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block8.call(this, context, tags, suffix, item, index)) }`;}\nfunction block8 (this: Form, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`<div class=\"ui5-form-item ${ifDefined(item.classes)}\"><slot name=\"${ifDefined(item.item._individualSlot)}\"></slot></div>`;}\n\n\nexport default block0;"]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint no-unused-vars: 0 */
|
|
2
2
|
import { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from "@ui5/webcomponents-base/dist/renderer/LitRenderer.js";
|
|
3
|
-
function block0(context, tags, suffix) { return suffix ? html `<div class="${classMap(this.classes.root)}" @focusin="${this._onfocusin}" @keydown="${this._onkeydown}" @dragenter="${this._ondragenter}" @dragover="${this._ondragover}" @drop="${this._ondrop}" @dragleave="${this._ondragleave}" @ui5-_press=${ifDefined(this.onItemPress)} @ui5-close=${ifDefined(this.onItemClose)} @ui5-toggle=${ifDefined(this.onItemToggle)} @ui5-_request-tabindex-change=${ifDefined(this.onItemTabIndexChange)} @ui5-_focused=${ifDefined(this.onItemFocused)} @ui5-_forward-after=${ifDefined(this.onForwardAfter)} @ui5-_forward-before=${ifDefined(this.onForwardBefore)} @ui5-_selection-requested=${ifDefined(this.onSelectionRequested)} @ui5-_focus-requested=${ifDefined(this.onFocusRequested)}><${scopeTag("ui5-busy-indicator", tags, suffix)} id="${ifDefined(this._id)}-busyIndicator" delay="${ifDefined(this.loadingDelay)}" ?active="${this.showBusyIndicatorOverlay}" class="ui5-list-busy-indicator"><div class="ui5-list-scroll-container">${this.header.length ? block1.call(this, context, tags, suffix) : undefined}${this.shouldRenderH1 ? block2.call(this, context, tags, suffix) : undefined}${this.hasData ? block3.call(this, context, tags, suffix) : undefined}<span id="${ifDefined(this._id)}-modeLabel" class="ui5-hidden-text">${ifDefined(this.ariaLabelModeText)}</span><ul id="${ifDefined(this._id)}-listUl" class="ui5-list-ul" role="${ifDefined(this.listAccessibleRole)}" aria-label="${ifDefined(this.ariaLabelTxt)}" aria-labelledby="${ifDefined(this.ariaLabelledBy)}"><slot></slot>${this.showNoDataText ? block4.call(this, context, tags, suffix) : undefined}</ul>${this.growsWithButton ? block5.call(this, context, tags, suffix) : undefined}${this.footerText ? block7.call(this, context, tags, suffix) : undefined}${this.hasData ? block8.call(this, context, tags, suffix) : undefined}<span tabindex="-1" aria-hidden="true" class="ui5-list-end-marker"></span></div><${scopeTag("ui5-drop-indicator", tags, suffix)} orientation="Horizontal" .ownerReference="${ifDefined(this)}"></${scopeTag("ui5-drop-indicator", tags, suffix)}></${scopeTag("ui5-busy-indicator", tags, suffix)}></div> ` : html `<div class="${classMap(this.classes.root)}" @focusin="${this._onfocusin}" @keydown="${this._onkeydown}" @dragenter="${this._ondragenter}" @dragover="${this._ondragover}" @drop="${this._ondrop}" @dragleave="${this._ondragleave}" @ui5-_press=${ifDefined(this.onItemPress)} @ui5-close=${ifDefined(this.onItemClose)} @ui5-toggle=${ifDefined(this.onItemToggle)} @ui5-_request-tabindex-change=${ifDefined(this.onItemTabIndexChange)} @ui5-_focused=${ifDefined(this.onItemFocused)} @ui5-_forward-after=${ifDefined(this.onForwardAfter)} @ui5-_forward-before=${ifDefined(this.onForwardBefore)} @ui5-_selection-requested=${ifDefined(this.onSelectionRequested)} @ui5-_focus-requested=${ifDefined(this.onFocusRequested)}><ui5-busy-indicator id="${ifDefined(this._id)}-busyIndicator" delay="${ifDefined(this.loadingDelay)}" ?active="${this.showBusyIndicatorOverlay}" class="ui5-list-busy-indicator"><div class="ui5-list-scroll-container">${this.header.length ? block1.call(this, context, tags, suffix) : undefined}${this.shouldRenderH1 ? block2.call(this, context, tags, suffix) : undefined}${this.hasData ? block3.call(this, context, tags, suffix) : undefined}<span id="${ifDefined(this._id)}-modeLabel" class="ui5-hidden-text">${ifDefined(this.ariaLabelModeText)}</span><ul id="${ifDefined(this._id)}-listUl" class="ui5-list-ul" role="${ifDefined(this.listAccessibleRole)}" aria-label="${ifDefined(this.ariaLabelTxt)}" aria-labelledby="${ifDefined(this.ariaLabelledBy)}"><slot></slot>${this.showNoDataText ? block4.call(this, context, tags, suffix) : undefined}</ul>${this.growsWithButton ? block5.call(this, context, tags, suffix) : undefined}${this.footerText ? block7.call(this, context, tags, suffix) : undefined}${this.hasData ? block8.call(this, context, tags, suffix) : undefined}<span tabindex="-1" aria-hidden="true" class="ui5-list-end-marker"></span></div><ui5-drop-indicator orientation="Horizontal" .ownerReference="${ifDefined(this)}"></ui5-drop-indicator></ui5-busy-indicator></div> `; }
|
|
3
|
+
function block0(context, tags, suffix) { return suffix ? html `<div class="${classMap(this.classes.root)}" @focusin="${this._onfocusin}" @keydown="${this._onkeydown}" @dragenter="${this._ondragenter}" @dragover="${this._ondragover}" @drop="${this._ondrop}" @dragleave="${this._ondragleave}" @ui5-_press=${ifDefined(this.onItemPress)} @ui5-close=${ifDefined(this.onItemClose)} @ui5-toggle=${ifDefined(this.onItemToggle)} @ui5-_request-tabindex-change=${ifDefined(this.onItemTabIndexChange)} @ui5-_focused=${ifDefined(this.onItemFocused)} @ui5-_forward-after=${ifDefined(this.onForwardAfter)} @ui5-_forward-before=${ifDefined(this.onForwardBefore)} @ui5-_selection-requested=${ifDefined(this.onSelectionRequested)} @ui5-_focus-requested=${ifDefined(this.onFocusRequested)}><${scopeTag("ui5-busy-indicator", tags, suffix)} id="${ifDefined(this._id)}-busyIndicator" delay="${ifDefined(this.loadingDelay)}" ?active="${this.showBusyIndicatorOverlay}" class="ui5-list-busy-indicator"><div class="ui5-list-scroll-container">${this.header.length ? block1.call(this, context, tags, suffix) : undefined}${this.shouldRenderH1 ? block2.call(this, context, tags, suffix) : undefined}${this.hasData ? block3.call(this, context, tags, suffix) : undefined}<span id="${ifDefined(this._id)}-modeLabel" class="ui5-hidden-text">${ifDefined(this.ariaLabelModeText)}</span><ul id="${ifDefined(this._id)}-listUl" class="ui5-list-ul" role="${ifDefined(this.listAccessibleRole)}" aria-label="${ifDefined(this.ariaLabelTxt)}" aria-labelledby="${ifDefined(this.ariaLabelledBy)}" aria-description="${ifDefined(this.ariaDescriptionText)}"><slot></slot>${this.showNoDataText ? block4.call(this, context, tags, suffix) : undefined}</ul>${this.growsWithButton ? block5.call(this, context, tags, suffix) : undefined}${this.footerText ? block7.call(this, context, tags, suffix) : undefined}${this.hasData ? block8.call(this, context, tags, suffix) : undefined}<span tabindex="-1" aria-hidden="true" class="ui5-list-end-marker"></span></div><${scopeTag("ui5-drop-indicator", tags, suffix)} orientation="Horizontal" .ownerReference="${ifDefined(this)}"></${scopeTag("ui5-drop-indicator", tags, suffix)}></${scopeTag("ui5-busy-indicator", tags, suffix)}></div> ` : html `<div class="${classMap(this.classes.root)}" @focusin="${this._onfocusin}" @keydown="${this._onkeydown}" @dragenter="${this._ondragenter}" @dragover="${this._ondragover}" @drop="${this._ondrop}" @dragleave="${this._ondragleave}" @ui5-_press=${ifDefined(this.onItemPress)} @ui5-close=${ifDefined(this.onItemClose)} @ui5-toggle=${ifDefined(this.onItemToggle)} @ui5-_request-tabindex-change=${ifDefined(this.onItemTabIndexChange)} @ui5-_focused=${ifDefined(this.onItemFocused)} @ui5-_forward-after=${ifDefined(this.onForwardAfter)} @ui5-_forward-before=${ifDefined(this.onForwardBefore)} @ui5-_selection-requested=${ifDefined(this.onSelectionRequested)} @ui5-_focus-requested=${ifDefined(this.onFocusRequested)}><ui5-busy-indicator id="${ifDefined(this._id)}-busyIndicator" delay="${ifDefined(this.loadingDelay)}" ?active="${this.showBusyIndicatorOverlay}" class="ui5-list-busy-indicator"><div class="ui5-list-scroll-container">${this.header.length ? block1.call(this, context, tags, suffix) : undefined}${this.shouldRenderH1 ? block2.call(this, context, tags, suffix) : undefined}${this.hasData ? block3.call(this, context, tags, suffix) : undefined}<span id="${ifDefined(this._id)}-modeLabel" class="ui5-hidden-text">${ifDefined(this.ariaLabelModeText)}</span><ul id="${ifDefined(this._id)}-listUl" class="ui5-list-ul" role="${ifDefined(this.listAccessibleRole)}" aria-label="${ifDefined(this.ariaLabelTxt)}" aria-labelledby="${ifDefined(this.ariaLabelledBy)}" aria-description="${ifDefined(this.ariaDescriptionText)}"><slot></slot>${this.showNoDataText ? block4.call(this, context, tags, suffix) : undefined}</ul>${this.growsWithButton ? block5.call(this, context, tags, suffix) : undefined}${this.footerText ? block7.call(this, context, tags, suffix) : undefined}${this.hasData ? block8.call(this, context, tags, suffix) : undefined}<span tabindex="-1" aria-hidden="true" class="ui5-list-end-marker"></span></div><ui5-drop-indicator orientation="Horizontal" .ownerReference="${ifDefined(this)}"></ui5-drop-indicator></ui5-busy-indicator></div> `; }
|
|
4
4
|
function block1(context, tags, suffix) { return html `<slot name="header" />`; }
|
|
5
5
|
function block2(context, tags, suffix) { return html `<header id="${ifDefined(this.headerID)}" class="ui5-list-header">${ifDefined(this.headerText)}</header>`; }
|
|
6
6
|
function block3(context, tags, suffix) { return html `<div id="${ifDefined(this._id)}-before" tabindex="0" role="none" class="ui5-list-focusarea"></div>`; }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListTemplate.lit.js","sourceRoot":"","sources":["../../../src/generated/templates/ListTemplate.lit.ts"],"names":[],"mappings":"AAAA,8BAA8B;AAC9B,OAAO,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,sDAAsD,CAAC;AAK9I,SAAS,MAAM,CAAc,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,MAAM,CAAC,CAAC,CAAC,IAAI,CAAA,eAAe,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,IAAqB,CAAC,eAAe,IAAI,CAAC,UAAU,eAAe,IAAI,CAAC,UAAU,iBAAiB,IAAI,CAAC,YAAY,gBAAgB,IAAI,CAAC,WAAW,YAAY,IAAI,CAAC,OAAO,iBAAiB,IAAI,CAAC,YAAY,iBAAiB,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,eAAe,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,gBAAgB,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,kCAAkC,SAAS,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,SAAS,CAAC,IAAI,CAAC,aAAa,CAAC,wBAAwB,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,yBAAyB,SAAS,CAAC,IAAI,CAAC,eAAe,CAAC,8BAA8B,SAAS,CAAC,IAAI,CAAC,oBAAoB,CAAC,0BAA0B,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC,KAAK,QAAQ,CAAC,oBAAoB,EAAE,IAAI,EAAE,MAAM,CAAC,QAAQ,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,0BAA0B,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,cAAc,IAAI,CAAC,wBAAwB,4EAA6E,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,GAAI,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,GAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,aAAa,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,uCAAuC,SAAS,CAAC,IAAI,CAAC,iBAAiB,CAAC,kBAAkB,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,sCAAsC,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,iBAAiB,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,sBAAsB,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,kBAAmB,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,QAAS,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,GAAI,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,GAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,oFAAoF,QAAQ,CAAC,oBAAoB,EAAE,IAAI,EAAE,MAAM,CAAC,8CAA8C,SAAS,CAAC,IAAI,CAAC,OAAO,QAAQ,CAAC,oBAAoB,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,QAAQ,CAAC,oBAAoB,EAAE,IAAI,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAA,eAAe,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,IAAqB,CAAC,eAAe,IAAI,CAAC,UAAU,eAAe,IAAI,CAAC,UAAU,iBAAiB,IAAI,CAAC,YAAY,gBAAgB,IAAI,CAAC,WAAW,YAAY,IAAI,CAAC,OAAO,iBAAiB,IAAI,CAAC,YAAY,iBAAiB,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,eAAe,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,gBAAgB,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,kCAAkC,SAAS,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,SAAS,CAAC,IAAI,CAAC,aAAa,CAAC,wBAAwB,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,yBAAyB,SAAS,CAAC,IAAI,CAAC,eAAe,CAAC,8BAA8B,SAAS,CAAC,IAAI,CAAC,oBAAoB,CAAC,0BAA0B,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC,4BAA4B,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,0BAA0B,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,cAAc,IAAI,CAAC,wBAAwB,4EAA6E,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,GAAI,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,GAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,aAAa,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,uCAAuC,SAAS,CAAC,IAAI,CAAC,iBAAiB,CAAC,kBAAkB,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,sCAAsC,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,iBAAiB,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,sBAAsB,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,kBAAmB,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,QAAS,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,GAAI,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,GAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,iJAAiJ,SAAS,CAAC,IAAI,CAAC,qDAAqD,CAAC,CAAA,CAAC;AACvrI,SAAS,MAAM,CAAc,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,IAAI,CAAA,wBAAwB,CAAC,CAAA,CAAC;AACrI,SAAS,MAAM,CAAc,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,IAAI,CAAA,eAAe,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,6BAA6B,SAAS,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,CAAA,CAAC;AACtN,SAAS,MAAM,CAAc,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,IAAI,CAAA,YAAY,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,qEAAqE,CAAC,CAAA,CAAC;AACjN,SAAS,MAAM,CAAc,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,IAAI,CAAA,wBAAwB,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,6CAA6C,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,8CAA8C,SAAS,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,CAAA,CAAC;AAC7S,SAAS,MAAM,CAAc,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,IAAI,CAAA,6GAA6G,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,kCAAkC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,iCAAiC,IAAI,CAAC,eAAe,aAAa,IAAI,CAAC,gBAAgB,eAAe,IAAI,CAAC,kBAAkB,aAAa,IAAI,CAAC,gBAAgB,iBAAiB,IAAI,CAAC,oBAAoB,eAAe,IAAI,CAAC,kBAAkB,0BAA2B,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAU,aAAa,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,4CAA4C,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,qBAAqB,CAAC,CAAA,CAAC;AACnvB,SAAS,MAAM,CAAc,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,MAAM,CAAC,CAAC,CAAC,IAAI,CAAA,IAAI,QAAQ,CAAC,oBAAoB,EAAE,IAAI,EAAE,MAAM,CAAC,WAAW,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,6DAA6D,QAAQ,CAAC,oBAAoB,EAAE,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAA,8BAA8B,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,+EAA+E,CAAC,CAAA,CAAC;AACzc,SAAS,MAAM,CAAc,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,IAAI,CAAA,eAAe,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,oCAAoC,SAAS,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,CAAA,CAAC;AACxN,SAAS,MAAM,CAAc,OAAmB,EAAE,IAAc,EAAE,MAA0B,IAAI,OAAO,IAAI,CAAA,YAAY,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,oEAAoE,CAAC,CAAA,CAAC;AAGhN,eAAe,MAAM,CAAC","sourcesContent":["/* eslint no-unused-vars: 0 */\nimport { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\nimport type UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\nimport type List from \"../../List.js\";\nimport type { ClassMapValue } from \"@ui5/webcomponents-base/dist/types.js\";\n\t\nfunction block0 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div class=\"${classMap(this.classes.root as ClassMapValue)}\" @focusin=\"${this._onfocusin}\" @keydown=\"${this._onkeydown}\" @dragenter=\"${this._ondragenter}\" @dragover=\"${this._ondragover}\" @drop=\"${this._ondrop}\" @dragleave=\"${this._ondragleave}\" @ui5-_press=${ifDefined(this.onItemPress)} @ui5-close=${ifDefined(this.onItemClose)} @ui5-toggle=${ifDefined(this.onItemToggle)} @ui5-_request-tabindex-change=${ifDefined(this.onItemTabIndexChange)} @ui5-_focused=${ifDefined(this.onItemFocused)} @ui5-_forward-after=${ifDefined(this.onForwardAfter)} @ui5-_forward-before=${ifDefined(this.onForwardBefore)} @ui5-_selection-requested=${ifDefined(this.onSelectionRequested)} @ui5-_focus-requested=${ifDefined(this.onFocusRequested)}><${scopeTag(\"ui5-busy-indicator\", tags, suffix)} id=\"${ifDefined(this._id)}-busyIndicator\" delay=\"${ifDefined(this.loadingDelay)}\" ?active=\"${this.showBusyIndicatorOverlay}\" class=\"ui5-list-busy-indicator\"><div class=\"ui5-list-scroll-container\">${ this.header.length ? block1.call(this, context, tags, suffix) : undefined }${ this.shouldRenderH1 ? block2.call(this, context, tags, suffix) : undefined }${ this.hasData ? block3.call(this, context, tags, suffix) : undefined }<span id=\"${ifDefined(this._id)}-modeLabel\" class=\"ui5-hidden-text\">${ifDefined(this.ariaLabelModeText)}</span><ul id=\"${ifDefined(this._id)}-listUl\" class=\"ui5-list-ul\" role=\"${ifDefined(this.listAccessibleRole)}\" aria-label=\"${ifDefined(this.ariaLabelTxt)}\" aria-labelledby=\"${ifDefined(this.ariaLabelledBy)}\"><slot></slot>${ this.showNoDataText ? block4.call(this, context, tags, suffix) : undefined }</ul>${ this.growsWithButton ? block5.call(this, context, tags, suffix) : undefined }${ this.footerText ? block7.call(this, context, tags, suffix) : undefined }${ this.hasData ? block8.call(this, context, tags, suffix) : undefined }<span tabindex=\"-1\" aria-hidden=\"true\" class=\"ui5-list-end-marker\"></span></div><${scopeTag(\"ui5-drop-indicator\", tags, suffix)} orientation=\"Horizontal\" .ownerReference=\"${ifDefined(this)}\"></${scopeTag(\"ui5-drop-indicator\", tags, suffix)}></${scopeTag(\"ui5-busy-indicator\", tags, suffix)}></div> ` : html`<div class=\"${classMap(this.classes.root as ClassMapValue)}\" @focusin=\"${this._onfocusin}\" @keydown=\"${this._onkeydown}\" @dragenter=\"${this._ondragenter}\" @dragover=\"${this._ondragover}\" @drop=\"${this._ondrop}\" @dragleave=\"${this._ondragleave}\" @ui5-_press=${ifDefined(this.onItemPress)} @ui5-close=${ifDefined(this.onItemClose)} @ui5-toggle=${ifDefined(this.onItemToggle)} @ui5-_request-tabindex-change=${ifDefined(this.onItemTabIndexChange)} @ui5-_focused=${ifDefined(this.onItemFocused)} @ui5-_forward-after=${ifDefined(this.onForwardAfter)} @ui5-_forward-before=${ifDefined(this.onForwardBefore)} @ui5-_selection-requested=${ifDefined(this.onSelectionRequested)} @ui5-_focus-requested=${ifDefined(this.onFocusRequested)}><ui5-busy-indicator id=\"${ifDefined(this._id)}-busyIndicator\" delay=\"${ifDefined(this.loadingDelay)}\" ?active=\"${this.showBusyIndicatorOverlay}\" class=\"ui5-list-busy-indicator\"><div class=\"ui5-list-scroll-container\">${ this.header.length ? block1.call(this, context, tags, suffix) : undefined }${ this.shouldRenderH1 ? block2.call(this, context, tags, suffix) : undefined }${ this.hasData ? block3.call(this, context, tags, suffix) : undefined }<span id=\"${ifDefined(this._id)}-modeLabel\" class=\"ui5-hidden-text\">${ifDefined(this.ariaLabelModeText)}</span><ul id=\"${ifDefined(this._id)}-listUl\" class=\"ui5-list-ul\" role=\"${ifDefined(this.listAccessibleRole)}\" aria-label=\"${ifDefined(this.ariaLabelTxt)}\" aria-labelledby=\"${ifDefined(this.ariaLabelledBy)}\"><slot></slot>${ this.showNoDataText ? block4.call(this, context, tags, suffix) : undefined }</ul>${ this.growsWithButton ? block5.call(this, context, tags, suffix) : undefined }${ this.footerText ? block7.call(this, context, tags, suffix) : undefined }${ this.hasData ? block8.call(this, context, tags, suffix) : undefined }<span tabindex=\"-1\" aria-hidden=\"true\" class=\"ui5-list-end-marker\"></span></div><ui5-drop-indicator orientation=\"Horizontal\" .ownerReference=\"${ifDefined(this)}\"></ui5-drop-indicator></ui5-busy-indicator></div> `;}\nfunction block1 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"header\" />`;}\nfunction block2 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<header id=\"${ifDefined(this.headerID)}\" class=\"ui5-list-header\">${ifDefined(this.headerText)}</header>`;}\nfunction block3 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<div id=\"${ifDefined(this._id)}-before\" tabindex=\"0\" role=\"none\" class=\"ui5-list-focusarea\"></div>`;}\nfunction block4 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<li tabindex=\"0\" id=\"${ifDefined(this._id)}-nodata\" class=\"ui5-list-nodata\"><div id=\"${ifDefined(this._id)}-nodata-text\" class=\"ui5-list-nodata-text\">${ifDefined(this.noDataText)}</div></li>`;}\nfunction block5 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<div growing-button part=\"growing-button\"><div part=\"growing-button-inner\" tabindex=\"0\" role=\"button\" id=\"${ifDefined(this._id)}-growing-btn\" aria-labelledby=\"${ifDefined(this._id)}-growingButton-text\" ?active=\"${this._loadMoreActive}\" @click=\"${this._onLoadMoreClick}\" @keydown=\"${this._onLoadMoreKeydown}\" @keyup=\"${this._onLoadMoreKeyup}\" @mousedown=\"${this._onLoadMoreMousedown}\" @mouseup=\"${this._onLoadMoreMouseup}\" growing-button-inner>${ this.loading ? block6.call(this, context, tags, suffix) : undefined }<span id=\"${ifDefined(this._id)}-growingButton-text\" growing-button-text>${ifDefined(this._growingButtonText)}</span></div></div>`;}\nfunction block6 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-busy-indicator\", tags, suffix)} delay=\"${ifDefined(this.loadingDelay)}\" class=\"ui5-list-growing-button-busy-indicator\" active></${scopeTag(\"ui5-busy-indicator\", tags, suffix)}>` : html`<ui5-busy-indicator delay=\"${ifDefined(this.loadingDelay)}\" class=\"ui5-list-growing-button-busy-indicator\" active></ui5-busy-indicator>`;}\nfunction block7 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<footer id=\"${ifDefined(this._id)}-footer\" class=\"ui5-list-footer\">${ifDefined(this.footerText)}</footer>`;}\nfunction block8 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<div id=\"${ifDefined(this._id)}-after\" tabindex=\"0\" role=\"none\" class=\"ui5-list-focusarea\"></div>`;}\n\n\nexport default block0;"]}
|
|
1
|
+
{"version":3,"file":"ListTemplate.lit.js","sourceRoot":"","sources":["../../../src/generated/templates/ListTemplate.lit.ts"],"names":[],"mappings":"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","sourcesContent":["/* eslint no-unused-vars: 0 */\nimport { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\nimport type UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\nimport type List from \"../../List.js\";\nimport type { ClassMapValue } from \"@ui5/webcomponents-base/dist/types.js\";\n\t\nfunction block0 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<div class=\"${classMap(this.classes.root as ClassMapValue)}\" @focusin=\"${this._onfocusin}\" @keydown=\"${this._onkeydown}\" @dragenter=\"${this._ondragenter}\" @dragover=\"${this._ondragover}\" @drop=\"${this._ondrop}\" @dragleave=\"${this._ondragleave}\" @ui5-_press=${ifDefined(this.onItemPress)} @ui5-close=${ifDefined(this.onItemClose)} @ui5-toggle=${ifDefined(this.onItemToggle)} @ui5-_request-tabindex-change=${ifDefined(this.onItemTabIndexChange)} @ui5-_focused=${ifDefined(this.onItemFocused)} @ui5-_forward-after=${ifDefined(this.onForwardAfter)} @ui5-_forward-before=${ifDefined(this.onForwardBefore)} @ui5-_selection-requested=${ifDefined(this.onSelectionRequested)} @ui5-_focus-requested=${ifDefined(this.onFocusRequested)}><${scopeTag(\"ui5-busy-indicator\", tags, suffix)} id=\"${ifDefined(this._id)}-busyIndicator\" delay=\"${ifDefined(this.loadingDelay)}\" ?active=\"${this.showBusyIndicatorOverlay}\" class=\"ui5-list-busy-indicator\"><div class=\"ui5-list-scroll-container\">${ this.header.length ? block1.call(this, context, tags, suffix) : undefined }${ this.shouldRenderH1 ? block2.call(this, context, tags, suffix) : undefined }${ this.hasData ? block3.call(this, context, tags, suffix) : undefined }<span id=\"${ifDefined(this._id)}-modeLabel\" class=\"ui5-hidden-text\">${ifDefined(this.ariaLabelModeText)}</span><ul id=\"${ifDefined(this._id)}-listUl\" class=\"ui5-list-ul\" role=\"${ifDefined(this.listAccessibleRole)}\" aria-label=\"${ifDefined(this.ariaLabelTxt)}\" aria-labelledby=\"${ifDefined(this.ariaLabelledBy)}\" aria-description=\"${ifDefined(this.ariaDescriptionText)}\"><slot></slot>${ this.showNoDataText ? block4.call(this, context, tags, suffix) : undefined }</ul>${ this.growsWithButton ? block5.call(this, context, tags, suffix) : undefined }${ this.footerText ? block7.call(this, context, tags, suffix) : undefined }${ this.hasData ? block8.call(this, context, tags, suffix) : undefined }<span tabindex=\"-1\" aria-hidden=\"true\" class=\"ui5-list-end-marker\"></span></div><${scopeTag(\"ui5-drop-indicator\", tags, suffix)} orientation=\"Horizontal\" .ownerReference=\"${ifDefined(this)}\"></${scopeTag(\"ui5-drop-indicator\", tags, suffix)}></${scopeTag(\"ui5-busy-indicator\", tags, suffix)}></div> ` : html`<div class=\"${classMap(this.classes.root as ClassMapValue)}\" @focusin=\"${this._onfocusin}\" @keydown=\"${this._onkeydown}\" @dragenter=\"${this._ondragenter}\" @dragover=\"${this._ondragover}\" @drop=\"${this._ondrop}\" @dragleave=\"${this._ondragleave}\" @ui5-_press=${ifDefined(this.onItemPress)} @ui5-close=${ifDefined(this.onItemClose)} @ui5-toggle=${ifDefined(this.onItemToggle)} @ui5-_request-tabindex-change=${ifDefined(this.onItemTabIndexChange)} @ui5-_focused=${ifDefined(this.onItemFocused)} @ui5-_forward-after=${ifDefined(this.onForwardAfter)} @ui5-_forward-before=${ifDefined(this.onForwardBefore)} @ui5-_selection-requested=${ifDefined(this.onSelectionRequested)} @ui5-_focus-requested=${ifDefined(this.onFocusRequested)}><ui5-busy-indicator id=\"${ifDefined(this._id)}-busyIndicator\" delay=\"${ifDefined(this.loadingDelay)}\" ?active=\"${this.showBusyIndicatorOverlay}\" class=\"ui5-list-busy-indicator\"><div class=\"ui5-list-scroll-container\">${ this.header.length ? block1.call(this, context, tags, suffix) : undefined }${ this.shouldRenderH1 ? block2.call(this, context, tags, suffix) : undefined }${ this.hasData ? block3.call(this, context, tags, suffix) : undefined }<span id=\"${ifDefined(this._id)}-modeLabel\" class=\"ui5-hidden-text\">${ifDefined(this.ariaLabelModeText)}</span><ul id=\"${ifDefined(this._id)}-listUl\" class=\"ui5-list-ul\" role=\"${ifDefined(this.listAccessibleRole)}\" aria-label=\"${ifDefined(this.ariaLabelTxt)}\" aria-labelledby=\"${ifDefined(this.ariaLabelledBy)}\" aria-description=\"${ifDefined(this.ariaDescriptionText)}\"><slot></slot>${ this.showNoDataText ? block4.call(this, context, tags, suffix) : undefined }</ul>${ this.growsWithButton ? block5.call(this, context, tags, suffix) : undefined }${ this.footerText ? block7.call(this, context, tags, suffix) : undefined }${ this.hasData ? block8.call(this, context, tags, suffix) : undefined }<span tabindex=\"-1\" aria-hidden=\"true\" class=\"ui5-list-end-marker\"></span></div><ui5-drop-indicator orientation=\"Horizontal\" .ownerReference=\"${ifDefined(this)}\"></ui5-drop-indicator></ui5-busy-indicator></div> `;}\nfunction block1 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"header\" />`;}\nfunction block2 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<header id=\"${ifDefined(this.headerID)}\" class=\"ui5-list-header\">${ifDefined(this.headerText)}</header>`;}\nfunction block3 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<div id=\"${ifDefined(this._id)}-before\" tabindex=\"0\" role=\"none\" class=\"ui5-list-focusarea\"></div>`;}\nfunction block4 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<li tabindex=\"0\" id=\"${ifDefined(this._id)}-nodata\" class=\"ui5-list-nodata\"><div id=\"${ifDefined(this._id)}-nodata-text\" class=\"ui5-list-nodata-text\">${ifDefined(this.noDataText)}</div></li>`;}\nfunction block5 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<div growing-button part=\"growing-button\"><div part=\"growing-button-inner\" tabindex=\"0\" role=\"button\" id=\"${ifDefined(this._id)}-growing-btn\" aria-labelledby=\"${ifDefined(this._id)}-growingButton-text\" ?active=\"${this._loadMoreActive}\" @click=\"${this._onLoadMoreClick}\" @keydown=\"${this._onLoadMoreKeydown}\" @keyup=\"${this._onLoadMoreKeyup}\" @mousedown=\"${this._onLoadMoreMousedown}\" @mouseup=\"${this._onLoadMoreMouseup}\" growing-button-inner>${ this.loading ? block6.call(this, context, tags, suffix) : undefined }<span id=\"${ifDefined(this._id)}-growingButton-text\" growing-button-text>${ifDefined(this._growingButtonText)}</span></div></div>`;}\nfunction block6 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-busy-indicator\", tags, suffix)} delay=\"${ifDefined(this.loadingDelay)}\" class=\"ui5-list-growing-button-busy-indicator\" active></${scopeTag(\"ui5-busy-indicator\", tags, suffix)}>` : html`<ui5-busy-indicator delay=\"${ifDefined(this.loadingDelay)}\" class=\"ui5-list-growing-button-busy-indicator\" active></ui5-busy-indicator>`;}\nfunction block7 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<footer id=\"${ifDefined(this._id)}-footer\" class=\"ui5-list-footer\">${ifDefined(this.footerText)}</footer>`;}\nfunction block8 (this: List, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<div id=\"${ifDefined(this._id)}-after\" tabindex=\"0\" role=\"none\" class=\"ui5-list-focusarea\"></div>`;}\n\n\nexport default block0;"]}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js";
|
|
2
|
+
import type MultiComboBoxItemGroup from "../../MultiComboBoxItemGroup.js";
|
|
3
|
+
declare function block0(this: MultiComboBoxItemGroup, context: UI5Element, tags: string[], suffix: string | undefined): import("lit-html").TemplateResult;
|
|
4
|
+
export default block0;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* eslint no-unused-vars: 0 */
|
|
2
|
+
import { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from "@ui5/webcomponents-base/dist/renderer/LitRenderer.js";
|
|
3
|
+
function block0(context, tags, suffix) { return suffix ? html `<ul class="ui5-group-li-root" role="group" @dragenter="${this._ondragenter}" @dragover="${this._ondragover}" @drop="${this._ondrop}" @dragleave="${this._ondragleave}">${this.hasHeader ? block1.call(this, context, tags, suffix) : undefined}${repeat(this.items, (item, index) => item._id || index, (item, index) => block4.call(this, context, tags, suffix, item, index))}<${scopeTag("ui5-drop-indicator", tags, suffix)} orientation="Horizontal" .ownerReference="${ifDefined(this)}"></${scopeTag("ui5-drop-indicator", tags, suffix)}></ul>` : html `<ul class="ui5-group-li-root" role="group" @dragenter="${this._ondragenter}" @dragover="${this._ondragover}" @drop="${this._ondrop}" @dragleave="${this._ondragleave}">${this.hasHeader ? block1.call(this, context, tags, suffix) : undefined}${repeat(this.items, (item, index) => item._id || index, (item, index) => block4.call(this, context, tags, suffix, item, index))}<ui5-drop-indicator orientation="Horizontal" .ownerReference="${ifDefined(this)}"></ui5-drop-indicator></ul>`; }
|
|
4
|
+
function block1(context, tags, suffix) { return suffix ? html `<${scopeTag("ui5-li-group-header", tags, suffix)} ?focused="${this.focused}" part="header">${this.hasFormattedHeader ? block2.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix)}</${scopeTag("ui5-li-group-header", tags, suffix)}>` : html `<ui5-li-group-header ?focused="${this.focused}" part="header">${this.hasFormattedHeader ? block2.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix)}</ui5-li-group-header>`; }
|
|
5
|
+
function block2(context, tags, suffix) { return html `<slot name="header"></slot>`; }
|
|
6
|
+
function block3(context, tags, suffix) { return html `${ifDefined(this.headerText)}`; }
|
|
7
|
+
function block4(context, tags, suffix, item, index) { return html `${item._isVisible ? block5.call(this, context, tags, suffix, item, index) : undefined}`; }
|
|
8
|
+
function block5(context, tags, suffix, item, index) { return html `<slot name="${ifDefined(item._individualSlot)}"></slot>`; }
|
|
9
|
+
export default block0;
|
|
10
|
+
//# sourceMappingURL=MultiComboBoxItemGroupTemplate.lit.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MultiComboBoxItemGroupTemplate.lit.js","sourceRoot":"","sources":["../../../src/generated/templates/MultiComboBoxItemGroupTemplate.lit.ts"],"names":[],"mappings":"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","sourcesContent":["/* eslint no-unused-vars: 0 */\nimport { html, svg, repeat, classMap, styleMap, ifDefined, unsafeHTML, scopeTag } from \"@ui5/webcomponents-base/dist/renderer/LitRenderer.js\";\nimport type UI5Element from \"@ui5/webcomponents-base/dist/UI5Element.js\";\nimport type MultiComboBoxItemGroup from \"../../MultiComboBoxItemGroup.js\";\nimport type { ClassMapValue } from \"@ui5/webcomponents-base/dist/types.js\";\n\t\nfunction block0 (this: MultiComboBoxItemGroup, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<ul class=\"ui5-group-li-root\" role=\"group\" @dragenter=\"${this._ondragenter}\" @dragover=\"${this._ondragover}\" @drop=\"${this._ondrop}\" @dragleave=\"${this._ondragleave}\">${ this.hasHeader ? block1.call(this, context, tags, suffix) : undefined }${ repeat(this.items, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block4.call(this, context, tags, suffix, item, index)) }<${scopeTag(\"ui5-drop-indicator\", tags, suffix)} orientation=\"Horizontal\" .ownerReference=\"${ifDefined(this)}\"></${scopeTag(\"ui5-drop-indicator\", tags, suffix)}></ul>` : html`<ul class=\"ui5-group-li-root\" role=\"group\" @dragenter=\"${this._ondragenter}\" @dragover=\"${this._ondragover}\" @drop=\"${this._ondrop}\" @dragleave=\"${this._ondragleave}\">${ this.hasHeader ? block1.call(this, context, tags, suffix) : undefined }${ repeat(this.items, (item, index) => (item as typeof item & {_id?: any})._id || index, (item, index: number) => block4.call(this, context, tags, suffix, item, index)) }<ui5-drop-indicator orientation=\"Horizontal\" .ownerReference=\"${ifDefined(this)}\"></ui5-drop-indicator></ul>`;}\nfunction block1 (this: MultiComboBoxItemGroup, context: UI5Element, tags: string[], suffix: string | undefined) { return suffix ? html`<${scopeTag(\"ui5-li-group-header\", tags, suffix)} ?focused=\"${this.focused}\" part=\"header\">${ this.hasFormattedHeader ? block2.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix) }</${scopeTag(\"ui5-li-group-header\", tags, suffix)}>` : html`<ui5-li-group-header ?focused=\"${this.focused}\" part=\"header\">${ this.hasFormattedHeader ? block2.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix) }</ui5-li-group-header>`;}\nfunction block2 (this: MultiComboBoxItemGroup, context: UI5Element, tags: string[], suffix: string | undefined) { return html`<slot name=\"header\"></slot>`;}\nfunction block3 (this: MultiComboBoxItemGroup, context: UI5Element, tags: string[], suffix: string | undefined) { return html`${ifDefined(this.headerText)}`;}\nfunction block4 (this: MultiComboBoxItemGroup, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`${ item._isVisible ? block5.call(this, context, tags, suffix, item, index) : undefined }`;}\nfunction block5 (this: MultiComboBoxItemGroup, context: UI5Element, tags: string[], suffix: string | undefined, item: any, index: number) { return html`<slot name=\"${ifDefined(item._individualSlot)}\"></slot>`;}\n\n\nexport default block0;"]}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js";
|
|
2
|
+
import type MultiComboBoxItem from "../../MultiComboBoxItem.js";
|
|
3
|
+
declare function block0(this: MultiComboBoxItem, context: UI5Element, tags: string[], suffix: string | undefined): import("lit-html").TemplateResult;
|
|
4
|
+
export default block0;
|