@progress/kendo-react-layout 7.2.4-develop.3 → 7.3.0-develop.1

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.
Files changed (288) hide show
  1. package/actionsheet/ActionSheet.js +8 -0
  2. package/actionsheet/ActionSheet.mjs +184 -0
  3. package/actionsheet/ActionSheetContent.js +8 -0
  4. package/actionsheet/ActionSheetContent.mjs +32 -0
  5. package/actionsheet/ActionSheetFooter.js +8 -0
  6. package/actionsheet/ActionSheetFooter.mjs +32 -0
  7. package/actionsheet/ActionSheetHeader.js +8 -0
  8. package/actionsheet/ActionSheetHeader.mjs +32 -0
  9. package/actionsheet/ActionSheetItem.js +8 -0
  10. package/actionsheet/ActionSheetItem.mjs +52 -0
  11. package/appbar/AppBar.js +8 -0
  12. package/appbar/AppBar.mjs +86 -0
  13. package/appbar/AppBarSection.js +8 -0
  14. package/appbar/AppBarSection.mjs +47 -0
  15. package/appbar/AppBarSpacer.js +8 -0
  16. package/appbar/AppBarSpacer.mjs +55 -0
  17. package/bottomnavigation/BottomNavigation.js +8 -0
  18. package/bottomnavigation/BottomNavigation.mjs +160 -0
  19. package/bottomnavigation/BottomNavigationItem.js +8 -0
  20. package/bottomnavigation/BottomNavigationItem.mjs +93 -0
  21. package/bottomnavigation/models/utils.js +8 -0
  22. package/bottomnavigation/models/utils.mjs +19 -0
  23. package/breadcrumb/Breadcrumb.js +8 -0
  24. package/breadcrumb/Breadcrumb.mjs +158 -0
  25. package/breadcrumb/BreadcrumbDelimiter.js +8 -0
  26. package/breadcrumb/BreadcrumbDelimiter.mjs +48 -0
  27. package/breadcrumb/BreadcrumbLink.js +8 -0
  28. package/breadcrumb/BreadcrumbLink.mjs +82 -0
  29. package/breadcrumb/BreadcrumbListItem.js +8 -0
  30. package/breadcrumb/BreadcrumbListItem.mjs +52 -0
  31. package/breadcrumb/BreadcrumbOrderedList.js +8 -0
  32. package/breadcrumb/BreadcrumbOrderedList.mjs +67 -0
  33. package/card/Avatar.js +8 -0
  34. package/card/Avatar.mjs +53 -0
  35. package/card/Card.js +8 -0
  36. package/card/Card.mjs +52 -0
  37. package/card/CardActions.js +8 -0
  38. package/card/CardActions.mjs +40 -0
  39. package/card/CardBody.js +8 -0
  40. package/card/CardBody.mjs +28 -0
  41. package/card/CardFooter.js +8 -0
  42. package/card/CardFooter.mjs +28 -0
  43. package/card/CardHeader.js +8 -0
  44. package/card/CardHeader.mjs +28 -0
  45. package/card/CardImage.js +8 -0
  46. package/card/CardImage.mjs +36 -0
  47. package/card/CardSubtitle.js +8 -0
  48. package/card/CardSubtitle.mjs +28 -0
  49. package/card/CardTitle.js +8 -0
  50. package/card/CardTitle.mjs +28 -0
  51. package/card/interfaces/Enums.js +8 -0
  52. package/card/interfaces/Enums.mjs +15 -0
  53. package/contextmenu/ContextMenu.js +8 -0
  54. package/contextmenu/ContextMenu.mjs +48 -0
  55. package/dist/cdn/js/kendo-react-layout.js +8 -5
  56. package/drawer/Drawer.js +8 -0
  57. package/drawer/Drawer.mjs +130 -0
  58. package/drawer/DrawerContent.js +8 -0
  59. package/drawer/DrawerContent.mjs +33 -0
  60. package/drawer/DrawerItem.js +8 -0
  61. package/drawer/DrawerItem.mjs +89 -0
  62. package/drawer/DrawerNavigation.js +8 -0
  63. package/drawer/DrawerNavigation.mjs +132 -0
  64. package/drawer/context/DrawerContext.js +8 -0
  65. package/drawer/context/DrawerContext.mjs +22 -0
  66. package/expansionpanel/ExpansionPanel.js +8 -0
  67. package/expansionpanel/ExpansionPanel.mjs +116 -0
  68. package/expansionpanel/ExpansionPanelContent.js +8 -0
  69. package/expansionpanel/ExpansionPanelContent.mjs +23 -0
  70. package/gridlayout/GridLayout.js +8 -0
  71. package/gridlayout/GridLayout.mjs +83 -0
  72. package/gridlayout/GridLayoutItem.js +8 -0
  73. package/gridlayout/GridLayoutItem.mjs +46 -0
  74. package/index.d.mts +4593 -5
  75. package/index.d.ts +4593 -103
  76. package/index.js +8 -5
  77. package/index.mjs +139 -5037
  78. package/menu/components/Menu.js +8 -0
  79. package/menu/components/Menu.mjs +193 -0
  80. package/menu/components/MenuItem.js +8 -0
  81. package/menu/components/MenuItem.mjs +34 -0
  82. package/menu/components/MenuItemArrow.js +8 -0
  83. package/menu/components/MenuItemArrow.mjs +49 -0
  84. package/menu/components/MenuItemInternal.js +8 -0
  85. package/menu/components/MenuItemInternal.mjs +222 -0
  86. package/menu/components/MenuItemLink.js +8 -0
  87. package/menu/components/MenuItemLink.mjs +54 -0
  88. package/menu/consts.js +8 -0
  89. package/menu/consts.mjs +59 -0
  90. package/menu/utils/DirectionHolder.js +8 -0
  91. package/menu/utils/DirectionHolder.mjs +25 -0
  92. package/menu/utils/MouseOverHandler.js +8 -0
  93. package/menu/utils/MouseOverHandler.mjs +34 -0
  94. package/menu/utils/getNewItemIdUponKeyboardNavigation.js +8 -0
  95. package/menu/utils/getNewItemIdUponKeyboardNavigation.mjs +124 -0
  96. package/menu/utils/hoverDelay.js +8 -0
  97. package/menu/utils/hoverDelay.mjs +18 -0
  98. package/menu/utils/itemsIdsUtils.js +8 -0
  99. package/menu/utils/itemsIdsUtils.mjs +81 -0
  100. package/menu/utils/misc.js +8 -0
  101. package/menu/utils/misc.mjs +29 -0
  102. package/menu/utils/prepareInputItemsForInternalWork.js +8 -0
  103. package/menu/utils/prepareInputItemsForInternalWork.mjs +59 -0
  104. package/package-metadata.js +8 -0
  105. package/package-metadata.mjs +19 -0
  106. package/package.json +6 -6
  107. package/panelbar/PanelBar.js +8 -0
  108. package/panelbar/PanelBar.mjs +195 -0
  109. package/panelbar/PanelBarItem.js +8 -0
  110. package/panelbar/PanelBarItem.mjs +148 -0
  111. package/panelbar/interfaces/NavigationAction.js +8 -0
  112. package/panelbar/interfaces/NavigationAction.mjs +12 -0
  113. package/panelbar/util.js +8 -0
  114. package/panelbar/util.mjs +122 -0
  115. package/splitter/Splitter.js +8 -0
  116. package/splitter/Splitter.mjs +238 -0
  117. package/splitter/SplitterBar.js +8 -0
  118. package/splitter/SplitterBar.mjs +129 -0
  119. package/splitter/SplitterPane.js +8 -0
  120. package/splitter/SplitterPane.mjs +50 -0
  121. package/splitter/messages/index.js +8 -0
  122. package/splitter/messages/index.mjs +15 -0
  123. package/stacklayout/StackLayout.js +8 -0
  124. package/stacklayout/StackLayout.mjs +84 -0
  125. package/stepper/Step.js +8 -0
  126. package/stepper/Step.mjs +177 -0
  127. package/stepper/Stepper.js +8 -0
  128. package/stepper/Stepper.mjs +252 -0
  129. package/stepper/contants.js +8 -0
  130. package/stepper/contants.mjs +13 -0
  131. package/stepper/context/StepperContext.js +8 -0
  132. package/stepper/context/StepperContext.mjs +17 -0
  133. package/stepper/messages/index.js +8 -0
  134. package/stepper/messages/index.mjs +17 -0
  135. package/tabstrip/TabStrip.js +8 -0
  136. package/tabstrip/TabStrip.mjs +163 -0
  137. package/tabstrip/TabStripContent.js +8 -0
  138. package/tabstrip/TabStripContent.mjs +81 -0
  139. package/tabstrip/TabStripNavigation.js +8 -0
  140. package/tabstrip/TabStripNavigation.mjs +171 -0
  141. package/tabstrip/TabStripNavigationItem.js +8 -0
  142. package/tabstrip/TabStripNavigationItem.mjs +55 -0
  143. package/tabstrip/TabStripTab.js +8 -0
  144. package/tabstrip/TabStripTab.mjs +35 -0
  145. package/tilelayout/InternalTile.js +8 -0
  146. package/tilelayout/InternalTile.mjs +203 -0
  147. package/tilelayout/ResizeHandlers.js +8 -0
  148. package/tilelayout/ResizeHandlers.mjs +53 -0
  149. package/tilelayout/TileLayout.js +8 -0
  150. package/tilelayout/TileLayout.mjs +122 -0
  151. package/timeline/Timeline.js +8 -0
  152. package/timeline/Timeline.mjs +79 -0
  153. package/timeline/TimelineCard.js +8 -0
  154. package/timeline/TimelineCard.mjs +109 -0
  155. package/timeline/TimelineHorizontal.js +8 -0
  156. package/timeline/TimelineHorizontal.mjs +239 -0
  157. package/timeline/TimelineVertical.js +8 -0
  158. package/timeline/TimelineVertical.mjs +78 -0
  159. package/timeline/utils.js +8 -0
  160. package/timeline/utils.mjs +16 -0
  161. package/actionsheet/ActionSheet.d.ts +0 -138
  162. package/actionsheet/ActionSheetContent.d.ts +0 -14
  163. package/actionsheet/ActionSheetFooter.d.ts +0 -14
  164. package/actionsheet/ActionSheetHeader.d.ts +0 -14
  165. package/actionsheet/ActionSheetItem.d.ts +0 -10
  166. package/actionsheet/interfaces/ActionSheetChildrenProps.d.ts +0 -17
  167. package/actionsheet/interfaces/ActionSheetItemProps.d.ts +0 -70
  168. package/appbar/AppBar.d.ts +0 -54
  169. package/appbar/AppBarSection.d.ts +0 -53
  170. package/appbar/AppBarSpacer.d.ts +0 -54
  171. package/appbar/interfaces/AppBarProps.d.ts +0 -83
  172. package/appbar/interfaces/AppBarSectionProps.d.ts +0 -22
  173. package/appbar/interfaces/AppBarSpacerProps.d.ts +0 -23
  174. package/bottomnavigation/BottomNavigation.d.ts +0 -42
  175. package/bottomnavigation/BottomNavigationItem.d.ts +0 -16
  176. package/bottomnavigation/BottomNavigationItemProps.d.ts +0 -64
  177. package/bottomnavigation/BottomNavigationProps.d.ts +0 -157
  178. package/bottomnavigation/models/events.d.ts +0 -24
  179. package/bottomnavigation/models/utils.d.ts +0 -40
  180. package/breadcrumb/Breadcrumb.d.ts +0 -163
  181. package/breadcrumb/BreadcrumbDelimiter.d.ts +0 -47
  182. package/breadcrumb/BreadcrumbLink.d.ts +0 -135
  183. package/breadcrumb/BreadcrumbListItem.d.ts +0 -55
  184. package/breadcrumb/BreadcrumbOrderedList.d.ts +0 -59
  185. package/card/Avatar.d.ts +0 -7
  186. package/card/Card.d.ts +0 -8
  187. package/card/CardActions.d.ts +0 -7
  188. package/card/CardBody.d.ts +0 -7
  189. package/card/CardFooter.d.ts +0 -7
  190. package/card/CardHeader.d.ts +0 -7
  191. package/card/CardImage.d.ts +0 -7
  192. package/card/CardSubtitle.d.ts +0 -7
  193. package/card/CardTitle.d.ts +0 -7
  194. package/card/interfaces/AvatarProps.d.ts +0 -88
  195. package/card/interfaces/CardActionsProps.d.ts +0 -38
  196. package/card/interfaces/CardBodyProps.d.ts +0 -18
  197. package/card/interfaces/CardFooterProps.d.ts +0 -18
  198. package/card/interfaces/CardHandle.d.ts +0 -18
  199. package/card/interfaces/CardHeaderProps.d.ts +0 -18
  200. package/card/interfaces/CardImageProps.d.ts +0 -22
  201. package/card/interfaces/CardProps.d.ts +0 -48
  202. package/card/interfaces/CardSubtitleProps.d.ts +0 -18
  203. package/card/interfaces/CardTitleProps.d.ts +0 -18
  204. package/card/interfaces/Enums.d.ts +0 -27
  205. package/contextmenu/ContextMenu.d.ts +0 -31
  206. package/drawer/Drawer.d.ts +0 -44
  207. package/drawer/DrawerContent.d.ts +0 -43
  208. package/drawer/DrawerItem.d.ts +0 -36
  209. package/drawer/DrawerNavigation.d.ts +0 -47
  210. package/drawer/context/DrawerContext.d.ts +0 -24
  211. package/drawer/interfaces/DrawerAnimation.d.ts +0 -18
  212. package/drawer/interfaces/DrawerContentProps.d.ts +0 -21
  213. package/drawer/interfaces/DrawerItemHandle.d.ts +0 -21
  214. package/drawer/interfaces/DrawerItemProps.d.ts +0 -64
  215. package/drawer/interfaces/DrawerNavigationProps.d.ts +0 -21
  216. package/drawer/interfaces/DrawerProps.d.ts +0 -86
  217. package/drawer/interfaces/DrawerSelectEvent.d.ts +0 -19
  218. package/expansionpanel/ExpansionPanel.d.ts +0 -10
  219. package/expansionpanel/ExpansionPanelContent.d.ts +0 -9
  220. package/expansionpanel/index.d.ts +0 -7
  221. package/expansionpanel/interfaces.d.ts +0 -92
  222. package/gridlayout/GridLayout.d.ts +0 -43
  223. package/gridlayout/GridLayoutItem.d.ts +0 -42
  224. package/gridlayout/interfaces/GridLayoutColumnProps.d.ts +0 -13
  225. package/gridlayout/interfaces/GridLayoutItemProps.d.ts +0 -44
  226. package/gridlayout/interfaces/GridLayoutProps.d.ts +0 -99
  227. package/gridlayout/interfaces/GridLayoutRowProps.d.ts +0 -13
  228. package/menu/BaseMenuItemInternalProps.d.ts +0 -24
  229. package/menu/MenuProps.d.ts +0 -75
  230. package/menu/components/Menu.d.ts +0 -118
  231. package/menu/components/MenuItem.d.ts +0 -33
  232. package/menu/components/MenuItemArrow.d.ts +0 -50
  233. package/menu/components/MenuItemInternal.d.ts +0 -63
  234. package/menu/components/MenuItemLink.d.ts +0 -34
  235. package/menu/consts.d.ts +0 -58
  236. package/menu/events.d.ts +0 -20
  237. package/menu/models/BaseMenuItem.d.ts +0 -58
  238. package/menu/models/MenuItemModel.d.ts +0 -23
  239. package/menu/utils/DirectionHolder.d.ts +0 -15
  240. package/menu/utils/MouseOverHandler.d.ts +0 -21
  241. package/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +0 -11
  242. package/menu/utils/hoverDelay.d.ts +0 -13
  243. package/menu/utils/itemsIdsUtils.d.ts +0 -68
  244. package/menu/utils/misc.d.ts +0 -20
  245. package/menu/utils/prepareInputItemsForInternalWork.d.ts +0 -10
  246. package/package-metadata.d.ts +0 -9
  247. package/panelbar/PanelBar.d.ts +0 -81
  248. package/panelbar/PanelBarItem.d.ts +0 -52
  249. package/panelbar/interfaces/NavigationAction.d.ts +0 -12
  250. package/panelbar/interfaces/PanelBarItemClickEventArguments.d.ts +0 -12
  251. package/panelbar/interfaces/PanelBarItemProps.d.ts +0 -98
  252. package/panelbar/interfaces/PanelBarProps.d.ts +0 -66
  253. package/panelbar/interfaces/PanelBarSelectEventArguments.d.ts +0 -18
  254. package/panelbar/interfaces/RenderPanelBarItem.d.ts +0 -19
  255. package/panelbar/util.d.ts +0 -56
  256. package/splitter/Splitter.d.ts +0 -136
  257. package/splitter/SplitterBar.d.ts +0 -44
  258. package/splitter/SplitterPane.d.ts +0 -57
  259. package/splitter/messages/index.d.ts +0 -14
  260. package/stacklayout/StackLayout.d.ts +0 -41
  261. package/stacklayout/StackLayoutProps.d.ts +0 -92
  262. package/stepper/Step.d.ts +0 -27
  263. package/stepper/Stepper.d.ts +0 -27
  264. package/stepper/contants.d.ts +0 -12
  265. package/stepper/context/StepperContext.d.ts +0 -27
  266. package/stepper/interfaces/StepChangeEvent.d.ts +0 -15
  267. package/stepper/interfaces/StepFocusEvent.d.ts +0 -11
  268. package/stepper/interfaces/StepHandle.d.ts +0 -17
  269. package/stepper/interfaces/StepProps.d.ts +0 -83
  270. package/stepper/interfaces/StepperChangeEvent.d.ts +0 -15
  271. package/stepper/interfaces/StepperFocusEvent.d.ts +0 -11
  272. package/stepper/interfaces/StepperHandle.d.ts +0 -17
  273. package/stepper/interfaces/StepperProps.d.ts +0 -98
  274. package/stepper/messages/index.d.ts +0 -19
  275. package/tabstrip/TabStrip.d.ts +0 -158
  276. package/tabstrip/TabStripContent.d.ts +0 -62
  277. package/tabstrip/TabStripNavigation.d.ts +0 -110
  278. package/tabstrip/TabStripNavigationItem.d.ts +0 -75
  279. package/tabstrip/TabStripTab.d.ts +0 -42
  280. package/tilelayout/InternalTile.d.ts +0 -94
  281. package/tilelayout/ResizeHandlers.d.ts +0 -24
  282. package/tilelayout/TileLayout.d.ts +0 -153
  283. package/tilelayout/interfaces/index.d.ts +0 -145
  284. package/timeline/Timeline.d.ts +0 -102
  285. package/timeline/TimelineCard.d.ts +0 -38
  286. package/timeline/TimelineHorizontal.d.ts +0 -7
  287. package/timeline/TimelineVertical.d.ts +0 -16
  288. package/timeline/utils.d.ts +0 -19
package/index.d.ts CHANGED
@@ -1,103 +1,4593 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { Menu as MenuClassComponent, type MenuState, type MenuHandle } from './menu/components/Menu';
6
- import { MenuProps } from './menu/MenuProps';
7
- import { TabStrip as TabStripClassComponent, type TabStripScrollableProps, type TabStripSelectEventArguments, type TabStripProps } from './tabstrip/TabStrip';
8
- import { MenuItemInternalsList } from './menu/components/MenuItemInternal';
9
- import { downArrowName, leftArrowName, rightArrowName } from './menu/components/MenuItemArrow';
10
- import { SplitterBar } from './splitter/SplitterBar';
11
- /** @hidden */
12
- declare const Menu: import("react").ForwardRefExoticComponent<MenuProps & import("react").RefAttributes<any>>;
13
- /** @hidden */
14
- declare const TabStrip: import("react").ForwardRefExoticComponent<TabStripProps & import("react").RefAttributes<any>>;
15
- export { TabStrip, TabStripClassComponent, TabStripScrollableProps, TabStripSelectEventArguments, TabStripProps, Menu, MenuState, MenuHandle, MenuClassComponent, MenuItemInternalsList, downArrowName, leftArrowName, rightArrowName, SplitterBar };
16
- export * from './tabstrip/TabStripContent';
17
- export * from './tabstrip/TabStripNavigation';
18
- export * from './tabstrip/TabStripNavigationItem';
19
- export * from './tabstrip/TabStripTab';
20
- export * from './panelbar/PanelBar';
21
- export * from './panelbar/PanelBarItem';
22
- export * from './panelbar/util';
23
- export * from './panelbar/interfaces/PanelBarProps';
24
- export * from './panelbar/interfaces/PanelBarItemProps';
25
- export * from './panelbar/interfaces/RenderPanelBarItem';
26
- export * from './panelbar/interfaces/PanelBarSelectEventArguments';
27
- export * from './menu/components/MenuItemLink';
28
- export * from './menu/components/MenuItem';
29
- export * from './menu/components/MenuItemArrow';
30
- export * from './menu/models/MenuItemModel';
31
- export * from './menu/events';
32
- export * from './splitter/Splitter';
33
- export * from './splitter/SplitterPane';
34
- export * from './card/Card';
35
- export * from './card/CardHeader';
36
- export * from './card/CardTitle';
37
- export * from './card/CardBody';
38
- export * from './card/CardActions';
39
- export * from './card/CardImage';
40
- export * from './card/CardSubtitle';
41
- export * from './card/CardFooter';
42
- export * from './card/interfaces/CardProps';
43
- export * from './card/interfaces/CardHandle';
44
- export * from './card/interfaces/AvatarProps';
45
- export * from './card/interfaces/CardActionsProps';
46
- export * from './card/Avatar';
47
- export * from './drawer/Drawer';
48
- export * from './drawer/interfaces/DrawerProps';
49
- export * from './drawer/DrawerNavigation';
50
- export * from './drawer/interfaces/DrawerNavigationProps';
51
- export * from './drawer/DrawerContent';
52
- export * from './drawer/interfaces/DrawerContentProps';
53
- export * from './drawer/DrawerItem';
54
- export * from './drawer/interfaces/DrawerItemHandle';
55
- export * from './drawer/interfaces/DrawerItemProps';
56
- export * from './drawer/interfaces/DrawerSelectEvent';
57
- export * from './drawer/interfaces/DrawerAnimation';
58
- export * from './stepper/Stepper';
59
- export * from './stepper/interfaces/StepperProps';
60
- export * from './stepper/interfaces/StepperHandle';
61
- export * from './stepper/interfaces/StepperChangeEvent';
62
- export * from './stepper/interfaces/StepperFocusEvent';
63
- export * from './stepper/Step';
64
- export * from './stepper/interfaces/StepProps';
65
- export * from './stepper/interfaces/StepHandle';
66
- export * from './stepper/interfaces/StepChangeEvent';
67
- export * from './stepper/interfaces/StepFocusEvent';
68
- export * from './appbar/AppBar';
69
- export * from './appbar/interfaces/AppBarProps';
70
- export * from './appbar/AppBarSection';
71
- export * from './appbar/interfaces/AppBarSectionProps';
72
- export * from './appbar/AppBarSpacer';
73
- export * from './appbar/interfaces/AppBarSpacerProps';
74
- export * from './tilelayout/TileLayout';
75
- export * from './tilelayout/interfaces/';
76
- export * from './bottomnavigation/BottomNavigation';
77
- export * from './bottomnavigation/BottomNavigationProps';
78
- export * from './bottomnavigation/BottomNavigationItem';
79
- export * from './bottomnavigation/BottomNavigationItemProps';
80
- export * from './bottomnavigation/models/events';
81
- export * from './stacklayout/StackLayout';
82
- export * from './stacklayout/StackLayoutProps';
83
- export * from './gridlayout/GridLayout';
84
- export * from './gridlayout/GridLayoutItem';
85
- export * from './gridlayout/interfaces/GridLayoutProps';
86
- export * from './gridlayout/interfaces/GridLayoutItemProps';
87
- export * from './gridlayout/interfaces/GridLayoutRowProps';
88
- export * from './gridlayout/interfaces/GridLayoutColumnProps';
89
- export * from './breadcrumb/Breadcrumb';
90
- export * from './breadcrumb/BreadcrumbOrderedList';
91
- export * from './breadcrumb/BreadcrumbListItem';
92
- export * from './breadcrumb/BreadcrumbDelimiter';
93
- export * from './breadcrumb/BreadcrumbLink';
94
- export * from './actionsheet/ActionSheet';
95
- export * from './actionsheet/ActionSheetItem';
96
- export * from './actionsheet/interfaces/ActionSheetItemProps';
97
- export * from './actionsheet/ActionSheetHeader';
98
- export * from './actionsheet/ActionSheetContent';
99
- export * from './actionsheet/ActionSheetFooter';
100
- export * from './timeline/Timeline';
101
- export * from './timeline/utils';
102
- export * from './contextmenu/ContextMenu';
103
- export * from './expansionpanel';
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { BaseEvent } from '@progress/kendo-react-common';
9
+ import { ButtonProps } from '@progress/kendo-react-buttons';
10
+ import { ForwardRefExoticComponent } from 'react';
11
+ import { JSX as JSX_2 } from 'react/jsx-runtime';
12
+ import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
13
+ import { Navigation } from '@progress/kendo-react-common';
14
+ import { Offset } from '@progress/kendo-react-popup';
15
+ import PropTypes from 'prop-types';
16
+ import * as React_2 from 'react';
17
+ import { RefAttributes } from 'react';
18
+ import { SVGIcon } from '@progress/kendo-react-common';
19
+
20
+ /**
21
+ * Represents the [KendoReact ActionSheet]({% slug overview_actionsheet %}) component.
22
+ */
23
+ export declare class ActionSheet extends React_2.Component<ActionSheetProps, ActionSheetState> {
24
+ /** @hidden */
25
+ static displayName: string;
26
+ /** @hidden */
27
+ static propTypes: {
28
+ items: PropTypes.Requireable<any[]>;
29
+ subTitle: PropTypes.Requireable<string>;
30
+ title: PropTypes.Requireable<string>;
31
+ navigatable: PropTypes.Requireable<boolean>;
32
+ navigatableElements: PropTypes.Requireable<any[]>;
33
+ };
34
+ /** @hidden */
35
+ static defaultProps: {
36
+ navigatable: boolean;
37
+ navigatableElements: never[];
38
+ };
39
+ private actionSheetRef;
40
+ private actionSheetTitleClass;
41
+ private ariaLabeledBy;
42
+ private navigation?;
43
+ private animationDuration;
44
+ private bottomPosition;
45
+ /** @hidden */
46
+ constructor(props: ActionSheetProps);
47
+ /** @hidden */
48
+ componentDidMount(): void;
49
+ /** @hidden */
50
+ componentDidUpdate(_prevProps: Readonly<ActionSheetProps>, prevState: Readonly<ActionSheetState>): void;
51
+ /** @hidden */
52
+ render(): JSX_2.Element;
53
+ private handleKeyDown;
54
+ private onTab;
55
+ private handleOverlayClick;
56
+ private handleItemClick;
57
+ private onEnter;
58
+ private onEscape;
59
+ private hideActionSheet;
60
+ private children;
61
+ }
62
+
63
+ /**
64
+ * @hidden
65
+ */
66
+ declare interface ActionSheetChildrenProps {
67
+ /**
68
+ * ClassName of the rendered element.
69
+ */
70
+ className?: any;
71
+ /**
72
+ * Represents the children that are passed to the ActionSheet.
73
+ */
74
+ children?: any;
75
+ }
76
+
77
+ /**
78
+ * The KendoReact ActionSheetContent component.
79
+ */
80
+ export declare const ActionSheetContent: React_2.FunctionComponent<ActionSheetChildrenProps>;
81
+
82
+ /**
83
+ * The KendoReact ActionSheetFooter component.
84
+ */
85
+ export declare const ActionSheetFooter: React_2.FunctionComponent<ActionSheetChildrenProps>;
86
+
87
+ /**
88
+ * The KendoReact ActionSheetHeader component.
89
+ */
90
+ export declare const ActionSheetHeader: React_2.FunctionComponent<ActionSheetChildrenProps>;
91
+
92
+ /**
93
+ * The KendoReact ActionSheetItem component.
94
+ */
95
+ export declare const ActionSheetItem: React_2.FunctionComponent<ActionSheetItemProps>;
96
+
97
+ /**
98
+ * Represents the props of the KendoReact ActionSheet component.
99
+ */
100
+ export declare interface ActionSheetItemProps {
101
+ /**
102
+ * Sets additional CSS classes to the ActionSheet.
103
+ */
104
+ className?: string;
105
+ /**
106
+ * Sets additional CSS styles to the ActionSheet.
107
+ */
108
+ style?: React_2.CSSProperties;
109
+ /**
110
+ * **Deprecated**. Specifies the `tabIndex` of the ActionSheetItem.
111
+ *
112
+ * Set the tabIndex to the ActionSheet component instead.
113
+ *
114
+ * @deprecated
115
+ */
116
+ tabIndex?: number;
117
+ /**
118
+ * Specifies additional text rendered under the item's title.
119
+ */
120
+ description?: string;
121
+ /**
122
+ * Specifies if the ActionSheet item is initially disabled.
123
+ */
124
+ disabled?: boolean;
125
+ /**
126
+ * Defines the group of the item. Items can be segregated in two groups - `top` and `bottom`.
127
+ * Each specifying whether the ActionSheet item will be rendered over the separator or under it.
128
+ */
129
+ group?: 'top' | 'bottom';
130
+ /**
131
+ * Defines the icon rendered inside the ActionSheet item.
132
+ */
133
+ icon?: React_2.ReactElement;
134
+ /**
135
+ * Specifies the text content of the ActionSheet item.
136
+ */
137
+ title?: string;
138
+ /**
139
+ * Specifies the ActionSheet item.
140
+ */
141
+ item?: any;
142
+ /**
143
+ * @hidden
144
+ */
145
+ onClick?: (event: {
146
+ syntheticEvent: React_2.SyntheticEvent;
147
+ title?: string;
148
+ }) => void;
149
+ /**
150
+ * @hidden
151
+ */
152
+ onKeyDown?: (event: React_2.SyntheticEvent, title: string | undefined, id: number | undefined) => void;
153
+ /**
154
+ * @hidden
155
+ */
156
+ focused?: boolean;
157
+ /**
158
+ * @hidden
159
+ */
160
+ id?: number;
161
+ }
162
+
163
+ /**
164
+ * The props of the ActionSheet component.
165
+ */
166
+ export declare interface ActionSheetProps {
167
+ /**
168
+ * The collection of items that will be rendered in the ActionSheet.
169
+ */
170
+ items?: ActionSheetItemProps[];
171
+ /**
172
+ * Specifies the text that is rendered under the title.
173
+ */
174
+ subTitle?: string;
175
+ /**
176
+ * Specifies the text that is rendered as title.
177
+ */
178
+ title?: string;
179
+ /**
180
+ * **Deprecated**. Fires when the modal overlay is clicked. Use `onClose` event instead.
181
+ *
182
+ * @deprecated
183
+ */
184
+ onOverlayClick?: (event: React_2.SyntheticEvent) => void;
185
+ /**
186
+ * Fires when the modal overlay is clicked.
187
+ */
188
+ onClose?: (event: React_2.SyntheticEvent) => void;
189
+ /**
190
+ * Fires when an ActionSheet item is clicked.
191
+ */
192
+ onItemSelect?: (event: {
193
+ syntheticEvent: React_2.SyntheticEvent;
194
+ title?: string;
195
+ item?: any;
196
+ }) => void;
197
+ /**
198
+ * **Deprecated**. Fires when an ActionSheet item is clicked. Use `onItemSelect` event instead.
199
+ *
200
+ * @deprecated
201
+ */
202
+ onItemClick?: (event: {
203
+ syntheticEvent: React_2.SyntheticEvent;
204
+ title?: string;
205
+ item?: any;
206
+ }) => void;
207
+ /**
208
+ * Represents the children that are passed to the ActionSheet.
209
+ */
210
+ children?: any;
211
+ /**
212
+ * Specifies the `tabIndex` of the ActionSheet.
213
+ */
214
+ tabIndex?: number;
215
+ /**
216
+ * Specifies if the ActionSheet can be navigatable with keyboard.
217
+ * Defaults to `true`.
218
+ */
219
+ navigatable: boolean;
220
+ /**
221
+ * Specifies the selectors of the navigatable elements inside the templates of the ActionSheet.
222
+ */
223
+ navigatableElements: string[];
224
+ /**
225
+ * Controls the popup animation. By default, the open and close animations are disabled.
226
+ */
227
+ animation?: boolean;
228
+ /**
229
+ * @hidden
230
+ */
231
+ animationStyles?: React_2.CSSProperties;
232
+ /**
233
+ * Specifies the duration of the transition for the entering and closing Animation. Defaults to `300ms`.
234
+ */
235
+ animationDuration?: number;
236
+ /**
237
+ * The CSS classes that will be rendered on the inner ActionSheet element.
238
+ */
239
+ className?: string;
240
+ /**
241
+ * Specifies the state of the ActionSheet.
242
+ */
243
+ expand?: boolean;
244
+ }
245
+
246
+ /**
247
+ * @hidden
248
+ */
249
+ export declare interface ActionSheetState {
250
+ show?: boolean;
251
+ slide?: boolean;
252
+ }
253
+
254
+ /**
255
+ * @hidden
256
+ */
257
+ export declare const addYearsFlags: (eventsData: TimelineEventProps[]) => (TimelineEventProps | yearFlagProps)[];
258
+
259
+ /**
260
+ * Represents the [KendoReact AppBar component]({% slug overview_appbar %}).
261
+ * Used to display information, actions, branding titles and additional navigation on the current screen.
262
+ *
263
+ * @example
264
+ * ```jsx
265
+ *
266
+ * const App = () => {
267
+ * return (
268
+ * <AppBar>
269
+ * <AppBarSection>
270
+ * <span className="k-icon k-i-menu" />
271
+ * </AppBarSection>
272
+ *
273
+ * <AppBarSpacer style={{ width: 8 }} />
274
+ *
275
+ * <AppBarSection>
276
+ * <h1 className="title">{tc.text} AppBar</h1>
277
+ * </AppBarSection>
278
+ *
279
+ * <AppBarSpacer />
280
+ *
281
+ * <AppBarSection>
282
+ * <BadgeContainer>
283
+ * <span className="k-icon k-i-bell" />
284
+ * <Badge themeColor="info" shape="dot" />
285
+ * </BadgeContainer>
286
+ * </AppBarSection>
287
+ * </AppBar>
288
+ * );
289
+ * };
290
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
291
+ * ```
292
+ */
293
+ export declare const AppBar: React_2.ForwardRefExoticComponent<AppBarProps & React_2.RefAttributes<AppBarHandle | null>>;
294
+
295
+ /**
296
+ * The AppBar ref.
297
+ */
298
+ export declare interface AppBarHandle {
299
+ /**
300
+ * The AppBar element.
301
+ */
302
+ element: HTMLDivElement | null;
303
+ /**
304
+ * Focus the AppBar.
305
+ */
306
+ focus: () => void;
307
+ }
308
+
309
+ /**
310
+ * Specifies the position of the AppBar ([see example]({% slug positioning_appbar %}#toc-position)).
311
+ *
312
+ * * The possible values are:
313
+ * * 'top' (Default)
314
+ * * 'bottom'
315
+ *
316
+ */
317
+ export declare type AppBarPosition = 'top' | 'bottom';
318
+
319
+ /**
320
+ * Specifies the positionMode of the AppBar ([see example]({% slug positioning_appbar %}#toc-positionmode)).
321
+ *
322
+ * * The possible values are:
323
+ * * 'static' (Default)
324
+ * * 'sticky'
325
+ * * 'fixed'
326
+ */
327
+ export declare type AppBarPositionMode = 'static' | 'sticky' | 'fixed';
328
+
329
+ /**
330
+ * Represents the props of the [KendoReact AppBar component]({% slug overview_appbar %}).
331
+ * Used to display information, actions, branding titles and additional navigation on the current screen.
332
+ */
333
+ export declare interface AppBarProps {
334
+ /**
335
+ * Represents the children that are passed to the AppBar.
336
+ */
337
+ children?: any;
338
+ /**
339
+ * Sets additional CSS classes to the AppBar.
340
+ */
341
+ className?: string;
342
+ /**
343
+ * Sets additional CSS styles to the AppBar.
344
+ */
345
+ style?: React_2.CSSProperties;
346
+ /**
347
+ * Sets the `id` property of the root AppBar element.
348
+ */
349
+ id?: string;
350
+ /**
351
+ * Specifies the position of the AppBar ([see example]({% slug positioning_appbar %}#toc-position)).
352
+ *
353
+ * * The possible values are:
354
+ * * 'top' (Default)
355
+ * * 'bottom'
356
+ *
357
+ */
358
+ position?: AppBarPosition;
359
+ /**
360
+ * Specifies the positionMode of the AppBar ([see example]({% slug positioning_appbar %}#toc-positionmode)).
361
+ *
362
+ * * The possible values are:
363
+ * * 'static' (Default)
364
+ * * 'sticky'
365
+ * * 'fixed'
366
+ */
367
+ positionMode?: AppBarPositionMode;
368
+ /**
369
+ * Specifies the theme color of the AppBar ([see example]({% slug appearance_appbar %})).
370
+ *
371
+ * * The possible values are:
372
+ * * `inherit`
373
+ * * `light` (Default)
374
+ * * `dark`
375
+ *
376
+ */
377
+ themeColor?: AppBarThemeColor;
378
+ }
379
+
380
+ /**
381
+ * Represents the [KendoReact AppBarSection component]({% slug contentarrangement_appbar %}#toc-defining-sections).
382
+ *
383
+ * @example
384
+ * ```jsx
385
+ *
386
+ * const App = () => {
387
+ * return (
388
+ * <AppBar>
389
+ * <AppBarSection>
390
+ * <span className="k-icon k-i-menu" />
391
+ * </AppBarSection>
392
+ *
393
+ * <AppBarSpacer style={{ width: 8 }} />
394
+ *
395
+ * <AppBarSection>
396
+ * <h1 className="title">{tc.text} AppBar</h1>
397
+ * </AppBarSection>
398
+ *
399
+ * <AppBarSpacer />
400
+ *
401
+ * <AppBarSection>
402
+ * <BadgeContainer>
403
+ * <span className="k-icon k-i-bell" />
404
+ * <Badge themeColor="info" shape="dot" />
405
+ * </BadgeContainer>
406
+ * </AppBarSection>
407
+ * </AppBar>
408
+ * );
409
+ * };
410
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
411
+ * ```
412
+ */
413
+ export declare const AppBarSection: React_2.ForwardRefExoticComponent<AppBarSectionProps & React_2.RefAttributes<AppBarSectionHandle | null>>;
414
+
415
+ /**
416
+ * The AppBarSection ref.
417
+ */
418
+ export declare interface AppBarSectionHandle {
419
+ /**
420
+ * The AppBarSection element.
421
+ */
422
+ element: HTMLDivElement | null;
423
+ /**
424
+ * Focus the AppBarSection.
425
+ */
426
+ focus: () => void;
427
+ }
428
+
429
+ /**
430
+ * Represents the props of the [KendoReact AppBarSection component]({% slug contentarrangement_appbar %}#toc-defining-sections).
431
+ */
432
+ export declare interface AppBarSectionProps {
433
+ /**
434
+ * Represents the children that are passed to the AppBarSection.
435
+ */
436
+ children?: any;
437
+ /**
438
+ * Sets additional CSS classes to the AppBarSection.
439
+ */
440
+ className?: string;
441
+ /**
442
+ * Sets additional CSS styles to the AppBarSection.
443
+ */
444
+ style?: React_2.CSSProperties;
445
+ }
446
+
447
+ /**
448
+ * Represents the [KendoReact AppBarSpacer component]({% slug contentarrangement_appbar %}#toc-defining-spacings).
449
+ * Used to give additional white space between the AppBar sections and provides a way for customizing its width.
450
+ *
451
+ * @example
452
+ * ```jsx
453
+ *
454
+ * const App = () => {
455
+ * return (
456
+ * <AppBar>
457
+ * <AppBarSection>
458
+ * <span className="k-icon k-i-menu" />
459
+ * </AppBarSection>
460
+ *
461
+ * <AppBarSpacer style={{ width: 8 }} />
462
+ *
463
+ * <AppBarSection>
464
+ * <h1 className="title">{tc.text} AppBar</h1>
465
+ * </AppBarSection>
466
+ *
467
+ * <AppBarSpacer />
468
+ *
469
+ * <AppBarSection>
470
+ * <BadgeContainer>
471
+ * <span className="k-icon k-i-bell" />
472
+ * <Badge themeColor="info" shape="dot" />
473
+ * </BadgeContainer>
474
+ * </AppBarSection>
475
+ * </AppBar>
476
+ * );
477
+ * };
478
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
479
+ * ```
480
+ */
481
+ export declare const AppBarSpacer: React_2.ForwardRefExoticComponent<AppBarSpacerProps & React_2.RefAttributes<AppBarSpacerHandle | null>>;
482
+
483
+ /**
484
+ * The AppBarSpacer ref.
485
+ */
486
+ export declare interface AppBarSpacerHandle {
487
+ /**
488
+ * The AppBarSpacer element.
489
+ */
490
+ element: HTMLDivElement | null;
491
+ /**
492
+ * Focus the AppBarSpacer.
493
+ */
494
+ focus: () => void;
495
+ }
496
+
497
+ /**
498
+ * Represents the props of the [KendoReact AppBarSpacer component]({% slug contentarrangement_appbar %}#toc-defining-spacings).
499
+ * Used to give additional white space between the AppBar sections and provides a way for customizing its width.
500
+ */
501
+ export declare interface AppBarSpacerProps {
502
+ /**
503
+ * Sets additional CSS classes to the AppBarSpacer.
504
+ */
505
+ className?: string;
506
+ /**
507
+ * Sets additional CSS styles to the AppBarSpacer.
508
+ */
509
+ style?: React_2.CSSProperties;
510
+ /**
511
+ * Determines the children nodes.
512
+ */
513
+ children?: React_2.ReactNode;
514
+ }
515
+
516
+ /**
517
+ * Specifies the theme color of the AppBar ([see example]({% slug appearance_appbar %})).
518
+ *
519
+ * * The possible values are:
520
+ * * `inherit`
521
+ * * `light` (Default)
522
+ * * `dark`
523
+ *
524
+ */
525
+ export declare type AppBarThemeColor = 'light' | 'dark' | 'inherit';
526
+
527
+ export declare const Avatar: React_2.FunctionComponent<AvatarProps>;
528
+
529
+ export declare interface AvatarProps {
530
+ /**
531
+ * Sets the Avatar children elements.
532
+ */
533
+ children?: React.ReactNode;
534
+ /**
535
+ * Sets additional CSS styles to the Avatar.
536
+ */
537
+ style?: React.CSSProperties;
538
+ /**
539
+ * Add additional classes to the Avatar.
540
+ */
541
+ className?: string;
542
+ /**
543
+ * Set the type of the Avatar.
544
+ *
545
+ * The supported values are:
546
+ * * `image`
547
+ * * `text`
548
+ * * `icon`
549
+ */
550
+ type?: avatarType | string;
551
+ /**
552
+ * Configures the `size` of the Button.
553
+ *
554
+ * The available options are:
555
+ * - small
556
+ * - medium
557
+ * - large
558
+ * - null&mdash;Does not set a size `className`.
559
+ *
560
+ * @default `medium`
561
+ */
562
+ size?: null | 'small' | 'medium' | 'large';
563
+ /**
564
+ * Configures the `roundness` of the Button.
565
+ *
566
+ * The available options are:
567
+ * - small
568
+ * - medium
569
+ * - large
570
+ * - full
571
+ * - null&mdash;Does not set a rounded `className`.
572
+ *
573
+ * @default `medium`
574
+ */
575
+ rounded?: null | 'small' | 'medium' | 'large' | 'full';
576
+ /**
577
+ * Sets a border to the Avatar.
578
+ */
579
+ border?: boolean;
580
+ /**
581
+ * Configures the `fillMode` of the Button.
582
+ *
583
+ * The available options are:
584
+ * - solid
585
+ * - outline
586
+ * - null&mdash;Does not set a fillMode `className`.
587
+ *
588
+ * @default `solid`
589
+ */
590
+ fillMode?: null | 'solid' | 'outline';
591
+ /**
592
+ * Configures the `themeColor` of the Button.
593
+ *
594
+ * The available options are:
595
+ * - base
596
+ * - primary
597
+ * - secondary
598
+ * - tertiary
599
+ * - info
600
+ * - success
601
+ * - error
602
+ * - warning
603
+ * - dark
604
+ * - light
605
+ * - inverse
606
+ * - null&mdash;Does not set a themeColor `className`.
607
+ *
608
+ * @default `base`
609
+ */
610
+ themeColor?: null | 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'error' | 'warning' | 'dark' | 'light' | 'inverse';
611
+ }
612
+
613
+ declare enum avatarType {
614
+ TEXT = "text",
615
+ IMAGE = "image",
616
+ ICON = "icon"
617
+ }
618
+
619
+ /**
620
+ * An interface which holds the shared properties of the MenuItemModel and the MenuItem components.
621
+ */
622
+ declare interface BaseMenuItem {
623
+ /**
624
+ * Specifies the item text ([see example]({% slug itemproperties_menu %}#toc-text)).
625
+ */
626
+ text?: string;
627
+ /**
628
+ * Specifies a URL which is rendered as a `href` attribute on the item link ([see example]({% slug itemproperties_menu %}#toc-url)).
629
+ */
630
+ url?: string;
631
+ /**
632
+ * Specifies the name of the [font icon]({% slug icons %}#toc-list-of-font-icons) that will be rendered for the item ([see example]({% slug itemproperties_menu %}#toc-icon)).
633
+ */
634
+ icon?: string;
635
+ /**
636
+ * Specifies the SVG icon that will be rendered for the item ([see example]({% slug itemproperties_menu %}#toc-icon)).
637
+ */
638
+ svgIcon?: SVGIcon;
639
+ /**
640
+ * Specifies if the item is disabled ([see example]({% slug itemproperties_menu %}#toc-disabled-state)).
641
+ */
642
+ disabled?: boolean;
643
+ /**
644
+ * The additional CSS classes that will be rendered on the item ([see example]({% slug itemproperties_menu %}#toc-styles-and-classes)).
645
+ */
646
+ cssClass?: string;
647
+ /**
648
+ * The CSS styles that will be rendered on the item ([see example]({% slug itemproperties_menu %}#toc-styles-and-classes)).
649
+ */
650
+ cssStyle?: React.CSSProperties;
651
+ /**
652
+ * A React functional or class component which is used for rendering the innermost part of the Menu item ([see example]({% slug rendering_menu %}#toc-items)). By default, the innermost item part includes only the text for the item.
653
+ */
654
+ render?: any;
655
+ /**
656
+ * A React functional or class component which is used for rendering the link of the item ([see example]({% slug rendering_menu %}#toc-links)). The item link is a part of the visual representation of the item which, by default, includes an arrow, icon, and text.
657
+ */
658
+ linkRender?: any;
659
+ /**
660
+ * A React functional or class component which is used for rendering content instead of the item children ([see example]({% slug rendering_menu %}#toc-content)).
661
+ */
662
+ contentRender?: any;
663
+ /**
664
+ * Represents any additional data that is associated with the Menu item.
665
+ */
666
+ data?: any;
667
+ /**
668
+ * @hidden
669
+ */
670
+ children?: React.ReactNode;
671
+ }
672
+
673
+ /**
674
+ * @hidden
675
+ */
676
+ declare interface BaseMenuItemInternalProps {
677
+ focusedItemId: string;
678
+ lastItemIdToBeOpened: string;
679
+ tabbableItemId: string;
680
+ itemRender?: any;
681
+ linkRender?: any;
682
+ isMenuVertical: boolean;
683
+ isDirectionRightToLeft?: boolean;
684
+ menuGuid: string;
685
+ onMouseOver: any;
686
+ onMouseLeave: any;
687
+ onMouseDown: any;
688
+ onFocus: any;
689
+ onClick: any;
690
+ onBlur: any;
691
+ onOriginalItemNeeded: any;
692
+ }
693
+
694
+ /**
695
+ * Represents the [KendoReact BottomNavigation component]({% slug overview_bottomnavigation %}).
696
+ * Used to switch between primary destinations in an application.
697
+ *
698
+ * @example
699
+ * ```jsx
700
+ * const items = [
701
+ * { text: 'Photos', icon: 'photo', selected: true },
702
+ * { text: 'Albums', icon: 'folder' },
703
+ * { text: 'Search', icon: 'search' },
704
+ * { text: 'More', icon: 'more-horizontal' },
705
+ * ];
706
+ *
707
+ * const App = () => {
708
+ * return (
709
+ * <BottomNavigation items={items} />
710
+ * );
711
+ * };
712
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
713
+ * ```
714
+ */
715
+ export declare const BottomNavigation: React_2.ForwardRefExoticComponent<BottomNavigationProps & React_2.RefAttributes<BottomNavigationHandle | null>>;
716
+
717
+ /**
718
+ * Represents the return type of the BottomNavigation events.
719
+ */
720
+ export declare interface BottomNavigationEvent extends BaseEvent<BottomNavigationHandle> {
721
+ }
722
+
723
+ /**
724
+ * The fill style of the BottomNavigation
725
+ * ([see example]({% slug appearance_bottomnavigation %}#toc-fill)).
726
+ *
727
+ * The possible values are:
728
+ * * `flat`(Default) &mdash; Sets the theme color as the text color. The background will be white.
729
+ * * `solid` &mdash; Sets the theme color as a background color.
730
+ *
731
+ */
732
+ export declare type BottomNavigationFill = 'solid' | 'flat';
733
+
734
+ /**
735
+ * Represents the Object which is passed to the [`ref`](https://reactjs.org/docs/refs-and-the-dom.html)
736
+ * callback of the BottomNavigation component.
737
+ */
738
+ export declare interface BottomNavigationHandle {
739
+ /**
740
+ * The current element or `null` if there is no one.
741
+ */
742
+ element: HTMLElement | null;
743
+ /**
744
+ * Focus the BottomNavigation first item.
745
+ */
746
+ focus: () => void;
747
+ }
748
+
749
+ /**
750
+ * Represents the [KendoReact BottomNavigationItem component]({% slug overview_bottomnavigation %}).
751
+ */
752
+ export declare const BottomNavigationItem: React_2.ForwardRefExoticComponent<Omit<BottomNavigationItemProps, "ref"> & React_2.RefAttributes<BottomNavigationItemHandle | null>>;
753
+
754
+ /**
755
+ * Specifies how the icon and text label are positioned in each item of the BottomNavigation
756
+ * ([see example]({% slug content_types_bottomnavigation %}#toc-item-flow)).
757
+ *
758
+ * The possible values are:
759
+ * * `vertical`(Default) &mdash; Renders the text below the icon.
760
+ * * `horizontal` &mdash; Renders the text and the icon on the same line.
761
+ */
762
+ export declare type BottomNavigationItemFlow = 'vertical' | 'horizontal';
763
+
764
+ /**
765
+ * @hidden
766
+ */
767
+ export declare interface BottomNavigationItemHandle {
768
+ element: HTMLElement | null;
769
+ }
770
+
771
+ /**
772
+ * The interface for describing items that can be passed to the `items` property of the BottomNavigation component.
773
+ */
774
+ export declare interface BottomNavigationItemProps {
775
+ /**
776
+ * Sets additional CSS classes to the BottomNavigation item.
777
+ */
778
+ className?: string;
779
+ /**
780
+ * Sets additional CSS styles to the BottomNavigation item.
781
+ */
782
+ style?: React.CSSProperties;
783
+ /**
784
+ * Disables the BottomNavigation item.
785
+ */
786
+ disabled?: boolean;
787
+ /**
788
+ * Specifies if the BottomNavigation item is selected.
789
+ */
790
+ selected?: boolean;
791
+ /**
792
+ * Defines the name for an existing icon in a KendoReact theme.
793
+ * The icon is rendered inside the BottomNavigation item by a `span.k-icon` element.
794
+ */
795
+ icon?: string;
796
+ /**
797
+ * Defines an SVG icon.
798
+ * The icon is rendered inside the BottomNavigation item.
799
+ */
800
+ svgIcon?: SVGIcon;
801
+ /**
802
+ * Specifies the text content of the BottomNavigation item.
803
+ */
804
+ text?: React.ReactNode;
805
+ /**
806
+ * Sets the `tabIndex` property of the BottomNavigation item. Defaults to `0`.
807
+ */
808
+ tabIndex?: number;
809
+ /**
810
+ * Sets a custom property. Contained in the BottomNavItem props that are returned from the `onSelect` BottomNavigation event.
811
+ */
812
+ [customProp: string]: any;
813
+ /**
814
+ * @hidden
815
+ */
816
+ index?: number;
817
+ /**
818
+ * @hidden
819
+ */
820
+ item?: any;
821
+ /**
822
+ * @hidden
823
+ */
824
+ dataItem?: any;
825
+ /**
826
+ * @hidden
827
+ */
828
+ id?: string;
829
+ }
830
+
831
+ /**
832
+ * Specifies the position and behavior of the BottomNavigation when the page is scrolled
833
+ * ([see example]({% slug positioning_bottomnavigation %}#toc-position-mode)).
834
+ *
835
+ * The possible values are:
836
+ * * `fixed`(Default) &mdash; The BottomNavigation always stays at the bottom of the viewport, regardless of the page scroll position.
837
+ * * `sticky` &mdash; Positions the BottomNavigation based on the user's scroll position. A sticky element toggles between
838
+ * static and fixed CSS [`position`](https://developer.mozilla.org/en-US/docs/Web/CSS/position) property, depending on the scroll position.
839
+ * It is positioned static until a given offset position is met in the viewport - then it "sticks" in place like `fixed` positionMode.
840
+ */
841
+ export declare type BottomNavigationPositionMode = 'sticky' | 'fixed';
842
+
843
+ /**
844
+ * Represents the props of the [KendoReact BottomNavigation component]({% slug overview_bottomnavigation %}).
845
+ */
846
+ export declare interface BottomNavigationProps {
847
+ /**
848
+ * Sets additional CSS classes to the BottomNavigation.
849
+ */
850
+ className?: string;
851
+ /**
852
+ * Sets additional CSS styles to the BottomNavigation.
853
+ */
854
+ style?: React.CSSProperties;
855
+ /**
856
+ * Sets the `id` property of the root BottomNavigation element.
857
+ */
858
+ id?: string;
859
+ /**
860
+ * Represents the `dir` HTML attribute. This is used to switch from LTR to RTL.
861
+ */
862
+ dir?: string;
863
+ /**
864
+ * Specifies the theme color of the BottomNavigation
865
+ * ([see example]({% slug appearance_bottomnavigation %}#toc-theme-color)).
866
+ *
867
+ * The possible values are:
868
+ * * `primary` (Default) &mdash; Applies coloring based on the primary theme color.
869
+ * * `secondary` &mdash; Applies coloring based on the secondary theme color.
870
+ * * `tertiary` &mdash; Applies coloring based on the tertiary theme color.
871
+ * * `info` &mdash; Applies coloring based on the info theme color.
872
+ * * `success` &mdash; Applies coloring based on the success theme color.
873
+ * * `warning` &mdash; Applies coloring based on the warning theme color.
874
+ * * `error` &mdash; Applies coloring based on the error theme color.
875
+ * * `dark` &mdash; Applies coloring based on the dark theme color.
876
+ * * `light` &mdash; Applies coloring based on the light theme color.
877
+ * * `inverse` &mdash; Applies coloring based on the inverted theme color.
878
+ */
879
+ themeColor?: BottomNavigationThemeColor;
880
+ /**
881
+ * **Deprecated**. Use `fillMode` prop instead.
882
+ *
883
+ * @deprecated
884
+ */
885
+ fill?: BottomNavigationFill;
886
+ /**
887
+ * The fill style of the BottomNavigation
888
+ * ([see example]({% slug appearance_bottomnavigation %}#toc-fill)).
889
+ *
890
+ * The possible values are:
891
+ * * `flat`(Default) &mdash; Sets the theme color as the text color. The background will be white.
892
+ * * `solid` &mdash; Sets the theme color as a background color.
893
+ */
894
+ fillMode?: BottomNavigationFill;
895
+ /**
896
+ * Specifies the position and behavior of the BottomNavigation when the page is scrolled
897
+ * ([see example]({% slug positioning_bottomnavigation %}#toc-position-mode)).
898
+ *
899
+ * The possible values are:
900
+ * * `fixed`(Default) &mdash; The BottomNavigation always stays at the bottom of the viewport, regardless of the page scroll position.
901
+ * * `sticky` &mdash; Positions the BottomNavigation based on the user's scroll position. A sticky element toggles between static
902
+ * and fixed CSS [`position`](https://developer.mozilla.org/en-US/docs/Web/CSS/position) property, depending on the scroll position.
903
+ * It is positioned static until a given offset position is met in the viewport - then it "sticks" in place like `fixed` positionMode.
904
+ */
905
+ positionMode?: BottomNavigationPositionMode;
906
+ /**
907
+ * Specifies how the icon and text label are positioned in each item of the BottomNavigation
908
+ * ([see example]({% slug content_types_bottomnavigation %}#toc-item-flow)).
909
+ *
910
+ * The possible values are:
911
+ * * `vertical`(Default) &mdash; Renders the text below the icon.
912
+ * * `horizontal` &mdash; Renders the text and the icon on the same line.
913
+ */
914
+ itemFlow?: BottomNavigationItemFlow;
915
+ /**
916
+ * Sets a border to the BottomNavigation.
917
+ */
918
+ border?: boolean;
919
+ /**
920
+ * Disables the whole BottomNavigation.
921
+ */
922
+ disabled?: boolean;
923
+ /**
924
+ * The collection of items that will be rendered in the BottomNavigation ([see example]({% slug overview_bottomnavigation %})).
925
+ */
926
+ items?: Array<BottomNavigationItemProps>;
927
+ /**
928
+ * Overrides the default component's content responsible for visualizing a single item
929
+ * ([see example]({% slug custom_rendering_bottomnavigation %}#toc-custom-rendering)).
930
+ */
931
+ item?: React.ComponentType<BottomNavigationItemProps>;
932
+ /**
933
+ * Fires when a BottomNavigation item is about to be rendered
934
+ * ([see example]({% slug custom_rendering_bottomnavigation %}#toc-item-render-property)).
935
+ * Used to override the default appearance of the items.
936
+ */
937
+ itemRender?: (span: React.ReactElement<HTMLSpanElement>, itemProps: BottomNavigationItemProps) => React.ReactNode;
938
+ /**
939
+ * Fires when a BottomNavigation item is selected.
940
+ */
941
+ onSelect?: (event: BottomNavigationSelectEvent) => void;
942
+ /**
943
+ * Triggered on `onKeyDown` event.
944
+ */
945
+ onKeyDown?: (event: BottomNavigationEvent) => void;
946
+ }
947
+
948
+ /**
949
+ * The arguments for the `onSelect` BottomNavigation event.
950
+ */
951
+ export declare interface BottomNavigationSelectEvent extends BaseEvent<BottomNavigationHandle> {
952
+ /**
953
+ * A BottomNavigation item event target.
954
+ */
955
+ itemTarget: any;
956
+ /**
957
+ * The index of the selected BottomNavigation item.
958
+ */
959
+ itemIndex: number;
960
+ }
961
+
962
+ /**
963
+ * Specifies the theme color of the BottomNavigationThemeColor.
964
+ * ([see example]({% slug appearance_bottomnavigation %}#toc-theme-color)).
965
+ *
966
+ * The possible values are:
967
+ * * `primary` (Default) &mdash; Applies coloring based on the primary theme color.
968
+ * * `secondary` &mdash; Applies coloring based on the secondary theme color.
969
+ * * `tertiary` &mdash; Applies coloring based on the tertiary theme color.
970
+ * * `info` &mdash; Applies coloring based on the info theme color.
971
+ * * `success` &mdash; Applies coloring based on the success theme color.
972
+ * * `warning` &mdash; Applies coloring based on the warning theme color.
973
+ * * `error` &mdash; Applies coloring based on the error theme color.
974
+ * * `dark` &mdash; Applies coloring based on the dark theme color.
975
+ * * `light` &mdash; Applies coloring based on the light theme color.
976
+ * * `inverse` &mdash; Applies coloring based on the inverted theme color.
977
+ */
978
+ export declare type BottomNavigationThemeColor = 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
979
+
980
+ /**
981
+ * Represents the Breadcrumb component.
982
+ */
983
+ export declare const Breadcrumb: React_2.ForwardRefExoticComponent<BreadcrumbProps & React_2.RefAttributes<BreadcrumbHandle | null>>;
984
+
985
+ /**
986
+ * Represents the BreadcrumbDelimiter component.
987
+ */
988
+ export declare const BreadcrumbDelimiter: React_2.ForwardRefExoticComponent<BreadcrumbDelimiterProps & React_2.RefAttributes<BreadcrumbDelimiterHandle | null>>;
989
+
990
+ /**
991
+ * Represents the target (element, props, and focus()) of the BreadcrumbDelimiter.
992
+ */
993
+ export declare interface BreadcrumbDelimiterHandle {
994
+ /**
995
+ * The current element or `null` if there is none.
996
+ */
997
+ element: HTMLSpanElement | null;
998
+ /**
999
+ * The props values of the BreadcrumbDelimiter.
1000
+ */
1001
+ props: BreadcrumbDelimiterProps;
1002
+ }
1003
+
1004
+ /**
1005
+ * Represents the properties of [BreadcrumbDelimiter](% slug api_layout_breadcrumbdelimiter %) component.
1006
+ */
1007
+ export declare interface BreadcrumbDelimiterProps {
1008
+ /**
1009
+ * Sets the `id` property of the BreadcrumbDelimiter component.
1010
+ */
1011
+ id?: string;
1012
+ /**
1013
+ * Sets additional classes to the BreadcrumbDelimiter component.
1014
+ */
1015
+ className?: string;
1016
+ /**
1017
+ * Sets additional CSS styles to the BreadcrumbDelimiter component.
1018
+ */
1019
+ style?: React_2.CSSProperties;
1020
+ /**
1021
+ * Sets the `tabIndex` attribute to the BreadcrumbDelimiter.
1022
+ */
1023
+ tabIndex?: number;
1024
+ /**
1025
+ * @hidden
1026
+ */
1027
+ dir?: string;
1028
+ }
1029
+
1030
+ /**
1031
+ * Represents the target (element, props, and focus()) of the `BreadcrumbClickEvent`.
1032
+ */
1033
+ export declare interface BreadcrumbHandle {
1034
+ /**
1035
+ * The current element or `null` if there is none.
1036
+ */
1037
+ element: HTMLDivElement | null;
1038
+ /**
1039
+ * The props values of the Breadcrumb.
1040
+ */
1041
+ props: BreadcrumbProps;
1042
+ /**
1043
+ * The `focus` method of the Breadcrumb component.
1044
+ */
1045
+ focus: () => void;
1046
+ }
1047
+
1048
+ /**
1049
+ * Represents the [BreadcrumbLink](% slug api_layout_breadcrumblink %) component.
1050
+ *
1051
+ * @example
1052
+ * ```jsx
1053
+ * import { Breadcrumb, BreadcrumbLink } from '@progress/kendo-react-layout';
1054
+ * const items = [
1055
+ * {
1056
+ * id: 'home',
1057
+ * text: 'Home',
1058
+ * iconClass: 'k-i-home',
1059
+ * },
1060
+ * {
1061
+ * id: 'products',
1062
+ * text: 'Products',
1063
+ * },
1064
+ * {
1065
+ * id: 'computer',
1066
+ * text: 'Computer',
1067
+ * }
1068
+ * ];
1069
+ *
1070
+ * const App = () => {
1071
+ * const [data,setData] = React.useState(items);
1072
+ * const handleItemSelect = (event, id) => {
1073
+ * const itemIndex = data.findIndex((curValue) => curValue.id === id);
1074
+ * const newData = data.slice(0, itemIndex + 1);
1075
+ * setData(newData);
1076
+ * };
1077
+ *
1078
+ * const CustomLink = (data) => {
1079
+ * return (
1080
+ * <BreadcrumbLink
1081
+ * id={data.id}
1082
+ * text={data.text}
1083
+ * onItemSelect={(event) => handleItemSelect(event, data.id)}
1084
+ * />
1085
+ * );
1086
+ * };
1087
+ *
1088
+ * return (
1089
+ * <Breadcrumb
1090
+ * data={data}
1091
+ * breadcrumbLink={(items) => CustomLink(items)}
1092
+ * />
1093
+ * )}
1094
+ *
1095
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
1096
+ * ```
1097
+ */
1098
+ export declare const BreadcrumbLink: React_2.ForwardRefExoticComponent<BreadcrumbLinkProps & React_2.RefAttributes<BreadcrumbLinkHandle | null>>;
1099
+
1100
+ /**
1101
+ * Represents the target (element, props, and focus()) of the `BreadcrumbClickEvent`.
1102
+ */
1103
+ export declare interface BreadcrumbLinkHandle {
1104
+ /**
1105
+ * The current element or `null` if there is none.
1106
+ */
1107
+ element: HTMLLIElement | null;
1108
+ /**
1109
+ * The props values of the BreadcrumbLink.
1110
+ */
1111
+ props: BreadcrumbLinkProps;
1112
+ /**
1113
+ * The `focus` method of the BreadcrumbLink component.
1114
+ */
1115
+ focus: () => void;
1116
+ }
1117
+
1118
+ /**
1119
+ * Represents the `BreadcrumbLinkKeyDownEvent`.
1120
+ */
1121
+ export declare interface BreadcrumbLinkKeyDownEvent extends BaseEvent<BreadcrumbLinkHandle> {
1122
+ /**
1123
+ * Represents the `id` of the `BreadcrumbLinkKeyDownEvent`.
1124
+ */
1125
+ id?: string;
1126
+ }
1127
+
1128
+ /**
1129
+ * Represents the `BreadcrumbLinkMouseEvent`.
1130
+ */
1131
+ export declare interface BreadcrumbLinkMouseEvent extends BaseEvent<BreadcrumbLinkHandle> {
1132
+ /**
1133
+ * Represents the `id` of the `BreadcrumbLinkMouseEvent`.
1134
+ */
1135
+ id?: string;
1136
+ }
1137
+
1138
+ /**
1139
+ * Represents the properties of [BreadcrumbLink](% slug api_layout_breadcrumblink %) component.
1140
+ */
1141
+ export declare interface BreadcrumbLinkProps {
1142
+ /**
1143
+ * Sets the `id` property of the top `div` element of the BreadcrumbLink.
1144
+ */
1145
+ id?: string;
1146
+ /**
1147
+ * Sets additional classes to the BreadcrumbLink.
1148
+ */
1149
+ style?: React_2.CSSProperties;
1150
+ /**
1151
+ * Sets additional classes to the BreadcrumbLink.
1152
+ */
1153
+ className?: string;
1154
+ /**
1155
+ * Sets the `tabIndex` attribute to the BreadcrumbLink.
1156
+ */
1157
+ tabIndex?: number;
1158
+ /**
1159
+ * The Breadcrumb direction `ltr` or `rtl`.
1160
+ */
1161
+ dir?: string;
1162
+ /**
1163
+ * Determines the `disabled` mode of the BreadcrumbLink. If `true`, the component is disabled.
1164
+ */
1165
+ disabled?: boolean;
1166
+ /**
1167
+ * Represents the `text` of the BreadcrumbLink component.
1168
+ */
1169
+ text?: string;
1170
+ /**
1171
+ * Represents the `icon` of the BreadcrumbLink component.
1172
+ */
1173
+ icon?: React_2.ReactNode;
1174
+ /**
1175
+ * Represents the `iconClass` of the BreadcrumbLink component.
1176
+ */
1177
+ iconClass?: string;
1178
+ /**
1179
+ * Represents the `onItemSelect` event. Triggered after click on the BreadcrumbLink item.
1180
+ */
1181
+ onItemSelect?: (event: BaseEvent<BreadcrumbLinkHandle>) => void;
1182
+ /**
1183
+ * Represents the `onKeyDown` event. Triggered after key down on the BreadcrumbLink item.
1184
+ */
1185
+ onKeyDown?: (event: BaseEvent<BreadcrumbLinkHandle>) => void;
1186
+ /**
1187
+ * Sets the `aria-current` value.
1188
+ */
1189
+ ariaCurrent?: boolean;
1190
+ /**
1191
+ * @hidden
1192
+ */
1193
+ isLast?: boolean;
1194
+ /**
1195
+ * @hidden
1196
+ */
1197
+ isFirst?: boolean;
1198
+ }
1199
+
1200
+ /**
1201
+ * Represents the BreadcrumbListItem component.
1202
+ */
1203
+ export declare const BreadcrumbListItem: React_2.ForwardRefExoticComponent<BreadcrumbListItemProps & React_2.RefAttributes<BreadcrumbListItemHandle | null>>;
1204
+
1205
+ /**
1206
+ * Represents the target (element, props, and focus()) of the BreadcrumbListItem.
1207
+ */
1208
+ export declare interface BreadcrumbListItemHandle {
1209
+ /**
1210
+ * The current element or `null` if there is none.
1211
+ */
1212
+ element: any;
1213
+ /**
1214
+ * The props values of the Breadcrumb.
1215
+ */
1216
+ props: BreadcrumbListItemProps;
1217
+ /**
1218
+ * The `focus` method of the BreadcrumbListItem component.
1219
+ */
1220
+ focus: () => void;
1221
+ }
1222
+
1223
+ /**
1224
+ * Represents the properties of [BreadcrumbListItem](% slug api_layout_breadcrumblistitem %) component.
1225
+ */
1226
+ export declare interface BreadcrumbListItemProps {
1227
+ /**
1228
+ * Sets the `id` property of the top `div` element of the BreadcrumbListItem.
1229
+ */
1230
+ id?: string;
1231
+ /**
1232
+ * Sets additional CSS styles to the BreadcrumbListItem.
1233
+ */
1234
+ style?: React_2.CSSProperties;
1235
+ /**
1236
+ * Sets additional classes to the BreadcrumbListItem.
1237
+ */
1238
+ className?: string;
1239
+ /**
1240
+ * Determines the children nodes.
1241
+ */
1242
+ children?: React_2.ReactNode;
1243
+ /**
1244
+ * @hidden
1245
+ */
1246
+ isFirstItem: any;
1247
+ /**
1248
+ * @hidden
1249
+ */
1250
+ isLastItem: any;
1251
+ }
1252
+
1253
+ /**
1254
+ * Represents the BreadcrumbOrderedList component.
1255
+ */
1256
+ export declare const BreadcrumbOrderedList: React_2.ForwardRefExoticComponent<BreadcrumbOrderedListProps & React_2.RefAttributes<BreadcrumbOrderedListHandle | null>>;
1257
+
1258
+ /**
1259
+ * Represents the target (element, props, and focus()) of the BreadcrumbOrderedList.
1260
+ */
1261
+ export declare interface BreadcrumbOrderedListHandle {
1262
+ /**
1263
+ * The current element or `null` if there is none.
1264
+ */
1265
+ element: HTMLOListElement | null;
1266
+ /**
1267
+ * The props values of the BreadcrumbOrderedList.
1268
+ */
1269
+ props: BreadcrumbOrderedListProps;
1270
+ }
1271
+
1272
+ /**
1273
+ * Represents the properties of [BreadcrumbOrderedList](% slug api_layout_breadcrumborderedlist %) component.
1274
+ */
1275
+ export declare interface BreadcrumbOrderedListProps {
1276
+ /**
1277
+ * Sets the `id` property of the top `div` element of the BreadcrumbOrderedList.
1278
+ */
1279
+ id?: string;
1280
+ /**
1281
+ * Sets additional CSS styles to the BreadcrumbOrderedList.
1282
+ */
1283
+ style?: React_2.CSSProperties;
1284
+ /**
1285
+ * Sets additional classes to the BreadcrumbOrderedList.
1286
+ */
1287
+ className?: string;
1288
+ /**
1289
+ * Determines the children nodes.
1290
+ */
1291
+ children?: React_2.ReactNode;
1292
+ /**
1293
+ * Sets the `tabIndex` attribute to the BreadcrumbOrderedList.
1294
+ */
1295
+ tabIndex?: number;
1296
+ /**
1297
+ * The BreadcrumbOrderedList direction `ltr` or `rtl`.
1298
+ */
1299
+ dir?: string;
1300
+ /**
1301
+ * Determines the `disabled` mode of the BreadcrumbOrderedList. If `true`, the component is disabled.
1302
+ */
1303
+ disabled?: boolean;
1304
+ /**
1305
+ * @hidden
1306
+ */
1307
+ rootItem?: boolean;
1308
+ }
1309
+
1310
+ /**
1311
+ * Represents the properties of [Breadcrumb](% slug api_layout_breadcrumb %) component.
1312
+ */
1313
+ export declare interface BreadcrumbProps {
1314
+ /**
1315
+ * Sets the `id` property of the top `div` element of the Breadcrumb.
1316
+ */
1317
+ id?: string;
1318
+ /**
1319
+ * Sets additional CSS styles to the Breadcrumb.
1320
+ */
1321
+ style?: React_2.CSSProperties;
1322
+ /**
1323
+ * Sets additional classes to the Breadcrumb.
1324
+ */
1325
+ className?: string;
1326
+ /**
1327
+ * Represents the Breadcrumb ordered list component.
1328
+ */
1329
+ breadcrumbOrderedList?: React_2.ComponentType<BreadcrumbOrderedListProps>;
1330
+ /**
1331
+ * Represents the Breadcrumb list item component.
1332
+ */
1333
+ breadcrumbListItem?: React_2.ComponentType<BreadcrumbListItemProps>;
1334
+ /**
1335
+ * Represents the Breadcrumb delimiter component.
1336
+ */
1337
+ breadcrumbDelimiter?: React_2.ComponentType<BreadcrumbDelimiterProps>;
1338
+ /**
1339
+ * Represents the Breadcrumb link component.
1340
+ */
1341
+ breadcrumbLink?: React_2.ComponentType<BreadcrumbLinkProps>;
1342
+ /**
1343
+ * Represents the data of the Breadcrumb from type DataModel.
1344
+ */
1345
+ data: DataModel[];
1346
+ /**
1347
+ * Specifies the padding of all Breadcrumb elements.
1348
+ *
1349
+ * The possible values are:
1350
+ * * `small`
1351
+ * * `medium`
1352
+ * * `large`
1353
+ *
1354
+ * @default `medium`
1355
+ */
1356
+ size?: 'small' | 'medium' | 'large';
1357
+ /**
1358
+ * The Breadcrumb direction `ltr` or `rtl`.
1359
+ */
1360
+ dir?: 'ltr' | 'rtl';
1361
+ /**
1362
+ * Sets the `tabIndex` attribute to the Breadcrumb.
1363
+ */
1364
+ tabIndex?: number;
1365
+ /**
1366
+ * Determines the `disabled` mode of the Breadcrumb. If `true`, the component is disabled.
1367
+ */
1368
+ disabled?: boolean;
1369
+ /**
1370
+ * Represents the `value` field. Used for setting the key of the BreadcrumbListItem component and the `id` of the BreadcrumbLink component.
1371
+ */
1372
+ valueField?: string;
1373
+ /**
1374
+ * Represents the `text` field. Used for setting the `text` inside the BreadcrumbLink component.
1375
+ */
1376
+ textField?: string;
1377
+ /**
1378
+ * Represents the `icon` field. Used for setting the `icon` inside the BreadcrumbLink component.
1379
+ */
1380
+ iconField?: string;
1381
+ /**
1382
+ * Represents the `iconClass` field. Used for setting the `iconClass` inside the BreadcrumbLink component.
1383
+ */
1384
+ iconClassField?: string;
1385
+ /**
1386
+ * Represents the `onItemSelect` event. Triggered after click on the Breadcrumb.
1387
+ */
1388
+ onItemSelect?: (event: BreadcrumbLinkMouseEvent) => void;
1389
+ /**
1390
+ * Represents the `onKeyDown` event. Triggered after keyboard click on the Breadcrumb.
1391
+ */
1392
+ onKeyDown?: (event: BreadcrumbLinkKeyDownEvent) => void;
1393
+ /**
1394
+ * Represents the label of the Breadcrumb component.
1395
+ */
1396
+ ariaLabel?: string;
1397
+ }
1398
+
1399
+ export declare const Card: React_2.ForwardRefExoticComponent<Omit<CardProps, "ref"> & React_2.RefAttributes<CardHandle | null>>;
1400
+
1401
+ export declare const CardActions: React_2.FunctionComponent<CardActionsProps>;
1402
+
1403
+ declare enum cardActionsLayout {
1404
+ START = "start",
1405
+ CENTER = "center",
1406
+ END = "end",
1407
+ STRETCHED = "stretched"
1408
+ }
1409
+
1410
+ export declare interface CardActionsProps {
1411
+ /**
1412
+ * Sets the CardActions children elements.
1413
+ */
1414
+ children?: React.ReactNode;
1415
+ /**
1416
+ * Sets additional CSS styles to the CardActions.
1417
+ */
1418
+ style?: React.CSSProperties;
1419
+ /**
1420
+ * Add additional classes to the CardActions.
1421
+ */
1422
+ className?: string;
1423
+ /**
1424
+ * Set the layout of the actions.
1425
+ *
1426
+ * The supported values are:
1427
+ * * (Default) `start`
1428
+ * * `center`
1429
+ * * `end`
1430
+ * * `stretched`
1431
+ */
1432
+ layout?: cardActionsLayout | string;
1433
+ /**
1434
+ * Specifies the orientation of the Card action buttons.
1435
+ *
1436
+ * * The possible values are:
1437
+ * * (Default) `horizontal`
1438
+ * * `vertical`
1439
+ *
1440
+ */
1441
+ orientation?: cardOrientation | string;
1442
+ }
1443
+
1444
+ export declare const CardBody: React_2.FunctionComponent<CardBodyProps>;
1445
+
1446
+ declare interface CardBodyProps {
1447
+ /**
1448
+ * Sets the CardBody children elements.
1449
+ */
1450
+ children?: React.ReactNode;
1451
+ /**
1452
+ * Sets additional CSS styles to the CardBody.
1453
+ */
1454
+ style?: React.CSSProperties;
1455
+ /**
1456
+ * Add additional classes to the CardBody.
1457
+ */
1458
+ className?: string;
1459
+ }
1460
+
1461
+ export declare const CardFooter: React_2.FunctionComponent<CardFooterProps>;
1462
+
1463
+ declare interface CardFooterProps {
1464
+ /**
1465
+ * Sets the CardFooter children elements.
1466
+ */
1467
+ children?: React.ReactNode;
1468
+ /**
1469
+ * Sets additional CSS styles to the CardFooter.
1470
+ */
1471
+ style?: React.CSSProperties;
1472
+ /**
1473
+ * Add additional classes to the CardFooter.
1474
+ */
1475
+ className?: string;
1476
+ }
1477
+
1478
+ /**
1479
+ * Represents the target(element and props) of the Card component.
1480
+ */
1481
+ export declare interface CardHandle {
1482
+ /**
1483
+ * The current element or `null` if there is no one.
1484
+ */
1485
+ element: HTMLDivElement | null;
1486
+ /**
1487
+ * The props values of the Card.
1488
+ */
1489
+ props: CardProps;
1490
+ }
1491
+
1492
+ export declare const CardHeader: React_2.FunctionComponent<CardHeaderProps>;
1493
+
1494
+ declare interface CardHeaderProps {
1495
+ /**
1496
+ * Sets the CardHeader children elements.
1497
+ */
1498
+ children?: React.ReactNode;
1499
+ /**
1500
+ * Sets additional CSS styles to the CardHeader.
1501
+ */
1502
+ style?: React.CSSProperties;
1503
+ /**
1504
+ * Add additional classes to the CardHeader.
1505
+ */
1506
+ className?: string;
1507
+ }
1508
+
1509
+ export declare const CardImage: React_2.FunctionComponent<CardImageProps>;
1510
+
1511
+ declare interface CardImageProps {
1512
+ /**
1513
+ * Sets additional CSS styles to the CardImageProps.
1514
+ */
1515
+ style?: React.CSSProperties;
1516
+ /**
1517
+ * Add additional classes to the CardImageProps.
1518
+ */
1519
+ className?: string;
1520
+ /**
1521
+ * Set the source of the image.
1522
+ */
1523
+ src?: string;
1524
+ /**
1525
+ * Specifies an alternate text for the image.
1526
+ */
1527
+ alt?: string;
1528
+ }
1529
+
1530
+ declare enum cardOrientation {
1531
+ HORIZONTAL = "horizontal",
1532
+ VERTICAL = "vertical"
1533
+ }
1534
+
1535
+ export declare interface CardProps {
1536
+ /**
1537
+ * Sets the Card children elements.
1538
+ */
1539
+ children?: React.ReactNode;
1540
+ /**
1541
+ * Sets the [dir](https://www.w3schools.com/tags/att_global_dir.asp) of the Card.
1542
+ */
1543
+ dir?: string;
1544
+ /**
1545
+ * Sets additional CSS styles to the Card.
1546
+ */
1547
+ style?: React.CSSProperties;
1548
+ /**
1549
+ * Add additional classes to the Card.
1550
+ */
1551
+ className?: string;
1552
+ /**
1553
+ * Set the type of the Card.
1554
+ *
1555
+ * The supported values are:
1556
+ * * `default`
1557
+ * * `primary`
1558
+ * * `info`
1559
+ * * `success`
1560
+ * * `warning`
1561
+ * * `error`
1562
+ */
1563
+ type?: cardType | string;
1564
+ /**
1565
+ * Set the orientation of the Card.
1566
+ *
1567
+ * The supported values are:
1568
+ * * `horizontal` - Default
1569
+ * * `vertical`
1570
+ */
1571
+ orientation?: cardOrientation | string;
1572
+ /**
1573
+ * Sets a custom property to component DOM element.
1574
+ */
1575
+ [customProp: string]: any;
1576
+ }
1577
+
1578
+ export declare const CardSubtitle: React_2.FunctionComponent<CardSubtitleProps>;
1579
+
1580
+ declare interface CardSubtitleProps {
1581
+ /**
1582
+ * Sets the CardSubtitle children elements.
1583
+ */
1584
+ children?: React.ReactNode;
1585
+ /**
1586
+ * Sets additional CSS styles to the CardSubtitle.
1587
+ */
1588
+ style?: React.CSSProperties;
1589
+ /**
1590
+ * Add additional classes to the CardSubtitle.
1591
+ */
1592
+ className?: string;
1593
+ }
1594
+
1595
+ export declare const CardTitle: React_2.FunctionComponent<CardTitleProps>;
1596
+
1597
+ declare interface CardTitleProps {
1598
+ /**
1599
+ * Sets the CardTitle children elements.
1600
+ */
1601
+ children?: React.ReactNode;
1602
+ /**
1603
+ * Sets additional CSS styles to the CardTitle.
1604
+ */
1605
+ style?: React.CSSProperties;
1606
+ /**
1607
+ * Add additional classes to the CardTitle.
1608
+ */
1609
+ className?: string;
1610
+ }
1611
+
1612
+ declare enum cardType {
1613
+ DEFAULT = "default",
1614
+ primary = "primary",
1615
+ INFO = "info",
1616
+ SUCCESS = "success",
1617
+ WARNING = "warning",
1618
+ ERROR = "error"
1619
+ }
1620
+
1621
+ /**
1622
+ * @hidden
1623
+ */
1624
+ export declare const contentDisplayName = "ActionSheetContent";
1625
+
1626
+ /**
1627
+ * Represents the [KendoReact ContextMenu component]({% slug overview_contextmenu %}).
1628
+ */
1629
+ export declare const ContextMenu: {
1630
+ (props: ContextMenuProps): JSX_2.Element;
1631
+ displayName: string;
1632
+ };
1633
+
1634
+ /**
1635
+ * The props of the [KendoReact ContextMenu component]({% slug overview_contextmenu %}).
1636
+ */
1637
+ export declare interface ContextMenuProps extends Omit<MenuProps, 'onClose' | 'openOnClick' | 'hoverOpenDelay' | 'hoverCloseDelay'> {
1638
+ /**
1639
+ * Controls the Popup visibility of the ContextMenu.
1640
+ */
1641
+ show: boolean;
1642
+ /**
1643
+ * Specifies the absolute position of the ContextMenu. The Popover opens next to that point.
1644
+ */
1645
+ offset: Offset;
1646
+ /**
1647
+ * Triggers when the ContextMenu needs to hide.
1648
+ */
1649
+ onClose: (event: React_2.SyntheticEvent<HTMLElement>) => void;
1650
+ }
1651
+
1652
+ /**
1653
+ * Represents the DataModel object type.
1654
+ */
1655
+ export declare interface DataModel {
1656
+ /**
1657
+ * Represents the `id` of the data object.
1658
+ * Used for setting the `key` of the BreadcrumbListItem component and the `id` of the BreadcrumbLink component.
1659
+ */
1660
+ id?: string;
1661
+ /**
1662
+ * Represents the `text` used inside the BreadcrumbLink component.
1663
+ */
1664
+ text?: string;
1665
+ /**
1666
+ * Represents the `icon` used inside the BreadcrumbLink component.
1667
+ */
1668
+ icon?: React_2.ReactNode;
1669
+ /**
1670
+ * Represents the `iconClass` used inside the BreadcrumbLink component.
1671
+ */
1672
+ iconClass?: string;
1673
+ /**
1674
+ * @hidden
1675
+ */
1676
+ disabled?: boolean;
1677
+ }
1678
+
1679
+ /**
1680
+ * @hidden
1681
+ */
1682
+ export declare const downArrowName = "caret-alt-down";
1683
+
1684
+ /**
1685
+ * Represents the [KendoReact Drawer component]({% slug overview_drawer %}).
1686
+ *
1687
+ * @example
1688
+ * ```jsx
1689
+ * const App = () => {
1690
+ * const items = [
1691
+ * { text: 'Inbox', icon: 'k-i-inbox', selected: true },
1692
+ * { separator: true },
1693
+ * { text: 'Notifications', icon: 'k-i-bell', disabled: true },
1694
+ * { text: 'Calendar', icon: 'k-i-calendar' },
1695
+ * { separator: true },
1696
+ * { text: 'Attachments', icon: 'k-i-hyperlink-email' },
1697
+ * { text: 'Favourites', icon: 'k-i-star-outline' }
1698
+ * ];
1699
+ *
1700
+ * const [expanded, setExpanded] = React.useState(true);
1701
+ * const handleClick = () => setExpanded(prevState => !prevState);
1702
+ *
1703
+ * return (
1704
+ * <Drawer expanded={expanded} position='start' mode='push' items={items}>
1705
+ * <DrawerContent>
1706
+ * <button className="k-button" onClick={handleClick}>Toggle the drawer state</button>
1707
+ * </DrawerContent>
1708
+ * </Drawer>
1709
+ * );
1710
+ * };
1711
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
1712
+ * ```
1713
+ */
1714
+ export declare const Drawer: React_2.ForwardRefExoticComponent<DrawerProps & React_2.RefAttributes<DrawerHandle | null>>;
1715
+
1716
+ /**
1717
+ * Specifies the animation settings of the Drawer.
1718
+ *
1719
+ */
1720
+ export declare interface DrawerAnimation {
1721
+ /**
1722
+ * Specifies the type of the Drawer animation.
1723
+ */
1724
+ type?: 'slide';
1725
+ /**
1726
+ * Specifies the duration of the Drawer animation ([see example]({% slug display_modes_drawer %}#toc-expand-modes)) .
1727
+ */
1728
+ duration: number;
1729
+ }
1730
+
1731
+ /**
1732
+ * Represents the [KendoReact Drawer component]({% slug overview_drawer %}).
1733
+ *
1734
+ * @example
1735
+ * ```jsx
1736
+ * const App = () => {
1737
+ * const items = [
1738
+ * { text: 'Inbox', icon: 'k-i-inbox', selected: true },
1739
+ * { separator: true },
1740
+ * { text: 'Notifications', icon: 'k-i-bell', disabled: true },
1741
+ * { text: 'Calendar', icon: 'k-i-calendar' },
1742
+ * { separator: true },
1743
+ * { text: 'Attachments', icon: 'k-i-hyperlink-email' },
1744
+ * { text: 'Favourites', icon: 'k-i-star-outline' }
1745
+ * ];
1746
+ *
1747
+ * const [expanded, setExpanded] = React.useState(true);
1748
+ * const handleClick = () => setExpanded(prevState => !prevState);
1749
+ *
1750
+ * return (
1751
+ * <Drawer expanded={expanded} position='start' mode='push' items={items}>
1752
+ * <DrawerContent>
1753
+ * <button className="k-button" onClick={handleClick}>Toggle the drawer state</button>
1754
+ * </DrawerContent>
1755
+ * </Drawer>
1756
+ * );
1757
+ * };
1758
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
1759
+ * ```
1760
+ */
1761
+ export declare const DrawerContent: React_2.ForwardRefExoticComponent<DrawerContentProps & React_2.RefAttributes<DrawerContentHandle | null>>;
1762
+
1763
+ /**
1764
+ * The DrawerContent ref.
1765
+ */
1766
+ export declare interface DrawerContentHandle {
1767
+ element: HTMLDivElement | null;
1768
+ }
1769
+
1770
+ /**
1771
+ * The properties of the [KendoReact DrawerContent component]({% slug overview_drawer %}).
1772
+ */
1773
+ export declare interface DrawerContentProps {
1774
+ /**
1775
+ * Sets the DrawerContent items declaratively.
1776
+ */
1777
+ children?: any;
1778
+ /**
1779
+ * Specifies a list of CSS classes that will be added to the DrawerContent element.
1780
+ */
1781
+ className?: string;
1782
+ /**
1783
+ * Sets additional CSS styles to the DrawerContent.
1784
+ */
1785
+ style?: React.CSSProperties;
1786
+ }
1787
+
1788
+ /**
1789
+ * The Drawer ref.
1790
+ */
1791
+ export declare interface DrawerHandle {
1792
+ element: HTMLDivElement | null;
1793
+ focus: () => void;
1794
+ }
1795
+
1796
+ /**
1797
+ * Represents the [KendoReact Drawer component]({% slug overview_drawer %}).
1798
+ *
1799
+ * @example
1800
+ * ```jsx
1801
+ * const App = () => {
1802
+ * const [stateVisible, setStateVisible] = React.useState(true);
1803
+ * const handleClick = () => { setStateVisible(prevState => !prevState); };
1804
+ *
1805
+ * return (
1806
+ * <Drawer expanded={stateVisible} mode={'push'}>
1807
+ * <DrawerNavigation>
1808
+ * <DrawerItem text="Inbox" icon="k-i-inbox" />
1809
+ * <DrawerItem separator={true} />
1810
+ * <DrawerItem text="Notifications" icon="k-i-bell" disabled={true}/>
1811
+ * <DrawerItem text="Calendar" icon="k-i-calendar"/>
1812
+ * <DrawerItem separator={true} />
1813
+ * <DrawerItem text="Attachments" icon="k-i-hyperlink-email" selected={true}/>
1814
+ * <DrawerItem text="Favourites" icon="k-i-star-outline"/>
1815
+ * </DrawerNavigation>
1816
+ * <DrawerContent><button className="k-button" onClick={handleClick}>Toggle the drawer state</button></DrawerContent>
1817
+ * </Drawer>
1818
+ * );
1819
+ * };
1820
+ *
1821
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
1822
+ * ```
1823
+ */
1824
+ export declare const DrawerItem: React_2.ForwardRefExoticComponent<Omit<DrawerItemProps, "ref"> & React_2.RefAttributes<DrawerItemHandle | null>>;
1825
+
1826
+ /**
1827
+ * The DrawerItem ref.
1828
+ */
1829
+ export declare interface DrawerItemHandle {
1830
+ /**
1831
+ * The DrawerItem element.
1832
+ */
1833
+ element: HTMLLIElement | null;
1834
+ /**
1835
+ * Focus the DrawerItem.
1836
+ */
1837
+ focus: () => void;
1838
+ /**
1839
+ * The props of the DrawerItem.
1840
+ */
1841
+ props: any;
1842
+ }
1843
+
1844
+ /**
1845
+ * An interface for the Drawer items.
1846
+ */
1847
+ export declare interface DrawerItemProps {
1848
+ /**
1849
+ * Represents the children that are passed to the DrawerItem.
1850
+ */
1851
+ children?: any;
1852
+ /**
1853
+ * Specifies a list of CSS classes that will be added to the DrawerItem element.
1854
+ */
1855
+ className?: string;
1856
+ /**
1857
+ * Sets additional CSS styles to the Drawer item.
1858
+ */
1859
+ style?: React.CSSProperties;
1860
+ /**
1861
+ * Specifies if the Drawer item is disabled.
1862
+ */
1863
+ disabled?: boolean;
1864
+ /**
1865
+ * Defines the name for an existing icon in a KendoReact theme.
1866
+ * The icon is rendered inside the Drawer item by a `span.k-icon` element.
1867
+ */
1868
+ icon?: string;
1869
+ /**
1870
+ * Defines the SVG icon of the item.
1871
+ */
1872
+ svgIcon?: SVGIcon;
1873
+ /**
1874
+ * Specifies if the Drawer item is initially selected.
1875
+ */
1876
+ selected?: boolean;
1877
+ /**
1878
+ * Specifies if this is a separator item.
1879
+ */
1880
+ separator?: boolean;
1881
+ /**
1882
+ * Specifies the text content of the Drawer item.
1883
+ */
1884
+ text?: string;
1885
+ /**
1886
+ * Sets the index of the DrawerItem that is used to identify it.
1887
+ */
1888
+ index?: number;
1889
+ /**
1890
+ * Sets the `tabIndex` property of the DrawerItem.
1891
+ * Defaults to `0`.
1892
+ */
1893
+ tabIndex?: number;
1894
+ /**
1895
+ * Sets a custom property. Contained in the DrawerItem props that are returned from the `onSelect` Drawer event.
1896
+ */
1897
+ [customProp: string]: any;
1898
+ /**
1899
+ * @hidden
1900
+ */
1901
+ onSelect?(target?: any, idx?: number, event?: React.SyntheticEvent<Element>): void;
1902
+ }
1903
+
1904
+ /**
1905
+ * Represents the [KendoReact Drawer component]({% slug overview_drawer %}).
1906
+ *
1907
+ * @example
1908
+ * ```jsx
1909
+ * const App = () => {
1910
+ * const [expanded, setExpanded] = React.useState(true);
1911
+ * const handleClick = () => setExpanded(prevState => !prevState);
1912
+ *
1913
+ * return (
1914
+ * <Drawer expanded={expanded} position='start' mode='push'>
1915
+ * <DrawerNavigation>
1916
+ * <ul className="k-drawer-items">
1917
+ * <li className="k-drawer-item k-selected">
1918
+ * <span className="k-item-text">Home</span>
1919
+ * </li>
1920
+ * <li className="k-drawer-item">
1921
+ * <span className="k-item-text">Products</span>
1922
+ * </li>
1923
+ * <li className="k-drawer-item">
1924
+ * <span className="k-item-text">About</span>
1925
+ * </li>
1926
+ * </ul>
1927
+ * </DrawerNavigation>
1928
+ * <DrawerContent>
1929
+ * <button className="k-button" onClick={handleClick}>Toggle the drawer state</button>
1930
+ * </DrawerContent>
1931
+ * </Drawer>
1932
+ * );
1933
+ * };
1934
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
1935
+ * ```
1936
+ */
1937
+ export declare const DrawerNavigation: React_2.ForwardRefExoticComponent<DrawerNavigationProps & React_2.RefAttributes<DrawerNavigationHandle | null>>;
1938
+
1939
+ /**
1940
+ * @hidden
1941
+ */
1942
+ export declare interface DrawerNavigationHandle {
1943
+ element: HTMLDivElement | null;
1944
+ focus: () => void;
1945
+ }
1946
+
1947
+ /**
1948
+ * The properties of the [KendoReact DrawerNavigation component]({% slug overview_drawer %}).
1949
+ */
1950
+ export declare interface DrawerNavigationProps {
1951
+ /**
1952
+ * Sets the DrawerNavigation items declaratively.
1953
+ */
1954
+ children?: any;
1955
+ /**
1956
+ * Specifies a list of CSS classes that will be added to the DrawerNavigation element.
1957
+ */
1958
+ className?: string;
1959
+ /**
1960
+ * Sets additional CSS styles to the DrawerNavigation.
1961
+ */
1962
+ style?: React.CSSProperties;
1963
+ }
1964
+
1965
+ /**
1966
+ * The properties of the [KendoReact Drawer component]({% slug overview_drawer %}).
1967
+ */
1968
+ export declare interface DrawerProps {
1969
+ /**
1970
+ * Specifies the animation settings of the Drawer.
1971
+ * If boolean enables or disables the default animation.
1972
+ * Use DrawerAnimation to set slide animation with customizable duration option. Accepts a number in milliseconds.
1973
+ */
1974
+ animation?: boolean | DrawerAnimation;
1975
+ /**
1976
+ * Specifies the state of the Drawer. Defaults to `false` ([see example]({% slug expanded_state_drawer %})).
1977
+ */
1978
+ expanded?: boolean;
1979
+ /**
1980
+ * Sets the Drawer items declaratively.
1981
+ */
1982
+ children?: any;
1983
+ /**
1984
+ * Specifies a list of CSS classes that will be added to the Drawer element.
1985
+ */
1986
+ className?: string;
1987
+ /**
1988
+ * Represents the `dir` HTML attribute. This is used to switch from LTR to RTL.
1989
+ */
1990
+ dir?: string;
1991
+ /**
1992
+ * Specifies the mode in which the Drawer will be displayed.
1993
+ * The possible values are `overlay` and `push`.
1994
+ * Defaults to `overlay` ([see example]({% slug display_modes_drawer %}#toc-expand-modes)).
1995
+ */
1996
+ mode?: 'overlay' | 'push';
1997
+ /**
1998
+ * Specifies the position of the Drawer.
1999
+ * The possible values are `start` and `end` ([see example]({% slug positioning_drawer %})).
2000
+ */
2001
+ position?: 'start' | 'end';
2002
+ /**
2003
+ * Sets additional CSS styles to the Drawer.
2004
+ */
2005
+ style?: React_2.CSSProperties;
2006
+ /**
2007
+ * Sets the `tabIndex` property of the Drawer.
2008
+ */
2009
+ tabIndex?: number;
2010
+ /**
2011
+ * Enables the mini (compact) view of the Drawer which is displayed when the component is collapsed
2012
+ * ([see example]({% slug display_modes_drawer %}#toc-mini-view))).
2013
+ */
2014
+ mini?: boolean;
2015
+ /**
2016
+ * Defines the width of the Drawer when the mini view is enabled and the component is collapsed. Defaults to `50`.
2017
+ */
2018
+ miniWidth?: number;
2019
+ /**
2020
+ * Defines the width of the Drawer when it is expanded. Defaults to `240`.
2021
+ */
2022
+ width?: number;
2023
+ /**
2024
+ * The collection of items that will be rendered in the Drawer ([see example]({% slug overview_drawer %})).
2025
+ */
2026
+ items?: Array<DrawerItemProps>;
2027
+ /**
2028
+ * Overrides the default component responsible for visualizing a single item ([see example]({% slug custom_rendering %})).
2029
+ *
2030
+ * The default Component is: [DrawerItem]({% slug api_layout_draweritem %}).
2031
+ */
2032
+ item?: React_2.ComponentType<DrawerItemProps>;
2033
+ /**
2034
+ * The event handler that will be fired when the overlay is clicked.
2035
+ * Used in overlay mode only.
2036
+ */
2037
+ onOverlayClick?: (event: React_2.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2038
+ /**
2039
+ * Fires when a Drawer item is selected.
2040
+ */
2041
+ onSelect?: (event: DrawerSelectEvent) => void;
2042
+ }
2043
+
2044
+ /**
2045
+ * The arguments for the `onSelect` Drawer event.
2046
+ */
2047
+ export declare interface DrawerSelectEvent extends BaseEvent<DrawerHandle> {
2048
+ /**
2049
+ * A Drawer item event target.
2050
+ */
2051
+ itemTarget: any;
2052
+ /**
2053
+ * The index of the selected Drawer item.
2054
+ */
2055
+ itemIndex: number;
2056
+ }
2057
+
2058
+ declare interface EventDataProps {
2059
+ /**
2060
+ * A React Synthetic Event.
2061
+ */
2062
+ syntheticEvent?: React_2.SyntheticEvent<any>;
2063
+ /**
2064
+ * A native DOM event.
2065
+ */
2066
+ nativeEvent?: any;
2067
+ /**
2068
+ * The selected card value.
2069
+ */
2070
+ eventData: TimelineEventProps;
2071
+ }
2072
+
2073
+ /**
2074
+ * Represents the [KendoReact ExpansionPanel component]({% slug overview_expansionpanel %}).
2075
+ */
2076
+ export declare const ExpansionPanel: React_2.ForwardRefExoticComponent<ExpansionPanelProps & React_2.RefAttributes<ExpansionPanelHandle | null>>;
2077
+
2078
+ /**
2079
+ * The arguments for the `onAction` ExpansionPanel event.
2080
+ */
2081
+ export declare interface ExpansionPanelActionEvent extends BaseEvent<ExpansionPanelHandle> {
2082
+ /**
2083
+ * Represents the `expanded` state of the ExpansionPanel.
2084
+ */
2085
+ expanded: boolean;
2086
+ }
2087
+
2088
+ /**
2089
+ * Represents the KendoReact ExpansionPanelContent component.
2090
+ */
2091
+ export declare const ExpansionPanelContent: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
2092
+
2093
+ /**
2094
+ * The ExpansionPanel ref.
2095
+ */
2096
+ export declare interface ExpansionPanelHandle {
2097
+ /**
2098
+ * The ExpansionPanel element.
2099
+ */
2100
+ element: HTMLDivElement | null;
2101
+ }
2102
+
2103
+ /**
2104
+ * The props of the ExpansionPanel component.
2105
+ */
2106
+ export declare interface ExpansionPanelProps {
2107
+ /**
2108
+ * The React elements that will be rendered inside the ExpansionPanel.
2109
+ */
2110
+ children?: React.ReactNode;
2111
+ /**
2112
+ * Sets additional CSS classes to the ExpansionPanel.
2113
+ */
2114
+ className?: string;
2115
+ /**
2116
+ * Sets additional CSS styles to the ExpansionPanel.
2117
+ */
2118
+ style?: React.CSSProperties;
2119
+ /**
2120
+ * Sets the `id` property of the root ExpansionPanel element.
2121
+ */
2122
+ id?: string;
2123
+ /**
2124
+ * Specifies the primary text in the header of the ExpansionPanel.
2125
+ */
2126
+ title?: React.ReactNode;
2127
+ /**
2128
+ * Specifies the secondary text in the header of the ExpansionPanel, which is rendered next to the collapse/expand icon.
2129
+ */
2130
+ subtitle?: React.ReactNode;
2131
+ /**
2132
+ * Sets a custom icon via css class(es), for the expanded state of the ExpansionPanel.
2133
+ */
2134
+ expandIcon?: string;
2135
+ /**
2136
+ * Sets a custom icon via css class(es), for the collapsed state of the ExpansionPanel.
2137
+ */
2138
+ collapseIcon?: string;
2139
+ /**
2140
+ * Sets a custom SVG icon for the expanded state of the ExpansionPanel.
2141
+ */
2142
+ expandSVGIcon?: SVGIcon;
2143
+ /**
2144
+ * Sets a custom SVG icon for the collapsed state of the ExpansionPanel.
2145
+ */
2146
+ collapseSVGIcon?: SVGIcon;
2147
+ /**
2148
+ * Sets the `dir` property of the ExpansionPanel.
2149
+ */
2150
+ dir?: string;
2151
+ /**
2152
+ * Sets the `tabIndex` property of the ExpansionPanel.
2153
+ */
2154
+ tabIndex?: number;
2155
+ /**
2156
+ * Sets the `expanded` state of the ExpansionPanel.
2157
+ */
2158
+ expanded?: boolean;
2159
+ /**
2160
+ * Sets the `disabled` state of the ExpansionPanel.
2161
+ */
2162
+ disabled?: boolean;
2163
+ /**
2164
+ * Sets `aria-controls`. The value should represent the `id` of the controlled content element.
2165
+ */
2166
+ ariaControls?: string;
2167
+ /**
2168
+ * The event handler that will be fired when the expanded state of the ExpansionPanel is about to change.
2169
+ */
2170
+ onAction?: (event: ExpansionPanelActionEvent) => void;
2171
+ }
2172
+
2173
+ /**
2174
+ * @hidden
2175
+ */
2176
+ export declare function flatChildren(children: any, flattenChildren?: any[]): any[];
2177
+
2178
+ /**
2179
+ * @hidden
2180
+ */
2181
+ export declare function flatVisibleChildren(children: any, flattenVisibleChildren?: any[]): any[];
2182
+
2183
+ /**
2184
+ * @hidden
2185
+ */
2186
+ export declare function flatVisibleItems(data: any, flattedItems?: any[]): any[];
2187
+
2188
+ /**
2189
+ * @hidden
2190
+ */
2191
+ export declare const footerDisplayName = "ActionSheetFooter";
2192
+
2193
+ /**
2194
+ * @hidden
2195
+ */
2196
+ export declare const getFirstId: (props: any) => any;
2197
+
2198
+ /**
2199
+ * @hidden
2200
+ */
2201
+ export declare const getInitialState: (props: any, expandMode: PanelBarExpandMode, result?: PanelBarState, parentExpanded?: boolean, parentPrivateKey?: string[]) => PanelBarState;
2202
+
2203
+ /**
2204
+ * Represents the [KendoReact GridLayout component]({% slug overview_gridlayout %}).
2205
+ * Arranges the contents of the component in rows and columns in a grid structure.
2206
+ *
2207
+ * @example
2208
+ * ```jsx
2209
+ *
2210
+ * const App = () => {
2211
+ * return (
2212
+ * <GridLayout
2213
+ * rows={[{height: 50}, {height: 50}, {height: 50}]}
2214
+ * cols={[{width: 50}, {width: 50}, {width: 50}]}
2215
+ * gap={{rows: 5, cols: 5}}
2216
+ * align={{horizontal: 'stretch', vertical: 'stretch'}}
2217
+ * >
2218
+ * <GridLayoutItem row={1} col={1}>Box</GridLayoutItem>
2219
+ * <GridLayoutItem row={1} col={2} colSpan={2}>Box</GridLayoutItem>
2220
+ * <GridLayoutItem row={2} col={1} colSpan={2} rowSpan={2}>Box</GridLayoutItem>
2221
+ * <GridLayoutItem row={2} col={3}>Box</GridLayoutItem>
2222
+ * <GridLayoutItem row={3} col={3}>Box</GridLayoutItem>
2223
+ * </GridLayout>
2224
+ * );
2225
+ * };
2226
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
2227
+ * ```
2228
+ */
2229
+ export declare const GridLayout: React_2.ForwardRefExoticComponent<GridLayoutProps & React_2.RefAttributes<GridLayoutHandle | null>>;
2230
+
2231
+ /**
2232
+ * Specifies the horizontal and vertical alignment of the inner GridLayout elements.
2233
+ */
2234
+ export declare interface GridLayoutAlign {
2235
+ /**
2236
+ * Defines the possible horizontal alignment of the inner GridLayout elements.
2237
+ *
2238
+ * The available values are:
2239
+ * - `start`&mdash;Uses the start point of the container.
2240
+ * - `center`&mdash;Uses the center point of the container.
2241
+ * - `end`&mdash;Uses the end point of the container.
2242
+ * - (Default)`stretch`&mdash;Stretches the items to fill the width of the container.
2243
+ */
2244
+ horizontal?: 'start' | 'center' | 'end' | 'stretch';
2245
+ /**
2246
+ * Defines the possible vertical alignment of the inner GridLayout elements.
2247
+ *
2248
+ * The available values are:
2249
+ * - `top`&mdash;Uses the top point of the container.
2250
+ * - `middle`&mdash;Uses the middle point of the container.
2251
+ * - `bottom`&mdash;Uses the bottom point of the container.
2252
+ * - (Default)`stretch`&mdash;Stretches the items to fill the height of the container.
2253
+ */
2254
+ vertical?: 'top' | 'middle' | 'bottom' | 'stretch';
2255
+ }
2256
+
2257
+ /**
2258
+ * Represents the props of the [KendoReact GridLayout column]({% slug overview_gridlayout %}).
2259
+ */
2260
+ export declare interface GridLayoutColumnProps {
2261
+ /**
2262
+ * Specifies the width of the GridLayout column ([see example]({% slug overview_gridlayout %}#toc-react-gridlayout-demo-preview)).
2263
+ */
2264
+ width?: number | string;
2265
+ }
2266
+
2267
+ /**
2268
+ * Specifies the gaps between the elements.
2269
+ */
2270
+ export declare interface GridLayoutGap {
2271
+ /**
2272
+ * Represents the row gap between the elements
2273
+ */
2274
+ rows?: number | string;
2275
+ /**
2276
+ * Represents the column gap between the elements
2277
+ */
2278
+ cols?: number | string;
2279
+ }
2280
+
2281
+ /**
2282
+ * Represents the Object which is passed to the [`ref`](https://reactjs.org/docs/refs-and-the-dom.html)
2283
+ * callback of the GridLayout component.
2284
+ */
2285
+ export declare interface GridLayoutHandle {
2286
+ /**
2287
+ * Represents the current element. If no current element is present, `element` is `null`.
2288
+ */
2289
+ element: HTMLDivElement | null;
2290
+ }
2291
+
2292
+ /**
2293
+ * Represents the [KendoReact GridLayoutItem component]({% slug overview_gridlayout %}).
2294
+ *
2295
+ * @example
2296
+ * ```jsx
2297
+ *
2298
+ * const App = () => {
2299
+ * return (
2300
+ * <GridLayout
2301
+ * rows={[{height: 50}, {height: 50}, {height: 50}]}
2302
+ * cols={[{width: 50}, {width: 50}, {width: 50}]}
2303
+ * gap={{rows: 5, cols: 5}}
2304
+ * align={{horizontal: 'stretch', vertical: 'stretch'}}
2305
+ * >
2306
+ * <GridLayoutItem row={1} col={1}>Box</GridLayoutItem>
2307
+ * <GridLayoutItem row={1} col={2} colSpan={2}>Box</GridLayoutItem>
2308
+ * <GridLayoutItem row={2} col={1} colSpan={2} rowSpan={2}>Box</GridLayoutItem>
2309
+ * <GridLayoutItem row={2} col={3}>Box</GridLayoutItem>
2310
+ * <GridLayoutItem row={3} col={3}>Box</GridLayoutItem>
2311
+ * </GridLayout>
2312
+ * );
2313
+ * };
2314
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
2315
+ * ```
2316
+ */
2317
+ export declare const GridLayoutItem: React_2.ForwardRefExoticComponent<GridLayoutItemProps & React_2.RefAttributes<GridLayoutItemHandle | null>>;
2318
+
2319
+ /**
2320
+ * Represents the Object which is passed to the [`ref`](https://reactjs.org/docs/refs-and-the-dom.html)
2321
+ * callback of the GridLayoutItem component.
2322
+ */
2323
+ export declare interface GridLayoutItemHandle {
2324
+ /**
2325
+ * Represents the current element. If no current element is present, `element` is `null`.
2326
+ */
2327
+ element: HTMLDivElement | null;
2328
+ }
2329
+
2330
+ /**
2331
+ * Represents the props of the [KendoReact GridLayoutItem component]({% slug overview_gridlayout %}).
2332
+ */
2333
+ export declare interface GridLayoutItemProps {
2334
+ /**
2335
+ * The React elements that will be rendered inside the GridLayoutItem.
2336
+ */
2337
+ children?: React_2.ReactNode;
2338
+ /**
2339
+ * Sets additional CSS classes to the GridLayoutItem.
2340
+ */
2341
+ className?: string;
2342
+ /**
2343
+ * Sets additional CSS styles to the GridLayoutItem.
2344
+ */
2345
+ style?: React_2.CSSProperties;
2346
+ /**
2347
+ * Sets the `id` property of the root GridLayoutItem element.
2348
+ */
2349
+ id?: string;
2350
+ /**
2351
+ * Defines the column line from which the element will start ([see example]({% slug items_gridlayout %}#toc-items)).
2352
+ */
2353
+ col?: number;
2354
+ /**
2355
+ * Specifies the number of columns over which the element will span ([see example]({% slug items_gridlayout %}#toc-items)).
2356
+ * Defaults to `1`.
2357
+ */
2358
+ colSpan?: number;
2359
+ /**
2360
+ * Defines the row line from which the element will start ([see example]({% slug items_gridlayout %}#toc-items)).
2361
+ */
2362
+ row?: number;
2363
+ /**
2364
+ * Specifies the number of rows over which the element will span ([see example]({% slug items_gridlayout %}#toc-items)).
2365
+ * Defaults to `1`.
2366
+ */
2367
+ rowSpan?: number;
2368
+ }
2369
+
2370
+ /**
2371
+ * Represents the props of the [KendoReact GridLayout component]({% slug overview_gridlayout %}).
2372
+ */
2373
+ export declare interface GridLayoutProps {
2374
+ /**
2375
+ * The React elements that will be rendered inside the GridLayout.
2376
+ */
2377
+ children?: React_2.ReactNode;
2378
+ /**
2379
+ * Sets additional CSS classes to the GridLayout.
2380
+ */
2381
+ className?: string;
2382
+ /**
2383
+ * Sets additional CSS styles to the GridLayout.
2384
+ */
2385
+ style?: React_2.CSSProperties;
2386
+ /**
2387
+ * Sets the `id` property of the root GridLayout element.
2388
+ */
2389
+ id?: string;
2390
+ /**
2391
+ * Specifies the gaps between the elements ([see example]({% slug layout_gridlayout %}#toc-gaps)).
2392
+ *
2393
+ * * The possible keys are:
2394
+ * * `rows`
2395
+ * * `columns`
2396
+ */
2397
+ gap?: GridLayoutGap;
2398
+ /**
2399
+ * Specifies the horizontal and vertical alignment of the inner GridLayout elements (see demos
2400
+ * [here]({% slug layout_gridlayout %}#toc-horizontal-align) and [here]({% slug layout_gridlayout %}#toc-vertical-align)).
2401
+ *
2402
+ * The possible keys are:
2403
+ * * `horizontal`&mdash;Defines the possible horizontal alignment of the inner GridLayout elements.
2404
+ * * `start`&mdash;Uses the start point of the container.
2405
+ * * `center`&mdash;Uses the central point of the container.
2406
+ * * `end`&mdash;Uses the end point of the container.
2407
+ * * (Default)`stretch`&mdash;Stretches the items to fill the width of the container.
2408
+ * * `vertical`&mdash; Defines the possible vertical alignment of the inner GridLayout elements.
2409
+ * * `top`&mdash;Uses the top point of the container.
2410
+ * * `middle`&mdash;Uses the middle point of the container.
2411
+ * * `bottom`&mdash;Uses the bottom point of the container.
2412
+ * * (Default)`stretch`&mdash;Stretches the items to fill the height of the container.
2413
+ */
2414
+ align?: GridLayoutAlign;
2415
+ /**
2416
+ * Specifies the default number of columns and their widths ([see example]({% slug layout_gridlayout %}#toc-rows-and-columns)).
2417
+ */
2418
+ cols?: GridLayoutColumnProps[];
2419
+ /**
2420
+ * Specifies the default number of rows and their height ([see example]({% slug layout_gridlayout %}#toc-rows-and-columns)).
2421
+ */
2422
+ rows?: GridLayoutRowProps[];
2423
+ }
2424
+
2425
+ /**
2426
+ * Represents the props of the [KendoReact GridLayout row]({% slug overview_gridlayout %}).
2427
+ */
2428
+ export declare interface GridLayoutRowProps {
2429
+ /**
2430
+ * Specifies the height of the GridLayout row ([see example]({% slug overview_gridlayout %}#toc-react-gridlayout-demo-preview)).
2431
+ */
2432
+ height?: number | string;
2433
+ }
2434
+
2435
+ /**
2436
+ * @hidden
2437
+ */
2438
+ export declare const headerDisplayName = "ActionSheetHeader";
2439
+
2440
+ /**
2441
+ * @hidden
2442
+ */
2443
+ export declare const isArrayEqual: (firstArray: any[], secondArray: any[]) => boolean;
2444
+
2445
+ /**
2446
+ * @hidden
2447
+ */
2448
+ export declare const isPresent: Function;
2449
+
2450
+ /**
2451
+ * @hidden
2452
+ */
2453
+ export declare const leftArrowName = "caret-alt-left";
2454
+
2455
+ /** @hidden */
2456
+ export declare const Menu: ForwardRefExoticComponent<MenuProps & RefAttributes<any>>;
2457
+
2458
+ /**
2459
+ * Represents the [KendoReact Menu component]({% slug overview_menu %}).
2460
+ *
2461
+ * @example
2462
+ * ```jsx
2463
+ * class App extends React.Component {
2464
+ * render() {
2465
+ * return (
2466
+ * <Menu>
2467
+ * <MenuItem text="Item1" />
2468
+ * <MenuItem text="Item2">
2469
+ * <MenuItem text="Item2.1" />
2470
+ * <MenuItem text="Item2.2" />
2471
+ * </MenuItem>
2472
+ * <MenuItem text="Item3" />
2473
+ * </Menu>
2474
+ * );
2475
+ * }
2476
+ * }
2477
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
2478
+ * ```
2479
+ */
2480
+ export declare class MenuClassComponent extends React_2.Component<MenuProps, MenuState> {
2481
+ /**
2482
+ * @hidden
2483
+ */
2484
+ static propTypes: {
2485
+ vertical: PropTypes.Requireable<boolean>;
2486
+ items: PropTypes.Requireable<(object | null | undefined)[]>;
2487
+ style: PropTypes.Requireable<object>;
2488
+ dir: PropTypes.Requireable<string>;
2489
+ hoverOpenDelay: PropTypes.Requireable<number>;
2490
+ hoverCloseDelay: PropTypes.Requireable<number>;
2491
+ openOnClick: PropTypes.Requireable<boolean>;
2492
+ itemRender: PropTypes.Requireable<any>;
2493
+ linkRender: PropTypes.Requireable<any>;
2494
+ customCloseItemIds: PropTypes.Requireable<(string | null | undefined)[]>;
2495
+ onSelect: PropTypes.Requireable<(...args: any[]) => any>;
2496
+ role: PropTypes.Requireable<string>;
2497
+ };
2498
+ /**
2499
+ * @hidden
2500
+ */
2501
+ static defaultProps: {
2502
+ vertical: boolean;
2503
+ };
2504
+ /**
2505
+ * @hidden
2506
+ */
2507
+ readonly state: MenuState;
2508
+ private itemHoverRequest;
2509
+ private itemLeaveRequest;
2510
+ private menuWrapperEl;
2511
+ private get menuItemId();
2512
+ private directionHolder;
2513
+ private inputItems;
2514
+ private items;
2515
+ private mouseOverHandler;
2516
+ get element(): HTMLDivElement | null;
2517
+ constructor(props: MenuProps);
2518
+ /**
2519
+ * @hidden
2520
+ */
2521
+ render(): JSX_2.Element;
2522
+ /**
2523
+ * @hidden
2524
+ */
2525
+ componentDidMount(): void;
2526
+ /**
2527
+ * @hidden
2528
+ */
2529
+ componentDidUpdate(prevProps: MenuProps): void;
2530
+ /**
2531
+ * @hidden
2532
+ */
2533
+ componentWillUnmount(): void;
2534
+ /**
2535
+ * Resets the selection and opening of Menu items.
2536
+ */
2537
+ reset: () => void;
2538
+ private onKeyDown;
2539
+ private onItemMouseOver;
2540
+ private onItemMouseLeave;
2541
+ private onItemMouseDown;
2542
+ private onItemFocus;
2543
+ private onItemClick;
2544
+ private onItemBlur;
2545
+ private getInputItem;
2546
+ private setFocusedItemId;
2547
+ private setHoveredItemId;
2548
+ private getMenuClassName;
2549
+ private clearItemHoverAndLeaveRequestsIfApplicable;
2550
+ private isItemWithDefaultClose;
2551
+ private checkIsDirectionRightToLeft;
2552
+ private prepareItems;
2553
+ private dispatchSelectEventIfWired;
2554
+ }
2555
+
2556
+ /**
2557
+ * Represent the `ref` of the Menu component.
2558
+ */
2559
+ export declare interface MenuHandle extends Pick<MenuClassComponent, keyof MenuClassComponent> {
2560
+ }
2561
+
2562
+ export declare class MenuItem extends React_2.Component<MenuItemProps, {}> {
2563
+ /**
2564
+ * @hidden
2565
+ */
2566
+ static propTypes: {
2567
+ text: PropTypes.Requireable<string>;
2568
+ url: PropTypes.Requireable<string>;
2569
+ icon: PropTypes.Requireable<string>;
2570
+ disabled: PropTypes.Requireable<boolean>;
2571
+ cssClass: PropTypes.Requireable<string>;
2572
+ cssStyle: PropTypes.Requireable<object>;
2573
+ render: PropTypes.Requireable<any>;
2574
+ linkRender: PropTypes.Requireable<any>;
2575
+ contentRender: PropTypes.Requireable<any>;
2576
+ data: PropTypes.Requireable<any>;
2577
+ };
2578
+ /**
2579
+ * @hidden
2580
+ */
2581
+ render(): null;
2582
+ }
2583
+
2584
+ export declare class MenuItemArrow extends React_2.Component<MenuItemArrowProps, {}> {
2585
+ /**
2586
+ * @hidden
2587
+ */
2588
+ static propTypes: {
2589
+ itemId: PropTypes.Requireable<string>;
2590
+ dir: PropTypes.Requireable<string>;
2591
+ verticalMenu: PropTypes.Requireable<boolean>;
2592
+ };
2593
+ /**
2594
+ * @hidden
2595
+ */
2596
+ render(): JSX_2.Element;
2597
+ private getIcon;
2598
+ }
2599
+
2600
+ /**
2601
+ * The properties of the KendoReact MenuItemArrow component.
2602
+ */
2603
+ export declare interface MenuItemArrowProps {
2604
+ /**
2605
+ * Sets the item id of the MenuItemArrow component.
2606
+ */
2607
+ itemId: string;
2608
+ /**
2609
+ * Sets the direction of the MenuItemArrow component.
2610
+ */
2611
+ dir: 'ltr' | 'rtl';
2612
+ /**
2613
+ * Specifies whether the Menu which holds the MenuItemArrow component is vertical.
2614
+ */
2615
+ verticalMenu?: boolean;
2616
+ }
2617
+
2618
+ /**
2619
+ * @hidden
2620
+ */
2621
+ export declare interface MenuItemInternalModel extends BaseMenuItem {
2622
+ id: string;
2623
+ items: MenuItemInternalModel[];
2624
+ contentParentItemId?: string;
2625
+ isLastFromSiblings: boolean;
2626
+ }
2627
+
2628
+ /**
2629
+ * @hidden
2630
+ */
2631
+ export declare class MenuItemInternalsList extends React_2.Component<MenuItemInternalsListProps, {}> {
2632
+ render(): JSX_2.Element;
2633
+ private renderChildItems;
2634
+ private onMouseOver;
2635
+ private onMouseLeave;
2636
+ }
2637
+
2638
+ /**
2639
+ * @hidden
2640
+ */
2641
+ declare interface MenuItemInternalsListProps extends BaseMenuItemInternalProps {
2642
+ items: MenuItemInternalModel[];
2643
+ parentItemId?: string;
2644
+ className: string;
2645
+ role?: string;
2646
+ 'aria-orientation'?: 'vertical';
2647
+ }
2648
+
2649
+ export declare class MenuItemLink extends React_2.Component<MenuItemLinkProps, {}> {
2650
+ /**
2651
+ * @hidden
2652
+ */
2653
+ static propTypes: {
2654
+ opened: PropTypes.Requireable<boolean>;
2655
+ url: PropTypes.Requireable<string>;
2656
+ };
2657
+ /**
2658
+ * @hidden
2659
+ */
2660
+ render(): JSX_2.Element;
2661
+ private getMenuItemClassName;
2662
+ }
2663
+
2664
+ /**
2665
+ * The properties of the KendoReact MenuItemLink component.
2666
+ */
2667
+ export declare interface MenuItemLinkProps extends KendoReactComponentBaseProps {
2668
+ /**
2669
+ * Specifies whether the MenuItemLink component is opened.
2670
+ */
2671
+ opened: boolean;
2672
+ /**
2673
+ * Sets the URL of the MenuItemLink component.
2674
+ */
2675
+ url?: string;
2676
+ }
2677
+
2678
+ /**
2679
+ * The interface for describing items that can be passed to the `items` property of the Menu as an alternative to passing them as children.
2680
+ */
2681
+ export declare interface MenuItemModel extends BaseMenuItem {
2682
+ /**
2683
+ * Specifies the children of the item.
2684
+ */
2685
+ items?: MenuItemModel[];
2686
+ }
2687
+
2688
+ /**
2689
+ * The properties of the KendoReact MenuItem component ([more information and examples]({% slug items_menu %})).
2690
+ */
2691
+ export declare interface MenuItemProps extends BaseMenuItem {
2692
+ }
2693
+
2694
+ /**
2695
+ * The properties of the [KendoReact Menu component]({% slug overview_menu %}).
2696
+ */
2697
+ declare interface MenuProps {
2698
+ /**
2699
+ * Specifies whether the Menu will be vertical ([see example]({% slug vertical_menu %})).
2700
+ */
2701
+ vertical?: boolean;
2702
+ /**
2703
+ * Sets the Menu items.
2704
+ */
2705
+ items?: MenuItemModel[];
2706
+ /**
2707
+ * Sets the Menu items declaratively.
2708
+ */
2709
+ children?: React.ReactNode;
2710
+ /**
2711
+ * Sets additional CSS styles to the Menu.
2712
+ */
2713
+ style?: React.CSSProperties;
2714
+ /**
2715
+ * Sets the ID of the Menu.
2716
+ */
2717
+ id?: string;
2718
+ /**
2719
+ * Sets the direction of the Menu.
2720
+ */
2721
+ dir?: string;
2722
+ /**
2723
+ * Specifies the delay in milliseconds before the Menu items are opened on item mouse-hover ([see example]({% slug opening_closing_menu %}#toc-delay-on-hover)). Defaults to `100`. If `openOnClick` is `true`, defaults to `0`.
2724
+ */
2725
+ hoverOpenDelay?: number;
2726
+ /**
2727
+ * Specifies the delay in milliseconds before the Menu items are closed on item mouse-leave ([see example]({% slug opening_closing_menu %}#toc-delay-on-hover)). Used to avoid accidental closure on leaving. Defaults to `100`.
2728
+ */
2729
+ hoverCloseDelay?: number;
2730
+ /**
2731
+ * If `openOnClick` is set to `true`, the items are opened on mouse hover only after an initial click.
2732
+ */
2733
+ openOnClick?: boolean;
2734
+ /**
2735
+ * A React functional or class component which is used for rendering the innermost part of the Menu item ([see example]({% slug rendering_menu %}#toc-items)). By default, the innermost item part includes only the text for the item.
2736
+ */
2737
+ itemRender?: any;
2738
+ /**
2739
+ * A React functional or class component which is used for rendering the link of the item ([see example]({% slug rendering_menu %}#toc-links)). The item link is a part of the visual representation of the item which, by default, includes an arrow, icon, and text.
2740
+ */
2741
+ linkRender?: any;
2742
+ /**
2743
+ * Sets the ids of the Menu items that will not be closed on mouse-leave. The ids are hierarchical and zero-based. The first root item has a `0` id. If the first root item has children, the first child item acquires a `0_0` id and the second acquires a `0_1` id.
2744
+ */
2745
+ customCloseItemIds?: string[];
2746
+ /**
2747
+ * Adds a custom className to the Menu top element.
2748
+ */
2749
+ className?: string;
2750
+ /**
2751
+ * @hidden
2752
+ */
2753
+ role?: string;
2754
+ /**
2755
+ * Fires when a Menu item is selected.
2756
+ */
2757
+ onSelect?: (event: MenuSelectEvent) => void;
2758
+ /**
2759
+ * @hidden
2760
+ */
2761
+ onClose?: (event: React.SyntheticEvent<HTMLElement>) => void;
2762
+ }
2763
+
2764
+ /**
2765
+ * The arguments for the `select` event of the Menu. If the item has a URL and the event is prevented, navigation to the URL does not occur.
2766
+ */
2767
+ export declare interface MenuSelectEvent extends BaseEvent<MenuClassComponent> {
2768
+ /**
2769
+ * The id of selected item. The ids are hierarchical and zero-based. The first root item has a `0` id. If the first root item has children, the first child acquires a `0_0` id and the second acquires a `0_1` id.
2770
+ */
2771
+ itemId: string;
2772
+ /**
2773
+ * The selected item.
2774
+ */
2775
+ item: MenuItemModel;
2776
+ }
2777
+
2778
+ /**
2779
+ * @hidden
2780
+ */
2781
+ export declare interface MenuState {
2782
+ focusedItemId: string;
2783
+ hoveredItemId: string;
2784
+ tabbableItemId: string;
2785
+ isFirstRender: boolean;
2786
+ }
2787
+
2788
+ /**
2789
+ * @hidden
2790
+ */
2791
+ declare enum NavigationAction {
2792
+ Toggle = 0,
2793
+ Next = 1,
2794
+ Previous = 2
2795
+ }
2796
+
2797
+ export declare class PanelBar extends React_2.Component<PanelBarProps, PanelBarState> {
2798
+ /**
2799
+ * @hidden
2800
+ */
2801
+ static propTypes: {
2802
+ animation: PropTypes.Requireable<boolean>;
2803
+ children: (props: PanelBarProps, propName: any) => Error | null;
2804
+ dir: PropTypes.Requireable<string>;
2805
+ selected: PropTypes.Requireable<string>;
2806
+ expanded: PropTypes.Requireable<(string | null | undefined)[]>;
2807
+ focused: PropTypes.Requireable<string>;
2808
+ expandMode: PropTypes.Requireable<string>;
2809
+ className: PropTypes.Requireable<string>;
2810
+ keepItemsMounted: PropTypes.Requireable<boolean>;
2811
+ onSelect: PropTypes.Requireable<(...args: any[]) => any>;
2812
+ style: PropTypes.Requireable<object>;
2813
+ };
2814
+ /**
2815
+ * @hidden
2816
+ */
2817
+ static defaultProps: {
2818
+ expandMode: string;
2819
+ animation: boolean;
2820
+ keepItemsMounted: boolean;
2821
+ };
2822
+ /**
2823
+ * @hidden
2824
+ */
2825
+ readonly state: PanelBarState;
2826
+ private activeDescendant?;
2827
+ private _element;
2828
+ private showLicenseWatermark;
2829
+ private nextTickId;
2830
+ private get expandMode();
2831
+ private get selectedItem();
2832
+ private get expandedItems();
2833
+ private get children();
2834
+ constructor(props: PanelBarProps);
2835
+ /**
2836
+ * @hidden
2837
+ */
2838
+ handleSelect: (event: PanelBarItemClickEventArguments) => void;
2839
+ /**
2840
+ * @hidden
2841
+ */
2842
+ onSelect: (event: any) => void;
2843
+ /**
2844
+ * @hidden
2845
+ */
2846
+ onFocus: (event: any, step?: number) => void;
2847
+ /**
2848
+ * @hidden
2849
+ */
2850
+ onNavigate: (event: any, action: NavigationAction) => void;
2851
+ /**
2852
+ * @hidden
2853
+ */
2854
+ render(): JSX_2.Element;
2855
+ protected nextTick(f: () => any): void;
2856
+ private handleWrapperFocus;
2857
+ private handleWrapperBlur;
2858
+ private handleKeyDown;
2859
+ }
2860
+
2861
+ /**
2862
+ * Represents the expand modes of the KendoReact PanelBar. Defaults to `multiple`.
2863
+ */
2864
+ export declare type PanelBarExpandMode = 'single' | 'multiple';
2865
+
2866
+ export declare class PanelBarItem extends React_2.PureComponent<PanelBarItemProps, PanelBarItemState> {
2867
+ /**
2868
+ * @hidden
2869
+ */
2870
+ static propTypes: {
2871
+ animation: PropTypes.Requireable<boolean>;
2872
+ children: PropTypes.Requireable<any>;
2873
+ className: PropTypes.Requireable<string>;
2874
+ icon: PropTypes.Requireable<string>;
2875
+ iconClass: PropTypes.Requireable<string>;
2876
+ imageUrl: PropTypes.Requireable<string>;
2877
+ svgIcon: PropTypes.Requireable<PropTypes.InferProps<{
2878
+ name: PropTypes.Validator<string>;
2879
+ content: PropTypes.Validator<string>;
2880
+ viewBox: PropTypes.Validator<string>;
2881
+ }>>;
2882
+ expanded: PropTypes.Requireable<boolean>;
2883
+ disabled: PropTypes.Requireable<boolean>;
2884
+ onSelect: PropTypes.Requireable<(...args: any[]) => any>;
2885
+ selected: PropTypes.Requireable<boolean>;
2886
+ level: PropTypes.Requireable<number>;
2887
+ title: PropTypes.Requireable<NonNullable<string | PropTypes.ReactElementLike | null | undefined>>;
2888
+ id: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
2889
+ focused: PropTypes.Requireable<boolean>;
2890
+ keepItemsMounted: PropTypes.Requireable<boolean>;
2891
+ };
2892
+ /**
2893
+ * @hidden
2894
+ */
2895
+ static defaultProps: {
2896
+ title: string;
2897
+ };
2898
+ constructor(props: PanelBarItemProps);
2899
+ /**
2900
+ * @hidden
2901
+ */
2902
+ render(): JSX_2.Element;
2903
+ private handleItemClick;
2904
+ private childFactory;
2905
+ }
2906
+
2907
+ /**
2908
+ * @hidden
2909
+ */
2910
+ declare interface PanelBarItemClickEventArguments {
2911
+ uniquePrivateKey: number;
2912
+ target: PanelBarItem;
2913
+ }
2914
+
2915
+ /**
2916
+ * Represents the props of the PanelBarItem component.
2917
+ */
2918
+ export declare interface PanelBarItemProps {
2919
+ /**
2920
+ * Allows individual animation control over the child ([see example]({% slug animations_panelbar %})). By default, it is controlled by the PanelBar component.
2921
+ */
2922
+ animation?: boolean;
2923
+ /**
2924
+ * Can be any of PanelBar items, an array of PanelBar items, or a custom component.
2925
+ */
2926
+ children?: React.ReactNode;
2927
+ /**
2928
+ * The class name that is set to the PanelBarItem component.
2929
+ */
2930
+ className?: string;
2931
+ /**
2932
+ * The class name that is set to the PanelBarItem header.
2933
+ */
2934
+ headerClassName?: string;
2935
+ /**
2936
+ * Sets the initial expanded state of the PanelBarItem ([see example]({% slug statesitems_panelbar %}#toc-expanded-items)). Controlled by the PanelBar component.
2937
+ */
2938
+ expanded?: boolean;
2939
+ /**
2940
+ * Sets the disabled state of the PanelBarItem ([see example]({% slug statesitems_panelbar %}#toc-disabled-items)).
2941
+ */
2942
+ disabled?: boolean;
2943
+ /**
2944
+ * @hidden
2945
+ */
2946
+ onSelect?: Function;
2947
+ /**
2948
+ * @hidden
2949
+ */
2950
+ level?: number;
2951
+ /**
2952
+ * Defines an icon that will be rendered next to the title ([see example]({% slug titlesitems_panelbar %}#toc-adding-icons)).
2953
+ */
2954
+ icon?: string;
2955
+ /**
2956
+ * Defines an SVG icon that will be rendered next to the title ([see example]({% slug titlesitems_panelbar %}#toc-adding-icons)).
2957
+ */
2958
+ svgIcon?: SVGIcon;
2959
+ /**
2960
+ * Defines an icon with a custom CSS class that will be rendered next to the title ([see example]({% slug titlesitems_panelbar %}#toc-adding-icons)).
2961
+ */
2962
+ iconClass?: string;
2963
+ /**
2964
+ * Defines the location of the image that will be displayed next to the title ([see example]({% slug titlesitems_panelbar %}#toc-adding-images)).
2965
+ */
2966
+ imageUrl?: string;
2967
+ /**
2968
+ * Sets the initial selected state of the PanelBarItem. Controlled by the PanelBarItem component ([see example]({% slug statesitems_panelbar %}#toc-selected-items)).
2969
+ */
2970
+ selected?: boolean;
2971
+ /**
2972
+ * Sets the title of the PanelBar item ([see example]({% slug titlesitems_panelbar %}#toc-getting-started)).
2973
+ */
2974
+ title?: React.ReactNode;
2975
+ /**
2976
+ * Allows the component to set the `id` property to each item. If not set, a default `id` is applied.
2977
+ */
2978
+ id?: string;
2979
+ /**
2980
+ * Sets the initial focused state of the PanelBarItem. Controlled by the PanelBar component.
2981
+ */
2982
+ focused?: boolean;
2983
+ /**
2984
+ * @hidden
2985
+ */
2986
+ parentExpanded?: boolean;
2987
+ /**
2988
+ * @hidden
2989
+ */
2990
+ content?: any;
2991
+ /**
2992
+ * Used to identify the PanelBarItems inside the PanelBar ([see example]({% slug controlling_state_panelbar %})). Does not depend on the state of the PanelBarItem.
2993
+ */
2994
+ uniquePrivateKey?: string;
2995
+ /**
2996
+ * @hidden
2997
+ */
2998
+ parentUniquePrivateKey?: string[];
2999
+ /**
3000
+ * @hidden
3001
+ */
3002
+ keepItemsMounted?: boolean;
3003
+ /**
3004
+ * Sets a custom property. Contained in the PanelBarItem props that are returned from the `onSelect` PanelBar event.
3005
+ */
3006
+ [customProp: string]: any;
3007
+ }
3008
+
3009
+ /** @hidden */
3010
+ declare interface PanelBarItemState {
3011
+ show: boolean;
3012
+ }
3013
+
3014
+ /**
3015
+ * Represents the props of the [KendoReact PanelBar component]({% slug overview_panelbar %}).
3016
+ */
3017
+ export declare interface PanelBarProps {
3018
+ /**
3019
+ * The child can be either a single PanelBarItem or a PanelBarItem array.
3020
+ */
3021
+ children?: React.ReactNode;
3022
+ /**
3023
+ * The class name that is set to the PanelBar.
3024
+ */
3025
+ className?: string;
3026
+ /**
3027
+ * Sets the animation state of the PanelBar.
3028
+ */
3029
+ animation?: boolean;
3030
+ /**
3031
+ * Sets the expand mode of the PanelBar ([see example]({% slug expandmodes_panelbar %})).
3032
+ *
3033
+ * The available modes are:
3034
+ * - `"single"`&mdash;Allows you to expand only one item at a time. The expanding of an item collapses the item that was previously expanded.
3035
+ * - `"multiple"` (default)&mdash;Allows you to expand two or more items at a time. Items can also be toggled.
3036
+ */
3037
+ expandMode?: PanelBarExpandMode;
3038
+ /**
3039
+ * Sets the direction of the PanelBar component.
3040
+ */
3041
+ dir?: string;
3042
+ /**
3043
+ * If set, overrides the currently selected property in the PanelBar state.
3044
+ */
3045
+ selected?: string;
3046
+ /**
3047
+ * Sets the initial expanded state of the PanelBar.
3048
+ */
3049
+ expanded?: string[];
3050
+ /**
3051
+ * Sets the initial focused state of the PanelBar.
3052
+ */
3053
+ focused?: string;
3054
+ /**
3055
+ * Determines if the PanelBar items will be mounted after expand collapse. Defaults to `false`.
3056
+ */
3057
+ keepItemsMounted?: boolean;
3058
+ /**
3059
+ * Determines if the PanelBar is going to be used in controlled state.
3060
+ */
3061
+ isControlled?: boolean;
3062
+ /**
3063
+ * Fires each time the user makes a selection ([see example]({% slug controlling_state_panelbar %})).
3064
+ */
3065
+ onSelect?: (event: PanelBarSelectEventArguments) => void;
3066
+ /**
3067
+ * Sets additional CSS styles to the PanelBar.
3068
+ */
3069
+ style?: React.CSSProperties;
3070
+ }
3071
+
3072
+ /**
3073
+ * The arguments that are passed to the `onSelect` callback function.
3074
+ */
3075
+ export declare interface PanelBarSelectEventArguments {
3076
+ /**
3077
+ * The selected PanelBar item.
3078
+ */
3079
+ target: React.ReactElement<PanelBarItemProps>;
3080
+ /**
3081
+ * The new expanded PanelBar items state.
3082
+ */
3083
+ expandedItems: string[];
3084
+ }
3085
+
3086
+ /**
3087
+ * @hidden
3088
+ */
3089
+ export declare interface PanelBarState {
3090
+ focused?: string;
3091
+ wrapperFocused?: boolean;
3092
+ selected?: string;
3093
+ expanded: string[];
3094
+ }
3095
+
3096
+ /**
3097
+ * Represents the PanelBarUtils functions.
3098
+ */
3099
+ export declare namespace PanelBarUtils {
3100
+ /**
3101
+ * Maps a collection of PanelBarItemProps to PanelBarItem components
3102
+ * ([see example]({% slug customization_panelbar %})).
3103
+ * Contained in the `PanelBarUtils` object.
3104
+ *
3105
+ * @param items - A collection of PanelBarItemProps.
3106
+ * @return {PanelBarItem[]} Returns an array of PanelBarItem components.
3107
+ */
3108
+ export function mapItemsToComponents(items: Array<PanelBarItemProps>): PanelBarItem[];
3109
+ }
3110
+
3111
+ /**
3112
+ * @hidden
3113
+ */
3114
+ export declare const renderChildren: ({ animation, keepItemsMounted, state, expanded, handleSelect, children, parentExpanded, level, parentPrivateKey }: RenderPanelBarItem) => React_2.ReactNode;
3115
+
3116
+ /**
3117
+ * @hidden
3118
+ */
3119
+ export declare interface RenderPanelBarItem {
3120
+ animation?: boolean;
3121
+ keepItemsMounted?: boolean;
3122
+ state: PanelBarState;
3123
+ expanded: string[];
3124
+ handleSelect: any;
3125
+ children: React.ReactNode;
3126
+ parentExpanded?: boolean;
3127
+ level?: number;
3128
+ parentPrivateKey?: string[];
3129
+ }
3130
+
3131
+ /**
3132
+ * @hidden
3133
+ */
3134
+ export declare const rightArrowName = "caret-alt-right";
3135
+
3136
+ /**
3137
+ * Sort the events list based on event date.
3138
+ */
3139
+ export declare const sortEventList: (eventList: TimelineEventProps[]) => TimelineEventProps[];
3140
+
3141
+ /**
3142
+ * Represents the [KendoReact Splitter component]({% slug overview_splitter %}).
3143
+ *
3144
+ * @example
3145
+ * ```jsx
3146
+ * class App extends React.Component {
3147
+ * render() {
3148
+ * return (
3149
+ * <div>
3150
+ * <Splitter
3151
+ * style={{height: 400}}
3152
+ * orientation={'vertical'}
3153
+ * >
3154
+ * <div>Pane 1</div>
3155
+ * <div>Pane 2</div>
3156
+ * <div>Pane 3</div>
3157
+ * </Splitter>
3158
+ * </div>
3159
+ * );
3160
+ * }
3161
+ * }
3162
+ *
3163
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
3164
+ * ```
3165
+ */
3166
+ export declare class Splitter extends React_2.Component<SplitterProps, SplitterState> {
3167
+ /**
3168
+ * @hidden
3169
+ */
3170
+ static displayName: string;
3171
+ /**
3172
+ * @hidden
3173
+ */
3174
+ readonly state: SplitterState;
3175
+ private panesDuringOnChange?;
3176
+ private get isControlledState();
3177
+ private get panes();
3178
+ private _container;
3179
+ private get orientation();
3180
+ private get isRtl();
3181
+ private get panesContent();
3182
+ /**
3183
+ * @hidden
3184
+ */
3185
+ constructor(props: SplitterProps);
3186
+ /**
3187
+ * @hidden
3188
+ */
3189
+ render(): JSX_2.Element;
3190
+ private validatePanes;
3191
+ private mapPaneOptions;
3192
+ private mapSplitterPanes;
3193
+ private onBarToggle;
3194
+ private onBarDragResize;
3195
+ private onBarKeyboardResize;
3196
+ private surroudingPanes;
3197
+ private containerSize;
3198
+ private isPercent;
3199
+ private toPixels;
3200
+ private panesOptions;
3201
+ private resetDragState;
3202
+ private elementSize;
3203
+ private clamp;
3204
+ private fixedSize;
3205
+ private resize;
3206
+ private getPaneProps;
3207
+ }
3208
+
3209
+ /**
3210
+ * @hidden
3211
+ */
3212
+ export declare class SplitterBar extends React_2.Component<SplitterBarProps, SplitterBarState> {
3213
+ private draggable;
3214
+ private get isStatic();
3215
+ private get isDraggable();
3216
+ private get isHorizontal();
3217
+ constructor(props: SplitterBarProps);
3218
+ render(): JSX_2.Element;
3219
+ private onDrag;
3220
+ private onFocus;
3221
+ private onBlur;
3222
+ private onToggle;
3223
+ private onPrevToggle;
3224
+ private onNextToggle;
3225
+ private onKeyDown;
3226
+ }
3227
+
3228
+ /**
3229
+ * @hidden
3230
+ */
3231
+ declare interface SplitterBarProps {
3232
+ orientation: 'vertical' | 'horizontal';
3233
+ index: number;
3234
+ prev: SplitterPaneExtendedProps;
3235
+ next: SplitterPaneExtendedProps;
3236
+ ariaLabel?: string;
3237
+ isRtl?: boolean;
3238
+ onDrag: (event: any, element: HTMLDivElement, index: number, isFirst: boolean, isLast: boolean) => void;
3239
+ onToggle: (index: number, nativeEvent: React_2.MouseEvent<HTMLDivElement, MouseEvent> | React_2.KeyboardEvent<HTMLDivElement>) => void;
3240
+ onKeyboardResize: (element: HTMLDivElement, index: number, delta: number, nativeEvent: React_2.KeyboardEvent<HTMLDivElement>) => void;
3241
+ }
3242
+
3243
+ /**
3244
+ * @hidden
3245
+ */
3246
+ declare interface SplitterBarState {
3247
+ focused: boolean;
3248
+ }
3249
+
3250
+ /**
3251
+ * Represents the onChange event of the Splitter.
3252
+ */
3253
+ export declare interface SplitterOnChangeEvent {
3254
+ /**
3255
+ * The new panes state.
3256
+ */
3257
+ newState: SplitterPaneProps[];
3258
+ /**
3259
+ * Indicates if is the last event during drag. Can be used to optimize performance.
3260
+ */
3261
+ isLast: boolean;
3262
+ /**
3263
+ * The native DOM event.
3264
+ */
3265
+ nativeEvent: React_2.MouseEvent<HTMLDivElement, MouseEvent> | React_2.KeyboardEvent<HTMLDivElement> | any;
3266
+ }
3267
+
3268
+ /**
3269
+ * @hidden
3270
+ */
3271
+ export declare class SplitterPane extends React_2.Component<SplitterPaneExtendedProps, {}> {
3272
+ render(): JSX_2.Element;
3273
+ }
3274
+
3275
+ /**
3276
+ * @hidden
3277
+ */
3278
+ export declare interface SplitterPaneExtendedProps extends SplitterPaneProps {
3279
+ orientation: 'vertical' | 'horizontal';
3280
+ overlay: boolean;
3281
+ containsSplitter: boolean;
3282
+ }
3283
+
3284
+ /**
3285
+ * Represents the pane options of the Splitter.
3286
+ */
3287
+ export declare interface SplitterPaneProps extends KendoReactComponentBaseProps {
3288
+ /**
3289
+ * Sets the size of the pane ([see example]({% slug panes_splitter %}#toc-dimensions)). Has to be between the `min` and `max` properties.
3290
+ */
3291
+ size?: string;
3292
+ /**
3293
+ * Sets the minimum possible size of the pane ([see example]({% slug panes_splitter %}#toc-dimensions)).
3294
+ */
3295
+ min?: string;
3296
+ /**
3297
+ * Sets the maximum possible size of the pane ([see example]({% slug panes_splitter %}#toc-dimensions)).
3298
+ */
3299
+ max?: string;
3300
+ /**
3301
+ * Specifies if the user is allowed to resize the pane and provide space for other panes ([see example]({% slug panes_splitter %}#toc-resizing)). If `resizable` is not specified, the resizing of the pane will be enabled.
3302
+ */
3303
+ resizable?: boolean;
3304
+ /**
3305
+ * Specifies if the user is allowed to hide the pane and provide space for other panes ([see example]({% slug panes_splitter %}#toc-collapsing)).
3306
+ */
3307
+ collapsible?: boolean;
3308
+ /**
3309
+ * Specifies the pane collapsed state ([see example]({% slug panes_splitter %}#toc-collapsing)).
3310
+ */
3311
+ collapsed?: boolean;
3312
+ /**
3313
+ * Specifies if overflowing content is scrollable or hidden ([see example]({% slug panes_splitter %}#toc-scrolling)). If `scrollable` is not specified, the content will be scrollable.
3314
+ */
3315
+ scrollable?: boolean;
3316
+ /**
3317
+ * Specifies if the children of the pane should be mounted when it's in collapsed state.
3318
+ */
3319
+ keepMounted?: boolean;
3320
+ }
3321
+
3322
+ /**
3323
+ * Represents the options of the Splitter.
3324
+ */
3325
+ export declare interface SplitterProps {
3326
+ /**
3327
+ * Sets the options of the Splitter panes ([more information and examples]({% slug panes_splitter %})). Can be used for controlled state.
3328
+ */
3329
+ panes?: SplitterPaneProps[];
3330
+ /**
3331
+ * Sets the initial options of the Splitter panes ([more information and examples]({% slug panes_splitter %})). Can be used for uncontrolled state.
3332
+ */
3333
+ defaultPanes?: SplitterPaneProps[];
3334
+ /**
3335
+ * Specifies the orientation of the panes within the Splitter ([more information and examples]({% slug orientation_splitter %})). Panes in a horizontal Splitter are placed horizontally. Panes in a vertical Splitter are placed vertically.
3336
+ */
3337
+ orientation?: 'vertical' | 'horizontal';
3338
+ /**
3339
+ * Sets the styles of the Splitter.
3340
+ */
3341
+ style?: React_2.CSSProperties;
3342
+ /**
3343
+ * Fires after a Splitter pane is resized or collapsed. Useful for updating the pane options and triggering layout calculations on components which are positioned inside the panes.
3344
+ */
3345
+ onChange?: (event: SplitterOnChangeEvent) => void;
3346
+ /**
3347
+ * The pane elements of the Splitter.
3348
+ */
3349
+ children?: React_2.ReactNode;
3350
+ /**
3351
+ * The class name that is set to the Splitter.
3352
+ */
3353
+ className?: string;
3354
+ }
3355
+
3356
+ /**
3357
+ * @hidden
3358
+ */
3359
+ export declare interface SplitterState {
3360
+ isDragging: boolean;
3361
+ dragIndex?: number;
3362
+ startTime: number;
3363
+ originalX: number;
3364
+ originalY: number;
3365
+ originalPrevSize: number;
3366
+ originalNextSize: number;
3367
+ panes: SplitterPaneProps[];
3368
+ }
3369
+
3370
+ /**
3371
+ * Represents the [KendoReact StackLayout component]({% slug overview_stacklayout %}).
3372
+ * Arranges its inner elements horizontally, or vertically in a stack. Nesting stack layouts is supported to build more complex layouts.
3373
+ *
3374
+ * @example
3375
+ * ```jsx
3376
+ *
3377
+ * const App = () => {
3378
+ * return (
3379
+ * <StackLayout
3380
+ * orientation="vertical"
3381
+ * align={{horizontal: 'stretch', vertical: 'stretch'}}
3382
+ * gap={10}
3383
+ * >
3384
+ * <div>Box</div>
3385
+ * <div>Box</div>
3386
+ * <div>Box</div>
3387
+ * <div>Box</div>
3388
+ * </StackLayout>
3389
+ * );
3390
+ * };
3391
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
3392
+ * ```
3393
+ */
3394
+ export declare const StackLayout: React_2.ForwardRefExoticComponent<StackLayoutProps & React_2.RefAttributes<StackLayoutHandle | null>>;
3395
+
3396
+ /**
3397
+ * Specifies the horizontal and vertical alignment of the inner StackLayout elements.
3398
+ */
3399
+ export declare interface StackLayoutAlign {
3400
+ /**
3401
+ * Defines the possible horizontal alignment of the inner StackLayout elements
3402
+ * ([see example]({% slug layout_stacklayout %}#toc-horizontal-align)).
3403
+ *
3404
+ * The available values are:
3405
+ * - `start`&mdash;Uses the start point of the container.
3406
+ * - `center`&mdash;Uses the center point of the container.
3407
+ * - `end`&mdash;Uses the end point of the container.
3408
+ * - (Default)`stretch`&mdash;Stretches the items to fill the width of the container.
3409
+ */
3410
+ horizontal?: 'start' | 'center' | 'end' | 'stretch';
3411
+ /**
3412
+ * Defines the possible vertical alignment of the inner StackLayout elements
3413
+ * ([see example]({% slug layout_stacklayout %}#toc-vertical-align)).
3414
+ *
3415
+ * The available values are:
3416
+ * - `top`&mdash;Uses the top point of the container.
3417
+ * - `middle`&mdash;Uses the middle point of the container.
3418
+ * - `bottom`&mdash;Uses the bottom point of the container.
3419
+ * - (Default)`stretch`&mdash;Stretches the items to fill the height of the container.
3420
+ */
3421
+ vertical?: 'top' | 'middle' | 'bottom' | 'stretch';
3422
+ }
3423
+
3424
+ /**
3425
+ * Represents the Object which is passed to the [`ref`](https://reactjs.org/docs/refs-and-the-dom.html)
3426
+ * callback of the StackLayout component.
3427
+ */
3428
+ export declare interface StackLayoutHandle {
3429
+ /**
3430
+ * Represents the current element. If no current element is present, `element` is `null`.
3431
+ */
3432
+ element: HTMLDivElement | null;
3433
+ }
3434
+
3435
+ /**
3436
+ * Specifies the orientation of the StackLayout ([see example]({% slug layout_stacklayout %}#toc-orientation)).
3437
+ *
3438
+ * The possible values are:
3439
+ * * (Default)`horizontal`
3440
+ * * `vertical`
3441
+ *
3442
+ */
3443
+ export declare type StackLayoutOrientation = 'horizontal' | 'vertical';
3444
+
3445
+ /**
3446
+ * Represents the props of the [KendoReact StackLayout component]({% slug overview_stacklayout %}).
3447
+ */
3448
+ export declare interface StackLayoutProps {
3449
+ /**
3450
+ * The React elements that will be rendered inside the StackLayout.
3451
+ */
3452
+ children?: React_2.ReactNode;
3453
+ /**
3454
+ * Sets additional CSS classes to the StackLayout.
3455
+ */
3456
+ className?: string;
3457
+ /**
3458
+ * Sets additional CSS styles to the StackLayout.
3459
+ */
3460
+ style?: React_2.CSSProperties;
3461
+ /**
3462
+ * Sets the `id` property of the root StackLayout element.
3463
+ */
3464
+ id?: string;
3465
+ /**
3466
+ * Specifies the gap between the inner elements ([see example]({% slug layout_stacklayout %}#toc-gaps)).
3467
+ */
3468
+ gap?: number | string;
3469
+ /**
3470
+ * Specifies the orientation of the StackLayout.
3471
+ * ([see example]({% slug layout_stacklayout %}#toc-orientation)).
3472
+ *
3473
+ * The possible values are:
3474
+ * * (Default)`horizontal`
3475
+ * * `vertical`
3476
+ */
3477
+ orientation?: StackLayoutOrientation;
3478
+ /**
3479
+ * Specifies the horizontal and vertical alignment of the inner StackLayout elements.
3480
+ * Demo ([here]({% slug layout_stacklayout %}#toc-horizontal-align)) and ([here]({% slug layout_stacklayout %}#toc-vertical-align)).
3481
+ *
3482
+ * The possible keys are:
3483
+ * * `horizontal`&mdash;Defines the possible horizontal alignment of the inner StackLayout elements.
3484
+ * * `start`&mdash;Uses the start point of the container.
3485
+ * * `center`&mdash;Uses the central point of the container.
3486
+ * * `end`&mdash;Uses the end point of the container.
3487
+ * * (Default)`stretch`&mdash;Stretches the items to fill the width of the container.
3488
+ * * `vertical`&mdash;Defines the possible vertical alignment of the inner StackLayout elements.
3489
+ * * `top`&mdash;Uses the top point of the container.
3490
+ * * `middle`&mdash;Uses the middle point of the container.
3491
+ * * `bottom`&mdash;Uses the bottom point of the container.
3492
+ * * (Default)`stretch`&mdash;Stretches the items to fill the height of the container.
3493
+ */
3494
+ align?: StackLayoutAlign;
3495
+ }
3496
+
3497
+ /**
3498
+ * Represents the [KendoReact Step component]({% slug overview_stepper %}).
3499
+ *
3500
+ * @example
3501
+ * ```jsx
3502
+ * const steps = [
3503
+ * { label: 'Step 1' },
3504
+ * { label: 'Step 2' },
3505
+ * { label: 'Step 3', optional: true }
3506
+ * ];
3507
+ *
3508
+ * const App = () => {
3509
+ * return (
3510
+ * <Stepper items={steps} value={1}/>
3511
+ * );
3512
+ * };
3513
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
3514
+ * ```
3515
+ */
3516
+ export declare const Step: React_2.ForwardRefExoticComponent<Omit<StepProps, "ref"> & React_2.RefAttributes<StepHandle | null>>;
3517
+
3518
+ /**
3519
+ * The arguments for the `onChange` Step event.
3520
+ */
3521
+ export declare interface StepChangeEvent extends BaseEvent<StepHandle> {
3522
+ /**
3523
+ * The index of the selected Step.
3524
+ */
3525
+ value: number;
3526
+ }
3527
+
3528
+ /**
3529
+ * The arguments for the `onFocus` Step event.
3530
+ */
3531
+ export declare interface StepFocusEvent extends BaseEvent<StepHandle> {
3532
+ }
3533
+
3534
+ /**
3535
+ * The Step ref.
3536
+ */
3537
+ export declare interface StepHandle {
3538
+ /**
3539
+ * The Step element.
3540
+ */
3541
+ element: HTMLLIElement | null;
3542
+ /**
3543
+ * Focus the Step.
3544
+ */
3545
+ focus: () => void;
3546
+ }
3547
+
3548
+ /**
3549
+ * Represents the [KendoReact Stepper component]({% slug overview_stepper %}).
3550
+ *
3551
+ * @example
3552
+ * ```jsx
3553
+ * const steps = [
3554
+ * { label: 'Step 1' },
3555
+ * { label: 'Step 2' },
3556
+ * { label: 'Step 3', optional: true }
3557
+ * ];
3558
+ *
3559
+ * const App = () => {
3560
+ * return (
3561
+ * <Stepper items={steps} value={1} />
3562
+ * );
3563
+ * };
3564
+ * ReactDOM.render(<App />, document.querySelector('my-app'));
3565
+ * ```
3566
+ */
3567
+ export declare const Stepper: React_2.ForwardRefExoticComponent<StepperProps & React_2.RefAttributes<StepperHandle | null>>;
3568
+
3569
+ /**
3570
+ * The arguments for the `onChange` Stepper event.
3571
+ */
3572
+ export declare interface StepperChangeEvent extends BaseEvent<StepperHandle> {
3573
+ /**
3574
+ * The index of the selected Step.
3575
+ */
3576
+ value: number;
3577
+ }
3578
+
3579
+ /**
3580
+ * The arguments for the `onFocus` Stepper event.
3581
+ */
3582
+ export declare interface StepperFocusEvent extends BaseEvent<StepperHandle> {
3583
+ }
3584
+
3585
+ /**
3586
+ * The Stepper ref.
3587
+ */
3588
+ export declare interface StepperHandle {
3589
+ /**
3590
+ * The Stepper element.
3591
+ */
3592
+ element: HTMLMenuElement | null;
3593
+ /**
3594
+ * Focus the Stepper's first focusable child.
3595
+ */
3596
+ focus: () => void;
3597
+ }
3598
+
3599
+ /**
3600
+ * Represents the props of the [KendoReact Stepper component]({% slug overview_stepper %}).
3601
+ */
3602
+ export declare interface StepperProps {
3603
+ /**
3604
+ * Sets the duration of the Stepper animation. Defaults to `400ms`.
3605
+ */
3606
+ animationDuration?: boolean | number;
3607
+ /**
3608
+ * Represents the children that are passed to the Stepper.
3609
+ */
3610
+ children?: any;
3611
+ /**
3612
+ * Specifies a list of CSS classes that will be added to the Stepper.
3613
+ */
3614
+ className?: string;
3615
+ /**
3616
+ * Represents the `dir` HTML attribute. This is used to switch from LTR to RTL.
3617
+ */
3618
+ dir?: string;
3619
+ /**
3620
+ * Disables the whole Stepper.
3621
+ */
3622
+ disabled?: boolean;
3623
+ /**
3624
+ * Specifies a custom icon that will be rendered inside the step for invalid steps.
3625
+ */
3626
+ errorIcon?: string;
3627
+ /**
3628
+ * Specifies a custom SVG icon that will be rendered inside the step for invalid steps.
3629
+ */
3630
+ errorSVGIcon?: SVGIcon;
3631
+ /**
3632
+ * Overrides the default component responsible for visualizing a single item ([see example]({% slug custom_rendering_stepper %})).
3633
+ *
3634
+ * The default Component is: [Step]({% slug api_layout_step %}).
3635
+ */
3636
+ item?: React_2.ComponentType<StepProps>;
3637
+ /**
3638
+ * The collection of steps that will be rendered in the Stepper ([see example]({% slug overview_stepper %})).
3639
+ */
3640
+ items: Array<StepProps>;
3641
+ /**
3642
+ * Specifies the linear flow of the Stepper.
3643
+ * ([see example]({% slug linear_mode_stepper %})).
3644
+ */
3645
+ linear?: boolean;
3646
+ /**
3647
+ * Specifies the display mode of the Stepper
3648
+ * ([see example]({% slug display_modes_stepper %})).
3649
+ * * The possible values are:
3650
+ * * (Default) `steps`. Render step indicator and optional label.
3651
+ * * `labels`. Render labels only.
3652
+ */
3653
+ mode?: 'steps' | 'labels';
3654
+ /**
3655
+ * Specifies the orientation of the Stepper
3656
+ * ([see example]({% slug orientation_stepper %})).
3657
+ *
3658
+ * The possible values are:
3659
+ * * (Default) `horizontal`
3660
+ * * `vertical`
3661
+ */
3662
+ orientation?: 'horizontal' | 'vertical';
3663
+ /**
3664
+ * Sets additional CSS styles to the Stepper.
3665
+ */
3666
+ style?: React_2.CSSProperties;
3667
+ /**
3668
+ * Specifies a custom icon that will be rendered inside the step for valid steps.
3669
+ */
3670
+ successIcon?: string;
3671
+ /**
3672
+ * Specifies a custom SVG icon that will be rendered inside the step for valid steps.
3673
+ */
3674
+ successSVGIcon?: SVGIcon;
3675
+ /**
3676
+ * Specifies the index of the selected Step.
3677
+ */
3678
+ value: number;
3679
+ /**
3680
+ * The event handler that will be fired when the value is changed.
3681
+ */
3682
+ onChange?: (event: StepperChangeEvent) => void;
3683
+ /**
3684
+ * The event handler that will be fired when a Step is focused.
3685
+ */
3686
+ onFocus?: (event: StepperFocusEvent) => void;
3687
+ }
3688
+
3689
+ /**
3690
+ * Represents the props of the [KendoReact Step component]({% slug overview_stepper %}).
3691
+ */
3692
+ export declare interface StepProps {
3693
+ /**
3694
+ * Represents the children that are passed to the Step.
3695
+ */
3696
+ children?: any;
3697
+ /**
3698
+ * Specifies a list of CSS classes that will be added to the Step element.
3699
+ */
3700
+ className?: string;
3701
+ /**
3702
+ * Represents the content that will be rendered inside each Step.
3703
+ *
3704
+ * @hidden
3705
+ */
3706
+ content?: any;
3707
+ /**
3708
+ * Specifies the current Step.
3709
+ */
3710
+ current?: boolean;
3711
+ /**
3712
+ * Sets a custom property.
3713
+ */
3714
+ [customProp: string]: any;
3715
+ /**
3716
+ * Specifies if the Step is disabled
3717
+ * ([see example]({% slug display_modes_stepper %})).
3718
+ */
3719
+ disabled?: boolean;
3720
+ /**
3721
+ * Defines the name for an existing icon in a KendoReact theme.
3722
+ * The icon is rendered inside the Step indicator by a `span.k-icon` element
3723
+ * ([see example]({% slug display_modes_stepper %})).
3724
+ */
3725
+ icon?: string;
3726
+ /**
3727
+ * Defines the SVG icon.
3728
+ * The icon is rendered inside the Step indicator
3729
+ * ([see example]({% slug display_modes_stepper %})).
3730
+ */
3731
+ svgIcon?: SVGIcon;
3732
+ /**
3733
+ * Sets the index of the Step that is used to identify it.
3734
+ */
3735
+ index?: number;
3736
+ /**
3737
+ * Specifies the validity of the step
3738
+ * ([see example]({% slug display_modes_stepper %})).
3739
+ */
3740
+ isValid?: boolean;
3741
+ /**
3742
+ * Specifies the label of the Step
3743
+ * ([see example]({% slug display_modes_stepper %})).
3744
+ */
3745
+ label?: string;
3746
+ /**
3747
+ * Specifies if the step is optional. The validation is not applied to these steps
3748
+ * ([see example]({% slug display_modes_stepper %})).
3749
+ */
3750
+ optional?: boolean;
3751
+ /**
3752
+ * Sets additional CSS styles to the Step.
3753
+ */
3754
+ style?: React_2.CSSProperties;
3755
+ /**
3756
+ * Sets the `tabIndex` property of the Step.
3757
+ * Defaults to `0`.
3758
+ */
3759
+ tabIndex?: number;
3760
+ /**
3761
+ * Specifies the text content of the Step indicator
3762
+ * ([see example]({% slug display_modes_stepper %})).
3763
+ */
3764
+ text?: string;
3765
+ }
3766
+
3767
+ /** @hidden */
3768
+ export declare const TabStrip: ForwardRefExoticComponent<TabStripProps & RefAttributes<any>>;
3769
+
3770
+ export declare class TabStripClassComponent extends React_2.Component<TabStripProps, {}> {
3771
+ /**
3772
+ * @hidden
3773
+ */
3774
+ static propTypes: {
3775
+ animation: PropTypes.Requireable<boolean>;
3776
+ children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
3777
+ onSelect: PropTypes.Requireable<(...args: any[]) => any>;
3778
+ selected: PropTypes.Requireable<number>;
3779
+ style: PropTypes.Requireable<object>;
3780
+ tabContentStyle: PropTypes.Requireable<object>;
3781
+ tabPosition: PropTypes.Requireable<string>;
3782
+ tabIndex: PropTypes.Requireable<number>;
3783
+ className: PropTypes.Requireable<string>;
3784
+ dir: PropTypes.Requireable<string>;
3785
+ };
3786
+ /**
3787
+ * @hidden
3788
+ */
3789
+ static defaultProps: {
3790
+ animation: boolean;
3791
+ tabPosition: string;
3792
+ keepTabsMounted: boolean;
3793
+ buttonScrollSpeed: number;
3794
+ mouseScrollSpeed: number;
3795
+ };
3796
+ private _element;
3797
+ private get contentPanelId();
3798
+ private get navItemId();
3799
+ private showLicenseWatermark;
3800
+ private keyBinding;
3801
+ constructor(props: TabStripProps);
3802
+ /**
3803
+ * @hidden
3804
+ */
3805
+ onSelect: (index: any) => void;
3806
+ /**
3807
+ * @hidden
3808
+ */
3809
+ onKeyDown: (event: any) => void;
3810
+ /**
3811
+ * @hidden
3812
+ */
3813
+ render(): JSX_2.Element;
3814
+ private renderContent;
3815
+ private invertKeys;
3816
+ private firstNavigatableTab;
3817
+ private lastNavigatableTab;
3818
+ private prevNavigatableTab;
3819
+ private nextNavigatableTab;
3820
+ private children;
3821
+ }
3822
+
3823
+ export declare class TabStripContent extends React_2.Component<TabStripContentProps, {}> {
3824
+ /**
3825
+ * @hidden
3826
+ */
3827
+ static propTypes: {
3828
+ animation: PropTypes.Requireable<boolean>;
3829
+ children: PropTypes.Requireable<NonNullable<PropTypes.ReactElementLike | (PropTypes.ReactElementLike | null | undefined)[] | null | undefined>>;
3830
+ selected: PropTypes.Requireable<number>;
3831
+ style: PropTypes.Requireable<object>;
3832
+ };
3833
+ private contentId;
3834
+ /**
3835
+ * @hidden
3836
+ */
3837
+ render(): JSX_2.Element;
3838
+ private renderContent;
3839
+ private renderChild;
3840
+ private childFactory;
3841
+ }
3842
+
3843
+ /**
3844
+ * The props that are passed to the TabStripContent by the TabStrip.
3845
+ */
3846
+ export declare interface TabStripContentProps {
3847
+ /**
3848
+ * Defines whether the content appearance will be animated.
3849
+ */
3850
+ animation?: boolean;
3851
+ /**
3852
+ * The index of the selected tab. Used to indicate which child to render.
3853
+ */
3854
+ selected?: number;
3855
+ /**
3856
+ * @hidden
3857
+ */
3858
+ style?: any;
3859
+ /**
3860
+ * @hidden
3861
+ */
3862
+ index?: number;
3863
+ /**
3864
+ * @hidden
3865
+ */
3866
+ keepTabsMounted?: boolean;
3867
+ /**
3868
+ * @hidden
3869
+ */
3870
+ children?: React_2.ReactNode;
3871
+ /**
3872
+ * @hidden
3873
+ */
3874
+ contentPanelId?: string;
3875
+ /**
3876
+ * @hidden
3877
+ */
3878
+ navItemId?: string;
3879
+ }
3880
+
3881
+ export declare class TabStripNavigation extends React_2.Component<TabStripNavigationProps, TabStripNavigationStateProps, {}> {
3882
+ /**
3883
+ * @hidden
3884
+ */
3885
+ static propTypes: {
3886
+ children: PropTypes.Requireable<NonNullable<PropTypes.ReactElementLike | (PropTypes.ReactElementLike | null | undefined)[] | null | undefined>>;
3887
+ onSelect: PropTypes.Requireable<(...args: any[]) => any>;
3888
+ onKeyDown: PropTypes.Requireable<(...args: any[]) => any>;
3889
+ selected: PropTypes.Requireable<number>;
3890
+ tabIndex: PropTypes.Requireable<number>;
3891
+ };
3892
+ private itemsNavRef;
3893
+ constructor(props: TabStripNavigationProps);
3894
+ /**
3895
+ * @hidden
3896
+ */
3897
+ componentDidMount(): void;
3898
+ /**
3899
+ * @hidden
3900
+ */
3901
+ componentDidUpdate(prevProps: Readonly<TabStripNavigationProps>): void;
3902
+ /**
3903
+ * @hidden
3904
+ */
3905
+ render(): JSX_2.Element;
3906
+ private scrollToSelected;
3907
+ private horizontalScroll;
3908
+ private isRtl;
3909
+ private onWheel;
3910
+ private arrowClickPrev;
3911
+ private arrowClickNext;
3912
+ private handleArrowClick;
3913
+ private setNewScrollPosition;
3914
+ private renderArrow;
3915
+ }
3916
+
3917
+ export declare class TabStripNavigationItem extends React_2.Component<TabStripNavigationItemProps, {}> {
3918
+ /**
3919
+ * @hidden
3920
+ */
3921
+ static propTypes: {
3922
+ active: PropTypes.Requireable<boolean>;
3923
+ disabled: PropTypes.Requireable<boolean>;
3924
+ index: PropTypes.Requireable<number>;
3925
+ onSelect: PropTypes.Requireable<(...args: any[]) => any>;
3926
+ title: PropTypes.Requireable<NonNullable<string | PropTypes.ReactElementLike | null | undefined>>;
3927
+ first: PropTypes.Requireable<boolean>;
3928
+ last: PropTypes.Requireable<boolean>;
3929
+ };
3930
+ /**
3931
+ * @hidden
3932
+ */
3933
+ private itemRef;
3934
+ /**
3935
+ * @hidden
3936
+ */
3937
+ focus: () => void;
3938
+ blur: () => void;
3939
+ /**
3940
+ * @hidden
3941
+ */
3942
+ render(): JSX_2.Element;
3943
+ private onClick;
3944
+ }
3945
+
3946
+ /**
3947
+ * The props that are passed by the TabStripNavigation to the TabStripNavigationItem.
3948
+ */
3949
+ export declare interface TabStripNavigationItemProps {
3950
+ /**
3951
+ * Sets the `id` property of the top element of the TabStripNavigationItem.
3952
+ */
3953
+ id?: string;
3954
+ /**
3955
+ * Defines whether the current TabStripNavigationItem is selected.
3956
+ */
3957
+ active?: boolean;
3958
+ /**
3959
+ * Defines whether the TabStripNavigationItem is disabled.
3960
+ */
3961
+ disabled?: boolean;
3962
+ /**
3963
+ * Sets the index of the TabStripNavigationItem that is used to identify it.
3964
+ */
3965
+ index: number;
3966
+ /**
3967
+ * Sets the title of the TabStripNavigationItem.
3968
+ */
3969
+ title?: React_2.ReactNode;
3970
+ /**
3971
+ * @hidden
3972
+ */
3973
+ first?: boolean;
3974
+ /**
3975
+ * @hidden
3976
+ */
3977
+ last?: boolean;
3978
+ /**
3979
+ * @hidden
3980
+ */
3981
+ onSelect?(idx: number): void;
3982
+ /**
3983
+ * @hidden
3984
+ */
3985
+ contentPanelId?: string;
3986
+ }
3987
+
3988
+ /**
3989
+ * The props that are passed to the TabStripNavigation by the TabStrip.
3990
+ */
3991
+ export declare interface TabStripNavigationProps {
3992
+ /**
3993
+ * Sets the index of the selected tab. Controlled by the TabStrip component.
3994
+ */
3995
+ selected?: number;
3996
+ /**
3997
+ * @hidden
3998
+ */
3999
+ tabIndex?: number;
4000
+ /**
4001
+ * @hidden
4002
+ */
4003
+ onKeyDown?: any;
4004
+ /**
4005
+ * @hidden
4006
+ */
4007
+ tabPosition?: string;
4008
+ /**
4009
+ * @hidden
4010
+ */
4011
+ children?: any;
4012
+ /**
4013
+ * @hidden
4014
+ */
4015
+ onSelect?(idx: number): void;
4016
+ /**
4017
+ * @hidden
4018
+ */
4019
+ scrollable?: boolean;
4020
+ /**
4021
+ * @hidden
4022
+ */
4023
+ buttonScrollSpeed?: number;
4024
+ /**
4025
+ * @hidden
4026
+ */
4027
+ mouseScrollSpeed?: number;
4028
+ /**
4029
+ * @hidden
4030
+ */
4031
+ prevButton?: React_2.ComponentType<ButtonProps>;
4032
+ /**
4033
+ * @hidden
4034
+ */
4035
+ nextButton?: React_2.ComponentType<ButtonProps>;
4036
+ /**
4037
+ * @hidden
4038
+ */
4039
+ dir?: 'ltr' | 'rtl';
4040
+ /**
4041
+ * @hidden
4042
+ */
4043
+ contentPanelId?: string;
4044
+ /**
4045
+ * @hidden
4046
+ */
4047
+ navItemId?: string;
4048
+ }
4049
+
4050
+ /**
4051
+ * @hidden
4052
+ */
4053
+ export declare interface TabStripNavigationStateProps {
4054
+ disabledPrev: boolean;
4055
+ disabledNext: boolean;
4056
+ }
4057
+
4058
+ /**
4059
+ * Represents the props of the [KendoReact TabStrip component]({% slug overview_tabstrip %}).
4060
+ */
4061
+ export declare interface TabStripProps extends KendoReactComponentBaseProps, TabStripScrollableProps {
4062
+ /**
4063
+ * Enables the tab animation.
4064
+ */
4065
+ animation?: boolean;
4066
+ /**
4067
+ * Sets the index of the selected TabStripTab component ([see example]({% slug tabs_tabstrip %}#toc-tabs-on-initial-loading)).
4068
+ */
4069
+ selected?: number;
4070
+ /**
4071
+ * @hidden
4072
+ */
4073
+ style?: any;
4074
+ /**
4075
+ * Sets the style of the TabStripContent component.
4076
+ */
4077
+ tabContentStyle?: any;
4078
+ /**
4079
+ * The position in which the TabStripNavigation components will be rendered.
4080
+ *
4081
+ * The available options are:
4082
+ * - `"top"`&mdash;Renders the `TabStripNavigation` components to the top of the TabStrip.
4083
+ * - `"bottom"`&mdash;Renders the `TabStripNavigation` components to the bottom of the TabStrip.
4084
+ * - `"left"`&mdash;Renders the `TabStripNavigation` components to the left of the TabStrip.
4085
+ * - `"right"`&mdash;Renders the `TabStripNavigation` components to the right of the TabStrip.
4086
+ */
4087
+ tabPosition?: string;
4088
+ /**
4089
+ * Sets the `tabIndex` of the TabStripNavigation.
4090
+ */
4091
+ tabIndex?: number;
4092
+ /**
4093
+ * Sets the direction of the TabStrip component.
4094
+ */
4095
+ dir?: string;
4096
+ /**
4097
+ * Specifies the CSS class names of the TabStrip component.
4098
+ */
4099
+ className?: string;
4100
+ /**
4101
+ * Defines if the tabs will remain mounted after another tab is selected. Defaults to `false`.
4102
+ */
4103
+ keepTabsMounted?: boolean;
4104
+ /**
4105
+ * Fires each time the user makes a selection.
4106
+ */
4107
+ onSelect?: (e: TabStripSelectEventArguments) => void;
4108
+ }
4109
+
4110
+ /**
4111
+ * @hidden
4112
+ */
4113
+ export declare interface TabStripScrollableProps {
4114
+ /**
4115
+ * Determines whether the TabStrip will be scrollable.
4116
+ *
4117
+ * @default false
4118
+ */
4119
+ scrollable?: boolean;
4120
+ /**
4121
+ * Sets the tab list scroll speed in pixels when scrolling via clicking the previous or next button.
4122
+ *
4123
+ * @default 100
4124
+ */
4125
+ buttonScrollSpeed?: number;
4126
+ /**
4127
+ * Sets the tab list scroll speed in pixels when scrolling via the mouse wheel. You can disable the mouse wheel scrolling by setting this prop to `0`.
4128
+ *
4129
+ * @default 10
4130
+ */
4131
+ mouseScrollSpeed?: number;
4132
+ /**
4133
+ * Defines the custom component that will be rendered as a previous button.
4134
+ * To remove the button, set a function which returns null `() => null`.
4135
+ */
4136
+ prevButton?: React_2.ComponentType<ButtonProps>;
4137
+ /**
4138
+ * Defines the custom component that will be rendered as a next button.
4139
+ * To remove the button, set a function which returns null `() => null`.
4140
+ */
4141
+ nextButton?: React_2.ComponentType<ButtonProps>;
4142
+ }
4143
+
4144
+ /**
4145
+ * The arguments that are passed to the `onSelect` callback function of the TabStrip.
4146
+ */
4147
+ export declare interface TabStripSelectEventArguments {
4148
+ /**
4149
+ * The index of the selected TabStrip tab.
4150
+ */
4151
+ selected: number;
4152
+ }
4153
+
4154
+ export declare class TabStripTab extends React_2.Component<TabStripTabProps, {}> {
4155
+ /**
4156
+ * @hidden
4157
+ */
4158
+ static propTypes: {
4159
+ disabled: PropTypes.Requireable<boolean>;
4160
+ contentClassName: PropTypes.Requireable<string>;
4161
+ children: PropTypes.Requireable<NonNullable<PropTypes.ReactNodeLike>>;
4162
+ title: PropTypes.Requireable<NonNullable<PropTypes.ReactNodeLike>>;
4163
+ };
4164
+ /**
4165
+ * @hidden
4166
+ */
4167
+ render(): null;
4168
+ }
4169
+
4170
+ /**
4171
+ * Represents the props of the TabStrip tabs.
4172
+ */
4173
+ export declare interface TabStripTabProps {
4174
+ /**
4175
+ * Defines whether a tab is disabled ([see example]({% slug tabs_tabstrip %}#toc-disabled-state)).
4176
+ */
4177
+ disabled?: boolean;
4178
+ /**
4179
+ * @hidden
4180
+ */
4181
+ children?: React_2.ReactNode;
4182
+ /**
4183
+ * Sets the title of the tab ([see example]({% slug tabs_tabstrip %}#toc-titles)).
4184
+ */
4185
+ title?: React_2.ReactNode;
4186
+ /**
4187
+ * Specifies the CSS class names of the TabStripTab content.
4188
+ */
4189
+ contentClassName?: string;
4190
+ }
4191
+
4192
+ /**
4193
+ * Represents the [KendoReact TileLayout component]({% slug overview_tilelayout %}).
4194
+ */
4195
+ export declare class TileLayout extends React_2.Component<TileLayoutProps, TileLayoutState> {
4196
+ /**
4197
+ * @hidden
4198
+ */
4199
+ static propTypes: {
4200
+ id: PropTypes.Requireable<string>;
4201
+ style: PropTypes.Requireable<object>;
4202
+ className: PropTypes.Requireable<string>;
4203
+ dir: PropTypes.Requireable<string>;
4204
+ gap: PropTypes.Requireable<object>;
4205
+ columns: PropTypes.Requireable<number>;
4206
+ columnWidth: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
4207
+ rowHeight: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
4208
+ dataItemKey: PropTypes.Requireable<string>;
4209
+ items: PropTypes.Requireable<any[]>;
4210
+ positions: PropTypes.Requireable<any[]>;
4211
+ autoFlow: PropTypes.Requireable<string>;
4212
+ onReposition: PropTypes.Requireable<(...args: any[]) => any>;
4213
+ ignoreDrag: PropTypes.Requireable<(...args: any[]) => any>;
4214
+ };
4215
+ /**
4216
+ * @hidden
4217
+ */
4218
+ static displayName: string;
4219
+ /**
4220
+ * @hidden
4221
+ */
4222
+ _element: HTMLDivElement | null;
4223
+ /**
4224
+ * @hidden
4225
+ */
4226
+ state: {
4227
+ positions: ({
4228
+ order: number;
4229
+ rowSpan: number;
4230
+ colSpan: number;
4231
+ } & TilePosition)[];
4232
+ };
4233
+ private showLicenseWatermark;
4234
+ constructor(props: TileLayoutProps);
4235
+ /**
4236
+ * Gets the HTML element of the TileLayout component.
4237
+ */
4238
+ get element(): HTMLDivElement | null;
4239
+ /**
4240
+ * @hidden
4241
+ */
4242
+ focus: () => void;
4243
+ /**
4244
+ * @hidden
4245
+ */
4246
+ static getDerivedStateFromProps(props: TileLayoutProps, state: TileLayoutState): {
4247
+ positions: ({
4248
+ order: number;
4249
+ rowSpan: number;
4250
+ colSpan: number;
4251
+ } & TilePosition)[];
4252
+ } | null;
4253
+ /**
4254
+ * @hidden
4255
+ */
4256
+ update: (index: number, dOrder: number, dCol: number, dRowSpan?: number, dColSpan?: number) => void;
4257
+ render(): JSX_2.Element;
4258
+ }
4259
+
4260
+ /**
4261
+ * Controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the TileLayout.
4262
+ * For further reference, check [grid-auto-flow CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow) article.
4263
+ * Defaults to `column`.
4264
+ */
4265
+ export declare type TileLayoutAutoFlow = 'column' | 'row' | 'column dense' | 'row dense' | 'unset';
4266
+
4267
+ /**
4268
+ * Specifies the gaps between the tiles.
4269
+ */
4270
+ export declare interface TileLayoutGap {
4271
+ /**
4272
+ * The rows gap between tiles.
4273
+ * Defaults to `16px`.
4274
+ */
4275
+ rows?: number | string;
4276
+ /**
4277
+ * The columns gap between tiles.
4278
+ * Defaults to `16px`.
4279
+ */
4280
+ columns?: number | string;
4281
+ }
4282
+
4283
+ /**
4284
+ * The interface for describing items that can be passed to the `items` property of the TileLayout component.
4285
+ */
4286
+ export declare interface TileLayoutItem {
4287
+ /**
4288
+ * The position which is used when the TileLayout is in uncontrolled mode
4289
+ * ([see example]({% slug tiles_tilelayout %}#toc-position-and-dimensions)).
4290
+ */
4291
+ defaultPosition?: TilePosition;
4292
+ /**
4293
+ * Sets additional CSS styles to the TileLayoutItem.
4294
+ */
4295
+ style?: React.CSSProperties;
4296
+ /**
4297
+ * Sets additional classes to the TileLayoutItem.
4298
+ */
4299
+ className?: string;
4300
+ /**
4301
+ * Sets additional CSS styles to the TileLayoutItem hint element.
4302
+ */
4303
+ hintStyle?: React.CSSProperties;
4304
+ /**
4305
+ * Sets additional classes to the TileLayoutItem hint element.
4306
+ */
4307
+ hintClassName?: string;
4308
+ /**
4309
+ * Sets the title in the TileLayoutItem's header
4310
+ * ([see example]({% slug tiles_tilelayout %})).
4311
+ */
4312
+ header?: React.ReactNode;
4313
+ /**
4314
+ * Sets the content in TileLayoutItem's body
4315
+ * ([see example]({% slug tiles_tilelayout %})).
4316
+ */
4317
+ body?: React.ReactNode;
4318
+ /**
4319
+ * Overrides the default rendering of the TileLayoutItem
4320
+ * ([see example]({% slug tiles_tilelayout %}#toc-custom-rendering)).
4321
+ */
4322
+ item?: React.ReactNode;
4323
+ /**
4324
+ * Specifies if the user is allowed to resize the TileLayoutItem and in which direction
4325
+ * ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
4326
+ * If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
4327
+ */
4328
+ resizable?: TileResizeMode;
4329
+ /**
4330
+ * Specifies if the user is allowed to reorder the TileLayoutItem by dragging and dropping it
4331
+ * ([see example]({% slug tiles_tilelayout %}#toc-reordering)).
4332
+ * If `reorderable` is not specified, the dragging functionality of the TileLayoutItem will be enabled.
4333
+ */
4334
+ reorderable?: boolean;
4335
+ }
4336
+
4337
+ /**
4338
+ * Represents the properties of [TileLayout](% slug overview_tilelayout %) component.
4339
+ */
4340
+ export declare interface TileLayoutProps {
4341
+ /**
4342
+ * Sets the `id` property of the root element.
4343
+ */
4344
+ id?: string;
4345
+ /**
4346
+ * Sets additional CSS styles to the TileLayout.
4347
+ */
4348
+ style?: React_2.CSSProperties;
4349
+ /**
4350
+ * Sets additional classes to the TileLayout.
4351
+ */
4352
+ className?: string;
4353
+ /**
4354
+ * Represents the `dir` HTML attribute. This is used to switch from LTR to RTL.
4355
+ */
4356
+ dir?: string;
4357
+ /**
4358
+ * Specifies the gaps between the tiles ([see example]({% slug overview_tilelayout %}#toc-tilelayout-configuration-options)).
4359
+ *
4360
+ * * The possible keys are:
4361
+ * * `rows`
4362
+ * * `columns`
4363
+ */
4364
+ gap?: TileLayoutGap;
4365
+ /**
4366
+ * Specifies the default number of columns ([see example]({% slug overview_tilelayout %}#toc-tilelayout-configuration-options)).
4367
+ */
4368
+ columns?: number;
4369
+ /**
4370
+ * Specifies the default width of the columns ([see example]({% slug overview_tilelayout %}#toc-tilelayout-configuration-options)).
4371
+ */
4372
+ columnWidth?: number | string;
4373
+ /**
4374
+ * Specifies the default height of the rows ([see example]({% slug overview_tilelayout %}#toc-tilelayout-configuration-options)).
4375
+ */
4376
+ rowHeight?: number | string;
4377
+ /**
4378
+ * Represents the `key` field of the TileLayout item. Used for setting unique keys to the TileLayout items.
4379
+ */
4380
+ dataItemKey?: string;
4381
+ /**
4382
+ * The collection of items that will be rendered in the TileLayout
4383
+ * ([see example]({% slug overview_tilelayout %}#toc-tilelayout-configuration-options)).
4384
+ */
4385
+ items?: TileLayoutItem[];
4386
+ /**
4387
+ * The list of tiles' positions which are used when the TileLayout is in controlled mode
4388
+ * ([see example]({% slug tiles_tilelayout %}#toc-controlling-the-position)).
4389
+ */
4390
+ positions?: TilePosition[];
4391
+ /**
4392
+ * Fires when the user repositions the tile by either dragging or resizing
4393
+ * ([see example]({% slug tiles_tilelayout %}#toc-controlling-the-position)).
4394
+ */
4395
+ onReposition?: (event: TileLayoutRepositionEvent) => void;
4396
+ /**
4397
+ * Controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the TileLayout.
4398
+ * For further reference, check [grid-auto-flow CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow) article.
4399
+ * Defaults to `column`
4400
+ * ([see example]({% slug autoflows_tilelayout %})).
4401
+ */
4402
+ autoFlow?: TileLayoutAutoFlow;
4403
+ /**
4404
+ * Use this callback to prevent or allow dragging of the tiles based on specific dom event.
4405
+ * Setting `ignoreDrag={(e) => { return !(e.target.classList.contains("k-card-title")); }}` will make only the headers draggable.
4406
+ * Setting `ignoreDrag={(e) => { return e.target.nodeName == "INPUT"; }}` will ignore dragging input elements.
4407
+ */
4408
+ ignoreDrag?: (event: any) => boolean;
4409
+ }
4410
+
4411
+ /**
4412
+ * The arguments for the `onReposition` TileLayout event.
4413
+ */
4414
+ export declare interface TileLayoutRepositionEvent extends BaseEvent<TileLayout> {
4415
+ /**
4416
+ * The new positions of the TileLayout tiles.
4417
+ */
4418
+ value: Array<TileStrictPosition>;
4419
+ }
4420
+
4421
+ /**
4422
+ * @hidden
4423
+ */
4424
+ export declare interface TileLayoutState {
4425
+ positions: TileStrictPosition[];
4426
+ }
4427
+
4428
+ /**
4429
+ * Specifies the position of each tile.
4430
+ */
4431
+ export declare interface TilePosition {
4432
+ /**
4433
+ * Defines the order index of the TileLayoutItem.
4434
+ * If not set, items will receive a sequential order.
4435
+ */
4436
+ order?: number;
4437
+ /**
4438
+ * (Required) Defines on which column-line the TileLayoutItem will start.
4439
+ * It is required in order reordering and resizing functionalities to work as expected as they rely on it.
4440
+ */
4441
+ col: number;
4442
+ /**
4443
+ * Specifies how many columns will the TileLayoutItem spans.
4444
+ * Defaults to `1`.
4445
+ */
4446
+ colSpan?: number;
4447
+ /**
4448
+ * Defines on which row-line the TileLayoutItem will start.
4449
+ */
4450
+ row?: number;
4451
+ /**
4452
+ * Specifies how many rows will the TileLayoutItem spans.
4453
+ * Defaults to `1`.
4454
+ */
4455
+ rowSpan?: number;
4456
+ }
4457
+
4458
+ /**
4459
+ * Specifies if the user is allowed to resize the TileLayoutItem and in which direction
4460
+ * ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
4461
+ * If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
4462
+ */
4463
+ export declare type TileResizeMode = 'horizontal' | 'vertical' | boolean;
4464
+
4465
+ /**
4466
+ * Specifies the strict position of each tile.
4467
+ * Used in the [TileLayoutRepositionEvent]({% slug api_layout_tilelayoutrepositionevent %}).
4468
+ */
4469
+ export declare interface TileStrictPosition extends TilePosition {
4470
+ /**
4471
+ * Defines the order index of the TileLayoutItem.
4472
+ * If not set, items will receive a sequential order.
4473
+ */
4474
+ order: number;
4475
+ /**
4476
+ * Specifies how many rows will the TileLayoutItem spans.
4477
+ * Defaults to `1`.
4478
+ */
4479
+ rowSpan: number;
4480
+ /**
4481
+ * Specifies how many columns will the TileLayoutItem spans.
4482
+ * Defaults to `1`.
4483
+ */
4484
+ colSpan: number;
4485
+ }
4486
+
4487
+ export declare const Timeline: React_2.FunctionComponent<TimelineProps>;
4488
+
4489
+ /**
4490
+ * @hidden
4491
+ */
4492
+ export declare interface TimelineDirectionsProps {
4493
+ eventsData: TimelineEventProps[];
4494
+ dateFormat?: string;
4495
+ transitionDuration?: number;
4496
+ navigatable?: boolean;
4497
+ navigation?: React_2.MutableRefObject<Navigation>;
4498
+ onActionClick?: (event: EventDataProps) => void;
4499
+ }
4500
+
4501
+ export declare interface TimelineEventProps {
4502
+ /**
4503
+ * Specifies if the event card is default collapsed.
4504
+ */
4505
+ opened?: boolean;
4506
+ /**
4507
+ * Specifies the text that is rendered as body of the event card.
4508
+ */
4509
+ description: string;
4510
+ /**
4511
+ * Represent event point on the axis.
4512
+ */
4513
+ date: Date;
4514
+ /**
4515
+ * Specifies the text that is rendered as title.
4516
+ */
4517
+ title: string;
4518
+ /**
4519
+ * Specifies the text that is rendered under the title.
4520
+ */
4521
+ subtitle?: string;
4522
+ /**
4523
+ * Specifies the images that are rendered under the description.
4524
+ */
4525
+ images?: {
4526
+ src: string;
4527
+ alt?: string;
4528
+ }[];
4529
+ /**
4530
+ * Specifies the corresponding links that are rendered under the images.
4531
+ */
4532
+ actions?: {
4533
+ text: string;
4534
+ url: string;
4535
+ }[];
4536
+ /**
4537
+ * @Hidden
4538
+ */
4539
+ yearFlag?: number;
4540
+ }
4541
+
4542
+ export declare interface TimelineProps {
4543
+ events: TimelineEventProps[];
4544
+ /**
4545
+ * Specifies the CSS class names which are set to the Timeline.
4546
+ */
4547
+ className?: string;
4548
+ /**
4549
+ * Specifies option for expanding and collapsing the event card.
4550
+ */
4551
+ collapsibleEvents?: boolean;
4552
+ /**
4553
+ * @hidden
4554
+ */
4555
+ horizontal?: boolean;
4556
+ /**
4557
+ * The date format for displaying the event date.
4558
+ */
4559
+ dateFormat?: string;
4560
+ /**
4561
+ * Render events alternatingly on both sides of the axis.
4562
+ */
4563
+ alterMode?: boolean;
4564
+ /**
4565
+ * Specifies the time for sliding to next event in horizontal mode and time for collapsing the event in vertical mode.
4566
+ * The default value are:
4567
+ * - `300ms` for horizontal
4568
+ * - `400ms` for vertical
4569
+ */
4570
+ transitionDuration?: number;
4571
+ /**
4572
+ * If set to `true`, the user can use dedicated shortcuts to interact with the Timeline.
4573
+ * By default, navigation is disabled.
4574
+ */
4575
+ navigatable?: boolean;
4576
+ /**
4577
+ * An event that is called when event card is toggled.
4578
+ */
4579
+ onChange?: (event: EventDataProps) => void;
4580
+ /**
4581
+ * An event that is called when card action is clicked.
4582
+ */
4583
+ onActionClick?: (event: EventDataProps) => void;
4584
+ }
4585
+
4586
+ /**
4587
+ * @hidden
4588
+ */
4589
+ export declare interface yearFlagProps {
4590
+ yearFlag?: number;
4591
+ }
4592
+
4593
+ export { }