@progress/kendo-angular-dropdowns 22.1.0-develop.9 → 23.0.0-develop.10
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/autocomplete/autocomplete.component.d.ts +11 -17
- package/comboboxes/combobox-column/column-cell-template.directive.d.ts +4 -4
- package/comboboxes/combobox-column/column-header-template.directive.d.ts +4 -4
- package/comboboxes/combobox-column/combobox-column.component.d.ts +3 -3
- package/comboboxes/combobox.component.d.ts +14 -36
- package/comboboxes/multicolumncombobox.component.d.ts +1 -1
- package/common/filtering/filter-settings.d.ts +5 -5
- package/common/filtering/filter.directive.d.ts +2 -2
- package/common/localization/custom-messages.component.d.ts +1 -1
- package/common/models/fillmode.d.ts +1 -1
- package/common/models/size.d.ts +1 -1
- package/common/models/virtualization-settings.d.ts +4 -4
- package/common/templates/custom-item-template.directive.d.ts +1 -1
- package/common/templates/fixed-group-template.directive.d.ts +5 -5
- package/common/templates/footer-template.directive.d.ts +6 -6
- package/common/templates/group-tag-template.directive.d.ts +1 -1
- package/common/templates/group-template.directive.d.ts +5 -5
- package/common/templates/header-template.directive.d.ts +6 -6
- package/common/templates/item-template.directive.d.ts +4 -4
- package/common/templates/no-data-template.directive.d.ts +6 -6
- package/common/templates/tag-template.directive.d.ts +1 -1
- package/common/templates/value-template.directive.d.ts +2 -2
- package/dropdownlist/dropdownlist.component.d.ts +15 -40
- package/dropdowntrees/checked-state/checkable-settings.d.ts +1 -1
- package/dropdowntrees/dropdowntree.component.d.ts +14 -36
- package/dropdowntrees/multiselecttree.component.d.ts +5 -11
- package/dropdowntrees/summary-tag/summary-tag.directive.d.ts +1 -1
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +347 -453
- package/index.d.ts +4 -0
- package/multiselect/multiselect.component.d.ts +9 -15
- package/multiselect/summary-tag.directive.d.ts +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
- package/schematics/ngAdd/index.js +2 -2
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
6
|
import { EventEmitter, Output, HostBinding, Input, Component, Directive, Injectable, HostListener, ViewChild, ViewChildren, forwardRef, isDevMode, ViewContainerRef, ContentChild, ContentChildren, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
7
7
|
import * as i10 from '@progress/kendo-angular-common';
|
|
8
|
-
import { isDocumentAvailable, isObjectPresent, removeHTMLAttributes, parseAttributes, isSafari, normalizeKeys, Keys, setHTMLAttributes, replaceMessagePlaceholder, isChanged, TemplateContextDirective, ResizeSensorComponent, closest as closest$1, parseCSSClassNames, isControlRequired, guid, hasObservers, SeparatorComponent, SuffixTemplateDirective, PrefixTemplateDirective, KendoInput, MultiTabStop, anyChanged, EventsOutsideAngularDirective, ToggleButtonTabStopDirective, ResizeBatchService, KENDO_ADORNMENTS, KENDO_TOGGLEBUTTONTABSTOP } from '@progress/kendo-angular-common';
|
|
8
|
+
import { isDocumentAvailable, isObjectPresent, removeHTMLAttributes, parseAttributes, isSafari, normalizeKeys, Keys, setHTMLAttributes, replaceMessagePlaceholder, isChanged, TemplateContextDirective, ResizeSensorComponent, closest as closest$1, hasFocusableParent, parseCSSClassNames, isControlRequired, guid, hasObservers, SeparatorComponent, SuffixTemplateDirective, PrefixTemplateDirective, KendoInput, MultiTabStop, anyChanged, EventsOutsideAngularDirective, ToggleButtonTabStopDirective, ResizeBatchService, KENDO_ADORNMENTS, KENDO_TOGGLEBUTTONTABSTOP } from '@progress/kendo-angular-common';
|
|
9
9
|
export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective, ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
|
|
10
10
|
import * as i7 from '@progress/kendo-angular-utils';
|
|
11
11
|
import { AdaptiveService } from '@progress/kendo-angular-utils';
|
|
@@ -38,7 +38,7 @@ const packageMetadata = {
|
|
|
38
38
|
productCode: 'KENDOUIANGULAR',
|
|
39
39
|
productCodes: ['KENDOUIANGULAR'],
|
|
40
40
|
publishDate: 0,
|
|
41
|
-
version: '
|
|
41
|
+
version: '23.0.0-develop.10',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -329,7 +329,8 @@ const getRoundedClass = (rounded) => {
|
|
|
329
329
|
'small': 'k-rounded-sm',
|
|
330
330
|
'medium': 'k-rounded-md',
|
|
331
331
|
'large': 'k-rounded-lg',
|
|
332
|
-
'full': 'k-rounded-full'
|
|
332
|
+
'full': 'k-rounded-full',
|
|
333
|
+
'none': 'k-rounded-none'
|
|
333
334
|
};
|
|
334
335
|
return ROUNDED_CLASSES[rounded];
|
|
335
336
|
};
|
|
@@ -793,10 +794,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
793
794
|
* with the `kendo<ComponentName>ItemTemplate` directive inside the component tag. The template context is
|
|
794
795
|
* set to the current component. To get a reference to the current data item, use the `let-dataItem` directive.
|
|
795
796
|
*
|
|
796
|
-
* - [Using `ItemTemplate` with the AutoComplete](
|
|
797
|
-
* - [Using `ItemTemplate` with the ComboBox](
|
|
798
|
-
* - [Using `ItemTemplate` with the DropDownList](
|
|
799
|
-
* - [Using `ItemTemplate` with the MultiSelect](
|
|
797
|
+
* - [Using `ItemTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#item-template)
|
|
798
|
+
* - [Using `ItemTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#item-template)
|
|
799
|
+
* - [Using `ItemTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#item-template)
|
|
800
|
+
* - [Using `ItemTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#item-template)
|
|
800
801
|
*
|
|
801
802
|
* @example
|
|
802
803
|
* ```ts
|
|
@@ -835,12 +836,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
835
836
|
* Renders the header content of the list. To define the header template, nest an `<ng-template>` tag
|
|
836
837
|
* with the `kendo<ComponentName>HeaderTemplate` directive inside the component tag.
|
|
837
838
|
*
|
|
838
|
-
* - [Using `HeaderTemplate` with the AutoComplete](
|
|
839
|
-
* - [Using `HeaderTemplate` with the ComboBox](
|
|
840
|
-
* - [Using `HeaderTemplate` with the MultiColumnComboBox](
|
|
841
|
-
* - [Using `HeaderTemplate` with the DropDownList](
|
|
842
|
-
* - [Using `HeaderTemplate` with the DropDownTree](
|
|
843
|
-
* - [Using `HeaderTemplate` with the MultiSelect](
|
|
839
|
+
* - [Using `HeaderTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#header-template)
|
|
840
|
+
* - [Using `HeaderTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#header-template)
|
|
841
|
+
* - [Using `HeaderTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#header-template)
|
|
842
|
+
* - [Using `HeaderTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#header-template)
|
|
843
|
+
* - [Using `HeaderTemplate` with the DropDownTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/templates#header-template)
|
|
844
|
+
* - [Using `HeaderTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#header-template)
|
|
844
845
|
*
|
|
845
846
|
* @example
|
|
846
847
|
* ```ts
|
|
@@ -879,12 +880,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
879
880
|
* Renders the footer content of the list. To define the footer template, nest an `<ng-template>` tag
|
|
880
881
|
* with the `kendo<ComponentName>FooterTemplate` directive inside the component tag.
|
|
881
882
|
*
|
|
882
|
-
* - [Using `FooterTemplate` with the AutoComplete](
|
|
883
|
-
* - [Using `FooterTemplate` with the ComboBox](
|
|
884
|
-
* - [Using `FooterTemplate` with the MultiColumnComboBox](
|
|
885
|
-
* - [Using `FooterTemplate` with the DropDownList](
|
|
886
|
-
* - [Using `FooterTemplate` with the DropDownTree](
|
|
887
|
-
* - [Using `FooterTemplate` with the MultiSelect](
|
|
883
|
+
* - [Using `FooterTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#footer-template)
|
|
884
|
+
* - [Using `FooterTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#footer-template)
|
|
885
|
+
* - [Using `FooterTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#footer-template)
|
|
886
|
+
* - [Using `FooterTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#footer-template)
|
|
887
|
+
* - [Using `FooterTemplate` with the DropDownTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/templates#footer-template)
|
|
888
|
+
* - [Using `FooterTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#footer-template)
|
|
888
889
|
*
|
|
889
890
|
* @example
|
|
890
891
|
* ```ts
|
|
@@ -924,11 +925,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
924
925
|
* with the `kendo<ComponentName>GroupTemplate` directive inside the component tag. The template context is
|
|
925
926
|
* set to the current component. To get a reference to the current data item, use the `let-groupName` directive.
|
|
926
927
|
*
|
|
927
|
-
* - [Using `GroupTemplate` with the AutoComplete](
|
|
928
|
-
* - [Using `GroupTemplate` with the ComboBox](
|
|
929
|
-
* - [Using `GroupTemplate` with the MultiColumnComboBox](
|
|
930
|
-
* - [Using `GroupTemplate` with the DropDownList](
|
|
931
|
-
* - [Using `GroupTemplate` with the MultiSelect](
|
|
928
|
+
* - [Using `GroupTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#group-header-template)
|
|
929
|
+
* - [Using `GroupTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#group-header-template)
|
|
930
|
+
* - [Using `GroupTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#group-header-template)
|
|
931
|
+
* - [Using `GroupTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#group-header-template)
|
|
932
|
+
* - [Using `GroupTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#group-header-template)
|
|
932
933
|
*
|
|
933
934
|
* @example
|
|
934
935
|
* ```ts
|
|
@@ -974,11 +975,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
974
975
|
* with the `kendo<ComponentName>FixedGroupTemplate` directive inside the component tag. The template context is
|
|
975
976
|
* set to the current component. To get a reference to the current data item, use the `let-groupName` directive.
|
|
976
977
|
*
|
|
977
|
-
* - [Using `FixedGroupTemplate` with the AutoComplete](
|
|
978
|
-
* - [Using `FixedGroupTemplate` with the ComboBox](
|
|
979
|
-
* - [Using `FixedGroupTemplate` with the MultiColumnComboBox](
|
|
980
|
-
* - [Using `FixedGroupTemplate` with the DropDownList](
|
|
981
|
-
* - [Using `FixedGroupTemplate` with the MultiSelect](
|
|
978
|
+
* - [Using `FixedGroupTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#fixed-group-header-template)
|
|
979
|
+
* - [Using `FixedGroupTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#fixed-group-header-template)
|
|
980
|
+
* - [Using `FixedGroupTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#fixed-group-header-template)
|
|
981
|
+
* - [Using `FixedGroupTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#fixed-group-header-template)
|
|
982
|
+
* - [Using `FixedGroupTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#fixed-group-header-template)
|
|
982
983
|
*
|
|
983
984
|
* @example
|
|
984
985
|
* ```ts
|
|
@@ -1669,12 +1670,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
1669
1670
|
* Renders content when no data is available. To define the no-data template, nest a `<ng-template>` tag
|
|
1670
1671
|
* with the `kendo<ComponentName>NoDataTemplate` directive inside the component tag.
|
|
1671
1672
|
*
|
|
1672
|
-
* - [Using `NoDataTemplate` with the AutoComplete](
|
|
1673
|
-
* - [Using `NoDataTemplate` with the ComboBox](
|
|
1674
|
-
* - [Using `NoDataTemplate` with the MultiColumnComboBox](
|
|
1675
|
-
* - [Using `NoDataTemplate` with the DropDownList](
|
|
1676
|
-
* - [Using `NoDataTemplate` with the DropDownTree](
|
|
1677
|
-
* - [Using `NoDataTemplate` with the MultiSelect](
|
|
1673
|
+
* - [Using `NoDataTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#no-data-template)
|
|
1674
|
+
* - [Using `NoDataTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#no-data-template)
|
|
1675
|
+
* - [Using `NoDataTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#no-data-template)
|
|
1676
|
+
* - [Using `NoDataTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#no-data-template)
|
|
1677
|
+
* - [Using `NoDataTemplate` with the DropDownTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/templates#no-data-template)
|
|
1678
|
+
* - [Using `NoDataTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#no-data-template)
|
|
1678
1679
|
*
|
|
1679
1680
|
* @example
|
|
1680
1681
|
* ```ts
|
|
@@ -1860,7 +1861,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
1860
1861
|
|
|
1861
1862
|
/**
|
|
1862
1863
|
* Renders the content of the custom list item in the MultiSelect
|
|
1863
|
-
* ([see example](
|
|
1864
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#rendering-custom-item-content)).
|
|
1864
1865
|
* The template context is set to the current component.
|
|
1865
1866
|
* To get a reference to the current text that is typed by the
|
|
1866
1867
|
* user, use the `let-customItem` directive.
|
|
@@ -1968,7 +1969,7 @@ class ListComponent {
|
|
|
1968
1969
|
return this._size;
|
|
1969
1970
|
}
|
|
1970
1971
|
groupedData;
|
|
1971
|
-
rounded =
|
|
1972
|
+
rounded = undefined;
|
|
1972
1973
|
onClick = new EventEmitter();
|
|
1973
1974
|
pageChange = new EventEmitter();
|
|
1974
1975
|
listResize = new EventEmitter();
|
|
@@ -1993,7 +1994,7 @@ class ListComponent {
|
|
|
1993
1994
|
_data;
|
|
1994
1995
|
scrollSubscription;
|
|
1995
1996
|
selectSubscription;
|
|
1996
|
-
_size
|
|
1997
|
+
_size;
|
|
1997
1998
|
get pageSize() {
|
|
1998
1999
|
if (this.virtual.pageSize) {
|
|
1999
2000
|
return this.virtual.pageSize;
|
|
@@ -2849,7 +2850,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2849
2850
|
*/
|
|
2850
2851
|
const DEFAULTS = {
|
|
2851
2852
|
pageSize: 50,
|
|
2852
|
-
itemHeight:
|
|
2853
|
+
itemHeight: 36
|
|
2853
2854
|
};
|
|
2854
2855
|
/**
|
|
2855
2856
|
* @hidden
|
|
@@ -3152,6 +3153,19 @@ class SharedDropDownEventsDirective {
|
|
|
3152
3153
|
this.handleBlur.emit();
|
|
3153
3154
|
}
|
|
3154
3155
|
}));
|
|
3156
|
+
this.subscriptions.add(this.renderer.listen(hostElement, 'click', (args) => {
|
|
3157
|
+
if (!this.isFocused) {
|
|
3158
|
+
return;
|
|
3159
|
+
}
|
|
3160
|
+
const element = args.target;
|
|
3161
|
+
const adornmentContainer = element.closest('.k-input-prefix') || element.closest('.k-input-suffix');
|
|
3162
|
+
if (adornmentContainer) {
|
|
3163
|
+
const isFocusable = hasFocusableParent(element, adornmentContainer);
|
|
3164
|
+
if (!isFocusable) {
|
|
3165
|
+
this.handleBlur.emit();
|
|
3166
|
+
}
|
|
3167
|
+
}
|
|
3168
|
+
}));
|
|
3155
3169
|
this.subscriptions.add(this.renderer.listen(hostElement, 'mouseenter', () => {
|
|
3156
3170
|
cursorInsideWrapper = true;
|
|
3157
3171
|
}));
|
|
@@ -3305,9 +3319,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
3305
3319
|
}], ctorParameters: () => [{ type: i1.LocalizationService }] });
|
|
3306
3320
|
|
|
3307
3321
|
const NO_VALUE = "";
|
|
3308
|
-
const DEFAULT_SIZE$5 = 'medium';
|
|
3309
|
-
const DEFAULT_ROUNDED$5 = 'medium';
|
|
3310
|
-
const DEFAULT_FILL_MODE$5 = 'solid';
|
|
3311
3322
|
/**
|
|
3312
3323
|
* @hidden
|
|
3313
3324
|
*/
|
|
@@ -3317,7 +3328,7 @@ const AUTOCOMPLETE_VALUE_ACCESSOR = {
|
|
|
3317
3328
|
useExisting: forwardRef(() => AutoCompleteComponent)
|
|
3318
3329
|
};
|
|
3319
3330
|
/**
|
|
3320
|
-
* Represents the [Kendo UI AutoComplete component for Angular](
|
|
3331
|
+
* Represents the [Kendo UI AutoComplete component for Angular](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete).
|
|
3321
3332
|
*
|
|
3322
3333
|
* @example
|
|
3323
3334
|
* ```html
|
|
@@ -3490,7 +3501,7 @@ class AutoCompleteComponent {
|
|
|
3490
3501
|
highlightFirst = true;
|
|
3491
3502
|
/**
|
|
3492
3503
|
* Shows or hides the current group sticky header when using grouped data.
|
|
3493
|
-
* By default, the sticky header is displayed ([see example](
|
|
3504
|
+
* By default, the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
|
|
3494
3505
|
*
|
|
3495
3506
|
* @default true
|
|
3496
3507
|
*/
|
|
@@ -3633,14 +3644,14 @@ class AutoCompleteComponent {
|
|
|
3633
3644
|
*/
|
|
3634
3645
|
suggest;
|
|
3635
3646
|
/**
|
|
3636
|
-
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](
|
|
3647
|
+
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/forms#managing-the-autocomplete-disabled-state-in-reactive-forms).
|
|
3637
3648
|
*
|
|
3638
3649
|
* @default false
|
|
3639
3650
|
*/
|
|
3640
3651
|
disabled = false;
|
|
3641
3652
|
/**
|
|
3642
3653
|
* Defines a Boolean function that is executed for each data item in the component
|
|
3643
|
-
* ([see examples](
|
|
3654
|
+
* ([see examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/disabled-items)).
|
|
3644
3655
|
* Determines whether the item will be disabled.
|
|
3645
3656
|
*/
|
|
3646
3657
|
set itemDisabled(fn) {
|
|
@@ -3671,14 +3682,14 @@ class AutoCompleteComponent {
|
|
|
3671
3682
|
return this.tabindex;
|
|
3672
3683
|
}
|
|
3673
3684
|
/**
|
|
3674
|
-
* Enables the [filtering](
|
|
3685
|
+
* Enables the [filtering](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/filtering) functionality.
|
|
3675
3686
|
* If set to `true`, the component emits the `filterChange` event.
|
|
3676
3687
|
*
|
|
3677
3688
|
* @default false
|
|
3678
3689
|
*/
|
|
3679
3690
|
filterable = false;
|
|
3680
3691
|
/**
|
|
3681
|
-
* Enables the [virtualization](
|
|
3692
|
+
* Enables the [virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/virtualization) functionality.
|
|
3682
3693
|
*
|
|
3683
3694
|
* @default false
|
|
3684
3695
|
*/
|
|
@@ -3689,49 +3700,40 @@ class AutoCompleteComponent {
|
|
|
3689
3700
|
return this._virtualSettings;
|
|
3690
3701
|
}
|
|
3691
3702
|
/**
|
|
3692
|
-
* Sets the size of the component.
|
|
3693
|
-
*
|
|
3694
|
-
* @default 'medium'
|
|
3703
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
3695
3704
|
*/
|
|
3696
3705
|
set size(size) {
|
|
3697
|
-
const newSize = size ? size : DEFAULT_SIZE$5;
|
|
3698
3706
|
this.renderer.removeClass(this.wrapper, getSizeClass('input', this.size));
|
|
3699
|
-
if (size
|
|
3700
|
-
this.renderer.addClass(this.wrapper, getSizeClass('input',
|
|
3707
|
+
if (size) {
|
|
3708
|
+
this.renderer.addClass(this.wrapper, getSizeClass('input', size));
|
|
3701
3709
|
}
|
|
3702
|
-
this._size =
|
|
3710
|
+
this._size = size;
|
|
3703
3711
|
}
|
|
3704
3712
|
get size() {
|
|
3705
3713
|
return this._size;
|
|
3706
3714
|
}
|
|
3707
3715
|
/**
|
|
3708
|
-
* Sets the border radius of the component.
|
|
3709
|
-
*
|
|
3710
|
-
* @default 'medium'
|
|
3716
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
3711
3717
|
*/
|
|
3712
3718
|
set rounded(rounded) {
|
|
3713
|
-
const newRounded = rounded ? rounded : DEFAULT_ROUNDED$5;
|
|
3714
3719
|
this.renderer.removeClass(this.wrapper, getRoundedClass(this.rounded));
|
|
3715
|
-
if (rounded
|
|
3716
|
-
this.renderer.addClass(this.wrapper, getRoundedClass(
|
|
3720
|
+
if (rounded) {
|
|
3721
|
+
this.renderer.addClass(this.wrapper, getRoundedClass(rounded));
|
|
3717
3722
|
}
|
|
3718
|
-
this._rounded =
|
|
3723
|
+
this._rounded = rounded;
|
|
3719
3724
|
}
|
|
3720
3725
|
get rounded() {
|
|
3721
3726
|
return this._rounded;
|
|
3722
3727
|
}
|
|
3723
3728
|
/**
|
|
3724
|
-
* Sets the fillMode of the component.
|
|
3725
|
-
*
|
|
3726
|
-
* @default 'solid'
|
|
3729
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
3727
3730
|
*/
|
|
3728
3731
|
set fillMode(fillMode) {
|
|
3729
|
-
const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE$5;
|
|
3730
3732
|
this.renderer.removeClass(this.wrapper, getFillModeClass('input', this.fillMode));
|
|
3731
|
-
if (fillMode
|
|
3732
|
-
this.renderer.addClass(this.wrapper, getFillModeClass('input',
|
|
3733
|
+
if (fillMode) {
|
|
3734
|
+
this.renderer.addClass(this.wrapper, getFillModeClass('input', fillMode));
|
|
3733
3735
|
}
|
|
3734
|
-
this._fillMode =
|
|
3736
|
+
this._fillMode = fillMode;
|
|
3735
3737
|
}
|
|
3736
3738
|
get fillMode() {
|
|
3737
3739
|
return this._fillMode;
|
|
@@ -3743,7 +3745,7 @@ class AutoCompleteComponent {
|
|
|
3743
3745
|
/**
|
|
3744
3746
|
* Fires each time the value changes—
|
|
3745
3747
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
3746
|
-
* ([see example](
|
|
3748
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/events).
|
|
3747
3749
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
3748
3750
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
3749
3751
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -3752,7 +3754,7 @@ class AutoCompleteComponent {
|
|
|
3752
3754
|
/**
|
|
3753
3755
|
* Fires each time the user types in the input field.
|
|
3754
3756
|
* You can filter the source based on the passed filtration value
|
|
3755
|
-
* ([see example](
|
|
3757
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/events)).
|
|
3756
3758
|
*/
|
|
3757
3759
|
filterChange = new EventEmitter();
|
|
3758
3760
|
/**
|
|
@@ -4222,9 +4224,9 @@ class AutoCompleteComponent {
|
|
|
4222
4224
|
wrapper;
|
|
4223
4225
|
_isFocused = false;
|
|
4224
4226
|
direction;
|
|
4225
|
-
_size =
|
|
4226
|
-
_rounded =
|
|
4227
|
-
_fillMode =
|
|
4227
|
+
_size = undefined;
|
|
4228
|
+
_rounded = undefined;
|
|
4229
|
+
_fillMode = undefined;
|
|
4228
4230
|
subscribeEvents() {
|
|
4229
4231
|
if (!isDocumentAvailable()) {
|
|
4230
4232
|
return;
|
|
@@ -4400,13 +4402,13 @@ class AutoCompleteComponent {
|
|
|
4400
4402
|
}
|
|
4401
4403
|
}
|
|
4402
4404
|
setComponentClasses() {
|
|
4403
|
-
if (this.size
|
|
4405
|
+
if (this.size) {
|
|
4404
4406
|
this.renderer.addClass(this.wrapper, getSizeClass('input', this.size));
|
|
4405
4407
|
}
|
|
4406
|
-
if (this.rounded
|
|
4408
|
+
if (this.rounded) {
|
|
4407
4409
|
this.renderer.addClass(this.wrapper, getRoundedClass(this.rounded));
|
|
4408
4410
|
}
|
|
4409
|
-
if (this.fillMode
|
|
4411
|
+
if (this.fillMode) {
|
|
4410
4412
|
this.renderer.addClass(this.wrapper, getFillModeClass('input', this.fillMode));
|
|
4411
4413
|
}
|
|
4412
4414
|
}
|
|
@@ -4468,18 +4470,18 @@ class AutoCompleteComponent {
|
|
|
4468
4470
|
<ng-container kendoAutoCompleteLocalizedMessages
|
|
4469
4471
|
i18n-noDataText="kendo.autocomplete.noDataText|The text displayed in the popup when there are no items"
|
|
4470
4472
|
noDataText="NO DATA FOUND"
|
|
4471
|
-
|
|
4473
|
+
|
|
4472
4474
|
i18n-clearTitle="kendo.autocomplete.clearTitle|The title of the clear button"
|
|
4473
4475
|
clearTitle="clear"
|
|
4474
|
-
|
|
4476
|
+
|
|
4475
4477
|
i18n-popupLabel="kendo.autocomplete.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
4476
4478
|
popupLabel="Options list"
|
|
4477
|
-
|
|
4479
|
+
|
|
4478
4480
|
i18n-adaptiveCloseButtonTitle="kendo.autocomplete.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
4479
4481
|
adaptiveCloseButtonTitle="Close"
|
|
4480
4482
|
>
|
|
4481
4483
|
</ng-container>
|
|
4482
|
-
|
|
4484
|
+
|
|
4483
4485
|
<ng-container
|
|
4484
4486
|
kendoDropDownSharedEvents
|
|
4485
4487
|
[hostElement]="hostElement"
|
|
@@ -4549,7 +4551,7 @@ class AutoCompleteComponent {
|
|
|
4549
4551
|
</span>
|
|
4550
4552
|
}
|
|
4551
4553
|
</ng-container>
|
|
4552
|
-
|
|
4554
|
+
|
|
4553
4555
|
<ng-template #popupTemplate>
|
|
4554
4556
|
<ng-container *ngTemplateOutlet="sharedPopupActionSheetTemplate"></ng-container>
|
|
4555
4557
|
</ng-template>
|
|
@@ -4557,7 +4559,7 @@ class AutoCompleteComponent {
|
|
|
4557
4559
|
@if (isOpen || isAdaptiveModeEnabled) {
|
|
4558
4560
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
4559
4561
|
}
|
|
4560
|
-
|
|
4562
|
+
|
|
4561
4563
|
<kendo-adaptive-renderer
|
|
4562
4564
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
4563
4565
|
[title]="adaptiveTitle"
|
|
@@ -4569,7 +4571,7 @@ class AutoCompleteComponent {
|
|
|
4569
4571
|
[placeholder]="placeholder"
|
|
4570
4572
|
[searchBarValue]="text">
|
|
4571
4573
|
</kendo-adaptive-renderer>
|
|
4572
|
-
|
|
4574
|
+
|
|
4573
4575
|
<ng-template #sharedPopupActionSheetTemplate>
|
|
4574
4576
|
<!--header template-->
|
|
4575
4577
|
@if (headerTemplate) {
|
|
@@ -4654,18 +4656,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
4654
4656
|
<ng-container kendoAutoCompleteLocalizedMessages
|
|
4655
4657
|
i18n-noDataText="kendo.autocomplete.noDataText|The text displayed in the popup when there are no items"
|
|
4656
4658
|
noDataText="NO DATA FOUND"
|
|
4657
|
-
|
|
4659
|
+
|
|
4658
4660
|
i18n-clearTitle="kendo.autocomplete.clearTitle|The title of the clear button"
|
|
4659
4661
|
clearTitle="clear"
|
|
4660
|
-
|
|
4662
|
+
|
|
4661
4663
|
i18n-popupLabel="kendo.autocomplete.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
4662
4664
|
popupLabel="Options list"
|
|
4663
|
-
|
|
4665
|
+
|
|
4664
4666
|
i18n-adaptiveCloseButtonTitle="kendo.autocomplete.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
4665
4667
|
adaptiveCloseButtonTitle="Close"
|
|
4666
4668
|
>
|
|
4667
4669
|
</ng-container>
|
|
4668
|
-
|
|
4670
|
+
|
|
4669
4671
|
<ng-container
|
|
4670
4672
|
kendoDropDownSharedEvents
|
|
4671
4673
|
[hostElement]="hostElement"
|
|
@@ -4735,7 +4737,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
4735
4737
|
</span>
|
|
4736
4738
|
}
|
|
4737
4739
|
</ng-container>
|
|
4738
|
-
|
|
4740
|
+
|
|
4739
4741
|
<ng-template #popupTemplate>
|
|
4740
4742
|
<ng-container *ngTemplateOutlet="sharedPopupActionSheetTemplate"></ng-container>
|
|
4741
4743
|
</ng-template>
|
|
@@ -4743,7 +4745,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
4743
4745
|
@if (isOpen || isAdaptiveModeEnabled) {
|
|
4744
4746
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
4745
4747
|
}
|
|
4746
|
-
|
|
4748
|
+
|
|
4747
4749
|
<kendo-adaptive-renderer
|
|
4748
4750
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
4749
4751
|
[title]="adaptiveTitle"
|
|
@@ -4755,7 +4757,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
4755
4757
|
[placeholder]="placeholder"
|
|
4756
4758
|
[searchBarValue]="text">
|
|
4757
4759
|
</kendo-adaptive-renderer>
|
|
4758
|
-
|
|
4760
|
+
|
|
4759
4761
|
<ng-template #sharedPopupActionSheetTemplate>
|
|
4760
4762
|
<!--header template-->
|
|
4761
4763
|
@if (headerTemplate) {
|
|
@@ -4952,30 +4954,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
4952
4954
|
*/
|
|
4953
4955
|
const MultiselectMessages = {
|
|
4954
4956
|
'array': 'Expected values of array type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/value-binding',
|
|
4955
|
-
'object': 'Expected values of Object type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/value-binding/#
|
|
4956
|
-
'primitive': 'Expected values of primitive type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/value-binding/#
|
|
4957
|
-
'textAndValue': 'Expected textField and valueField options to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/data-binding/#
|
|
4957
|
+
'object': 'Expected values of Object type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/value-binding/#object-values',
|
|
4958
|
+
'primitive': 'Expected values of primitive type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/value-binding/#primitive-values',
|
|
4959
|
+
'textAndValue': 'Expected textField and valueField options to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/data-binding/#arrays-of-complex-data'
|
|
4958
4960
|
};
|
|
4959
4961
|
/**
|
|
4960
4962
|
* @hidden
|
|
4961
4963
|
*/
|
|
4962
4964
|
const MultiSelectTreeMessages = {
|
|
4963
4965
|
'array': 'Expected values of array type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/value-binding',
|
|
4964
|
-
'primitive': 'Expected values of primitive type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/value-binding/#
|
|
4965
|
-
'object': 'Expected values of type Object. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/value-binding/#
|
|
4966
|
-
'dataItems': 'Expected dataItems of type Object[] to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/MultiSelectTreeComponent/#
|
|
4967
|
-
'dataItemsLength': 'Expected dataItems length to match the number of provided values. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/MultiSelectTreeComponent/#
|
|
4966
|
+
'primitive': 'Expected values of primitive type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/value-binding/#primitive-values',
|
|
4967
|
+
'object': 'Expected values of type Object. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/value-binding/#object-values',
|
|
4968
|
+
'dataItems': 'Expected dataItems of type Object[] to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/MultiSelectTreeComponent/#dataitems',
|
|
4969
|
+
'dataItemsLength': 'Expected dataItems length to match the number of provided values. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/MultiSelectTreeComponent/#dataitems',
|
|
4968
4970
|
'textAndValue': 'Expected textField and valueField options to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/value-binding',
|
|
4969
|
-
'valueDepth': 'Expected valueDepth of type number[] to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/MultiSelectTreeComponent/#
|
|
4970
|
-
'valueDepthLength': 'Expected valueDepth length to match the number of provided values. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/MultiSelectTreeComponent/#
|
|
4971
|
+
'valueDepth': 'Expected valueDepth of type number[] to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/MultiSelectTreeComponent/#valuedepth',
|
|
4972
|
+
'valueDepthLength': 'Expected valueDepth length to match the number of provided values. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/MultiSelectTreeComponent/#valuedepth'
|
|
4971
4973
|
};
|
|
4972
4974
|
/**
|
|
4973
4975
|
* @hidden
|
|
4974
4976
|
*/
|
|
4975
4977
|
const ComboBoxMessages = {
|
|
4976
|
-
'object': 'Expected value of type Object. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/value-binding/#
|
|
4977
|
-
'primitive': 'Expected value of primitive type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/value-binding/#
|
|
4978
|
-
'textAndValue': 'Expected textField and valueField options to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/data-binding/#
|
|
4978
|
+
'object': 'Expected value of type Object. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/value-binding/#object-values',
|
|
4979
|
+
'primitive': 'Expected value of primitive type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/value-binding/#primitive-values',
|
|
4980
|
+
'textAndValue': 'Expected textField and valueField options to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/data-binding/#arrays-of-complex-data',
|
|
4979
4981
|
'noItemHeight': 'Expected virtual.itemHeight of type number.'
|
|
4980
4982
|
};
|
|
4981
4983
|
/**
|
|
@@ -4983,26 +4985,26 @@ const ComboBoxMessages = {
|
|
|
4983
4985
|
*/
|
|
4984
4986
|
const MultiColumnComboBoxMessages = {
|
|
4985
4987
|
'data': 'Provided data must consist only of objects. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/data-binding/',
|
|
4986
|
-
'textAndValue': 'Expected textField and valueField options to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/data-binding/#
|
|
4988
|
+
'textAndValue': 'Expected textField and valueField options to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/data-binding/#fields-configuration'
|
|
4987
4989
|
};
|
|
4988
4990
|
/**
|
|
4989
4991
|
* @hidden
|
|
4990
4992
|
*/
|
|
4991
4993
|
const DropDownListMessages = {
|
|
4992
|
-
'defaultItem': 'defaultItem and data items must be of same type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/DropDownListComponent/#
|
|
4993
|
-
'object': 'Expected value of type Object. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/value-binding/#
|
|
4994
|
-
'primitive': 'Expected value of primitive type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/value-binding/#
|
|
4995
|
-
'textAndValue': 'Expected textField and valueField options to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/data-binding/#
|
|
4994
|
+
'defaultItem': 'defaultItem and data items must be of same type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/DropDownListComponent/#defaultitem',
|
|
4995
|
+
'object': 'Expected value of type Object. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/value-binding/#object-values',
|
|
4996
|
+
'primitive': 'Expected value of primitive type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/value-binding/#primitive-values',
|
|
4997
|
+
'textAndValue': 'Expected textField and valueField options to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/data-binding/#arrays-of-complex-data'
|
|
4996
4998
|
};
|
|
4997
4999
|
/**
|
|
4998
5000
|
* @hidden
|
|
4999
5001
|
*/
|
|
5000
5002
|
const DropDownTreeMessages = {
|
|
5001
|
-
'primitive': 'Expected value of primitive type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/value-binding/#
|
|
5002
|
-
'object': 'Expected value of type Object. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/value-binding/#
|
|
5003
|
-
'dataItem': 'Expected dataItem of type Object to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/DropDownTreeComponent/#
|
|
5003
|
+
'primitive': 'Expected value of primitive type. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/value-binding/#primitive-values',
|
|
5004
|
+
'object': 'Expected value of type Object. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/value-binding/#object-values',
|
|
5005
|
+
'dataItem': 'Expected dataItem of type Object to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/DropDownTreeComponent/#dataitem',
|
|
5004
5006
|
'textAndValue': 'Expected textField and valueField options to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/value-binding',
|
|
5005
|
-
'valueDepth': 'Expected valueDepth to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/DropDownTreeComponent/#
|
|
5007
|
+
'valueDepth': 'Expected valueDepth to be set. See https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/DropDownTreeComponent/#valuedepth'
|
|
5006
5008
|
};
|
|
5007
5009
|
|
|
5008
5010
|
/**
|
|
@@ -5013,11 +5015,8 @@ const COMBOBOX_VALUE_ACCESSOR = {
|
|
|
5013
5015
|
provide: NG_VALUE_ACCESSOR,
|
|
5014
5016
|
useExisting: forwardRef(() => ComboBoxComponent)
|
|
5015
5017
|
};
|
|
5016
|
-
const DEFAULT_SIZE$4 = 'medium';
|
|
5017
|
-
const DEFAULT_ROUNDED$4 = 'medium';
|
|
5018
|
-
const DEFAULT_FILL_MODE$4 = 'solid';
|
|
5019
5018
|
/**
|
|
5020
|
-
* Represents the [Kendo UI ComboBox component for Angular](
|
|
5019
|
+
* Represents the [Kendo UI ComboBox component for Angular](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox).
|
|
5021
5020
|
* @example
|
|
5022
5021
|
* ```html
|
|
5023
5022
|
* <kendo-combobox [data]="listItems"> </kendo-combobox>
|
|
@@ -5128,7 +5127,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5128
5127
|
selected = [];
|
|
5129
5128
|
/**
|
|
5130
5129
|
* Shows or hides the current group sticky header when using grouped data.
|
|
5131
|
-
* By default the sticky header is displayed ([see example](
|
|
5130
|
+
* By default the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
|
|
5132
5131
|
* @default true
|
|
5133
5132
|
*/
|
|
5134
5133
|
showStickyHeader = true;
|
|
@@ -5138,7 +5137,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5138
5137
|
focusableId = `k-${guid()}`;
|
|
5139
5138
|
/**
|
|
5140
5139
|
* Specifies whether the ComboBox allows user-defined values that are not present in the dataset
|
|
5141
|
-
* ([more information and examples](
|
|
5140
|
+
* ([more information and examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/custom-values)).
|
|
5142
5141
|
* Defaults to `false`.
|
|
5143
5142
|
*
|
|
5144
5143
|
* The feature is not available when using adaptive mode.
|
|
@@ -5203,7 +5202,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5203
5202
|
valueField;
|
|
5204
5203
|
/**
|
|
5205
5204
|
* Specifies the type of the selected value. If set to `true`, the selected value must be a primitive type.
|
|
5206
|
-
* ([more information and example](
|
|
5205
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/value-binding#primitive-values-from-object-fields))
|
|
5207
5206
|
*/
|
|
5208
5207
|
set valuePrimitive(isPrimitive) {
|
|
5209
5208
|
this._valuePrimitive = isPrimitive;
|
|
@@ -5327,11 +5326,11 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5327
5326
|
*/
|
|
5328
5327
|
clearButton = true;
|
|
5329
5328
|
/**
|
|
5330
|
-
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the articles on [ComboBox Forms Support](
|
|
5329
|
+
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the articles on [ComboBox Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/forms#managing-the-combobox-disabled-state-in-reactive-forms) and [MultiColumnComboBox Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/forms#managing-the-multicolumncombobox-disabled-state-in-reactive-forms).
|
|
5331
5330
|
*/
|
|
5332
5331
|
disabled = false;
|
|
5333
5332
|
/**
|
|
5334
|
-
* Defines a Boolean function that is executed for each data item in the component ([see examples](
|
|
5333
|
+
* Defines a Boolean function that is executed for each data item in the component ([see examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/disabled-items)). Determines whether the item is disabled.
|
|
5335
5334
|
*/
|
|
5336
5335
|
set itemDisabled(fn) {
|
|
5337
5336
|
if (typeof fn !== 'function') {
|
|
@@ -5358,12 +5357,12 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5358
5357
|
return this.tabindex;
|
|
5359
5358
|
}
|
|
5360
5359
|
/**
|
|
5361
|
-
* Enables the [filtering](
|
|
5360
|
+
* Enables the [filtering](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/filtering) functionality.
|
|
5362
5361
|
* If set to `true`, the component emits the `filterChange` event.
|
|
5363
5362
|
*/
|
|
5364
5363
|
filterable = false;
|
|
5365
5364
|
/**
|
|
5366
|
-
* Enables the [virtualization](
|
|
5365
|
+
* Enables the [virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/virtualization) functionality.
|
|
5367
5366
|
*/
|
|
5368
5367
|
set virtual(settings) {
|
|
5369
5368
|
this._virtualSettings = normalizeVirtualizationSettings(settings, {
|
|
@@ -5375,65 +5374,40 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5375
5374
|
return this._virtualSettings;
|
|
5376
5375
|
}
|
|
5377
5376
|
/**
|
|
5378
|
-
* Sets the size of the component.
|
|
5379
|
-
*
|
|
5380
|
-
* The possible values are:
|
|
5381
|
-
* * `small`
|
|
5382
|
-
* * `medium` (default)
|
|
5383
|
-
* * `large`
|
|
5384
|
-
* * `none`
|
|
5385
|
-
*
|
|
5377
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
5386
5378
|
*/
|
|
5387
5379
|
set size(size) {
|
|
5388
|
-
const newSize = size ? size : DEFAULT_SIZE$4;
|
|
5389
5380
|
this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
|
|
5390
|
-
if (size
|
|
5391
|
-
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('input',
|
|
5381
|
+
if (size) {
|
|
5382
|
+
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('input', size));
|
|
5392
5383
|
}
|
|
5393
|
-
this._size =
|
|
5384
|
+
this._size = size;
|
|
5394
5385
|
}
|
|
5395
5386
|
get size() {
|
|
5396
5387
|
return this._size;
|
|
5397
5388
|
}
|
|
5398
5389
|
/**
|
|
5399
|
-
* Sets the border radius of the component.
|
|
5400
|
-
*
|
|
5401
|
-
* The possible values are:
|
|
5402
|
-
* * `small`
|
|
5403
|
-
* * `medium` (default)
|
|
5404
|
-
* * `large`
|
|
5405
|
-
* * `full`
|
|
5406
|
-
* * `none`
|
|
5407
|
-
*
|
|
5390
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
5408
5391
|
*/
|
|
5409
5392
|
set rounded(rounded) {
|
|
5410
|
-
const newRounded = rounded ? rounded : DEFAULT_ROUNDED$4;
|
|
5411
5393
|
this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
5412
|
-
if (rounded
|
|
5413
|
-
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(
|
|
5394
|
+
if (rounded) {
|
|
5395
|
+
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(rounded));
|
|
5414
5396
|
}
|
|
5415
|
-
this._rounded =
|
|
5397
|
+
this._rounded = rounded;
|
|
5416
5398
|
}
|
|
5417
5399
|
get rounded() {
|
|
5418
5400
|
return this._rounded;
|
|
5419
5401
|
}
|
|
5420
5402
|
/**
|
|
5421
|
-
* Sets the fillMode of the component.
|
|
5422
|
-
*
|
|
5423
|
-
* The possible values are:
|
|
5424
|
-
* * `flat`
|
|
5425
|
-
* * `solid` (default)
|
|
5426
|
-
* * `outline`
|
|
5427
|
-
* * `none`
|
|
5428
|
-
*
|
|
5403
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
5429
5404
|
*/
|
|
5430
5405
|
set fillMode(fillMode) {
|
|
5431
|
-
const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE$4;
|
|
5432
5406
|
this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
|
|
5433
|
-
if (fillMode
|
|
5434
|
-
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('input',
|
|
5407
|
+
if (fillMode) {
|
|
5408
|
+
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('input', fillMode));
|
|
5435
5409
|
}
|
|
5436
|
-
this._fillMode =
|
|
5410
|
+
this._fillMode = fillMode;
|
|
5437
5411
|
}
|
|
5438
5412
|
get fillMode() {
|
|
5439
5413
|
return this._fillMode;
|
|
@@ -5441,18 +5415,18 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5441
5415
|
/**
|
|
5442
5416
|
* Fires each time the value is changed—
|
|
5443
5417
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
5444
|
-
* ([see example](
|
|
5418
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/events)).
|
|
5445
5419
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
5446
5420
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
5447
5421
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
5448
5422
|
*/
|
|
5449
5423
|
valueChange = new EventEmitter();
|
|
5450
5424
|
/**
|
|
5451
|
-
* Fires each time an item selection is changed ([see example](
|
|
5425
|
+
* Fires each time an item selection is changed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/events)).
|
|
5452
5426
|
*/
|
|
5453
5427
|
selectionChange = new EventEmitter();
|
|
5454
5428
|
/**
|
|
5455
|
-
* Fires each time the user types in the input field. You can filter the source based on the passed filtration value ([see example](
|
|
5429
|
+
* Fires each time the user types in the input field. You can filter the source based on the passed filtration value ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/events)).
|
|
5456
5430
|
*/
|
|
5457
5431
|
filterChange = new EventEmitter();
|
|
5458
5432
|
/**
|
|
@@ -5603,9 +5577,9 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5603
5577
|
subs = new Subscription();
|
|
5604
5578
|
touchstartDisposeHandler;
|
|
5605
5579
|
selectClickDisposeHandler;
|
|
5606
|
-
_size =
|
|
5607
|
-
_rounded =
|
|
5608
|
-
_fillMode =
|
|
5580
|
+
_size = undefined;
|
|
5581
|
+
_rounded = undefined;
|
|
5582
|
+
_fillMode = undefined;
|
|
5609
5583
|
constructor(wrapper, localization, popupService, selectionService, navigationService, disabledItemsService, dataService, zone, cdr, renderer, injector, hostElement, adaptiveService) {
|
|
5610
5584
|
super();
|
|
5611
5585
|
this.wrapper = wrapper;
|
|
@@ -5934,8 +5908,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5934
5908
|
* @hidden
|
|
5935
5909
|
*/
|
|
5936
5910
|
get selectButtonClasses() {
|
|
5937
|
-
return `${this.size ? getSizeClass('button', this.size) : ''} ${this.fillMode ? 'k-button-' + this.fillMode : ''}
|
|
5938
|
-
`;
|
|
5911
|
+
return `${this.size ? getSizeClass('button', this.size) : ''} ${this.fillMode ? 'k-button-' + this.fillMode : ''}`;
|
|
5939
5912
|
}
|
|
5940
5913
|
/**
|
|
5941
5914
|
* @hidden
|
|
@@ -6470,13 +6443,13 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
6470
6443
|
this.selectClickDisposeHandler = this.renderer.listen(selectElement, event, this.selectClick.bind(this));
|
|
6471
6444
|
}
|
|
6472
6445
|
setComponentClasses() {
|
|
6473
|
-
if (this.size
|
|
6446
|
+
if (this.size) {
|
|
6474
6447
|
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
|
|
6475
6448
|
}
|
|
6476
|
-
if (this.rounded
|
|
6449
|
+
if (this.rounded) {
|
|
6477
6450
|
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
6478
6451
|
}
|
|
6479
|
-
if (this.fillMode
|
|
6452
|
+
if (this.fillMode) {
|
|
6480
6453
|
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
|
|
6481
6454
|
}
|
|
6482
6455
|
}
|
|
@@ -6561,21 +6534,21 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
6561
6534
|
<ng-container kendoComboBoxLocalizedMessages
|
|
6562
6535
|
i18n-noDataText="kendo.combobox.noDataText|The text displayed in the popup when there are no items"
|
|
6563
6536
|
noDataText="NO DATA FOUND"
|
|
6564
|
-
|
|
6537
|
+
|
|
6565
6538
|
i18n-clearTitle="kendo.combobox.clearTitle|The title of the clear button"
|
|
6566
6539
|
clearTitle="clear"
|
|
6567
|
-
|
|
6540
|
+
|
|
6568
6541
|
i18n-selectButtonText="kendo.combobox.selectButtonText|The text set as aria-label on the select button"
|
|
6569
6542
|
selectButtonText="Select"
|
|
6570
|
-
|
|
6543
|
+
|
|
6571
6544
|
i18n-popupLabel="kendo.combobox.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
6572
6545
|
popupLabel="Options list"
|
|
6573
|
-
|
|
6546
|
+
|
|
6574
6547
|
i18n-adaptiveCloseButtonTitle="kendo.combobox.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
6575
6548
|
adaptiveCloseButtonTitle="Close"
|
|
6576
6549
|
>
|
|
6577
6550
|
</ng-container>
|
|
6578
|
-
|
|
6551
|
+
|
|
6579
6552
|
<ng-container
|
|
6580
6553
|
kendoDropDownSharedEvents
|
|
6581
6554
|
[hostElement]="hostElement"
|
|
@@ -6667,7 +6640,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
6667
6640
|
</kendo-icon-wrapper>
|
|
6668
6641
|
</button>
|
|
6669
6642
|
</ng-container>
|
|
6670
|
-
|
|
6643
|
+
|
|
6671
6644
|
<ng-template #popupTemplate>
|
|
6672
6645
|
<ng-container *ngTemplateOutlet="sharedPopupActionSheetTemplate"></ng-container>
|
|
6673
6646
|
</ng-template>
|
|
@@ -6675,7 +6648,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
6675
6648
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
6676
6649
|
}
|
|
6677
6650
|
<ng-container #container></ng-container>
|
|
6678
|
-
|
|
6651
|
+
|
|
6679
6652
|
<kendo-adaptive-renderer
|
|
6680
6653
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
6681
6654
|
[title]="adaptiveTitle"
|
|
@@ -6773,21 +6746,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
6773
6746
|
<ng-container kendoComboBoxLocalizedMessages
|
|
6774
6747
|
i18n-noDataText="kendo.combobox.noDataText|The text displayed in the popup when there are no items"
|
|
6775
6748
|
noDataText="NO DATA FOUND"
|
|
6776
|
-
|
|
6749
|
+
|
|
6777
6750
|
i18n-clearTitle="kendo.combobox.clearTitle|The title of the clear button"
|
|
6778
6751
|
clearTitle="clear"
|
|
6779
|
-
|
|
6752
|
+
|
|
6780
6753
|
i18n-selectButtonText="kendo.combobox.selectButtonText|The text set as aria-label on the select button"
|
|
6781
6754
|
selectButtonText="Select"
|
|
6782
|
-
|
|
6755
|
+
|
|
6783
6756
|
i18n-popupLabel="kendo.combobox.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
6784
6757
|
popupLabel="Options list"
|
|
6785
|
-
|
|
6758
|
+
|
|
6786
6759
|
i18n-adaptiveCloseButtonTitle="kendo.combobox.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
6787
6760
|
adaptiveCloseButtonTitle="Close"
|
|
6788
6761
|
>
|
|
6789
6762
|
</ng-container>
|
|
6790
|
-
|
|
6763
|
+
|
|
6791
6764
|
<ng-container
|
|
6792
6765
|
kendoDropDownSharedEvents
|
|
6793
6766
|
[hostElement]="hostElement"
|
|
@@ -6879,7 +6852,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
6879
6852
|
</kendo-icon-wrapper>
|
|
6880
6853
|
</button>
|
|
6881
6854
|
</ng-container>
|
|
6882
|
-
|
|
6855
|
+
|
|
6883
6856
|
<ng-template #popupTemplate>
|
|
6884
6857
|
<ng-container *ngTemplateOutlet="sharedPopupActionSheetTemplate"></ng-container>
|
|
6885
6858
|
</ng-template>
|
|
@@ -6887,7 +6860,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
6887
6860
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
6888
6861
|
}
|
|
6889
6862
|
<ng-container #container></ng-container>
|
|
6890
|
-
|
|
6863
|
+
|
|
6891
6864
|
<kendo-adaptive-renderer
|
|
6892
6865
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
6893
6866
|
[title]="adaptiveTitle"
|
|
@@ -7117,8 +7090,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
7117
7090
|
*
|
|
7118
7091
|
* > The `ValueTemplate` directive can only be used with the DropDownList and DropDownTree components.
|
|
7119
7092
|
*
|
|
7120
|
-
* - [Using `ValueTemplate` with the DropDownList](
|
|
7121
|
-
* - [Using `ValueTemplate` with the DropDownTree](
|
|
7093
|
+
* - [Using `ValueTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#value-template)
|
|
7094
|
+
* - [Using `ValueTemplate` with the DropDownTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/templates#value-template)
|
|
7122
7095
|
*
|
|
7123
7096
|
* @example
|
|
7124
7097
|
* ```ts
|
|
@@ -7195,11 +7168,8 @@ const DROPDOWNLIST_VALUE_ACCESSOR = {
|
|
|
7195
7168
|
provide: NG_VALUE_ACCESSOR,
|
|
7196
7169
|
useExisting: forwardRef(() => DropDownListComponent)
|
|
7197
7170
|
};
|
|
7198
|
-
const DEFAULT_SIZE$3 = 'medium';
|
|
7199
|
-
const DEFAULT_ROUNDED$3 = 'medium';
|
|
7200
|
-
const DEFAULT_FILL_MODE$3 = 'solid';
|
|
7201
7171
|
/**
|
|
7202
|
-
* Represents the Kendo UI for Angular [DropDownList](
|
|
7172
|
+
* Represents the Kendo UI for Angular [DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist) component.
|
|
7203
7173
|
*
|
|
7204
7174
|
* @example
|
|
7205
7175
|
* ```html
|
|
@@ -7313,7 +7283,7 @@ class DropDownListComponent {
|
|
|
7313
7283
|
}
|
|
7314
7284
|
/**
|
|
7315
7285
|
* Shows or hides the current group sticky header when using grouped data.
|
|
7316
|
-
* The sticky header displays by default. [see example.](
|
|
7286
|
+
* The sticky header displays by default. [see example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)
|
|
7317
7287
|
*/
|
|
7318
7288
|
showStickyHeader = true;
|
|
7319
7289
|
/**
|
|
@@ -7460,11 +7430,11 @@ class DropDownListComponent {
|
|
|
7460
7430
|
*/
|
|
7461
7431
|
defaultItem;
|
|
7462
7432
|
/**
|
|
7463
|
-
* Sets the disabled state of the component. To disable the component in reactive forms, see [Forms Support](
|
|
7433
|
+
* Sets the disabled state of the component. To disable the component in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/forms#managing-the-dropdownlist-disabled-state-in-reactive-forms).
|
|
7464
7434
|
*/
|
|
7465
7435
|
disabled;
|
|
7466
7436
|
/**
|
|
7467
|
-
* Defines a Boolean function executed for each data item in the component. Determines whether the item is disabled. [See examples.](
|
|
7437
|
+
* Defines a Boolean function executed for each data item in the component. Determines whether the item is disabled. [See examples.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/disabled-items)
|
|
7468
7438
|
*/
|
|
7469
7439
|
set itemDisabled(fn) {
|
|
7470
7440
|
if (typeof fn !== 'function') {
|
|
@@ -7479,11 +7449,11 @@ class DropDownListComponent {
|
|
|
7479
7449
|
*/
|
|
7480
7450
|
readonly = false;
|
|
7481
7451
|
/**
|
|
7482
|
-
* Enables the [filtering](
|
|
7452
|
+
* Enables the [filtering](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/filtering) functionality of the `DropDownListComponent`.
|
|
7483
7453
|
*/
|
|
7484
7454
|
filterable = false;
|
|
7485
7455
|
/**
|
|
7486
|
-
* Enables the [virtualization](
|
|
7456
|
+
* Enables the [virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/virtualization) functionality.
|
|
7487
7457
|
*/
|
|
7488
7458
|
set virtual(settings) {
|
|
7489
7459
|
this._virtualSettings = normalizeVirtualizationSettings(settings);
|
|
@@ -7501,7 +7471,7 @@ class DropDownListComponent {
|
|
|
7501
7471
|
delay = 500;
|
|
7502
7472
|
/**
|
|
7503
7473
|
* Specifies the type of the selected value. If set to `true`, the selected value must be a primitive value.
|
|
7504
|
-
* * [More information and example.](
|
|
7474
|
+
* * [More information and example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/value-binding#primitive-values-from-object-fields)
|
|
7505
7475
|
*/
|
|
7506
7476
|
set valuePrimitive(isPrimitive) {
|
|
7507
7477
|
this._valuePrimitive = isPrimitive;
|
|
@@ -7526,44 +7496,25 @@ class DropDownListComponent {
|
|
|
7526
7496
|
return this.tabindex;
|
|
7527
7497
|
}
|
|
7528
7498
|
/**
|
|
7529
|
-
* Sets the size of the component.
|
|
7530
|
-
*
|
|
7531
|
-
* The possible values are:
|
|
7532
|
-
* * `small`
|
|
7533
|
-
* * `medium` (default)
|
|
7534
|
-
* * `large`
|
|
7535
|
-
* * `none`
|
|
7536
|
-
*
|
|
7537
|
-
* @default 'medium'
|
|
7499
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
7538
7500
|
*/
|
|
7539
7501
|
set size(size) {
|
|
7540
|
-
const newSize = size ? size : DEFAULT_SIZE$3;
|
|
7541
7502
|
this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('picker', this.size));
|
|
7542
|
-
if (size
|
|
7543
|
-
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('picker',
|
|
7503
|
+
if (size) {
|
|
7504
|
+
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('picker', size));
|
|
7544
7505
|
}
|
|
7545
|
-
this._size =
|
|
7506
|
+
this._size = size;
|
|
7546
7507
|
}
|
|
7547
7508
|
get size() {
|
|
7548
7509
|
return this._size;
|
|
7549
7510
|
}
|
|
7550
7511
|
/**
|
|
7551
|
-
* Sets the border radius of the component.
|
|
7552
|
-
*
|
|
7553
|
-
* The possible values are:
|
|
7554
|
-
* * `small`
|
|
7555
|
-
* * `medium` (default)
|
|
7556
|
-
* * `large`
|
|
7557
|
-
* * `full`
|
|
7558
|
-
* * `none`
|
|
7559
|
-
*
|
|
7560
|
-
* @default 'medium'
|
|
7512
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
7561
7513
|
*/
|
|
7562
7514
|
set rounded(rounded) {
|
|
7563
|
-
const newRounded = rounded ? rounded : DEFAULT_ROUNDED$3;
|
|
7564
7515
|
this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
7565
|
-
if (rounded
|
|
7566
|
-
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(
|
|
7516
|
+
if (rounded) {
|
|
7517
|
+
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(rounded));
|
|
7567
7518
|
}
|
|
7568
7519
|
this._rounded = rounded;
|
|
7569
7520
|
}
|
|
@@ -7571,23 +7522,14 @@ class DropDownListComponent {
|
|
|
7571
7522
|
return this._rounded;
|
|
7572
7523
|
}
|
|
7573
7524
|
/**
|
|
7574
|
-
* Sets the fillMode of the component.
|
|
7575
|
-
*
|
|
7576
|
-
* The possible values are:
|
|
7577
|
-
* * `flat`
|
|
7578
|
-
* * `solid` (default)
|
|
7579
|
-
* * `outline`
|
|
7580
|
-
* * `none`
|
|
7581
|
-
*
|
|
7582
|
-
* @default 'solid'
|
|
7525
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
7583
7526
|
*/
|
|
7584
7527
|
set fillMode(fillMode) {
|
|
7585
|
-
const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE$3;
|
|
7586
7528
|
this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('picker', this.fillMode));
|
|
7587
|
-
if (fillMode
|
|
7588
|
-
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('picker',
|
|
7529
|
+
if (fillMode) {
|
|
7530
|
+
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('picker', fillMode));
|
|
7589
7531
|
}
|
|
7590
|
-
this._fillMode =
|
|
7532
|
+
this._fillMode = fillMode;
|
|
7591
7533
|
}
|
|
7592
7534
|
get fillMode() {
|
|
7593
7535
|
return this._fillMode;
|
|
@@ -7598,19 +7540,19 @@ class DropDownListComponent {
|
|
|
7598
7540
|
*/
|
|
7599
7541
|
leftRightArrowsNavigation = true;
|
|
7600
7542
|
/**
|
|
7601
|
-
* Fires each time the value changes. [See example.](
|
|
7543
|
+
* Fires each time the value changes. [See example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/events).
|
|
7602
7544
|
*/
|
|
7603
7545
|
valueChange = new EventEmitter();
|
|
7604
7546
|
/**
|
|
7605
|
-
** Fires each time the user types in the input field. You can filter the source based on the filtration value. When the value is programmatically changed, the `valueChange` event is not triggered. [See example.](
|
|
7547
|
+
** Fires each time the user types in the input field. You can filter the source based on the filtration value. When the value is programmatically changed, the `valueChange` event is not triggered. [See example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/events).
|
|
7606
7548
|
*/
|
|
7607
7549
|
filterChange = new EventEmitter();
|
|
7608
7550
|
/**
|
|
7609
|
-
* Fires each time the item selection changes. [see example.](
|
|
7551
|
+
* Fires each time the item selection changes. [see example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/events).
|
|
7610
7552
|
*/
|
|
7611
7553
|
selectionChange = new EventEmitter();
|
|
7612
7554
|
/**
|
|
7613
|
-
* Fires each time the popup is about to open. This event is preventable. If you cancel it, the popup remains closed. [see example.](
|
|
7555
|
+
* Fires each time the popup is about to open. This event is preventable. If you cancel it, the popup remains closed. [see example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/open-state#preventing-opening-and-closing)
|
|
7614
7556
|
*/
|
|
7615
7557
|
open = new EventEmitter();
|
|
7616
7558
|
/**
|
|
@@ -7618,7 +7560,7 @@ class DropDownListComponent {
|
|
|
7618
7560
|
*/
|
|
7619
7561
|
opened = new EventEmitter();
|
|
7620
7562
|
/**
|
|
7621
|
-
* Fires each time the popup is about to close. This event is preventable. If you cancel it, the popup remains open. [see example.](
|
|
7563
|
+
* Fires each time the popup is about to close. This event is preventable. If you cancel it, the popup remains open. [see example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/open-state#preventing-opening-and-closing)
|
|
7622
7564
|
*/
|
|
7623
7565
|
close = new EventEmitter();
|
|
7624
7566
|
/**
|
|
@@ -7837,9 +7779,9 @@ class DropDownListComponent {
|
|
|
7837
7779
|
text;
|
|
7838
7780
|
_popupSettings = { animate: true };
|
|
7839
7781
|
_virtualSettings;
|
|
7840
|
-
_size =
|
|
7841
|
-
_rounded =
|
|
7842
|
-
_fillMode =
|
|
7782
|
+
_size = undefined;
|
|
7783
|
+
_rounded = undefined;
|
|
7784
|
+
_fillMode = undefined;
|
|
7843
7785
|
constructor(wrapper, localization, popupService, selectionService, navigationService, disabledItemsService, dataService, _zone, renderer, cdr, injector, adaptiveService) {
|
|
7844
7786
|
this.wrapper = wrapper;
|
|
7845
7787
|
this.localization = localization;
|
|
@@ -8059,7 +8001,7 @@ class DropDownListComponent {
|
|
|
8059
8001
|
* @hidden
|
|
8060
8002
|
*/
|
|
8061
8003
|
get selectButtonClasses() {
|
|
8062
|
-
return `${this.size ? getSizeClass('button', this.size) : ''} ${this.fillMode ? 'k-button-' + this.fillMode : ''}
|
|
8004
|
+
return `${this.size ? getSizeClass('button', this.size) : ''} ${this.fillMode ? 'k-button-' + this.fillMode : ''}`;
|
|
8063
8005
|
}
|
|
8064
8006
|
/**
|
|
8065
8007
|
* @hidden
|
|
@@ -8561,13 +8503,13 @@ class DropDownListComponent {
|
|
|
8561
8503
|
this.renderer.setAttribute(this.wrapper.nativeElement, 'aria-describedby', newValue);
|
|
8562
8504
|
}
|
|
8563
8505
|
setComponentClasses() {
|
|
8564
|
-
if (this.size
|
|
8506
|
+
if (this.size) {
|
|
8565
8507
|
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('picker', this.size));
|
|
8566
8508
|
}
|
|
8567
|
-
if (this.rounded
|
|
8509
|
+
if (this.rounded) {
|
|
8568
8510
|
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
8569
8511
|
}
|
|
8570
|
-
if (this.fillMode
|
|
8512
|
+
if (this.fillMode) {
|
|
8571
8513
|
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('picker', this.fillMode));
|
|
8572
8514
|
}
|
|
8573
8515
|
}
|
|
@@ -8618,19 +8560,19 @@ class DropDownListComponent {
|
|
|
8618
8560
|
<ng-container kendoDropDownListLocalizedMessages
|
|
8619
8561
|
i18n-noDataText="kendo.dropdownlist.noDataText|The text displayed in the popup when there are no items"
|
|
8620
8562
|
noDataText="NO DATA FOUND"
|
|
8621
|
-
|
|
8563
|
+
|
|
8622
8564
|
i18n-selectButtonText="kendo.dropdownlist.selectButtonText|The text set as aria-label on the select button"
|
|
8623
8565
|
selectButtonText="Select"
|
|
8624
|
-
|
|
8566
|
+
|
|
8625
8567
|
i18n-filterInputLabel="kendo.dropdownlist.filterInputLabel|The text set as aria-label on the filter input"
|
|
8626
8568
|
filterInputLabel="Filter"
|
|
8627
|
-
|
|
8569
|
+
|
|
8628
8570
|
i18n-popupLabel="kendo.dropdownlist.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
8629
8571
|
popupLabel="Options list"
|
|
8630
|
-
|
|
8572
|
+
|
|
8631
8573
|
i18n-adaptiveCloseButtonTitle="kendo.dropdownlist.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
8632
8574
|
adaptiveCloseButtonTitle="Close"
|
|
8633
|
-
|
|
8575
|
+
|
|
8634
8576
|
i18n-filterPlaceholder="kendo.dropdownlist.filterPlaceholder|The text for the input's placeholder when filtering is enabled"
|
|
8635
8577
|
filterInputPlaceholder="Filter"
|
|
8636
8578
|
>
|
|
@@ -8678,7 +8620,7 @@ class DropDownListComponent {
|
|
|
8678
8620
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
8679
8621
|
}
|
|
8680
8622
|
<ng-container #container></ng-container>
|
|
8681
|
-
|
|
8623
|
+
|
|
8682
8624
|
<kendo-adaptive-renderer
|
|
8683
8625
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
8684
8626
|
[title]="adaptiveTitle"
|
|
@@ -8688,7 +8630,7 @@ class DropDownListComponent {
|
|
|
8688
8630
|
(textInputChange)="onFilterChange($event)"
|
|
8689
8631
|
[filterable]="filterable">
|
|
8690
8632
|
</kendo-adaptive-renderer>
|
|
8691
|
-
|
|
8633
|
+
|
|
8692
8634
|
<ng-template #sharedPopupActionSheetTemplate>
|
|
8693
8635
|
<!--filterable-->
|
|
8694
8636
|
@if (filterable && !isActionSheetExpanded) {
|
|
@@ -8804,19 +8746,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
8804
8746
|
<ng-container kendoDropDownListLocalizedMessages
|
|
8805
8747
|
i18n-noDataText="kendo.dropdownlist.noDataText|The text displayed in the popup when there are no items"
|
|
8806
8748
|
noDataText="NO DATA FOUND"
|
|
8807
|
-
|
|
8749
|
+
|
|
8808
8750
|
i18n-selectButtonText="kendo.dropdownlist.selectButtonText|The text set as aria-label on the select button"
|
|
8809
8751
|
selectButtonText="Select"
|
|
8810
|
-
|
|
8752
|
+
|
|
8811
8753
|
i18n-filterInputLabel="kendo.dropdownlist.filterInputLabel|The text set as aria-label on the filter input"
|
|
8812
8754
|
filterInputLabel="Filter"
|
|
8813
|
-
|
|
8755
|
+
|
|
8814
8756
|
i18n-popupLabel="kendo.dropdownlist.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
8815
8757
|
popupLabel="Options list"
|
|
8816
|
-
|
|
8758
|
+
|
|
8817
8759
|
i18n-adaptiveCloseButtonTitle="kendo.dropdownlist.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
8818
8760
|
adaptiveCloseButtonTitle="Close"
|
|
8819
|
-
|
|
8761
|
+
|
|
8820
8762
|
i18n-filterPlaceholder="kendo.dropdownlist.filterPlaceholder|The text for the input's placeholder when filtering is enabled"
|
|
8821
8763
|
filterInputPlaceholder="Filter"
|
|
8822
8764
|
>
|
|
@@ -8864,7 +8806,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
8864
8806
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
8865
8807
|
}
|
|
8866
8808
|
<ng-container #container></ng-container>
|
|
8867
|
-
|
|
8809
|
+
|
|
8868
8810
|
<kendo-adaptive-renderer
|
|
8869
8811
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
8870
8812
|
[title]="adaptiveTitle"
|
|
@@ -8874,7 +8816,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
8874
8816
|
(textInputChange)="onFilterChange($event)"
|
|
8875
8817
|
[filterable]="filterable">
|
|
8876
8818
|
</kendo-adaptive-renderer>
|
|
8877
|
-
|
|
8819
|
+
|
|
8878
8820
|
<ng-template #sharedPopupActionSheetTemplate>
|
|
8879
8821
|
<!--filterable-->
|
|
8880
8822
|
@if (filterable && !isActionSheetExpanded) {
|
|
@@ -9141,7 +9083,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
9141
9083
|
|
|
9142
9084
|
/**
|
|
9143
9085
|
* Renders the selected tag value of the MultiSelect
|
|
9144
|
-
* ([see example](
|
|
9086
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#tag-template)).
|
|
9145
9087
|
* The template context is set to the current component.
|
|
9146
9088
|
* To get a reference to the current data item, use the `let-dataItem` directive.
|
|
9147
9089
|
*
|
|
@@ -9182,7 +9124,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
9182
9124
|
|
|
9183
9125
|
/**
|
|
9184
9126
|
* Renders the grouped tag values in the MultiSelect
|
|
9185
|
-
* ([see example](
|
|
9127
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/summary-tag-mode)).
|
|
9186
9128
|
* The template context is set to the current component.
|
|
9187
9129
|
* To get a reference to the current grouped
|
|
9188
9130
|
* data items collection, use the `let-dataItems` directive.
|
|
@@ -9282,8 +9224,8 @@ class TagListComponent {
|
|
|
9282
9224
|
get size() {
|
|
9283
9225
|
return this._size;
|
|
9284
9226
|
}
|
|
9285
|
-
rounded
|
|
9286
|
-
fillMode
|
|
9227
|
+
rounded;
|
|
9228
|
+
fillMode;
|
|
9287
9229
|
/**
|
|
9288
9230
|
* A collection with the disabled tags' indices.
|
|
9289
9231
|
*/
|
|
@@ -9295,7 +9237,7 @@ class TagListComponent {
|
|
|
9295
9237
|
}
|
|
9296
9238
|
taglistRole = 'listbox';
|
|
9297
9239
|
multiselectable = true;
|
|
9298
|
-
_size
|
|
9240
|
+
_size;
|
|
9299
9241
|
constructor(renderer, hostElement) {
|
|
9300
9242
|
this.renderer = renderer;
|
|
9301
9243
|
this.hostElement = hostElement;
|
|
@@ -9366,9 +9308,11 @@ class TagListComponent {
|
|
|
9366
9308
|
'k-rounded-md': rounded === 'medium',
|
|
9367
9309
|
'k-rounded-lg': rounded === 'large',
|
|
9368
9310
|
'k-rounded-full': rounded === 'full',
|
|
9369
|
-
'k-
|
|
9370
|
-
'k-chip-
|
|
9371
|
-
'k-chip-
|
|
9311
|
+
'k-rounded-none': rounded === 'none',
|
|
9312
|
+
'k-chip-solid': fillMode === 'solid',
|
|
9313
|
+
'k-chip-flat': fillMode === 'flat',
|
|
9314
|
+
'k-chip-outline': fillMode === 'outline',
|
|
9315
|
+
'k-chip-base': fillMode
|
|
9372
9316
|
}"
|
|
9373
9317
|
>
|
|
9374
9318
|
<span class="k-chip-content">
|
|
@@ -9438,9 +9382,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
9438
9382
|
'k-rounded-md': rounded === 'medium',
|
|
9439
9383
|
'k-rounded-lg': rounded === 'large',
|
|
9440
9384
|
'k-rounded-full': rounded === 'full',
|
|
9441
|
-
'k-
|
|
9442
|
-
'k-chip-
|
|
9443
|
-
'k-chip-
|
|
9385
|
+
'k-rounded-none': rounded === 'none',
|
|
9386
|
+
'k-chip-solid': fillMode === 'solid',
|
|
9387
|
+
'k-chip-flat': fillMode === 'flat',
|
|
9388
|
+
'k-chip-outline': fillMode === 'outline',
|
|
9389
|
+
'k-chip-base': fillMode
|
|
9444
9390
|
}"
|
|
9445
9391
|
>
|
|
9446
9392
|
<span class="k-chip-content">
|
|
@@ -9540,14 +9486,11 @@ const MULTISELECT_VALUE_ACCESSOR = {
|
|
|
9540
9486
|
provide: NG_VALUE_ACCESSOR,
|
|
9541
9487
|
useExisting: forwardRef(() => MultiSelectComponent)
|
|
9542
9488
|
};
|
|
9543
|
-
const DEFAULT_SIZE$2 = 'medium';
|
|
9544
|
-
const DEFAULT_ROUNDED$2 = 'medium';
|
|
9545
|
-
const DEFAULT_FILL_MODE$2 = 'solid';
|
|
9546
9489
|
/**
|
|
9547
|
-
* Represents the [Kendo UI MultiSelect component for Angular](
|
|
9490
|
+
* Represents the [Kendo UI MultiSelect component for Angular](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect).
|
|
9548
9491
|
*
|
|
9549
9492
|
* Use the `MultiSelectComponent` to show a dropdown list where users can select multiple items.
|
|
9550
|
-
* [See example](
|
|
9493
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect).
|
|
9551
9494
|
*
|
|
9552
9495
|
* @example
|
|
9553
9496
|
* ```typescript
|
|
@@ -9764,7 +9707,7 @@ class MultiSelectComponent {
|
|
|
9764
9707
|
}
|
|
9765
9708
|
/**
|
|
9766
9709
|
* Shows or hides the current group sticky header when using grouped data.
|
|
9767
|
-
* By default the sticky header is displayed ([see example](
|
|
9710
|
+
* By default the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
|
|
9768
9711
|
*/
|
|
9769
9712
|
showStickyHeader = true;
|
|
9770
9713
|
/**
|
|
@@ -9772,7 +9715,7 @@ class MultiSelectComponent {
|
|
|
9772
9715
|
*/
|
|
9773
9716
|
focusableId = `k-${guid()}`;
|
|
9774
9717
|
/**
|
|
9775
|
-
* Controls whether the options list closes after item selection finishes ([see example](
|
|
9718
|
+
* Controls whether the options list closes after item selection finishes ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/open-state#keeping-the-options-list-open-while-on-focus)).
|
|
9776
9719
|
* Set to `false` to keep the list open while the component has focus.
|
|
9777
9720
|
*
|
|
9778
9721
|
* @default true
|
|
@@ -9854,49 +9797,40 @@ class MultiSelectComponent {
|
|
|
9854
9797
|
return this.tabindex;
|
|
9855
9798
|
}
|
|
9856
9799
|
/**
|
|
9857
|
-
* Sets the size of the component.
|
|
9858
|
-
*
|
|
9859
|
-
* @default "medium"
|
|
9800
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
9860
9801
|
*/
|
|
9861
9802
|
set size(size) {
|
|
9862
|
-
const newSize = size ? size : DEFAULT_SIZE$2;
|
|
9863
9803
|
this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
|
|
9864
|
-
if (size
|
|
9865
|
-
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('input',
|
|
9804
|
+
if (size) {
|
|
9805
|
+
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('input', size));
|
|
9866
9806
|
}
|
|
9867
|
-
this._size =
|
|
9807
|
+
this._size = size;
|
|
9868
9808
|
}
|
|
9869
9809
|
get size() {
|
|
9870
9810
|
return this._size;
|
|
9871
9811
|
}
|
|
9872
9812
|
/**
|
|
9873
|
-
* Sets the border radius of the component.
|
|
9874
|
-
*
|
|
9875
|
-
* @default "medium"
|
|
9813
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
9876
9814
|
*/
|
|
9877
9815
|
set rounded(rounded) {
|
|
9878
|
-
const newRounded = rounded ? rounded : DEFAULT_ROUNDED$2;
|
|
9879
9816
|
this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
9880
|
-
if (rounded
|
|
9881
|
-
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(
|
|
9817
|
+
if (rounded) {
|
|
9818
|
+
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(rounded));
|
|
9882
9819
|
}
|
|
9883
|
-
this._rounded =
|
|
9820
|
+
this._rounded = rounded;
|
|
9884
9821
|
}
|
|
9885
9822
|
get rounded() {
|
|
9886
9823
|
return this._rounded;
|
|
9887
9824
|
}
|
|
9888
9825
|
/**
|
|
9889
|
-
* Sets the fill mode of the component.
|
|
9890
|
-
*
|
|
9891
|
-
* @default "solid"
|
|
9826
|
+
* Sets the fill mode of the component. The default value is set by the Kendo theme.
|
|
9892
9827
|
*/
|
|
9893
9828
|
set fillMode(fillMode) {
|
|
9894
|
-
const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE$2;
|
|
9895
9829
|
this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
|
|
9896
|
-
if (fillMode
|
|
9897
|
-
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('input',
|
|
9830
|
+
if (fillMode) {
|
|
9831
|
+
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('input', fillMode));
|
|
9898
9832
|
}
|
|
9899
|
-
this._fillMode =
|
|
9833
|
+
this._fillMode = fillMode;
|
|
9900
9834
|
}
|
|
9901
9835
|
get fillMode() {
|
|
9902
9836
|
return this._fillMode;
|
|
@@ -9937,7 +9871,7 @@ class MultiSelectComponent {
|
|
|
9937
9871
|
/**
|
|
9938
9872
|
* Controls the disabled state of the component.
|
|
9939
9873
|
* When true, sets the component to disabled.
|
|
9940
|
-
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](
|
|
9874
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/forms#managing-the-multiselect-disabled-state-in-reactive-forms).
|
|
9941
9875
|
*
|
|
9942
9876
|
* @default false
|
|
9943
9877
|
*/
|
|
@@ -10186,9 +10120,9 @@ class MultiSelectComponent {
|
|
|
10186
10120
|
}
|
|
10187
10121
|
disabledIndices;
|
|
10188
10122
|
initialized = false;
|
|
10189
|
-
_size
|
|
10190
|
-
_rounded
|
|
10191
|
-
_fillMode
|
|
10123
|
+
_size;
|
|
10124
|
+
_rounded;
|
|
10125
|
+
_fillMode;
|
|
10192
10126
|
_valueHolder = [];
|
|
10193
10127
|
isCustomValueSelected = false;
|
|
10194
10128
|
constructor(wrapper, localization, popupService, dataService, selectionService, navigationService, disabledItemsService, cdr, differs, renderer, _zone, injector, hostElement, adaptiveService) {
|
|
@@ -10568,7 +10502,7 @@ class MultiSelectComponent {
|
|
|
10568
10502
|
}
|
|
10569
10503
|
/**
|
|
10570
10504
|
* Toggles the visibility of the popup or actionSheet
|
|
10571
|
-
* ([see example](
|
|
10505
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/open-state#setting-the-initially-opened-component)).
|
|
10572
10506
|
* If you use the `toggle` method to open or close the popup or actionSheet, the respective `open` and `close` events will not be fired.
|
|
10573
10507
|
*
|
|
10574
10508
|
* @param open - The state of the popup.
|
|
@@ -11226,13 +11160,13 @@ class MultiSelectComponent {
|
|
|
11226
11160
|
});
|
|
11227
11161
|
}
|
|
11228
11162
|
setComponentClasses() {
|
|
11229
|
-
if (this.size
|
|
11163
|
+
if (this.size) {
|
|
11230
11164
|
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
|
|
11231
11165
|
}
|
|
11232
|
-
if (this.rounded
|
|
11166
|
+
if (this.rounded) {
|
|
11233
11167
|
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
11234
11168
|
}
|
|
11235
|
-
if (this.fillMode
|
|
11169
|
+
if (this.fillMode) {
|
|
11236
11170
|
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
|
|
11237
11171
|
}
|
|
11238
11172
|
}
|
|
@@ -11866,12 +11800,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
11866
11800
|
/**
|
|
11867
11801
|
* Renders the column cell content of the MultiColumnComboBox component.
|
|
11868
11802
|
*
|
|
11869
|
-
* To define a column cell template, nest an `<ng-template>` tag with the `kendoMultiColumnComboBoxColumnCellTemplate` directive inside the [`<kendo-combobox-column>`](
|
|
11870
|
-
* [See example](
|
|
11803
|
+
* To define a column cell template, nest an `<ng-template>` tag with the `kendoMultiColumnComboBoxColumnCellTemplate` directive inside the [`<kendo-combobox-column>`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent) tag.
|
|
11804
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates).
|
|
11871
11805
|
*
|
|
11872
11806
|
* The context variables are:
|
|
11873
11807
|
* - `let-dataItem="dataItem"` (`any`)—The current data item. Also available as the implicit context variable.
|
|
11874
|
-
* - `let-column="column"` ([`ColumnComponent`](
|
|
11808
|
+
* - `let-column="column"` ([`ColumnComponent`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent))—The current column configuration object.
|
|
11875
11809
|
*
|
|
11876
11810
|
* @example
|
|
11877
11811
|
* ```html
|
|
@@ -11881,7 +11815,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
11881
11815
|
* {{ dataItem[column.field] }}
|
|
11882
11816
|
* </ng-template>
|
|
11883
11817
|
* </kendo-combobox-column>
|
|
11884
|
-
*
|
|
11818
|
+
* </kendo-multicolumncombobox>
|
|
11885
11819
|
* ```
|
|
11886
11820
|
*/
|
|
11887
11821
|
class ColumnCellTemplateDirective {
|
|
@@ -11903,10 +11837,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
11903
11837
|
/**
|
|
11904
11838
|
* Renders the column header content of the MultiColumnComboBox component.
|
|
11905
11839
|
*
|
|
11906
|
-
* To define a column header template, nest an `<ng-template>` tag with the `kendoMultiColumnComboBoxColumnHeaderTemplate` directive inside the [`<kendo-combobox-column>`](
|
|
11907
|
-
* [See example](
|
|
11840
|
+
* To define a column header template, nest an `<ng-template>` tag with the `kendoMultiColumnComboBoxColumnHeaderTemplate` directive inside the [`<kendo-combobox-column>`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent) tag.
|
|
11841
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates).
|
|
11908
11842
|
*
|
|
11909
|
-
* The current [`column`](
|
|
11843
|
+
* The current [`column`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent) is available as the implicit context variable.
|
|
11910
11844
|
*
|
|
11911
11845
|
* @example
|
|
11912
11846
|
* ```html
|
|
@@ -11916,7 +11850,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
11916
11850
|
* {{ column.title }}
|
|
11917
11851
|
* </ng-template>
|
|
11918
11852
|
* </kendo-combobox-column>
|
|
11919
|
-
*
|
|
11853
|
+
* </kendo-multicolumncombobox>
|
|
11920
11854
|
* ```
|
|
11921
11855
|
*/
|
|
11922
11856
|
class ColumnHeaderTemplateDirective {
|
|
@@ -11939,13 +11873,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
11939
11873
|
* Represents the column definition for the MultiColumnComboBox component.
|
|
11940
11874
|
*
|
|
11941
11875
|
* Use this component to define columns inside the MultiColumnComboBox.
|
|
11942
|
-
* [See example](
|
|
11876
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/columns).
|
|
11943
11877
|
*
|
|
11944
11878
|
* @example
|
|
11945
11879
|
* ```html
|
|
11946
11880
|
* <kendo-multicolumncombobox ...>
|
|
11947
11881
|
* <kendo-combobox-column field="name" title="Name" width="200"></kendo-combobox-column>
|
|
11948
|
-
*
|
|
11882
|
+
* </kendo-multicolumncombobox>
|
|
11949
11883
|
* ```
|
|
11950
11884
|
*/
|
|
11951
11885
|
class ComboBoxColumnComponent {
|
|
@@ -12001,7 +11935,7 @@ class ComboBoxColumnComponent {
|
|
|
12001
11935
|
*/
|
|
12002
11936
|
headerClass;
|
|
12003
11937
|
/**
|
|
12004
|
-
* Sets the condition that needs to be satisfied for a column to remain visible. If you set the [`hidden`](
|
|
11938
|
+
* Sets the condition that needs to be satisfied for a column to remain visible. If you set the [`hidden`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent#hidden) property, the behavior of media is overridden.
|
|
12005
11939
|
*/
|
|
12006
11940
|
media;
|
|
12007
11941
|
/**
|
|
@@ -12104,7 +12038,7 @@ const getRowWidthFromColumnsMeta = (columns) => {
|
|
|
12104
12038
|
* Represents the Kendo UI MultiColumnComboBox component for Angular.
|
|
12105
12039
|
*
|
|
12106
12040
|
* Use the `MultiColumnComboBoxComponent` to show a dropdown list with multiple columns.
|
|
12107
|
-
* [See example](
|
|
12041
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox).
|
|
12108
12042
|
*
|
|
12109
12043
|
* @example
|
|
12110
12044
|
* ```html
|
|
@@ -12978,12 +12912,9 @@ const hasChildren$1 = () => false;
|
|
|
12978
12912
|
const fetchChildren$1 = () => of([]);
|
|
12979
12913
|
const itemDisabled$1 = () => false;
|
|
12980
12914
|
const isNodeVisible$1 = () => true;
|
|
12981
|
-
const DEFAULT_SIZE$1 = 'medium';
|
|
12982
|
-
const DEFAULT_ROUNDED$1 = 'medium';
|
|
12983
|
-
const DEFAULT_FILL_MODE$1 = 'solid';
|
|
12984
12915
|
const stopPropagation = (event) => event.stopImmediatePropagation();
|
|
12985
12916
|
/**
|
|
12986
|
-
* Represents the [Kendo UI DropDownTree component for Angular](
|
|
12917
|
+
* Represents the [Kendo UI DropDownTree component for Angular](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree).
|
|
12987
12918
|
* @example
|
|
12988
12919
|
* ```html
|
|
12989
12920
|
* <kendo-dropdowntree [data]="data" textField="text" valueField="value"></kendo-dropdowntree>
|
|
@@ -13104,7 +13035,7 @@ class DropDownTreeComponent {
|
|
|
13104
13035
|
filterInput;
|
|
13105
13036
|
/**
|
|
13106
13037
|
* Fires each time the popup is about to open
|
|
13107
|
-
* ([see example](
|
|
13038
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/open-state)).
|
|
13108
13039
|
* This event is preventable. If you cancel it, the popup will remain closed.
|
|
13109
13040
|
*/
|
|
13110
13041
|
open = new EventEmitter();
|
|
@@ -13114,7 +13045,7 @@ class DropDownTreeComponent {
|
|
|
13114
13045
|
opened = new EventEmitter();
|
|
13115
13046
|
/**
|
|
13116
13047
|
* Fires each time the popup is about to close
|
|
13117
|
-
* ([see example](
|
|
13048
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/open-state)).
|
|
13118
13049
|
* This event is preventable. If you cancel it, the popup will remain open.
|
|
13119
13050
|
*/
|
|
13120
13051
|
close = new EventEmitter();
|
|
@@ -13140,7 +13071,7 @@ class DropDownTreeComponent {
|
|
|
13140
13071
|
onBlur = new EventEmitter();
|
|
13141
13072
|
/**
|
|
13142
13073
|
* Fires each time the value is changed
|
|
13143
|
-
* ([see example](
|
|
13074
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/events)).
|
|
13144
13075
|
*/
|
|
13145
13076
|
valueChange = new EventEmitter();
|
|
13146
13077
|
/**
|
|
@@ -13183,7 +13114,7 @@ class DropDownTreeComponent {
|
|
|
13183
13114
|
}
|
|
13184
13115
|
/**
|
|
13185
13116
|
* The fields of the data item that provide the text content of the nodes inside the
|
|
13186
|
-
* DropDownTree ([see example](
|
|
13117
|
+
* DropDownTree ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/data-binding)). If the `textField`
|
|
13187
13118
|
* input is set to an array, each hierarchical level uses the field that corresponds
|
|
13188
13119
|
* to the same index in the array, or the last item in the array.
|
|
13189
13120
|
*
|
|
@@ -13192,7 +13123,7 @@ class DropDownTreeComponent {
|
|
|
13192
13123
|
textField;
|
|
13193
13124
|
/**
|
|
13194
13125
|
* The fields of the data item that provide the value of the nodes inside the
|
|
13195
|
-
* DropDownTree ([see example](
|
|
13126
|
+
* DropDownTree ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/data-binding)). If the `valueField`
|
|
13196
13127
|
* input is set to an array, each hierarchical level uses the field that corresponds
|
|
13197
13128
|
* to the same index in the array, or the last item in the array.
|
|
13198
13129
|
*
|
|
@@ -13262,7 +13193,7 @@ class DropDownTreeComponent {
|
|
|
13262
13193
|
}
|
|
13263
13194
|
_listHeight = 200;
|
|
13264
13195
|
/**
|
|
13265
|
-
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](
|
|
13196
|
+
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/forms#managing-the-dropdowntree-disabled-state-in-reactive-forms).
|
|
13266
13197
|
*/
|
|
13267
13198
|
disabled = false;
|
|
13268
13199
|
/**
|
|
@@ -13273,7 +13204,7 @@ class DropDownTreeComponent {
|
|
|
13273
13204
|
readonly = false;
|
|
13274
13205
|
/**
|
|
13275
13206
|
* Specifies the type of the selected value
|
|
13276
|
-
* ([more information and example](
|
|
13207
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/value-binding#primitive-values)).
|
|
13277
13208
|
* If set to `true`, the selected value has to be of a primitive value.
|
|
13278
13209
|
*/
|
|
13279
13210
|
valuePrimitive = false;
|
|
@@ -13289,65 +13220,40 @@ class DropDownTreeComponent {
|
|
|
13289
13220
|
return this.disabled ? -1 : this._tabindex;
|
|
13290
13221
|
}
|
|
13291
13222
|
/**
|
|
13292
|
-
* Sets the size of the component.
|
|
13293
|
-
*
|
|
13294
|
-
* The possible values are:
|
|
13295
|
-
* * `small`
|
|
13296
|
-
* * `medium` (default)
|
|
13297
|
-
* * `large`
|
|
13298
|
-
* * `none`
|
|
13299
|
-
*
|
|
13223
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
13300
13224
|
*/
|
|
13301
13225
|
set size(size) {
|
|
13302
|
-
const newSize = size ? size : DEFAULT_SIZE$1;
|
|
13303
13226
|
this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('picker', this.size));
|
|
13304
|
-
if (size
|
|
13305
|
-
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('picker',
|
|
13227
|
+
if (size) {
|
|
13228
|
+
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('picker', size));
|
|
13306
13229
|
}
|
|
13307
|
-
this._size =
|
|
13230
|
+
this._size = size;
|
|
13308
13231
|
}
|
|
13309
13232
|
get size() {
|
|
13310
13233
|
return this._size;
|
|
13311
13234
|
}
|
|
13312
13235
|
/**
|
|
13313
|
-
* Sets the border radius of the component.
|
|
13314
|
-
*
|
|
13315
|
-
* The possible values are:
|
|
13316
|
-
* * `small`
|
|
13317
|
-
* * `medium` (default)
|
|
13318
|
-
* * `large`
|
|
13319
|
-
* * `full`
|
|
13320
|
-
* * `none`
|
|
13321
|
-
*
|
|
13236
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
13322
13237
|
*/
|
|
13323
13238
|
set rounded(rounded) {
|
|
13324
|
-
const newRounded = rounded ? rounded : DEFAULT_ROUNDED$1;
|
|
13325
13239
|
this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
13326
|
-
if (rounded
|
|
13327
|
-
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(
|
|
13240
|
+
if (rounded) {
|
|
13241
|
+
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(rounded));
|
|
13328
13242
|
}
|
|
13329
|
-
this._rounded =
|
|
13243
|
+
this._rounded = rounded;
|
|
13330
13244
|
}
|
|
13331
13245
|
get rounded() {
|
|
13332
13246
|
return this._rounded;
|
|
13333
13247
|
}
|
|
13334
13248
|
/**
|
|
13335
|
-
* Sets the fillMode of the component.
|
|
13336
|
-
*
|
|
13337
|
-
* The possible values are:
|
|
13338
|
-
* * `flat`
|
|
13339
|
-
* * `solid` (default)
|
|
13340
|
-
* * `outline`
|
|
13341
|
-
* * `none`
|
|
13342
|
-
*
|
|
13249
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
13343
13250
|
*/
|
|
13344
13251
|
set fillMode(fillMode) {
|
|
13345
|
-
const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE$1;
|
|
13346
13252
|
this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('picker', this.fillMode));
|
|
13347
|
-
if (fillMode
|
|
13348
|
-
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('picker',
|
|
13253
|
+
if (fillMode) {
|
|
13254
|
+
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('picker', fillMode));
|
|
13349
13255
|
}
|
|
13350
|
-
this._fillMode =
|
|
13256
|
+
this._fillMode = fillMode;
|
|
13351
13257
|
}
|
|
13352
13258
|
get fillMode() {
|
|
13353
13259
|
return this._fillMode;
|
|
@@ -13372,8 +13278,8 @@ class DropDownTreeComponent {
|
|
|
13372
13278
|
loadOnDemand = true;
|
|
13373
13279
|
/**
|
|
13374
13280
|
* Renders the built-in input element for filtering the DropDownTree.
|
|
13375
|
-
* If set to `true`, the component emits the `filterChange` event, which can be used to [filter the DropDownTree manually](
|
|
13376
|
-
* A built-in filtering implementation is available to use with the [`kendoDropDownTreeHierarchyBinding`](
|
|
13281
|
+
* If set to `true`, the component emits the `filterChange` event, which can be used to [filter the DropDownTree manually](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/filtering#manual-filtering).
|
|
13282
|
+
* A built-in filtering implementation is available to use with the [`kendoDropDownTreeHierarchyBinding`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/dropdowntreehierarchybindingdirective) and [`kendoDropDownTreeFlatBinding`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/dropdowntreeflatbindingdirective) directives.
|
|
13377
13283
|
*/
|
|
13378
13284
|
filterable = false;
|
|
13379
13285
|
/**
|
|
@@ -13570,9 +13476,9 @@ class DropDownTreeComponent {
|
|
|
13570
13476
|
_isFocused = false;
|
|
13571
13477
|
_dataItem;
|
|
13572
13478
|
_treeview;
|
|
13573
|
-
_size
|
|
13574
|
-
_rounded
|
|
13575
|
-
_fillMode
|
|
13479
|
+
_size;
|
|
13480
|
+
_rounded;
|
|
13481
|
+
_fillMode;
|
|
13576
13482
|
_searchableNodes = [];
|
|
13577
13483
|
_typedValue = '';
|
|
13578
13484
|
printableCharacters = new Subject();
|
|
@@ -13797,7 +13703,7 @@ class DropDownTreeComponent {
|
|
|
13797
13703
|
}
|
|
13798
13704
|
/**
|
|
13799
13705
|
* Toggles the visibility of the popup or actionSheet.
|
|
13800
|
-
* ([see example](
|
|
13706
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/open-state)).
|
|
13801
13707
|
* If you use the `toggle` method to open or close the popup or actionSheet, the `open` and `close` events will not be fired.
|
|
13802
13708
|
*
|
|
13803
13709
|
* @param open - The state of the popup.
|
|
@@ -13929,7 +13835,7 @@ class DropDownTreeComponent {
|
|
|
13929
13835
|
* @hidden
|
|
13930
13836
|
*/
|
|
13931
13837
|
get selectButtonClasses() {
|
|
13932
|
-
return `${this.size ? getSizeClass('button', this.size) : ''} ${this.fillMode ? 'k-
|
|
13838
|
+
return `${this.size ? getSizeClass('button', this.size) : ''} ${this.fillMode ? 'k-input-' + this.fillMode : ''}`;
|
|
13933
13839
|
}
|
|
13934
13840
|
/**
|
|
13935
13841
|
* @hidden
|
|
@@ -14237,13 +14143,13 @@ class DropDownTreeComponent {
|
|
|
14237
14143
|
this.renderer.setAttribute(this.wrapper.nativeElement, 'aria-describedby', newValue);
|
|
14238
14144
|
}
|
|
14239
14145
|
setComponentClasses() {
|
|
14240
|
-
if (this.size
|
|
14146
|
+
if (this.size) {
|
|
14241
14147
|
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('picker', this.size));
|
|
14242
14148
|
}
|
|
14243
|
-
if (this.rounded
|
|
14149
|
+
if (this.rounded) {
|
|
14244
14150
|
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
14245
14151
|
}
|
|
14246
|
-
if (this.fillMode
|
|
14152
|
+
if (this.fillMode) {
|
|
14247
14153
|
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('picker', this.fillMode));
|
|
14248
14154
|
}
|
|
14249
14155
|
}
|
|
@@ -14307,22 +14213,22 @@ class DropDownTreeComponent {
|
|
|
14307
14213
|
<ng-container kendoDropDownTreeLocalizedMessages
|
|
14308
14214
|
i18n-noDataText="kendo.dropdowntree.noDataText|The text displayed in the popup when there are no items"
|
|
14309
14215
|
noDataText="NO DATA FOUND"
|
|
14310
|
-
|
|
14216
|
+
|
|
14311
14217
|
i18n-clearTitle="kendo.dropdowntree.clearTitle|The title of the clear button"
|
|
14312
14218
|
clearTitle="clear"
|
|
14313
|
-
|
|
14219
|
+
|
|
14314
14220
|
i18n-selectButtonText="kendo.dropdowntree.selectButtonText|The text set as aria-label on the select button"
|
|
14315
14221
|
selectButtonText="Select"
|
|
14316
|
-
|
|
14222
|
+
|
|
14317
14223
|
i18n-filterInputLabel="kendo.dropdowntree.filterInputLabel|The text set as aria-label on the filter input"
|
|
14318
14224
|
filterInputLabel="Filter"
|
|
14319
|
-
|
|
14225
|
+
|
|
14320
14226
|
i18n-popupLabel="kendo.dropdowntree.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
14321
14227
|
popupLabel="Options list"
|
|
14322
|
-
|
|
14228
|
+
|
|
14323
14229
|
i18n-adaptiveCloseButtonTitle="kendo.dropdowntree.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
14324
14230
|
adaptiveCloseButtonTitle="Close"
|
|
14325
|
-
|
|
14231
|
+
|
|
14326
14232
|
i18n-filterInputPlaceholder="kendo.dropdowntree.filterInputPlaceholder|The text for the input's placeholder when filtering is enabled"
|
|
14327
14233
|
filterInputPlaceholder="Filter"
|
|
14328
14234
|
>
|
|
@@ -14385,7 +14291,7 @@ class DropDownTreeComponent {
|
|
|
14385
14291
|
<ng-container *ngTemplateOutlet="sharedPopupActionSheetTemplate"></ng-container>
|
|
14386
14292
|
</ng-template>
|
|
14387
14293
|
<ng-container #container></ng-container>
|
|
14388
|
-
|
|
14294
|
+
|
|
14389
14295
|
<kendo-adaptive-renderer
|
|
14390
14296
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
14391
14297
|
[title]="adaptiveTitle"
|
|
@@ -14397,7 +14303,7 @@ class DropDownTreeComponent {
|
|
|
14397
14303
|
[searchBarValue]="filter"
|
|
14398
14304
|
[filterable]="filterable">
|
|
14399
14305
|
</kendo-adaptive-renderer>
|
|
14400
|
-
|
|
14306
|
+
|
|
14401
14307
|
<ng-template #sharedPopupActionSheetTemplate>
|
|
14402
14308
|
@if (filterable && !isActionSheetExpanded) {
|
|
14403
14309
|
<span
|
|
@@ -14495,7 +14401,7 @@ class DropDownTreeComponent {
|
|
|
14495
14401
|
</div>
|
|
14496
14402
|
}
|
|
14497
14403
|
</ng-template>
|
|
14498
|
-
|
|
14404
|
+
|
|
14499
14405
|
@if (isOpen || isAdaptiveModeEnabled) {
|
|
14500
14406
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
14501
14407
|
}
|
|
@@ -14538,22 +14444,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
14538
14444
|
<ng-container kendoDropDownTreeLocalizedMessages
|
|
14539
14445
|
i18n-noDataText="kendo.dropdowntree.noDataText|The text displayed in the popup when there are no items"
|
|
14540
14446
|
noDataText="NO DATA FOUND"
|
|
14541
|
-
|
|
14447
|
+
|
|
14542
14448
|
i18n-clearTitle="kendo.dropdowntree.clearTitle|The title of the clear button"
|
|
14543
14449
|
clearTitle="clear"
|
|
14544
|
-
|
|
14450
|
+
|
|
14545
14451
|
i18n-selectButtonText="kendo.dropdowntree.selectButtonText|The text set as aria-label on the select button"
|
|
14546
14452
|
selectButtonText="Select"
|
|
14547
|
-
|
|
14453
|
+
|
|
14548
14454
|
i18n-filterInputLabel="kendo.dropdowntree.filterInputLabel|The text set as aria-label on the filter input"
|
|
14549
14455
|
filterInputLabel="Filter"
|
|
14550
|
-
|
|
14456
|
+
|
|
14551
14457
|
i18n-popupLabel="kendo.dropdowntree.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
14552
14458
|
popupLabel="Options list"
|
|
14553
|
-
|
|
14459
|
+
|
|
14554
14460
|
i18n-adaptiveCloseButtonTitle="kendo.dropdowntree.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
14555
14461
|
adaptiveCloseButtonTitle="Close"
|
|
14556
|
-
|
|
14462
|
+
|
|
14557
14463
|
i18n-filterInputPlaceholder="kendo.dropdowntree.filterInputPlaceholder|The text for the input's placeholder when filtering is enabled"
|
|
14558
14464
|
filterInputPlaceholder="Filter"
|
|
14559
14465
|
>
|
|
@@ -14616,7 +14522,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
14616
14522
|
<ng-container *ngTemplateOutlet="sharedPopupActionSheetTemplate"></ng-container>
|
|
14617
14523
|
</ng-template>
|
|
14618
14524
|
<ng-container #container></ng-container>
|
|
14619
|
-
|
|
14525
|
+
|
|
14620
14526
|
<kendo-adaptive-renderer
|
|
14621
14527
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
14622
14528
|
[title]="adaptiveTitle"
|
|
@@ -14628,7 +14534,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
14628
14534
|
[searchBarValue]="filter"
|
|
14629
14535
|
[filterable]="filterable">
|
|
14630
14536
|
</kendo-adaptive-renderer>
|
|
14631
|
-
|
|
14537
|
+
|
|
14632
14538
|
<ng-template #sharedPopupActionSheetTemplate>
|
|
14633
14539
|
@if (filterable && !isActionSheetExpanded) {
|
|
14634
14540
|
<span
|
|
@@ -14726,7 +14632,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
14726
14632
|
</div>
|
|
14727
14633
|
}
|
|
14728
14634
|
</ng-template>
|
|
14729
|
-
|
|
14635
|
+
|
|
14730
14636
|
@if (isOpen || isAdaptiveModeEnabled) {
|
|
14731
14637
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
14732
14638
|
}
|
|
@@ -15375,11 +15281,8 @@ const hasChildren = () => false;
|
|
|
15375
15281
|
const fetchChildren = () => of([]);
|
|
15376
15282
|
const itemDisabled = () => false;
|
|
15377
15283
|
const isNodeVisible = () => true;
|
|
15378
|
-
const DEFAULT_SIZE = 'medium';
|
|
15379
|
-
const DEFAULT_ROUNDED = 'medium';
|
|
15380
|
-
const DEFAULT_FILL_MODE = 'solid';
|
|
15381
15284
|
/**
|
|
15382
|
-
* Represents the Kendo UI for Angular [MultiSelectTree](
|
|
15285
|
+
* Represents the Kendo UI for Angular [MultiSelectTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree) component.
|
|
15383
15286
|
*
|
|
15384
15287
|
* The `MultiSelectTree` lets you select multiple items from hierarchical data in a tree structure.
|
|
15385
15288
|
* It provides built-in filtering, checkboxes, and adaptive rendering for mobile devices.
|
|
@@ -15627,49 +15530,40 @@ class MultiSelectTreeComponent {
|
|
|
15627
15530
|
return this.disabled ? -1 : this._tabindex;
|
|
15628
15531
|
}
|
|
15629
15532
|
/**
|
|
15630
|
-
* Sets the visual size of the component.
|
|
15631
|
-
*
|
|
15632
|
-
* @default 'medium'
|
|
15533
|
+
* Sets the visual size of the component. The default value is set by the Kendo theme.
|
|
15633
15534
|
*/
|
|
15634
15535
|
set size(size) {
|
|
15635
|
-
const newSize = size ? size : DEFAULT_SIZE;
|
|
15636
15536
|
this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
|
|
15637
|
-
if (size
|
|
15638
|
-
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('input',
|
|
15537
|
+
if (size) {
|
|
15538
|
+
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('input', size));
|
|
15639
15539
|
}
|
|
15640
|
-
this._size =
|
|
15540
|
+
this._size = size;
|
|
15641
15541
|
}
|
|
15642
15542
|
get size() {
|
|
15643
15543
|
return this._size;
|
|
15644
15544
|
}
|
|
15645
15545
|
/**
|
|
15646
|
-
* Sets the border radius style of the component.
|
|
15647
|
-
*
|
|
15648
|
-
* @default 'medium'
|
|
15546
|
+
* Sets the border radius style of the component. The default value is set by the Kendo theme.
|
|
15649
15547
|
*/
|
|
15650
15548
|
set rounded(rounded) {
|
|
15651
|
-
const newRounded = rounded ? rounded : DEFAULT_ROUNDED;
|
|
15652
15549
|
this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
15653
|
-
if (rounded
|
|
15654
|
-
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(
|
|
15550
|
+
if (rounded) {
|
|
15551
|
+
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(rounded));
|
|
15655
15552
|
}
|
|
15656
|
-
this._rounded =
|
|
15553
|
+
this._rounded = rounded;
|
|
15657
15554
|
}
|
|
15658
15555
|
get rounded() {
|
|
15659
15556
|
return this._rounded;
|
|
15660
15557
|
}
|
|
15661
15558
|
/**
|
|
15662
|
-
* Sets the fill style for the component background and borders.
|
|
15663
|
-
*
|
|
15664
|
-
* @default 'solid'
|
|
15559
|
+
* Sets the fill style for the component background and borders. The default value is set by the Kendo theme.
|
|
15665
15560
|
*/
|
|
15666
15561
|
set fillMode(fillMode) {
|
|
15667
|
-
const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE;
|
|
15668
15562
|
this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
|
|
15669
|
-
if (fillMode
|
|
15670
|
-
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('input',
|
|
15563
|
+
if (fillMode) {
|
|
15564
|
+
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('input', fillMode));
|
|
15671
15565
|
}
|
|
15672
|
-
this._fillMode =
|
|
15566
|
+
this._fillMode = fillMode;
|
|
15673
15567
|
}
|
|
15674
15568
|
get fillMode() {
|
|
15675
15569
|
return this._fillMode;
|
|
@@ -15894,7 +15788,7 @@ class MultiSelectTreeComponent {
|
|
|
15894
15788
|
*/
|
|
15895
15789
|
onBlur = new EventEmitter();
|
|
15896
15790
|
/**
|
|
15897
|
-
* Fires when the popup is about to open. ([See example](
|
|
15791
|
+
* Fires when the popup is about to open. ([See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/open-state)).
|
|
15898
15792
|
* This event is preventable. When cancelled, the popup remains closed.
|
|
15899
15793
|
*/
|
|
15900
15794
|
open = new EventEmitter();
|
|
@@ -16132,9 +16026,9 @@ class MultiSelectTreeComponent {
|
|
|
16132
16026
|
_isFocused = false;
|
|
16133
16027
|
_treeview;
|
|
16134
16028
|
_dataItems;
|
|
16135
|
-
_size
|
|
16136
|
-
_rounded
|
|
16137
|
-
_fillMode
|
|
16029
|
+
_size;
|
|
16030
|
+
_rounded;
|
|
16031
|
+
_fillMode;
|
|
16138
16032
|
_searchableNodes = [];
|
|
16139
16033
|
_typedValue = '';
|
|
16140
16034
|
printableCharacters = new Subject();
|
|
@@ -16911,13 +16805,13 @@ class MultiSelectTreeComponent {
|
|
|
16911
16805
|
}, []));
|
|
16912
16806
|
}
|
|
16913
16807
|
setComponentClasses() {
|
|
16914
|
-
if (this.size
|
|
16808
|
+
if (this.size) {
|
|
16915
16809
|
this.renderer.addClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
|
|
16916
16810
|
}
|
|
16917
|
-
if (this.rounded
|
|
16811
|
+
if (this.rounded) {
|
|
16918
16812
|
this.renderer.addClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
16919
16813
|
}
|
|
16920
|
-
if (this.fillMode
|
|
16814
|
+
if (this.fillMode) {
|
|
16921
16815
|
this.renderer.addClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
|
|
16922
16816
|
}
|
|
16923
16817
|
}
|
|
@@ -17009,22 +16903,22 @@ class MultiSelectTreeComponent {
|
|
|
17009
16903
|
<ng-container kendoMultiSelectTreeLocalizedMessages
|
|
17010
16904
|
i18n-noDataText="kendo.multiselecttree.noDataText|The text displayed in the popup when there are no items"
|
|
17011
16905
|
noDataText="NO DATA FOUND"
|
|
17012
|
-
|
|
16906
|
+
|
|
17013
16907
|
i18n-clearTitle="kendo.multiselecttree.clearTitle|The title of the clear button"
|
|
17014
16908
|
clearTitle="clear"
|
|
17015
|
-
|
|
16909
|
+
|
|
17016
16910
|
i18n-checkAllText="kendo.multiselecttree.checkAllText|The text displayed for the check-all checkbox"
|
|
17017
16911
|
checkAllText="Check all"
|
|
17018
|
-
|
|
16912
|
+
|
|
17019
16913
|
i18n-filterInputLabel="kendo.multiselecttree.filterInputLabel|The text set as aria-label on the filter input"
|
|
17020
16914
|
filterInputLabel="Filter"
|
|
17021
|
-
|
|
16915
|
+
|
|
17022
16916
|
i18n-popupLabel="kendo.multiselecttree.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
17023
16917
|
popupLabel="Options list"
|
|
17024
|
-
|
|
16918
|
+
|
|
17025
16919
|
i18n-adaptiveCloseButtonTitle="kendo.multiselecttree.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
17026
16920
|
adaptiveCloseButtonTitle="Close"
|
|
17027
|
-
|
|
16921
|
+
|
|
17028
16922
|
i18n-filterInputPlaceholder="kendo.multiselecttree.filterInputPlaceholder|The text for the input's placeholder when filtering is enabled"
|
|
17029
16923
|
filterInputPlaceholder="Filter"
|
|
17030
16924
|
>
|
|
@@ -17083,7 +16977,7 @@ class MultiSelectTreeComponent {
|
|
|
17083
16977
|
<ng-container *ngTemplateOutlet="sharedPopupActionSheetTemplate"></ng-container>
|
|
17084
16978
|
</ng-template>
|
|
17085
16979
|
<ng-container #container></ng-container>
|
|
17086
|
-
|
|
16980
|
+
|
|
17087
16981
|
<kendo-adaptive-renderer
|
|
17088
16982
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
17089
16983
|
[title]="adaptiveTitle"
|
|
@@ -17095,7 +16989,7 @@ class MultiSelectTreeComponent {
|
|
|
17095
16989
|
[placeholder]="placeholder"
|
|
17096
16990
|
[filterable]="filterable">
|
|
17097
16991
|
</kendo-adaptive-renderer>
|
|
17098
|
-
|
|
16992
|
+
|
|
17099
16993
|
<ng-template #sharedPopupActionSheetTemplate>
|
|
17100
16994
|
@if (filterable && !isActionSheetExpanded) {
|
|
17101
16995
|
<div
|
|
@@ -17232,7 +17126,7 @@ class MultiSelectTreeComponent {
|
|
|
17232
17126
|
</div>
|
|
17233
17127
|
}
|
|
17234
17128
|
</ng-template>
|
|
17235
|
-
|
|
17129
|
+
|
|
17236
17130
|
@if (isOpen || isAdaptiveModeEnabled) {
|
|
17237
17131
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
17238
17132
|
}
|
|
@@ -17276,22 +17170,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17276
17170
|
<ng-container kendoMultiSelectTreeLocalizedMessages
|
|
17277
17171
|
i18n-noDataText="kendo.multiselecttree.noDataText|The text displayed in the popup when there are no items"
|
|
17278
17172
|
noDataText="NO DATA FOUND"
|
|
17279
|
-
|
|
17173
|
+
|
|
17280
17174
|
i18n-clearTitle="kendo.multiselecttree.clearTitle|The title of the clear button"
|
|
17281
17175
|
clearTitle="clear"
|
|
17282
|
-
|
|
17176
|
+
|
|
17283
17177
|
i18n-checkAllText="kendo.multiselecttree.checkAllText|The text displayed for the check-all checkbox"
|
|
17284
17178
|
checkAllText="Check all"
|
|
17285
|
-
|
|
17179
|
+
|
|
17286
17180
|
i18n-filterInputLabel="kendo.multiselecttree.filterInputLabel|The text set as aria-label on the filter input"
|
|
17287
17181
|
filterInputLabel="Filter"
|
|
17288
|
-
|
|
17182
|
+
|
|
17289
17183
|
i18n-popupLabel="kendo.multiselecttree.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
17290
17184
|
popupLabel="Options list"
|
|
17291
|
-
|
|
17185
|
+
|
|
17292
17186
|
i18n-adaptiveCloseButtonTitle="kendo.multiselecttree.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
17293
17187
|
adaptiveCloseButtonTitle="Close"
|
|
17294
|
-
|
|
17188
|
+
|
|
17295
17189
|
i18n-filterInputPlaceholder="kendo.multiselecttree.filterInputPlaceholder|The text for the input's placeholder when filtering is enabled"
|
|
17296
17190
|
filterInputPlaceholder="Filter"
|
|
17297
17191
|
>
|
|
@@ -17350,7 +17244,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17350
17244
|
<ng-container *ngTemplateOutlet="sharedPopupActionSheetTemplate"></ng-container>
|
|
17351
17245
|
</ng-template>
|
|
17352
17246
|
<ng-container #container></ng-container>
|
|
17353
|
-
|
|
17247
|
+
|
|
17354
17248
|
<kendo-adaptive-renderer
|
|
17355
17249
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
17356
17250
|
[title]="adaptiveTitle"
|
|
@@ -17362,7 +17256,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17362
17256
|
[placeholder]="placeholder"
|
|
17363
17257
|
[filterable]="filterable">
|
|
17364
17258
|
</kendo-adaptive-renderer>
|
|
17365
|
-
|
|
17259
|
+
|
|
17366
17260
|
<ng-template #sharedPopupActionSheetTemplate>
|
|
17367
17261
|
@if (filterable && !isActionSheetExpanded) {
|
|
17368
17262
|
<div
|
|
@@ -17499,7 +17393,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17499
17393
|
</div>
|
|
17500
17394
|
}
|
|
17501
17395
|
</ng-template>
|
|
17502
|
-
|
|
17396
|
+
|
|
17503
17397
|
@if (isOpen || isAdaptiveModeEnabled) {
|
|
17504
17398
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
17505
17399
|
}
|
|
@@ -17963,7 +17857,7 @@ const DEFAULT_FILTER_SETTINGS = {
|
|
|
17963
17857
|
/**
|
|
17964
17858
|
* Implements an event handler for the `filterChange` event of a DropDowns component
|
|
17965
17859
|
* which performs simple data filtering.
|
|
17966
|
-
* Currently, the built-in filtering does not work with [grouped data](
|
|
17860
|
+
* Currently, the built-in filtering does not work with [grouped data](https://www.telerik.com/kendo-angular-ui/components/data-query/api/groupby).
|
|
17967
17861
|
*
|
|
17968
17862
|
* @example
|
|
17969
17863
|
* ```ts
|
|
@@ -17998,7 +17892,7 @@ class FilterDirective {
|
|
|
17998
17892
|
}
|
|
17999
17893
|
/**
|
|
18000
17894
|
* The configuration object which sets the behavior of the `kendoDropDownFilter` directive.
|
|
18001
|
-
* If no [DropDownFilterSettings](
|
|
17895
|
+
* If no [DropDownFilterSettings](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/dropdownfiltersettings) object is provided to this input, the directive will use the default interface settings.
|
|
18002
17896
|
*/
|
|
18003
17897
|
rawSettings;
|
|
18004
17898
|
/**
|
|
@@ -18086,7 +17980,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
18086
17980
|
|
|
18087
17981
|
/**
|
|
18088
17982
|
* Custom component messages override default component messages
|
|
18089
|
-
* ([see example](
|
|
17983
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/globalization#messages)).
|
|
18090
17984
|
*
|
|
18091
17985
|
* @example
|
|
18092
17986
|
* ```html
|
|
@@ -18175,7 +18069,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
18175
18069
|
/**
|
|
18176
18070
|
* Configures the MultiSelect to show one summary tag for all selected items.
|
|
18177
18071
|
* Set a number to display the summary tag after the respective number of items are selected.
|
|
18178
|
-
* [See example](
|
|
18072
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/summary-tag-mode).
|
|
18179
18073
|
*
|
|
18180
18074
|
* @example
|
|
18181
18075
|
* ```ts-no-run
|
|
@@ -18235,7 +18129,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
18235
18129
|
/**
|
|
18236
18130
|
* Configures the MultiSelectTree to show one single summary tag for all selected data items.
|
|
18237
18131
|
* When a number is set, the summary tag is shown after the corresponding number of data items are selected (see examples).
|
|
18238
|
-
* See [more information and examples](
|
|
18132
|
+
* See [more information and examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/multiselecttreesummarytagdirective).
|
|
18239
18133
|
*
|
|
18240
18134
|
* @example
|
|
18241
18135
|
* ```html
|
|
@@ -18739,5 +18633,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
18739
18633
|
* Generated bundle index. Do not edit.
|
|
18740
18634
|
*/
|
|
18741
18635
|
|
|
18742
|
-
export { AdaptiveRendererComponent, AutoCompleteComponent, AutoCompleteModule, CheckAllDirective, CheckDirective, ColumnCellTemplateDirective, ColumnHeaderTemplateDirective, ComboBoxColumnComponent, ComboBoxComponent, ComboBoxModule, CustomItemTemplateDirective, CustomMessagesComponent, DropDownListComponent, DropDownListModule, DropDownTreeComponent, DropDownTreeFlatBindingDirective, DropDownTreeHierarchyBindingDirective, DropDownTreesExpandDirective, DropDownTreesModule, DropDownsModule, FilterDirective, FilterInputDirective, FilterableComponent, FixedGroupTemplateDirective, FooterTemplateDirective, GroupTagTemplateDirective, GroupTemplateDirective, HeaderTemplateDirective, ItemTemplateDirective, KENDO_AUTOCOMPLETE, KENDO_COMBOBOX, KENDO_DROPDOWNLIST, KENDO_DROPDOWNS, KENDO_DROPDOWNTREE, KENDO_MULTICOLUMNCOMBOBOX, KENDO_MULTISELECT, KENDO_MULTISELECTTREE, ListComponent, ListItemDirective, LocalizedMessagesDirective, MultiColumnComboBoxComponent, MultiSelectComponent, MultiSelectModule, MultiSelectTreeComponent, MultiSelectTreeFlatBindingDirective, MultiSelectTreeHierarchyBindingDirective, MultiSelectTreeSummaryTagDirective, NoDataTemplateDirective, NodeTemplateDirective, PreventableEvent, RemoveTagEvent, SearchBarComponent, SelectableDirective, SummaryTagDirective, TagListComponent, TagTemplateDirective, ValueTemplateDirective };
|
|
18636
|
+
export { AdaptiveRendererComponent, AutoCompleteComponent, AutoCompleteModule, CheckAllDirective, CheckDirective, ColumnCellTemplateDirective, ColumnHeaderTemplateDirective, ComboBoxColumnComponent, ComboBoxComponent, ComboBoxModule, CustomItemTemplateDirective, CustomMessagesComponent, DataService, DisabledItemsService, DropDownListComponent, DropDownListModule, DropDownTreeComponent, DropDownTreeFlatBindingDirective, DropDownTreeHierarchyBindingDirective, DropDownTreesExpandDirective, DropDownTreesModule, DropDownsModule, FilterDirective, FilterInputDirective, FilterableComponent, FixedGroupTemplateDirective, FooterTemplateDirective, GroupTagTemplateDirective, GroupTemplateDirective, HeaderTemplateDirective, ItemTemplateDirective, KENDO_AUTOCOMPLETE, KENDO_COMBOBOX, KENDO_DROPDOWNLIST, KENDO_DROPDOWNS, KENDO_DROPDOWNTREE, KENDO_MULTICOLUMNCOMBOBOX, KENDO_MULTISELECT, KENDO_MULTISELECTTREE, ListComponent, ListItemDirective, LocalizedMessagesDirective, MultiColumnComboBoxComponent, MultiSelectComponent, MultiSelectModule, MultiSelectTreeComponent, MultiSelectTreeFlatBindingDirective, MultiSelectTreeHierarchyBindingDirective, MultiSelectTreeSummaryTagDirective, NavigationService, NoDataTemplateDirective, NodeTemplateDirective, PreventableEvent, RemoveTagEvent, SearchBarComponent, SelectableDirective, SelectionService, SummaryTagDirective, TagListComponent, TagTemplateDirective, ValueTemplateDirective };
|
|
18743
18637
|
|