We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ada41a commit 8c98e80Copy full SHA for 8c98e80
packages/main/src/ComboBox.hbs
@@ -25,6 +25,10 @@
25
aria-label="{{ariaLabelText}}"
26
/>
27
28
+ {{#if icon}}
29
+ <slot name="icon"></slot>
30
+ {{/if}}
31
+
32
{{#unless readonly}}
33
<ui5-icon
34
name="slim-arrow-down"
packages/main/src/ComboBox.js
@@ -267,6 +267,18 @@ const metadata = {
267
valueStateMessage: {
268
type: HTMLElement,
269
},
270
271
+ /**
272
+ * Defines the icon to be displayed in the input field.
273
+ *
274
+ * @type {HTMLElement[]}
275
+ * @slot
276
+ * @public
277
+ * @since 1.0.0-rc.9
278
+ */
279
+ icon: {
280
+ type: HTMLElement,
281
+ },
282
283
events: /** @lends sap.ui.webcomponents.main.ComboBox.prototype */ {
284
/**
0 commit comments