@progress/kendo-angular-dropdowns 25.1.0-develop.8 → 25.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -15,7 +15,7 @@ import { CheckBoxState, TextBoxComponent } from '@progress/kendo-angular-inputs'
15
15
  import { SVGIcon as SVGIcon$1 } from '@progress/kendo-svg-icons';
16
16
  import { ActionSheetComponent } from '@progress/kendo-angular-navigation';
17
17
  import { SVGIcon } from '@progress/kendo-angular-icons';
18
- import { Observable } from 'rxjs';
18
+ import { Observable, Subscription } from 'rxjs';
19
19
  import { DataBoundComponent, ExpandableComponent, TreeViewComponent, TreeItem, NodeClickEvent, FlatDataBindingDirective, HierarchyBindingDirective, ExpandDirective, FilterExpandSettings } from '@progress/kendo-angular-treeview';
20
20
 
21
21
  /**
@@ -1108,18 +1108,21 @@ declare class AutoCompleteComponent implements ControlValueAccessor, OnDestroy,
1108
1108
  *
1109
1109
  * @default true
1110
1110
  */
1111
- highlightFirst: boolean;
1111
+ set highlightFirst(value: boolean);
1112
+ get highlightFirst(): boolean;
1112
1113
  /**
1113
1114
  * Shows or hides the current group sticky header when using grouped data.
1114
1115
  * By default, the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
1115
1116
  *
1116
1117
  * @default true
1117
1118
  */
1118
- showStickyHeader: boolean;
1119
+ set showStickyHeader(value: boolean);
1120
+ get showStickyHeader(): boolean;
1119
1121
  /**
1120
1122
  * @hidden
1121
1123
  */
1122
- focusableId: string;
1124
+ set focusableId(value: string);
1125
+ get focusableId(): string;
1123
1126
  /**
1124
1127
  * Sets the data of the AutoComplete.
1125
1128
  *
@@ -1138,31 +1141,36 @@ declare class AutoCompleteComponent implements ControlValueAccessor, OnDestroy,
1138
1141
  *
1139
1142
  * > The `valueField` property can be set to point to a nested property value - e.g. `category.name`.
1140
1143
  */
1141
- valueField: string;
1144
+ set valueField(value: string);
1145
+ get valueField(): string;
1142
1146
  /**
1143
1147
  * Sets the placeholder of the AutoComplete.
1144
1148
  *
1145
1149
  * @default ""
1146
1150
  */
1147
- placeholder: string;
1151
+ set placeholder(value: string);
1152
+ get placeholder(): string;
1148
1153
  /**
1149
1154
  * Enables or disables the adaptive mode. By default, the adaptive rendering is disabled.
1150
1155
  *
1151
1156
  * @default 'none'
1152
1157
  */
1153
- adaptiveMode: AdaptiveMode;
1158
+ set adaptiveMode(value: AdaptiveMode);
1159
+ get adaptiveMode(): AdaptiveMode;
1154
1160
  /**
1155
1161
  * Sets the title of the ActionSheet that renders instead of the Popup when using small screen devices.
1156
1162
  * By default, the ActionSheet title uses the text provided for the label of the AutoComplete.
1157
1163
  *
1158
1164
  * @default ''
1159
1165
  */
1160
- adaptiveTitle: string;
1166
+ set adaptiveTitle(value: string);
1167
+ get adaptiveTitle(): string;
1161
1168
  /**
1162
1169
  * Sets the subtitle of the ActionSheet that renders instead of the Popup when using small screen devices.
1163
1170
  * By default, the ActionSheet does not render a subtitle.
1164
1171
  */
1165
- adaptiveSubtitle: string;
1172
+ set adaptiveSubtitle(value: string);
1173
+ get adaptiveSubtitle(): string;
1166
1174
  /**
1167
1175
  * @hidden
1168
1176
  */
@@ -1190,13 +1198,13 @@ declare class AutoCompleteComponent implements ControlValueAccessor, OnDestroy,
1190
1198
  */
1191
1199
  set listHeight(_listHeight: number);
1192
1200
  get listHeight(): number;
1193
- private _listHeight;
1194
1201
  /**
1195
1202
  * Sets and gets the loading state of the AutoComplete.
1196
1203
  *
1197
1204
  * @default false
1198
1205
  */
1199
- loading: boolean;
1206
+ set loading(value: boolean);
1207
+ get loading(): boolean;
1200
1208
  /**
1201
1209
  * @hidden
1202
1210
  *
@@ -1205,19 +1213,22 @@ declare class AutoCompleteComponent implements ControlValueAccessor, OnDestroy,
1205
1213
  *
1206
1214
  * @default true
1207
1215
  */
1208
- clearButton: boolean;
1216
+ set clearButton(value: boolean);
1217
+ get clearButton(): boolean;
1209
1218
  /**
1210
1219
  * Enables the auto-completion of the text based on the first data item.
1211
1220
  *
1212
1221
  * @default false
1213
1222
  */
1214
- suggest: boolean;
1223
+ set suggest(value: boolean);
1224
+ get suggest(): boolean;
1215
1225
  /**
1216
1226
  * 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).
1217
1227
  *
1218
1228
  * @default false
1219
1229
  */
1220
- disabled: boolean;
1230
+ set disabled(value: boolean);
1231
+ get disabled(): boolean;
1221
1232
  /**
1222
1233
  * Defines a Boolean function that is executed for each data item in the component
1223
1234
  * ([see examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/disabled-items)).
@@ -1229,13 +1240,15 @@ declare class AutoCompleteComponent implements ControlValueAccessor, OnDestroy,
1229
1240
  *
1230
1241
  * @default false
1231
1242
  */
1232
- readonly: boolean;
1243
+ set readonly(value: boolean);
1244
+ get readonly(): boolean;
1233
1245
  /**
1234
1246
  * Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
1235
1247
  *
1236
1248
  * @default 0
1237
1249
  */
1238
- tabindex: number;
1250
+ set tabindex(value: number);
1251
+ get tabindex(): number;
1239
1252
  /**
1240
1253
  * @hidden
1241
1254
  */
@@ -1247,7 +1260,8 @@ declare class AutoCompleteComponent implements ControlValueAccessor, OnDestroy,
1247
1260
  *
1248
1261
  * @default false
1249
1262
  */
1250
- filterable: boolean;
1263
+ set filterable(value: boolean);
1264
+ get filterable(): boolean;
1251
1265
  /**
1252
1266
  * Enables the [virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/virtualization) functionality.
1253
1267
  *
@@ -1276,7 +1290,10 @@ declare class AutoCompleteComponent implements ControlValueAccessor, OnDestroy,
1276
1290
  * @remarks
1277
1291
  * This property is related to accessibility.
1278
1292
  */
1279
- inputAttributes: {
1293
+ set inputAttributes(value: {
1294
+ [key: string]: string;
1295
+ });
1296
+ get inputAttributes(): {
1280
1297
  [key: string]: string;
1281
1298
  };
1282
1299
  /**
@@ -1351,7 +1368,8 @@ declare class AutoCompleteComponent implements ControlValueAccessor, OnDestroy,
1351
1368
  get isDisabled(): boolean;
1352
1369
  get isLoading(): boolean;
1353
1370
  get dir(): any;
1354
- text: string;
1371
+ get text(): string;
1372
+ set text(value: string);
1355
1373
  listBoxId: string;
1356
1374
  optionPrefix: string;
1357
1375
  popupRef: PopupRef;
@@ -1466,6 +1484,7 @@ declare class AutoCompleteComponent implements ControlValueAccessor, OnDestroy,
1466
1484
  protected change(value: string): void;
1467
1485
  private popupMouseDownHandler;
1468
1486
  private _popupSettings;
1487
+ private _listHeight;
1469
1488
  private _virtualSettings;
1470
1489
  private _open;
1471
1490
  private _value;
@@ -1480,6 +1499,23 @@ declare class AutoCompleteComponent implements ControlValueAccessor, OnDestroy,
1480
1499
  private _size;
1481
1500
  private _rounded;
1482
1501
  private _fillMode;
1502
+ private _highlightFirst;
1503
+ private _text;
1504
+ private _showStickyHeader;
1505
+ private _focusableId;
1506
+ private _valueField;
1507
+ private _placeholder;
1508
+ private _adaptiveMode;
1509
+ private _adaptiveTitle;
1510
+ private _adaptiveSubtitle;
1511
+ private _loading;
1512
+ private _clearButton;
1513
+ private _suggest;
1514
+ private _disabled;
1515
+ private _readonly;
1516
+ private _tabindex;
1517
+ private _filterable;
1518
+ private _inputAttributes;
1483
1519
  private subscribeEvents;
1484
1520
  private findIndex;
1485
1521
  private subscribeTouchEvents;
@@ -1524,18 +1560,23 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
1524
1560
  /**
1525
1561
  * @hidden
1526
1562
  */
1527
- icon: string;
1563
+ set icon(value: string);
1564
+ get icon(): string;
1528
1565
  /**
1529
1566
  * @hidden
1530
1567
  */
1531
- svgIcon: SVGIcon$1;
1568
+ set svgIcon(value: SVGIcon$1);
1569
+ get svgIcon(): SVGIcon$1;
1532
1570
  /**
1533
1571
  * Sets the HTML attributes of the inner focusable input element. Attributes essential for certain component functionalities cannot be changed.
1534
1572
  *
1535
1573
  * @remarks
1536
1574
  * This property is related to accessibility.
1537
1575
  */
1538
- inputAttributes: {
1576
+ set inputAttributes(value: {
1577
+ [key: string]: string;
1578
+ });
1579
+ get inputAttributes(): {
1539
1580
  [key: string]: string;
1540
1581
  };
1541
1582
  /**
@@ -1585,11 +1626,13 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
1585
1626
  * By default the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
1586
1627
  * @default true
1587
1628
  */
1588
- showStickyHeader: boolean;
1629
+ set showStickyHeader(value: boolean);
1630
+ get showStickyHeader(): boolean;
1589
1631
  /**
1590
1632
  * @hidden
1591
1633
  */
1592
- focusableId: string;
1634
+ set focusableId(value: string);
1635
+ get focusableId(): string;
1593
1636
  /**
1594
1637
  * Specifies whether the ComboBox allows user-defined values that are not present in the dataset
1595
1638
  * ([more information and examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/custom-values)).
@@ -1598,7 +1641,8 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
1598
1641
  * The feature is not available when using adaptive mode.
1599
1642
  * @default false
1600
1643
  */
1601
- allowCustom: boolean;
1644
+ set allowCustom(value: boolean);
1645
+ get allowCustom(): boolean;
1602
1646
  /**
1603
1647
  * Sets the data of the ComboBox.
1604
1648
  * The data must be provided in an array-like list.
@@ -1617,14 +1661,16 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
1617
1661
  *
1618
1662
  * The `textField` property can be set to a nested property value, for example, `category.name`.
1619
1663
  */
1620
- textField: string;
1664
+ set textField(value: string);
1665
+ get textField(): string;
1621
1666
  /**
1622
1667
  * Sets the data item field that represents the item value.
1623
1668
  * If the data contains only primitive values, do not define it.
1624
1669
  *
1625
1670
  * > The `valueField` property can be set to point to a nested property value - e.g. `category.id`.
1626
1671
  */
1627
- valueField: string;
1672
+ set valueField(value: string);
1673
+ get valueField(): string;
1628
1674
  /**
1629
1675
  * Specifies the type of the selected value. If set to `true`, the selected value must be a primitive type.
1630
1676
  * ([more information and example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/value-binding#primitive-values-from-object-fields))
@@ -1674,27 +1720,32 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
1674
1720
  * }
1675
1721
  * ```
1676
1722
  */
1677
- valueNormalizer: (text: Observable<string>) => Observable<any>;
1723
+ set valueNormalizer(fn: (text: Observable<string>) => Observable<any>);
1724
+ get valueNormalizer(): (text: Observable<string>) => Observable<any>;
1678
1725
  /**
1679
1726
  * The hint that is displayed when the component is empty.
1680
1727
  * @default ''
1681
1728
  */
1682
- placeholder: string;
1729
+ set placeholder(value: string);
1730
+ get placeholder(): string;
1683
1731
  /**
1684
1732
  * Enables or disables the adaptive mode. By default, adaptive rendering is disabled.
1685
1733
  * @default 'none'
1686
1734
  */
1687
- adaptiveMode: AdaptiveMode;
1735
+ set adaptiveMode(value: AdaptiveMode);
1736
+ get adaptiveMode(): AdaptiveMode;
1688
1737
  /**
1689
1738
  * Sets the title of the ActionSheet that is rendered instead of the Popup when using small screen devices.
1690
1739
  * By default, the ActionSheet title uses the text provided for the label of the ComboBox.
1691
1740
  * @default ''
1692
1741
  */
1693
- adaptiveTitle: string;
1742
+ set adaptiveTitle(value: string);
1743
+ get adaptiveTitle(): string;
1694
1744
  /**
1695
1745
  * Sets the subtitle of the ActionSheet that is rendered instead of the Popup when using small screen devices. By default, the ActionSheet does not render a subtitle.
1696
1746
  */
1697
- adaptiveSubtitle: string;
1747
+ set adaptiveSubtitle(value: string);
1748
+ get adaptiveSubtitle(): string;
1698
1749
  /**
1699
1750
  * @hidden
1700
1751
  */
@@ -1714,26 +1765,29 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
1714
1765
  */
1715
1766
  set listHeight(_listHeight: number);
1716
1767
  get listHeight(): number;
1717
- private _listHeight;
1718
1768
  /**
1719
1769
  * Sets and gets the loading state of the ComboBox.
1720
1770
  */
1721
- loading: boolean;
1771
+ set loading(value: boolean);
1772
+ get loading(): boolean;
1722
1773
  /**
1723
1774
  * Enables the auto-completion of the text based on the first data item.
1724
1775
  * @default false
1725
1776
  */
1726
- suggest: boolean;
1777
+ set suggest(value: boolean);
1778
+ get suggest(): boolean;
1727
1779
  /**
1728
1780
  * If set to `true`, renders a button on hovering over the component.
1729
1781
  * Clicking this button resets the value of the component to `undefined` and triggers the `change` event.
1730
1782
  * @default true
1731
1783
  */
1732
- clearButton: boolean;
1784
+ set clearButton(value: boolean);
1785
+ get clearButton(): boolean;
1733
1786
  /**
1734
1787
  * 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).
1735
1788
  */
1736
- disabled: boolean;
1789
+ set disabled(value: boolean);
1790
+ get disabled(): boolean;
1737
1791
  /**
1738
1792
  * 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.
1739
1793
  */
@@ -1742,13 +1796,15 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
1742
1796
  * Sets the read-only state of the component.
1743
1797
  * @default false
1744
1798
  */
1745
- readonly: boolean;
1799
+ set readonly(value: boolean);
1800
+ get readonly(): boolean;
1746
1801
  /**
1747
1802
  * Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
1748
1803
  *
1749
1804
  * @default 0
1750
1805
  */
1751
- tabindex: number;
1806
+ set tabindex(value: number);
1807
+ get tabindex(): number;
1752
1808
  /**
1753
1809
  * @hidden
1754
1810
  */
@@ -1758,7 +1814,8 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
1758
1814
  * Enables the [filtering](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/filtering) functionality.
1759
1815
  * If set to `true`, the component emits the `filterChange` event.
1760
1816
  */
1761
- filterable: boolean;
1817
+ set filterable(value: boolean);
1818
+ get filterable(): boolean;
1762
1819
  /**
1763
1820
  * Enables the [virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/virtualization) functionality.
1764
1821
  */
@@ -1892,6 +1949,7 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
1892
1949
  * Used for the default virtualization settings config.
1893
1950
  */
1894
1951
  protected defaultVirtualPageSize: number;
1952
+ protected subs: Subscription;
1895
1953
  private valueSubscription;
1896
1954
  private _filtering;
1897
1955
  private _text;
@@ -1909,12 +1967,32 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
1909
1967
  private valueSubject;
1910
1968
  private clearValueSubject;
1911
1969
  private direction;
1912
- private subs;
1913
1970
  private touchstartDisposeHandler;
1914
1971
  private selectClickDisposeHandler;
1915
1972
  private _size;
1916
1973
  private _rounded;
1917
1974
  private _fillMode;
1975
+ private _icon;
1976
+ private _svgIcon;
1977
+ private _inputAttributes;
1978
+ private _showStickyHeader;
1979
+ private _focusableId;
1980
+ private _allowCustom;
1981
+ private _textField;
1982
+ private _valueField;
1983
+ private _valueNormalizer;
1984
+ private _placeholder;
1985
+ private _adaptiveMode;
1986
+ private _adaptiveTitle;
1987
+ private _adaptiveSubtitle;
1988
+ private _loading;
1989
+ private _suggest;
1990
+ private _clearButton;
1991
+ private _disabled;
1992
+ private _readonly;
1993
+ private _tabindex;
1994
+ private _filterable;
1995
+ private _listHeight;
1918
1996
  constructor(wrapper: ElementRef<HTMLElement>, localization: LocalizationService, popupService: PopupService, selectionService: SelectionService, navigationService: NavigationService, disabledItemsService: DisabledItemsService, dataService: DataService, zone: NgZone, cdr: ChangeDetectorRef, renderer: Renderer2, injector: Injector, hostElement: ElementRef, adaptiveService: AdaptiveService);
1919
1997
  ngOnInit(): void;
1920
1998
  ngAfterViewInit(): void;
@@ -2172,7 +2250,8 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2172
2250
  /**
2173
2251
  * @hidden
2174
2252
  */
2175
- customIconClass: string;
2253
+ set customIconClass(v: string);
2254
+ get customIconClass(): string;
2176
2255
  /**
2177
2256
  * @hidden
2178
2257
  */
@@ -2206,19 +2285,23 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2206
2285
  * Shows or hides the current group sticky header when using grouped data.
2207
2286
  * The sticky header displays by default. [see example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)
2208
2287
  */
2209
- showStickyHeader: boolean;
2288
+ set showStickyHeader(v: boolean);
2289
+ get showStickyHeader(): boolean;
2210
2290
  /**
2211
2291
  * @hidden
2212
2292
  */
2213
- icon: string;
2293
+ set icon(v: string);
2294
+ get icon(): string;
2214
2295
  /**
2215
2296
  * @hidden
2216
2297
  */
2217
- svgIcon: SVGIcon$1;
2298
+ set svgIcon(v: SVGIcon$1);
2299
+ get svgIcon(): SVGIcon$1;
2218
2300
  /**
2219
2301
  * Sets and gets the loading state of the `DropDownListComponent`.
2220
2302
  */
2221
- loading: boolean;
2303
+ set loading(v: boolean);
2304
+ get loading(): boolean;
2222
2305
  /**
2223
2306
  * Sets the data of the `DropDownListComponent`.
2224
2307
  *
@@ -2241,28 +2324,33 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2241
2324
  *
2242
2325
  * The `textField` property can point to a nested property value, for example, `category.name`.
2243
2326
  */
2244
- textField: string;
2327
+ set textField(v: string);
2328
+ get textField(): string;
2245
2329
  /**
2246
2330
  * Sets the data item field that represents the item value.
2247
2331
  * If the data contains only primitive values, do not define this property.
2248
2332
  *
2249
2333
  * The `valueField` property can point to a nested property value, for example, `category.id`.
2250
2334
  */
2251
- valueField: string;
2335
+ set valueField(v: string);
2336
+ get valueField(): string;
2252
2337
  /**
2253
2338
  * Enables or disables the adaptive mode. The adaptive rendering is disabled by default.
2254
2339
  */
2255
- adaptiveMode: AdaptiveMode;
2340
+ set adaptiveMode(v: AdaptiveMode);
2341
+ get adaptiveMode(): AdaptiveMode;
2256
2342
  /**
2257
2343
  * Sets the title of the ActionSheet rendered instead of the Popup on small screens.
2258
2344
  * By default, the ActionSheet title uses the label text of the `DropDownListComponent`.
2259
2345
  */
2260
- adaptiveTitle: string;
2346
+ set adaptiveTitle(v: string);
2347
+ get adaptiveTitle(): string;
2261
2348
  /**
2262
2349
  * Sets the subtitle of the ActionSheet rendered instead of the Popup on small screens.
2263
2350
  * By default, the ActionSheet does not render a subtitle.
2264
2351
  */
2265
- adaptiveSubtitle: string;
2352
+ set adaptiveSubtitle(v: string);
2353
+ get adaptiveSubtitle(): string;
2266
2354
  /**
2267
2355
  * @hidden
2268
2356
  */
@@ -2303,15 +2391,16 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2303
2391
  */
2304
2392
  set listHeight(_listHeight: number);
2305
2393
  get listHeight(): number;
2306
- private _listHeight;
2307
2394
  /**
2308
2395
  * Sets the text of the default empty item. The value type must match the data type.
2309
2396
  */
2310
- defaultItem: any;
2397
+ set defaultItem(v: any);
2398
+ get defaultItem(): any;
2311
2399
  /**
2312
2400
  * 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).
2313
2401
  */
2314
- disabled: boolean;
2402
+ set disabled(v: boolean);
2403
+ get disabled(): boolean;
2315
2404
  /**
2316
2405
  * 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)
2317
2406
  */
@@ -2321,11 +2410,13 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2321
2410
  *
2322
2411
  * @default false
2323
2412
  */
2324
- readonly: boolean;
2413
+ get readonly(): boolean;
2414
+ set readonly(v: boolean);
2325
2415
  /**
2326
2416
  * Enables the [filtering](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/filtering) functionality of the `DropDownListComponent`.
2327
2417
  */
2328
- filterable: boolean;
2418
+ set filterable(v: boolean);
2419
+ get filterable(): boolean;
2329
2420
  /**
2330
2421
  * Enables the [virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/virtualization) functionality.
2331
2422
  */
@@ -2334,11 +2425,13 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2334
2425
  /**
2335
2426
  * Enables a case-insensitive search. Use this option when filtration is disabled.
2336
2427
  */
2337
- ignoreCase: boolean;
2428
+ set ignoreCase(v: boolean);
2429
+ get ignoreCase(): boolean;
2338
2430
  /**
2339
2431
  * Sets the delay before an item search is performed. Use this option when filtration is disabled.
2340
2432
  */
2341
- delay: number;
2433
+ set delay(v: number);
2434
+ get delay(): number;
2342
2435
  /**
2343
2436
  * Specifies the type of the selected value. If set to `true`, the selected value must be a primitive value.
2344
2437
  * * [More information and example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/value-binding#primitive-values-from-object-fields)
@@ -2350,7 +2443,8 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2350
2443
  *
2351
2444
  * @default 0
2352
2445
  */
2353
- tabindex: number;
2446
+ set tabindex(v: number);
2447
+ get tabindex(): number;
2354
2448
  /**
2355
2449
  * @hidden
2356
2450
  */
@@ -2375,7 +2469,8 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2375
2469
  * Toggles the left and right arrow keys navigation functionality.
2376
2470
  * @hidden
2377
2471
  */
2378
- leftRightArrowsNavigation: boolean;
2472
+ set leftRightArrowsNavigation(v: boolean);
2473
+ get leftRightArrowsNavigation(): boolean;
2379
2474
  /**
2380
2475
  * Fires each time the value changes. [See example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/events).
2381
2476
  */
@@ -2444,7 +2539,8 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2444
2539
  /**
2445
2540
  * @hidden
2446
2541
  */
2447
- focusableId: string;
2542
+ get focusableId(): string;
2543
+ set focusableId(id: string);
2448
2544
  get dir(): string;
2449
2545
  get hostTabIndex(): number;
2450
2546
  get readonlyClass(): boolean;
@@ -2467,13 +2563,14 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2467
2563
  click(): void;
2468
2564
  groupIndices: any[];
2469
2565
  optionPrefix: string;
2470
- valueLabelId: string;
2566
+ valueLabelId: i0.WritableSignal<string>;
2471
2567
  filterText: string;
2472
2568
  listBoxId: string;
2473
2569
  private subs;
2474
2570
  private _isFocused;
2475
2571
  set isFocused(isFocused: boolean);
2476
2572
  get isFocused(): boolean;
2573
+ get text(): string;
2477
2574
  direction: Direction;
2478
2575
  dataItem: any;
2479
2576
  popupRef: PopupRef;
@@ -2488,11 +2585,31 @@ declare class DropDownListComponent implements ControlValueAccessor, AfterViewIn
2488
2585
  private hostElementFocused;
2489
2586
  private hostElementBlurred;
2490
2587
  private touchstartDisposeHandler;
2588
+ private _customIconClass;
2589
+ private _showStickyHeader;
2590
+ private _icon;
2591
+ private _svgIcon;
2592
+ private _loading;
2593
+ private _textField;
2594
+ private _valueField;
2595
+ private _adaptiveMode;
2596
+ private _adaptiveTitle;
2597
+ private _adaptiveSubtitle;
2598
+ private _listHeight;
2599
+ private _defaultItem;
2600
+ private _disabled;
2601
+ private _readonly;
2602
+ private _filterable;
2603
+ private _ignoreCase;
2604
+ private _delay;
2605
+ private _tabindex;
2606
+ private _leftRightArrowsNavigation;
2607
+ private _focusableId;
2491
2608
  private _value;
2492
2609
  private _open;
2493
2610
  private _previousDataItem;
2494
2611
  private _valuePrimitive;
2495
- private text;
2612
+ private _text;
2496
2613
  private _popupSettings;
2497
2614
  private _virtualSettings;
2498
2615
  private _size;
@@ -2844,12 +2961,18 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
2844
2961
  tagListId: string;
2845
2962
  tagPrefix: string;
2846
2963
  optionPrefix: string;
2847
- popupRef: PopupRef;
2848
- text: string;
2849
- tags: any[];
2850
- isAllSelected: boolean;
2851
- isPartiallySelected: boolean;
2852
- focusedTagIndex: number;
2964
+ get popupRef(): PopupRef;
2965
+ set popupRef(value: PopupRef);
2966
+ get isAllSelected(): boolean;
2967
+ set isAllSelected(value: boolean);
2968
+ set isPartiallySelected(value: boolean);
2969
+ get isPartiallySelected(): boolean;
2970
+ get text(): string;
2971
+ set text(v: string);
2972
+ get tags(): any[];
2973
+ set tags(v: any[]);
2974
+ get focusedTagIndex(): number;
2975
+ set focusedTagIndex(v: number);
2853
2976
  /**
2854
2977
  * @hidden
2855
2978
  */
@@ -2921,7 +3044,8 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
2921
3044
  * Shows or hides the current group sticky header when using grouped data.
2922
3045
  * By default the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
2923
3046
  */
2924
- showStickyHeader: boolean;
3047
+ set showStickyHeader(v: boolean);
3048
+ get showStickyHeader(): boolean;
2925
3049
  /**
2926
3050
  * Renders a Select All sticky header item at the top of the popup list.
2927
3051
  * Clicking it selects or deselects all currently available items and triggers the `valueChange` event.
@@ -2941,19 +3065,22 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
2941
3065
  /**
2942
3066
  * @hidden
2943
3067
  */
2944
- focusableId: string;
3068
+ set focusableId(v: string);
3069
+ get focusableId(): string;
2945
3070
  /**
2946
3071
  * 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)).
2947
3072
  * Set to `false` to keep the list open while the component has focus.
2948
3073
  *
2949
3074
  * @default true
2950
3075
  */
2951
- autoClose: boolean;
3076
+ set autoClose(v: boolean);
3077
+ get autoClose(): boolean;
2952
3078
  /**
2953
3079
  * Controls the loading state of the MultiSelect.
2954
3080
  * Set to `true` to display the loading indicator.
2955
3081
  */
2956
- loading: boolean;
3082
+ set loading(v: boolean);
3083
+ get loading(): boolean;
2957
3084
  /**
2958
3085
  * Sets the data source for the MultiSelect.
2959
3086
  * Provide the data as an array of items.
@@ -2973,19 +3100,22 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
2973
3100
  * Skip this property when your data contains only primitive values.
2974
3101
  * Supports nested property paths like `category.id`.
2975
3102
  */
2976
- valueField: string;
3103
+ set valueField(v: string);
3104
+ get valueField(): string;
2977
3105
  /**
2978
3106
  * Sets the field name that contains the item text in the data objects.
2979
3107
  * Skip this property when your data contains only primitive values.
2980
3108
  * Supports nested property paths like `category.name`.
2981
3109
  */
2982
- textField: string;
3110
+ set textField(v: string);
3111
+ get textField(): string;
2983
3112
  /**
2984
3113
  * Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) attribute of the component.
2985
3114
  *
2986
3115
  * @default 0
2987
3116
  */
2988
- tabindex: number;
3117
+ set tabindex(v: number);
3118
+ get tabindex(): number;
2989
3119
  /**
2990
3120
  * @hidden
2991
3121
  */
@@ -3018,17 +3148,20 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3018
3148
  *
3019
3149
  * @default "none"
3020
3150
  */
3021
- adaptiveMode: AdaptiveMode;
3151
+ set adaptiveMode(v: AdaptiveMode);
3152
+ get adaptiveMode(): AdaptiveMode;
3022
3153
  /**
3023
3154
  * Sets the title text for the ActionSheet in adaptive mode.
3024
3155
  * Uses the component's label text by default.
3025
3156
  */
3026
- adaptiveTitle: string;
3157
+ set adaptiveTitle(v: string);
3158
+ get adaptiveTitle(): string;
3027
3159
  /**
3028
3160
  * Sets the subtitle text for the ActionSheet in adaptive mode.
3029
3161
  * No subtitle appears by default.
3030
3162
  */
3031
- adaptiveSubtitle: string;
3163
+ set adaptiveSubtitle(v: string);
3164
+ get adaptiveSubtitle(): string;
3032
3165
  /**
3033
3166
  * @hidden
3034
3167
  */
@@ -3040,7 +3173,8 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3040
3173
  *
3041
3174
  * @default false
3042
3175
  */
3043
- disabled: boolean;
3176
+ set disabled(v: boolean);
3177
+ get disabled(): boolean;
3044
3178
  /**
3045
3179
  * Determines wether the item will be disabled. The function is executed for each data item.
3046
3180
  * The function receives the item as an argument and should return `true` if the item is disabled.
@@ -3060,14 +3194,16 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3060
3194
  *
3061
3195
  * @default false
3062
3196
  */
3063
- readonly: boolean;
3197
+ get readonly(): boolean;
3198
+ set readonly(v: boolean);
3064
3199
  /**
3065
3200
  * Enables the filtering functionality of the MultiSelect.
3066
3201
  * Set to `true` to allow users to filter the data by typing.
3067
3202
  *
3068
3203
  * @default false
3069
3204
  */
3070
- filterable: boolean;
3205
+ set filterable(v: boolean);
3206
+ get filterable(): boolean;
3071
3207
  /**
3072
3208
  * Enables virtualization to improve performance with large datasets.
3073
3209
  * Pass `true` for default settings or an object to configure virtualization.
@@ -3086,9 +3222,8 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3086
3222
  *
3087
3223
  * @default 200
3088
3224
  */
3089
- set listHeight(_listHeight: number);
3225
+ set listHeight(v: number);
3090
3226
  get listHeight(): number;
3091
- private _listHeight;
3092
3227
  /**
3093
3228
  * Controls the type of selected values.
3094
3229
  * Set to `true` for primitive values or `false` for object references.
@@ -3102,14 +3237,16 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3102
3237
  *
3103
3238
  * @default true
3104
3239
  */
3105
- clearButton: boolean;
3240
+ set clearButton(v: boolean);
3241
+ get clearButton(): boolean;
3106
3242
  /**
3107
3243
  * Sets a function that transforms selected data items into display tags.
3108
3244
  * Use this to customize how selected items appear as tags.
3109
3245
  *
3110
3246
  * @default (tags) => tags || []
3111
3247
  */
3112
- tagMapper: (tags: any) => any;
3248
+ set tagMapper(fn: (tags: any) => any);
3249
+ get tagMapper(): (tags: any) => any;
3113
3250
  /**
3114
3251
  * Allows users to add custom values not present in the data source.
3115
3252
  * Set to `true` to enable custom value input.
@@ -3117,12 +3254,14 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3117
3254
  *
3118
3255
  * @default false
3119
3256
  */
3120
- allowCustom: boolean;
3257
+ set allowCustom(v: boolean);
3258
+ get allowCustom(): boolean;
3121
3259
  /**
3122
3260
  * Sets a function that normalizes custom user input into data items.
3123
3261
  * Use this when your data items differ from simple strings.
3124
3262
  */
3125
- valueNormalizer: (text: Observable<string>) => Observable<any>;
3263
+ set valueNormalizer(fn: (text: Observable<string>) => Observable<any>);
3264
+ get valueNormalizer(): (text: Observable<string>) => Observable<any>;
3126
3265
  /**
3127
3266
  * Sets HTML attributes for the inner input element.
3128
3267
  * You cannot change attributes essential for component functionality.
@@ -3130,7 +3269,10 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3130
3269
  * @remarks
3131
3270
  * This property is related to accessibility.
3132
3271
  */
3133
- inputAttributes: {
3272
+ set inputAttributes(v: {
3273
+ [key: string]: string;
3274
+ });
3275
+ get inputAttributes(): {
3134
3276
  [key: string]: string;
3135
3277
  };
3136
3278
  /**
@@ -3230,6 +3372,8 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3230
3372
  applyValue(): void;
3231
3373
  disabledIndices: Set<number>;
3232
3374
  private initialized;
3375
+ private _isPartiallySelected;
3376
+ private _isAllSelected;
3233
3377
  private _size;
3234
3378
  private _rounded;
3235
3379
  private _fillMode;
@@ -3240,6 +3384,7 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3240
3384
  private get isPartiallySelectedComputed();
3241
3385
  private get hasCustomValueItem();
3242
3386
  private get availableItemsForSelectAll();
3387
+ private _focusedTagIndex;
3243
3388
  constructor(wrapper: ElementRef, localization: LocalizationService, popupService: PopupService, dataService: DataService, selectionService: SelectionService, navigationService: NavigationService, disabledItemsService: DisabledItemsService, cdr: ChangeDetectorRef, differs: KeyValueDiffers, renderer: Renderer2, _zone: NgZone, injector: Injector, adaptiveService: AdaptiveService);
3244
3389
  get listContainerClasses(): any[];
3245
3390
  /**
@@ -3342,6 +3487,7 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3342
3487
  handleClick(): void;
3343
3488
  protected onChangeCallback: Function;
3344
3489
  protected onTouchedCallback: Function;
3490
+ private _popupRef;
3345
3491
  private _placeholder;
3346
3492
  private _open;
3347
3493
  private _value;
@@ -3349,6 +3495,27 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
3349
3495
  private _virtualSettings;
3350
3496
  private _valuePrimitive;
3351
3497
  private _checkboxes;
3498
+ private _text;
3499
+ private _tags;
3500
+ private _showStickyHeader;
3501
+ private _focusableId;
3502
+ private _autoClose;
3503
+ private _loading;
3504
+ private _valueField;
3505
+ private _textField;
3506
+ private _tabindex;
3507
+ private _adaptiveMode;
3508
+ private _adaptiveTitle;
3509
+ private _adaptiveSubtitle;
3510
+ private _disabled;
3511
+ private _readonly;
3512
+ private _filterable;
3513
+ private _clearButton;
3514
+ private _tagMapper;
3515
+ private _allowCustom;
3516
+ private _valueNormalizer;
3517
+ private _inputAttributes;
3518
+ private _listHeight;
3352
3519
  private _isFocused;
3353
3520
  set isFocused(isFocused: boolean);
3354
3521
  get isFocused(): boolean;
@@ -3613,11 +3780,11 @@ declare class MultiColumnComboBoxComponent extends ComboBoxComponent implements
3613
3780
  /**
3614
3781
  * @hidden
3615
3782
  */
3616
- rowWidth: number;
3783
+ rowWidth: i0.WritableSignal<number>;
3617
3784
  /**
3618
3785
  * @hidden
3619
3786
  */
3620
- headerColumnWidths: number[];
3787
+ headerColumnWidths: i0.WritableSignal<number[]>;
3621
3788
  /**
3622
3789
  * @hidden
3623
3790
  */
@@ -3709,11 +3876,13 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
3709
3876
  /**
3710
3877
  * @hidden
3711
3878
  */
3712
- icon: string;
3879
+ set icon(value: string);
3880
+ get icon(): string;
3713
3881
  /**
3714
3882
  * @hidden
3715
3883
  */
3716
- svgIcon: SVGIcon$1;
3884
+ set svgIcon(value: SVGIcon$1);
3885
+ get svgIcon(): SVGIcon$1;
3717
3886
  /**
3718
3887
  * @hidden
3719
3888
  */
@@ -3748,6 +3917,7 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
3748
3917
  get actionSheetSearchBar(): TextBoxComponent;
3749
3918
  hostClasses: boolean;
3750
3919
  get isReadonly(): string;
3920
+ get isReadonlyClass(): boolean;
3751
3921
  get hostAriaInvalid(): boolean | null;
3752
3922
  get isDisabled(): boolean | null;
3753
3923
  get isLoading(): boolean;
@@ -3818,12 +3988,14 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
3818
3988
  /**
3819
3989
  * Sets and gets the loading state of the DropDownTree.
3820
3990
  */
3821
- loading: boolean;
3991
+ set loading(value: boolean);
3992
+ get loading(): boolean;
3822
3993
  /**
3823
3994
  * If set to `true`, renders a button on hovering over the component.
3824
3995
  * Clicking this button resets the value of the component to `undefined` and triggers the `change` event.
3825
3996
  */
3826
- clearButton: boolean;
3997
+ set clearButton(value: boolean);
3998
+ get clearButton(): boolean;
3827
3999
  /**
3828
4000
  * Sets the data of the DropDownTree.
3829
4001
  *
@@ -3847,7 +4019,8 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
3847
4019
  *
3848
4020
  * > The `textField` property can be set to point to a nested property value - e.g. `category.name`.
3849
4021
  */
3850
- textField: string | string[];
4022
+ set textField(value: string | string[]);
4023
+ get textField(): string | string[];
3851
4024
  /**
3852
4025
  * The fields of the data item that provide the value of the nodes inside the
3853
4026
  * DropDownTree ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/data-binding)). If the `valueField`
@@ -3856,24 +4029,29 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
3856
4029
  *
3857
4030
  * > The `valueField` property can be set to point to a nested property value - e.g. `category.id`.
3858
4031
  */
3859
- valueField: string | string[];
4032
+ set valueField(value: string | string[]);
4033
+ get valueField(): string | string[];
3860
4034
  /**
3861
4035
  * Sets the level in the data set where the value can be found when `valueField` is an Array.
3862
4036
  * The field serves to correctly allocate a data item used when the DropDownTree is initialized with a value.
3863
4037
  */
3864
- valueDepth: number;
4038
+ set valueDepth(value: number);
4039
+ get valueDepth(): number;
3865
4040
  /**
3866
4041
  * A function which determines if a specific node has child nodes.
3867
4042
  */
3868
- hasChildren: (node: object) => boolean;
4043
+ set hasChildren(fn: (node: object) => boolean);
4044
+ get hasChildren(): (node: object) => boolean;
3869
4045
  /**
3870
4046
  * A function which provides the child nodes for a given parent node.
3871
4047
  */
3872
- fetchChildren: (node: object) => Observable<object[]>;
4048
+ set fetchChildren(fn: (node: object) => Observable<object[]>);
4049
+ get fetchChildren(): (node: object) => Observable<object[]>;
3873
4050
  /**
3874
4051
  * Sets the placeholder of the input element of the DropDownTree.
3875
4052
  */
3876
- placeholder: string;
4053
+ set placeholder(value: string);
4054
+ get placeholder(): string;
3877
4055
  /**
3878
4056
  * Configures the popup of the DropDownTree.
3879
4057
  *
@@ -3902,23 +4080,25 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
3902
4080
  */
3903
4081
  set listHeight(_listHeight: number);
3904
4082
  get listHeight(): number;
3905
- private _listHeight;
3906
4083
  /**
3907
4084
  * 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).
3908
4085
  */
3909
- disabled: boolean;
4086
+ set disabled(value: boolean);
4087
+ get disabled(): boolean;
3910
4088
  /**
3911
4089
  * Sets the read-only state of the component.
3912
4090
  *
3913
4091
  * @default false
3914
4092
  */
3915
- readonly: boolean;
4093
+ set readonly(value: boolean);
4094
+ get readonly(): boolean;
3916
4095
  /**
3917
4096
  * Specifies the type of the selected value
3918
4097
  * ([more information and example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/value-binding#primitive-values)).
3919
4098
  * If set to `true`, the selected value has to be of a primitive value.
3920
4099
  */
3921
- valuePrimitive: boolean;
4100
+ set valuePrimitive(value: boolean);
4101
+ get valuePrimitive(): boolean;
3922
4102
  /**
3923
4103
  * Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
3924
4104
  *
@@ -3944,37 +4124,44 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
3944
4124
  /**
3945
4125
  * A function that is executed for each data item and determines if a specific item is disabled.
3946
4126
  */
3947
- itemDisabled: (item: object, index: string) => boolean;
4127
+ set itemDisabled(fn: (item: object, index: string) => boolean);
4128
+ get itemDisabled(): (item: object, index: string) => boolean;
3948
4129
  /**
3949
4130
  * A function that is executed for each data item and determines if a specific node is expanded.
3950
4131
  */
3951
- isNodeExpanded: (item: object, index: string) => boolean;
4132
+ set isNodeExpanded(fn: (item: object, index: string) => boolean);
4133
+ get isNodeExpanded(): (item: object, index: string) => boolean;
3952
4134
  /**
3953
4135
  * A callback which determines whether a tree node should be rendered as hidden. The utility `.k-hidden` class is used to hide the nodes.
3954
4136
  * Useful for custom filtering implementations.
3955
4137
  */
3956
- isNodeVisible: (item: object, index: string) => boolean;
4138
+ set isNodeVisible(fn: (item: object, index: string) => boolean);
4139
+ get isNodeVisible(): (item: object, index: string) => boolean;
3957
4140
  /**
3958
4141
  * Indicates whether the child nodes will be fetched on node expand or will be initially prefetched.
3959
4142
  * @default true
3960
4143
  */
3961
- loadOnDemand: boolean;
4144
+ set loadOnDemand(value: boolean);
4145
+ get loadOnDemand(): boolean;
3962
4146
  /**
3963
4147
  * Renders the built-in input element for filtering the DropDownTree.
3964
4148
  * 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).
3965
4149
  * 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.
3966
4150
  */
3967
- filterable: boolean;
4151
+ set filterable(value: boolean);
4152
+ get filterable(): boolean;
3968
4153
  /**
3969
4154
  * @hidden
3970
4155
  */
3971
- filter: string;
4156
+ set filter(value: string);
4157
+ get filter(): string;
3972
4158
  /**
3973
4159
  * @hidden
3974
4160
  *
3975
4161
  * Used by the kendo-label and kendo-floatinglabel to access and associate the focusable element with the provided label via aria-labelledby.
3976
4162
  */
3977
- focusableId: string;
4163
+ set focusableId(value: string);
4164
+ get focusableId(): string;
3978
4165
  set isFocused(isFocused: boolean);
3979
4166
  get isFocused(): boolean;
3980
4167
  get width(): {
@@ -3993,15 +4180,18 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
3993
4180
  /**
3994
4181
  * @hidden
3995
4182
  */
3996
- selectedKeys: any[];
4183
+ get selectedKeys(): any[];
4184
+ set selectedKeys(value: any[]);
3997
4185
  /**
3998
4186
  * @hidden
3999
4187
  */
4000
- selectBy: string;
4188
+ get selectBy(): string;
4189
+ set selectBy(value: string);
4001
4190
  /**
4002
4191
  * @hidden
4003
4192
  */
4004
- text: string;
4193
+ get text(): string;
4194
+ set text(value: string);
4005
4195
  /**
4006
4196
  * @hidden
4007
4197
  */
@@ -4009,17 +4199,20 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
4009
4199
  /**
4010
4200
  * Enables or disables the adaptive mode. By default the adaptive rendering is disabled.
4011
4201
  */
4012
- adaptiveMode: AdaptiveMode;
4202
+ set adaptiveMode(value: AdaptiveMode);
4203
+ get adaptiveMode(): AdaptiveMode;
4013
4204
  /**
4014
4205
  * Sets the title of the ActionSheet that is rendered instead of the Popup when using small screen devices.
4015
4206
  * By default the ActionSheet title uses the text provided for the label of the DropDownTree.
4016
4207
  */
4017
- adaptiveTitle: string;
4208
+ set adaptiveTitle(value: string);
4209
+ get adaptiveTitle(): string;
4018
4210
  /**
4019
4211
  * Sets the subtitle of the ActionSheet that is rendered instead of the Popup when using small screen devices.
4020
4212
  * By default the ActionSheet does not render a subtitle.
4021
4213
  */
4022
- adaptiveSubtitle: string;
4214
+ set adaptiveSubtitle(value: string);
4215
+ get adaptiveSubtitle(): string;
4023
4216
  /**
4024
4217
  * @hidden
4025
4218
  */
@@ -4027,7 +4220,8 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
4027
4220
  /**
4028
4221
  * @hidden
4029
4222
  */
4030
- windowSize: AdaptiveSize;
4223
+ get windowSize(): AdaptiveSize;
4224
+ set windowSize(value: AdaptiveSize);
4031
4225
  /**
4032
4226
  * @hidden
4033
4227
  */
@@ -4089,7 +4283,8 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
4089
4283
  /**
4090
4284
  * @hidden
4091
4285
  */
4092
- allNodesHidden: boolean;
4286
+ get allNodesHidden(): boolean;
4287
+ set allNodesHidden(value: boolean);
4093
4288
  /**
4094
4289
  * @hidden
4095
4290
  *
@@ -4101,23 +4296,52 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
4101
4296
  */
4102
4297
  get formControl(): FormControl;
4103
4298
  treeViewId: string;
4104
- private _nodes;
4105
- private _value;
4106
- private _popupSettings;
4107
- private _tabindex;
4108
- private _isFocused;
4109
- private _dataItem;
4110
4299
  private _treeview;
4111
- private _size;
4112
- private _rounded;
4113
- private _fillMode;
4114
- private _popupRef;
4115
4300
  private _searchableNodes;
4116
4301
  private _typedValue;
4117
4302
  private printableCharacters;
4118
4303
  private subs;
4119
4304
  private touchstartDisposeHandler;
4120
4305
  private lastNodeOnFocus;
4306
+ private _popupRef;
4307
+ private _icon;
4308
+ private _svgIcon;
4309
+ private _loading;
4310
+ private _clearButton;
4311
+ private _textField;
4312
+ private _valueField;
4313
+ private _valueDepth;
4314
+ private _hasChildren;
4315
+ private _fetchChildren;
4316
+ private _placeholder;
4317
+ private _disabled;
4318
+ private _readonly;
4319
+ private _valuePrimitive;
4320
+ private _loadOnDemand;
4321
+ private _filterable;
4322
+ private _filter;
4323
+ private _focusableId;
4324
+ private _adaptiveMode;
4325
+ private _adaptiveTitle;
4326
+ private _adaptiveSubtitle;
4327
+ private _isNodeExpanded;
4328
+ private _isNodeVisible;
4329
+ private _itemDisabled;
4330
+ private _data;
4331
+ private _value;
4332
+ private _popupSettings;
4333
+ private _dataItem;
4334
+ private _listHeight;
4335
+ private _tabindex;
4336
+ private _size;
4337
+ private _rounded;
4338
+ private _fillMode;
4339
+ private _isFocused;
4340
+ private _text;
4341
+ private _allNodesHidden;
4342
+ private _selectedKeys;
4343
+ private _selectBy;
4344
+ private _windowSize;
4121
4345
  constructor(injector: Injector, wrapper: ElementRef<HTMLElement>, popupService: PopupService, navigationService: NavigationService, renderer: Renderer2, _zone: NgZone, cdr: ChangeDetectorRef, localization: LocalizationService, adaptiveService: AdaptiveService);
4122
4346
  ngOnInit(): void;
4123
4347
  /**
@@ -4429,6 +4653,7 @@ declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnChanges,
4429
4653
  direction: Direction;
4430
4654
  get hostTabIndex(): number;
4431
4655
  get isReadonly(): string;
4656
+ get isReadonlyClass(): boolean;
4432
4657
  get ariaActiveDescendant(): string;
4433
4658
  /**
4434
4659
  * @hidden
@@ -4444,19 +4669,22 @@ declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnChanges,
4444
4669
  *
4445
4670
  * @default 'none'
4446
4671
  */
4447
- adaptiveMode: AdaptiveMode;
4672
+ set adaptiveMode(value: AdaptiveMode);
4673
+ get adaptiveMode(): AdaptiveMode;
4448
4674
  /**
4449
4675
  * Sets the title text for the ActionSheet in adaptive mode on small screens.
4450
4676
  * Uses the component label by default if not set.
4451
4677
  *
4452
4678
  * @default ''
4453
4679
  */
4454
- adaptiveTitle: string;
4680
+ set adaptiveTitle(value: string);
4681
+ get adaptiveTitle(): string;
4455
4682
  /**
4456
4683
  * Sets the subtitle text for the ActionSheet in adaptive mode on small screens.
4457
4684
  * No subtitle appears by default.
4458
4685
  */
4459
- adaptiveSubtitle: string;
4686
+ set adaptiveSubtitle(value: string);
4687
+ get adaptiveSubtitle(): string;
4460
4688
  /**
4461
4689
  * @hidden
4462
4690
  */
@@ -4464,7 +4692,8 @@ declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnChanges,
4464
4692
  /**
4465
4693
  * @hidden
4466
4694
  */
4467
- windowSize: AdaptiveSize;
4695
+ get windowSize(): AdaptiveSize;
4696
+ set windowSize(value: AdaptiveSize);
4468
4697
  /**
4469
4698
  * @hidden
4470
4699
  */
@@ -4559,33 +4788,38 @@ declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnChanges,
4559
4788
  * Specifies which data field provides the display text for tree nodes.
4560
4789
  * > The `textField` property can be set to point to a nested property value - e.g. `category.name`.
4561
4790
  */
4562
- textField: string | string[];
4791
+ set textField(value: string | string[]);
4792
+ get textField(): string | string[];
4563
4793
  /**
4564
4794
  * Specifies which data field provides the unique values for tree nodes.
4565
4795
  * > The `valueField` property can be set to point to a nested property value - e.g. `category.id`.
4566
4796
  */
4567
- valueField: string | string[];
4797
+ set valueField(value: string | string[]);
4798
+ get valueField(): string | string[];
4568
4799
  /**
4569
4800
  * Sets the levels in the data set where the values can be found when `valueField` is an Array.
4570
4801
  * The field serves to correctly allocate a data item used when the MultiSelectTree is initialized with a value.
4571
4802
  *
4572
4803
  * @default []
4573
4804
  */
4574
- valueDepth: number[];
4805
+ set valueDepth(value: number[]);
4806
+ get valueDepth(): number[];
4575
4807
  /**
4576
4808
  * Controls the loading state visual indicator.
4577
4809
  * Shows a loading spinner when set to `true`.
4578
4810
  *
4579
4811
  * @default false
4580
4812
  */
4581
- loading: boolean;
4813
+ set loading(value: boolean);
4814
+ get loading(): boolean;
4582
4815
  /**
4583
4816
  * Sets the placeholder text shown when no items are selected.
4584
4817
  * Helps guide users on what action to take.
4585
4818
  *
4586
4819
  * @default ''
4587
4820
  */
4588
- placeholder: string;
4821
+ set placeholder(value: string);
4822
+ get placeholder(): string;
4589
4823
  /**
4590
4824
  * Sets the maximum height of the options list in the popup.
4591
4825
  * Controls vertical scrolling when content exceeds this height.
@@ -4594,89 +4828,102 @@ declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnChanges,
4594
4828
  */
4595
4829
  set listHeight(_listHeight: number);
4596
4830
  get listHeight(): number;
4597
- private _listHeight;
4598
4831
  /**
4599
4832
  * Controls whether the component accepts user input.
4600
4833
  * Prevents all user interactions when set to `true`.
4601
4834
  *
4602
4835
  * @default false
4603
4836
  */
4604
- disabled: boolean;
4837
+ set disabled(value: boolean);
4838
+ get disabled(): boolean;
4605
4839
  /**
4606
4840
  * Sets the component to read-only mode.
4607
4841
  * Displays current selections but prevents changes.
4608
4842
  *
4609
4843
  * @default false
4610
4844
  */
4611
- readonly: boolean;
4845
+ set readonly(value: boolean);
4846
+ get readonly(): boolean;
4612
4847
  /**
4613
4848
  * Determines the data type of selected values.
4614
4849
  * Set to `true` for primitive values, false for complex objects.
4615
4850
  *
4616
4851
  * @default false
4617
4852
  */
4618
- valuePrimitive: boolean;
4853
+ set valuePrimitive(value: boolean);
4854
+ get valuePrimitive(): boolean;
4619
4855
  /**
4620
4856
  * Controls when child nodes load from the data source.
4621
4857
  * Set to `true` to load children only when parent nodes expand.
4622
4858
  *
4623
4859
  * @default false
4624
4860
  */
4625
- loadOnDemand: boolean;
4861
+ set loadOnDemand(value: boolean);
4862
+ get loadOnDemand(): boolean;
4626
4863
  /**
4627
4864
  * Sets the unique identifier for the focusable element.
4628
4865
  * Used internally for accessibility and label association.
4629
4866
  */
4630
- focusableId: string;
4867
+ set focusableId(value: string);
4868
+ get focusableId(): string;
4631
4869
  /**
4632
4870
  * Shows a clear button to reset all selections.
4633
4871
  * Appears on hover when selections exist and the component is not disabled.
4634
4872
  *
4635
4873
  * @default true
4636
4874
  */
4637
- clearButton: boolean;
4875
+ set clearButton(value: boolean);
4876
+ get clearButton(): boolean;
4638
4877
  /**
4639
4878
  * Enables the built-in filter input for searching tree nodes.
4640
4879
  * Shows a search box above the tree when enabled.
4641
4880
  *
4642
4881
  * @default false
4643
4882
  */
4644
- filterable: boolean;
4883
+ set filterable(value: boolean);
4884
+ get filterable(): boolean;
4645
4885
  /**
4646
4886
  * Shows a checkbox to select or deselect all visible tree nodes.
4647
4887
  * Appears above the tree when checkboxes are enabled.
4648
4888
  *
4649
4889
  * @default false
4650
4890
  */
4651
- checkAll: boolean;
4891
+ set checkAll(value: boolean);
4892
+ get checkAll(): boolean;
4652
4893
  /**
4653
4894
  * Determines if a tree node contains child nodes.
4654
4895
  * Return `true` if the node has children, false otherwise.
4655
4896
  */
4656
- hasChildren: (node: object) => boolean;
4897
+ set hasChildren(fn: (node: object) => boolean);
4898
+ get hasChildren(): (node: object) => boolean;
4657
4899
  /**
4658
4900
  * Function that provides child nodes for a parent node.
4659
4901
  * Return an Observable of child objects for the given parent.
4660
4902
  */
4661
- fetchChildren: (node: object) => Observable<object[]>;
4903
+ set fetchChildren(fn: (node: object) => Observable<object[]>);
4904
+ get fetchChildren(): (node: object) => Observable<object[]>;
4662
4905
  /**
4663
4906
  * Determines if a specific node is expanded. The function is executed for each data item.
4664
4907
  */
4665
- isNodeExpanded: (item: object, index: string) => boolean;
4908
+ set isNodeExpanded(fn: (item: object, index: string) => boolean);
4909
+ get isNodeExpanded(): (item: object, index: string) => boolean;
4666
4910
  /**
4667
4911
  * Determines if a tree node should be hidden.
4668
4912
  */
4669
- isNodeVisible: (item: object, index: string) => boolean;
4913
+ set isNodeVisible(fn: (item: object, index: string) => boolean);
4914
+ get isNodeVisible(): (item: object, index: string) => boolean;
4670
4915
  /**
4671
4916
  * Determines if a tree node is disabled. The function is executed for each data item.
4672
4917
  */
4673
- itemDisabled: (item: object, index: string) => boolean;
4918
+ set itemDisabled(fn: (item: object, index: string) => boolean);
4919
+ get itemDisabled(): (item: object, index: string) => boolean;
4674
4920
  /**
4675
4921
  * @param { Any[] } dataItems - The selected data items from the list.
4676
4922
  * @returns { Any[] } - The tags that will be rendered by the component.
4677
4923
  * Transforms the provided array of data items into an array of tags.
4678
4924
  */
4679
- tagMapper: (tags: any) => any;
4925
+ set tagMapper(fn: (tags: any) => any);
4926
+ get tagMapper(): (tags: any) => any;
4680
4927
  /**
4681
4928
  * Fires when the component receives focus.
4682
4929
  */
@@ -4812,18 +5059,21 @@ declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnChanges,
4812
5059
  /**
4813
5060
  * @hidden
4814
5061
  */
4815
- filter: string;
5062
+ get filter(): string;
5063
+ set filter(value: string);
4816
5064
  /**
4817
5065
  * @hidden
4818
5066
  */
4819
- checkedItems: CheckedItem[];
5067
+ get checkedItems(): CheckedItem[];
5068
+ set checkedItems(value: CheckedItem[]);
4820
5069
  /**
4821
5070
  * @hidden
4822
5071
  * The flag is needed in order to determine how to construct the items map keys.
4823
5072
  * If `true`, then the key consists of the item's value and level (depth),
4824
5073
  * else the key consists of the item's value and 0 (no leveling required)
4825
5074
  */
4826
- isHeterogeneous: boolean;
5075
+ get isHeterogeneous(): boolean;
5076
+ set isHeterogeneous(value: boolean);
4827
5077
  /**
4828
5078
  * @hidden
4829
5079
  */
@@ -4831,30 +5081,65 @@ declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnChanges,
4831
5081
  /**
4832
5082
  * @hidden
4833
5083
  */
4834
- allNodesHidden: boolean;
5084
+ get allNodesHidden(): boolean;
5085
+ set allNodesHidden(value: boolean);
4835
5086
  tagListId: string;
4836
5087
  tagPrefix: string;
4837
5088
  popupRef: PopupRef;
4838
- tags: any[];
4839
- focusedTagIndex: number;
4840
- disabledIndices: Set<number>;
4841
- private _nodes;
4842
- private _value;
4843
- private _tabindex;
4844
- private _popupSettings;
4845
- private _checkableSettings;
4846
- private _isFocused;
5089
+ get tags(): any[];
5090
+ set tags(value: any[]);
5091
+ get focusedTagIndex(): number;
5092
+ set focusedTagIndex(value: number);
5093
+ get disabledIndices(): Set<number>;
5094
+ set disabledIndices(value: Set<number>);
4847
5095
  private _treeview;
4848
- private _dataItems;
4849
- private _size;
4850
- private _rounded;
4851
- private _fillMode;
4852
5096
  private _searchableNodes;
4853
5097
  private _typedValue;
4854
5098
  private printableCharacters;
4855
5099
  private subs;
4856
5100
  private lastNodeOnFocus;
4857
5101
  private isContentInit;
5102
+ private _adaptiveMode;
5103
+ private _adaptiveTitle;
5104
+ private _adaptiveSubtitle;
5105
+ private _textField;
5106
+ private _valueField;
5107
+ private _valueDepth;
5108
+ private _loading;
5109
+ private _placeholder;
5110
+ private _disabled;
5111
+ private _readonly;
5112
+ private _valuePrimitive;
5113
+ private _loadOnDemand;
5114
+ private _focusableId;
5115
+ private _clearButton;
5116
+ private _filterable;
5117
+ private _checkAll;
5118
+ private _hasChildren;
5119
+ private _fetchChildren;
5120
+ private _isNodeExpanded;
5121
+ private _isNodeVisible;
5122
+ private _itemDisabled;
5123
+ private _tagMapper;
5124
+ private _data;
5125
+ private _value;
5126
+ private _dataItems;
5127
+ private _listHeight;
5128
+ private _tabindex;
5129
+ private _size;
5130
+ private _rounded;
5131
+ private _fillMode;
5132
+ private _popupSettings;
5133
+ private _checkableSettings;
5134
+ private _isFocused;
5135
+ private _filter;
5136
+ private _checkedItems;
5137
+ private _isHeterogeneous;
5138
+ private _allNodesHidden;
5139
+ private _tags;
5140
+ private _focusedTagIndex;
5141
+ private _disabledIndices;
5142
+ private _windowSize;
4858
5143
  constructor(injector: Injector, wrapper: ElementRef, popupService: PopupService, renderer: Renderer2, navigationService: NavigationService, _zone: NgZone, localization: LocalizationService, cdr: ChangeDetectorRef, lookup: MultiSelectTreeLookupService, adaptiveService: AdaptiveService);
4859
5144
  ngOnInit(): void;
4860
5145
  ngAfterViewInit(): void;
@@ -5188,11 +5473,13 @@ declare class Messages extends ComponentMessages {
5188
5473
  /**
5189
5474
  * The text displayed in the popup when there are no items.
5190
5475
  */
5191
- noDataText: string;
5476
+ set noDataText(value: string);
5477
+ get noDataText(): string;
5192
5478
  /**
5193
5479
  * The title of the clear button.
5194
5480
  */
5195
- clearTitle: string;
5481
+ set clearTitle(value: string);
5482
+ get clearTitle(): string;
5196
5483
  /**
5197
5484
  * The text of the Select All item in the popup.
5198
5485
  */
@@ -5200,33 +5487,50 @@ declare class Messages extends ComponentMessages {
5200
5487
  /**
5201
5488
  * The text of the Check All checkbox label in the tree popup.
5202
5489
  */
5203
- checkAllText: string;
5490
+ set checkAllText(value: string);
5491
+ get checkAllText(): string;
5204
5492
  /**
5205
5493
  * The text set as aria-label on the select button. Available for DropDownList, ComboBox, MultiColumnComboBox, and DropDownTree.
5206
5494
  */
5207
- selectButtonText: string;
5495
+ set selectButtonText(value: string);
5496
+ get selectButtonText(): string;
5208
5497
  /**
5209
5498
  * The text set as aria-label on the list filter input. Available for DropDownList, DropDownTree, and MultiSelectTree.
5210
5499
  */
5211
- filterInputLabel: string;
5500
+ set filterInputLabel(value: string);
5501
+ get filterInputLabel(): string;
5212
5502
  /**
5213
5503
  * The text set as aria-label on the popup containing the list of options when its role is `region`.
5214
5504
  */
5215
- popupLabel: string;
5505
+ set popupLabel(value: string);
5506
+ get popupLabel(): string;
5216
5507
  /**
5217
5508
  * The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode.
5218
5509
  */
5219
- adaptiveCloseButtonTitle: string;
5510
+ set adaptiveCloseButtonTitle(value: string);
5511
+ get adaptiveCloseButtonTitle(): string;
5220
5512
  /**
5221
5513
  * The text for the input's placeholder when filtering is enabled. Available for DropDownTree and MultiSelectTree.
5222
5514
  */
5223
- filterInputPlaceholder: string;
5515
+ set filterInputPlaceholder(value: string);
5516
+ get filterInputPlaceholder(): string;
5517
+ /**
5518
+ * The accessible label of the listbox that contains the list of options. Available for DropDownList, ComboBox, MultiColumnComboBox, AutoComplete, and MultiSelect.
5519
+ */
5520
+ set listboxLabel(value: string);
5521
+ get listboxLabel(): string;
5522
+ /**
5523
+ * The accessible label of the input element. Available for MultiSelectTree.
5524
+ */
5525
+ set inputLabel(value: string);
5526
+ get inputLabel(): string;
5224
5527
  /**
5225
5528
  * The accessible label of the tag list element that contains the selected items. Available for MultiSelect and MultiSelectTree.
5226
5529
  */
5227
- chipListLabel: string;
5530
+ set chipListLabel(value: string);
5531
+ get chipListLabel(): string;
5228
5532
  /**
5229
- * The text displayed when the user types a custom value that is not in the list of options. Available for ComboBox and MultiSelect.
5533
+ * The text displayed when the user types a custom value that is not in the list of options. Available for ComboBox and MultiSelect.
5230
5534
  *
5231
5535
  * The text includes a localizable string and the custom value.
5232
5536
  * For example, when adding a custom value **Test**, the default text is **Use "Test"**.
@@ -5234,17 +5538,22 @@ declare class Messages extends ComponentMessages {
5234
5538
  * You can reorder the custom value and the localizable part by using a placeholder in `useCustomValueText`.
5235
5539
  * Use `{customValue}` to insert the value, for example, **Add: {customValue}**.
5236
5540
  */
5237
- useCustomValueText: string;
5238
- /**
5239
- * The accessible label of the listbox that contains the list of options. Available for DropDownList, ComboBox, MultiColumnComboBox, AutoComplete, and MultiSelect.
5240
- */
5241
- listboxLabel: string;
5242
- /**
5243
- * The accessible label of the input element. Available for MultiSelectTree.
5244
- */
5245
- inputLabel: string;
5541
+ set useCustomValueText(value: string);
5542
+ get useCustomValueText(): string;
5543
+ private _noDataText;
5544
+ private _clearTitle;
5545
+ private _checkAllText;
5546
+ private _selectButtonText;
5547
+ private _filterInputLabel;
5548
+ private _popupLabel;
5549
+ private _adaptiveCloseButtonTitle;
5550
+ private _filterInputPlaceholder;
5551
+ private _useCustomValueText;
5552
+ private _listboxLabel;
5553
+ private _inputLabel;
5554
+ private _chipListLabel;
5246
5555
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
5247
- static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "noDataText": { "alias": "noDataText"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "selectAllText": { "alias": "selectAllText"; "required": false; }; "checkAllText": { "alias": "checkAllText"; "required": false; }; "selectButtonText": { "alias": "selectButtonText"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "popupLabel": { "alias": "popupLabel"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "filterInputPlaceholder": { "alias": "filterInputPlaceholder"; "required": false; }; "chipListLabel": { "alias": "chipListLabel"; "required": false; }; "useCustomValueText": { "alias": "useCustomValueText"; "required": false; }; "listboxLabel": { "alias": "listboxLabel"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, {}, never, never, true, never>;
5556
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "noDataText": { "alias": "noDataText"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "selectAllText": { "alias": "selectAllText"; "required": false; }; "checkAllText": { "alias": "checkAllText"; "required": false; }; "selectButtonText": { "alias": "selectButtonText"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "popupLabel": { "alias": "popupLabel"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "filterInputPlaceholder": { "alias": "filterInputPlaceholder"; "required": false; }; "listboxLabel": { "alias": "listboxLabel"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; "chipListLabel": { "alias": "chipListLabel"; "required": false; }; "useCustomValueText": { "alias": "useCustomValueText"; "required": false; }; }, {}, never, never, true, never>;
5248
5557
  }
5249
5558
 
5250
5559
  /**