@syncfusion/ej2-dropdowns 18.2.44-4568 → 18.2.44-4570

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.
Files changed (170) hide show
  1. package/.eslintrc.json +244 -0
  2. package/CHANGELOG.md +1524 -1524
  3. package/README.md +118 -118
  4. package/dist/ej2-dropdowns.umd.min.js +1 -1
  5. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es2015.js +99 -60
  7. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  8. package/dist/es6/ej2-dropdowns.es5.js +191 -151
  9. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  10. package/dist/global/ej2-dropdowns.min.js +1 -1
  11. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  12. package/dist/ts/auto-complete/auto-complete.ts +527 -0
  13. package/dist/ts/combo-box/combo-box.ts +957 -0
  14. package/dist/ts/common/highlight-search.ts +47 -0
  15. package/dist/ts/common/incremental-search.ts +81 -0
  16. package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
  17. package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
  18. package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
  19. package/dist/ts/list-box/list-box.ts +2317 -0
  20. package/dist/ts/multi-select/checkbox-selection.ts +528 -0
  21. package/dist/ts/multi-select/float-label.ts +155 -0
  22. package/dist/ts/multi-select/interface.ts +66 -0
  23. package/dist/ts/multi-select/multi-select.ts +4216 -0
  24. package/helpers/e2e/index.js +3 -3
  25. package/license +2 -2
  26. package/package.json +63 -77
  27. package/src/auto-complete/auto-complete-model.d.ts +179 -179
  28. package/src/auto-complete/auto-complete.js +19 -19
  29. package/src/combo-box/combo-box-model.d.ts +212 -212
  30. package/src/combo-box/combo-box.js +19 -19
  31. package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
  32. package/src/drop-down-base/drop-down-base.js +19 -19
  33. package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
  34. package/src/drop-down-list/drop-down-list.js +19 -19
  35. package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
  36. package/src/drop-down-tree/drop-down-tree.js +19 -19
  37. package/src/list-box/list-box-model.d.ts +156 -156
  38. package/src/list-box/list-box.js +19 -19
  39. package/src/multi-select/checkbox-selection.js +3 -1
  40. package/src/multi-select/multi-select-model.d.ts +452 -452
  41. package/src/multi-select/multi-select.d.ts +2 -0
  42. package/src/multi-select/multi-select.js +58 -19
  43. package/styles/_all.scss +3 -3
  44. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  45. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  46. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  47. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  48. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  49. package/styles/bootstrap-dark.css +13 -16
  50. package/styles/bootstrap.css +12 -15
  51. package/styles/bootstrap4.css +6 -10
  52. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  53. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  54. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  55. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  56. package/styles/combo-box/_material-dark-definition.scss +2 -2
  57. package/styles/drop-down-base/_all.scss +2 -2
  58. package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
  59. package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
  60. package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
  61. package/styles/drop-down-base/_definition.scss +23 -23
  62. package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
  63. package/styles/drop-down-base/_fabric-definition.scss +66 -66
  64. package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
  65. package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
  66. package/styles/drop-down-base/_layout.scss +108 -108
  67. package/styles/drop-down-base/_material-dark-definition.scss +67 -67
  68. package/styles/drop-down-base/_material-definition.scss +65 -65
  69. package/styles/drop-down-base/_theme.scss +242 -242
  70. package/styles/drop-down-list/_all.scss +2 -2
  71. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  72. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  73. package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
  74. package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
  75. package/styles/drop-down-list/_fabric-definition.scss +122 -122
  76. package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
  77. package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
  78. package/styles/drop-down-list/_layout.scss +218 -218
  79. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  80. package/styles/drop-down-list/_material-definition.scss +166 -166
  81. package/styles/drop-down-list/_theme.scss +10 -10
  82. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  83. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  84. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  85. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  86. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  87. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  88. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  89. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  90. package/styles/drop-down-list/icons/_material.scss +14 -14
  91. package/styles/drop-down-list/material.css +9 -0
  92. package/styles/drop-down-tree/_all.scss +2 -2
  93. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +61 -61
  94. package/styles/drop-down-tree/_bootstrap-definition.scss +61 -61
  95. package/styles/drop-down-tree/_bootstrap4-definition.scss +62 -62
  96. package/styles/drop-down-tree/_fabric-dark-definition.scss +62 -62
  97. package/styles/drop-down-tree/_fabric-definition.scss +62 -62
  98. package/styles/drop-down-tree/_highcontrast-definition.scss +62 -62
  99. package/styles/drop-down-tree/_highcontrast-light-definition.scss +62 -62
  100. package/styles/drop-down-tree/_layout.scss +437 -437
  101. package/styles/drop-down-tree/_material-dark-definition.scss +60 -60
  102. package/styles/drop-down-tree/_material-definition.scss +60 -60
  103. package/styles/drop-down-tree/_theme.scss +68 -68
  104. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  105. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  106. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  107. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  108. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  109. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  110. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  111. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  112. package/styles/drop-down-tree/icons/_material.scss +11 -11
  113. package/styles/drop-down-tree/material.css +9 -0
  114. package/styles/fabric-dark.css +2 -5
  115. package/styles/fabric.css +1 -4
  116. package/styles/highcontrast-light.css +2 -5
  117. package/styles/highcontrast.css +2 -7
  118. package/styles/list-box/_all.scss +2 -2
  119. package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
  120. package/styles/list-box/_bootstrap-definition.scss +112 -112
  121. package/styles/list-box/_bootstrap4-definition.scss +118 -118
  122. package/styles/list-box/_fabric-dark-definition.scss +118 -118
  123. package/styles/list-box/_fabric-definition.scss +112 -112
  124. package/styles/list-box/_highcontrast-definition.scss +112 -112
  125. package/styles/list-box/_highcontrast-light-definition.scss +118 -118
  126. package/styles/list-box/_layout.scss +458 -458
  127. package/styles/list-box/_material-dark-definition.scss +118 -118
  128. package/styles/list-box/_material-definition.scss +112 -112
  129. package/styles/list-box/_theme.scss +273 -273
  130. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  131. package/styles/list-box/icons/_bootstrap.scss +25 -25
  132. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  133. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  134. package/styles/list-box/icons/_fabric.scss +25 -25
  135. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  136. package/styles/list-box/icons/_highcontrast.scss +25 -25
  137. package/styles/list-box/icons/_material-dark.scss +25 -25
  138. package/styles/list-box/icons/_material.scss +25 -25
  139. package/styles/material-dark.css +8 -11
  140. package/styles/material.css +34 -10
  141. package/styles/multi-select/_all.scss +2 -2
  142. package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
  143. package/styles/multi-select/_bootstrap-definition.scss +166 -166
  144. package/styles/multi-select/_bootstrap4-definition.scss +233 -233
  145. package/styles/multi-select/_fabric-dark-definition.scss +170 -170
  146. package/styles/multi-select/_fabric-definition.scss +167 -167
  147. package/styles/multi-select/_highcontrast-definition.scss +257 -259
  148. package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
  149. package/styles/multi-select/_layout.scss +1153 -1153
  150. package/styles/multi-select/_material-dark-definition.scss +186 -186
  151. package/styles/multi-select/_material-definition.scss +191 -191
  152. package/styles/multi-select/_theme.scss +384 -389
  153. package/styles/multi-select/bootstrap-dark.css +13 -16
  154. package/styles/multi-select/bootstrap.css +12 -15
  155. package/styles/multi-select/bootstrap4.css +6 -10
  156. package/styles/multi-select/fabric-dark.css +2 -5
  157. package/styles/multi-select/fabric.css +1 -4
  158. package/styles/multi-select/highcontrast-light.css +2 -5
  159. package/styles/multi-select/highcontrast.css +2 -7
  160. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  161. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  162. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  163. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  164. package/styles/multi-select/icons/_fabric.scss +26 -26
  165. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  166. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  167. package/styles/multi-select/icons/_material-dark.scss +26 -26
  168. package/styles/multi-select/icons/_material.scss +324 -324
  169. package/styles/multi-select/material-dark.css +8 -11
  170. package/styles/multi-select/material.css +16 -10
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
- function __export(m) {
3
- for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
4
- }
2
+ function __export(m) {
3
+ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
4
+ }
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  __export(require("./autocomplete"));
7
7
  __export(require("./combobox"));
package/license CHANGED
@@ -1,3 +1,3 @@
1
- Licensing information is available in the following link
2
-
1
+ Licensing information is available in the following link
2
+
3
3
  https://www.syncfusion.com/sales/licensing
package/package.json CHANGED
@@ -1,78 +1,64 @@
1
1
  {
2
- "_from": "@syncfusion/ej2-dropdowns@*",
3
- "_id": "@syncfusion/ej2-dropdowns@18.2.44-4568",
4
- "_inBundle": false,
5
- "_integrity": "sha512-oe5hULfSZhE9ck6C8rkYxq0xaLuZnpmqH+dZgG1arqCxYAZX0IDWkHtvTdNPpQo1v9je0GHrZfJ4zH01rY25bw==",
6
- "_location": "/@syncfusion/ej2-dropdowns",
7
- "_phantomChildren": {},
8
- "_requested": {
9
- "type": "range",
10
- "registry": true,
11
- "raw": "@syncfusion/ej2-dropdowns@*",
12
- "name": "@syncfusion/ej2-dropdowns",
13
- "escapedName": "@syncfusion%2fej2-dropdowns",
14
- "scope": "@syncfusion",
15
- "rawSpec": "*",
16
- "saveSpec": null,
17
- "fetchSpec": "*"
18
- },
19
- "_requiredBy": [
20
- "/",
21
- "/@syncfusion/ej2",
22
- "/@syncfusion/ej2-angular-dropdowns",
23
- "/@syncfusion/ej2-documenteditor",
24
- "/@syncfusion/ej2-gantt",
25
- "/@syncfusion/ej2-grids",
26
- "/@syncfusion/ej2-inplace-editor",
27
- "/@syncfusion/ej2-kanban",
28
- "/@syncfusion/ej2-pdfviewer",
29
- "/@syncfusion/ej2-pivotview",
30
- "/@syncfusion/ej2-querybuilder",
31
- "/@syncfusion/ej2-react-dropdowns",
32
- "/@syncfusion/ej2-schedule",
33
- "/@syncfusion/ej2-spreadsheet",
34
- "/@syncfusion/ej2-vue-dropdowns"
35
- ],
36
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-17.4.50.tgz",
37
- "_shasum": "2b830572ad74aa4381d586c7099c40f986f7e067",
38
- "_spec": "@syncfusion/ej2-dropdowns@*",
39
- "_where": "/jenkins/workspace/automation_release_18.1.0.1-52JLNOGRCDHXRVQM3W564VPLFCPHWUYDYU3I3DVRABSR7F6AIFYQ/packages/included",
40
- "author": {
41
- "name": "Syncfusion Inc."
42
- },
43
- "bundleDependencies": false,
44
- "dependencies": {
45
- "@syncfusion/ej2-base": "~18.2.44",
46
- "@syncfusion/ej2-data": "~18.2.44",
47
- "@syncfusion/ej2-inputs": "~18.2.44",
48
- "@syncfusion/ej2-lists": "~18.2.44",
49
- "@syncfusion/ej2-navigations": "~18.2.44",
50
- "@syncfusion/ej2-popups": "~18.2.44"
51
- },
52
- "deprecated": false,
53
- "description": "Essential JS 2 DropDown Components",
54
- "devDependencies": {},
55
- "es2015": "./dist/es6/ej2-dropdowns.es2015.js",
56
- "keywords": [
57
- "ej2",
58
- "syncfusion",
59
- "ej2-dropdown",
60
- "dropdownlist",
61
- "autocomplete",
62
- "multiselect",
63
- "combobox",
64
- "select",
65
- "ej2-dropdownlist",
66
- "ej2-autocomplete",
67
- "ej2-multiselect",
68
- "ej2-combobox"
69
- ],
70
- "license": "SEE LICENSE IN license",
71
- "main": "./dist/ej2-dropdowns.umd.min.js",
72
- "module": "./index.js",
73
- "name": "@syncfusion/ej2-dropdowns",
74
- "typings": "index.d.ts",
75
- "version": "18.2.44-4568",
76
- "sideEffects": false
77
- }
78
-
2
+ "_from": "@syncfusion/ej2-dropdowns@18.2.44-4569",
3
+ "_id": "@syncfusion/ej2-dropdowns@18.2.44-4569",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-Rt+leyRsDDrZKNuE0913YtKlibomQSrCys/ZYnEPn6T0bxu9nojcfuX6epuZ7pCHuNEba/jdsvKciQSszl4cwA==",
6
+ "_location": "/@syncfusion/ej2-dropdowns",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "version",
10
+ "registry": true,
11
+ "raw": "@syncfusion/ej2-dropdowns@18.2.44-4569",
12
+ "name": "@syncfusion/ej2-dropdowns",
13
+ "escapedName": "@syncfusion%2fej2-dropdowns",
14
+ "scope": "@syncfusion",
15
+ "rawSpec": "18.2.44-4569",
16
+ "saveSpec": null,
17
+ "fetchSpec": "18.2.44-4569"
18
+ },
19
+ "_requiredBy": [
20
+ "#USER",
21
+ "/"
22
+ ],
23
+ "_resolved": "https://registry.npmjs.org/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-18.2.44-4569.tgz",
24
+ "_shasum": "103e83815e7c4b2e3e64a7e531c6609685cd9951",
25
+ "_spec": "@syncfusion/ej2-dropdowns@18.2.44-4569",
26
+ "_where": "C:\\Users\\YohapujaSelvakumaran\\Downloads\\Vue2_e18577de\\Vue2Grid",
27
+ "author": {
28
+ "name": "Syncfusion Inc."
29
+ },
30
+ "bundleDependencies": false,
31
+ "dependencies": {
32
+ "@syncfusion/ej2-base": "~18.2.44",
33
+ "@syncfusion/ej2-data": "~18.2.44",
34
+ "@syncfusion/ej2-inputs": "~18.2.44",
35
+ "@syncfusion/ej2-lists": "~18.2.44",
36
+ "@syncfusion/ej2-navigations": "~18.2.44",
37
+ "@syncfusion/ej2-popups": "~18.2.44"
38
+ },
39
+ "deprecated": false,
40
+ "description": "Essential JS 2 DropDown Components",
41
+ "devDependencies": {},
42
+ "es2015": "./dist/es6/ej2-dropdowns.es2015.js",
43
+ "keywords": [
44
+ "ej2",
45
+ "syncfusion",
46
+ "ej2-dropdown",
47
+ "dropdownlist",
48
+ "autocomplete",
49
+ "multiselect",
50
+ "combobox",
51
+ "select",
52
+ "ej2-dropdownlist",
53
+ "ej2-autocomplete",
54
+ "ej2-multiselect",
55
+ "ej2-combobox"
56
+ ],
57
+ "license": "SEE LICENSE IN license",
58
+ "main": "./dist/ej2-dropdowns.umd.min.js",
59
+ "module": "./index.js",
60
+ "name": "@syncfusion/ej2-dropdowns",
61
+ "sideEffects": false,
62
+ "typings": "index.d.ts",
63
+ "version": "18.2.44-4570"
64
+ }
@@ -1,4 +1,4 @@
1
- import { Property, EventHandler, KeyboardEventArgs, isNullOrUndefined, detach } from '@syncfusion/ej2-base';import { Event, EmitType, Complex } from '@syncfusion/ej2-base';import { removeClass, attributes, NotifyPropertyChanges } from '@syncfusion/ej2-base';import { dropDownListClasses } from '../drop-down-list/drop-down-list';import { ComboBox } from '../combo-box/combo-box';import { highlightSearch, revertHighlightSearch } from '../common/highlight-search';import { Search } from '../common/incremental-search';import { FieldSettingsModel } from '../drop-down-base/drop-down-base-model';import { FieldSettings, FilteringEventArgs, FilterType } from '../drop-down-base/drop-down-base';import { FloatLabelType, Input } from '@syncfusion/ej2-inputs';import { SortOrder } from '@syncfusion/ej2-lists';import { DataManager, Query } from '@syncfusion/ej2-data';
1
+ import { Property, EventHandler, KeyboardEventArgs, isNullOrUndefined, detach } from '@syncfusion/ej2-base';
2
2
  import {ComboBoxModel} from "../combo-box/combo-box-model";
3
3
 
4
4
  /**
@@ -7,183 +7,183 @@ import {ComboBoxModel} from "../combo-box/combo-box-model";
7
7
  export interface AutoCompleteModel extends ComboBoxModel{
8
8
 
9
9
  /**
10
- * The `fields` property maps the columns of the data table and binds the data to the component.
11
- * * text - Maps the text column from data table for each list item
12
- * * value - Maps the value column from data table for each list item
13
- * * iconCss - Maps the icon class column from data table for each list item
14
- * * groupBy - Group the list items with it's related items by mapping groupBy field
15
- *
16
- * {% codeBlock src='autocomplete/fields/index.md' %}{% endcodeBlock %}
17
- * > For more details about the field mapping refer to [`Data binding`](../../auto-complete/data-binding) documentation.
18
- * @default { value: null, iconCss: null, groupBy: null}
19
- * @deprecated
20
- */
21
- fields?: FieldSettingsModel;
22
-
23
- /**
24
- * When set to ‘false’, consider the [`case-sensitive`](../../auto-complete/filtering/#case-sensitive-filtering)
25
- * on performing the search to find suggestions.
26
- * By default consider the casing.
27
- * @default true
28
- * @deprecated
29
- */
30
- ignoreCase?: boolean;
31
-
32
- /**
33
- * Allows you to either show or hide the popup button on the component.
34
- * @default false
35
- */
36
- showPopupButton?: boolean;
37
-
38
- /**
39
- * When set to ‘true’, highlight the searched characters on suggested list items.
40
- * > For more details about the highlight refer to [`Custom highlight search`](../../auto-complete/how-to/custom-search) documentation.
41
- * @default false
42
- */
43
- highlight?: boolean;
44
-
45
- /**
46
- * Supports the [`specified number`](../../auto-complete/filtering#filter-item-count)
47
- * of list items on the suggestion popup.
48
- * @default 20
49
- * @blazorType int
50
- */
51
- suggestionCount?: number;
52
-
53
- /**
54
- * Allows additional HTML attributes such as title, name, etc., and
55
- * accepts n number of attributes in a key-value pair format.
56
- *
57
- * {% codeBlock src='autocomplete/htmlAttributes/index.md' %}{% endcodeBlock %}
58
- * @default {}
59
- * @deprecated
60
- */
61
- htmlAttributes?: { [key: string]: string; };
62
-
63
- /**
64
- * Accepts the external `query`
65
- * that execute along with data processing.
66
- *
67
- * {% codeBlock src='autocomplete/query/index.md' %}{% endcodeBlock %}
68
- * @default null
69
- * @deprecated
70
- */
71
- query?: Query;
72
-
73
- /**
74
- * Allows you to set [`the minimum search character length']
75
- * (../../auto-complete/filtering#limit-the-minimum-filter-character),
76
- * the search action will perform after typed minimum characters.
77
- * @default 1
78
- * @blazorType int
79
- */
80
- minLength?: number;
81
-
82
- /**
83
- * Determines on which filter type, the component needs to be considered on search action.
84
- * The available [`FilterType`](../../auto-complete/filtering/#change-the-filter-type)
85
- * and its supported data types are
86
- *
87
- * <table>
88
- * <tr>
89
- * <td colSpan=1 rowSpan=1>
90
- * FilterType<br/></td><td colSpan=1 rowSpan=1>
91
- * Description<br/></td><td colSpan=1 rowSpan=1>
92
- * Supported Types<br/></td></tr>
93
- * <tr>
94
- * <td colSpan=1 rowSpan=1>
95
- * StartsWith<br/></td><td colSpan=1 rowSpan=1>
96
- * Checks whether a value begins with the specified value.<br/></td><td colSpan=1 rowSpan=1>
97
- * String<br/></td></tr>
98
- * <tr>
99
- * <td colSpan=1 rowSpan=1>
100
- * EndsWith<br/></td><td colSpan=1 rowSpan=1>
101
- * Checks whether a value ends with specified value.<br/><br/></td><td colSpan=1 rowSpan=1>
102
- * <br/>String<br/></td></tr>
103
- * <tr>
104
- * <td colSpan=1 rowSpan=1>
105
- * Contains<br/></td><td colSpan=1 rowSpan=1>
106
- * Checks whether a value contains with specified value.<br/><br/></td><td colSpan=1 rowSpan=1>
107
- * <br/>String<br/></td></tr>
108
- * </table>
109
- *
110
- * {% codeBlock src="autocomplete/filter-type-api/index.ts" %}{% endcodeBlock %}
111
- *
112
- * {% codeBlock src="autocomplete/filter-type-api/index.html" %}{% endcodeBlock %}
113
- *
114
- * The default value set to `Contains`, all the suggestion items which contain typed characters to listed in the suggestion popup.
115
- * @default 'Contains'
116
- * @blazorOverrideType override
117
- */
118
- filterType?: FilterType;
119
-
120
- /**
121
- * Triggers on typing a character in the component.
122
- * @event
123
- * @blazorProperty 'Filtering'
124
- */
125
- filtering?: EmitType<FilteringEventArgs>;
126
-
127
- /**
128
- * Not applicable to this component.
129
- * @default null
130
- * @private
131
- * @blazorType int
132
- * @isBlazorNullableType true
133
- * @blazorDefaultValue
134
- * @deprecated
135
- */
136
- index?: number;
137
-
138
- /**
139
- * Specifies whether to display the floating label above the input element.
140
- * Possible values are:
141
- * * Never: The label will never float in the input when the placeholder is available.
142
- * * Always: The floating label will always float above the input.
143
- * * Auto: The floating label will float above the input after focusing or entering a value in the input.
144
- *
145
- * {% codeBlock src="autocomplete/float-label-type-api/index.ts" %}{% endcodeBlock %}
146
- *
147
- * {% codeBlock src="autocomplete/float-label-type-api/index.html" %}{% endcodeBlock %}
148
- *
149
- * @default Syncfusion.EJ2.Inputs.FloatLabelType.Never
150
- * @aspType Syncfusion.EJ2.Inputs.FloatLabelType
151
- * @isEnumeration true
152
- * @blazorType Syncfusion.Blazor.Inputs.FloatLabelType
153
- * @deprecated
154
- */
155
- floatLabelType?: FloatLabelType;
156
-
157
- /**
158
- * Not applicable to this component.
159
- * @default null
160
- * @private
161
- * @deprecated
162
- */
163
- valueTemplate?: string;
164
-
165
- /**
166
- * Not applicable to this component.
167
- * @default null
168
- * @private
169
- * @deprecated
170
- */
171
- filterBarPlaceholder?: string;
172
-
173
- /**
174
- * Not applicable to this component.
175
- * @default false
176
- * @private
177
- * @deprecated
178
- */
179
- allowFiltering?: boolean;
180
-
181
- /**
182
- * Not applicable to this component.
183
- * @default null
184
- * @private
185
- * @deprecated
186
- */
187
- text?: string;
10
+ * The `fields` property maps the columns of the data table and binds the data to the component.
11
+ * * text - Maps the text column from data table for each list item
12
+ * * value - Maps the value column from data table for each list item
13
+ * * iconCss - Maps the icon class column from data table for each list item
14
+ * * groupBy - Group the list items with it's related items by mapping groupBy field
15
+ *
16
+ * {% codeBlock src='autocomplete/fields/index.md' %}{% endcodeBlock %}
17
+ * > For more details about the field mapping refer to [`Data binding`](../../auto-complete/data-binding) documentation.
18
+ * @default { value: null, iconCss: null, groupBy: null}
19
+ * @deprecated
20
+ */
21
+ fields?: FieldSettingsModel;
22
+
23
+ /**
24
+ * When set to ‘false’, consider the [`case-sensitive`](../../auto-complete/filtering/#case-sensitive-filtering)
25
+ * on performing the search to find suggestions.
26
+ * By default consider the casing.
27
+ * @default true
28
+ * @deprecated
29
+ */
30
+ ignoreCase?: boolean;
31
+
32
+ /**
33
+ * Allows you to either show or hide the popup button on the component.
34
+ * @default false
35
+ */
36
+ showPopupButton?: boolean;
37
+
38
+ /**
39
+ * When set to ‘true’, highlight the searched characters on suggested list items.
40
+ * > For more details about the highlight refer to [`Custom highlight search`](../../auto-complete/how-to/custom-search) documentation.
41
+ * @default false
42
+ */
43
+ highlight?: boolean;
44
+
45
+ /**
46
+ * Supports the [`specified number`](../../auto-complete/filtering#filter-item-count)
47
+ * of list items on the suggestion popup.
48
+ * @default 20
49
+ * @blazorType int
50
+ */
51
+ suggestionCount?: number;
52
+
53
+ /**
54
+ * Allows additional HTML attributes such as title, name, etc., and
55
+ * accepts n number of attributes in a key-value pair format.
56
+ *
57
+ * {% codeBlock src='autocomplete/htmlAttributes/index.md' %}{% endcodeBlock %}
58
+ * @default {}
59
+ * @deprecated
60
+ */
61
+ htmlAttributes?: { [key: string]: string; };
62
+
63
+ /**
64
+ * Accepts the external `query`
65
+ * that execute along with data processing.
66
+ *
67
+ * {% codeBlock src='autocomplete/query/index.md' %}{% endcodeBlock %}
68
+ * @default null
69
+ * @deprecated
70
+ */
71
+ query?: Query;
72
+
73
+ /**
74
+ * Allows you to set [`the minimum search character length']
75
+ * (../../auto-complete/filtering#limit-the-minimum-filter-character),
76
+ * the search action will perform after typed minimum characters.
77
+ * @default 1
78
+ * @blazorType int
79
+ */
80
+ minLength?: number;
81
+
82
+ /**
83
+ * Determines on which filter type, the component needs to be considered on search action.
84
+ * The available [`FilterType`](../../auto-complete/filtering/#change-the-filter-type)
85
+ * and its supported data types are
86
+ *
87
+ * <table>
88
+ * <tr>
89
+ * <td colSpan=1 rowSpan=1>
90
+ * FilterType<br/></td><td colSpan=1 rowSpan=1>
91
+ * Description<br/></td><td colSpan=1 rowSpan=1>
92
+ * Supported Types<br/></td></tr>
93
+ * <tr>
94
+ * <td colSpan=1 rowSpan=1>
95
+ * StartsWith<br/></td><td colSpan=1 rowSpan=1>
96
+ * Checks whether a value begins with the specified value.<br/></td><td colSpan=1 rowSpan=1>
97
+ * String<br/></td></tr>
98
+ * <tr>
99
+ * <td colSpan=1 rowSpan=1>
100
+ * EndsWith<br/></td><td colSpan=1 rowSpan=1>
101
+ * Checks whether a value ends with specified value.<br/><br/></td><td colSpan=1 rowSpan=1>
102
+ * <br/>String<br/></td></tr>
103
+ * <tr>
104
+ * <td colSpan=1 rowSpan=1>
105
+ * Contains<br/></td><td colSpan=1 rowSpan=1>
106
+ * Checks whether a value contains with specified value.<br/><br/></td><td colSpan=1 rowSpan=1>
107
+ * <br/>String<br/></td></tr>
108
+ * </table>
109
+ *
110
+ * {% codeBlock src="autocomplete/filter-type-api/index.ts" %}{% endcodeBlock %}
111
+ *
112
+ * {% codeBlock src="autocomplete/filter-type-api/index.html" %}{% endcodeBlock %}
113
+ *
114
+ * The default value set to `Contains`, all the suggestion items which contain typed characters to listed in the suggestion popup.
115
+ * @default 'Contains'
116
+ * @blazorOverrideType override
117
+ */
118
+ filterType?: FilterType;
119
+
120
+ /**
121
+ * Triggers on typing a character in the component.
122
+ * @event
123
+ * @blazorProperty 'Filtering'
124
+ */
125
+ filtering?: EmitType<FilteringEventArgs>;
126
+
127
+ /**
128
+ * Not applicable to this component.
129
+ * @default null
130
+ * @private
131
+ * @blazorType int
132
+ * @isBlazorNullableType true
133
+ * @blazorDefaultValue
134
+ * @deprecated
135
+ */
136
+ index?: number;
137
+
138
+ /**
139
+ * Specifies whether to display the floating label above the input element.
140
+ * Possible values are:
141
+ * * Never: The label will never float in the input when the placeholder is available.
142
+ * * Always: The floating label will always float above the input.
143
+ * * Auto: The floating label will float above the input after focusing or entering a value in the input.
144
+ *
145
+ * {% codeBlock src="autocomplete/float-label-type-api/index.ts" %}{% endcodeBlock %}
146
+ *
147
+ * {% codeBlock src="autocomplete/float-label-type-api/index.html" %}{% endcodeBlock %}
148
+ *
149
+ * @default Syncfusion.EJ2.Inputs.FloatLabelType.Never
150
+ * @aspType Syncfusion.EJ2.Inputs.FloatLabelType
151
+ * @isEnumeration true
152
+ * @blazorType Syncfusion.Blazor.Inputs.FloatLabelType
153
+ * @deprecated
154
+ */
155
+ floatLabelType?: FloatLabelType;
156
+
157
+ /**
158
+ * Not applicable to this component.
159
+ * @default null
160
+ * @private
161
+ * @deprecated
162
+ */
163
+ valueTemplate?: string;
164
+
165
+ /**
166
+ * Not applicable to this component.
167
+ * @default null
168
+ * @private
169
+ * @deprecated
170
+ */
171
+ filterBarPlaceholder?: string;
172
+
173
+ /**
174
+ * Not applicable to this component.
175
+ * @default false
176
+ * @private
177
+ * @deprecated
178
+ */
179
+ allowFiltering?: boolean;
180
+
181
+ /**
182
+ * Not applicable to this component.
183
+ * @default null
184
+ * @private
185
+ * @deprecated
186
+ */
187
+ text?: string;
188
188
 
189
189
  }
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- }
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  /// <reference path='../combo-box/combo-box-model.d.ts'/>
21
21
  import { Property, EventHandler, isNullOrUndefined, detach } from '@syncfusion/ej2-base';
22
22
  import { Event, Complex } from '@syncfusion/ej2-base';