You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Sets the placeholder string on the search box.",
22
+
defaultValue: "Search..."
23
+
},
24
+
{
25
+
name: "options",
26
+
description: "Sets the options available to the search component. Can either be an array or a function that takes a query and returns a Promise for remote lookup."
27
+
},
28
+
{
29
+
name: "optionsField",
30
+
description: "Sets the property name that the search element uses to display each option. Supports dot notation for nested properties."
31
+
},
32
+
{
33
+
name: "searchDelay",
34
+
description: "Sets the amount of time in milliseconds to wait after the last keypress before running a search.",
35
+
defaultValue: "200"
36
+
},
37
+
{
38
+
name: "icon",
39
+
description: "Sets whether or not the search displays an icon. Loading state is automatically applied when searching.",
40
+
defaultValue: "true"
41
+
},
42
+
{
43
+
name: "ngModel",
44
+
description: "Bind the search selected item to the value of the provided variable."
45
+
}
46
+
],
47
+
events: [
48
+
{
49
+
name: "ngModelChange",
50
+
description: "Fires whenever the search's selected item is changed. <code>[(ngModel)]</code> syntax is supported."
51
+
},
52
+
{
53
+
name: "onItemSelected",
54
+
description: "Fires whenever the search's selected item is changed. The selected value is passed as <code>$event</code>."
0 commit comments