@progress/kendo-react-dropdowns 13.3.0-develop.1 → 13.3.0-develop.3

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.mts CHANGED
@@ -33,10 +33,10 @@ declare enum ActiveDescendant {
33
33
  export declare type AutoComplete = AutoCompleteHandle;
34
34
 
35
35
  /**
36
- * Represents the [KendoReact AutoComplete component]({% slug overview_autocomplete %}).
36
+ * Represents the [KendoReact AutoComplete component](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete).
37
37
  *
38
- * Accepts properties of type [AutoCompleteProps]({% slug api_dropdowns_autocompleteprops %}).
39
- * Obtaining the `ref` returns an object of type [AutoCompleteHandle]({% slug api_dropdowns_autocompletehandle %}).
38
+ * Accepts properties of type [AutoCompleteProps](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/autocompleteprops).
39
+ * Obtaining the `ref` returns an object of type [AutoCompleteHandle](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/autocompletehandle).
40
40
  *
41
41
  * @example
42
42
  * ```jsx
@@ -128,11 +128,11 @@ export declare interface AutoCompleteOpenEvent extends OpenEvent<AutoComplete> {
128
128
  }
129
129
 
130
130
  /**
131
- * Represents the props of the [KendoReact AutoComplete component]({% slug overview_autocomplete %}).
131
+ * Represents the props of the [KendoReact AutoComplete component](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete).
132
132
  */
133
133
  export declare interface AutoCompleteProps extends FormComponentProps {
134
134
  /**
135
- * Sets the data of the AutoComplete ([more information and example]({% slug binding_autocomplete %})).
135
+ * Sets the data of the AutoComplete ([more information and example](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete/binding)).
136
136
  *
137
137
  * @example
138
138
  * ```jsx
@@ -159,7 +159,7 @@ export declare interface AutoCompleteProps extends FormComponentProps {
159
159
  */
160
160
  style?: React.CSSProperties;
161
161
  /**
162
- * Sets the value of the AutoComplete ([more information and example]({% slug binding_autocomplete %})).
162
+ * Sets the value of the AutoComplete ([more information and example](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete/binding)).
163
163
  *
164
164
  * @example
165
165
  * ```jsx
@@ -214,7 +214,7 @@ export declare interface AutoCompleteProps extends FormComponentProps {
214
214
  */
215
215
  readonly?: boolean;
216
216
  /**
217
- * Enables the auto-completion of the text based on the first data item ([see example]({% slug suggestions_autocomplete %})).
217
+ * Enables the auto-completion of the text based on the first data item ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete/suggestions)).
218
218
  *
219
219
  * @example
220
220
  * ```jsx
@@ -241,7 +241,7 @@ export declare interface AutoCompleteProps extends FormComponentProps {
241
241
  */
242
242
  dir?: string;
243
243
  /**
244
- * Sets the loading state of the AutoComplete ([see example]({% slug filtering_autocomplete %}#toc-basic-configuration)).
244
+ * Sets the loading state of the AutoComplete ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete/filtering#toc-basic-configuration)).
245
245
  *
246
246
  * @example
247
247
  * ```jsx
@@ -268,7 +268,7 @@ export declare interface AutoCompleteProps extends FormComponentProps {
268
268
  */
269
269
  accessKey?: string;
270
270
  /**
271
- * Sets the data item field that represents the item text ([see example]({% slug binding_autocomplete %}#toc-datasets-of-objects)). If the data contains only primitive values, do not define it.
271
+ * Sets the data item field that represents the item text ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete/binding#toc-datasets-of-objects)). If the data contains only primitive values, do not define it.
272
272
  *
273
273
  * @example
274
274
  * ```jsx
@@ -376,7 +376,7 @@ export declare interface AutoCompleteProps extends FormComponentProps {
376
376
  */
377
377
  onBlur?: (event: AutoCompleteBlurEvent) => void;
378
378
  /**
379
- * Fires each time the value of the AutoComplete is about to change ([more information and example]({% slug binding_autocomplete %})).
379
+ * Fires each time the value of the AutoComplete is about to change ([more information and example](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete/binding)).
380
380
  *
381
381
  * @example
382
382
  * ```jsx
@@ -394,7 +394,7 @@ export declare interface AutoCompleteProps extends FormComponentProps {
394
394
  */
395
395
  valueRender?: (rendering: React.ReactElement<HTMLSpanElement>) => React.ReactNode;
396
396
  /**
397
- * Fires when an AutoComplete list item is about to be rendered ([see example]({% slug customrendering_autocomplete %}#toc-items)). Used to override the default appearance of the list items.
397
+ * Fires when an AutoComplete list item is about to be rendered ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete/custom-rendering#toc-items)). Used to override the default appearance of the list items.
398
398
  *
399
399
  * @example
400
400
  * ```jsx
@@ -403,7 +403,7 @@ export declare interface AutoCompleteProps extends FormComponentProps {
403
403
  */
404
404
  itemRender?: (li: React.ReactElement<HTMLLIElement>, itemProps: ListItemProps) => React.ReactNode;
405
405
  /**
406
- * Fires when the element which indicates no data in the popup is about to be rendered ([see example]({% slug customrendering_autocomplete %}#toc-no-data)). Used to override the default appearance of the element.
406
+ * Fires when the element which indicates no data in the popup is about to be rendered ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete/custom-rendering#toc-no-data)). Used to override the default appearance of the element.
407
407
  *
408
408
  * @example
409
409
  * ```jsx
@@ -412,7 +412,7 @@ export declare interface AutoCompleteProps extends FormComponentProps {
412
412
  */
413
413
  listNoDataRender?: (element: React.ReactElement<HTMLDivElement>) => React.ReactNode;
414
414
  /**
415
- * Sets the header component of the AutoComplete ([see example]({% slug customrendering_autocomplete %}#toc-headers-and-footers)).
415
+ * Sets the header component of the AutoComplete ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete/custom-rendering#toc-headers-and-footers)).
416
416
  *
417
417
  * @example
418
418
  * ```jsx
@@ -421,7 +421,7 @@ export declare interface AutoCompleteProps extends FormComponentProps {
421
421
  */
422
422
  header?: React.ReactNode;
423
423
  /**
424
- * Sets the footer component of the AutoComplete ([see example]({% slug customrendering_autocomplete %}#toc-headers-and-footers)).
424
+ * Sets the footer component of the AutoComplete ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/autocomplete/custom-rendering#toc-headers-and-footers)).
425
425
  *
426
426
  * @example
427
427
  * ```jsx
@@ -601,7 +601,7 @@ export declare interface AutoCompleteProps extends FormComponentProps {
601
601
  * Represents the PropsContext of the `AutoComplete` component.
602
602
  * Used for global configuration of all `AutoComplete` instances.
603
603
  *
604
- * For more information, refer to the [Dropdowns Props Context]({% slug props-context_dropdowns %}) article.
604
+ * For more information, refer to the [Dropdowns Props Context](https://www.telerik.com/kendo-react-ui/components/dropdowns/props-context) article.
605
605
  */
606
606
  export declare const AutoCompletePropsContext: React_2.Context<(p: AutoCompleteProps) => AutoCompleteProps>;
607
607
 
@@ -833,10 +833,10 @@ declare interface CloseEvent_2<T> extends DropdownEvent<T> {
833
833
  export declare type ComboBox = ComboBoxHandle;
834
834
 
835
835
  /**
836
- * Represents the [KendoReact ComboBox component]({% slug overview_combobox %}).
836
+ * Represents the [KendoReact ComboBox component](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox).
837
837
  *
838
- * Accepts properties of type [ComboBoxProps]({% slug api_dropdowns_comboboxprops %}).
839
- * Obtaining the `ref` returns an object of type [ComboBoxHandle]({% slug api_dropdowns_comboboxhandle %}).
838
+ * Accepts properties of type [ComboBoxProps](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/comboboxprops).
839
+ * Obtaining the `ref` returns an object of type [ComboBoxHandle](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/comboboxhandle).
840
840
  *
841
841
  * @example
842
842
  * ```jsx
@@ -929,11 +929,11 @@ export declare interface ComboBoxPageChangeEvent extends PageChangeEvent<ComboBo
929
929
  }
930
930
 
931
931
  /**
932
- * Represents the props of the [KendoReact ComboBox component]({% slug overview_combobox %}).
932
+ * Represents the props of the [KendoReact ComboBox component](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox).
933
933
  */
934
934
  export declare interface ComboBoxProps extends FormComponentProps {
935
935
  /**
936
- * Sets the data of the ComboBox ([more information and examples]({% slug binding_combobox %})).
936
+ * Sets the data of the ComboBox ([more information and examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/binding)).
937
937
  *
938
938
  * @example
939
939
  * ```jsx
@@ -960,7 +960,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
960
960
  */
961
961
  style?: React.CSSProperties;
962
962
  /**
963
- * Sets the value of the ComboBox ([more information and examples]({% slug binding_combobox %})).
963
+ * Sets the value of the ComboBox ([more information and examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/binding)).
964
964
  *
965
965
  * @example
966
966
  * ```jsx
@@ -1032,7 +1032,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1032
1032
  */
1033
1033
  title?: string;
1034
1034
  /**
1035
- * Enables the auto-completion of the text based on the first data item ([see example]({% slug suggestions_combobox %})).
1035
+ * Enables the auto-completion of the text based on the first data item ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/suggestions)).
1036
1036
  *
1037
1037
  * @example
1038
1038
  * ```jsx
@@ -1041,7 +1041,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1041
1041
  */
1042
1042
  suggest?: boolean;
1043
1043
  /**
1044
- * Specifies whether the ComboBox allows user-defined values that are not present in the dataset ([see example]({% slug custom_values_combobox %})). Defaults to `false`.
1044
+ * Specifies whether the ComboBox allows user-defined values that are not present in the dataset ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/custom-values)). Defaults to `false`.
1045
1045
  *
1046
1046
  * @example
1047
1047
  * ```jsx
@@ -1068,7 +1068,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1068
1068
  */
1069
1069
  dir?: string;
1070
1070
  /**
1071
- * Enables the filtering functionality of the ComboBox ([more information and examples]({% slug filtering_combobox %})).
1071
+ * Enables the filtering functionality of the ComboBox ([more information and examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/filtering)).
1072
1072
  *
1073
1073
  * @example
1074
1074
  * ```jsx
@@ -1095,7 +1095,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1095
1095
  */
1096
1096
  adaptiveFilter?: string;
1097
1097
  /**
1098
- * Sets the loading state of the ComboBox ([see example]({% slug filtering_combobox %}#toc-basic-configuration)).
1098
+ * Sets the loading state of the ComboBox ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/filtering#toc-basic-configuration)).
1099
1099
  *
1100
1100
  * @example
1101
1101
  * ```jsx
@@ -1153,7 +1153,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1153
1153
  */
1154
1154
  isMultiColumn?: boolean;
1155
1155
  /**
1156
- * Sets the key for comparing the data items of the ComboBox. If `dataItemKey` is not set, the ComboBox compares the items by reference ([see example]({% slug binding_combobox %}#toc-datasets-of-objects)).
1156
+ * Sets the key for comparing the data items of the ComboBox. If `dataItemKey` is not set, the ComboBox compares the items by reference ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/binding#toc-datasets-of-objects)).
1157
1157
  *
1158
1158
  * @example
1159
1159
  * ```jsx
@@ -1180,7 +1180,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1180
1180
  */
1181
1181
  popupSettings?: DropDownsPopupSettings;
1182
1182
  /**
1183
- * Configures the virtual scrolling of the ComboBox ([more information and examples]({% slug virtualization_combobox %})).
1183
+ * Configures the virtual scrolling of the ComboBox ([more information and examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/virtualization)).
1184
1184
  *
1185
1185
  * @example
1186
1186
  * ```jsx
@@ -1279,7 +1279,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1279
1279
  */
1280
1280
  onBlur?: (event: ComboBoxBlurEvent) => void;
1281
1281
  /**
1282
- * Fires each time the value of the ComboBox is about to change ([see examples]({% slug binding_combobox %})).
1282
+ * Fires each time the value of the ComboBox is about to change ([see examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/binding)).
1283
1283
  *
1284
1284
  * @example
1285
1285
  * ```jsx
@@ -1288,7 +1288,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1288
1288
  */
1289
1289
  onChange?: (event: ComboBoxChangeEvent) => void;
1290
1290
  /**
1291
- * Fires each time the user types in the filter input ([see examples]({% slug filtering_combobox %}#toc-basic-configuration)). You can filter the source based on the passed filtration value.
1291
+ * Fires each time the user types in the filter input ([see examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/filtering#toc-basic-configuration)). You can filter the source based on the passed filtration value.
1292
1292
  *
1293
1293
  * @example
1294
1294
  * ```jsx
@@ -1297,7 +1297,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1297
1297
  */
1298
1298
  onFilterChange?: (event: ComboBoxFilterChangeEvent) => void;
1299
1299
  /**
1300
- * Fires when both the virtual scrolling of the ComboBox is enabled and the component requires data for another page ([more information and examples]({% slug virtualization_combobox %})).
1300
+ * Fires when both the virtual scrolling of the ComboBox is enabled and the component requires data for another page ([more information and examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/virtualization)).
1301
1301
  *
1302
1302
  * @example
1303
1303
  * ```jsx
@@ -1315,7 +1315,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1315
1315
  */
1316
1316
  valueRender?: (rendering: React.ReactElement<HTMLSpanElement>) => React.ReactNode;
1317
1317
  /**
1318
- * Fires when a ComboBox list item is about to be rendered ([see example]({% slug customrendering_combobox %}#toc-items)). Used to override the default appearance of the list items.
1318
+ * Fires when a ComboBox list item is about to be rendered ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/custom-rendering#toc-items)). Used to override the default appearance of the list items.
1319
1319
  *
1320
1320
  * @example
1321
1321
  * ```jsx
@@ -1357,7 +1357,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1357
1357
  group?: string;
1358
1358
  }) => void;
1359
1359
  /**
1360
- * Sets the header component of the ComboBox ([see example]({% slug customrendering_combobox %}#toc-headers-and-footers)).
1360
+ * Sets the header component of the ComboBox ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/custom-rendering#toc-headers-and-footers)).
1361
1361
  *
1362
1362
  * @example
1363
1363
  * ```jsx
@@ -1366,7 +1366,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1366
1366
  */
1367
1367
  header?: React.ReactNode;
1368
1368
  /**
1369
- * Sets the footer component of the ComboBox ([see example]({% slug customrendering_combobox %}#toc-headers-and-footers)).
1369
+ * Sets the footer component of the ComboBox ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/custom-rendering#toc-headers-and-footers)).
1370
1370
  *
1371
1371
  * @example
1372
1372
  * ```jsx
@@ -1517,7 +1517,7 @@ export declare interface ComboBoxProps extends FormComponentProps {
1517
1517
  * Represents the PropsContext of the `ComboBox` component.
1518
1518
  * Used for global configuration of all `ComboBox` instances.
1519
1519
  *
1520
- * For more information, refer to the [Dropdowns Props Context]({% slug props-context_dropdowns %}) article.
1520
+ * For more information, refer to the [Dropdowns Props Context](https://www.telerik.com/kendo-react-ui/components/dropdowns/props-context) article.
1521
1521
  */
1522
1522
  export declare const ComboBoxPropsContext: React_2.Context<(p: ComboBoxProps) => ComboBoxProps>;
1523
1523
 
@@ -1640,6 +1640,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1640
1640
  private hasDuplicates;
1641
1641
  private navigationIndex;
1642
1642
  private observerResize?;
1643
+ protected scrollToFocused: boolean;
1643
1644
  private readonly showLicenseWatermark;
1644
1645
  private readonly licenseMessage?;
1645
1646
  private get document();
@@ -1923,10 +1924,10 @@ declare interface DropdownEvent<T> {
1923
1924
  }
1924
1925
 
1925
1926
  /**
1926
- * Represents the [KendoReact DropDownList component]({% slug overview_dropdownlist %}).
1927
+ * Represents the [KendoReact DropDownList component](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist).
1927
1928
  *
1928
- * Accepts properties of type [DropDownListProps]({% slug api_dropdowns_dropdownlistprops %}).
1929
- * Obtaining the `ref` returns an object of type [DropDownListHandle]({% slug api_dropdowns_dropdownlisthandle %}).
1929
+ * Accepts properties of type [DropDownListProps](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/dropdownlistprops).
1930
+ * Obtaining the `ref` returns an object of type [DropDownListHandle](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/dropdownlisthandle).
1930
1931
  *
1931
1932
  */
1932
1933
  export declare const DropDownList: React_2.ForwardRefExoticComponent<DropDownListProps & React_2.RefAttributes<DropDownListHandle>>;
@@ -2038,11 +2039,11 @@ export declare interface DropDownListPageChangeEvent extends PageChangeEvent<Dro
2038
2039
  }
2039
2040
 
2040
2041
  /**
2041
- * Represents the props of the [KendoReact DropDownList component]({% slug overview_dropdownlist %}).
2042
+ * Represents the props of the [KendoReact DropDownList component](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist).
2042
2043
  */
2043
2044
  export declare interface DropDownListProps extends FormComponentProps {
2044
2045
  /**
2045
- * Sets the data of the DropDownList ([see example]({% slug binding_dropdownlist %})).
2046
+ * Sets the data of the DropDownList ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/binding)).
2046
2047
  *
2047
2048
  * @example
2048
2049
  * ```jsx
@@ -2096,7 +2097,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2096
2097
  */
2097
2098
  style?: React.CSSProperties;
2098
2099
  /**
2099
- * Sets the value of the DropDownList ([see example]({% slug binding_dropdownlist %})). It can either be of the primitive (string, numbers) or of the complex (objects) type.
2100
+ * Sets the value of the DropDownList ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/binding)). It can either be of the primitive (string, numbers) or of the complex (objects) type.
2100
2101
  *
2101
2102
  * @example
2102
2103
  * ```jsx
@@ -2105,7 +2106,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2105
2106
  */
2106
2107
  value?: any;
2107
2108
  /**
2108
- * Sets the default value of the DropDownList ([see example]({% slug defaultitem_dropdownlist %})). Similar to the native `select` HTML element.
2109
+ * Sets the default value of the DropDownList ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/default-item)). Similar to the native `select` HTML element.
2109
2110
  *
2110
2111
  * @example
2111
2112
  * ```jsx
@@ -2168,7 +2169,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2168
2169
  */
2169
2170
  dir?: string;
2170
2171
  /**
2171
- * Enables the filtering functionality of the DropDownList ([more information and examples]({% slug filtering_dropdownlist %})).
2172
+ * Enables the filtering functionality of the DropDownList ([more information and examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/filtering)).
2172
2173
  *
2173
2174
  * @example
2174
2175
  * ```jsx
@@ -2213,7 +2214,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2213
2214
  */
2214
2215
  accessKey?: string;
2215
2216
  /**
2216
- * Sets the data item field that represents the item text ([see example]({% slug defaultitem_dropdownlist %})). If the data contains only primitive values, do not define it.
2217
+ * Sets the data item field that represents the item text ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/default-item)). If the data contains only primitive values, do not define it.
2217
2218
  *
2218
2219
  * @example
2219
2220
  * ```jsx
@@ -2222,7 +2223,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2222
2223
  */
2223
2224
  textField?: string;
2224
2225
  /**
2225
- * Sets the key for comparing the data items of the DropDownList. If `dataItemKey` is not set, the DropDownList compares the items by reference ([see example]({% slug binding_dropdownlist %}#toc-datasets-of-objects)).
2226
+ * Sets the key for comparing the data items of the DropDownList. If `dataItemKey` is not set, the DropDownList compares the items by reference ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/binding#toc-datasets-of-objects)).
2226
2227
  *
2227
2228
  * @example
2228
2229
  * ```jsx
@@ -2305,7 +2306,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2305
2306
  */
2306
2307
  popupSettings?: DropDownsPopupSettings;
2307
2308
  /**
2308
- * Configures the virtual scrolling of the DropDownList ([see example]({% slug virtualization_dropdownlist %})).
2309
+ * Configures the virtual scrolling of the DropDownList ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/virtualization)).
2309
2310
  *
2310
2311
  * @example
2311
2312
  * ```jsx
@@ -2367,7 +2368,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2367
2368
  */
2368
2369
  onBlur?: (event: DropDownListBlurEvent) => void;
2369
2370
  /**
2370
- * Fires each time the value of the DropDownList is about to change ([see examples]({% slug binding_dropdownlist %})).
2371
+ * Fires each time the value of the DropDownList is about to change ([see examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/binding)).
2371
2372
  *
2372
2373
  * @example
2373
2374
  * ```jsx
@@ -2385,7 +2386,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2385
2386
  */
2386
2387
  onFilterChange?: (event: DropDownListFilterChangeEvent) => void;
2387
2388
  /**
2388
- * Fires when both the virtual scrolling of the DropDownList is enabled and the component requires data for another page ([see example]({% slug virtualization_dropdownlist %})).
2389
+ * Fires when both the virtual scrolling of the DropDownList is enabled and the component requires data for another page ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/virtualization)).
2389
2390
  *
2390
2391
  * @example
2391
2392
  * ```jsx
@@ -2394,7 +2395,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2394
2395
  */
2395
2396
  onPageChange?: (event: DropDownListPageChangeEvent) => void;
2396
2397
  /**
2397
- * Fires when a DropDownList item is about to be rendered ([see example]({% slug customrendering_dropdownlist %}#toc-items)). Used to override the default appearance of the list items.
2398
+ * Fires when a DropDownList item is about to be rendered ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/custom-rendering#toc-items)). Used to override the default appearance of the list items.
2398
2399
  *
2399
2400
  * @example
2400
2401
  * ```jsx
@@ -2403,7 +2404,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2403
2404
  */
2404
2405
  itemRender?: (li: React.ReactElement<HTMLLIElement>, itemProps: ListItemProps) => React.ReactNode;
2405
2406
  /**
2406
- * Fires when the element which renders the value is about to be rendered ([see example]({% slug customrendering_dropdownlist %}#toc-values)). Used to override the default appearance of the element.
2407
+ * Fires when the element which renders the value is about to be rendered ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/custom-rendering#toc-values)). Used to override the default appearance of the element.
2407
2408
  *
2408
2409
  * @example
2409
2410
  * ```jsx
@@ -2412,7 +2413,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2412
2413
  */
2413
2414
  valueRender?: (element: React.ReactElement<HTMLSpanElement>, value: any) => React.ReactNode;
2414
2415
  /**
2415
- * Fires when the element which indicates no data in the popup is about to be rendered ([see example]({% slug customrendering_dropdownlist %}#toc-no-data)). Used to override the default appearance of the element.
2416
+ * Fires when the element which indicates no data in the popup is about to be rendered ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/custom-rendering#toc-no-data)). Used to override the default appearance of the element.
2416
2417
  *
2417
2418
  * @example
2418
2419
  * ```jsx
@@ -2421,7 +2422,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2421
2422
  */
2422
2423
  listNoDataRender?: (element: React.ReactElement<HTMLDivElement>) => React.ReactNode;
2423
2424
  /**
2424
- * Sets the header component of the DropDownList ([see example]({% slug customrendering_dropdownlist %}#toc-headers-and-footers)).
2425
+ * Sets the header component of the DropDownList ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/custom-rendering#toc-headers-and-footers)).
2425
2426
  *
2426
2427
  * @example
2427
2428
  * ```jsx
@@ -2430,7 +2431,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2430
2431
  */
2431
2432
  header?: React.ReactNode;
2432
2433
  /**
2433
- * Sets the footer component of the DropDownList ([see example]({% slug customrendering_dropdownlist %}#toc-headers-and-footers)).
2434
+ * Sets the footer component of the DropDownList ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/custom-rendering#toc-headers-and-footers)).
2434
2435
  *
2435
2436
  * @example
2436
2437
  * ```jsx
@@ -2594,7 +2595,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2594
2595
  * Represents the PropsContext of the `DropDownList` component.
2595
2596
  * Used for global configuration of all `DropDownList` instances.
2596
2597
  *
2597
- * For more information, refer to the [Dropdowns Props Context]({% slug props-context_dropdowns %}) article.
2598
+ * For more information, refer to the [Dropdowns Props Context](https://www.telerik.com/kendo-react-ui/components/dropdowns/props-context) article.
2598
2599
  */
2599
2600
  export declare const DropDownListPropsContext: React_2.Context<(p: DropDownListProps) => DropDownListProps>;
2600
2601
 
@@ -2653,8 +2654,8 @@ declare interface DropDownStateBase {
2653
2654
  /**
2654
2655
  * Represents the DropDownTree component.
2655
2656
  *
2656
- * Accepts properties of type [DropDownTreeProps]({% slug api_dropdowns_dropdowntreeprops %}).
2657
- * Obtaining the `ref` returns an object of type [DropDownTreeHandle]({% slug api_dropdowns_dropdowntreehandle %}).
2657
+ * Accepts properties of type [DropDownTreeProps](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/dropdowntreeprops).
2658
+ * Obtaining the `ref` returns an object of type [DropDownTreeHandle](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/dropdowntreehandle).
2658
2659
  *
2659
2660
  * @example
2660
2661
  * ```jsx
@@ -2785,11 +2786,11 @@ export declare interface DropDownTreeOpenEvent extends OpenEvent<DropDownTreeHan
2785
2786
  }
2786
2787
 
2787
2788
  /**
2788
- * Represents the props of the [KendoReact DropDownTree component]({% slug overview_dropdowntree %}).
2789
+ * Represents the props of the [KendoReact DropDownTree component](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree).
2789
2790
  */
2790
2791
  export declare interface DropDownTreeProps extends FormComponentProps {
2791
2792
  /**
2792
- * Sets the data of the DropDownTree ([see example]({% slug overview_dropdowntree %})).
2793
+ * Sets the data of the DropDownTree ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree)).
2793
2794
  *
2794
2795
  * @example
2795
2796
  * ```jsx
@@ -2816,7 +2817,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
2816
2817
  */
2817
2818
  style?: React.CSSProperties;
2818
2819
  /**
2819
- * Sets the value of the DropDownTree ([see example]({% slug overview_dropdowntree %})).
2820
+ * Sets the value of the DropDownTree ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree)).
2820
2821
  * It can be an object from the data-tree.
2821
2822
  *
2822
2823
  * @example
@@ -2835,7 +2836,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
2835
2836
  */
2836
2837
  placeholder?: string;
2837
2838
  /**
2838
- * Sets the key for comparing the data items of the DropDownTree ([see example]({% slug overview_dropdowntree %})).
2839
+ * Sets the key for comparing the data items of the DropDownTree ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree)).
2839
2840
  * If `dataItemKey` is not set, the DropDownTree compares the items by reference.
2840
2841
  *
2841
2842
  * @example
@@ -2909,7 +2910,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
2909
2910
  */
2910
2911
  ariaLabelledBy?: string;
2911
2912
  /**
2912
- * Enables the filtering functionality of the DropDownTree ([more information and examples]({% slug filtering_dropdowntree %})).
2913
+ * Enables the filtering functionality of the DropDownTree ([more information and examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree/filtering)).
2913
2914
  *
2914
2915
  * @example
2915
2916
  * ```jsx
@@ -2928,7 +2929,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
2928
2929
  */
2929
2930
  filter?: string;
2930
2931
  /**
2931
- * Sets the loading state of the DropDownTree ([see example]({% slug filtering_dropdowntree %}#toc-visualize-filtering)).
2932
+ * Sets the loading state of the DropDownTree ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree/filtering#toc-visualize-filtering)).
2932
2933
  *
2933
2934
  * @example
2934
2935
  * ```jsx
@@ -2955,7 +2956,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
2955
2956
  */
2956
2957
  accessKey?: string;
2957
2958
  /**
2958
- * Sets the data item field that represents the item text ([see example]({% slug overview_dropdowntree %})).
2959
+ * Sets the data item field that represents the item text ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree)).
2959
2960
  *
2960
2961
  * @example
2961
2962
  * ```jsx
@@ -3046,7 +3047,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3046
3047
  */
3047
3048
  onBlur?: (event: DropDownTreeBlurEvent) => void;
3048
3049
  /**
3049
- * Fires each time the value of the DropDownTree is about to change ([see examples]({% slug overview_dropdowntree %})).
3050
+ * Fires each time the value of the DropDownTree is about to change ([see examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree)).
3050
3051
  *
3051
3052
  * @example
3052
3053
  * ```jsx
@@ -3056,7 +3057,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3056
3057
  onChange?: (event: DropDownTreeChangeEvent) => void;
3057
3058
  /**
3058
3059
  * Fires each time the user types in the filter input
3059
- * ([see example]({% slug filtering_dropdowntree %}#toc-basic-configuration)).
3060
+ * ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree/filtering#toc-basic-configuration)).
3060
3061
  * You can filter the source based on the passed filtration value.
3061
3062
  *
3062
3063
  * @example
@@ -3066,7 +3067,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3066
3067
  */
3067
3068
  onFilterChange?: (event: DropDownTreeFilterChangeEvent) => void;
3068
3069
  /**
3069
- * Fires when the expanding or collapsing of an item is requested ([see examples]({% slug overview_dropdowntree %})).
3070
+ * Fires when the expanding or collapsing of an item is requested ([see examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree)).
3070
3071
  *
3071
3072
  * @example
3072
3073
  * ```jsx
@@ -3076,7 +3077,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3076
3077
  onExpandChange?: (event: any) => void;
3077
3078
  /**
3078
3079
  * Defines the component that will be used for rendering each of the DropDownTree items
3079
- * ([see example]({% slug customrendering_dropdowntree %}#toc-items-and-value-element)).
3080
+ * ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree/custom-rendering#toc-items-and-value-element)).
3080
3081
  *
3081
3082
  * @example
3082
3083
  * ```jsx
@@ -3086,7 +3087,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3086
3087
  item?: React.ComponentType<ItemProps>;
3087
3088
  /**
3088
3089
  * Defines the component that will be used for rendering the selected value
3089
- * ([see example]({% slug customrendering_dropdowntree %}#toc-items-and-value-element)).
3090
+ * ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree/custom-rendering#toc-items-and-value-element)).
3090
3091
  *
3091
3092
  * @example
3092
3093
  * ```jsx
@@ -3096,7 +3097,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3096
3097
  valueHolder?: React.ComponentType<ValueHolderProps>;
3097
3098
  /**
3098
3099
  * Defines the component that will be rendered in the DropDownTree popup when no data is available
3099
- * ([see example]({% slug customrendering_dropdowntree %}#toc-no-data)).
3100
+ * ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree/custom-rendering#toc-no-data)).
3100
3101
  *
3101
3102
  * @example
3102
3103
  * ```jsx
@@ -3194,7 +3195,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3194
3195
  * Represents the PropsContext of the `DropDownTree` component.
3195
3196
  * Used for global configuration of all `DropDownTree` instances.
3196
3197
  *
3197
- * For more information, refer to the [Dropdowns Props Context]({% slug props-context_dropdowns %}) article.
3198
+ * For more information, refer to the [Dropdowns Props Context](https://www.telerik.com/kendo-react-ui/components/dropdowns/props-context) article.
3198
3199
  */
3199
3200
  export declare const DropDownTreePropsContext: React_2.Context<(p: DropDownTreeProps) => DropDownTreeProps>;
3200
3201
 
@@ -3223,9 +3224,9 @@ declare interface FilterChangeEvent<T> extends DropdownEvent<T> {
3223
3224
  }
3224
3225
 
3225
3226
  /**
3226
- * A basic filter expression. Usually a part of [`CompositeFilterDescriptor`]({% slug api_kendo-data-query_compositefilterdescriptor %}).
3227
+ * A basic filter expression. Usually a part of [`CompositeFilterDescriptor`](https://www.telerik.com/kendo-react-ui/components/datatools/api/compositefilterdescriptor).
3227
3228
  *
3228
- * For more information, refer to the [`filterBy`]({% slug api_kendo-data-query_filterby %}) method.
3229
+ * For more information, refer to the [`filterBy`](https://www.telerik.com/kendo-react-ui/components/datatools/api/filterby) method.
3229
3230
  */
3230
3231
  declare interface FilterDescriptor {
3231
3232
  /**
@@ -3329,7 +3330,7 @@ declare interface InternalState {
3329
3330
 
3330
3331
  /**
3331
3332
  * The props of component that will be used for rendering each of the DropDownTree items
3332
- * ([see example]({% slug customrendering_dropdowntree %}#toc-items-and-value-element)).
3333
+ * ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree/custom-rendering#toc-items-and-value-element)).
3333
3334
  */
3334
3335
  export declare interface ItemProps extends ItemRenderProps {
3335
3336
  }
@@ -3463,7 +3464,7 @@ export declare interface ListItemProps {
3463
3464
  }
3464
3465
 
3465
3466
  /**
3466
- * The props of the `ListNoData` component ([see example]({% slug customrendering_dropdowntree %}#toc-no-data)).
3467
+ * The props of the `ListNoData` component ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree/custom-rendering#toc-no-data)).
3467
3468
  */
3468
3469
  export declare interface ListNoDataProps {
3469
3470
  /**
@@ -3511,8 +3512,8 @@ declare interface ListProps {
3511
3512
  /**
3512
3513
  * Represents the MultiColumnComboBox component.
3513
3514
  *
3514
- * Accepts properties of type [MultiColumnComboBoxProps]({% slug api_dropdowns_multicolumncomboboxprops %}).
3515
- * Obtaining the `ref` returns an object of type [MultiColumnComboBoxHandle]({% slug api_dropdowns_multicolumncomboboxhandle %}).
3515
+ * Accepts properties of type [MultiColumnComboBoxProps](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/multicolumncomboboxprops).
3516
+ * Obtaining the `ref` returns an object of type [MultiColumnComboBoxHandle](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/multicolumncomboboxhandle).
3516
3517
  *
3517
3518
  * @example
3518
3519
  * ```jsx
@@ -3616,7 +3617,7 @@ export declare interface MultiColumnComboBoxHandle {
3616
3617
  }
3617
3618
 
3618
3619
  /**
3619
- * Represents the properties of the [MultiColumnComboBox]({% slug api_dropdowns_multicolumncombobox %}) component.
3620
+ * Represents the properties of the [MultiColumnComboBox](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/multicolumncombobox) component.
3620
3621
  */
3621
3622
  export declare interface MultiColumnComboBoxProps extends ComboBoxProps {
3622
3623
  /**
@@ -3800,7 +3801,7 @@ export declare interface MultiColumnComboBoxProps extends ComboBoxProps {
3800
3801
  * Represents the PropsContext of the `MultiColumnComboBox` component.
3801
3802
  * Used for global configuration of all `MultiColumnComboBox` instances.
3802
3803
  *
3803
- * For more information, refer to the [Dropdowns Props Context]({% slug props-context_dropdowns %}) article.
3804
+ * For more information, refer to the [Dropdowns Props Context](https://www.telerik.com/kendo-react-ui/components/dropdowns/props-context) article.
3804
3805
  */
3805
3806
  export declare const MultiColumnComboBoxPropsContext: React_2.Context<(p: MultiColumnComboBoxProps) => MultiColumnComboBoxProps>;
3806
3807
 
@@ -3808,10 +3809,10 @@ export declare const MultiColumnComboBoxPropsContext: React_2.Context<(p: MultiC
3808
3809
  export declare type MultiSelect = MultiSelectHandle;
3809
3810
 
3810
3811
  /**
3811
- * Represents the [KendoReact MultiSelect component]({% slug overview_multiselect %}).
3812
+ * Represents the [KendoReact MultiSelect component](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect).
3812
3813
  *
3813
- * Accepts properties of type [MultiSelectProps]({% slug api_dropdowns_multiselectprops %}).
3814
- * Obtaining the `ref` returns an object of type [MultiSelectHandle]({% slug api_dropdowns_multiselecthandle %}).
3814
+ * Accepts properties of type [MultiSelectProps](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/multiselectprops).
3815
+ * Obtaining the `ref` returns an object of type [MultiSelectHandle](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/multiselecthandle).
3815
3816
  *
3816
3817
  * @example
3817
3818
  * ```jsx
@@ -3919,11 +3920,11 @@ export declare interface MultiSelectPageChangeEvent extends PageChangeEvent<Mult
3919
3920
  }
3920
3921
 
3921
3922
  /**
3922
- * Represents the props of the [KendoReact MultiSelect component]({% slug overview_multiselect %}).
3923
+ * Represents the props of the [KendoReact MultiSelect component](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect).
3923
3924
  */
3924
3925
  export declare interface MultiSelectProps extends FormComponentProps {
3925
3926
  /**
3926
- * Specifies whether the MultiSelect allows user-defined values that are not present in the dataset ([see example]({% slug custom_values_multiselect %})). Defaults to `false`.
3927
+ * Specifies whether the MultiSelect allows user-defined values that are not present in the dataset ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/custom-values)). Defaults to `false`.
3927
3928
  *
3928
3929
  * @example
3929
3930
  * ```jsx
@@ -3932,7 +3933,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
3932
3933
  */
3933
3934
  allowCustom?: boolean;
3934
3935
  /**
3935
- * Sets the data of the MultiSelect ([see example]({% slug binding_multiselect %})).
3936
+ * Sets the data of the MultiSelect ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/binding)).
3936
3937
  *
3937
3938
  * @example
3938
3939
  * ```jsx
@@ -3968,7 +3969,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
3968
3969
  */
3969
3970
  style?: React.CSSProperties;
3970
3971
  /**
3971
- * Sets the value of the MultiSelect ([see example]({% slug binding_multiselect %})). It can either be of the primitive (string, numbers) or of the complex (objects) type.
3972
+ * Sets the value of the MultiSelect ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/binding)). It can either be of the primitive (string, numbers) or of the complex (objects) type.
3972
3973
  *
3973
3974
  * @example
3974
3975
  * ```jsx
@@ -3986,7 +3987,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
3986
3987
  */
3987
3988
  placeholder?: string;
3988
3989
  /**
3989
- * Sets the tags of the MultiSelect ([see example]({% slug customtags_multiselect %})).
3990
+ * Sets the tags of the MultiSelect ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/custom-tags)).
3990
3991
  *
3991
3992
  * @example
3992
3993
  * ```jsx
@@ -3995,7 +3996,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
3995
3996
  */
3996
3997
  tags?: Array<TagData>;
3997
3998
  /**
3998
- * Sets the key for comparing the data items of the MultiSelect ([see example]({% slug binding_multiselect %}#toc-datasets-of-objects)). If `dataItemKey` is not set, the MultiSelect compares the items by reference.
3999
+ * Sets the key for comparing the data items of the MultiSelect ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/binding#toc-datasets-of-objects)). If `dataItemKey` is not set, the MultiSelect compares the items by reference.
3999
4000
  *
4000
4001
  * @example
4001
4002
  * ```jsx
@@ -4040,7 +4041,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4040
4041
  */
4041
4042
  dir?: string;
4042
4043
  /**
4043
- * Enables the filtering functionality of the MultiSelect ([more information and examples]({% slug filtering_multiselect %})).
4044
+ * Enables the filtering functionality of the MultiSelect ([more information and examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/filtering)).
4044
4045
  *
4045
4046
  * @example
4046
4047
  * ```jsx
@@ -4121,7 +4122,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4121
4122
  */
4122
4123
  adaptiveFilter?: string;
4123
4124
  /**
4124
- * Sets the loading state of the MultiSelect ([see example]({% slug filtering_multiselect %}#toc-basic-configuration)).
4125
+ * Sets the loading state of the MultiSelect ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/filtering#toc-basic-configuration)).
4125
4126
  *
4126
4127
  * @example
4127
4128
  * ```jsx
@@ -4148,7 +4149,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4148
4149
  */
4149
4150
  accessKey?: string;
4150
4151
  /**
4151
- * Sets the data item field that represents the item text ([see example]({% slug binding_multiselect %}#toc-datasets-of-objects)). If the data contains only primitive values, do not define it.
4152
+ * Sets the data item field that represents the item text ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/binding#toc-datasets-of-objects)). If the data contains only primitive values, do not define it.
4152
4153
  *
4153
4154
  * @example
4154
4155
  * ```jsx
@@ -4175,7 +4176,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4175
4176
  */
4176
4177
  popupSettings?: DropDownsPopupSettings;
4177
4178
  /**
4178
- * Configures the virtual scrolling of the MultiSelect ([see example]({% slug virtualization_multiselect %})).
4179
+ * Configures the virtual scrolling of the MultiSelect ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/virtualization)).
4179
4180
  *
4180
4181
  * @example
4181
4182
  * ```jsx
@@ -4220,7 +4221,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4220
4221
  */
4221
4222
  onBlur?: (event: MultiSelectBlurEvent) => void;
4222
4223
  /**
4223
- * Fires each time the value of the MultiSelect is about to change ([see examples]({% slug binding_multiselect %})).
4224
+ * Fires each time the value of the MultiSelect is about to change ([see examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/binding)).
4224
4225
  *
4225
4226
  * @example
4226
4227
  * ```jsx
@@ -4229,7 +4230,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4229
4230
  */
4230
4231
  onChange?: (event: MultiSelectChangeEvent) => void;
4231
4232
  /**
4232
- * Fires each time the popup of the MultiSelect is about to cancel in ([adaptive mode]({% slug adaptive_rendering_multiselect %})).
4233
+ * Fires each time the popup of the MultiSelect is about to cancel in ([adaptive mode](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/adaptive-rendering)).
4233
4234
  *
4234
4235
  * @example
4235
4236
  * ```jsx
@@ -4238,7 +4239,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4238
4239
  */
4239
4240
  onCancel?: (event: MultiSelectCancelEvent) => void;
4240
4241
  /**
4241
- * Fires each time the user types in the filter input ([see example]({% slug filtering_multiselect %}#toc-basic-configuration)). You can filter the source based on the passed filtration value.
4242
+ * Fires each time the user types in the filter input ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/filtering#toc-basic-configuration)). You can filter the source based on the passed filtration value.
4242
4243
  *
4243
4244
  * @example
4244
4245
  * ```jsx
@@ -4247,7 +4248,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4247
4248
  */
4248
4249
  onFilterChange?: (event: MultiSelectFilterChangeEvent) => void;
4249
4250
  /**
4250
- * Fires when both the virtual scrolling of the MultiSelect is enabled and when the component requires data for another page ([see example]({% slug virtualization_multiselect %})).
4251
+ * Fires when both the virtual scrolling of the MultiSelect is enabled and when the component requires data for another page ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/virtualization)).
4251
4252
  *
4252
4253
  * @example
4253
4254
  * ```jsx
@@ -4256,7 +4257,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4256
4257
  */
4257
4258
  onPageChange?: (event: MultiSelectPageChangeEvent) => void;
4258
4259
  /**
4259
- * Fires when a MultiSelect item is about to be rendered ([see example]({% slug customrendering_multiselect %}#toc-items)). Used to override the default appearance of the list items.
4260
+ * Fires when a MultiSelect item is about to be rendered ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/custom-rendering#toc-items)). Used to override the default appearance of the list items.
4260
4261
  *
4261
4262
  * @example
4262
4263
  * ```jsx
@@ -4265,7 +4266,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4265
4266
  */
4266
4267
  itemRender?: (li: React.ReactElement<HTMLLIElement>, itemProps: ListItemProps) => React.ReactNode;
4267
4268
  /**
4268
- * Fires when the element which indicates no data in the popup is about to be rendered ([see example]({% slug customrendering_multiselect %}#toc-no-data)). Used to override the default appearance of the element.
4269
+ * Fires when the element which indicates no data in the popup is about to be rendered ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/custom-rendering#toc-no-data)). Used to override the default appearance of the element.
4269
4270
  *
4270
4271
  * @example
4271
4272
  * ```jsx
@@ -4274,7 +4275,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4274
4275
  */
4275
4276
  listNoDataRender?: (element: React.ReactElement<HTMLDivElement>) => React.ReactNode;
4276
4277
  /**
4277
- * Fires when a tag element is about to be rendered ([see example]({% slug customrendering_multiselect %}#toc-tags)). Used to override the default appearance of the element.
4278
+ * Fires when a tag element is about to be rendered ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/custom-rendering#toc-tags)). Used to override the default appearance of the element.
4278
4279
  *
4279
4280
  * @example
4280
4281
  * ```jsx
@@ -4283,7 +4284,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4283
4284
  */
4284
4285
  tagRender?: (tagData: TagData, tag: React.ReactElement<any>) => React.ReactElement<any>;
4285
4286
  /**
4286
- * Sets the header component of the MultiSelect ([see example]({% slug customrendering_multiselect %}#toc-headers-and-footers)).
4287
+ * Sets the header component of the MultiSelect ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/custom-rendering#toc-headers-and-footers)).
4287
4288
  *
4288
4289
  * @example
4289
4290
  * ```jsx
@@ -4292,7 +4293,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4292
4293
  */
4293
4294
  header?: React.ReactNode;
4294
4295
  /**
4295
- * Sets the footer component of the MultiSelect ([see example]({% slug customrendering_multiselect %}#toc-headers-and-footers)).
4296
+ * Sets the footer component of the MultiSelect ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/custom-rendering#toc-headers-and-footers)).
4296
4297
  *
4297
4298
  * @example
4298
4299
  * ```jsx
@@ -4467,7 +4468,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4467
4468
  * Represents the PropsContext of the `MultiSelect` component.
4468
4469
  * Used for global configuration of all `MultiSelect` instances.
4469
4470
  *
4470
- * For more information, refer to the [Dropdowns Props Context]({% slug props-context_dropdowns %}) article.
4471
+ * For more information, refer to the [Dropdowns Props Context](https://www.telerik.com/kendo-react-ui/components/dropdowns/props-context) article.
4471
4472
  */
4472
4473
  export declare const MultiSelectPropsContext: React_2.Context<(p: MultiSelectProps) => MultiSelectProps>;
4473
4474
 
@@ -4485,8 +4486,8 @@ declare interface MultiSelectState extends DropDownStateBase {
4485
4486
  /**
4486
4487
  * Represents the MultiSelectTree component.
4487
4488
  *
4488
- * Accepts properties of type [MultiSelectTreeProps]({% slug api_dropdowns_multiselecttreeprops %}).
4489
- * Obtaining the `ref` returns an object of type [MultiSelectTreeHandle]({% slug api_dropdowns_multiselecttreehandle %}).
4489
+ * Accepts properties of type [MultiSelectTreeProps](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/multiselecttreeprops).
4490
+ * Obtaining the `ref` returns an object of type [MultiSelectTreeHandle](https://www.telerik.com/kendo-react-ui/components/dropdowns/api/multiselecttreehandle).
4490
4491
  *
4491
4492
  * @example
4492
4493
  * ```jsx
@@ -4638,13 +4639,13 @@ export declare interface MultiSelectTreeHandle {
4638
4639
 
4639
4640
  /**
4640
4641
  * The props of component that will be used for rendering each of the MultiSelectTree items
4641
- * ([see example]({% slug customrendering_multiselecttree %}#toc-items-and-value-element)).
4642
+ * ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree/custom-rendering#toc-items-and-value-element)).
4642
4643
  */
4643
4644
  export declare interface MultiSelectTreeItemProps extends ItemRenderProps {
4644
4645
  }
4645
4646
 
4646
4647
  /**
4647
- * The props of the `ListNoData` component ([see example]({% slug customrendering_multiselecttree %}#toc-no-data)).
4648
+ * The props of the `ListNoData` component ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree/custom-rendering#toc-no-data)).
4648
4649
  */
4649
4650
  export declare interface MultiSelectTreeListNoDataProps {
4650
4651
  /**
@@ -4660,11 +4661,11 @@ export declare interface MultiSelectTreeOpenEvent extends OpenEvent<MultiSelectT
4660
4661
  }
4661
4662
 
4662
4663
  /**
4663
- * Represents the props of the [KendoReact MultiSelectTree component]({% slug overview_multiselecttree %}).
4664
+ * Represents the props of the [KendoReact MultiSelectTree component](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree).
4664
4665
  */
4665
4666
  export declare interface MultiSelectTreeProps extends FormComponentProps {
4666
4667
  /**
4667
- * Sets the data of the MultiSelectTree ([see example]({% slug overview_multiselecttree %})).
4668
+ * Sets the data of the MultiSelectTree ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree)).
4668
4669
  *
4669
4670
  * @example
4670
4671
  * ```jsx
@@ -4709,7 +4710,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4709
4710
  */
4710
4711
  placeholder?: string;
4711
4712
  /**
4712
- * Sets the key for comparing the data items of the MultiSelectTree ([see example]({% slug overview_multiselecttree %})).
4713
+ * Sets the key for comparing the data items of the MultiSelectTree ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree)).
4713
4714
  * If `dataItemKey` is not set, the MultiSelectTree compares the items by reference.
4714
4715
  *
4715
4716
  * @example
@@ -4764,7 +4765,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4764
4765
  */
4765
4766
  id?: string;
4766
4767
  /**
4767
- * Sets the tags of the MultiSelect ([see example]({% slug customtags_multiselect %})).
4768
+ * Sets the tags of the MultiSelect ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/custom-tags)).
4768
4769
  *
4769
4770
  * @example
4770
4771
  * ```jsx
@@ -4792,7 +4793,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4792
4793
  */
4793
4794
  ariaLabelledBy?: string;
4794
4795
  /**
4795
- * Enables the filtering functionality of the MultiSelectTree ([more information and examples]({% slug filtering_multiselecttree %})).
4796
+ * Enables the filtering functionality of the MultiSelectTree ([more information and examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree/filtering)).
4796
4797
  *
4797
4798
  * @example
4798
4799
  * ```jsx
@@ -4811,7 +4812,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4811
4812
  */
4812
4813
  filter?: string;
4813
4814
  /**
4814
- * Sets the loading state of the MultiSelectTree ([see example]({% slug filtering_multiselecttree %}#toc-visualize-filtering)).
4815
+ * Sets the loading state of the MultiSelectTree ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree/filtering#toc-visualize-filtering)).
4815
4816
  *
4816
4817
  * @example
4817
4818
  * ```jsx
@@ -4838,7 +4839,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4838
4839
  */
4839
4840
  accessKey?: string;
4840
4841
  /**
4841
- * Sets the data item field that represents the item text ([see example]({% slug overview_multiselecttree %})).
4842
+ * Sets the data item field that represents the item text ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree)).
4842
4843
  *
4843
4844
  * @example
4844
4845
  * ```jsx
@@ -4938,7 +4939,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4938
4939
  */
4939
4940
  onBlur?: (event: MultiSelectTreeBlurEvent) => void;
4940
4941
  /**
4941
- * Fires each time the value of the MultiSelectTree is about to change ([see examples]({% slug overview_multiselecttree %})).
4942
+ * Fires each time the value of the MultiSelectTree is about to change ([see examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree)).
4942
4943
  *
4943
4944
  * @example
4944
4945
  * ```jsx
@@ -4947,7 +4948,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4947
4948
  */
4948
4949
  onChange?: (event: MultiSelectTreeChangeEvent) => void;
4949
4950
  /**
4950
- * Fires each time the popup of the MultiSelectTree is about to cancel in ([adaptive mode]({% slug adaptive_rendering_multiselecttree %})).
4951
+ * Fires each time the popup of the MultiSelectTree is about to cancel in ([adaptive mode](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree/adaptive-rendering)).
4951
4952
  *
4952
4953
  * @example
4953
4954
  * ```jsx
@@ -4957,7 +4958,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4957
4958
  onCancel?: (event: MultiSelectTreeCancelEvent) => void;
4958
4959
  /**
4959
4960
  * Fires each time the user types in the filter input
4960
- * ([see example]({% slug filtering_multiselecttree %}#toc-basic-configuration)).
4961
+ * ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree/filtering#toc-basic-configuration)).
4961
4962
  * You can filter the source based on the passed filtration value.
4962
4963
  *
4963
4964
  * @example
@@ -4967,7 +4968,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4967
4968
  */
4968
4969
  onFilterChange?: (event: MultiSelectTreeFilterChangeEvent) => void;
4969
4970
  /**
4970
- * Fires when the expanding or collapsing of an item is requested ([see examples]({% slug overview_multiselecttree %})).
4971
+ * Fires when the expanding or collapsing of an item is requested ([see examples](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree)).
4971
4972
  *
4972
4973
  * @example
4973
4974
  * ```jsx
@@ -4977,7 +4978,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4977
4978
  onExpandChange?: (event: any) => void;
4978
4979
  /**
4979
4980
  * Defines the component that will be used for rendering each of the MultiSelectTree items
4980
- * ([see example]({% slug customrendering_multiselecttree %}#toc-items-and-value-element)).
4981
+ * ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree/custom-rendering#toc-items-and-value-element)).
4981
4982
  *
4982
4983
  * @example
4983
4984
  * ```jsx
@@ -4987,7 +4988,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4987
4988
  item?: React_2.ComponentType<MultiSelectTreeItemProps>;
4988
4989
  /**
4989
4990
  * Defines the component that will be rendered in the MultiSelectTree popup when no data is available
4990
- * ([see example]({% slug customrendering_multiselecttree %}#toc-no-data)).
4991
+ * ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselecttree/custom-rendering#toc-no-data)).
4991
4992
  *
4992
4993
  * @example
4993
4994
  * ```jsx
@@ -5094,7 +5095,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
5094
5095
  * Represents the PropsContext of the `MultiSelectTree` component.
5095
5096
  * Used for global configuration of all `MultiSelectTree` instances.
5096
5097
  *
5097
- * For more information, refer to the [Dropdowns Props Context]({% slug props-context_dropdowns %}) article.
5098
+ * For more information, refer to the [Dropdowns Props Context](https://www.telerik.com/kendo-react-ui/components/dropdowns/props-context) article.
5098
5099
  */
5099
5100
  export declare const MultiSelectTreePropsContext: React_2.Context<(p: MultiSelectTreeProps) => MultiSelectTreeProps>;
5100
5101
 
@@ -5469,7 +5470,7 @@ declare interface TagListProps {
5469
5470
  }
5470
5471
 
5471
5472
  /**
5472
- * The props of the `ValueHolder` component ([see example]({% slug customrendering_dropdowntree %}#toc-items-and-value-element)).
5473
+ * The props of the `ValueHolder` component ([see example](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdowntree/custom-rendering#toc-items-and-value-element)).
5473
5474
  */
5474
5475
  export declare interface ValueHolderProps {
5475
5476
  /**