@progress/kendo-vue-layout 5.3.0-dev.202410141143 → 5.3.0-develop.2

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 (853) hide show
  1. package/README.md +23 -29
  2. package/actionsheet/ActionSheet.js +8 -0
  3. package/actionsheet/ActionSheet.mjs +273 -0
  4. package/actionsheet/ActionSheetContent.js +8 -0
  5. package/actionsheet/ActionSheetContent.mjs +29 -0
  6. package/actionsheet/ActionSheetFooter.js +8 -0
  7. package/actionsheet/ActionSheetFooter.mjs +29 -0
  8. package/actionsheet/ActionSheetHeader.js +8 -0
  9. package/actionsheet/ActionSheetHeader.mjs +35 -0
  10. package/actionsheet/ActionSheetItem.js +8 -0
  11. package/actionsheet/ActionSheetItem.mjs +93 -0
  12. package/appbar/AppBar.js +8 -0
  13. package/appbar/AppBar.mjs +72 -0
  14. package/appbar/AppBarSection.js +8 -0
  15. package/appbar/AppBarSection.mjs +26 -0
  16. package/appbar/AppBarSpacer.js +8 -0
  17. package/appbar/AppBarSpacer.mjs +43 -0
  18. package/bottomnavigation/BottomNavigation.js +8 -0
  19. package/bottomnavigation/BottomNavigation.mjs +147 -0
  20. package/bottomnavigation/BottomNavigationItem.js +8 -0
  21. package/bottomnavigation/BottomNavigationItem.mjs +101 -0
  22. package/bottomnavigation/models/utils.js +8 -0
  23. package/bottomnavigation/models/utils.mjs +34 -0
  24. package/card/Avatar.js +8 -0
  25. package/card/Avatar.mjs +91 -0
  26. package/card/Card.js +8 -0
  27. package/card/Card.mjs +54 -0
  28. package/card/CardActions.js +8 -0
  29. package/card/CardActions.mjs +48 -0
  30. package/card/CardBody.js +8 -0
  31. package/card/CardBody.mjs +21 -0
  32. package/card/CardFooter.js +8 -0
  33. package/card/CardFooter.mjs +21 -0
  34. package/card/CardHeader.js +8 -0
  35. package/card/CardHeader.mjs +21 -0
  36. package/card/CardImage.js +8 -0
  37. package/card/CardImage.mjs +23 -0
  38. package/card/CardSubtitle.js +8 -0
  39. package/card/CardSubtitle.mjs +21 -0
  40. package/card/CardTitle.js +8 -0
  41. package/card/CardTitle.mjs +21 -0
  42. package/card/interfaces/Enums.js +8 -0
  43. package/card/interfaces/Enums.mjs +22 -0
  44. package/dist/cdn/js/kendo-vue-layout.js +8 -1
  45. package/drawer/Drawer.js +8 -0
  46. package/drawer/Drawer.mjs +182 -0
  47. package/drawer/DrawerContent.js +8 -0
  48. package/drawer/DrawerContent.mjs +21 -0
  49. package/drawer/DrawerItem.js +8 -0
  50. package/drawer/DrawerItem.mjs +102 -0
  51. package/drawer/DrawerNavigation.js +8 -0
  52. package/drawer/DrawerNavigation.mjs +155 -0
  53. package/expansionpanel/ExpansionPanel.js +8 -0
  54. package/expansionpanel/ExpansionPanel.mjs +138 -0
  55. package/expansionpanel/ExpansionPanelContent.js +8 -0
  56. package/expansionpanel/ExpansionPanelContent.mjs +27 -0
  57. package/gridlayout/GridLayout.js +8 -0
  58. package/gridlayout/GridLayout.mjs +95 -0
  59. package/gridlayout/GridLayoutItem.js +8 -0
  60. package/gridlayout/GridLayoutItem.mjs +53 -0
  61. package/index.d.mts +4366 -0
  62. package/index.d.ts +4366 -0
  63. package/index.js +8 -0
  64. package/index.mjs +107 -0
  65. package/menu/components/Menu.js +8 -0
  66. package/menu/components/Menu.mjs +180 -0
  67. package/menu/components/MenuItemArrow.js +8 -0
  68. package/menu/components/MenuItemArrow.mjs +40 -0
  69. package/menu/components/MenuItemInternal.js +8 -0
  70. package/menu/components/MenuItemInternal.mjs +361 -0
  71. package/menu/components/MenuItemLink.js +8 -0
  72. package/menu/components/MenuItemLink.mjs +42 -0
  73. package/menu/consts.js +8 -0
  74. package/menu/consts.mjs +58 -0
  75. package/menu/utils/DirectionHolder.js +8 -0
  76. package/menu/utils/DirectionHolder.mjs +24 -0
  77. package/menu/utils/MouseOverHandler.js +8 -0
  78. package/menu/utils/MouseOverHandler.mjs +33 -0
  79. package/menu/utils/getNewItemIdUponKeyboardNavigation.js +8 -0
  80. package/menu/utils/getNewItemIdUponKeyboardNavigation.mjs +123 -0
  81. package/menu/utils/hoverDelay.js +8 -0
  82. package/menu/utils/hoverDelay.mjs +17 -0
  83. package/menu/utils/itemsIdsUtils.js +8 -0
  84. package/menu/utils/itemsIdsUtils.mjs +80 -0
  85. package/menu/utils/misc.js +8 -0
  86. package/menu/utils/misc.mjs +28 -0
  87. package/menu/utils/prepareInputItemsForInternalWork.js +8 -0
  88. package/menu/utils/prepareInputItemsForInternalWork.mjs +69 -0
  89. package/messages/main.js +8 -0
  90. package/messages/main.mjs +16 -0
  91. package/package-metadata.js +8 -0
  92. package/package-metadata.mjs +18 -0
  93. package/package.json +29 -57
  94. package/panelbar/PanelBar.js +8 -0
  95. package/panelbar/PanelBar.mjs +190 -0
  96. package/panelbar/PanelBarItem.js +8 -0
  97. package/panelbar/PanelBarItem.mjs +217 -0
  98. package/panelbar/interfaces/NavigationAction.js +8 -0
  99. package/panelbar/interfaces/NavigationAction.mjs +11 -0
  100. package/panelbar/util.js +8 -0
  101. package/panelbar/util.mjs +89 -0
  102. package/splitter/Splitter.js +8 -0
  103. package/splitter/Splitter.mjs +240 -0
  104. package/splitter/SplitterBar.js +8 -0
  105. package/splitter/SplitterBar.mjs +187 -0
  106. package/splitter/SplitterPane.js +8 -0
  107. package/splitter/SplitterPane.mjs +67 -0
  108. package/stacklayout/StackLayout.js +8 -0
  109. package/stacklayout/StackLayout.mjs +79 -0
  110. package/stepper/Step.js +8 -0
  111. package/stepper/Step.mjs +179 -0
  112. package/stepper/Stepper.js +8 -0
  113. package/stepper/Stepper.mjs +280 -0
  114. package/stepper/contants.js +8 -0
  115. package/stepper/contants.mjs +12 -0
  116. package/stepper/messages/main.js +8 -0
  117. package/stepper/messages/main.mjs +16 -0
  118. package/tabstrip/TabStrip.js +8 -0
  119. package/tabstrip/TabStrip.mjs +211 -0
  120. package/tabstrip/TabStripContent.js +8 -0
  121. package/tabstrip/TabStripContent.mjs +97 -0
  122. package/tabstrip/TabStripNavigation.js +8 -0
  123. package/tabstrip/TabStripNavigation.mjs +79 -0
  124. package/tabstrip/TabStripNavigationItem.js +8 -0
  125. package/tabstrip/TabStripNavigationItem.mjs +86 -0
  126. package/tabstrip/TabStripTab.js +8 -0
  127. package/tabstrip/TabStripTab.mjs +49 -0
  128. package/tabstrip/utils.js +8 -0
  129. package/tabstrip/utils.mjs +16 -0
  130. package/tilelayout/ResizeHandlers.js +8 -0
  131. package/tilelayout/ResizeHandlers.mjs +102 -0
  132. package/tilelayout/Tile.js +8 -0
  133. package/tilelayout/Tile.mjs +255 -0
  134. package/tilelayout/TileLayout.js +8 -0
  135. package/tilelayout/TileLayout.mjs +181 -0
  136. package/dist/es/actionsheet/ActionSheet.d.ts +0 -140
  137. package/dist/es/actionsheet/ActionSheet.js +0 -426
  138. package/dist/es/actionsheet/ActionSheetContent.d.ts +0 -41
  139. package/dist/es/actionsheet/ActionSheetContent.js +0 -38
  140. package/dist/es/actionsheet/ActionSheetFooter.d.ts +0 -41
  141. package/dist/es/actionsheet/ActionSheetFooter.js +0 -38
  142. package/dist/es/actionsheet/ActionSheetHeader.d.ts +0 -41
  143. package/dist/es/actionsheet/ActionSheetHeader.js +0 -45
  144. package/dist/es/actionsheet/ActionSheetItem.d.ts +0 -42
  145. package/dist/es/actionsheet/ActionSheetItem.js +0 -115
  146. package/dist/es/actionsheet/interfaces/ActionSheetItemProps.d.ts +0 -70
  147. package/dist/es/actionsheet/interfaces/ActionSheetItemProps.js +0 -1
  148. package/dist/es/additionalTypes.ts +0 -21
  149. package/dist/es/appbar/AppBar.d.ts +0 -44
  150. package/dist/es/appbar/AppBar.js +0 -86
  151. package/dist/es/appbar/AppBarSection.d.ts +0 -44
  152. package/dist/es/appbar/AppBarSection.js +0 -38
  153. package/dist/es/appbar/AppBarSpacer.d.ts +0 -44
  154. package/dist/es/appbar/AppBarSpacer.js +0 -55
  155. package/dist/es/appbar/interfaces/AppBarProps.d.ts +0 -67
  156. package/dist/es/appbar/interfaces/AppBarProps.js +0 -1
  157. package/dist/es/appbar/interfaces/AppBarSectionProps.d.ts +0 -5
  158. package/dist/es/appbar/interfaces/AppBarSectionProps.js +0 -1
  159. package/dist/es/appbar/interfaces/AppBarSpacerProps.d.ts +0 -7
  160. package/dist/es/appbar/interfaces/AppBarSpacerProps.js +0 -1
  161. package/dist/es/bottomnavigation/BottomNavigation.d.ts +0 -45
  162. package/dist/es/bottomnavigation/BottomNavigation.js +0 -183
  163. package/dist/es/bottomnavigation/BottomNavigationItem.d.ts +0 -44
  164. package/dist/es/bottomnavigation/BottomNavigationItem.js +0 -132
  165. package/dist/es/bottomnavigation/BottomNavigationItemProps.d.ts +0 -54
  166. package/dist/es/bottomnavigation/BottomNavigationItemProps.js +0 -1
  167. package/dist/es/bottomnavigation/BottomNavigationProps.d.ts +0 -147
  168. package/dist/es/bottomnavigation/BottomNavigationProps.js +0 -1
  169. package/dist/es/bottomnavigation/models/events.d.ts +0 -18
  170. package/dist/es/bottomnavigation/models/events.js +0 -1
  171. package/dist/es/bottomnavigation/models/utils.d.ts +0 -36
  172. package/dist/es/bottomnavigation/models/utils.js +0 -36
  173. package/dist/es/card/Avatar.d.ts +0 -43
  174. package/dist/es/card/Avatar.js +0 -96
  175. package/dist/es/card/Card.d.ts +0 -43
  176. package/dist/es/card/Card.js +0 -67
  177. package/dist/es/card/CardActions.d.ts +0 -43
  178. package/dist/es/card/CardActions.js +0 -57
  179. package/dist/es/card/CardBody.d.ts +0 -43
  180. package/dist/es/card/CardBody.js +0 -31
  181. package/dist/es/card/CardFooter.d.ts +0 -43
  182. package/dist/es/card/CardFooter.js +0 -31
  183. package/dist/es/card/CardHeader.d.ts +0 -43
  184. package/dist/es/card/CardHeader.js +0 -31
  185. package/dist/es/card/CardImage.d.ts +0 -43
  186. package/dist/es/card/CardImage.js +0 -38
  187. package/dist/es/card/CardSubtitle.d.ts +0 -43
  188. package/dist/es/card/CardSubtitle.js +0 -31
  189. package/dist/es/card/CardTitle.d.ts +0 -43
  190. package/dist/es/card/CardTitle.js +0 -31
  191. package/dist/es/card/interfaces/AvatarProps.d.ts +0 -72
  192. package/dist/es/card/interfaces/AvatarProps.js +0 -1
  193. package/dist/es/card/interfaces/CardActionsProps.d.ts +0 -22
  194. package/dist/es/card/interfaces/CardActionsProps.js +0 -1
  195. package/dist/es/card/interfaces/CardBodyProps.d.ts +0 -2
  196. package/dist/es/card/interfaces/CardBodyProps.js +0 -1
  197. package/dist/es/card/interfaces/CardFooterProps.d.ts +0 -2
  198. package/dist/es/card/interfaces/CardFooterProps.js +0 -1
  199. package/dist/es/card/interfaces/CardHeaderProps.d.ts +0 -2
  200. package/dist/es/card/interfaces/CardHeaderProps.js +0 -1
  201. package/dist/es/card/interfaces/CardImageProps.d.ts +0 -6
  202. package/dist/es/card/interfaces/CardImageProps.js +0 -1
  203. package/dist/es/card/interfaces/CardProps.d.ts +0 -28
  204. package/dist/es/card/interfaces/CardProps.js +0 -1
  205. package/dist/es/card/interfaces/CardSubtitleProps.d.ts +0 -2
  206. package/dist/es/card/interfaces/CardSubtitleProps.js +0 -1
  207. package/dist/es/card/interfaces/CardTitleProps.d.ts +0 -2
  208. package/dist/es/card/interfaces/CardTitleProps.js +0 -1
  209. package/dist/es/card/interfaces/Enums.d.ts +0 -32
  210. package/dist/es/card/interfaces/Enums.js +0 -37
  211. package/dist/es/drawer/Drawer.d.ts +0 -51
  212. package/dist/es/drawer/Drawer.js +0 -228
  213. package/dist/es/drawer/DrawerContent.d.ts +0 -110
  214. package/dist/es/drawer/DrawerContent.js +0 -101
  215. package/dist/es/drawer/DrawerItem.d.ts +0 -75
  216. package/dist/es/drawer/DrawerItem.js +0 -175
  217. package/dist/es/drawer/DrawerNavigation.d.ts +0 -50
  218. package/dist/es/drawer/DrawerNavigation.js +0 -227
  219. package/dist/es/drawer/context/DrawerContext.d.ts +0 -17
  220. package/dist/es/drawer/context/DrawerContext.js +0 -14
  221. package/dist/es/drawer/interfaces/DrawerAnimation.d.ts +0 -14
  222. package/dist/es/drawer/interfaces/DrawerAnimation.js +0 -1
  223. package/dist/es/drawer/interfaces/DrawerContentProps.d.ts +0 -5
  224. package/dist/es/drawer/interfaces/DrawerContentProps.js +0 -1
  225. package/dist/es/drawer/interfaces/DrawerItemHandle.d.ts +0 -17
  226. package/dist/es/drawer/interfaces/DrawerItemHandle.js +0 -1
  227. package/dist/es/drawer/interfaces/DrawerItemProps.d.ts +0 -48
  228. package/dist/es/drawer/interfaces/DrawerItemProps.js +0 -1
  229. package/dist/es/drawer/interfaces/DrawerNavigationProps.d.ts +0 -5
  230. package/dist/es/drawer/interfaces/DrawerNavigationProps.js +0 -1
  231. package/dist/es/drawer/interfaces/DrawerProps.d.ts +0 -85
  232. package/dist/es/drawer/interfaces/DrawerProps.js +0 -1
  233. package/dist/es/drawer/interfaces/DrawerSelectEvent.d.ts +0 -13
  234. package/dist/es/drawer/interfaces/DrawerSelectEvent.js +0 -1
  235. package/dist/es/expansionpanel/ExpansionPanel.d.ts +0 -42
  236. package/dist/es/expansionpanel/ExpansionPanel.js +0 -189
  237. package/dist/es/expansionpanel/ExpansionPanelContent.d.ts +0 -19
  238. package/dist/es/expansionpanel/ExpansionPanelContent.js +0 -37
  239. package/dist/es/expansionpanel/interfaces.d.ts +0 -88
  240. package/dist/es/expansionpanel/interfaces.js +0 -1
  241. package/dist/es/expansionpanel/main.d.ts +0 -3
  242. package/dist/es/expansionpanel/main.js +0 -3
  243. package/dist/es/gridlayout/GridLayout.d.ts +0 -44
  244. package/dist/es/gridlayout/GridLayout.js +0 -124
  245. package/dist/es/gridlayout/GridLayoutItem.d.ts +0 -47
  246. package/dist/es/gridlayout/GridLayoutItem.js +0 -68
  247. package/dist/es/gridlayout/interfaces/GridLayoutColumnProps.d.ts +0 -10
  248. package/dist/es/gridlayout/interfaces/GridLayoutColumnProps.js +0 -1
  249. package/dist/es/gridlayout/interfaces/GridLayoutItemProps.d.ts +0 -39
  250. package/dist/es/gridlayout/interfaces/GridLayoutItemProps.js +0 -1
  251. package/dist/es/gridlayout/interfaces/GridLayoutProps.d.ts +0 -95
  252. package/dist/es/gridlayout/interfaces/GridLayoutProps.js +0 -1
  253. package/dist/es/gridlayout/interfaces/GridLayoutRowProps.d.ts +0 -10
  254. package/dist/es/gridlayout/interfaces/GridLayoutRowProps.js +0 -1
  255. package/dist/es/main.d.ts +0 -77
  256. package/dist/es/main.js +0 -77
  257. package/dist/es/menu/BaseMenuItemInternalProps.d.ts +0 -20
  258. package/dist/es/menu/BaseMenuItemInternalProps.js +0 -1
  259. package/dist/es/menu/MenuProps.d.ts +0 -51
  260. package/dist/es/menu/MenuProps.js +0 -2
  261. package/dist/es/menu/components/Menu.d.ts +0 -79
  262. package/dist/es/menu/components/Menu.js +0 -310
  263. package/dist/es/menu/components/MenuItemArrow.d.ts +0 -70
  264. package/dist/es/menu/components/MenuItemArrow.js +0 -66
  265. package/dist/es/menu/components/MenuItemInternal.d.ts +0 -62
  266. package/dist/es/menu/components/MenuItemInternal.js +0 -455
  267. package/dist/es/menu/components/MenuItemInternalsList.d.ts +0 -49
  268. package/dist/es/menu/components/MenuItemInternalsList.js +0 -149
  269. package/dist/es/menu/components/MenuItemLink.d.ts +0 -58
  270. package/dist/es/menu/components/MenuItemLink.js +0 -64
  271. package/dist/es/menu/consts.d.ts +0 -54
  272. package/dist/es/menu/consts.js +0 -70
  273. package/dist/es/menu/events.d.ts +0 -14
  274. package/dist/es/menu/events.js +0 -2
  275. package/dist/es/menu/models/BaseMenuItem.d.ts +0 -54
  276. package/dist/es/menu/models/BaseMenuItem.js +0 -2
  277. package/dist/es/menu/models/MenuItemModel.d.ts +0 -19
  278. package/dist/es/menu/models/MenuItemModel.js +0 -1
  279. package/dist/es/menu/utils/DirectionHolder.d.ts +0 -11
  280. package/dist/es/menu/utils/DirectionHolder.js +0 -24
  281. package/dist/es/menu/utils/MouseOverHandler.d.ts +0 -17
  282. package/dist/es/menu/utils/MouseOverHandler.js +0 -64
  283. package/dist/es/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +0 -7
  284. package/dist/es/menu/utils/getNewItemIdUponKeyboardNavigation.js +0 -202
  285. package/dist/es/menu/utils/hoverDelay.d.ts +0 -9
  286. package/dist/es/menu/utils/hoverDelay.js +0 -17
  287. package/dist/es/menu/utils/itemsIdsUtils.d.ts +0 -64
  288. package/dist/es/menu/utils/itemsIdsUtils.js +0 -119
  289. package/dist/es/menu/utils/misc.d.ts +0 -16
  290. package/dist/es/menu/utils/misc.js +0 -42
  291. package/dist/es/menu/utils/prepareInputItemsForInternalWork.d.ts +0 -5
  292. package/dist/es/menu/utils/prepareInputItemsForInternalWork.js +0 -86
  293. package/dist/es/messages/main.d.ts +0 -15
  294. package/dist/es/messages/main.js +0 -16
  295. package/dist/es/package-metadata.d.ts +0 -5
  296. package/dist/es/package-metadata.js +0 -11
  297. package/dist/es/panelbar/PanelBar.d.ts +0 -48
  298. package/dist/es/panelbar/PanelBar.js +0 -279
  299. package/dist/es/panelbar/PanelBarGroup.d.ts +0 -53
  300. package/dist/es/panelbar/PanelBarGroup.js +0 -134
  301. package/dist/es/panelbar/PanelBarItem.d.ts +0 -40
  302. package/dist/es/panelbar/PanelBarItem.js +0 -214
  303. package/dist/es/panelbar/interfaces/NavigationAction.d.ts +0 -8
  304. package/dist/es/panelbar/interfaces/NavigationAction.js +0 -9
  305. package/dist/es/panelbar/interfaces/PanelBarItemClickEventArguments.d.ts +0 -7
  306. package/dist/es/panelbar/interfaces/PanelBarItemClickEventArguments.js +0 -1
  307. package/dist/es/panelbar/interfaces/PanelBarItemProps.d.ts +0 -90
  308. package/dist/es/panelbar/interfaces/PanelBarItemProps.js +0 -2
  309. package/dist/es/panelbar/interfaces/PanelBarProps.d.ts +0 -58
  310. package/dist/es/panelbar/interfaces/PanelBarProps.js +0 -1
  311. package/dist/es/panelbar/interfaces/PanelBarSelectEventArguments.d.ts +0 -13
  312. package/dist/es/panelbar/interfaces/PanelBarSelectEventArguments.js +0 -1
  313. package/dist/es/panelbar/interfaces/RenderPanelBarItem.d.ts +0 -14
  314. package/dist/es/panelbar/interfaces/RenderPanelBarItem.js +0 -1
  315. package/dist/es/panelbar/util.d.ts +0 -35
  316. package/dist/es/panelbar/util.js +0 -199
  317. package/dist/es/splitter/Splitter.d.ts +0 -139
  318. package/dist/es/splitter/Splitter.js +0 -430
  319. package/dist/es/splitter/SplitterBar.d.ts +0 -54
  320. package/dist/es/splitter/SplitterBar.js +0 -335
  321. package/dist/es/splitter/SplitterPane.d.ts +0 -93
  322. package/dist/es/splitter/SplitterPane.js +0 -80
  323. package/dist/es/stacklayout/StackLayout.d.ts +0 -44
  324. package/dist/es/stacklayout/StackLayout.js +0 -92
  325. package/dist/es/stacklayout/StackLayoutProps.d.ts +0 -75
  326. package/dist/es/stacklayout/StackLayoutProps.js +0 -1
  327. package/dist/es/stepper/Step.d.ts +0 -54
  328. package/dist/es/stepper/Step.js +0 -240
  329. package/dist/es/stepper/Stepper.d.ts +0 -97
  330. package/dist/es/stepper/Stepper.js +0 -459
  331. package/dist/es/stepper/contants.d.ts +0 -8
  332. package/dist/es/stepper/contants.js +0 -8
  333. package/dist/es/stepper/context/StepperContext.d.ts +0 -16
  334. package/dist/es/stepper/context/StepperContext.js +0 -9
  335. package/dist/es/stepper/interfaces/StepChangeEvent.d.ts +0 -9
  336. package/dist/es/stepper/interfaces/StepChangeEvent.js +0 -1
  337. package/dist/es/stepper/interfaces/StepFocusEvent.d.ts +0 -5
  338. package/dist/es/stepper/interfaces/StepFocusEvent.js +0 -1
  339. package/dist/es/stepper/interfaces/StepHandle.d.ts +0 -13
  340. package/dist/es/stepper/interfaces/StepHandle.js +0 -4
  341. package/dist/es/stepper/interfaces/StepProps.d.ts +0 -84
  342. package/dist/es/stepper/interfaces/StepProps.js +0 -1
  343. package/dist/es/stepper/interfaces/StepperChangeEvent.d.ts +0 -9
  344. package/dist/es/stepper/interfaces/StepperChangeEvent.js +0 -1
  345. package/dist/es/stepper/interfaces/StepperFocusEvent.d.ts +0 -5
  346. package/dist/es/stepper/interfaces/StepperFocusEvent.js +0 -1
  347. package/dist/es/stepper/interfaces/StepperHandle.d.ts +0 -13
  348. package/dist/es/stepper/interfaces/StepperHandle.js +0 -4
  349. package/dist/es/stepper/interfaces/StepperOnNavigateEvent.d.ts +0 -23
  350. package/dist/es/stepper/interfaces/StepperOnNavigateEvent.js +0 -15
  351. package/dist/es/stepper/interfaces/StepperProps.d.ts +0 -88
  352. package/dist/es/stepper/interfaces/StepperProps.js +0 -1
  353. package/dist/es/stepper/messages/main.d.ts +0 -15
  354. package/dist/es/stepper/messages/main.js +0 -16
  355. package/dist/es/tabstrip/TabStrip.d.ts +0 -114
  356. package/dist/es/tabstrip/TabStrip.js +0 -312
  357. package/dist/es/tabstrip/TabStripContent.d.ts +0 -79
  358. package/dist/es/tabstrip/TabStripContent.js +0 -131
  359. package/dist/es/tabstrip/TabStripNavigation.d.ts +0 -79
  360. package/dist/es/tabstrip/TabStripNavigation.js +0 -124
  361. package/dist/es/tabstrip/TabStripNavigationItem.d.ts +0 -89
  362. package/dist/es/tabstrip/TabStripNavigationItem.js +0 -104
  363. package/dist/es/tabstrip/TabStripTab.d.ts +0 -79
  364. package/dist/es/tabstrip/TabStripTab.js +0 -69
  365. package/dist/es/tabstrip/utils.d.ts +0 -1
  366. package/dist/es/tabstrip/utils.js +0 -14
  367. package/dist/es/tilelayout/ResizeHandlers.d.ts +0 -53
  368. package/dist/es/tilelayout/ResizeHandlers.js +0 -135
  369. package/dist/es/tilelayout/Tile.d.ts +0 -53
  370. package/dist/es/tilelayout/Tile.js +0 -467
  371. package/dist/es/tilelayout/TileLayout.d.ts +0 -108
  372. package/dist/es/tilelayout/TileLayout.js +0 -292
  373. package/dist/es/tilelayout/interfaces/main.d.ts +0 -198
  374. package/dist/es/tilelayout/interfaces/main.js +0 -1
  375. package/dist/esm/actionsheet/ActionSheet.d.ts +0 -140
  376. package/dist/esm/actionsheet/ActionSheet.js +0 -426
  377. package/dist/esm/actionsheet/ActionSheetContent.d.ts +0 -41
  378. package/dist/esm/actionsheet/ActionSheetContent.js +0 -38
  379. package/dist/esm/actionsheet/ActionSheetFooter.d.ts +0 -41
  380. package/dist/esm/actionsheet/ActionSheetFooter.js +0 -38
  381. package/dist/esm/actionsheet/ActionSheetHeader.d.ts +0 -41
  382. package/dist/esm/actionsheet/ActionSheetHeader.js +0 -45
  383. package/dist/esm/actionsheet/ActionSheetItem.d.ts +0 -42
  384. package/dist/esm/actionsheet/ActionSheetItem.js +0 -115
  385. package/dist/esm/actionsheet/interfaces/ActionSheetItemProps.d.ts +0 -70
  386. package/dist/esm/actionsheet/interfaces/ActionSheetItemProps.js +0 -1
  387. package/dist/esm/additionalTypes.ts +0 -21
  388. package/dist/esm/appbar/AppBar.d.ts +0 -44
  389. package/dist/esm/appbar/AppBar.js +0 -86
  390. package/dist/esm/appbar/AppBarSection.d.ts +0 -44
  391. package/dist/esm/appbar/AppBarSection.js +0 -38
  392. package/dist/esm/appbar/AppBarSpacer.d.ts +0 -44
  393. package/dist/esm/appbar/AppBarSpacer.js +0 -55
  394. package/dist/esm/appbar/interfaces/AppBarProps.d.ts +0 -67
  395. package/dist/esm/appbar/interfaces/AppBarProps.js +0 -1
  396. package/dist/esm/appbar/interfaces/AppBarSectionProps.d.ts +0 -5
  397. package/dist/esm/appbar/interfaces/AppBarSectionProps.js +0 -1
  398. package/dist/esm/appbar/interfaces/AppBarSpacerProps.d.ts +0 -7
  399. package/dist/esm/appbar/interfaces/AppBarSpacerProps.js +0 -1
  400. package/dist/esm/bottomnavigation/BottomNavigation.d.ts +0 -45
  401. package/dist/esm/bottomnavigation/BottomNavigation.js +0 -183
  402. package/dist/esm/bottomnavigation/BottomNavigationItem.d.ts +0 -44
  403. package/dist/esm/bottomnavigation/BottomNavigationItem.js +0 -132
  404. package/dist/esm/bottomnavigation/BottomNavigationItemProps.d.ts +0 -54
  405. package/dist/esm/bottomnavigation/BottomNavigationItemProps.js +0 -1
  406. package/dist/esm/bottomnavigation/BottomNavigationProps.d.ts +0 -147
  407. package/dist/esm/bottomnavigation/BottomNavigationProps.js +0 -1
  408. package/dist/esm/bottomnavigation/models/events.d.ts +0 -18
  409. package/dist/esm/bottomnavigation/models/events.js +0 -1
  410. package/dist/esm/bottomnavigation/models/utils.d.ts +0 -36
  411. package/dist/esm/bottomnavigation/models/utils.js +0 -36
  412. package/dist/esm/card/Avatar.d.ts +0 -43
  413. package/dist/esm/card/Avatar.js +0 -96
  414. package/dist/esm/card/Card.d.ts +0 -43
  415. package/dist/esm/card/Card.js +0 -67
  416. package/dist/esm/card/CardActions.d.ts +0 -43
  417. package/dist/esm/card/CardActions.js +0 -57
  418. package/dist/esm/card/CardBody.d.ts +0 -43
  419. package/dist/esm/card/CardBody.js +0 -31
  420. package/dist/esm/card/CardFooter.d.ts +0 -43
  421. package/dist/esm/card/CardFooter.js +0 -31
  422. package/dist/esm/card/CardHeader.d.ts +0 -43
  423. package/dist/esm/card/CardHeader.js +0 -31
  424. package/dist/esm/card/CardImage.d.ts +0 -43
  425. package/dist/esm/card/CardImage.js +0 -38
  426. package/dist/esm/card/CardSubtitle.d.ts +0 -43
  427. package/dist/esm/card/CardSubtitle.js +0 -31
  428. package/dist/esm/card/CardTitle.d.ts +0 -43
  429. package/dist/esm/card/CardTitle.js +0 -31
  430. package/dist/esm/card/interfaces/AvatarProps.d.ts +0 -72
  431. package/dist/esm/card/interfaces/AvatarProps.js +0 -1
  432. package/dist/esm/card/interfaces/CardActionsProps.d.ts +0 -22
  433. package/dist/esm/card/interfaces/CardActionsProps.js +0 -1
  434. package/dist/esm/card/interfaces/CardBodyProps.d.ts +0 -2
  435. package/dist/esm/card/interfaces/CardBodyProps.js +0 -1
  436. package/dist/esm/card/interfaces/CardFooterProps.d.ts +0 -2
  437. package/dist/esm/card/interfaces/CardFooterProps.js +0 -1
  438. package/dist/esm/card/interfaces/CardHeaderProps.d.ts +0 -2
  439. package/dist/esm/card/interfaces/CardHeaderProps.js +0 -1
  440. package/dist/esm/card/interfaces/CardImageProps.d.ts +0 -6
  441. package/dist/esm/card/interfaces/CardImageProps.js +0 -1
  442. package/dist/esm/card/interfaces/CardProps.d.ts +0 -28
  443. package/dist/esm/card/interfaces/CardProps.js +0 -1
  444. package/dist/esm/card/interfaces/CardSubtitleProps.d.ts +0 -2
  445. package/dist/esm/card/interfaces/CardSubtitleProps.js +0 -1
  446. package/dist/esm/card/interfaces/CardTitleProps.d.ts +0 -2
  447. package/dist/esm/card/interfaces/CardTitleProps.js +0 -1
  448. package/dist/esm/card/interfaces/Enums.d.ts +0 -32
  449. package/dist/esm/card/interfaces/Enums.js +0 -37
  450. package/dist/esm/drawer/Drawer.d.ts +0 -51
  451. package/dist/esm/drawer/Drawer.js +0 -228
  452. package/dist/esm/drawer/DrawerContent.d.ts +0 -110
  453. package/dist/esm/drawer/DrawerContent.js +0 -101
  454. package/dist/esm/drawer/DrawerItem.d.ts +0 -75
  455. package/dist/esm/drawer/DrawerItem.js +0 -175
  456. package/dist/esm/drawer/DrawerNavigation.d.ts +0 -50
  457. package/dist/esm/drawer/DrawerNavigation.js +0 -227
  458. package/dist/esm/drawer/context/DrawerContext.d.ts +0 -17
  459. package/dist/esm/drawer/context/DrawerContext.js +0 -14
  460. package/dist/esm/drawer/interfaces/DrawerAnimation.d.ts +0 -14
  461. package/dist/esm/drawer/interfaces/DrawerAnimation.js +0 -1
  462. package/dist/esm/drawer/interfaces/DrawerContentProps.d.ts +0 -5
  463. package/dist/esm/drawer/interfaces/DrawerContentProps.js +0 -1
  464. package/dist/esm/drawer/interfaces/DrawerItemHandle.d.ts +0 -17
  465. package/dist/esm/drawer/interfaces/DrawerItemHandle.js +0 -1
  466. package/dist/esm/drawer/interfaces/DrawerItemProps.d.ts +0 -48
  467. package/dist/esm/drawer/interfaces/DrawerItemProps.js +0 -1
  468. package/dist/esm/drawer/interfaces/DrawerNavigationProps.d.ts +0 -5
  469. package/dist/esm/drawer/interfaces/DrawerNavigationProps.js +0 -1
  470. package/dist/esm/drawer/interfaces/DrawerProps.d.ts +0 -85
  471. package/dist/esm/drawer/interfaces/DrawerProps.js +0 -1
  472. package/dist/esm/drawer/interfaces/DrawerSelectEvent.d.ts +0 -13
  473. package/dist/esm/drawer/interfaces/DrawerSelectEvent.js +0 -1
  474. package/dist/esm/expansionpanel/ExpansionPanel.d.ts +0 -42
  475. package/dist/esm/expansionpanel/ExpansionPanel.js +0 -189
  476. package/dist/esm/expansionpanel/ExpansionPanelContent.d.ts +0 -19
  477. package/dist/esm/expansionpanel/ExpansionPanelContent.js +0 -37
  478. package/dist/esm/expansionpanel/interfaces.d.ts +0 -88
  479. package/dist/esm/expansionpanel/interfaces.js +0 -1
  480. package/dist/esm/expansionpanel/main.d.ts +0 -3
  481. package/dist/esm/expansionpanel/main.js +0 -3
  482. package/dist/esm/gridlayout/GridLayout.d.ts +0 -44
  483. package/dist/esm/gridlayout/GridLayout.js +0 -124
  484. package/dist/esm/gridlayout/GridLayoutItem.d.ts +0 -47
  485. package/dist/esm/gridlayout/GridLayoutItem.js +0 -68
  486. package/dist/esm/gridlayout/interfaces/GridLayoutColumnProps.d.ts +0 -10
  487. package/dist/esm/gridlayout/interfaces/GridLayoutColumnProps.js +0 -1
  488. package/dist/esm/gridlayout/interfaces/GridLayoutItemProps.d.ts +0 -39
  489. package/dist/esm/gridlayout/interfaces/GridLayoutItemProps.js +0 -1
  490. package/dist/esm/gridlayout/interfaces/GridLayoutProps.d.ts +0 -95
  491. package/dist/esm/gridlayout/interfaces/GridLayoutProps.js +0 -1
  492. package/dist/esm/gridlayout/interfaces/GridLayoutRowProps.d.ts +0 -10
  493. package/dist/esm/gridlayout/interfaces/GridLayoutRowProps.js +0 -1
  494. package/dist/esm/main.d.ts +0 -77
  495. package/dist/esm/main.js +0 -77
  496. package/dist/esm/menu/BaseMenuItemInternalProps.d.ts +0 -20
  497. package/dist/esm/menu/BaseMenuItemInternalProps.js +0 -1
  498. package/dist/esm/menu/MenuProps.d.ts +0 -51
  499. package/dist/esm/menu/MenuProps.js +0 -2
  500. package/dist/esm/menu/components/Menu.d.ts +0 -79
  501. package/dist/esm/menu/components/Menu.js +0 -310
  502. package/dist/esm/menu/components/MenuItemArrow.d.ts +0 -70
  503. package/dist/esm/menu/components/MenuItemArrow.js +0 -66
  504. package/dist/esm/menu/components/MenuItemInternal.d.ts +0 -62
  505. package/dist/esm/menu/components/MenuItemInternal.js +0 -455
  506. package/dist/esm/menu/components/MenuItemInternalsList.d.ts +0 -49
  507. package/dist/esm/menu/components/MenuItemInternalsList.js +0 -149
  508. package/dist/esm/menu/components/MenuItemLink.d.ts +0 -58
  509. package/dist/esm/menu/components/MenuItemLink.js +0 -64
  510. package/dist/esm/menu/consts.d.ts +0 -54
  511. package/dist/esm/menu/consts.js +0 -70
  512. package/dist/esm/menu/events.d.ts +0 -14
  513. package/dist/esm/menu/events.js +0 -2
  514. package/dist/esm/menu/models/BaseMenuItem.d.ts +0 -54
  515. package/dist/esm/menu/models/BaseMenuItem.js +0 -2
  516. package/dist/esm/menu/models/MenuItemModel.d.ts +0 -19
  517. package/dist/esm/menu/models/MenuItemModel.js +0 -1
  518. package/dist/esm/menu/utils/DirectionHolder.d.ts +0 -11
  519. package/dist/esm/menu/utils/DirectionHolder.js +0 -24
  520. package/dist/esm/menu/utils/MouseOverHandler.d.ts +0 -17
  521. package/dist/esm/menu/utils/MouseOverHandler.js +0 -64
  522. package/dist/esm/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +0 -7
  523. package/dist/esm/menu/utils/getNewItemIdUponKeyboardNavigation.js +0 -202
  524. package/dist/esm/menu/utils/hoverDelay.d.ts +0 -9
  525. package/dist/esm/menu/utils/hoverDelay.js +0 -17
  526. package/dist/esm/menu/utils/itemsIdsUtils.d.ts +0 -64
  527. package/dist/esm/menu/utils/itemsIdsUtils.js +0 -119
  528. package/dist/esm/menu/utils/misc.d.ts +0 -16
  529. package/dist/esm/menu/utils/misc.js +0 -42
  530. package/dist/esm/menu/utils/prepareInputItemsForInternalWork.d.ts +0 -5
  531. package/dist/esm/menu/utils/prepareInputItemsForInternalWork.js +0 -86
  532. package/dist/esm/messages/main.d.ts +0 -15
  533. package/dist/esm/messages/main.js +0 -16
  534. package/dist/esm/package-metadata.d.ts +0 -5
  535. package/dist/esm/package-metadata.js +0 -11
  536. package/dist/esm/package.json +0 -3
  537. package/dist/esm/panelbar/PanelBar.d.ts +0 -48
  538. package/dist/esm/panelbar/PanelBar.js +0 -279
  539. package/dist/esm/panelbar/PanelBarGroup.d.ts +0 -53
  540. package/dist/esm/panelbar/PanelBarGroup.js +0 -134
  541. package/dist/esm/panelbar/PanelBarItem.d.ts +0 -40
  542. package/dist/esm/panelbar/PanelBarItem.js +0 -214
  543. package/dist/esm/panelbar/interfaces/NavigationAction.d.ts +0 -8
  544. package/dist/esm/panelbar/interfaces/NavigationAction.js +0 -9
  545. package/dist/esm/panelbar/interfaces/PanelBarItemClickEventArguments.d.ts +0 -7
  546. package/dist/esm/panelbar/interfaces/PanelBarItemClickEventArguments.js +0 -1
  547. package/dist/esm/panelbar/interfaces/PanelBarItemProps.d.ts +0 -90
  548. package/dist/esm/panelbar/interfaces/PanelBarItemProps.js +0 -2
  549. package/dist/esm/panelbar/interfaces/PanelBarProps.d.ts +0 -58
  550. package/dist/esm/panelbar/interfaces/PanelBarProps.js +0 -1
  551. package/dist/esm/panelbar/interfaces/PanelBarSelectEventArguments.d.ts +0 -13
  552. package/dist/esm/panelbar/interfaces/PanelBarSelectEventArguments.js +0 -1
  553. package/dist/esm/panelbar/interfaces/RenderPanelBarItem.d.ts +0 -14
  554. package/dist/esm/panelbar/interfaces/RenderPanelBarItem.js +0 -1
  555. package/dist/esm/panelbar/util.d.ts +0 -35
  556. package/dist/esm/panelbar/util.js +0 -199
  557. package/dist/esm/splitter/Splitter.d.ts +0 -139
  558. package/dist/esm/splitter/Splitter.js +0 -430
  559. package/dist/esm/splitter/SplitterBar.d.ts +0 -54
  560. package/dist/esm/splitter/SplitterBar.js +0 -335
  561. package/dist/esm/splitter/SplitterPane.d.ts +0 -93
  562. package/dist/esm/splitter/SplitterPane.js +0 -80
  563. package/dist/esm/stacklayout/StackLayout.d.ts +0 -44
  564. package/dist/esm/stacklayout/StackLayout.js +0 -92
  565. package/dist/esm/stacklayout/StackLayoutProps.d.ts +0 -75
  566. package/dist/esm/stacklayout/StackLayoutProps.js +0 -1
  567. package/dist/esm/stepper/Step.d.ts +0 -54
  568. package/dist/esm/stepper/Step.js +0 -240
  569. package/dist/esm/stepper/Stepper.d.ts +0 -97
  570. package/dist/esm/stepper/Stepper.js +0 -459
  571. package/dist/esm/stepper/contants.d.ts +0 -8
  572. package/dist/esm/stepper/contants.js +0 -8
  573. package/dist/esm/stepper/context/StepperContext.d.ts +0 -16
  574. package/dist/esm/stepper/context/StepperContext.js +0 -9
  575. package/dist/esm/stepper/interfaces/StepChangeEvent.d.ts +0 -9
  576. package/dist/esm/stepper/interfaces/StepChangeEvent.js +0 -1
  577. package/dist/esm/stepper/interfaces/StepFocusEvent.d.ts +0 -5
  578. package/dist/esm/stepper/interfaces/StepFocusEvent.js +0 -1
  579. package/dist/esm/stepper/interfaces/StepHandle.d.ts +0 -13
  580. package/dist/esm/stepper/interfaces/StepHandle.js +0 -4
  581. package/dist/esm/stepper/interfaces/StepProps.d.ts +0 -84
  582. package/dist/esm/stepper/interfaces/StepProps.js +0 -1
  583. package/dist/esm/stepper/interfaces/StepperChangeEvent.d.ts +0 -9
  584. package/dist/esm/stepper/interfaces/StepperChangeEvent.js +0 -1
  585. package/dist/esm/stepper/interfaces/StepperFocusEvent.d.ts +0 -5
  586. package/dist/esm/stepper/interfaces/StepperFocusEvent.js +0 -1
  587. package/dist/esm/stepper/interfaces/StepperHandle.d.ts +0 -13
  588. package/dist/esm/stepper/interfaces/StepperHandle.js +0 -4
  589. package/dist/esm/stepper/interfaces/StepperOnNavigateEvent.d.ts +0 -23
  590. package/dist/esm/stepper/interfaces/StepperOnNavigateEvent.js +0 -15
  591. package/dist/esm/stepper/interfaces/StepperProps.d.ts +0 -88
  592. package/dist/esm/stepper/interfaces/StepperProps.js +0 -1
  593. package/dist/esm/stepper/messages/main.d.ts +0 -15
  594. package/dist/esm/stepper/messages/main.js +0 -16
  595. package/dist/esm/tabstrip/TabStrip.d.ts +0 -114
  596. package/dist/esm/tabstrip/TabStrip.js +0 -312
  597. package/dist/esm/tabstrip/TabStripContent.d.ts +0 -79
  598. package/dist/esm/tabstrip/TabStripContent.js +0 -131
  599. package/dist/esm/tabstrip/TabStripNavigation.d.ts +0 -79
  600. package/dist/esm/tabstrip/TabStripNavigation.js +0 -124
  601. package/dist/esm/tabstrip/TabStripNavigationItem.d.ts +0 -89
  602. package/dist/esm/tabstrip/TabStripNavigationItem.js +0 -104
  603. package/dist/esm/tabstrip/TabStripTab.d.ts +0 -79
  604. package/dist/esm/tabstrip/TabStripTab.js +0 -69
  605. package/dist/esm/tabstrip/utils.d.ts +0 -1
  606. package/dist/esm/tabstrip/utils.js +0 -14
  607. package/dist/esm/tilelayout/ResizeHandlers.d.ts +0 -53
  608. package/dist/esm/tilelayout/ResizeHandlers.js +0 -135
  609. package/dist/esm/tilelayout/Tile.d.ts +0 -53
  610. package/dist/esm/tilelayout/Tile.js +0 -467
  611. package/dist/esm/tilelayout/TileLayout.d.ts +0 -108
  612. package/dist/esm/tilelayout/TileLayout.js +0 -292
  613. package/dist/esm/tilelayout/interfaces/main.d.ts +0 -198
  614. package/dist/esm/tilelayout/interfaces/main.js +0 -1
  615. package/dist/npm/actionsheet/ActionSheet.d.ts +0 -140
  616. package/dist/npm/actionsheet/ActionSheet.js +0 -433
  617. package/dist/npm/actionsheet/ActionSheetContent.d.ts +0 -41
  618. package/dist/npm/actionsheet/ActionSheetContent.js +0 -45
  619. package/dist/npm/actionsheet/ActionSheetFooter.d.ts +0 -41
  620. package/dist/npm/actionsheet/ActionSheetFooter.js +0 -45
  621. package/dist/npm/actionsheet/ActionSheetHeader.d.ts +0 -41
  622. package/dist/npm/actionsheet/ActionSheetHeader.js +0 -52
  623. package/dist/npm/actionsheet/ActionSheetItem.d.ts +0 -42
  624. package/dist/npm/actionsheet/ActionSheetItem.js +0 -122
  625. package/dist/npm/actionsheet/interfaces/ActionSheetItemProps.d.ts +0 -70
  626. package/dist/npm/actionsheet/interfaces/ActionSheetItemProps.js +0 -5
  627. package/dist/npm/additionalTypes.ts +0 -21
  628. package/dist/npm/appbar/AppBar.d.ts +0 -44
  629. package/dist/npm/appbar/AppBar.js +0 -93
  630. package/dist/npm/appbar/AppBarSection.d.ts +0 -44
  631. package/dist/npm/appbar/AppBarSection.js +0 -45
  632. package/dist/npm/appbar/AppBarSpacer.d.ts +0 -44
  633. package/dist/npm/appbar/AppBarSpacer.js +0 -62
  634. package/dist/npm/appbar/interfaces/AppBarProps.d.ts +0 -67
  635. package/dist/npm/appbar/interfaces/AppBarProps.js +0 -2
  636. package/dist/npm/appbar/interfaces/AppBarSectionProps.d.ts +0 -5
  637. package/dist/npm/appbar/interfaces/AppBarSectionProps.js +0 -2
  638. package/dist/npm/appbar/interfaces/AppBarSpacerProps.d.ts +0 -7
  639. package/dist/npm/appbar/interfaces/AppBarSpacerProps.js +0 -2
  640. package/dist/npm/bottomnavigation/BottomNavigation.d.ts +0 -45
  641. package/dist/npm/bottomnavigation/BottomNavigation.js +0 -190
  642. package/dist/npm/bottomnavigation/BottomNavigationItem.d.ts +0 -44
  643. package/dist/npm/bottomnavigation/BottomNavigationItem.js +0 -139
  644. package/dist/npm/bottomnavigation/BottomNavigationItemProps.d.ts +0 -54
  645. package/dist/npm/bottomnavigation/BottomNavigationItemProps.js +0 -2
  646. package/dist/npm/bottomnavigation/BottomNavigationProps.d.ts +0 -147
  647. package/dist/npm/bottomnavigation/BottomNavigationProps.js +0 -2
  648. package/dist/npm/bottomnavigation/models/events.d.ts +0 -18
  649. package/dist/npm/bottomnavigation/models/events.js +0 -2
  650. package/dist/npm/bottomnavigation/models/utils.d.ts +0 -36
  651. package/dist/npm/bottomnavigation/models/utils.js +0 -39
  652. package/dist/npm/card/Avatar.d.ts +0 -43
  653. package/dist/npm/card/Avatar.js +0 -103
  654. package/dist/npm/card/Card.d.ts +0 -43
  655. package/dist/npm/card/Card.js +0 -74
  656. package/dist/npm/card/CardActions.d.ts +0 -43
  657. package/dist/npm/card/CardActions.js +0 -64
  658. package/dist/npm/card/CardBody.d.ts +0 -43
  659. package/dist/npm/card/CardBody.js +0 -38
  660. package/dist/npm/card/CardFooter.d.ts +0 -43
  661. package/dist/npm/card/CardFooter.js +0 -38
  662. package/dist/npm/card/CardHeader.d.ts +0 -43
  663. package/dist/npm/card/CardHeader.js +0 -38
  664. package/dist/npm/card/CardImage.d.ts +0 -43
  665. package/dist/npm/card/CardImage.js +0 -45
  666. package/dist/npm/card/CardSubtitle.d.ts +0 -43
  667. package/dist/npm/card/CardSubtitle.js +0 -38
  668. package/dist/npm/card/CardTitle.d.ts +0 -43
  669. package/dist/npm/card/CardTitle.js +0 -38
  670. package/dist/npm/card/interfaces/AvatarProps.d.ts +0 -72
  671. package/dist/npm/card/interfaces/AvatarProps.js +0 -5
  672. package/dist/npm/card/interfaces/CardActionsProps.d.ts +0 -22
  673. package/dist/npm/card/interfaces/CardActionsProps.js +0 -5
  674. package/dist/npm/card/interfaces/CardBodyProps.d.ts +0 -2
  675. package/dist/npm/card/interfaces/CardBodyProps.js +0 -5
  676. package/dist/npm/card/interfaces/CardFooterProps.d.ts +0 -2
  677. package/dist/npm/card/interfaces/CardFooterProps.js +0 -5
  678. package/dist/npm/card/interfaces/CardHeaderProps.d.ts +0 -2
  679. package/dist/npm/card/interfaces/CardHeaderProps.js +0 -5
  680. package/dist/npm/card/interfaces/CardImageProps.d.ts +0 -6
  681. package/dist/npm/card/interfaces/CardImageProps.js +0 -5
  682. package/dist/npm/card/interfaces/CardProps.d.ts +0 -28
  683. package/dist/npm/card/interfaces/CardProps.js +0 -5
  684. package/dist/npm/card/interfaces/CardSubtitleProps.d.ts +0 -2
  685. package/dist/npm/card/interfaces/CardSubtitleProps.js +0 -5
  686. package/dist/npm/card/interfaces/CardTitleProps.d.ts +0 -2
  687. package/dist/npm/card/interfaces/CardTitleProps.js +0 -5
  688. package/dist/npm/card/interfaces/Enums.d.ts +0 -32
  689. package/dist/npm/card/interfaces/Enums.js +0 -43
  690. package/dist/npm/drawer/Drawer.d.ts +0 -51
  691. package/dist/npm/drawer/Drawer.js +0 -235
  692. package/dist/npm/drawer/DrawerContent.d.ts +0 -110
  693. package/dist/npm/drawer/DrawerContent.js +0 -108
  694. package/dist/npm/drawer/DrawerItem.d.ts +0 -75
  695. package/dist/npm/drawer/DrawerItem.js +0 -182
  696. package/dist/npm/drawer/DrawerNavigation.d.ts +0 -50
  697. package/dist/npm/drawer/DrawerNavigation.js +0 -234
  698. package/dist/npm/drawer/context/DrawerContext.d.ts +0 -17
  699. package/dist/npm/drawer/context/DrawerContext.js +0 -15
  700. package/dist/npm/drawer/interfaces/DrawerAnimation.d.ts +0 -14
  701. package/dist/npm/drawer/interfaces/DrawerAnimation.js +0 -2
  702. package/dist/npm/drawer/interfaces/DrawerContentProps.d.ts +0 -5
  703. package/dist/npm/drawer/interfaces/DrawerContentProps.js +0 -2
  704. package/dist/npm/drawer/interfaces/DrawerItemHandle.d.ts +0 -17
  705. package/dist/npm/drawer/interfaces/DrawerItemHandle.js +0 -2
  706. package/dist/npm/drawer/interfaces/DrawerItemProps.d.ts +0 -48
  707. package/dist/npm/drawer/interfaces/DrawerItemProps.js +0 -2
  708. package/dist/npm/drawer/interfaces/DrawerNavigationProps.d.ts +0 -5
  709. package/dist/npm/drawer/interfaces/DrawerNavigationProps.js +0 -2
  710. package/dist/npm/drawer/interfaces/DrawerProps.d.ts +0 -85
  711. package/dist/npm/drawer/interfaces/DrawerProps.js +0 -2
  712. package/dist/npm/drawer/interfaces/DrawerSelectEvent.d.ts +0 -13
  713. package/dist/npm/drawer/interfaces/DrawerSelectEvent.js +0 -2
  714. package/dist/npm/expansionpanel/ExpansionPanel.d.ts +0 -42
  715. package/dist/npm/expansionpanel/ExpansionPanel.js +0 -196
  716. package/dist/npm/expansionpanel/ExpansionPanelContent.d.ts +0 -19
  717. package/dist/npm/expansionpanel/ExpansionPanelContent.js +0 -44
  718. package/dist/npm/expansionpanel/interfaces.d.ts +0 -88
  719. package/dist/npm/expansionpanel/interfaces.js +0 -2
  720. package/dist/npm/expansionpanel/main.d.ts +0 -3
  721. package/dist/npm/expansionpanel/main.js +0 -29
  722. package/dist/npm/gridlayout/GridLayout.d.ts +0 -44
  723. package/dist/npm/gridlayout/GridLayout.js +0 -131
  724. package/dist/npm/gridlayout/GridLayoutItem.d.ts +0 -47
  725. package/dist/npm/gridlayout/GridLayoutItem.js +0 -75
  726. package/dist/npm/gridlayout/interfaces/GridLayoutColumnProps.d.ts +0 -10
  727. package/dist/npm/gridlayout/interfaces/GridLayoutColumnProps.js +0 -2
  728. package/dist/npm/gridlayout/interfaces/GridLayoutItemProps.d.ts +0 -39
  729. package/dist/npm/gridlayout/interfaces/GridLayoutItemProps.js +0 -2
  730. package/dist/npm/gridlayout/interfaces/GridLayoutProps.d.ts +0 -95
  731. package/dist/npm/gridlayout/interfaces/GridLayoutProps.js +0 -2
  732. package/dist/npm/gridlayout/interfaces/GridLayoutRowProps.d.ts +0 -10
  733. package/dist/npm/gridlayout/interfaces/GridLayoutRowProps.js +0 -2
  734. package/dist/npm/main.d.ts +0 -77
  735. package/dist/npm/main.js +0 -93
  736. package/dist/npm/menu/BaseMenuItemInternalProps.d.ts +0 -20
  737. package/dist/npm/menu/BaseMenuItemInternalProps.js +0 -2
  738. package/dist/npm/menu/MenuProps.d.ts +0 -51
  739. package/dist/npm/menu/MenuProps.js +0 -6
  740. package/dist/npm/menu/components/Menu.d.ts +0 -79
  741. package/dist/npm/menu/components/Menu.js +0 -317
  742. package/dist/npm/menu/components/MenuItemArrow.d.ts +0 -70
  743. package/dist/npm/menu/components/MenuItemArrow.js +0 -73
  744. package/dist/npm/menu/components/MenuItemInternal.d.ts +0 -62
  745. package/dist/npm/menu/components/MenuItemInternal.js +0 -462
  746. package/dist/npm/menu/components/MenuItemInternalsList.d.ts +0 -49
  747. package/dist/npm/menu/components/MenuItemInternalsList.js +0 -156
  748. package/dist/npm/menu/components/MenuItemLink.d.ts +0 -58
  749. package/dist/npm/menu/components/MenuItemLink.js +0 -71
  750. package/dist/npm/menu/consts.d.ts +0 -54
  751. package/dist/npm/menu/consts.js +0 -73
  752. package/dist/npm/menu/events.d.ts +0 -14
  753. package/dist/npm/menu/events.js +0 -3
  754. package/dist/npm/menu/models/BaseMenuItem.d.ts +0 -54
  755. package/dist/npm/menu/models/BaseMenuItem.js +0 -3
  756. package/dist/npm/menu/models/MenuItemModel.d.ts +0 -19
  757. package/dist/npm/menu/models/MenuItemModel.js +0 -2
  758. package/dist/npm/menu/utils/DirectionHolder.d.ts +0 -11
  759. package/dist/npm/menu/utils/DirectionHolder.js +0 -27
  760. package/dist/npm/menu/utils/MouseOverHandler.d.ts +0 -17
  761. package/dist/npm/menu/utils/MouseOverHandler.js +0 -67
  762. package/dist/npm/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +0 -7
  763. package/dist/npm/menu/utils/getNewItemIdUponKeyboardNavigation.js +0 -206
  764. package/dist/npm/menu/utils/hoverDelay.d.ts +0 -9
  765. package/dist/npm/menu/utils/hoverDelay.js +0 -22
  766. package/dist/npm/menu/utils/itemsIdsUtils.d.ts +0 -64
  767. package/dist/npm/menu/utils/itemsIdsUtils.js +0 -135
  768. package/dist/npm/menu/utils/misc.d.ts +0 -16
  769. package/dist/npm/menu/utils/misc.js +0 -49
  770. package/dist/npm/menu/utils/prepareInputItemsForInternalWork.d.ts +0 -5
  771. package/dist/npm/menu/utils/prepareInputItemsForInternalWork.js +0 -90
  772. package/dist/npm/messages/main.d.ts +0 -15
  773. package/dist/npm/messages/main.js +0 -19
  774. package/dist/npm/package-metadata.d.ts +0 -5
  775. package/dist/npm/package-metadata.js +0 -14
  776. package/dist/npm/panelbar/PanelBar.d.ts +0 -48
  777. package/dist/npm/panelbar/PanelBar.js +0 -286
  778. package/dist/npm/panelbar/PanelBarGroup.d.ts +0 -53
  779. package/dist/npm/panelbar/PanelBarGroup.js +0 -141
  780. package/dist/npm/panelbar/PanelBarItem.d.ts +0 -40
  781. package/dist/npm/panelbar/PanelBarItem.js +0 -221
  782. package/dist/npm/panelbar/interfaces/NavigationAction.d.ts +0 -8
  783. package/dist/npm/panelbar/interfaces/NavigationAction.js +0 -12
  784. package/dist/npm/panelbar/interfaces/PanelBarItemClickEventArguments.d.ts +0 -7
  785. package/dist/npm/panelbar/interfaces/PanelBarItemClickEventArguments.js +0 -2
  786. package/dist/npm/panelbar/interfaces/PanelBarItemProps.d.ts +0 -90
  787. package/dist/npm/panelbar/interfaces/PanelBarItemProps.js +0 -3
  788. package/dist/npm/panelbar/interfaces/PanelBarProps.d.ts +0 -58
  789. package/dist/npm/panelbar/interfaces/PanelBarProps.js +0 -2
  790. package/dist/npm/panelbar/interfaces/PanelBarSelectEventArguments.d.ts +0 -13
  791. package/dist/npm/panelbar/interfaces/PanelBarSelectEventArguments.js +0 -2
  792. package/dist/npm/panelbar/interfaces/RenderPanelBarItem.d.ts +0 -14
  793. package/dist/npm/panelbar/interfaces/RenderPanelBarItem.js +0 -2
  794. package/dist/npm/panelbar/util.d.ts +0 -35
  795. package/dist/npm/panelbar/util.js +0 -213
  796. package/dist/npm/splitter/Splitter.d.ts +0 -139
  797. package/dist/npm/splitter/Splitter.js +0 -437
  798. package/dist/npm/splitter/SplitterBar.d.ts +0 -54
  799. package/dist/npm/splitter/SplitterBar.js +0 -342
  800. package/dist/npm/splitter/SplitterPane.d.ts +0 -93
  801. package/dist/npm/splitter/SplitterPane.js +0 -87
  802. package/dist/npm/stacklayout/StackLayout.d.ts +0 -44
  803. package/dist/npm/stacklayout/StackLayout.js +0 -99
  804. package/dist/npm/stacklayout/StackLayoutProps.d.ts +0 -75
  805. package/dist/npm/stacklayout/StackLayoutProps.js +0 -2
  806. package/dist/npm/stepper/Step.d.ts +0 -54
  807. package/dist/npm/stepper/Step.js +0 -247
  808. package/dist/npm/stepper/Stepper.d.ts +0 -97
  809. package/dist/npm/stepper/Stepper.js +0 -466
  810. package/dist/npm/stepper/contants.d.ts +0 -8
  811. package/dist/npm/stepper/contants.js +0 -11
  812. package/dist/npm/stepper/context/StepperContext.d.ts +0 -16
  813. package/dist/npm/stepper/context/StepperContext.js +0 -10
  814. package/dist/npm/stepper/interfaces/StepChangeEvent.d.ts +0 -9
  815. package/dist/npm/stepper/interfaces/StepChangeEvent.js +0 -2
  816. package/dist/npm/stepper/interfaces/StepFocusEvent.d.ts +0 -5
  817. package/dist/npm/stepper/interfaces/StepFocusEvent.js +0 -2
  818. package/dist/npm/stepper/interfaces/StepHandle.d.ts +0 -13
  819. package/dist/npm/stepper/interfaces/StepHandle.js +0 -5
  820. package/dist/npm/stepper/interfaces/StepProps.d.ts +0 -84
  821. package/dist/npm/stepper/interfaces/StepProps.js +0 -2
  822. package/dist/npm/stepper/interfaces/StepperChangeEvent.d.ts +0 -9
  823. package/dist/npm/stepper/interfaces/StepperChangeEvent.js +0 -2
  824. package/dist/npm/stepper/interfaces/StepperFocusEvent.d.ts +0 -5
  825. package/dist/npm/stepper/interfaces/StepperFocusEvent.js +0 -2
  826. package/dist/npm/stepper/interfaces/StepperHandle.d.ts +0 -13
  827. package/dist/npm/stepper/interfaces/StepperHandle.js +0 -5
  828. package/dist/npm/stepper/interfaces/StepperOnNavigateEvent.d.ts +0 -23
  829. package/dist/npm/stepper/interfaces/StepperOnNavigateEvent.js +0 -18
  830. package/dist/npm/stepper/interfaces/StepperProps.d.ts +0 -88
  831. package/dist/npm/stepper/interfaces/StepperProps.js +0 -2
  832. package/dist/npm/stepper/messages/main.d.ts +0 -15
  833. package/dist/npm/stepper/messages/main.js +0 -19
  834. package/dist/npm/tabstrip/TabStrip.d.ts +0 -114
  835. package/dist/npm/tabstrip/TabStrip.js +0 -319
  836. package/dist/npm/tabstrip/TabStripContent.d.ts +0 -79
  837. package/dist/npm/tabstrip/TabStripContent.js +0 -138
  838. package/dist/npm/tabstrip/TabStripNavigation.d.ts +0 -79
  839. package/dist/npm/tabstrip/TabStripNavigation.js +0 -131
  840. package/dist/npm/tabstrip/TabStripNavigationItem.d.ts +0 -89
  841. package/dist/npm/tabstrip/TabStripNavigationItem.js +0 -111
  842. package/dist/npm/tabstrip/TabStripTab.d.ts +0 -79
  843. package/dist/npm/tabstrip/TabStripTab.js +0 -76
  844. package/dist/npm/tabstrip/utils.d.ts +0 -1
  845. package/dist/npm/tabstrip/utils.js +0 -18
  846. package/dist/npm/tilelayout/ResizeHandlers.d.ts +0 -53
  847. package/dist/npm/tilelayout/ResizeHandlers.js +0 -142
  848. package/dist/npm/tilelayout/Tile.d.ts +0 -53
  849. package/dist/npm/tilelayout/Tile.js +0 -474
  850. package/dist/npm/tilelayout/TileLayout.d.ts +0 -108
  851. package/dist/npm/tilelayout/TileLayout.js +0 -299
  852. package/dist/npm/tilelayout/interfaces/main.d.ts +0 -198
  853. package/dist/npm/tilelayout/interfaces/main.js +0 -2
package/README.md CHANGED
@@ -1,16 +1,17 @@
1
- <a href="https://www.telerik.com/kendo-vue-ui/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout&utm_content=banner" target="_blank">
1
+ <a href="https://www.telerik.com/kendo-vue-ui/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-utils&utm_content=banner" target="_blank">
2
2
  <img src="https://www.telerik.com/kendo-vue-ui/npm-banner.svg" alt="Kendo UI for Vue NPM Banner">
3
3
  </a>
4
4
 
5
- ## Kendo UI for Vue Layout for Vue (TabStrip Component)
5
+ ## Kendo UI for Vue Layout Package for Vue
6
6
 
7
7
  > **Important**
8
- > * This package is а part of [Kendo UI for Vue](https://www.telerik.com/kendo-vue-ui/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout)&mdash;a commercial UI library.
9
- > * You will need to install a license key when adding the package to your project. For more information, please refer to the [Kendo UI for Vue My License page](https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout).
10
- > * To receive a license key, you need to either [purchase a license](https://www.telerik.com/purchase/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-vue-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout). Doing so indicates that you [accept the Kendo UI for Vue License Agreement](https://www.telerik.com/kendo-vue-ui-develop/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout).
11
- > * The 30-day free trial gives you access to all the Kendo UI for Vue components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Vue dev team!
12
8
  >
13
- > [Start using Kendo UI for Vue](https://www.telerik.com/download-login-v2-kendo-vue-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout) and speed up your development process!
9
+ > - This package is а part of [Kendo UI for Vue](https://www.telerik.com/kendo-vue-ui/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout)&mdash;a commercial UI library.
10
+ > - You will need to install a license key when adding the package to your project. For more information, please refer to the [Kendo UI for Vue My License page](https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout).
11
+ > - To receive a license key, you need to either [purchase a license](https://www.telerik.com/purchase/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-vue-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout). Doing so indicates that you [accept the Kendo UI for Vue License Agreement](https://www.telerik.com/kendo-vue-ui-develop/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout).
12
+ > - The 30-day free trial gives you access to all the Kendo UI for Vue components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Vue dev team!
13
+ >
14
+ > [Start using Kendo UI for Vue](https://www.telerik.com/download-login-v2-kendo-vue-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout) and speed up your development process!
14
15
 
15
16
  ## Vue Layout
16
17
 
@@ -18,35 +19,28 @@
18
19
 
19
20
  Among the many features which the Kendo UI for Vue Layout deliver are:
20
21
 
21
- * [TabStrip component](https://www.telerik.com/kendo-vue-ui/components/layout/tabstrip/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout)
22
-
23
- ## Kendo you for Vue Layout
24
-
25
- Among the many features which the Kendo UI for Vue Layout deliver are:
22
+ - TODO 1
23
+ - TODO 2
24
+ - TODO 3
26
25
 
27
- * **Routing**&mdash;You can use most of the Layout components as a navigational component by wiring it with the Vue router.
28
- * **Data binding**&mdash;The layout components enables you to bind a data collection to them.
29
- * **Keyboard navigation**&mdash;You can interact with the layout components using only the keyboard.
30
- * **Accessibility support**&mdash;The Layout are compliant with WAI-ARIA and Section 508.
31
- * [Theme support](https://www.telerik.com/kendo-vue-ui/components/styling/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout)&mdash;The Kendo UI for Vue Layout, as well as all 100+ components in the Kendo UI for Vue suite, are styled in four polished themes (Bootstrap, Material, Default and Fluent) and can be further customized to match your specific design guidelines.
32
26
  ## Support Options
33
27
 
34
28
  For any issues you might encounter while working with the Kendo UI for Vue Layout, use any of the available support channels:
35
29
 
36
- * Industry-leading technical support&mdash;Kendo UI for Vue paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use [the dedicated Kendo UI for Vue support system](https://www.telerik.com/account/support-tickets?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout).
37
- * Product forums&mdash;The [Kendo UI for Vue forums](https://www.telerik.com/forums/kendo-ui-vue?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout) are part of the free support you can get from the community and from the Kendo UI for Vue team.
38
- * Feedback portal&mdash;The [Kendo UI for Vue feedback portal](https://feedback.telerik.com/kendo-vue-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout) is where you can request and vote for new features to be added.
30
+ - Industry-leading technical support&mdash;Kendo UI for Vue paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use [the dedicated Kendo UI for Vue support system](https://www.telerik.com/account/support-tickets?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout).
31
+ - Product forums&mdash;The [Kendo UI for Vue forums](https://www.telerik.com/forums/kendo-ui-vue?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout) are part of the free support you can get from the community and from the Kendo UI for Vue team.
32
+ - Feedback portal&mdash;The [Kendo UI for Vue feedback portal](https://feedback.telerik.com/kendo-vue-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout) is where you can request and vote for new features to be added.
39
33
 
40
34
  ## Resources
41
35
 
42
- * [Getting Started with Kendo UI for Vue](https://www.telerik.com/kendo-vue-ui/getting-started/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout)
43
- * [Getting Started with the Kendo UI for Vue Layout](https://www.telerik.com/kendo-vue-ui/components/layout/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout)
44
- * [API Reference of the Kendo UI for Vue Layout](https://www.telerik.com/kendo-vue-ui/components/layout/api/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout)
45
- * [Kendo UI for Vue Roadmap](https://www.telerik.com/kendo-vue-ui/roadmap/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout)
46
- * [Blogs](https://www.telerik.com/blogs/tag/vue?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout)
47
- * [Demos, documentation, and component reference](https://www.telerik.com/kendo-vue-ui/components/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout)
48
- * [Kendo UI for Vue pricing and licensing](https://www.telerik.com/purchase/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npm-layout)
36
+ - [Getting Started with Kendo UI for Vue](https://www.telerik.com/kendo-vue-ui/getting-started/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout)
37
+ - [Getting Started with the Kendo UI for Vue Layout](https://www.telerik.com/kendo-vue-ui/components/layout/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout)
38
+ - [API Reference of the Kendo UI for Vue Layout](https://www.telerik.com/kendo-vue-ui/components/layout/api/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout)
39
+ - [Kendo UI for Vue Roadmap](https://www.telerik.com/kendo-vue-ui/roadmap/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout)
40
+ - [Blogs](https://www.telerik.com/blogs/tag/vue?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout)
41
+ - [Demos, documentation, and component reference](https://www.telerik.com/kendo-vue-ui/components/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout)
42
+ - [Kendo UI for Vue pricing and licensing](https://www.telerik.com/purchase/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-vue-trial-npmlayout)
49
43
 
50
- *Copyright © 2023 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.*
44
+ _Copyright © 2024 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved._
51
45
 
52
- *Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.*
46
+ _Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries._
@@ -0,0 +1,8 @@
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
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("vue"),$=require("@progress/kendo-vue-animation"),n=require("@progress/kendo-vue-common"),A=require("../package-metadata.js"),S=require("./ActionSheetItem.js"),E=require("./ActionSheetHeader.js"),V=require("./ActionSheetFooter.js"),x=require("./ActionSheetContent.js");function m(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!t.isVNode(e)}const O=300,T=t.defineComponent({name:"KendoActionSheet",props:{expand:Boolean,animation:{type:Boolean,default:!0},animationDuration:{type:Number,default:O},animationStyles:Object,tabIndex:Number,items:Array,subTitle:String,title:String,className:String,headerClassName:{type:String,default:void 0},contentClassName:{type:String,default:void 0},headerStyle:{type:String,default:void 0},footerClassName:{type:String,default:void 0},header:[String,Object,Function],content:[String,Object,Function],footer:[String,Object,Function],item:[String,Object,Function],navigatable:{type:Boolean,default:!0},navigatableElements:{type:Array,default:function(){return[]}},onClose:Function},created(){this.bottomPosition={bottom:"0px",width:"100%"},this.guidId=n.guid(),n.validatePackage(A.packageMetadata)},mounted(){this.element=n.getRef(this,"actionSheet"),this.$props.expand&&!this.show&&(this.show=!0)},updated(){if(this.element=n.getRef(this,"actionSheet"),this.$props.expand&&!this.show&&(this.show=!0),this.element&&!this.$props.className&&(this.element.style.setProperty("--kendo-actionsheet-height","auto"),this.element.style.setProperty("--kendo-actionsheet-max-height","none")),this.element&&this.$props.navigatable){const e=this.$props.navigatableElements,s=[".k-actionsheet-item",...[".k-actionsheet-footer",".k-actionsheet-content",".k-actionsheet-titlebar"].map(r=>n.FOCUSABLE_ELEMENTS.concat(e).map(l=>`${r} ${l}`)).flat()];this.navigation=new n.Navigation({tabIndex:this.$props.tabIndex||0,root:this.element,rovingTabIndex:!1,selectors:s,keyboardEvents:{keydown:{Tab:this.onTab,Enter:this.onEnter,Escape:this.onEscape}}}),e.length!==0?this.navigation.focusElement(this.element.querySelector(e[0]),null):this.navigation.focusElement(this.navigation.first,null)}},data(){return{show:!1,slide:!1}},computed:{topGroupItems(){var e;return(e=this.items)==null?void 0:e.filter(o=>!o.group||o.group==="top")},bottomGroupItems(){var e;return(e=this.items)==null?void 0:e.filter(o=>o.group==="bottom")},shouldRenderSeparator(){return this.topGroupItems&&this.topGroupItems.length>0&&this.bottomGroupItems&&this.bottomGroupItems.length>0}},render(){const{title:e,subTitle:o,animationStyles:s,animation:r,expand:l,tabIndex:a,className:f,animationDuration:g,headerClassName:y,contentClassName:N,footerClassName:k}=this.$props,v=n.templateRendering.call(this,this.$props.header,n.getListeners.call(this)),d=n.getTemplate.call(this,{h:t.h,template:v,defaultRendering:null}),I=n.templateRendering.call(this,this.$props.content,n.getListeners.call(this)),p=n.getTemplate.call(this,{h:t.h,template:I,defaultRendering:null}),C=n.templateRendering.call(this,this.$props.footer,n.getListeners.call(this)),u=n.getTemplate.call(this,{h:t.h,template:C,defaultRendering:null}),b=t.createVNode("div",{class:n.classNames("k-actionsheet",f,{"k-actionsheet-bottom":!f}),role:"dialog","aria-modal":"true","aria-hidden":!1,"aria-labelledby":this.guidId,ref:n.setRef(this,"actionSheet"),onKeydown:this.handleKeyDown},[this.$props.header&&!e&&!o&&t.createVNode(E.ActionSheetHeader,{headerClassName:y},m(d)?d:{default:()=>[d]}),(e||o)&&t.createVNode("div",{class:"k-actionsheet-titlebar k-text-center"},[t.createVNode("div",{class:"k-actionsheet-titlebar-group k-hbox"},[t.createVNode("div",{class:"k-actionsheet-title",id:this.guidId},[e&&t.createVNode("div",null,[e]),o&&t.createVNode("div",{class:"k-actionsheet-subtitle"},[o])])])]),this.$props.content?t.createVNode(x.ActionSheetContent,{contentClassName:N},m(p)?p:{default:()=>[p]}):t.createVNode("div",{class:"k-actionsheet-content"},[t.createVNode("div",{class:"k-list-ul",role:"group"},[this.topGroupItems&&this.topGroupItems.map(function(i,c){const h=n.templateRendering.call(this,this.$props.item||i.content,n.getListeners.call(this));return t.createVNode(S.ActionSheetItem,{style:i.style,class:i.class,title:i.title,description:i.description,disabled:i.disabled,id:c,key:c,item:i,icon:i.icon,svgIcon:i.svgIcon,iconSize:i.iconSize,iconColor:i.iconColor,tabIndex:a||0,content:h,onClick:this.handleItemClick},null)},this)]),this.shouldRenderSeparator&&t.createVNode("hr",{class:"k-hr"},null),t.createVNode("div",{class:"k-list-ul",role:"group"},[this.bottomGroupItems&&this.bottomGroupItems.map(function(i,c){var h;return t.createVNode(S.ActionSheetItem,{style:i.style,class:i.class,id:c+(((h=this.topGroupItems)==null?void 0:h.length)||0),key:c,item:i,title:i.title,description:i.description,disabled:i.disabled,icon:i.icon,svgIcon:i.svgIcon,iconSize:i.iconSize,iconColor:i.iconColor,tabIndex:a||0,onClick:this.handleItemClick},null)},this)])]),this.$props.footer&&t.createVNode(V.ActionSheetFooter,{footerClassName:k},m(u)?u:{default:()=>[u]})]);return this.show&&t.createVNode("div",{class:"k-actionsheet-container"},[t.createVNode("div",{class:"k-overlay",onClick:this.handleOverlayClick},null),r?t.createVNode($.Slide,{onExited:this.hideActionSheet,direction:"up",componentChildStyle:s||this.bottomPosition,transitionEnterDuration:g,transitionExitDuration:g,appear:l},{default:()=>[l?b:null]}):b])},methods:{handleKeyDown(e){this.$props.navigatable&&this.navigation.triggerKeyboardEvent(e)},onTab(e,o,s){s.preventDefault(),s.shiftKey?o.focusPrevious(e):o.focusNext(e)},handleOverlayClick(e){this.$emit("close",e),this.$props.animation||this.hideActionSheet()},handleItemClick(e){this.$emit("itemselect",e),this.$props.animation||this.hideActionSheet()},onEnter(e,o,s){if(e.ariaDisabled)return;const r=e.className&&e.className.indexOf("k-actionsheet-item")!==-1,l=o.elements.filter(a=>a.className.indexOf("k-actionsheet-item")!==-1);if(r){s.preventDefault();const a=this.$props.items[l.indexOf(e)];this.$emit("itemselect",{syntheticEvent:s,item:a,title:a&&a.title})}this.$props.animation||this.hideActionSheet()},onEscape(e,o,s){s.preventDefault(),this.$emit("close",s),this.$props.animation||this.hideActionSheet()},hideActionSheet(){this.show=!1}}});exports.ActionSheet=T;
@@ -0,0 +1,273 @@
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 { defineComponent as O, h as f, createVNode as i, isVNode as w } from "vue";
9
+ import { Slide as D } from "@progress/kendo-vue-animation";
10
+ import { guid as G, validatePackage as T, getRef as v, FOCUSABLE_ELEMENTS as R, Navigation as j, templateRendering as c, getListeners as d, getTemplate as g, classNames as F, setRef as P } from "@progress/kendo-vue-common";
11
+ import { packageMetadata as K } from "../package-metadata.mjs";
12
+ import { ActionSheetItem as I } from "./ActionSheetItem.mjs";
13
+ import { ActionSheetHeader as _ } from "./ActionSheetHeader.mjs";
14
+ import { ActionSheetFooter as z } from "./ActionSheetFooter.mjs";
15
+ import { ActionSheetContent as B } from "./ActionSheetContent.mjs";
16
+ function b(t) {
17
+ return typeof t == "function" || Object.prototype.toString.call(t) === "[object Object]" && !w(t);
18
+ }
19
+ const L = 300, X = /* @__PURE__ */ O({
20
+ name: "KendoActionSheet",
21
+ props: {
22
+ expand: Boolean,
23
+ animation: {
24
+ type: Boolean,
25
+ default: !0
26
+ },
27
+ animationDuration: {
28
+ type: Number,
29
+ default: L
30
+ },
31
+ animationStyles: Object,
32
+ tabIndex: Number,
33
+ items: Array,
34
+ subTitle: String,
35
+ title: String,
36
+ className: String,
37
+ headerClassName: {
38
+ type: String,
39
+ default: void 0
40
+ },
41
+ contentClassName: {
42
+ type: String,
43
+ default: void 0
44
+ },
45
+ headerStyle: {
46
+ type: String,
47
+ default: void 0
48
+ },
49
+ footerClassName: {
50
+ type: String,
51
+ default: void 0
52
+ },
53
+ header: [String, Object, Function],
54
+ content: [String, Object, Function],
55
+ footer: [String, Object, Function],
56
+ item: [String, Object, Function],
57
+ navigatable: {
58
+ type: Boolean,
59
+ default: !0
60
+ },
61
+ navigatableElements: {
62
+ type: Array,
63
+ default: function() {
64
+ return [];
65
+ }
66
+ },
67
+ onClose: Function
68
+ },
69
+ created() {
70
+ this.bottomPosition = {
71
+ bottom: "0px",
72
+ width: "100%"
73
+ }, this.guidId = G(), T(K);
74
+ },
75
+ mounted() {
76
+ this.element = v(this, "actionSheet"), this.$props.expand && !this.show && (this.show = !0);
77
+ },
78
+ updated() {
79
+ if (this.element = v(this, "actionSheet"), this.$props.expand && !this.show && (this.show = !0), this.element && !this.$props.className && (this.element.style.setProperty("--kendo-actionsheet-height", "auto"), this.element.style.setProperty("--kendo-actionsheet-max-height", "none")), this.element && this.$props.navigatable) {
80
+ const t = this.$props.navigatableElements, o = [".k-actionsheet-item", ...[".k-actionsheet-footer", ".k-actionsheet-content", ".k-actionsheet-titlebar"].map((l) => R.concat(t).map((a) => `${l} ${a}`)).flat()];
81
+ this.navigation = new j({
82
+ tabIndex: this.$props.tabIndex || 0,
83
+ root: this.element,
84
+ rovingTabIndex: !1,
85
+ selectors: o,
86
+ keyboardEvents: {
87
+ keydown: {
88
+ Tab: this.onTab,
89
+ Enter: this.onEnter,
90
+ Escape: this.onEscape
91
+ }
92
+ }
93
+ }), t.length !== 0 ? this.navigation.focusElement(this.element.querySelector(t[0]), null) : this.navigation.focusElement(this.navigation.first, null);
94
+ }
95
+ },
96
+ data() {
97
+ return {
98
+ show: !1,
99
+ slide: !1
100
+ };
101
+ },
102
+ computed: {
103
+ topGroupItems() {
104
+ var t;
105
+ return (t = this.items) == null ? void 0 : t.filter((n) => !n.group || n.group === "top");
106
+ },
107
+ bottomGroupItems() {
108
+ var t;
109
+ return (t = this.items) == null ? void 0 : t.filter((n) => n.group === "bottom");
110
+ },
111
+ shouldRenderSeparator() {
112
+ return this.topGroupItems && this.topGroupItems.length > 0 && this.bottomGroupItems && this.bottomGroupItems.length > 0;
113
+ }
114
+ },
115
+ render() {
116
+ const {
117
+ title: t,
118
+ subTitle: n,
119
+ animationStyles: o,
120
+ animation: l,
121
+ expand: a,
122
+ tabIndex: s,
123
+ className: S,
124
+ animationDuration: y,
125
+ headerClassName: C,
126
+ contentClassName: $,
127
+ footerClassName: E
128
+ } = this.$props, N = c.call(this, this.$props.header, d.call(this)), p = g.call(this, {
129
+ h: f,
130
+ template: N,
131
+ defaultRendering: null
132
+ }), x = c.call(this, this.$props.content, d.call(this)), m = g.call(this, {
133
+ h: f,
134
+ template: x,
135
+ defaultRendering: null
136
+ }), A = c.call(this, this.$props.footer, d.call(this)), u = g.call(this, {
137
+ h: f,
138
+ template: A,
139
+ defaultRendering: null
140
+ }), k = i("div", {
141
+ class: F("k-actionsheet", S, {
142
+ "k-actionsheet-bottom": !S
143
+ }),
144
+ role: "dialog",
145
+ "aria-modal": "true",
146
+ "aria-hidden": !1,
147
+ "aria-labelledby": this.guidId,
148
+ ref: P(this, "actionSheet"),
149
+ onKeydown: this.handleKeyDown
150
+ }, [this.$props.header && !t && !n && i(_, {
151
+ headerClassName: C
152
+ }, b(p) ? p : {
153
+ default: () => [p]
154
+ }), (t || n) && i("div", {
155
+ class: "k-actionsheet-titlebar k-text-center"
156
+ }, [i("div", {
157
+ class: "k-actionsheet-titlebar-group k-hbox"
158
+ }, [i("div", {
159
+ class: "k-actionsheet-title",
160
+ id: this.guidId
161
+ }, [t && i("div", null, [t]), n && i("div", {
162
+ class: "k-actionsheet-subtitle"
163
+ }, [n])])])]), this.$props.content ? i(B, {
164
+ contentClassName: $
165
+ }, b(m) ? m : {
166
+ default: () => [m]
167
+ }) : i("div", {
168
+ class: "k-actionsheet-content"
169
+ }, [i("div", {
170
+ class: "k-list-ul",
171
+ role: "group"
172
+ }, [this.topGroupItems && this.topGroupItems.map(function(e, r) {
173
+ const h = c.call(this, this.$props.item || e.content, d.call(this));
174
+ return i(I, {
175
+ style: e.style,
176
+ class: e.class,
177
+ title: e.title,
178
+ description: e.description,
179
+ disabled: e.disabled,
180
+ id: r,
181
+ key: r,
182
+ item: e,
183
+ icon: e.icon,
184
+ svgIcon: e.svgIcon,
185
+ iconSize: e.iconSize,
186
+ iconColor: e.iconColor,
187
+ tabIndex: s || 0,
188
+ content: h,
189
+ onClick: this.handleItemClick
190
+ }, null);
191
+ }, this)]), this.shouldRenderSeparator && i("hr", {
192
+ class: "k-hr"
193
+ }, null), i("div", {
194
+ class: "k-list-ul",
195
+ role: "group"
196
+ }, [this.bottomGroupItems && this.bottomGroupItems.map(function(e, r) {
197
+ var h;
198
+ return i(I, {
199
+ style: e.style,
200
+ class: e.class,
201
+ id: r + (((h = this.topGroupItems) == null ? void 0 : h.length) || 0),
202
+ key: r,
203
+ item: e,
204
+ title: e.title,
205
+ description: e.description,
206
+ disabled: e.disabled,
207
+ icon: e.icon,
208
+ svgIcon: e.svgIcon,
209
+ iconSize: e.iconSize,
210
+ iconColor: e.iconColor,
211
+ tabIndex: s || 0,
212
+ onClick: this.handleItemClick
213
+ }, null);
214
+ }, this)])]), this.$props.footer && i(z, {
215
+ footerClassName: E
216
+ }, b(u) ? u : {
217
+ default: () => [u]
218
+ })]);
219
+ return this.show && i("div", {
220
+ class: "k-actionsheet-container"
221
+ }, [i("div", {
222
+ class: "k-overlay",
223
+ onClick: this.handleOverlayClick
224
+ }, null), l ? i(D, {
225
+ onExited: this.hideActionSheet,
226
+ direction: "up",
227
+ componentChildStyle: o || this.bottomPosition,
228
+ transitionEnterDuration: y,
229
+ transitionExitDuration: y,
230
+ appear: a
231
+ }, {
232
+ default: () => [a ? k : null]
233
+ }) : k]);
234
+ },
235
+ methods: {
236
+ handleKeyDown(t) {
237
+ this.$props.navigatable && this.navigation.triggerKeyboardEvent(t);
238
+ },
239
+ onTab(t, n, o) {
240
+ o.preventDefault(), o.shiftKey ? n.focusPrevious(t) : n.focusNext(t);
241
+ },
242
+ handleOverlayClick(t) {
243
+ this.$emit("close", t), this.$props.animation || this.hideActionSheet();
244
+ },
245
+ handleItemClick(t) {
246
+ this.$emit("itemselect", t), this.$props.animation || this.hideActionSheet();
247
+ },
248
+ onEnter(t, n, o) {
249
+ if (t.ariaDisabled)
250
+ return;
251
+ const l = t.className && t.className.indexOf("k-actionsheet-item") !== -1, a = n.elements.filter((s) => s.className.indexOf("k-actionsheet-item") !== -1);
252
+ if (l) {
253
+ o.preventDefault();
254
+ const s = this.$props.items[a.indexOf(t)];
255
+ this.$emit("itemselect", {
256
+ syntheticEvent: o,
257
+ item: s,
258
+ title: s && s.title
259
+ });
260
+ }
261
+ this.$props.animation || this.hideActionSheet();
262
+ },
263
+ onEscape(t, n, o) {
264
+ o.preventDefault(), this.$emit("close", o), this.$props.animation || this.hideActionSheet();
265
+ },
266
+ hideActionSheet() {
267
+ this.show = !1;
268
+ }
269
+ }
270
+ });
271
+ export {
272
+ X as ActionSheet
273
+ };
@@ -0,0 +1,8 @@
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
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t=require("@progress/kendo-vue-common"),s=e.defineComponent({name:"KendoActionSheetContent",props:{contentClassName:{type:String,default:void 0}},render(){const n=t.getDefaultSlots(this),{contentClassName:o}=this.$props;return e.createVNode("div",{class:t.classNames("k-actionsheet-content",o)},[n])}});exports.ActionSheetContent=s;
@@ -0,0 +1,29 @@
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 { defineComponent as n, createVNode as o } from "vue";
9
+ import { getDefaultSlots as s, classNames as a } from "@progress/kendo-vue-common";
10
+ const i = /* @__PURE__ */ n({
11
+ name: "KendoActionSheetContent",
12
+ props: {
13
+ contentClassName: {
14
+ type: String,
15
+ default: void 0
16
+ }
17
+ },
18
+ render() {
19
+ const t = s(this), {
20
+ contentClassName: e
21
+ } = this.$props;
22
+ return o("div", {
23
+ class: a("k-actionsheet-content", e)
24
+ }, [t]);
25
+ }
26
+ });
27
+ export {
28
+ i as ActionSheetContent
29
+ };
@@ -0,0 +1,8 @@
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
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t=require("@progress/kendo-vue-common"),r=e.defineComponent({name:"KendoActionSheetFooter",props:{footerClassName:{type:String,default:void 0}},render(){const o=t.getDefaultSlots(this),{footerClassName:n}=this.$props;return e.createVNode("div",{class:t.classNames("k-actionsheet-footer",n)},[o])}});exports.ActionSheetFooter=r;
@@ -0,0 +1,29 @@
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 { defineComponent as o, createVNode as r } from "vue";
9
+ import { getDefaultSlots as s, classNames as n } from "@progress/kendo-vue-common";
10
+ const f = /* @__PURE__ */ o({
11
+ name: "KendoActionSheetFooter",
12
+ props: {
13
+ footerClassName: {
14
+ type: String,
15
+ default: void 0
16
+ }
17
+ },
18
+ render() {
19
+ const e = s(this), {
20
+ footerClassName: t
21
+ } = this.$props;
22
+ return r("div", {
23
+ class: n("k-actionsheet-footer", t)
24
+ }, [e]);
25
+ }
26
+ });
27
+ export {
28
+ f as ActionSheetFooter
29
+ };
@@ -0,0 +1,8 @@
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
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t=require("@progress/kendo-vue-common"),o=e.defineComponent({name:"KendoActionSheetHeader",props:{headerClassName:{type:String,default:void 0},headerStyle:{type:String,default:void 0}},render(){const n=t.getDefaultSlots(this),{headerStyle:r,headerClassName:a}=this.$props;return e.createVNode("div",{style:r,class:t.classNames("k-actionsheet-titlebar",a)},[n])}});exports.ActionSheetHeader=o;
@@ -0,0 +1,35 @@
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 { defineComponent as r, createVNode as n } from "vue";
9
+ import { getDefaultSlots as o, classNames as s } from "@progress/kendo-vue-common";
10
+ const l = /* @__PURE__ */ r({
11
+ name: "KendoActionSheetHeader",
12
+ props: {
13
+ headerClassName: {
14
+ type: String,
15
+ default: void 0
16
+ },
17
+ headerStyle: {
18
+ type: String,
19
+ default: void 0
20
+ }
21
+ },
22
+ render() {
23
+ const e = o(this), {
24
+ headerStyle: t,
25
+ headerClassName: a
26
+ } = this.$props;
27
+ return n("div", {
28
+ style: t,
29
+ class: s("k-actionsheet-titlebar", a)
30
+ }, [e]);
31
+ }
32
+ });
33
+ export {
34
+ l as ActionSheetHeader
35
+ };
@@ -0,0 +1,8 @@
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
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("vue"),i=require("@progress/kendo-vue-common"),s=t.defineComponent({name:"KendoActionSheetItem",emits:{click:null},props:{id:Number,description:String,disabled:Boolean,group:{type:String,validator:function(e){return["top","bottom",void 0].includes(e)}},item:Object,icon:String,svgIcon:Object,iconColor:String,iconSize:String,content:[String,Function,Object],title:String,tabIndex:{type:[String,Number],default:0}},computed:{wrapperClass(){return{"k-actionsheet-item":!0,"k-cursor-pointer":!0,"k-disabled":this.$props.disabled}}},render(){const e=i.getTemplate.call(this,{h:t.h,template:this.$props.content,defaultRendering:null,additionalProps:{item:this.$props.item}});return t.createVNode("span",{tabindex:this.$props.tabIndex,class:this.wrapperClass,role:"button","aria-disabled":this.$props.disabled,onClick:this.onClick},[t.createVNode("span",{class:"k-actionsheet-action"},[this.$props.content?e:[(this.$props.icon||this.$props.svgIcon)&&t.createVNode("span",{class:"k-icon-wrap"},[t.createVNode(i.Icon,{name:this.$props.icon,icon:this.$props.svgIcon,class:"k-actionsheet-item-icon",size:this.iconSize,style:{color:this.iconColor}},null)]),(this.$props.title||this.$props.description)&&t.createVNode("span",{class:"k-actionsheet-item-text"},[this.$props.title&&t.createVNode("span",{class:"k-actionsheet-item-title"},[this.$props.title]),this.$props.description&&t.createVNode("span",{class:"k-actionsheet-item-description"},[this.$props.description])])]])])},methods:{onClick(e){this.$emit("click",{syntheticEvent:e,item:this.$props.item,title:this.$props.title})}}});exports.ActionSheetItem=s;
@@ -0,0 +1,93 @@
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 { defineComponent as e, h as s, createVNode as t } from "vue";
9
+ import { getTemplate as o, Icon as n } from "@progress/kendo-vue-common";
10
+ const c = /* @__PURE__ */ e({
11
+ name: "KendoActionSheetItem",
12
+ emits: {
13
+ click: null
14
+ },
15
+ props: {
16
+ id: Number,
17
+ description: String,
18
+ disabled: Boolean,
19
+ group: {
20
+ type: String,
21
+ validator: function(i) {
22
+ return ["top", "bottom", void 0].includes(i);
23
+ }
24
+ },
25
+ item: Object,
26
+ icon: String,
27
+ svgIcon: Object,
28
+ iconColor: String,
29
+ iconSize: String,
30
+ content: [String, Function, Object],
31
+ title: String,
32
+ tabIndex: {
33
+ type: [String, Number],
34
+ default: 0
35
+ }
36
+ },
37
+ computed: {
38
+ wrapperClass() {
39
+ return {
40
+ "k-actionsheet-item": !0,
41
+ "k-cursor-pointer": !0,
42
+ "k-disabled": this.$props.disabled
43
+ };
44
+ }
45
+ },
46
+ render() {
47
+ const i = o.call(this, {
48
+ h: s,
49
+ template: this.$props.content,
50
+ defaultRendering: null,
51
+ additionalProps: {
52
+ item: this.$props.item
53
+ }
54
+ });
55
+ return t("span", {
56
+ tabindex: this.$props.tabIndex,
57
+ class: this.wrapperClass,
58
+ role: "button",
59
+ "aria-disabled": this.$props.disabled,
60
+ onClick: this.onClick
61
+ }, [t("span", {
62
+ class: "k-actionsheet-action"
63
+ }, [this.$props.content ? i : [(this.$props.icon || this.$props.svgIcon) && t("span", {
64
+ class: "k-icon-wrap"
65
+ }, [t(n, {
66
+ name: this.$props.icon,
67
+ icon: this.$props.svgIcon,
68
+ class: "k-actionsheet-item-icon",
69
+ size: this.iconSize,
70
+ style: {
71
+ color: this.iconColor
72
+ }
73
+ }, null)]), (this.$props.title || this.$props.description) && t("span", {
74
+ class: "k-actionsheet-item-text"
75
+ }, [this.$props.title && t("span", {
76
+ class: "k-actionsheet-item-title"
77
+ }, [this.$props.title]), this.$props.description && t("span", {
78
+ class: "k-actionsheet-item-description"
79
+ }, [this.$props.description])])]])]);
80
+ },
81
+ methods: {
82
+ onClick(i) {
83
+ this.$emit("click", {
84
+ syntheticEvent: i,
85
+ item: this.$props.item,
86
+ title: this.$props.title
87
+ });
88
+ }
89
+ }
90
+ });
91
+ export {
92
+ c as ActionSheetItem
93
+ };
@@ -0,0 +1,8 @@
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
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("vue"),a=require("@progress/kendo-vue-common"),r=require("../package-metadata.js"),p=i.defineComponent({name:"KendoAppBar",props:{id:String,themeColor:{type:String,default:"light"},position:{type:String,default:"top",validator:function(t){return["top","bottom"].includes(t)}},positionMode:{type:String,default:"static",validator:function(t){return["static","sticky","fixed"].includes(t)}}},created(){a.validatePackage(r.packageMetadata),this.calculatedId=a.guid()},computed:{wrapperClass(){const{position:t,positionMode:e,themeColor:o}=this.$props;return{"k-appbar":!0,"k-appbar-top":t==="top","k-appbar-bottom":t==="bottom","k-appbar-static":e==="static","k-appbar-sticky":e==="sticky","k-appbar-fixed":e==="fixed",[`k-appbar-${o}`]:!!o}}},render(){const t=a.getDefaultSlots(this),{id:e}=this.$props;return i.createVNode("div",{class:this.wrapperClass,id:e||this.calculatedId},[t])},methods:{focus(){this.$el&&a.focusFirstFocusableChild(this.$el)}}});exports.AppBar=p;