@progress/kendo-angular-dropdowns 17.0.0-develop.9 → 17.0.0
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.
- package/README.md +40 -99
- package/autocomplete/autocomplete.component.d.ts +1 -1
- package/autocomplete/autocomplete.module.d.ts +1 -1
- package/comboboxes/combobox-column/combobox-column.component.d.ts +1 -1
- package/comboboxes/combobox.component.d.ts +1 -1
- package/comboboxes/combobox.module.d.ts +1 -1
- package/common/action-sheet.component.d.ts +1 -1
- package/common/disabled-items/item-disabled.d.ts +1 -1
- package/common/filter-input.directive.d.ts +1 -1
- package/common/filtering/filter.directive.d.ts +1 -1
- package/common/list.component.d.ts +1 -1
- package/common/localization/messages.d.ts +1 -1
- package/common/models/direction.d.ts +1 -1
- package/common/models/fillmode.d.ts +1 -1
- package/common/models/list-type.d.ts +1 -1
- package/common/models/rounded.d.ts +1 -1
- package/common/models/size.d.ts +1 -1
- package/common/searchbar.component.d.ts +1 -1
- package/common/selection/selectable.directive.d.ts +1 -1
- package/common/shared-events.directive.d.ts +1 -1
- package/common/taglist.component.d.ts +2 -2
- package/common/util.d.ts +2 -2
- package/dropdownlist/dropdownlist.component.d.ts +1 -1
- package/dropdowns.module.d.ts +1 -1
- package/dropdowntrees/checked-state/base-check.directive.d.ts +1 -1
- package/dropdowntrees/checked-state/check-all.directive.d.ts +1 -1
- package/dropdowntrees/checked-state/check.directive.d.ts +1 -1
- package/dropdowntrees/data-binding/dropdowntree/flat-binding.directive.d.ts +1 -1
- package/dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive.d.ts +1 -1
- package/dropdowntrees/data-binding/multiselecttree/flat-binding.directive.d.ts +1 -1
- package/dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive.d.ts +1 -1
- package/dropdowntrees/dropdowntree.component.d.ts +1 -1
- package/dropdowntrees/expanded-state/expand.directive.d.ts +1 -1
- package/dropdowntrees/multiselecttree.component.d.ts +1 -1
- package/dropdowntrees/summary-tag/summary-tag.directive.d.ts +1 -1
- package/{esm2020 → esm2022}/autocomplete/autocomplete.component.mjs +235 -173
- package/{esm2020 → esm2022}/autocomplete/autocomplete.module.mjs +11 -11
- package/{esm2020 → esm2022}/comboboxes/combobox-column/column-cell-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/comboboxes/combobox-column/column-header-template.directive.mjs +4 -3
- package/esm2022/comboboxes/combobox-column/combobox-column.component.mjs +105 -0
- package/{esm2020 → esm2022}/comboboxes/combobox.component.mjs +326 -248
- package/{esm2020 → esm2022}/comboboxes/combobox.module.mjs +11 -11
- package/{esm2020 → esm2022}/comboboxes/multicolumncombobox.component.mjs +53 -48
- package/{esm2020 → esm2022}/common/action-sheet.component.mjs +26 -14
- package/{esm2020 → esm2022}/common/data.service.mjs +8 -7
- package/{esm2020 → esm2022}/common/disabled-items/disabled-items.service.mjs +6 -4
- package/{esm2020 → esm2022}/common/filter-input.directive.mjs +6 -3
- package/{esm2020 → esm2022}/common/filtering/filter.directive.mjs +20 -13
- package/{esm2020 → esm2022}/common/filtering/filterable-component.mjs +21 -0
- package/{esm2020 → esm2022}/common/list-item.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/list.component.mjs +72 -36
- package/{esm2020 → esm2022}/common/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/common/localization/localized-messages.directive.mjs +9 -8
- package/esm2022/common/localization/messages.mjs +65 -0
- package/{esm2020 → esm2022}/common/models/preventable-event.mjs +1 -3
- package/{esm2020 → esm2022}/common/models/remove-tag-event.mjs +4 -0
- package/{esm2020 → esm2022}/common/navigation/navigation.service.mjs +27 -23
- package/{esm2020 → esm2022}/common/searchbar.component.mjs +45 -28
- package/{esm2020 → esm2022}/common/selection/selectable.directive.mjs +9 -5
- package/{esm2020 → esm2022}/common/selection/selection.service.mjs +13 -10
- package/{esm2020 → esm2022}/common/shared-events.directive.mjs +13 -7
- package/{esm2020 → esm2022}/common/taglist.component.mjs +36 -27
- package/{esm2020 → esm2022}/common/templates/custom-item-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/fixed-group-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/footer-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/group-tag-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/group-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/header-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/item-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/no-data-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/tag-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/value-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/dropdownlist/dropdownlist.component.mjs +259 -184
- package/{esm2020 → esm2022}/dropdownlist/dropdownlist.module.mjs +8 -8
- package/esm2022/dropdowns.module.mjs +87 -0
- package/{esm2020 → esm2022}/dropdowntrees/checked-state/base-check.directive.mjs +10 -3
- package/{esm2020 → esm2022}/dropdowntrees/checked-state/check-all.directive.mjs +38 -21
- package/{esm2020 → esm2022}/dropdowntrees/checked-state/check.directive.mjs +31 -15
- package/{esm2020 → esm2022}/dropdowntrees/data-binding/dropdowntree/flat-binding.directive.mjs +12 -7
- package/{esm2020 → esm2022}/dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive.mjs +8 -7
- package/{esm2020 → esm2022}/dropdowntrees/data-binding/multiselecttree/flat-binding.directive.mjs +12 -7
- package/{esm2020 → esm2022}/dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive.mjs +8 -7
- package/{esm2020 → esm2022}/dropdowntrees/dropdowntree.component.mjs +309 -232
- package/{esm2020 → esm2022}/dropdowntrees/dropdowntrees.module.mjs +12 -12
- package/{esm2020 → esm2022}/dropdowntrees/expanded-state/expand.directive.mjs +8 -7
- package/{esm2020 → esm2022}/dropdowntrees/lookup/lookup.service.mjs +4 -6
- package/{esm2020 → esm2022}/dropdowntrees/multiselecttree.component.mjs +324 -254
- package/{esm2020 → esm2022}/dropdowntrees/summary-tag/summary-tag.directive.mjs +8 -7
- package/{esm2020 → esm2022}/dropdowntrees/templates/node-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/index.mjs +0 -2
- package/{esm2020 → esm2022}/multiselect/multiselect.component.mjs +328 -254
- package/{esm2020 → esm2022}/multiselect/multiselect.module.mjs +11 -11
- package/{esm2020 → esm2022}/multiselect/summary-tag.directive.mjs +8 -7
- package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
- package/{fesm2020 → fesm2022}/progress-kendo-angular-dropdowns.mjs +2528 -1927
- package/index.d.ts +0 -2
- package/multiselect/multiselect.component.d.ts +1 -1
- package/multiselect/multiselect.module.d.ts +1 -1
- package/multiselect/summary-tag.directive.d.ts +1 -1
- package/package.json +18 -24
- package/schematics/ngAdd/index.js +3 -3
- package/common/shared-directives.module.d.ts +0 -37
- package/common/shared.module.d.ts +0 -29
- package/esm2020/comboboxes/combobox-column/combobox-column.component.mjs +0 -60
- package/esm2020/common/localization/messages.mjs +0 -33
- package/esm2020/common/shared-directives.module.mjs +0 -84
- package/esm2020/common/shared.module.mjs +0 -68
- package/esm2020/dropdowns.module.mjs +0 -87
- package/fesm2015/progress-kendo-angular-dropdowns.mjs +0 -17609
- /package/{esm2020 → esm2022}/comboboxes/combobox-column/util.mjs +0 -0
- /package/{esm2020 → esm2022}/common/constants/error-messages.mjs +0 -0
- /package/{esm2020 → esm2022}/common/disabled-items/item-disabled.mjs +0 -0
- /package/{esm2020 → esm2022}/common/filtering/filter-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/checkboxes-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/direction.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/fillmode.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/list-type.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/page-change-event.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/popup-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/rounded.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/size.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/virtualization-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/common/navigation/navigation-action.mjs +0 -0
- /package/{esm2020 → esm2022}/common/util.mjs +0 -0
- /package/{esm2020 → esm2022}/directives.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdowntrees/checked-state/checkable-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdowntrees/checked-state/checked-item.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdowntrees/lookup/lookup.mjs +0 -0
- /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
|
|
5
|
+
## Kendo UI for Angular DropDowns Package
|
|
6
6
|
|
|
7
|
-
>
|
|
8
|
-
> *
|
|
9
|
-
> *
|
|
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/)—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
|
|
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
|
-
|
|
13
|
+
## What's Included in the Angular Dropdowns Package
|
|
18
14
|
|
|
19
|
-
|
|
15
|
+
The [Angular Dropdowns](https://www.telerik.com/kendo-angular-ui/components/dropdowns) package includes seven built-in components:
|
|
20
16
|
|
|
21
|
-
* [AutoComplete](
|
|
22
|
-
* [ComboBox](
|
|
23
|
-
* [DropDownList](
|
|
24
|
-
* [DropDownTree](
|
|
25
|
-
* [MultiColumnComboBox](
|
|
26
|
-
* [MultiSelect](
|
|
27
|
-
* [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
|
-
##
|
|
25
|
+
## Key Features
|
|
30
26
|
|
|
31
|
-
|
|
32
|
-
* **Virtualization**—Improve performance when loading large data sets by displaying a fixed amount of items in the dropdown lists.
|
|
33
|
-
* **Forms Support**—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**—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**—Aside from DropDownTree and MultiSeelctTree components, the dropdowns all support data grouping.
|
|
36
|
-
* **Disabled Options**—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**—Each component provides options for customizing the look and feel such as size, border radius, and fill modes.
|
|
38
|
-
* **Templates**—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**—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**—The Dropdowns are accessible for screen readers and support WAI-ARIA attributes.
|
|
41
|
-
* **Keyboard Navigation**—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
|
-
|
|
29
|
+
* Data Binding—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—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—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—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—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—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—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—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—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—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—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—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
|
-
|
|
42
|
+
## Support Options
|
|
46
43
|
|
|
47
|
-
|
|
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
|
-
|
|
50
|
-
|
|
51
|
-
|
|
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)—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)—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)—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)—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)—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)—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)—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)—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)—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)—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)—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)—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)—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)—Customize the display of the selected tags with a summary, chips, and more.
|
|
46
|
+
* Industry-leading technical support—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—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—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
|
-
* [
|
|
106
|
-
* [
|
|
107
|
-
* [
|
|
108
|
-
* [
|
|
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.
|
|
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.
|
|
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
|
}
|
|
@@ -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
|
}
|
package/common/models/size.d.ts
CHANGED
|
@@ -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
|
-
|
|
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`—(default)
|
|
195
195
|
* * `auto`
|
|
196
196
|
*/
|
|
197
|
-
export
|
|
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
|
|
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
|
}
|
package/dropdowns.module.d.ts
CHANGED
|
@@ -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.
|
|
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
|
}
|