33 | {filterValueText}
34 |
35 | Array.<Field>](#Field) | The fields settings |
60 | | filterValue | [FilterValue](#FilterValue) | The filterValue settings |
61 | | groups | [Array.<Group>](#Group) | The groups settings |
62 | | onFilterValueChanged | event | The filter value changed handler |
63 |
64 |
65 |
66 | ### FilterValue : Object
67 | **Properties**
68 |
69 | | Name | Type | Description |
70 | | --- | --- | --- |
71 | | groupName | string | Group name |
72 | | items | Array.<(FilterValueGroup\|FilterValueItem)> | Items in group |
73 |
74 |
75 |
76 | ### FilterValueGroup : Object
77 | **Properties**
78 |
79 | | Name | Type | Description |
80 | | --- | --- | --- |
81 | | key | key | Item key |
82 | | groupName | string | Group name |
83 | | items | Array.<(FilterValueGroup\|FilterValueItem)> | Items in group |
84 |
85 |
86 |
87 | ### FilterValueItem : Object
88 | **Properties**
89 |
90 | | Name | Type | Description |
91 | | --- | --- | --- |
92 | | key | key | Item key |
93 | | field | string | Field |
94 | | operator | string | Operator |
95 | | value | any | Value |
96 |
97 |
98 |
99 | ### Field : Object
100 | **Properties**
101 |
102 | | Name | Type | Description |
103 | | --- | --- | --- |
104 | | name | string | Field name |
105 | | caption | string | Field caption |
106 | | operators | [Array.<Operator>](#Operator) | Field operators |
107 |
108 |
109 |
110 | ### Group : Object
111 | **Properties**
112 |
113 | | Name | Type | Description |
114 | | --- | --- | --- |
115 | | name | string | Group name |
116 | | caption | string | Group caption |
117 |
118 |
119 |
120 | ### Operator : Object
121 | **Properties**
122 |
123 | | Name | Type | Description |
124 | | --- | --- | --- |
125 | | name | string | Operator name |
126 | | caption | string | Operator caption |
127 |
128 | ## License
129 | This project is licensed under the terms of the [MIT license](/LICENSE).
130 |
--------------------------------------------------------------------------------