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