@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
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.AppBarSpacerVue2 = exports.AppBarSpacer = void 0;
|
|
7
|
-
// @ts-ignore
|
|
8
|
-
var Vue = require("vue");
|
|
9
|
-
var allVue = Vue;
|
|
10
|
-
var gh = allVue.h;
|
|
11
|
-
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
12
|
-
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
13
|
-
/**
|
|
14
|
-
* @hidden
|
|
15
|
-
*/
|
|
16
|
-
var AppBarSpacerVue2 = {
|
|
17
|
-
name: 'KendoAppBarSpacer',
|
|
18
|
-
props: {
|
|
19
|
-
width: [String, Number]
|
|
20
|
-
},
|
|
21
|
-
computed: {
|
|
22
|
-
spacerClasses: function spacerClasses() {
|
|
23
|
-
return {
|
|
24
|
-
'k-appbar-spacer': true,
|
|
25
|
-
'k-appbar-spacer-sized': this.width !== undefined
|
|
26
|
-
};
|
|
27
|
-
},
|
|
28
|
-
spacerStyles: function spacerStyles() {
|
|
29
|
-
return {
|
|
30
|
-
flexBasis: this.width !== undefined ? this.width : undefined
|
|
31
|
-
};
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
// @ts-ignore
|
|
35
|
-
setup: !isV3 ? undefined : function () {
|
|
36
|
-
var v3 = !!isV3;
|
|
37
|
-
return {
|
|
38
|
-
v3: v3
|
|
39
|
-
};
|
|
40
|
-
},
|
|
41
|
-
render: function render(createElement) {
|
|
42
|
-
var h = gh || createElement;
|
|
43
|
-
var defaultSlot = (0, kendo_vue_common_1.getDefaultSlots)(this);
|
|
44
|
-
return h("span", {
|
|
45
|
-
"class": this.spacerClasses,
|
|
46
|
-
style: this.spacerStyles
|
|
47
|
-
}, [defaultSlot]);
|
|
48
|
-
},
|
|
49
|
-
methods: {
|
|
50
|
-
focus: function focus() {
|
|
51
|
-
if (this.$el) {
|
|
52
|
-
(0, kendo_vue_common_1.focusFirstFocusableChild)(this.$el);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
};
|
|
57
|
-
exports.AppBarSpacerVue2 = AppBarSpacerVue2;
|
|
58
|
-
/**
|
|
59
|
-
* @hidden
|
|
60
|
-
*/
|
|
61
|
-
var AppBarSpacer = AppBarSpacerVue2;
|
|
62
|
-
exports.AppBarSpacer = AppBarSpacer;
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Represents the props of the [Kendo UI for Vue AppBar component]({% slug overview_appbar %}).
|
|
3
|
-
* Used to display information, actions, branding titles and additional navigation on the current screen.
|
|
4
|
-
*/
|
|
5
|
-
export interface AppBarProps {
|
|
6
|
-
/**
|
|
7
|
-
* Sets the `id` property of the root AppBar element.
|
|
8
|
-
*/
|
|
9
|
-
id?: string;
|
|
10
|
-
/**
|
|
11
|
-
* Specifies the position of the AppBar ([see example]({% slug positioning_appbar %}#toc-position)).
|
|
12
|
-
*
|
|
13
|
-
* * The possible values are:
|
|
14
|
-
* * 'top' (Default)
|
|
15
|
-
* * 'bottom'
|
|
16
|
-
*
|
|
17
|
-
*/
|
|
18
|
-
position?: AppBarPosition | string;
|
|
19
|
-
/**
|
|
20
|
-
* Specifies the positionMode of the AppBar ([see example]({% slug positioning_appbar %}#toc-positionmode)).
|
|
21
|
-
*
|
|
22
|
-
* * The possible values are:
|
|
23
|
-
* * 'static' (Default)
|
|
24
|
-
* * 'sticky'
|
|
25
|
-
* * 'fixed'
|
|
26
|
-
*/
|
|
27
|
-
positionMode?: AppBarPositionMode | string;
|
|
28
|
-
/**
|
|
29
|
-
* Specifies the theme color of the AppBar ([see example]({% slug appearance_appbar %})).
|
|
30
|
-
*
|
|
31
|
-
* * The possible values are:
|
|
32
|
-
* * `light` (Default)
|
|
33
|
-
* * 'primary'
|
|
34
|
-
* * 'dark'
|
|
35
|
-
* * 'inherit'
|
|
36
|
-
*
|
|
37
|
-
*/
|
|
38
|
-
themeColor?: AppBarThemeColor | string;
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Specifies the position of the AppBar ([see example]({% slug positioning_appbar %}#toc-position)).
|
|
42
|
-
*
|
|
43
|
-
* * The possible values are:
|
|
44
|
-
* * 'top' (Default)
|
|
45
|
-
* * 'bottom'
|
|
46
|
-
*
|
|
47
|
-
*/
|
|
48
|
-
export declare type AppBarPosition = 'top' | 'bottom';
|
|
49
|
-
/**
|
|
50
|
-
* Specifies the positionMode of the AppBar ([see example]({% slug positioning_appbar %}#toc-positionmode)).
|
|
51
|
-
*
|
|
52
|
-
* * The possible values are:
|
|
53
|
-
* * 'static' (Default)
|
|
54
|
-
* * 'sticky'
|
|
55
|
-
* * 'fixed'
|
|
56
|
-
*/
|
|
57
|
-
export declare type AppBarPositionMode = 'static' | 'sticky' | 'fixed';
|
|
58
|
-
/**
|
|
59
|
-
* Specifies the theme color of the AppBar ([see example]({% slug appearance_appbar %})).
|
|
60
|
-
*
|
|
61
|
-
* * The possible values are:
|
|
62
|
-
* * `inherit`
|
|
63
|
-
* * `light` (Default)
|
|
64
|
-
* * `dark`
|
|
65
|
-
*
|
|
66
|
-
*/
|
|
67
|
-
export declare type AppBarThemeColor = 'light' | 'dark' | 'inherit';
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Represents the props of the [Kendo UI for Vue AppBarSpacer component]({% slug contentarrangement_appbar %}#toc-defining-spacings).
|
|
3
|
-
* Used to give additional white space between the AppBar sections and provides a way for customizing its width.
|
|
4
|
-
*/
|
|
5
|
-
export interface AppBarSpacerProps {
|
|
6
|
-
width?: string | number;
|
|
7
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from '../additionalTypes';
|
|
2
|
-
declare type DefaultData<V> = object | ((this: V) => {});
|
|
3
|
-
declare type DefaultMethods<V> = {
|
|
4
|
-
[key: string]: (this: V, ...args: any[]) => any;
|
|
5
|
-
};
|
|
6
|
-
import { BottomNavigationProps } from './BottomNavigationProps';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export interface BottomNavigationState {
|
|
11
|
-
navId: string;
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* @hidden
|
|
15
|
-
*/
|
|
16
|
-
export interface BottomNavigationComputed {
|
|
17
|
-
[key: string]: any;
|
|
18
|
-
navClasses: object;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* @hidden
|
|
22
|
-
*/
|
|
23
|
-
export interface BottomNavigationMethods {
|
|
24
|
-
[key: string]: any;
|
|
25
|
-
focus: (e: any) => void;
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* @hidden
|
|
29
|
-
*/
|
|
30
|
-
export interface BottomNavigationData {
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* @hidden
|
|
34
|
-
*/
|
|
35
|
-
export interface BottomNavigationAll extends Vue2type, BottomNavigationMethods, BottomNavigationData, BottomNavigationComputed, BottomNavigationState {
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* @hidden
|
|
39
|
-
*/
|
|
40
|
-
declare let BottomNavigationVue2: ComponentOptions<BottomNavigationAll, DefaultData<BottomNavigationData>, DefaultMethods<BottomNavigationAll>, BottomNavigationComputed, RecordPropsDefinition<BottomNavigationProps>>;
|
|
41
|
-
/**
|
|
42
|
-
* @hidden
|
|
43
|
-
*/
|
|
44
|
-
declare const BottomNavigation: DefineComponent<BottomNavigationProps, any, BottomNavigationData, BottomNavigationComputed, BottomNavigationMethods, {}, {}, {}, string, BottomNavigationProps, BottomNavigationProps, {}>;
|
|
45
|
-
export { BottomNavigation, BottomNavigationVue2 };
|
|
@@ -1,190 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.BottomNavigationVue2 = exports.BottomNavigation = void 0;
|
|
7
|
-
// @ts-ignore
|
|
8
|
-
var Vue = require("vue");
|
|
9
|
-
var allVue = Vue;
|
|
10
|
-
var gh = allVue.h;
|
|
11
|
-
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
12
|
-
var package_metadata_1 = require("../package-metadata");
|
|
13
|
-
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
14
|
-
var utils_1 = require("./models/utils");
|
|
15
|
-
var BottomNavigationItem_1 = require("./BottomNavigationItem");
|
|
16
|
-
/**
|
|
17
|
-
* @hidden
|
|
18
|
-
*/
|
|
19
|
-
var BottomNavigationVue2 = {
|
|
20
|
-
name: 'KendoBottomNavigation',
|
|
21
|
-
// @ts-ignore
|
|
22
|
-
emits: {
|
|
23
|
-
'keydown': null,
|
|
24
|
-
'select': null
|
|
25
|
-
},
|
|
26
|
-
props: {
|
|
27
|
-
dir: String,
|
|
28
|
-
themeColor: {
|
|
29
|
-
type: String,
|
|
30
|
-
default: 'primary',
|
|
31
|
-
validator: function validator(value) {
|
|
32
|
-
return ['primary', 'secondary', 'tertiary', 'info', 'success', 'warning', 'error', 'dark', 'light', 'inverse'].includes(value);
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
fill: {
|
|
36
|
-
type: String,
|
|
37
|
-
default: 'flat',
|
|
38
|
-
validator: function validator(value) {
|
|
39
|
-
return ['solid', 'flat'].includes(value);
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
fillMode: {
|
|
43
|
-
type: String,
|
|
44
|
-
default: 'flat',
|
|
45
|
-
validator: function validator(value) {
|
|
46
|
-
return ['solid', 'flat'].includes(value);
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
item: [String, Object, Function],
|
|
50
|
-
items: Array,
|
|
51
|
-
itemFlow: {
|
|
52
|
-
type: String,
|
|
53
|
-
default: 'vertical',
|
|
54
|
-
validator: function validator(value) {
|
|
55
|
-
return ['vertical', 'horizontal'].includes(value);
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
positionMode: {
|
|
59
|
-
type: String,
|
|
60
|
-
default: 'fixed',
|
|
61
|
-
validator: function validator(value) {
|
|
62
|
-
return ['sticky', 'fixed'].includes(value);
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
border: {
|
|
66
|
-
type: Boolean,
|
|
67
|
-
default: true
|
|
68
|
-
},
|
|
69
|
-
disabled: Boolean,
|
|
70
|
-
selected: Number
|
|
71
|
-
},
|
|
72
|
-
created: function created() {
|
|
73
|
-
(0, kendo_vue_common_1.validatePackage)(package_metadata_1.packageMetadata);
|
|
74
|
-
this.navId = (0, kendo_vue_common_1.guid)();
|
|
75
|
-
},
|
|
76
|
-
computed: {
|
|
77
|
-
navClasses: function navClasses() {
|
|
78
|
-
var _a;
|
|
79
|
-
var _b = this.$props,
|
|
80
|
-
themeColor = _b.themeColor,
|
|
81
|
-
fillMode = _b.fillMode,
|
|
82
|
-
positionMode = _b.positionMode,
|
|
83
|
-
itemFlow = _b.itemFlow,
|
|
84
|
-
border = _b.border,
|
|
85
|
-
disabled = _b.disabled;
|
|
86
|
-
var fill = fillMode !== undefined ? fillMode : this.$props.fill;
|
|
87
|
-
return _a = {
|
|
88
|
-
'k-bottom-nav': true
|
|
89
|
-
}, _a[utils_1.POSITION_MODE_CLASSES[positionMode]] = true, _a[utils_1.THEME_COLOR_CLASSES[themeColor]] = true, _a[utils_1.FILL_CLASSES[fill]] = true, _a[utils_1.ITEM_FLOW_CLASSES[itemFlow]] = true, _a['k-bottom-nav-border'] = border, _a['k-disabled'] = disabled, _a;
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
// @ts-ignore
|
|
93
|
-
setup: !isV3 ? undefined : function () {
|
|
94
|
-
var v3 = !!isV3;
|
|
95
|
-
return {
|
|
96
|
-
v3: v3
|
|
97
|
-
};
|
|
98
|
-
},
|
|
99
|
-
// @ts-ignore
|
|
100
|
-
render: function render(createElement) {
|
|
101
|
-
var h = gh || createElement;
|
|
102
|
-
var _a = this.$props,
|
|
103
|
-
id = _a.id,
|
|
104
|
-
items = _a.items,
|
|
105
|
-
item = _a.item,
|
|
106
|
-
disabled = _a.disabled;
|
|
107
|
-
// const dir = useDir(elementRef, props.dir);
|
|
108
|
-
return h("nav", {
|
|
109
|
-
"class": this.navClasses,
|
|
110
|
-
id: id || this.navId,
|
|
111
|
-
attrs: this.v3 ? undefined : {
|
|
112
|
-
id: id || this.navId
|
|
113
|
-
}
|
|
114
|
-
}, [items && items.map(function (element, index) {
|
|
115
|
-
var content = kendo_vue_common_1.templateRendering.call(this, element.item || item, kendo_vue_common_1.getListeners.call(this));
|
|
116
|
-
return (
|
|
117
|
-
// @ts-ignore
|
|
118
|
-
h(BottomNavigationItem_1.BottomNavigationItem, {
|
|
119
|
-
key: index,
|
|
120
|
-
index: index,
|
|
121
|
-
attrs: this.v3 ? undefined : {
|
|
122
|
-
index: index,
|
|
123
|
-
id: "".concat(id || this.navId, "-").concat(index),
|
|
124
|
-
disabled: disabled || element.disabled,
|
|
125
|
-
selected: this.selected === index || element.selected,
|
|
126
|
-
dataItem: element,
|
|
127
|
-
item: content
|
|
128
|
-
},
|
|
129
|
-
style: element.style,
|
|
130
|
-
"class": element.class,
|
|
131
|
-
id: "".concat(id || this.navId, "-").concat(index),
|
|
132
|
-
disabled: disabled || element.disabled,
|
|
133
|
-
selected: this.selected === index || element.selected,
|
|
134
|
-
dataItem: element,
|
|
135
|
-
item: content,
|
|
136
|
-
onSelect: this.handleSelect,
|
|
137
|
-
on: this.v3 ? undefined : {
|
|
138
|
-
"select": this.handleSelect,
|
|
139
|
-
"keydown": this.handleKeyDown
|
|
140
|
-
},
|
|
141
|
-
onKeydown: this.handleKeyDown
|
|
142
|
-
})
|
|
143
|
-
);
|
|
144
|
-
}, this)]);
|
|
145
|
-
},
|
|
146
|
-
methods: {
|
|
147
|
-
focus: function focus() {
|
|
148
|
-
if (this.$el) {
|
|
149
|
-
(0, kendo_vue_common_1.focusFirstFocusableChild)(this.$el);
|
|
150
|
-
}
|
|
151
|
-
},
|
|
152
|
-
dispatchSelectEvent: function dispatchSelectEvent(dispatchedEvent, index) {
|
|
153
|
-
if (!this.items) {
|
|
154
|
-
return;
|
|
155
|
-
}
|
|
156
|
-
if (!this.items[index].disabled) {
|
|
157
|
-
this.$emit('select', {
|
|
158
|
-
event: dispatchedEvent,
|
|
159
|
-
itemTarget: this.items[index],
|
|
160
|
-
itemIndex: index
|
|
161
|
-
});
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
handleSelect: function handleSelect(event, clickedItemIndex) {
|
|
165
|
-
this.dispatchSelectEvent(event, clickedItemIndex);
|
|
166
|
-
},
|
|
167
|
-
handleKeyDown: function handleKeyDown(event, clickedItemIndex) {
|
|
168
|
-
switch (event.keyCode) {
|
|
169
|
-
case kendo_vue_common_1.Keys.enter:
|
|
170
|
-
case kendo_vue_common_1.Keys.space:
|
|
171
|
-
this.dispatchSelectEvent(event, clickedItemIndex);
|
|
172
|
-
event.preventDefault();
|
|
173
|
-
break;
|
|
174
|
-
default:
|
|
175
|
-
break;
|
|
176
|
-
}
|
|
177
|
-
this.$emit('keydown', {
|
|
178
|
-
event: event,
|
|
179
|
-
itemTarget: this.items[clickedItemIndex],
|
|
180
|
-
itemIndex: clickedItemIndex
|
|
181
|
-
});
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
};
|
|
185
|
-
exports.BottomNavigationVue2 = BottomNavigationVue2;
|
|
186
|
-
/**
|
|
187
|
-
* @hidden
|
|
188
|
-
*/
|
|
189
|
-
var BottomNavigation = BottomNavigationVue2;
|
|
190
|
-
exports.BottomNavigation = BottomNavigation;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from '../additionalTypes';
|
|
2
|
-
declare type DefaultData<V> = object | ((this: V) => {});
|
|
3
|
-
declare type DefaultMethods<V> = {
|
|
4
|
-
[key: string]: (this: V, ...args: any[]) => any;
|
|
5
|
-
};
|
|
6
|
-
import { BottomNavigationItemProps } from './BottomNavigationItemProps';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export interface BottomNavigationItemState {
|
|
11
|
-
calculatedId: string;
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* @hidden
|
|
15
|
-
*/
|
|
16
|
-
export interface BottomNavigationItemComputed {
|
|
17
|
-
[key: string]: any;
|
|
18
|
-
itemClasses: object;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* @hidden
|
|
22
|
-
*/
|
|
23
|
-
export interface BottomNavigationItemMethods {
|
|
24
|
-
[key: string]: any;
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* @hidden
|
|
28
|
-
*/
|
|
29
|
-
export interface BottomNavigationItemData {
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* @hidden
|
|
33
|
-
*/
|
|
34
|
-
export interface BottomNavigationItemAll extends Vue2type, BottomNavigationItemMethods, BottomNavigationItemData, BottomNavigationItemComputed, BottomNavigationItemState {
|
|
35
|
-
}
|
|
36
|
-
/**
|
|
37
|
-
* @hidden
|
|
38
|
-
*/
|
|
39
|
-
declare let BottomNavigationItemVue2: ComponentOptions<BottomNavigationItemAll, DefaultData<BottomNavigationItemData>, DefaultMethods<BottomNavigationItemAll>, BottomNavigationItemComputed, RecordPropsDefinition<BottomNavigationItemProps>>;
|
|
40
|
-
/**
|
|
41
|
-
* @hidden
|
|
42
|
-
*/
|
|
43
|
-
declare const BottomNavigationItem: DefineComponent<BottomNavigationItemProps, any, BottomNavigationItemData, BottomNavigationItemComputed, BottomNavigationItemMethods, {}, {}, {}, string, BottomNavigationItemProps, BottomNavigationItemProps, {}>;
|
|
44
|
-
export { BottomNavigationItem, BottomNavigationItemVue2 };
|
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.BottomNavigationItemVue2 = exports.BottomNavigationItem = void 0;
|
|
7
|
-
// @ts-ignore
|
|
8
|
-
var Vue = require("vue");
|
|
9
|
-
var allVue = Vue;
|
|
10
|
-
var gh = allVue.h;
|
|
11
|
-
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
12
|
-
var package_metadata_1 = require("../package-metadata");
|
|
13
|
-
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
14
|
-
/**
|
|
15
|
-
* @hidden
|
|
16
|
-
*/
|
|
17
|
-
var BottomNavigationItemVue2 = {
|
|
18
|
-
name: 'KendoBottomNavigationItem',
|
|
19
|
-
// @ts-ignore
|
|
20
|
-
emits: {
|
|
21
|
-
'keydown': null,
|
|
22
|
-
'select': null
|
|
23
|
-
},
|
|
24
|
-
props: {
|
|
25
|
-
id: String,
|
|
26
|
-
disabled: Boolean,
|
|
27
|
-
selected: Boolean,
|
|
28
|
-
icon: String,
|
|
29
|
-
item: [String, Object, Function],
|
|
30
|
-
text: String,
|
|
31
|
-
dataItem: Object,
|
|
32
|
-
index: Number,
|
|
33
|
-
tabIndex: {
|
|
34
|
-
type: Number,
|
|
35
|
-
default: 0
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
created: function created() {
|
|
39
|
-
(0, kendo_vue_common_1.validatePackage)(package_metadata_1.packageMetadata);
|
|
40
|
-
},
|
|
41
|
-
computed: {
|
|
42
|
-
itemClasses: function itemClasses() {
|
|
43
|
-
var _a = this.$props,
|
|
44
|
-
selected = _a.selected,
|
|
45
|
-
disabled = _a.disabled;
|
|
46
|
-
return {
|
|
47
|
-
'k-bottom-nav-item': true,
|
|
48
|
-
'k-selected': selected,
|
|
49
|
-
'k-disabled': disabled
|
|
50
|
-
};
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
// @ts-ignore
|
|
54
|
-
setup: !isV3 ? undefined : function () {
|
|
55
|
-
var v3 = !!isV3;
|
|
56
|
-
return {
|
|
57
|
-
v3: v3
|
|
58
|
-
};
|
|
59
|
-
},
|
|
60
|
-
// @ts-ignore
|
|
61
|
-
render: function render(createElement) {
|
|
62
|
-
var h = gh || createElement;
|
|
63
|
-
var _a = this.$props,
|
|
64
|
-
selected = _a.selected,
|
|
65
|
-
disabled = _a.disabled,
|
|
66
|
-
item = _a.item,
|
|
67
|
-
dataItem = _a.dataItem,
|
|
68
|
-
id = _a.id,
|
|
69
|
-
index = _a.index,
|
|
70
|
-
tabIndex = _a.tabIndex;
|
|
71
|
-
var icon = dataItem.icon,
|
|
72
|
-
text = dataItem.text,
|
|
73
|
-
svgIcon = dataItem.svgIcon;
|
|
74
|
-
var content = kendo_vue_common_1.getTemplate.call(this, {
|
|
75
|
-
h: h,
|
|
76
|
-
template: item,
|
|
77
|
-
defaultRendering: null,
|
|
78
|
-
additionalProps: {
|
|
79
|
-
itemIndex: index,
|
|
80
|
-
item: dataItem
|
|
81
|
-
}
|
|
82
|
-
});
|
|
83
|
-
var bottomNavItem = h("span", {
|
|
84
|
-
"class": this.itemClasses,
|
|
85
|
-
role: 'link',
|
|
86
|
-
attrs: this.v3 ? undefined : {
|
|
87
|
-
role: 'link',
|
|
88
|
-
id: id,
|
|
89
|
-
tabIndex: tabIndex,
|
|
90
|
-
"aria-current": selected,
|
|
91
|
-
"aria-disabled": disabled
|
|
92
|
-
},
|
|
93
|
-
id: id,
|
|
94
|
-
tabIndex: tabIndex,
|
|
95
|
-
onClick: this.handleClick,
|
|
96
|
-
on: this.v3 ? undefined : {
|
|
97
|
-
"click": this.handleClick,
|
|
98
|
-
"keydown": this.handleKeyDown
|
|
99
|
-
},
|
|
100
|
-
onKeydown: this.handleKeyDown,
|
|
101
|
-
"aria-current": selected,
|
|
102
|
-
"aria-disabled": disabled
|
|
103
|
-
}, [this.$props.item ? content : [(svgIcon || icon) && h(kendo_vue_common_1.Icon, {
|
|
104
|
-
name: icon,
|
|
105
|
-
attrs: this.v3 ? undefined : {
|
|
106
|
-
name: icon,
|
|
107
|
-
icon: svgIcon,
|
|
108
|
-
size: 'xlarge'
|
|
109
|
-
},
|
|
110
|
-
icon: svgIcon,
|
|
111
|
-
size: 'xlarge',
|
|
112
|
-
"class": "k-bottom-nav-item-icon"
|
|
113
|
-
}), text && h("span", {
|
|
114
|
-
"class": 'k-bottom-nav-item-text',
|
|
115
|
-
style: {
|
|
116
|
-
userSelect: 'none'
|
|
117
|
-
}
|
|
118
|
-
}, [text])]]);
|
|
119
|
-
return bottomNavItem;
|
|
120
|
-
},
|
|
121
|
-
methods: {
|
|
122
|
-
handleClick: function handleClick(event) {
|
|
123
|
-
if (this.index !== undefined && !this.disabled) {
|
|
124
|
-
this.$emit('select', event, this.index);
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
|
-
handleKeyDown: function handleKeyDown(event) {
|
|
128
|
-
if (this.index !== undefined && !this.disabled) {
|
|
129
|
-
this.$emit('keydown', event, this.index);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
};
|
|
134
|
-
exports.BottomNavigationItemVue2 = BottomNavigationItemVue2;
|
|
135
|
-
/**
|
|
136
|
-
* @hidden
|
|
137
|
-
*/
|
|
138
|
-
var BottomNavigationItem = BottomNavigationItemVue2;
|
|
139
|
-
exports.BottomNavigationItem = BottomNavigationItem;
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The interface for describing items that can be passed to the `items` property of the BottomNavigation component.
|
|
3
|
-
*/
|
|
4
|
-
export interface BottomNavigationItemProps {
|
|
5
|
-
/**
|
|
6
|
-
* Style the BottomNavigation item.
|
|
7
|
-
*/
|
|
8
|
-
style?: object;
|
|
9
|
-
/**
|
|
10
|
-
* Class the BottomNavigation item.
|
|
11
|
-
*/
|
|
12
|
-
class?: string;
|
|
13
|
-
/**
|
|
14
|
-
* Disables the BottomNavigation item.
|
|
15
|
-
*/
|
|
16
|
-
disabled?: boolean;
|
|
17
|
-
/**
|
|
18
|
-
* Specifies if the BottomNavigation item is selected.
|
|
19
|
-
*/
|
|
20
|
-
selected?: boolean;
|
|
21
|
-
/**
|
|
22
|
-
* Defines the name for an existing icon in a Kendo UI for Vue theme.
|
|
23
|
-
* The icon is rendered inside the BottomNavigation item by a `span.k-icon` element.
|
|
24
|
-
*/
|
|
25
|
-
icon?: any;
|
|
26
|
-
/**
|
|
27
|
-
* Specifies the text content of the BottomNavigation item.
|
|
28
|
-
*/
|
|
29
|
-
text?: any;
|
|
30
|
-
/**
|
|
31
|
-
* Sets the `tabIndex` property of the BottomNavigation item. Defaults to `0`.
|
|
32
|
-
*/
|
|
33
|
-
tabIndex?: number;
|
|
34
|
-
/**
|
|
35
|
-
* Sets a custom property. Contained in the BottomNavItem props that are returned from the `onSelect` BottomNavigation event.
|
|
36
|
-
*/
|
|
37
|
-
[customProp: string]: any;
|
|
38
|
-
/**
|
|
39
|
-
* @hidden
|
|
40
|
-
*/
|
|
41
|
-
index?: number;
|
|
42
|
-
/**
|
|
43
|
-
* @hidden
|
|
44
|
-
*/
|
|
45
|
-
item?: any;
|
|
46
|
-
/**
|
|
47
|
-
* @hidden
|
|
48
|
-
*/
|
|
49
|
-
dataItem?: any;
|
|
50
|
-
/**
|
|
51
|
-
* @hidden
|
|
52
|
-
*/
|
|
53
|
-
id?: string;
|
|
54
|
-
}
|