We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef525fb commit 0fde573Copy full SHA for 0fde573
packages/main/src/MultiComboBox.hbs
@@ -53,6 +53,10 @@
53
aria-describedby="{{valueStateTextId}}"
54
/>
55
56
+ {{#if icon}}
57
+ <slot name="icon"></slot>
58
+ {{/if}}
59
+
60
{{#unless readonly}}
61
<ui5-icon name="slim-arrow-down"
62
input-icon
packages/main/src/MultiComboBox.js
@@ -64,6 +64,19 @@ const metadata = {
64
type: HTMLElement,
65
listenFor: { include: ["*"] },
66
},
67
68
+ /**
69
+ * Defines the icon to be displayed in the <code>ui5-multi-combobox</code>.
70
+ *
71
+ * @type {HTMLElement[]}
72
+ * @slot
73
+ * @public
74
+ * @since 1.0.0-rc.9
75
+ */
76
+ icon: {
77
+ type: HTMLElement,
78
+ },
79
80
81
properties: /** @lends sap.ui.webcomponents.main.MultiComboBox.prototype */ {
82
/**
0 commit comments