@progress/kendo-angular-dropdowns 17.0.0-develop.9 → 17.0.1-develop.1

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 (129) hide show
  1. package/README.md +40 -99
  2. package/autocomplete/autocomplete.component.d.ts +1 -1
  3. package/autocomplete/autocomplete.module.d.ts +1 -1
  4. package/comboboxes/combobox-column/combobox-column.component.d.ts +1 -1
  5. package/comboboxes/combobox.component.d.ts +1 -1
  6. package/comboboxes/combobox.module.d.ts +1 -1
  7. package/common/action-sheet.component.d.ts +1 -1
  8. package/common/disabled-items/item-disabled.d.ts +1 -1
  9. package/common/filter-input.directive.d.ts +1 -1
  10. package/common/filtering/filter.directive.d.ts +1 -1
  11. package/common/list.component.d.ts +1 -1
  12. package/common/localization/messages.d.ts +1 -1
  13. package/common/models/direction.d.ts +1 -1
  14. package/common/models/fillmode.d.ts +1 -1
  15. package/common/models/list-type.d.ts +1 -1
  16. package/common/models/rounded.d.ts +1 -1
  17. package/common/models/size.d.ts +1 -1
  18. package/common/searchbar.component.d.ts +1 -1
  19. package/common/selection/selectable.directive.d.ts +1 -1
  20. package/common/shared-events.directive.d.ts +1 -1
  21. package/common/taglist.component.d.ts +2 -2
  22. package/common/util.d.ts +2 -2
  23. package/dropdownlist/dropdownlist.component.d.ts +1 -1
  24. package/dropdowns.module.d.ts +1 -1
  25. package/dropdowntrees/checked-state/base-check.directive.d.ts +1 -1
  26. package/dropdowntrees/checked-state/check-all.directive.d.ts +1 -1
  27. package/dropdowntrees/checked-state/check.directive.d.ts +1 -1
  28. package/dropdowntrees/data-binding/dropdowntree/flat-binding.directive.d.ts +1 -1
  29. package/dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive.d.ts +1 -1
  30. package/dropdowntrees/data-binding/multiselecttree/flat-binding.directive.d.ts +1 -1
  31. package/dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive.d.ts +1 -1
  32. package/dropdowntrees/dropdowntree.component.d.ts +1 -1
  33. package/dropdowntrees/expanded-state/expand.directive.d.ts +1 -1
  34. package/dropdowntrees/multiselecttree.component.d.ts +1 -1
  35. package/dropdowntrees/summary-tag/summary-tag.directive.d.ts +1 -1
  36. package/{esm2020 → esm2022}/autocomplete/autocomplete.component.mjs +235 -173
  37. package/{esm2020 → esm2022}/autocomplete/autocomplete.module.mjs +11 -11
  38. package/{esm2020 → esm2022}/comboboxes/combobox-column/column-cell-template.directive.mjs +4 -3
  39. package/{esm2020 → esm2022}/comboboxes/combobox-column/column-header-template.directive.mjs +4 -3
  40. package/esm2022/comboboxes/combobox-column/combobox-column.component.mjs +105 -0
  41. package/{esm2020 → esm2022}/comboboxes/combobox.component.mjs +326 -248
  42. package/{esm2020 → esm2022}/comboboxes/combobox.module.mjs +11 -11
  43. package/{esm2020 → esm2022}/comboboxes/multicolumncombobox.component.mjs +53 -48
  44. package/{esm2020 → esm2022}/common/action-sheet.component.mjs +26 -14
  45. package/{esm2020 → esm2022}/common/data.service.mjs +8 -7
  46. package/{esm2020 → esm2022}/common/disabled-items/disabled-items.service.mjs +6 -4
  47. package/{esm2020 → esm2022}/common/filter-input.directive.mjs +6 -3
  48. package/{esm2020 → esm2022}/common/filtering/filter.directive.mjs +20 -13
  49. package/{esm2020 → esm2022}/common/filtering/filterable-component.mjs +21 -0
  50. package/{esm2020 → esm2022}/common/list-item.directive.mjs +4 -3
  51. package/{esm2020 → esm2022}/common/list.component.mjs +72 -36
  52. package/{esm2020 → esm2022}/common/localization/custom-messages.component.mjs +9 -8
  53. package/{esm2020 → esm2022}/common/localization/localized-messages.directive.mjs +9 -8
  54. package/esm2022/common/localization/messages.mjs +65 -0
  55. package/{esm2020 → esm2022}/common/models/preventable-event.mjs +1 -3
  56. package/{esm2020 → esm2022}/common/models/remove-tag-event.mjs +4 -0
  57. package/{esm2020 → esm2022}/common/navigation/navigation.service.mjs +27 -23
  58. package/{esm2020 → esm2022}/common/searchbar.component.mjs +45 -28
  59. package/{esm2020 → esm2022}/common/selection/selectable.directive.mjs +9 -5
  60. package/{esm2020 → esm2022}/common/selection/selection.service.mjs +13 -10
  61. package/{esm2020 → esm2022}/common/shared-events.directive.mjs +13 -7
  62. package/{esm2020 → esm2022}/common/taglist.component.mjs +36 -27
  63. package/{esm2020 → esm2022}/common/templates/custom-item-template.directive.mjs +4 -3
  64. package/{esm2020 → esm2022}/common/templates/fixed-group-template.directive.mjs +4 -3
  65. package/{esm2020 → esm2022}/common/templates/footer-template.directive.mjs +4 -3
  66. package/{esm2020 → esm2022}/common/templates/group-tag-template.directive.mjs +4 -3
  67. package/{esm2020 → esm2022}/common/templates/group-template.directive.mjs +4 -3
  68. package/{esm2020 → esm2022}/common/templates/header-template.directive.mjs +4 -3
  69. package/{esm2020 → esm2022}/common/templates/item-template.directive.mjs +4 -3
  70. package/{esm2020 → esm2022}/common/templates/no-data-template.directive.mjs +4 -3
  71. package/{esm2020 → esm2022}/common/templates/tag-template.directive.mjs +4 -3
  72. package/{esm2020 → esm2022}/common/templates/value-template.directive.mjs +4 -3
  73. package/{esm2020 → esm2022}/dropdownlist/dropdownlist.component.mjs +259 -184
  74. package/{esm2020 → esm2022}/dropdownlist/dropdownlist.module.mjs +8 -8
  75. package/esm2022/dropdowns.module.mjs +87 -0
  76. package/{esm2020 → esm2022}/dropdowntrees/checked-state/base-check.directive.mjs +10 -3
  77. package/{esm2020 → esm2022}/dropdowntrees/checked-state/check-all.directive.mjs +38 -21
  78. package/{esm2020 → esm2022}/dropdowntrees/checked-state/check.directive.mjs +31 -15
  79. package/{esm2020 → esm2022}/dropdowntrees/data-binding/dropdowntree/flat-binding.directive.mjs +12 -7
  80. package/{esm2020 → esm2022}/dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive.mjs +8 -7
  81. package/{esm2020 → esm2022}/dropdowntrees/data-binding/multiselecttree/flat-binding.directive.mjs +12 -7
  82. package/{esm2020 → esm2022}/dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive.mjs +8 -7
  83. package/{esm2020 → esm2022}/dropdowntrees/dropdowntree.component.mjs +309 -232
  84. package/{esm2020 → esm2022}/dropdowntrees/dropdowntrees.module.mjs +12 -12
  85. package/{esm2020 → esm2022}/dropdowntrees/expanded-state/expand.directive.mjs +8 -7
  86. package/{esm2020 → esm2022}/dropdowntrees/lookup/lookup.service.mjs +4 -6
  87. package/{esm2020 → esm2022}/dropdowntrees/multiselecttree.component.mjs +324 -254
  88. package/{esm2020 → esm2022}/dropdowntrees/summary-tag/summary-tag.directive.mjs +8 -7
  89. package/{esm2020 → esm2022}/dropdowntrees/templates/node-template.directive.mjs +4 -3
  90. package/{esm2020 → esm2022}/index.mjs +0 -2
  91. package/{esm2020 → esm2022}/multiselect/multiselect.component.mjs +328 -254
  92. package/{esm2020 → esm2022}/multiselect/multiselect.module.mjs +11 -11
  93. package/{esm2020 → esm2022}/multiselect/summary-tag.directive.mjs +8 -7
  94. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  95. package/{fesm2020 → fesm2022}/progress-kendo-angular-dropdowns.mjs +2528 -1927
  96. package/index.d.ts +0 -2
  97. package/multiselect/multiselect.component.d.ts +1 -1
  98. package/multiselect/multiselect.module.d.ts +1 -1
  99. package/multiselect/summary-tag.directive.d.ts +1 -1
  100. package/package.json +18 -24
  101. package/schematics/ngAdd/index.js +3 -3
  102. package/common/shared-directives.module.d.ts +0 -37
  103. package/common/shared.module.d.ts +0 -29
  104. package/esm2020/comboboxes/combobox-column/combobox-column.component.mjs +0 -60
  105. package/esm2020/common/localization/messages.mjs +0 -33
  106. package/esm2020/common/shared-directives.module.mjs +0 -84
  107. package/esm2020/common/shared.module.mjs +0 -68
  108. package/esm2020/dropdowns.module.mjs +0 -87
  109. package/fesm2015/progress-kendo-angular-dropdowns.mjs +0 -17609
  110. /package/{esm2020 → esm2022}/comboboxes/combobox-column/util.mjs +0 -0
  111. /package/{esm2020 → esm2022}/common/constants/error-messages.mjs +0 -0
  112. /package/{esm2020 → esm2022}/common/disabled-items/item-disabled.mjs +0 -0
  113. /package/{esm2020 → esm2022}/common/filtering/filter-settings.mjs +0 -0
  114. /package/{esm2020 → esm2022}/common/models/checkboxes-settings.mjs +0 -0
  115. /package/{esm2020 → esm2022}/common/models/direction.mjs +0 -0
  116. /package/{esm2020 → esm2022}/common/models/fillmode.mjs +0 -0
  117. /package/{esm2020 → esm2022}/common/models/list-type.mjs +0 -0
  118. /package/{esm2020 → esm2022}/common/models/page-change-event.mjs +0 -0
  119. /package/{esm2020 → esm2022}/common/models/popup-settings.mjs +0 -0
  120. /package/{esm2020 → esm2022}/common/models/rounded.mjs +0 -0
  121. /package/{esm2020 → esm2022}/common/models/size.mjs +0 -0
  122. /package/{esm2020 → esm2022}/common/models/virtualization-settings.mjs +0 -0
  123. /package/{esm2020 → esm2022}/common/navigation/navigation-action.mjs +0 -0
  124. /package/{esm2020 → esm2022}/common/util.mjs +0 -0
  125. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  126. /package/{esm2020 → esm2022}/dropdowntrees/checked-state/checkable-settings.mjs +0 -0
  127. /package/{esm2020 → esm2022}/dropdowntrees/checked-state/checked-item.mjs +0 -0
  128. /package/{esm2020 → esm2022}/dropdowntrees/lookup/lookup.mjs +0 -0
  129. /package/{esm2020 → esm2022}/progress-kendo-angular-dropdowns.mjs +0 -0
package/README.md CHANGED
@@ -1,119 +1,60 @@
1
- <a href="https://www.telerik.com/kendo-angular-ui/" target="_blank">
1
+ <a href="https://www.telerik.com/kendo-angular-ui/components/dropdowns" target="_blank">
2
2
  <img width="631" src="https://www.telerik.com/kendo-angular-ui/npm-banner.svg">
3
3
  </a>
4
4
 
5
- ## Kendo UI for Angular DropDowns Package (AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox and MultiSelect Components)
5
+ ## Kendo UI for Angular DropDowns Package
6
6
 
7
- > **Important**
8
- > * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;a commercial library designed and built for developing business applications with Angular. Every UI component in the Kendo UI for Angular suite has been built from the ground-up specifically for Angular.
9
- > * You will need to install a license key when adding the package to your project. For more information, please refer to the [Kendo UI for Angular My License page](https://www.telerik.com/kendo-angular-ui/my-license?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns).
10
- > * To receive a license key, you need to either [purchase a license](https://www.telerik.com/purchase/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns). Doing so indicates that you [accept the Kendo UI for Angular License Agreement](https://www.telerik.com/purchase/license-agreement/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns).
11
- > * The 30-day free trial gives you access to all the Kendo UI for Angular components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular dev team!
12
- >
13
- > [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns) and speed up your development process!
7
+ > * This package is part of the [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/)&mdash;a commercial UI library.
8
+ > * You must [install a license key](https://www.telerik.com/kendo-angular-ui/my-license) when adding the package to your project. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
9
+ > * The 30-day free trial gives you access to all the Kendo UI for Angular components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
14
10
 
15
- The [Angular Dropdowns package](https://www.telerik.com/kendo-angular-ui/components/dropdowns/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns) includes variety of highly configurable drop-down types that allow you to quickly and easily create the exact Dropdowns component you need to statisfy requirements for functionality and appearance. The Dropdowns are built from the ground-up and specifically for Angular, so that you get high-performance drop-down controls which integrate tightly with your application.
11
+ The [Angular Dropdowns package](https://www.telerik.com/kendo-angular-ui/components/dropdowns) includes variety of highly configurable drop-down types that allow you to quickly and easily create the exact Dropdowns component you need to statisfy requirements for functionality and appearance. The Dropdowns are built from the ground-up and specifically for Angular, so that you get high-performance drop-down controls which integrate tightly with your application.
16
12
 
17
- <img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/default-album/angular-multicolumn-combobox-overview.png?sfvrsn=28d7c9f_0" alt="Dropdown in Angular Example">
13
+ ## What's Included in the Angular Dropdowns Package
18
14
 
19
- What's Included in This Package:
15
+ The [Angular Dropdowns](https://www.telerik.com/kendo-angular-ui/components/dropdowns) package includes seven built-in components:
20
16
 
21
- * [AutoComplete](#autocomplete)
22
- * [ComboBox](#combobox)
23
- * [DropDownList](#dropdownlist)
24
- * [DropDownTree](#dropdowntree)
25
- * [MultiColumnComboBox](#multicolumncombobox)
26
- * [MultiSelect](#multiselect)
27
- * [MultiSelectTree](#multiselecttree)
17
+ * [Angular AutoComplete Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete)
18
+ * [Angular ComboBox Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox)
19
+ * [Angular DropDownList Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist)
20
+ * [Angular DropDownTree Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree)
21
+ * [Angular MultiColumnComboBox Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox)
22
+ * [Angular MultiSelect Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect)
23
+ * [Angular MultiSelectTree Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree)
28
24
 
29
- ## Angular Dropdowns Package Common Features
25
+ ## Key Features
30
26
 
31
- * **Data Binding**&mdash;Bind the Angular Dropdowns to remote or local data list that can contain primitive or complex items.
32
- * **Virtualization**&mdash;Improve performance when loading large data sets by displaying a fixed amount of items in the dropdown lists.
33
- * **Forms Support**&mdash;All Dropdowns provide support both for the asynchronous template-driven Angular forms and the predominantly synchronous reactive Angular forms. This feature allows you to draw on the logic set either in the template, or in the component or typescript code.
34
- * **Filtering**&mdash;Filter functionality is included. Also, the Dropdowns provide further options for fine-tuning and customizing the funtion such as setting a minimum length of the search symbols, using the built-in filter directive, and more.
35
- * **Grouping**&mdash;Aside from DropDownTree and MultiSeelctTree components, the dropdowns all support data grouping.
36
- * **Disabled Options**&mdash;You can choose to disable some of the predefined list options of the Dropdowns so that, if need be present, users will not be able to interact with them.
37
- * **Appearance**&mdash;Each component provides options for customizing the look and feel such as size, border radius, and fill modes.
38
- * **Templates**&mdash;Customize the content and the general look and feel of the items and elements list by utilizing the ready-to-use header, footer, and other templates.
39
- * **Globalization**&mdash;The Kendo UI for Angular Dropdowns support globalization to ensure that they can fit well in any application, no matter what languages and locales need to be supported. Additionally, the Dropdowns support rendering in a right-to-left (RTL) direction.
40
- * **Accessibility**&mdash;The Dropdowns are accessible for screen readers and support WAI-ARIA attributes.
41
- * **Keyboard Navigation**&mdash;The Dropdowns support a number of keyboard shortcuts which allow users to accomplish various commands.
27
+ Among the many features which the Kendo UI for Angular Dropdowns deliver are:
42
28
 
43
- ## Angular AutoComplete Component
29
+ * Data Binding&mdash;The Dropdowns support the binding of their data to lists of values which can contain primitive (strings and numbers) or complex (objects) items. [Read more about the data binding of the AutoComplete...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/data-binding)
30
+ * Forms Support&mdash;All Dropdowns provide support both for the asynchronous Template-Driven Angular forms and the predominantly synchronous Reactive Angular forms. [Read more about the forms support of the AutoComplete...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/forms)
31
+ * Filtering&mdash;Apart from their built-in filter functionality, the Dropdowns provide further options for fine-tuning and customizing the mechanism such as setting a minimum length of the search symbols, using the built-in filter directive, and more. [Read more about filtering the AutoComplete items...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/filtering)
32
+ * Virtualization&mdash;All Kendo UI for Angular Dropdowns that do not visualize hierarchical data in their popups provide an option for significantly improving the performance when working with large datasets by using virtualization. [Read more about the virtualization functionality in the AutoComplete...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping)
33
+ * Grouping&mdash;All Kendo UI for Angular Dropdowns that do not visualize hierarchical data in their popups provide an option for displaying grouped data inside them. [Read more about the grouping functionality in the AutoComplete...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/virtualization)
34
+ * Disabled Options&mdash;You can disable some of the predefined list options of the Dropdowns so that users cannot interact with them. [Read more about the disabled options in the AutoComplete...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/disabled-items)
35
+ * Adaptive Mode&mdash;All Kendo UI for Angular Dropdowns support a mobile-friendly rendering mode of their popups. Enabling the adaptive mode allows the components to automatically fit to the current screen size. [Read more about the adaptive mode in the AutoComplete...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/adaptive-mode)
36
+ * Appearance&mdash;Each Kendo UI for Angular Dropdowns component provides options for customizing the look and feel such as size, border radius, and fill modes. [Read more about the customazible appearance of the AutoComplete...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/appearance)
37
+ * Templates&mdash;You can visually customize the content and the general look and feel of the items and elements list by utilizing the ready-to-use header, footer, and other templates. [Read more about the templates used by the AutoComplete...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates)
38
+ * Globalization&mdash;The Kendo UI for Angular Dropdowns support globalization to ensure that they can fit well in any application, no matter what languages and locales need to be supported. Additionally, the Dropdowns support rendering in a right-to-left (RTL) direction. [Read more about Dropdowns globalization...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/globalization)
39
+ * Accessibility&mdash;The Dropdowns are accessible for screen readers and support WAI-ARIA attributes. [Read more about accessibility support of the AutoComplete...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/accessibility)
40
+ * Keyboard Navigation&mdash;The Dropdowns support a number of keyboard shortcuts which allow users to accomplish various commands. [Read more about the keyboard navigation of the AutoComplete...](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/keyboard-navigation)
44
41
 
45
- The [Angular AutoComplete Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns) is a text field that shows suggested values in a drop down as the user types.
42
+ ## Support Options
46
43
 
47
- ## Angular ComboBox Component
44
+ For any issues you might encounter while working with the Kendo UI for Angular Dropdowns, you have the following support channels available:
48
45
 
49
- The [Angular ComboBox Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns) is a form component in which a user chooses an item from a list of options that appear in a drop down or enter their own in the text field.
50
-
51
- ### More Features
52
-
53
- * [Custom values](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/custom-values/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;While you typically provide the list manually or through data binding, you can also allow users to enter their own values.
54
- * [Cascading ComboBoxes](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/cascading/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Render a series of two or more ComboBoxes where each ComboBox is filtered based on the selected option in the previous ComboBox.
55
-
56
- ## Angular DropDownList Component
57
-
58
- The [Angular DropDownList Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns) is a form component that allows users to selct one value from a list created manually or through data binding. Items can only be added by the user through an "Add Item" button.
59
-
60
- ### More Features
61
-
62
- * [Add New Item](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/add-new-item/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Render an "Add New Item" button when the user enters text that does not match one of the predefined items.
63
- * [Cascading DropDownLists](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/cascading/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Render a series of two or more DropDownLists where each DropDownList is filtered based on the selected option in the previous DropDownList.
64
-
65
- ## Angular DropDownTree Component
66
-
67
- The [Angular DropDownTree Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns) renders data in a tree-like structure and lets users choose a single predefined value.
68
-
69
- ### More Features
70
-
71
- * [Control the open state](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/open-state/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Show or hide items in the options list when the component is loaded.
72
- * [Persist expanded state of nodes](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/expanded-state/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;The DropDownTree can remember the open or closed stated of nodes when a the component is reloaded.
73
-
74
- ## Angular MultiColumnComboBox Component
75
-
76
- The [Angular MultiColumnComboBox Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns) is a form component that allows users to choose from a list of items in a table (or grid) strucutre.
77
-
78
- ### More Features
79
-
80
- * [Custom values](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/custom-values/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Allow users to enter their own values when they do not exist in the predefined list.
81
- * [Contol the open state](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/open-state/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Show or hide items in the options list when the component is loaded.
82
-
83
- ## Angular MultiSelect Component
84
-
85
- The [Angular MultiSelect Component](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns) displays a list of options and allows users to select one or more.
86
-
87
- ### More Features
88
-
89
- * [Custom values](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/custom-values/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Allow users to enter their own values when they do not exist in the predefined list.
90
- * [Contol the open state](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/open-state/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Show or hide items in the options list when the component is loaded.
91
- * [Summary-tag mode](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/summary-tag-mode/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Customize the display of the selected tags with a summary, chips, and more.
92
-
93
- ## Angular MultiSelectTree Component
94
-
95
- The [Angular MultiSelectTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns) is a form component that renders data in a tree-like structure and allows for multiple selection.
96
-
97
- ### More Features
98
-
99
- * [Contol the open state](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/open-state/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Show or hide items in the options list when the component is loaded.
100
- * [Persist expanded state of nodes](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/expanded-state/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;The MultiSelectTree can remember the open or closed stated of nodes when a the component is reloaded.
101
- * [Summary-tag mode](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/summary-tag-mode/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)&mdash;Customize the display of the selected tags with a summary, chips, and more.
46
+ * Industry-leading technical support&mdash;Kendo UI for Angular paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use the [dedicated Kendo UI for Angular support system](https://www.telerik.com/account/support-center/contact-us/technical-support).
47
+ * Product forums&mdash;The [Kendo UI for Angular forums](https://www.telerik.com/forums/kendo-angular-ui) are part of the free support you can get from the community and from the Kendo UI for Angular team.
48
+ * Feedback portal&mdash;The [Kendo UI for Angular feedback portal](https://feedback.telerik.com/kendo-angular-ui) is where you can request and vote for new features to be added.
102
49
 
103
50
  ## Resources
104
51
 
105
- * [Get Started with Kendo UI for Angular (requires trial registration)](https://www.telerik.com/kendo-angular-ui/getting-started?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)
106
- * [Demos, documentation, and component reference](https://www.telerik.com/kendo-angular-ui/components?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)
107
- * [Blogs](http://www.telerik.com/blogs/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)
108
- * [Kendo UI for Angular pricing and licensing](https://www.telerik.com/purchase/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)
109
-
110
- ## Questions and Feedback
111
-
112
- * [Official Forums](https://www.telerik.com/forums/kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dropdowns)
113
- * [GitHub Issues](https://github.com/telerik/kendo-angular/issues)
114
- * [Feedback Portal](https://feedback.telerik.com/kendo-angular-ui)
115
- * [StackOverflow](https://stackoverflow.com/questions/tagged/kendo-ui-angular2)
52
+ * [Getting Started with Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/getting-started)
53
+ * [Getting Started with the Kendo UI for Angular Dropdowns](https://www.telerik.com/kendo-angular-ui/components/dropdowns/installation/getting-started)
54
+ * [Demos, documentation, and component reference](https://www.telerik.com/kendo-angular-ui/components)
55
+ * [Blogs](http://www.telerik.com/blogs/kendo-ui)
56
+ * [Kendo UI for Angular pricing and licensing](https://www.telerik.com/purchase/kendo-ui)
116
57
 
117
58
  *Copyright © 2024 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
118
59
 
119
- *Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.*
60
+ *Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.*
@@ -516,5 +516,5 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
516
516
  private closeActionSheet;
517
517
  private openActionSheet;
518
518
  static ɵfac: i0.ɵɵFactoryDeclaration<AutoCompleteComponent, never>;
519
- static ɵcmp: i0.ɵɵComponentDeclaration<AutoCompleteComponent, "kendo-autocomplete", ["kendoAutoComplete"], { "highlightFirst": "highlightFirst"; "showStickyHeader": "showStickyHeader"; "focusableId": "focusableId"; "data": "data"; "value": "value"; "valueField": "valueField"; "placeholder": "placeholder"; "adaptiveMode": "adaptiveMode"; "title": "title"; "subtitle": "subtitle"; "popupSettings": "popupSettings"; "listHeight": "listHeight"; "loading": "loading"; "clearButton": "clearButton"; "suggest": "suggest"; "disabled": "disabled"; "itemDisabled": "itemDisabled"; "readonly": "readonly"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "filterable": "filterable"; "virtual": "virtual"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "inputAttributes": "inputAttributes"; }, { "valueChange": "valueChange"; "filterChange": "filterChange"; "open": "open"; "opened": "opened"; "close": "close"; "closed": "closed"; "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; }, ["template", "headerTemplate", "footerTemplate", "noDataTemplate", "groupTemplate", "fixedGroupTemplate", "suffixTemplate", "prefixTemplate"], never, true, never>;
519
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutoCompleteComponent, "kendo-autocomplete", ["kendoAutoComplete"], { "highlightFirst": { "alias": "highlightFirst"; "required": false; }; "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "focusableId": { "alias": "focusableId"; "required": false; }; "data": { "alias": "data"; "required": false; }; "value": { "alias": "value"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "listHeight": { "alias": "listHeight"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "suggest": { "alias": "suggest"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; }, { "valueChange": "valueChange"; "filterChange": "filterChange"; "open": "open"; "opened": "opened"; "close": "close"; "closed": "closed"; "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; }, ["template", "headerTemplate", "footerTemplate", "noDataTemplate", "groupTemplate", "fixedGroupTemplate", "suffixTemplate", "prefixTemplate"], never, true, never>;
520
520
  }
@@ -32,6 +32,6 @@ import * as i10 from "@progress/kendo-angular-common";
32
32
  */
33
33
  export declare class AutoCompleteModule {
34
34
  static ɵfac: i0.ɵɵFactoryDeclaration<AutoCompleteModule, never>;
35
- static ɵmod: i0.ɵɵNgModuleDeclaration<AutoCompleteModule, never, [typeof i1.AutoCompleteComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent], [typeof i1.AutoCompleteComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.AdornmentsModule]>;
35
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AutoCompleteModule, never, [typeof i1.AutoCompleteComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.PrefixTemplateDirective, typeof i10.SuffixTemplateDirective, typeof i10.SeparatorComponent], [typeof i1.AutoCompleteComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.PrefixTemplateDirective, typeof i10.SuffixTemplateDirective, typeof i10.SeparatorComponent]>;
36
36
  static ɵinj: i0.ɵɵInjectorDeclaration<AutoCompleteModule>;
37
37
  }
@@ -76,5 +76,5 @@ export declare class ComboBoxColumnComponent {
76
76
  */
77
77
  matchesMedia: boolean;
78
78
  static ɵfac: i0.ɵɵFactoryDeclaration<ComboBoxColumnComponent, never>;
79
- static ɵcmp: i0.ɵɵComponentDeclaration<ComboBoxColumnComponent, "kendo-combobox-column", never, { "field": "field"; "title": "title"; "width": "width"; "hidden": "hidden"; "style": "style"; "headerStyle": "headerStyle"; "class": "class"; "headerClass": "headerClass"; "media": "media"; }, {}, ["cellTemplate", "headerTemplate"], never, true, never>;
79
+ static ɵcmp: i0.ɵɵComponentDeclaration<ComboBoxColumnComponent, "kendo-combobox-column", never, { "field": { "alias": "field"; "required": false; }; "title": { "alias": "title"; "required": false; }; "width": { "alias": "width"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "style": { "alias": "style"; "required": false; }; "headerStyle": { "alias": "headerStyle"; "required": false; }; "class": { "alias": "class"; "required": false; }; "headerClass": { "alias": "headerClass"; "required": false; }; "media": { "alias": "media"; "required": false; }; }, {}, ["cellTemplate", "headerTemplate"], never, true, never>;
80
80
  }
@@ -669,5 +669,5 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
669
669
  private closeActionSheet;
670
670
  private openActionSheet;
671
671
  static ɵfac: i0.ɵɵFactoryDeclaration<ComboBoxComponent, never>;
672
- static ɵcmp: i0.ɵɵComponentDeclaration<ComboBoxComponent, "kendo-combobox", ["kendoComboBox"], { "icon": "icon"; "svgIcon": "svgIcon"; "inputAttributes": "inputAttributes"; "showStickyHeader": "showStickyHeader"; "focusableId": "focusableId"; "allowCustom": "allowCustom"; "data": "data"; "value": "value"; "textField": "textField"; "valueField": "valueField"; "valuePrimitive": "valuePrimitive"; "valueNormalizer": "valueNormalizer"; "placeholder": "placeholder"; "adaptiveMode": "adaptiveMode"; "title": "title"; "subtitle": "subtitle"; "popupSettings": "popupSettings"; "listHeight": "listHeight"; "loading": "loading"; "suggest": "suggest"; "clearButton": "clearButton"; "disabled": "disabled"; "itemDisabled": "itemDisabled"; "readonly": "readonly"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "filterable": "filterable"; "virtual": "virtual"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; }, { "valueChange": "valueChange"; "selectionChange": "selectionChange"; "filterChange": "filterChange"; "open": "open"; "opened": "opened"; "close": "close"; "closed": "closed"; "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "escape": "escape"; }, ["template", "headerTemplate", "footerTemplate", "noDataTemplate", "groupTemplate", "fixedGroupTemplate", "suffixTemplate", "prefixTemplate"], never, true, never>;
672
+ static ɵcmp: i0.ɵɵComponentDeclaration<ComboBoxComponent, "kendo-combobox", ["kendoComboBox"], { "icon": { "alias": "icon"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "focusableId": { "alias": "focusableId"; "required": false; }; "allowCustom": { "alias": "allowCustom"; "required": false; }; "data": { "alias": "data"; "required": false; }; "value": { "alias": "value"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "valuePrimitive": { "alias": "valuePrimitive"; "required": false; }; "valueNormalizer": { "alias": "valueNormalizer"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "listHeight": { "alias": "listHeight"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "suggest": { "alias": "suggest"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; }, { "valueChange": "valueChange"; "selectionChange": "selectionChange"; "filterChange": "filterChange"; "open": "open"; "opened": "opened"; "close": "close"; "closed": "closed"; "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "escape": "escape"; }, ["template", "headerTemplate", "footerTemplate", "noDataTemplate", "groupTemplate", "fixedGroupTemplate", "suffixTemplate", "prefixTemplate"], never, true, never>;
673
673
  }
@@ -38,6 +38,6 @@ import * as i14 from "./combobox-column/column-cell-template.directive";
38
38
  */
39
39
  export declare class ComboBoxModule {
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<ComboBoxModule, never>;
41
- static ɵmod: i0.ɵɵNgModuleDeclaration<ComboBoxModule, never, [typeof i1.ComboBoxComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i11.MultiColumnComboBoxComponent, typeof i12.ComboBoxColumnComponent, typeof i13.ColumnHeaderTemplateDirective, typeof i14.ColumnCellTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent], [typeof i1.ComboBoxComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i11.MultiColumnComboBoxComponent, typeof i12.ComboBoxColumnComponent, typeof i13.ColumnHeaderTemplateDirective, typeof i14.ColumnCellTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.AdornmentsModule]>;
41
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ComboBoxModule, never, [typeof i1.ComboBoxComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i11.MultiColumnComboBoxComponent, typeof i12.ComboBoxColumnComponent, typeof i13.ColumnHeaderTemplateDirective, typeof i14.ColumnCellTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.PrefixTemplateDirective, typeof i10.SuffixTemplateDirective, typeof i10.SeparatorComponent], [typeof i1.ComboBoxComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i11.MultiColumnComboBoxComponent, typeof i12.ComboBoxColumnComponent, typeof i13.ColumnHeaderTemplateDirective, typeof i14.ColumnCellTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.PrefixTemplateDirective, typeof i10.SuffixTemplateDirective, typeof i10.SeparatorComponent]>;
42
42
  static ɵinj: i0.ɵɵInjectorDeclaration<ComboBoxModule>;
43
43
  }
@@ -39,5 +39,5 @@ export declare class ResponsiveRendererComponent {
39
39
  messageFor(key: string): string;
40
40
  onValueChange(value: string): void;
41
41
  static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveRendererComponent, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<ResponsiveRendererComponent, "responsive-renderer", never, { "title": "title"; "showActionButtons": "showActionButtons"; "subtitle": "subtitle"; "size": "size"; "showTextInput": "showTextInput"; "sharedPopupActionSheetTemplate": "sharedPopupActionSheetTemplate"; "isActionSheetExpanded": "isActionSheetExpanded"; "text": "text"; "placeholder": "placeholder"; }, { "closePopup": "closePopup"; "textInputChange": "textInputChange"; "navigate": "navigate"; "onExpand": "onExpand"; "onCollapse": "onCollapse"; "onApply": "onApply"; "onCancel": "onCancel"; }, never, never, true, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResponsiveRendererComponent, "responsive-renderer", never, { "title": { "alias": "title"; "required": false; }; "showActionButtons": { "alias": "showActionButtons"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showTextInput": { "alias": "showTextInput"; "required": false; }; "sharedPopupActionSheetTemplate": { "alias": "sharedPopupActionSheetTemplate"; "required": false; }; "isActionSheetExpanded": { "alias": "isActionSheetExpanded"; "required": false; }; "text": { "alias": "text"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "closePopup": "closePopup"; "textInputChange": "textInputChange"; "navigate": "navigate"; "onExpand": "onExpand"; "onCollapse": "onCollapse"; "onApply": "onApply"; "onCancel": "onCancel"; }, never, never, true, never>;
43
43
  }
@@ -18,4 +18,4 @@ export interface ItemArgs {
18
18
  /**
19
19
  * Represents the callback that is used by the `itemDisabled` property.
20
20
  */
21
- export declare type ItemDisabledFn = (context: ItemArgs) => boolean;
21
+ export type ItemDisabledFn = (context: ItemArgs) => boolean;
@@ -15,5 +15,5 @@ export declare class FilterInputDirective implements OnChanges {
15
15
  ngOnChanges(): void;
16
16
  private nextTick;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterInputDirective, never>;
18
- static ɵdir: i0.ɵɵDirectiveDeclaration<FilterInputDirective, "[filterInput]", never, { "focused": "filterInput"; }, {}, never, never, true, never>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FilterInputDirective, "[filterInput]", never, { "focused": { "alias": "filterInput"; "required": false; }; }, {}, never, never, true, never>;
19
19
  }
@@ -59,5 +59,5 @@ export declare class FilterDirective implements OnInit, OnDestroy {
59
59
  private getFilterFields;
60
60
  private get filterSettings();
61
61
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterDirective, never>;
62
- static ɵdir: i0.ɵɵDirectiveDeclaration<FilterDirective, "[kendoDropDownFilter]", never, { "data": "data"; "rawSettings": "kendoDropDownFilter"; "filterable": "filterable"; }, {}, never, never, true, never>;
62
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FilterDirective, "[kendoDropDownFilter]", never, { "data": { "alias": "data"; "required": false; }; "rawSettings": { "alias": "kendoDropDownFilter"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; }, {}, never, never, true, never>;
63
63
  }
@@ -130,5 +130,5 @@ export declare class ListComponent implements OnChanges, OnDestroy, AfterViewIni
130
130
  private firstGroupHeaderInTargetedPage;
131
131
  private setComponentClasses;
132
132
  static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
133
- static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-list", never, { "selected": "selected"; "focused": "focused"; "textField": "textField"; "valueField": "valueField"; "height": "height"; "template": "template"; "groupTemplate": "groupTemplate"; "fixedGroupTemplate": "fixedGroupTemplate"; "show": "show"; "id": "id"; "optionPrefix": "optionPrefix"; "multipleSelection": "multipleSelection"; "virtual": "virtual"; "type": "type"; "checkboxes": "checkboxes"; "ariaLive": "ariaLive"; "isMultiselect": "isMultiselect"; "isActionSheetExpanded": "isActionSheetExpanded"; "showStickyHeader": "showStickyHeader"; "data": "data"; "size": "size"; "rounded": "rounded"; }, { "onClick": "onClick"; "pageChange": "pageChange"; "listResize": "listResize"; "popupListScroll": "popupListScroll"; }, never, never, true, never>;
133
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-list", never, { "selected": { "alias": "selected"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "height": { "alias": "height"; "required": false; }; "template": { "alias": "template"; "required": false; }; "groupTemplate": { "alias": "groupTemplate"; "required": false; }; "fixedGroupTemplate": { "alias": "fixedGroupTemplate"; "required": false; }; "show": { "alias": "show"; "required": false; }; "id": { "alias": "id"; "required": false; }; "optionPrefix": { "alias": "optionPrefix"; "required": false; }; "multipleSelection": { "alias": "multipleSelection"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "type": { "alias": "type"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "ariaLive": { "alias": "ariaLive"; "required": false; }; "isMultiselect": { "alias": "isMultiselect"; "required": false; }; "isActionSheetExpanded": { "alias": "isActionSheetExpanded"; "required": false; }; "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; }, { "onClick": "onClick"; "pageChange": "pageChange"; "listResize": "listResize"; "popupListScroll": "popupListScroll"; }, never, never, true, never>;
134
134
  }
@@ -41,5 +41,5 @@ export declare class Messages extends ComponentMessages {
41
41
  */
42
42
  cancelButton: string;
43
43
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
44
- static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "noDataText": "noDataText"; "clearTitle": "clearTitle"; "checkAllText": "checkAllText"; "selectButtonText": "selectButtonText"; "filterInputLabel": "filterInputLabel"; "popupLabel": "popupLabel"; "applyButton": "applyButton"; "cancelButton": "cancelButton"; }, {}, never, never, false, never>;
44
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "noDataText": { "alias": "noDataText"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "checkAllText": { "alias": "checkAllText"; "required": false; }; "selectButtonText": { "alias": "selectButtonText"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "popupLabel": { "alias": "popupLabel"; "required": false; }; "applyButton": { "alias": "applyButton"; "required": false; }; "cancelButton": { "alias": "cancelButton"; "required": false; }; }, {}, never, never, false, never>;
45
45
  }
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * @hidden
7
7
  */
8
- export declare type Direction = 'rtl' | 'ltr';
8
+ export type Direction = 'rtl' | 'ltr';
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * Represents the possible fillMode options of the dropdowns.
7
7
  */
8
- export declare type DropDownFillMode = 'solid' | 'flat' | 'outline' | 'none';
8
+ export type DropDownFillMode = 'solid' | 'flat' | 'outline' | 'none';
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * @hidden
7
7
  */
8
- export declare type ListType = 'list' | 'dropdowngrid';
8
+ export type ListType = 'list' | 'dropdowngrid';
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * Represents the possible rounded options of the dropdowns.
7
7
  */
8
- export declare type DropDownRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
8
+ export type DropDownRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * Represents the possible size options of the dropdowns.
7
7
  */
8
- export declare type DropDownSize = 'small' | 'medium' | 'large' | 'none';
8
+ export type DropDownSize = 'small' | 'medium' | 'large' | 'none';
@@ -91,5 +91,5 @@ export declare class SearchBarComponent implements OnChanges, OnInit, OnDestroy
91
91
  setInputSize(): void;
92
92
  private setInputAttributes;
93
93
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
94
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "input[kendoSearchbar]", never, { "tagListId": "tagListId"; "readonly": "readonly"; "disabled": "disabled"; "isRequired": "isRequired"; "isSuggestable": "isSuggestable"; "isFilterable": "isFilterable"; "userInput": "userInput"; "suggestedText": "suggestedText"; "inputAttributes": "inputAttributes"; "id": "id"; "activeDescendant": "activeDescendant"; "tabIndex": "tabIndex"; "isLoading": "isLoading"; "ariaControls": "ariaControls"; "ariaExpanded": "ariaExpanded"; "placeholder": "placeholder"; }, { "valueChange": "valueChange"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "onNavigate": "onNavigate"; }, never, never, true, never>;
94
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "input[kendoSearchbar]", never, { "tagListId": { "alias": "tagListId"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "isSuggestable": { "alias": "isSuggestable"; "required": false; }; "isFilterable": { "alias": "isFilterable"; "required": false; }; "userInput": { "alias": "userInput"; "required": false; }; "suggestedText": { "alias": "suggestedText"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "id": { "alias": "id"; "required": false; }; "activeDescendant": { "alias": "activeDescendant"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "ariaControls": { "alias": "ariaControls"; "required": false; }; "ariaExpanded": { "alias": "ariaExpanded"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "valueChange": "valueChange"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "onNavigate": "onNavigate"; }, never, never, true, never>;
95
95
  }
@@ -20,5 +20,5 @@ export declare class SelectableDirective {
20
20
  get selectedClassName(): boolean;
21
21
  onClick(event: any): void;
22
22
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectableDirective, never>;
23
- static ɵdir: i0.ɵɵDirectiveDeclaration<SelectableDirective, "[kendoDropDownsSelectable]", never, { "index": "index"; "checkboxes": "checkboxes"; "height": "height"; "isMultiselect": "isMultiselect"; "multipleSelection": "multipleSelection"; }, {}, never, never, true, never>;
23
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectableDirective, "[kendoDropDownsSelectable]", never, { "index": { "alias": "index"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "height": { "alias": "height"; "required": false; }; "isMultiselect": { "alias": "isMultiselect"; "required": false; }; "multipleSelection": { "alias": "multipleSelection"; "required": false; }; }, {}, never, never, true, never>;
24
24
  }
@@ -23,5 +23,5 @@ export declare class SharedDropDownEventsDirective implements AfterViewInit, OnD
23
23
  ngAfterViewInit(): void;
24
24
  ngOnDestroy(): void;
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedDropDownEventsDirective, never>;
26
- static ɵdir: i0.ɵɵDirectiveDeclaration<SharedDropDownEventsDirective, "[kendoDropDownSharedEvents]", never, { "hostElement": "hostElement"; "clearButtonClicked": "clearButtonClicked"; "isFocused": "isFocused"; }, { "isFocusedChange": "isFocusedChange"; "onFocus": "onFocus"; "handleBlur": "handleBlur"; }, never, never, true, never>;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SharedDropDownEventsDirective, "[kendoDropDownSharedEvents]", never, { "hostElement": { "alias": "hostElement"; "required": false; }; "clearButtonClicked": { "alias": "clearButtonClicked"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; }, { "isFocusedChange": "isFocusedChange"; "onFocus": "onFocus"; "handleBlur": "handleBlur"; }, never, never, true, never>;
27
27
  }
@@ -39,7 +39,7 @@ export declare class TagListComponent {
39
39
  */
40
40
  disabledIndices: Set<number>;
41
41
  removeTag: EventEmitter<any>;
42
- hostClasses: boolean;
42
+ hostClass: boolean;
43
43
  get hostId(): string;
44
44
  taglistRole: string;
45
45
  multiselectable: boolean;
@@ -53,5 +53,5 @@ export declare class TagListComponent {
53
53
  tagAriaHidden(index: any): boolean;
54
54
  private getPropField;
55
55
  static ɵfac: i0.ɵɵFactoryDeclaration<TagListComponent, never>;
56
- static ɵcmp: i0.ɵɵComponentDeclaration<TagListComponent, "kendo-taglist", never, { "tags": "tags"; "textField": "textField"; "valueField": "valueField"; "valueDepth": "valueDepth"; "focused": "focused"; "template": "template"; "groupTemplate": "groupTemplate"; "disabled": "disabled"; "tagPrefix": "tagPrefix"; "id": "id"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "disabledIndices": "disabledIndices"; }, { "removeTag": "removeTag"; }, never, ["*"], true, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagListComponent, "kendo-taglist", never, { "tags": { "alias": "tags"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "valueDepth": { "alias": "valueDepth"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "template": { "alias": "template"; "required": false; }; "groupTemplate": { "alias": "groupTemplate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tagPrefix": { "alias": "tagPrefix"; "required": false; }; "id": { "alias": "id"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "disabledIndices": { "alias": "disabledIndices"; "required": false; }; }, { "removeTag": "removeTag"; }, never, ["*"], true, never>;
57
57
  }
package/common/util.d.ts CHANGED
@@ -194,7 +194,7 @@ export declare const windowSize: () => 'large' | 'medium' | 'small';
194
194
  * * `none`&mdash;(default)
195
195
  * * `auto`
196
196
  */
197
- export declare type AdaptiveMode = 'none' | 'auto';
197
+ export type AdaptiveMode = 'none' | 'auto';
198
198
  /**
199
199
  * @hidden
200
200
  */
@@ -202,7 +202,7 @@ export declare const isTruthy: (value: any) => boolean;
202
202
  /**
203
203
  * @hidden
204
204
  */
205
- export declare type WindowSize = 'large' | 'medium' | 'small';
205
+ export type WindowSize = 'large' | 'medium' | 'small';
206
206
  /**
207
207
  * @hidden
208
208
  */
@@ -609,5 +609,5 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
609
609
  private closeActionSheet;
610
610
  private openActionSheet;
611
611
  static ɵfac: i0.ɵɵFactoryDeclaration<DropDownListComponent, never>;
612
- static ɵcmp: i0.ɵɵComponentDeclaration<DropDownListComponent, "kendo-dropdownlist", ["kendoDropDownList"], { "customIconClass": "customIconClass"; "showStickyHeader": "showStickyHeader"; "icon": "icon"; "svgIcon": "svgIcon"; "loading": "loading"; "data": "data"; "value": "value"; "textField": "textField"; "valueField": "valueField"; "adaptiveMode": "adaptiveMode"; "title": "title"; "subtitle": "subtitle"; "popupSettings": "popupSettings"; "listHeight": "listHeight"; "defaultItem": "defaultItem"; "disabled": "disabled"; "itemDisabled": "itemDisabled"; "readonly": "readonly"; "filterable": "filterable"; "virtual": "virtual"; "ignoreCase": "ignoreCase"; "delay": "delay"; "valuePrimitive": "valuePrimitive"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "leftRightArrowsNavigation": "leftRightArrowsNavigation"; "focusableId": "id"; }, { "valueChange": "valueChange"; "filterChange": "filterChange"; "selectionChange": "selectionChange"; "open": "open"; "opened": "opened"; "close": "close"; "closed": "closed"; "onFocus": "focus"; "onBlur": "blur"; }, ["itemTemplate", "groupTemplate", "fixedGroupTemplate", "valueTemplate", "headerTemplate", "footerTemplate", "noDataTemplate"], never, true, never>;
612
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropDownListComponent, "kendo-dropdownlist", ["kendoDropDownList"], { "customIconClass": { "alias": "customIconClass"; "required": false; }; "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "data": { "alias": "data"; "required": false; }; "value": { "alias": "value"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "listHeight": { "alias": "listHeight"; "required": false; }; "defaultItem": { "alias": "defaultItem"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "ignoreCase": { "alias": "ignoreCase"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; "valuePrimitive": { "alias": "valuePrimitive"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "leftRightArrowsNavigation": { "alias": "leftRightArrowsNavigation"; "required": false; }; "focusableId": { "alias": "id"; "required": false; }; }, { "valueChange": "valueChange"; "filterChange": "filterChange"; "selectionChange": "selectionChange"; "open": "open"; "opened": "opened"; "close": "close"; "closed": "closed"; "onFocus": "focus"; "onBlur": "blur"; }, ["itemTemplate", "groupTemplate", "fixedGroupTemplate", "valueTemplate", "headerTemplate", "footerTemplate", "noDataTemplate"], never, true, never>;
613
613
  }
@@ -67,6 +67,6 @@ import * as i31 from "./dropdowntrees/summary-tag/summary-tag.directive";
67
67
  */
68
68
  export declare class DropDownsModule {
69
69
  static ɵfac: i0.ɵɵFactoryDeclaration<DropDownsModule, never>;
70
- static ɵmod: i0.ɵɵNgModuleDeclaration<DropDownsModule, never, [typeof i1.AutoCompleteComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i11.ComboBoxComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i12.MultiColumnComboBoxComponent, typeof i13.ComboBoxColumnComponent, typeof i14.ColumnHeaderTemplateDirective, typeof i15.ColumnCellTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i16.DropDownListComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i18.MultiSelectComponent, typeof i19.SummaryTagDirective, typeof i20.CustomItemTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i21.GroupTagTemplateDirective, typeof i22.TagTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i23.DropDownTreeComponent, typeof i24.DropDownTreeFlatBindingDirective, typeof i25.DropDownTreeHierarchyBindingDirective, typeof i26.DropDownTreesExpandDirective, typeof i27.NodeTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i9.CustomMessagesComponent, typeof i28.MultiSelectTreeComponent, typeof i29.MultiSelectTreeFlatBindingDirective, typeof i30.MultiSelectTreeHierarchyBindingDirective, typeof i26.DropDownTreesExpandDirective, typeof i27.NodeTemplateDirective, typeof i31.MultiSelectTreeSummaryTagDirective, typeof i21.GroupTagTemplateDirective, typeof i22.TagTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i9.CustomMessagesComponent], [typeof i1.AutoCompleteComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i11.ComboBoxComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i12.MultiColumnComboBoxComponent, typeof i13.ComboBoxColumnComponent, typeof i14.ColumnHeaderTemplateDirective, typeof i15.ColumnCellTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i16.DropDownListComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i18.MultiSelectComponent, typeof i19.SummaryTagDirective, typeof i20.CustomItemTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i21.GroupTagTemplateDirective, typeof i22.TagTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i23.DropDownTreeComponent, typeof i24.DropDownTreeFlatBindingDirective, typeof i25.DropDownTreeHierarchyBindingDirective, typeof i26.DropDownTreesExpandDirective, typeof i27.NodeTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i9.CustomMessagesComponent, typeof i28.MultiSelectTreeComponent, typeof i29.MultiSelectTreeFlatBindingDirective, typeof i30.MultiSelectTreeHierarchyBindingDirective, typeof i26.DropDownTreesExpandDirective, typeof i27.NodeTemplateDirective, typeof i31.MultiSelectTreeSummaryTagDirective, typeof i21.GroupTagTemplateDirective, typeof i22.TagTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i9.CustomMessagesComponent, typeof i10.AdornmentsModule]>;
70
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DropDownsModule, never, [typeof i1.AutoCompleteComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i11.ComboBoxComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i12.MultiColumnComboBoxComponent, typeof i13.ComboBoxColumnComponent, typeof i14.ColumnHeaderTemplateDirective, typeof i15.ColumnCellTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i16.DropDownListComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i18.MultiSelectComponent, typeof i19.SummaryTagDirective, typeof i20.CustomItemTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i21.GroupTagTemplateDirective, typeof i22.TagTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i23.DropDownTreeComponent, typeof i24.DropDownTreeFlatBindingDirective, typeof i25.DropDownTreeHierarchyBindingDirective, typeof i26.DropDownTreesExpandDirective, typeof i27.NodeTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i9.CustomMessagesComponent, typeof i28.MultiSelectTreeComponent, typeof i29.MultiSelectTreeFlatBindingDirective, typeof i30.MultiSelectTreeHierarchyBindingDirective, typeof i26.DropDownTreesExpandDirective, typeof i27.NodeTemplateDirective, typeof i31.MultiSelectTreeSummaryTagDirective, typeof i21.GroupTagTemplateDirective, typeof i22.TagTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i9.CustomMessagesComponent, typeof i10.PrefixTemplateDirective, typeof i10.SuffixTemplateDirective, typeof i10.SeparatorComponent], [typeof i1.AutoCompleteComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i11.ComboBoxComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i12.MultiColumnComboBoxComponent, typeof i13.ComboBoxColumnComponent, typeof i14.ColumnHeaderTemplateDirective, typeof i15.ColumnCellTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i16.DropDownListComponent, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i18.MultiSelectComponent, typeof i19.SummaryTagDirective, typeof i20.CustomItemTemplateDirective, typeof i2.FixedGroupTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.GroupTemplateDirective, typeof i21.GroupTagTemplateDirective, typeof i22.TagTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i6.ItemTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i8.FilterDirective, typeof i9.CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i23.DropDownTreeComponent, typeof i24.DropDownTreeFlatBindingDirective, typeof i25.DropDownTreeHierarchyBindingDirective, typeof i26.DropDownTreesExpandDirective, typeof i27.NodeTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i9.CustomMessagesComponent, typeof i28.MultiSelectTreeComponent, typeof i29.MultiSelectTreeFlatBindingDirective, typeof i30.MultiSelectTreeHierarchyBindingDirective, typeof i26.DropDownTreesExpandDirective, typeof i27.NodeTemplateDirective, typeof i31.MultiSelectTreeSummaryTagDirective, typeof i21.GroupTagTemplateDirective, typeof i22.TagTemplateDirective, typeof i5.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i17.ValueTemplateDirective, typeof i7.NoDataTemplateDirective, typeof i9.CustomMessagesComponent, typeof i10.PrefixTemplateDirective, typeof i10.SuffixTemplateDirective, typeof i10.SeparatorComponent]>;
71
71
  static ɵinj: i0.ɵɵInjectorDeclaration<DropDownsModule>;
72
72
  }
@@ -45,5 +45,5 @@ export declare abstract class BaseCheckDirective {
45
45
  */
46
46
  private getKey;
47
47
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseCheckDirective, never>;
48
- static ɵdir: i0.ɵɵDirectiveDeclaration<BaseCheckDirective, never, never, { "valueField": "valueField"; "checkedItems": "checkedItems"; "isHeterogeneous": "isHeterogeneous"; }, {}, never, never, false, never>;
48
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseCheckDirective, never, never, { "valueField": { "alias": "valueField"; "required": false; }; "checkedItems": { "alias": "checkedItems"; "required": false; }; "isHeterogeneous": { "alias": "isHeterogeneous"; "required": false; }; }, {}, never, never, false, never>;
49
49
  }
@@ -52,5 +52,5 @@ export declare class CheckAllDirective extends BaseCheckDirective implements OnC
52
52
  private allChecked;
53
53
  private someChecked;
54
54
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckAllDirective, never>;
55
- static ɵdir: i0.ɵɵDirectiveDeclaration<CheckAllDirective, "[checkAll]", never, { "lastAction": "lastAction"; "treeview": "treeview"; "checkedItems": "checkedItems"; "valueField": "valueField"; "focused": "checkAll"; }, { "checkedItemsChange": "checkedItemsChange"; }, never, never, true, never>;
55
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CheckAllDirective, "[checkAll]", never, { "lastAction": { "alias": "lastAction"; "required": false; }; "treeview": { "alias": "treeview"; "required": false; }; "checkedItems": { "alias": "checkedItems"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "focused": { "alias": "checkAll"; "required": false; }; }, { "checkedItemsChange": "checkedItemsChange"; }, never, never, true, never>;
56
56
  }
@@ -53,5 +53,5 @@ export declare class CheckDirective extends BaseCheckDirective implements OnChan
53
53
  private checkParents;
54
54
  private isItemIndeterminate;
55
55
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckDirective, never>;
56
- static ɵdir: i0.ɵɵDirectiveDeclaration<CheckDirective, "[kendoMultiSelectTreeCheckable]", never, { "checkable": "checkable"; "valueField": "valueField"; "checkedItems": "checkedItems"; }, { "checkedItemsChange": "checkedItemsChange"; }, never, never, true, never>;
56
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CheckDirective, "[kendoMultiSelectTreeCheckable]", never, { "checkable": { "alias": "checkable"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "checkedItems": { "alias": "checkedItems"; "required": false; }; }, { "checkedItemsChange": "checkedItemsChange"; }, never, never, true, never>;
57
57
  }
@@ -26,5 +26,5 @@ export declare class DropDownTreeFlatBindingDirective extends FlatDataBindingDir
26
26
  constructor(dropDownTree: DataBoundComponent);
27
27
  ngOnChanges(changes: SimpleChanges): void;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<DropDownTreeFlatBindingDirective, never>;
29
- static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownTreeFlatBindingDirective, "[kendoDropDownTreeFlatBinding]", never, { "nodes": "kendoDropDownTreeFlatBinding"; "idField": "valueField"; }, {}, never, never, true, never>;
29
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownTreeFlatBindingDirective, "[kendoDropDownTreeFlatBinding]", never, { "nodes": { "alias": "kendoDropDownTreeFlatBinding"; "required": false; }; "idField": { "alias": "valueField"; "required": false; }; }, {}, never, never, true, never>;
30
30
  }
@@ -22,5 +22,5 @@ export declare class DropDownTreeHierarchyBindingDirective extends HierarchyBind
22
22
  constructor(dropDownTree: DataBoundComponent);
23
23
  ngOnChanges(changes: SimpleChanges): void;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<DropDownTreeHierarchyBindingDirective, never>;
25
- static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownTreeHierarchyBindingDirective, "[kendoDropDownTreeHierarchyBinding]", never, { "nodes": "kendoDropDownTreeHierarchyBinding"; }, {}, never, never, true, never>;
25
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownTreeHierarchyBindingDirective, "[kendoDropDownTreeHierarchyBinding]", never, { "nodes": { "alias": "kendoDropDownTreeHierarchyBinding"; "required": false; }; }, {}, never, never, true, never>;
26
26
  }
@@ -26,5 +26,5 @@ export declare class MultiSelectTreeFlatBindingDirective extends FlatDataBinding
26
26
  constructor(multiSelectTree: DataBoundComponent);
27
27
  ngOnChanges(changes: SimpleChanges): void;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectTreeFlatBindingDirective, never>;
29
- static ɵdir: i0.ɵɵDirectiveDeclaration<MultiSelectTreeFlatBindingDirective, "[kendoMultiSelectTreeFlatBinding]", never, { "nodes": "kendoMultiSelectTreeFlatBinding"; "idField": "valueField"; }, {}, never, never, true, never>;
29
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MultiSelectTreeFlatBindingDirective, "[kendoMultiSelectTreeFlatBinding]", never, { "nodes": { "alias": "kendoMultiSelectTreeFlatBinding"; "required": false; }; "idField": { "alias": "valueField"; "required": false; }; }, {}, never, never, true, never>;
30
30
  }
@@ -22,5 +22,5 @@ export declare class MultiSelectTreeHierarchyBindingDirective extends HierarchyB
22
22
  constructor(multiSelectTree: DataBoundComponent);
23
23
  ngOnChanges(changes: SimpleChanges): void;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectTreeHierarchyBindingDirective, never>;
25
- static ɵdir: i0.ɵɵDirectiveDeclaration<MultiSelectTreeHierarchyBindingDirective, "[kendoMultiSelectTreeHierarchyBinding]", never, { "nodes": "kendoMultiSelectTreeHierarchyBinding"; }, {}, never, never, true, never>;
25
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MultiSelectTreeHierarchyBindingDirective, "[kendoMultiSelectTreeHierarchyBinding]", never, { "nodes": { "alias": "kendoMultiSelectTreeHierarchyBinding"; "required": false; }; }, {}, never, never, true, never>;
26
26
  }