@progress/kendo-react-dropdowns 13.3.0-develop.2 → 13.3.0-develop.4

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
 
@@ -621,8 +621,8 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
621
621
  * @hidden
622
622
  */
623
623
  static propTypes: {
624
- size: default_2.Requireable<"small" | "large" | "medium" | null | undefined>;
625
- rounded: default_2.Requireable<"small" | "large" | "medium" | "full" | null | undefined>;
624
+ size: default_2.Requireable<"small" | "medium" | "large" | null | undefined>;
625
+ rounded: default_2.Requireable<"small" | "medium" | "large" | "full" | null | undefined>;
626
626
  fillMode: default_2.Requireable<"flat" | "solid" | "outline" | null | undefined>;
627
627
  groupField: default_2.Requireable<string>;
628
628
  suggest: default_2.Requireable<NonNullable<string | boolean | null | undefined>>;
@@ -680,8 +680,8 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
680
680
  * @hidden
681
681
  */
682
682
  static defaultProps: {
683
- size: "small" | "large" | "medium" | null | undefined;
684
- rounded: "small" | "large" | "medium" | "full" | null | undefined;
683
+ size: "small" | "medium" | "large" | null | undefined;
684
+ rounded: "small" | "medium" | "large" | "full" | null | undefined;
685
685
  fillMode: "flat" | "solid" | "outline" | null | undefined;
686
686
  skipDisabledItems: boolean;
687
687
  prefix: undefined;
@@ -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
 
@@ -1534,8 +1534,8 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1534
1534
  static displayName: string;
1535
1535
  /** @hidden */
1536
1536
  static propTypes: {
1537
- size: default_2.Requireable<"small" | "large" | "medium" | null | undefined>;
1538
- rounded: default_2.Requireable<"small" | "large" | "medium" | "full" | null | undefined>;
1537
+ size: default_2.Requireable<"small" | "medium" | "large" | null | undefined>;
1538
+ rounded: default_2.Requireable<"small" | "medium" | "large" | "full" | null | undefined>;
1539
1539
  fillMode: default_2.Requireable<"flat" | "solid" | "outline" | null | undefined>;
1540
1540
  dataItemKey: default_2.Requireable<string>;
1541
1541
  groupField: default_2.Requireable<string>;
@@ -1607,8 +1607,8 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
1607
1607
  };
1608
1608
  /** @hidden */
1609
1609
  static defaultProps: {
1610
- size: "small" | "large" | "medium" | null | undefined;
1611
- rounded: "small" | "large" | "medium" | "full" | null | undefined;
1610
+ size: "small" | "medium" | "large" | null | undefined;
1611
+ rounded: "small" | "medium" | "large" | "full" | null | undefined;
1612
1612
  fillMode: "flat" | "solid" | "outline" | null | undefined;
1613
1613
  allowCustom: boolean;
1614
1614
  clearButton: boolean;
@@ -1924,10 +1924,10 @@ declare interface DropdownEvent<T> {
1924
1924
  }
1925
1925
 
1926
1926
  /**
1927
- * Represents the [KendoReact DropDownList component]({% slug overview_dropdownlist %}).
1927
+ * Represents the [KendoReact DropDownList component](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist).
1928
1928
  *
1929
- * Accepts properties of type [DropDownListProps]({% slug api_dropdowns_dropdownlistprops %}).
1930
- * 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).
1931
1931
  *
1932
1932
  */
1933
1933
  export declare const DropDownList: React_2.ForwardRefExoticComponent<DropDownListProps & React_2.RefAttributes<DropDownListHandle>>;
@@ -1955,8 +1955,8 @@ export declare interface DropDownListCloseEvent extends CloseEvent_2<DropDownLis
1955
1955
  */
1956
1956
  export declare const dropDownListDefaultProps: {
1957
1957
  required: boolean;
1958
- size: "small" | "large" | "medium" | null | undefined;
1959
- rounded: "small" | "large" | "medium" | "full" | null | undefined;
1958
+ size: "small" | "medium" | "large" | null | undefined;
1959
+ rounded: "small" | "medium" | "large" | "full" | null | undefined;
1960
1960
  fillMode: "flat" | "solid" | "outline" | null | undefined;
1961
1961
  groupMode: string | undefined;
1962
1962
  popupSettings: {
@@ -2039,11 +2039,11 @@ export declare interface DropDownListPageChangeEvent extends PageChangeEvent<Dro
2039
2039
  }
2040
2040
 
2041
2041
  /**
2042
- * 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).
2043
2043
  */
2044
2044
  export declare interface DropDownListProps extends FormComponentProps {
2045
2045
  /**
2046
- * 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)).
2047
2047
  *
2048
2048
  * @example
2049
2049
  * ```jsx
@@ -2097,7 +2097,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2097
2097
  */
2098
2098
  style?: React.CSSProperties;
2099
2099
  /**
2100
- * 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.
2101
2101
  *
2102
2102
  * @example
2103
2103
  * ```jsx
@@ -2106,7 +2106,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2106
2106
  */
2107
2107
  value?: any;
2108
2108
  /**
2109
- * 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.
2110
2110
  *
2111
2111
  * @example
2112
2112
  * ```jsx
@@ -2169,7 +2169,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2169
2169
  */
2170
2170
  dir?: string;
2171
2171
  /**
2172
- * 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)).
2173
2173
  *
2174
2174
  * @example
2175
2175
  * ```jsx
@@ -2214,7 +2214,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2214
2214
  */
2215
2215
  accessKey?: string;
2216
2216
  /**
2217
- * 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.
2218
2218
  *
2219
2219
  * @example
2220
2220
  * ```jsx
@@ -2223,7 +2223,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2223
2223
  */
2224
2224
  textField?: string;
2225
2225
  /**
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]({% 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)).
2227
2227
  *
2228
2228
  * @example
2229
2229
  * ```jsx
@@ -2306,7 +2306,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2306
2306
  */
2307
2307
  popupSettings?: DropDownsPopupSettings;
2308
2308
  /**
2309
- * 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)).
2310
2310
  *
2311
2311
  * @example
2312
2312
  * ```jsx
@@ -2368,7 +2368,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2368
2368
  */
2369
2369
  onBlur?: (event: DropDownListBlurEvent) => void;
2370
2370
  /**
2371
- * 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)).
2372
2372
  *
2373
2373
  * @example
2374
2374
  * ```jsx
@@ -2386,7 +2386,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2386
2386
  */
2387
2387
  onFilterChange?: (event: DropDownListFilterChangeEvent) => void;
2388
2388
  /**
2389
- * 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)).
2390
2390
  *
2391
2391
  * @example
2392
2392
  * ```jsx
@@ -2395,7 +2395,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2395
2395
  */
2396
2396
  onPageChange?: (event: DropDownListPageChangeEvent) => void;
2397
2397
  /**
2398
- * 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.
2399
2399
  *
2400
2400
  * @example
2401
2401
  * ```jsx
@@ -2404,7 +2404,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2404
2404
  */
2405
2405
  itemRender?: (li: React.ReactElement<HTMLLIElement>, itemProps: ListItemProps) => React.ReactNode;
2406
2406
  /**
2407
- * 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.
2408
2408
  *
2409
2409
  * @example
2410
2410
  * ```jsx
@@ -2413,7 +2413,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2413
2413
  */
2414
2414
  valueRender?: (element: React.ReactElement<HTMLSpanElement>, value: any) => React.ReactNode;
2415
2415
  /**
2416
- * 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.
2417
2417
  *
2418
2418
  * @example
2419
2419
  * ```jsx
@@ -2422,7 +2422,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2422
2422
  */
2423
2423
  listNoDataRender?: (element: React.ReactElement<HTMLDivElement>) => React.ReactNode;
2424
2424
  /**
2425
- * 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)).
2426
2426
  *
2427
2427
  * @example
2428
2428
  * ```jsx
@@ -2431,7 +2431,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2431
2431
  */
2432
2432
  header?: React.ReactNode;
2433
2433
  /**
2434
- * 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)).
2435
2435
  *
2436
2436
  * @example
2437
2437
  * ```jsx
@@ -2595,7 +2595,7 @@ export declare interface DropDownListProps extends FormComponentProps {
2595
2595
  * Represents the PropsContext of the `DropDownList` component.
2596
2596
  * Used for global configuration of all `DropDownList` instances.
2597
2597
  *
2598
- * 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.
2599
2599
  */
2600
2600
  export declare const DropDownListPropsContext: React_2.Context<(p: DropDownListProps) => DropDownListProps>;
2601
2601
 
@@ -2654,8 +2654,8 @@ declare interface DropDownStateBase {
2654
2654
  /**
2655
2655
  * Represents the DropDownTree component.
2656
2656
  *
2657
- * Accepts properties of type [DropDownTreeProps]({% slug api_dropdowns_dropdowntreeprops %}).
2658
- * 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).
2659
2659
  *
2660
2660
  * @example
2661
2661
  * ```jsx
@@ -2786,11 +2786,11 @@ export declare interface DropDownTreeOpenEvent extends OpenEvent<DropDownTreeHan
2786
2786
  }
2787
2787
 
2788
2788
  /**
2789
- * 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).
2790
2790
  */
2791
2791
  export declare interface DropDownTreeProps extends FormComponentProps {
2792
2792
  /**
2793
- * 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)).
2794
2794
  *
2795
2795
  * @example
2796
2796
  * ```jsx
@@ -2817,7 +2817,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
2817
2817
  */
2818
2818
  style?: React.CSSProperties;
2819
2819
  /**
2820
- * 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)).
2821
2821
  * It can be an object from the data-tree.
2822
2822
  *
2823
2823
  * @example
@@ -2836,7 +2836,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
2836
2836
  */
2837
2837
  placeholder?: string;
2838
2838
  /**
2839
- * 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)).
2840
2840
  * If `dataItemKey` is not set, the DropDownTree compares the items by reference.
2841
2841
  *
2842
2842
  * @example
@@ -2910,7 +2910,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
2910
2910
  */
2911
2911
  ariaLabelledBy?: string;
2912
2912
  /**
2913
- * 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)).
2914
2914
  *
2915
2915
  * @example
2916
2916
  * ```jsx
@@ -2929,7 +2929,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
2929
2929
  */
2930
2930
  filter?: string;
2931
2931
  /**
2932
- * 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)).
2933
2933
  *
2934
2934
  * @example
2935
2935
  * ```jsx
@@ -2956,7 +2956,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
2956
2956
  */
2957
2957
  accessKey?: string;
2958
2958
  /**
2959
- * 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)).
2960
2960
  *
2961
2961
  * @example
2962
2962
  * ```jsx
@@ -3047,7 +3047,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3047
3047
  */
3048
3048
  onBlur?: (event: DropDownTreeBlurEvent) => void;
3049
3049
  /**
3050
- * 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)).
3051
3051
  *
3052
3052
  * @example
3053
3053
  * ```jsx
@@ -3057,7 +3057,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3057
3057
  onChange?: (event: DropDownTreeChangeEvent) => void;
3058
3058
  /**
3059
3059
  * Fires each time the user types in the filter input
3060
- * ([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)).
3061
3061
  * You can filter the source based on the passed filtration value.
3062
3062
  *
3063
3063
  * @example
@@ -3067,7 +3067,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3067
3067
  */
3068
3068
  onFilterChange?: (event: DropDownTreeFilterChangeEvent) => void;
3069
3069
  /**
3070
- * 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)).
3071
3071
  *
3072
3072
  * @example
3073
3073
  * ```jsx
@@ -3077,7 +3077,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3077
3077
  onExpandChange?: (event: any) => void;
3078
3078
  /**
3079
3079
  * Defines the component that will be used for rendering each of the DropDownTree items
3080
- * ([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)).
3081
3081
  *
3082
3082
  * @example
3083
3083
  * ```jsx
@@ -3087,7 +3087,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3087
3087
  item?: React.ComponentType<ItemProps>;
3088
3088
  /**
3089
3089
  * Defines the component that will be used for rendering the selected value
3090
- * ([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)).
3091
3091
  *
3092
3092
  * @example
3093
3093
  * ```jsx
@@ -3097,7 +3097,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3097
3097
  valueHolder?: React.ComponentType<ValueHolderProps>;
3098
3098
  /**
3099
3099
  * Defines the component that will be rendered in the DropDownTree popup when no data is available
3100
- * ([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)).
3101
3101
  *
3102
3102
  * @example
3103
3103
  * ```jsx
@@ -3195,7 +3195,7 @@ export declare interface DropDownTreeProps extends FormComponentProps {
3195
3195
  * Represents the PropsContext of the `DropDownTree` component.
3196
3196
  * Used for global configuration of all `DropDownTree` instances.
3197
3197
  *
3198
- * 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.
3199
3199
  */
3200
3200
  export declare const DropDownTreePropsContext: React_2.Context<(p: DropDownTreeProps) => DropDownTreeProps>;
3201
3201
 
@@ -3224,9 +3224,9 @@ declare interface FilterChangeEvent<T> extends DropdownEvent<T> {
3224
3224
  }
3225
3225
 
3226
3226
  /**
3227
- * 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).
3228
3228
  *
3229
- * 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.
3230
3230
  */
3231
3231
  declare interface FilterDescriptor {
3232
3232
  /**
@@ -3330,7 +3330,7 @@ declare interface InternalState {
3330
3330
 
3331
3331
  /**
3332
3332
  * The props of component that will be used for rendering each of the DropDownTree items
3333
- * ([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)).
3334
3334
  */
3335
3335
  export declare interface ItemProps extends ItemRenderProps {
3336
3336
  }
@@ -3464,7 +3464,7 @@ export declare interface ListItemProps {
3464
3464
  }
3465
3465
 
3466
3466
  /**
3467
- * 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)).
3468
3468
  */
3469
3469
  export declare interface ListNoDataProps {
3470
3470
  /**
@@ -3512,8 +3512,8 @@ declare interface ListProps {
3512
3512
  /**
3513
3513
  * Represents the MultiColumnComboBox component.
3514
3514
  *
3515
- * Accepts properties of type [MultiColumnComboBoxProps]({% slug api_dropdowns_multicolumncomboboxprops %}).
3516
- * 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).
3517
3517
  *
3518
3518
  * @example
3519
3519
  * ```jsx
@@ -3617,7 +3617,7 @@ export declare interface MultiColumnComboBoxHandle {
3617
3617
  }
3618
3618
 
3619
3619
  /**
3620
- * 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.
3621
3621
  */
3622
3622
  export declare interface MultiColumnComboBoxProps extends ComboBoxProps {
3623
3623
  /**
@@ -3801,7 +3801,7 @@ export declare interface MultiColumnComboBoxProps extends ComboBoxProps {
3801
3801
  * Represents the PropsContext of the `MultiColumnComboBox` component.
3802
3802
  * Used for global configuration of all `MultiColumnComboBox` instances.
3803
3803
  *
3804
- * 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.
3805
3805
  */
3806
3806
  export declare const MultiColumnComboBoxPropsContext: React_2.Context<(p: MultiColumnComboBoxProps) => MultiColumnComboBoxProps>;
3807
3807
 
@@ -3809,10 +3809,10 @@ export declare const MultiColumnComboBoxPropsContext: React_2.Context<(p: MultiC
3809
3809
  export declare type MultiSelect = MultiSelectHandle;
3810
3810
 
3811
3811
  /**
3812
- * Represents the [KendoReact MultiSelect component]({% slug overview_multiselect %}).
3812
+ * Represents the [KendoReact MultiSelect component](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect).
3813
3813
  *
3814
- * Accepts properties of type [MultiSelectProps]({% slug api_dropdowns_multiselectprops %}).
3815
- * 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).
3816
3816
  *
3817
3817
  * @example
3818
3818
  * ```jsx
@@ -3920,11 +3920,11 @@ export declare interface MultiSelectPageChangeEvent extends PageChangeEvent<Mult
3920
3920
  }
3921
3921
 
3922
3922
  /**
3923
- * 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).
3924
3924
  */
3925
3925
  export declare interface MultiSelectProps extends FormComponentProps {
3926
3926
  /**
3927
- * 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`.
3928
3928
  *
3929
3929
  * @example
3930
3930
  * ```jsx
@@ -3933,7 +3933,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
3933
3933
  */
3934
3934
  allowCustom?: boolean;
3935
3935
  /**
3936
- * 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)).
3937
3937
  *
3938
3938
  * @example
3939
3939
  * ```jsx
@@ -3969,7 +3969,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
3969
3969
  */
3970
3970
  style?: React.CSSProperties;
3971
3971
  /**
3972
- * 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.
3973
3973
  *
3974
3974
  * @example
3975
3975
  * ```jsx
@@ -3987,7 +3987,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
3987
3987
  */
3988
3988
  placeholder?: string;
3989
3989
  /**
3990
- * 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)).
3991
3991
  *
3992
3992
  * @example
3993
3993
  * ```jsx
@@ -3996,7 +3996,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
3996
3996
  */
3997
3997
  tags?: Array<TagData>;
3998
3998
  /**
3999
- * 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.
4000
4000
  *
4001
4001
  * @example
4002
4002
  * ```jsx
@@ -4041,7 +4041,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4041
4041
  */
4042
4042
  dir?: string;
4043
4043
  /**
4044
- * 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)).
4045
4045
  *
4046
4046
  * @example
4047
4047
  * ```jsx
@@ -4122,7 +4122,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4122
4122
  */
4123
4123
  adaptiveFilter?: string;
4124
4124
  /**
4125
- * 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)).
4126
4126
  *
4127
4127
  * @example
4128
4128
  * ```jsx
@@ -4149,7 +4149,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4149
4149
  */
4150
4150
  accessKey?: string;
4151
4151
  /**
4152
- * 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.
4153
4153
  *
4154
4154
  * @example
4155
4155
  * ```jsx
@@ -4176,7 +4176,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4176
4176
  */
4177
4177
  popupSettings?: DropDownsPopupSettings;
4178
4178
  /**
4179
- * 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)).
4180
4180
  *
4181
4181
  * @example
4182
4182
  * ```jsx
@@ -4221,7 +4221,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4221
4221
  */
4222
4222
  onBlur?: (event: MultiSelectBlurEvent) => void;
4223
4223
  /**
4224
- * 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)).
4225
4225
  *
4226
4226
  * @example
4227
4227
  * ```jsx
@@ -4230,7 +4230,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4230
4230
  */
4231
4231
  onChange?: (event: MultiSelectChangeEvent) => void;
4232
4232
  /**
4233
- * 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)).
4234
4234
  *
4235
4235
  * @example
4236
4236
  * ```jsx
@@ -4239,7 +4239,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4239
4239
  */
4240
4240
  onCancel?: (event: MultiSelectCancelEvent) => void;
4241
4241
  /**
4242
- * 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.
4243
4243
  *
4244
4244
  * @example
4245
4245
  * ```jsx
@@ -4248,7 +4248,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4248
4248
  */
4249
4249
  onFilterChange?: (event: MultiSelectFilterChangeEvent) => void;
4250
4250
  /**
4251
- * 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)).
4252
4252
  *
4253
4253
  * @example
4254
4254
  * ```jsx
@@ -4257,7 +4257,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4257
4257
  */
4258
4258
  onPageChange?: (event: MultiSelectPageChangeEvent) => void;
4259
4259
  /**
4260
- * 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.
4261
4261
  *
4262
4262
  * @example
4263
4263
  * ```jsx
@@ -4266,7 +4266,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4266
4266
  */
4267
4267
  itemRender?: (li: React.ReactElement<HTMLLIElement>, itemProps: ListItemProps) => React.ReactNode;
4268
4268
  /**
4269
- * 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.
4270
4270
  *
4271
4271
  * @example
4272
4272
  * ```jsx
@@ -4275,7 +4275,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4275
4275
  */
4276
4276
  listNoDataRender?: (element: React.ReactElement<HTMLDivElement>) => React.ReactNode;
4277
4277
  /**
4278
- * 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.
4279
4279
  *
4280
4280
  * @example
4281
4281
  * ```jsx
@@ -4284,7 +4284,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4284
4284
  */
4285
4285
  tagRender?: (tagData: TagData, tag: React.ReactElement<any>) => React.ReactElement<any>;
4286
4286
  /**
4287
- * 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)).
4288
4288
  *
4289
4289
  * @example
4290
4290
  * ```jsx
@@ -4293,7 +4293,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4293
4293
  */
4294
4294
  header?: React.ReactNode;
4295
4295
  /**
4296
- * 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)).
4297
4297
  *
4298
4298
  * @example
4299
4299
  * ```jsx
@@ -4468,7 +4468,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
4468
4468
  * Represents the PropsContext of the `MultiSelect` component.
4469
4469
  * Used for global configuration of all `MultiSelect` instances.
4470
4470
  *
4471
- * 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.
4472
4472
  */
4473
4473
  export declare const MultiSelectPropsContext: React_2.Context<(p: MultiSelectProps) => MultiSelectProps>;
4474
4474
 
@@ -4486,8 +4486,8 @@ declare interface MultiSelectState extends DropDownStateBase {
4486
4486
  /**
4487
4487
  * Represents the MultiSelectTree component.
4488
4488
  *
4489
- * Accepts properties of type [MultiSelectTreeProps]({% slug api_dropdowns_multiselecttreeprops %}).
4490
- * 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).
4491
4491
  *
4492
4492
  * @example
4493
4493
  * ```jsx
@@ -4639,13 +4639,13 @@ export declare interface MultiSelectTreeHandle {
4639
4639
 
4640
4640
  /**
4641
4641
  * The props of component that will be used for rendering each of the MultiSelectTree items
4642
- * ([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)).
4643
4643
  */
4644
4644
  export declare interface MultiSelectTreeItemProps extends ItemRenderProps {
4645
4645
  }
4646
4646
 
4647
4647
  /**
4648
- * 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)).
4649
4649
  */
4650
4650
  export declare interface MultiSelectTreeListNoDataProps {
4651
4651
  /**
@@ -4661,11 +4661,11 @@ export declare interface MultiSelectTreeOpenEvent extends OpenEvent<MultiSelectT
4661
4661
  }
4662
4662
 
4663
4663
  /**
4664
- * 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).
4665
4665
  */
4666
4666
  export declare interface MultiSelectTreeProps extends FormComponentProps {
4667
4667
  /**
4668
- * 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)).
4669
4669
  *
4670
4670
  * @example
4671
4671
  * ```jsx
@@ -4710,7 +4710,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4710
4710
  */
4711
4711
  placeholder?: string;
4712
4712
  /**
4713
- * 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)).
4714
4714
  * If `dataItemKey` is not set, the MultiSelectTree compares the items by reference.
4715
4715
  *
4716
4716
  * @example
@@ -4765,7 +4765,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4765
4765
  */
4766
4766
  id?: string;
4767
4767
  /**
4768
- * 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)).
4769
4769
  *
4770
4770
  * @example
4771
4771
  * ```jsx
@@ -4793,7 +4793,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4793
4793
  */
4794
4794
  ariaLabelledBy?: string;
4795
4795
  /**
4796
- * 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)).
4797
4797
  *
4798
4798
  * @example
4799
4799
  * ```jsx
@@ -4812,7 +4812,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4812
4812
  */
4813
4813
  filter?: string;
4814
4814
  /**
4815
- * 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)).
4816
4816
  *
4817
4817
  * @example
4818
4818
  * ```jsx
@@ -4839,7 +4839,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4839
4839
  */
4840
4840
  accessKey?: string;
4841
4841
  /**
4842
- * 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)).
4843
4843
  *
4844
4844
  * @example
4845
4845
  * ```jsx
@@ -4939,7 +4939,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4939
4939
  */
4940
4940
  onBlur?: (event: MultiSelectTreeBlurEvent) => void;
4941
4941
  /**
4942
- * 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)).
4943
4943
  *
4944
4944
  * @example
4945
4945
  * ```jsx
@@ -4948,7 +4948,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4948
4948
  */
4949
4949
  onChange?: (event: MultiSelectTreeChangeEvent) => void;
4950
4950
  /**
4951
- * 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)).
4952
4952
  *
4953
4953
  * @example
4954
4954
  * ```jsx
@@ -4958,7 +4958,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4958
4958
  onCancel?: (event: MultiSelectTreeCancelEvent) => void;
4959
4959
  /**
4960
4960
  * Fires each time the user types in the filter input
4961
- * ([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)).
4962
4962
  * You can filter the source based on the passed filtration value.
4963
4963
  *
4964
4964
  * @example
@@ -4968,7 +4968,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4968
4968
  */
4969
4969
  onFilterChange?: (event: MultiSelectTreeFilterChangeEvent) => void;
4970
4970
  /**
4971
- * 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)).
4972
4972
  *
4973
4973
  * @example
4974
4974
  * ```jsx
@@ -4978,7 +4978,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4978
4978
  onExpandChange?: (event: any) => void;
4979
4979
  /**
4980
4980
  * Defines the component that will be used for rendering each of the MultiSelectTree items
4981
- * ([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)).
4982
4982
  *
4983
4983
  * @example
4984
4984
  * ```jsx
@@ -4988,7 +4988,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
4988
4988
  item?: React_2.ComponentType<MultiSelectTreeItemProps>;
4989
4989
  /**
4990
4990
  * Defines the component that will be rendered in the MultiSelectTree popup when no data is available
4991
- * ([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)).
4992
4992
  *
4993
4993
  * @example
4994
4994
  * ```jsx
@@ -5095,7 +5095,7 @@ export declare interface MultiSelectTreeProps extends FormComponentProps {
5095
5095
  * Represents the PropsContext of the `MultiSelectTree` component.
5096
5096
  * Used for global configuration of all `MultiSelectTree` instances.
5097
5097
  *
5098
- * 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.
5099
5099
  */
5100
5100
  export declare const MultiSelectTreePropsContext: React_2.Context<(p: MultiSelectTreeProps) => MultiSelectTreeProps>;
5101
5101
 
@@ -5192,8 +5192,8 @@ export declare class MultiSelectWithoutContext extends React_2.Component<MultiSe
5192
5192
  static defaultProps: {
5193
5193
  autoClose: boolean;
5194
5194
  required: boolean;
5195
- size: "small" | "large" | "medium" | null | undefined;
5196
- rounded: "small" | "large" | "medium" | "full" | null | undefined;
5195
+ size: "small" | "medium" | "large" | null | undefined;
5196
+ rounded: "small" | "medium" | "large" | "full" | null | undefined;
5197
5197
  fillMode: "flat" | "solid" | "outline" | null | undefined;
5198
5198
  groupMode: string | undefined;
5199
5199
  skipDisabledItems: boolean;
@@ -5470,7 +5470,7 @@ declare interface TagListProps {
5470
5470
  }
5471
5471
 
5472
5472
  /**
5473
- * 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)).
5474
5474
  */
5475
5475
  export declare interface ValueHolderProps {
5476
5476
  /**