@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,335 +0,0 @@
|
|
|
1
|
-
// @ts-ignore
|
|
2
|
-
import * as Vue from 'vue';
|
|
3
|
-
var allVue = Vue;
|
|
4
|
-
var gh = allVue.h;
|
|
5
|
-
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
|
-
import { classNames, Draggable, Icon, Keys } from '@progress/kendo-vue-common';
|
|
7
|
-
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
8
|
-
import { splitterPaneLabel, messages } from '../messages/main';
|
|
9
|
-
import { caretAltDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon } from '@progress/kendo-svg-icons';
|
|
10
|
-
/**
|
|
11
|
-
* @hidden
|
|
12
|
-
*/
|
|
13
|
-
var SplitterBarVue2 = {
|
|
14
|
-
name: 'KendoSplitterBar',
|
|
15
|
-
// @ts-ignore
|
|
16
|
-
emits: {
|
|
17
|
-
drag: null,
|
|
18
|
-
toggle: null,
|
|
19
|
-
keyboardresize: null
|
|
20
|
-
},
|
|
21
|
-
props: {
|
|
22
|
-
orientation: {
|
|
23
|
-
type: String,
|
|
24
|
-
default: 'vertical',
|
|
25
|
-
validator: function validator(value) {
|
|
26
|
-
return ['vertical', 'horizontal'].includes(value);
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
index: Number,
|
|
30
|
-
prev: Object,
|
|
31
|
-
next: Object,
|
|
32
|
-
isRtl: Boolean
|
|
33
|
-
},
|
|
34
|
-
created: function created() {
|
|
35
|
-
this.draggable = null;
|
|
36
|
-
},
|
|
37
|
-
computed: {
|
|
38
|
-
isStatic: function isStatic() {
|
|
39
|
-
var _a = this.$props,
|
|
40
|
-
prev = _a.prev,
|
|
41
|
-
next = _a.next;
|
|
42
|
-
var betweenResizablePanes = prev.resizable && next.resizable;
|
|
43
|
-
var nearCollapsiblePane = prev.collapsible || next.collapsible;
|
|
44
|
-
return !betweenResizablePanes && !nearCollapsiblePane;
|
|
45
|
-
},
|
|
46
|
-
isDraggable: function isDraggable() {
|
|
47
|
-
var _a = this.$props,
|
|
48
|
-
prev = _a.prev,
|
|
49
|
-
next = _a.next;
|
|
50
|
-
var betweenResizablePanes = prev.resizable && next.resizable;
|
|
51
|
-
var nearCollapsedPane = prev.collapsed || next.collapsed;
|
|
52
|
-
return !!betweenResizablePanes && !nearCollapsedPane;
|
|
53
|
-
},
|
|
54
|
-
isHorizontal: function isHorizontal() {
|
|
55
|
-
return this.$props.orientation === 'horizontal';
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
inject: {
|
|
59
|
-
kendoLocalizationService: {
|
|
60
|
-
default: null
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
data: function data() {
|
|
64
|
-
return {
|
|
65
|
-
focused: false
|
|
66
|
-
};
|
|
67
|
-
},
|
|
68
|
-
mounted: function mounted() {
|
|
69
|
-
if (this.$el) {
|
|
70
|
-
this.draggable = this.$refs.draggable;
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
// @ts-ignore
|
|
74
|
-
setup: !isV3 ? undefined : function () {
|
|
75
|
-
var v3 = !!isV3;
|
|
76
|
-
return {
|
|
77
|
-
v3: v3
|
|
78
|
-
};
|
|
79
|
-
},
|
|
80
|
-
// @ts-ignore
|
|
81
|
-
render: function render(createElement) {
|
|
82
|
-
var _this2 = this;
|
|
83
|
-
var _a;
|
|
84
|
-
var _this = this;
|
|
85
|
-
var h = gh || createElement;
|
|
86
|
-
var isDraggable = this.isDraggable;
|
|
87
|
-
var isStatic = this.isStatic;
|
|
88
|
-
var isHorizontal = this.isHorizontal;
|
|
89
|
-
var barClasses = classNames('k-splitbar', (_a = {}, _a['k-focus'] = this.focused, _a['k-splitbar-horizontal'] = isHorizontal, _a['k-splitbar-vertical'] = !isHorizontal, _a['k-splitbar-draggable-horizontal'] = isHorizontal && isDraggable, _a['k-splitbar-draggable-vertical'] = !isHorizontal && isDraggable, _a['k-splitbar-static-horizontal'] = isHorizontal && isStatic, _a['k-splitbar-static-vertical'] = !isHorizontal && isStatic, _a));
|
|
90
|
-
var previousArrowName = this.previousArrowName(isHorizontal);
|
|
91
|
-
var previousArrowSVG = this.previousArrowSVG(isHorizontal);
|
|
92
|
-
var nextArrowName = this.nextArrowName(isHorizontal);
|
|
93
|
-
var nextArrowSVG = this.nextArrowSVG(isHorizontal);
|
|
94
|
-
var paneLabel = provideLocalizationService(this).toLanguageString(splitterPaneLabel, messages[splitterPaneLabel]);
|
|
95
|
-
return (
|
|
96
|
-
// @ts-ignore function children
|
|
97
|
-
h(Draggable, {
|
|
98
|
-
onPress: function onPress(event) {
|
|
99
|
-
return _this.onDrag(event, true, false);
|
|
100
|
-
},
|
|
101
|
-
on: this.v3 ? undefined : {
|
|
102
|
-
"press": function onPress(event) {
|
|
103
|
-
return _this.onDrag(event, true, false);
|
|
104
|
-
},
|
|
105
|
-
"drag": function drag(event) {
|
|
106
|
-
return _this.onDrag(event, false, false);
|
|
107
|
-
},
|
|
108
|
-
"release": function release(event) {
|
|
109
|
-
return _this.onDrag(event, false, true);
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
onDrag: function drag(event) {
|
|
113
|
-
return _this.onDrag(event, false, false);
|
|
114
|
-
},
|
|
115
|
-
onRelease: function release(event) {
|
|
116
|
-
return _this.onDrag(event, false, true);
|
|
117
|
-
},
|
|
118
|
-
ref: 'draggable'
|
|
119
|
-
}, this.v3 ? function () {
|
|
120
|
-
return [h("div", {
|
|
121
|
-
tabindex: isStatic ? -1 : 0,
|
|
122
|
-
attrs: _this2.v3 ? undefined : {
|
|
123
|
-
tabindex: isStatic ? -1 : 0,
|
|
124
|
-
role: 'separator',
|
|
125
|
-
ariaLabel: paneLabel,
|
|
126
|
-
ariaOrientation: _this2.isHorizontal ? 'vertical' : 'horizontal'
|
|
127
|
-
},
|
|
128
|
-
role: 'separator',
|
|
129
|
-
"class": barClasses,
|
|
130
|
-
style: {
|
|
131
|
-
touchAction: 'none'
|
|
132
|
-
},
|
|
133
|
-
onFocusin: _this2.onFocus,
|
|
134
|
-
on: _this2.v3 ? undefined : {
|
|
135
|
-
"focusin": _this2.onFocus,
|
|
136
|
-
"focusout": _this2.onBlur,
|
|
137
|
-
"dblclick": _this2.onToggle,
|
|
138
|
-
"keydown": _this2.onKeyDown
|
|
139
|
-
},
|
|
140
|
-
onFocusout: _this2.onBlur,
|
|
141
|
-
onDblclick: _this2.onToggle,
|
|
142
|
-
onKeydown: _this2.onKeyDown,
|
|
143
|
-
ariaLabel: paneLabel,
|
|
144
|
-
ariaOrientation: _this2.isHorizontal ? 'vertical' : 'horizontal'
|
|
145
|
-
}, [_this2.prev.collapsible && h("span", {
|
|
146
|
-
"class": 'k-collapse-prev',
|
|
147
|
-
onClick: _this2.onPrevToggle,
|
|
148
|
-
on: _this2.v3 ? undefined : {
|
|
149
|
-
"click": _this2.onPrevToggle
|
|
150
|
-
}
|
|
151
|
-
}, [h(Icon, {
|
|
152
|
-
name: previousArrowName,
|
|
153
|
-
attrs: _this2.v3 ? undefined : {
|
|
154
|
-
name: previousArrowName,
|
|
155
|
-
icon: previousArrowSVG,
|
|
156
|
-
size: 'xsmall'
|
|
157
|
-
},
|
|
158
|
-
icon: previousArrowSVG,
|
|
159
|
-
size: 'xsmall'
|
|
160
|
-
})]), h("div", {
|
|
161
|
-
"class": 'k-resize-handle'
|
|
162
|
-
}), _this2.next.collapsible && h("span", {
|
|
163
|
-
"class": 'k-collapse-next',
|
|
164
|
-
onClick: _this2.onNextToggle,
|
|
165
|
-
on: _this2.v3 ? undefined : {
|
|
166
|
-
"click": _this2.onNextToggle
|
|
167
|
-
}
|
|
168
|
-
}, [h(Icon, {
|
|
169
|
-
name: nextArrowName,
|
|
170
|
-
attrs: _this2.v3 ? undefined : {
|
|
171
|
-
name: nextArrowName,
|
|
172
|
-
icon: nextArrowSVG,
|
|
173
|
-
size: 'xsmall'
|
|
174
|
-
},
|
|
175
|
-
icon: nextArrowSVG,
|
|
176
|
-
size: 'xsmall'
|
|
177
|
-
})])])];
|
|
178
|
-
} : [h("div", {
|
|
179
|
-
tabindex: isStatic ? -1 : 0,
|
|
180
|
-
attrs: _this2.v3 ? undefined : {
|
|
181
|
-
tabindex: isStatic ? -1 : 0,
|
|
182
|
-
role: 'separator',
|
|
183
|
-
ariaLabel: paneLabel,
|
|
184
|
-
ariaOrientation: _this2.isHorizontal ? 'vertical' : 'horizontal'
|
|
185
|
-
},
|
|
186
|
-
role: 'separator',
|
|
187
|
-
"class": barClasses,
|
|
188
|
-
style: {
|
|
189
|
-
touchAction: 'none'
|
|
190
|
-
},
|
|
191
|
-
onFocusin: _this2.onFocus,
|
|
192
|
-
on: _this2.v3 ? undefined : {
|
|
193
|
-
"focusin": _this2.onFocus,
|
|
194
|
-
"focusout": _this2.onBlur,
|
|
195
|
-
"dblclick": _this2.onToggle,
|
|
196
|
-
"keydown": _this2.onKeyDown
|
|
197
|
-
},
|
|
198
|
-
onFocusout: _this2.onBlur,
|
|
199
|
-
onDblclick: _this2.onToggle,
|
|
200
|
-
onKeydown: _this2.onKeyDown,
|
|
201
|
-
ariaLabel: paneLabel,
|
|
202
|
-
ariaOrientation: _this2.isHorizontal ? 'vertical' : 'horizontal'
|
|
203
|
-
}, [_this2.prev.collapsible && h("span", {
|
|
204
|
-
"class": 'k-collapse-prev',
|
|
205
|
-
onClick: _this2.onPrevToggle,
|
|
206
|
-
on: _this2.v3 ? undefined : {
|
|
207
|
-
"click": _this2.onPrevToggle
|
|
208
|
-
}
|
|
209
|
-
}, [h(Icon, {
|
|
210
|
-
name: previousArrowName,
|
|
211
|
-
attrs: _this2.v3 ? undefined : {
|
|
212
|
-
name: previousArrowName,
|
|
213
|
-
icon: previousArrowSVG,
|
|
214
|
-
size: 'xsmall'
|
|
215
|
-
},
|
|
216
|
-
icon: previousArrowSVG,
|
|
217
|
-
size: 'xsmall'
|
|
218
|
-
})]), h("div", {
|
|
219
|
-
"class": 'k-resize-handle'
|
|
220
|
-
}), _this2.next.collapsible && h("span", {
|
|
221
|
-
"class": 'k-collapse-next',
|
|
222
|
-
onClick: _this2.onNextToggle,
|
|
223
|
-
on: _this2.v3 ? undefined : {
|
|
224
|
-
"click": _this2.onNextToggle
|
|
225
|
-
}
|
|
226
|
-
}, [h(Icon, {
|
|
227
|
-
name: nextArrowName,
|
|
228
|
-
attrs: _this2.v3 ? undefined : {
|
|
229
|
-
name: nextArrowName,
|
|
230
|
-
icon: nextArrowSVG,
|
|
231
|
-
size: 'xsmall'
|
|
232
|
-
},
|
|
233
|
-
icon: nextArrowSVG,
|
|
234
|
-
size: 'xsmall'
|
|
235
|
-
})])])])
|
|
236
|
-
);
|
|
237
|
-
},
|
|
238
|
-
methods: {
|
|
239
|
-
onDrag: function onDrag(data, isFirst, isLast) {
|
|
240
|
-
var event = data;
|
|
241
|
-
var index = this.$props.index;
|
|
242
|
-
var element = this.draggable && this.draggable.element;
|
|
243
|
-
if (!isLast && event) {
|
|
244
|
-
event.originalEvent.preventDefault();
|
|
245
|
-
}
|
|
246
|
-
if (element && !this.isStatic && this.isDraggable) {
|
|
247
|
-
this.$emit('drag', event, element, index, isFirst, isLast);
|
|
248
|
-
}
|
|
249
|
-
},
|
|
250
|
-
onFocus: function onFocus() {
|
|
251
|
-
this.focused = true;
|
|
252
|
-
},
|
|
253
|
-
onBlur: function onBlur() {
|
|
254
|
-
this.focused = false;
|
|
255
|
-
},
|
|
256
|
-
onToggle: function onToggle(event) {
|
|
257
|
-
var _a = this.$props,
|
|
258
|
-
index = _a.index,
|
|
259
|
-
prev = _a.prev,
|
|
260
|
-
next = _a.next;
|
|
261
|
-
if (prev.collapsible || next.collapsible) {
|
|
262
|
-
this.$emit('toggle', prev.collapsible ? index : index + 1, event);
|
|
263
|
-
}
|
|
264
|
-
},
|
|
265
|
-
onPrevToggle: function onPrevToggle(event) {
|
|
266
|
-
var _a = this.$props,
|
|
267
|
-
index = _a.index,
|
|
268
|
-
prev = _a.prev;
|
|
269
|
-
if (prev.collapsible) {
|
|
270
|
-
this.$emit('toggle', index, event);
|
|
271
|
-
}
|
|
272
|
-
},
|
|
273
|
-
onNextToggle: function onNextToggle(event) {
|
|
274
|
-
var _a = this.$props,
|
|
275
|
-
index = _a.index,
|
|
276
|
-
next = _a.next;
|
|
277
|
-
if (next.collapsible) {
|
|
278
|
-
this.$emit('toggle', index + 1, event);
|
|
279
|
-
}
|
|
280
|
-
},
|
|
281
|
-
onKeyDown: function onKeyDown(event) {
|
|
282
|
-
var _this = this;
|
|
283
|
-
var keyCode = event && event.keyCode;
|
|
284
|
-
var isHorizontal = this.isHorizontal;
|
|
285
|
-
var index = this.$props.index;
|
|
286
|
-
var element = this.draggable && this.draggable.element;
|
|
287
|
-
var onKeyboardResize = function onKeyboardResize(el, idx, offset) {
|
|
288
|
-
event.preventDefault();
|
|
289
|
-
_this.$emit('keyboardresize', el, idx, offset, event);
|
|
290
|
-
};
|
|
291
|
-
if (!element) {
|
|
292
|
-
return;
|
|
293
|
-
}
|
|
294
|
-
if (keyCode === Keys.enter) {
|
|
295
|
-
event.preventDefault();
|
|
296
|
-
this.onToggle(event);
|
|
297
|
-
} else if (this.isDraggable) {
|
|
298
|
-
if (isHorizontal && keyCode === Keys.left) {
|
|
299
|
-
onKeyboardResize(element, index, -10);
|
|
300
|
-
} else if (isHorizontal && keyCode === Keys.right) {
|
|
301
|
-
onKeyboardResize(element, index, 10);
|
|
302
|
-
} else if (!isHorizontal && keyCode === Keys.up) {
|
|
303
|
-
onKeyboardResize(element, index, -10);
|
|
304
|
-
} else if (!isHorizontal && keyCode === Keys.down) {
|
|
305
|
-
onKeyboardResize(element, index, 10);
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
},
|
|
309
|
-
previousArrowName: function previousArrowName(isHorizontal) {
|
|
310
|
-
var prev = this.$props.prev;
|
|
311
|
-
var isCollapsed = prev.collapsed;
|
|
312
|
-
return isHorizontal && !isCollapsed ? this.isRtl ? 'caret-alt-right' : 'caret-alt-left' : isHorizontal && isCollapsed ? this.isRtl ? 'caret-alt-left' : 'caret-alt-right' : !isHorizontal && !isCollapsed ? 'caret-alt-up' : !isHorizontal && isCollapsed ? 'caret-alt-down' : '';
|
|
313
|
-
},
|
|
314
|
-
previousArrowSVG: function previousArrowSVG(isHorizontal) {
|
|
315
|
-
var prev = this.$props.prev;
|
|
316
|
-
var isCollapsed = prev.collapsed;
|
|
317
|
-
return isHorizontal && !isCollapsed ? this.isRtl ? caretAltRightIcon : caretAltLeftIcon : isHorizontal && isCollapsed ? this.isRtl ? caretAltLeftIcon : caretAltRightIcon : !isHorizontal && !isCollapsed ? caretAltUpIcon : !isHorizontal && isCollapsed ? caretAltDownIcon : undefined;
|
|
318
|
-
},
|
|
319
|
-
nextArrowName: function nextArrowName(isHorizontal) {
|
|
320
|
-
var next = this.$props.next;
|
|
321
|
-
var isCollapsed = next.collapsed;
|
|
322
|
-
return isHorizontal && !isCollapsed ? this.isRtl ? 'caret-alt-left' : 'caret-alt-right' : isHorizontal && isCollapsed ? this.isRtl ? 'caret-alt-right' : 'caret-alt-left' : !isHorizontal && !isCollapsed ? 'caret-alt-down' : !isHorizontal && isCollapsed ? 'caret-alt-up' : '';
|
|
323
|
-
},
|
|
324
|
-
nextArrowSVG: function nextArrowSVG(isHorizontal) {
|
|
325
|
-
var next = this.$props.next;
|
|
326
|
-
var isCollapsed = next.collapsed;
|
|
327
|
-
return isHorizontal && !isCollapsed ? this.isRtl ? caretAltLeftIcon : caretAltRightIcon : isHorizontal && isCollapsed ? this.isRtl ? caretAltRightIcon : caretAltLeftIcon : !isHorizontal && !isCollapsed ? caretAltDownIcon : !isHorizontal && isCollapsed ? caretAltUpIcon : undefined;
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
};
|
|
331
|
-
/**
|
|
332
|
-
* @hidden
|
|
333
|
-
*/
|
|
334
|
-
var SplitterBar = SplitterBarVue2;
|
|
335
|
-
export { SplitterBar, SplitterBarVue2 };
|
|
@@ -1,93 +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
|
-
/**
|
|
7
|
-
* Represents the pane options of the Splitter.
|
|
8
|
-
*/
|
|
9
|
-
export interface SplitterPaneProps {
|
|
10
|
-
/**
|
|
11
|
-
* Sets the size of the pane ([see example]({% slug panes_splitter %}#toc-dimensions)). Has to be between the `min` and `max` properties.
|
|
12
|
-
*/
|
|
13
|
-
size?: string;
|
|
14
|
-
/**
|
|
15
|
-
* Sets the minimum possible size of the pane ([see example]({% slug panes_splitter %}#toc-dimensions)).
|
|
16
|
-
*/
|
|
17
|
-
min?: string;
|
|
18
|
-
/**
|
|
19
|
-
* Sets the maximum possible size of the pane ([see example]({% slug panes_splitter %}#toc-dimensions)).
|
|
20
|
-
*/
|
|
21
|
-
max?: string;
|
|
22
|
-
/**
|
|
23
|
-
* 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.
|
|
24
|
-
*/
|
|
25
|
-
resizable?: boolean;
|
|
26
|
-
/**
|
|
27
|
-
* Specifies if the user is allowed to hide the pane and provide space for other panes ([see example]({% slug panes_splitter %}#toc-collapsing)).
|
|
28
|
-
*/
|
|
29
|
-
collapsible?: boolean;
|
|
30
|
-
/**
|
|
31
|
-
* Specifies the pane collapsed state ([see example]({% slug panes_splitter %}#toc-collapsing)).
|
|
32
|
-
*/
|
|
33
|
-
collapsed?: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* 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.
|
|
36
|
-
*/
|
|
37
|
-
scrollable?: boolean;
|
|
38
|
-
/**
|
|
39
|
-
* Specifies if the content of the pane contains Splitter.
|
|
40
|
-
*/
|
|
41
|
-
containsSplitter: boolean;
|
|
42
|
-
/**
|
|
43
|
-
* Specifies if the children of the pane should be mounted when it's in collapsed state.
|
|
44
|
-
*/
|
|
45
|
-
keepMounted?: boolean;
|
|
46
|
-
/**
|
|
47
|
-
* The slot template for the content of the splitter
|
|
48
|
-
*/
|
|
49
|
-
content?: any;
|
|
50
|
-
}
|
|
51
|
-
/**
|
|
52
|
-
* @hidden
|
|
53
|
-
*/
|
|
54
|
-
export interface SplitterPaneExtendedProps extends SplitterPaneProps {
|
|
55
|
-
orientation: 'vertical' | 'horizontal' | string;
|
|
56
|
-
overlay: boolean;
|
|
57
|
-
}
|
|
58
|
-
/**
|
|
59
|
-
* @hidden
|
|
60
|
-
*/
|
|
61
|
-
export interface SplitterPaneState {
|
|
62
|
-
}
|
|
63
|
-
/**
|
|
64
|
-
* @hidden
|
|
65
|
-
*/
|
|
66
|
-
export interface SplitterPaneComputed {
|
|
67
|
-
[key: string]: any;
|
|
68
|
-
}
|
|
69
|
-
/**
|
|
70
|
-
* @hidden
|
|
71
|
-
*/
|
|
72
|
-
export interface SplitterPaneMethods {
|
|
73
|
-
[key: string]: any;
|
|
74
|
-
}
|
|
75
|
-
/**
|
|
76
|
-
* @hidden
|
|
77
|
-
*/
|
|
78
|
-
export interface SplitterPaneData {
|
|
79
|
-
}
|
|
80
|
-
/**
|
|
81
|
-
* @hidden
|
|
82
|
-
*/
|
|
83
|
-
export interface SplitterPaneAll extends Vue2type, SplitterPaneMethods, SplitterPaneData, SplitterPaneComputed, SplitterPaneState {
|
|
84
|
-
}
|
|
85
|
-
/**
|
|
86
|
-
* @hidden
|
|
87
|
-
*/
|
|
88
|
-
declare let SplitterPaneVue2: ComponentOptions<SplitterPaneAll, DefaultData<SplitterPaneData>, DefaultMethods<SplitterPaneAll>, SplitterPaneComputed, RecordPropsDefinition<SplitterPaneExtendedProps>>;
|
|
89
|
-
/**
|
|
90
|
-
* @hidden
|
|
91
|
-
*/
|
|
92
|
-
declare const SplitterPane: DefineComponent<SplitterPaneProps, any, SplitterPaneData, SplitterPaneComputed, SplitterPaneMethods, {}, {}, {}, string, SplitterPaneProps, SplitterPaneProps, {}>;
|
|
93
|
-
export { SplitterPane, SplitterPaneVue2 };
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
// @ts-ignore
|
|
2
|
-
import * as Vue from 'vue';
|
|
3
|
-
var allVue = Vue;
|
|
4
|
-
var gh = allVue.h;
|
|
5
|
-
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
|
-
import { classNames, getTemplate } from '@progress/kendo-vue-common';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
var SplitterPaneVue2 = {
|
|
11
|
-
name: 'KendoSplitterPane',
|
|
12
|
-
props: {
|
|
13
|
-
orientation: {
|
|
14
|
-
type: String,
|
|
15
|
-
default: function _default() {
|
|
16
|
-
return undefined;
|
|
17
|
-
},
|
|
18
|
-
validator: function validator(value) {
|
|
19
|
-
return ['vertical', 'horizontal'].includes(value);
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
overlay: Boolean,
|
|
23
|
-
containsSplitter: Boolean,
|
|
24
|
-
size: String,
|
|
25
|
-
min: String,
|
|
26
|
-
max: String,
|
|
27
|
-
resizable: Boolean,
|
|
28
|
-
collapsible: Boolean,
|
|
29
|
-
collapsed: Boolean,
|
|
30
|
-
scrollable: Boolean,
|
|
31
|
-
keepMounted: Boolean,
|
|
32
|
-
content: [Object, Function, String]
|
|
33
|
-
},
|
|
34
|
-
// @ts-ignore
|
|
35
|
-
setup: !isV3 ? undefined : function () {
|
|
36
|
-
var v3 = !!isV3;
|
|
37
|
-
return {
|
|
38
|
-
v3: v3
|
|
39
|
-
};
|
|
40
|
-
},
|
|
41
|
-
// @ts-ignore
|
|
42
|
-
render: function render(createElement) {
|
|
43
|
-
var _a;
|
|
44
|
-
var h = gh || createElement;
|
|
45
|
-
var _b = this.$props,
|
|
46
|
-
size = _b.size,
|
|
47
|
-
collapsed = _b.collapsed,
|
|
48
|
-
overlay = _b.overlay,
|
|
49
|
-
containsSplitter = _b.containsSplitter,
|
|
50
|
-
collapsible = _b.collapsible,
|
|
51
|
-
resizable = _b.resizable,
|
|
52
|
-
scrollable = _b.scrollable,
|
|
53
|
-
keepMounted = _b.keepMounted;
|
|
54
|
-
var fixedSize = size && size.length > 0;
|
|
55
|
-
var style = {
|
|
56
|
-
flexBasis: size
|
|
57
|
-
};
|
|
58
|
-
var paneClasses = classNames('k-pane', (_a = {}, _a['k-hidden'] = collapsed, _a['hidden'] = collapsed, _a['k-pane-flex'] = containsSplitter, _a['k-pane-static'] = !resizable && !collapsible || fixedSize, _a['k-scrollable'] = scrollable, _a));
|
|
59
|
-
var content = getTemplate.call(this, {
|
|
60
|
-
h: h,
|
|
61
|
-
template: this.$props.content,
|
|
62
|
-
defaultRendering: null
|
|
63
|
-
});
|
|
64
|
-
return h("div", {
|
|
65
|
-
style: style,
|
|
66
|
-
"class": paneClasses,
|
|
67
|
-
role: 'group',
|
|
68
|
-
attrs: this.v3 ? undefined : {
|
|
69
|
-
role: 'group'
|
|
70
|
-
}
|
|
71
|
-
}, [!collapsed || keepMounted ? content : undefined, overlay ? h("div", {
|
|
72
|
-
"class": 'k-splitter-overlay k-overlay'
|
|
73
|
-
}) : undefined]);
|
|
74
|
-
}
|
|
75
|
-
};
|
|
76
|
-
/**
|
|
77
|
-
* @hidden
|
|
78
|
-
*/
|
|
79
|
-
var SplitterPane = SplitterPaneVue2;
|
|
80
|
-
export { SplitterPane, SplitterPaneVue2 };
|
|
@@ -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 { StackLayoutProps } from './StackLayoutProps';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export interface StackLayoutData {
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* @hidden
|
|
14
|
-
*/
|
|
15
|
-
export interface StackLayoutState {
|
|
16
|
-
v3: boolean;
|
|
17
|
-
}
|
|
18
|
-
/**
|
|
19
|
-
* @hidden
|
|
20
|
-
*/
|
|
21
|
-
export interface StackLayoutMethods {
|
|
22
|
-
[key: string]: any;
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* @hidden
|
|
26
|
-
*/
|
|
27
|
-
export interface StackLayoutComputed {
|
|
28
|
-
[key: string]: any;
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* @hidden
|
|
32
|
-
*/
|
|
33
|
-
export interface StackLayoutAll extends Vue2type, StackLayoutMethods, StackLayoutState, StackLayoutData, StackLayoutComputed {
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* @hidden
|
|
37
|
-
*/
|
|
38
|
-
declare let StackLayoutVue2: ComponentOptions<StackLayoutAll, DefaultData<StackLayoutData>, DefaultMethods<StackLayoutAll>, StackLayoutComputed, RecordPropsDefinition<StackLayoutProps>>;
|
|
39
|
-
/**
|
|
40
|
-
* Represents the [Kendo UI for Vue StackLayout component]({% slug overview_stacklayout %}).
|
|
41
|
-
* Arranges its inner elements horizontally, or vertically in a stack. Nesting stack layouts is supported to build more complex layouts.
|
|
42
|
-
*/
|
|
43
|
-
declare const StackLayout: DefineComponent<StackLayoutProps, any, StackLayoutData, StackLayoutComputed, StackLayoutMethods, {}, {}, {}, string, StackLayoutProps, StackLayoutProps, {}>;
|
|
44
|
-
export { StackLayout, StackLayoutVue2 };
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
// @ts-ignore
|
|
2
|
-
import * as Vue from 'vue';
|
|
3
|
-
var allVue = Vue;
|
|
4
|
-
var gh = allVue.h;
|
|
5
|
-
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
|
-
import { packageMetadata } from '../package-metadata';
|
|
7
|
-
import { getDefaultSlots, guid, validatePackage } from '@progress/kendo-vue-common';
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*/
|
|
11
|
-
var StackLayoutVue2 = {
|
|
12
|
-
name: 'KendoStackLayout',
|
|
13
|
-
props: {
|
|
14
|
-
id: String,
|
|
15
|
-
orientation: {
|
|
16
|
-
type: String,
|
|
17
|
-
default: 'horizontal',
|
|
18
|
-
validator: function validator(value) {
|
|
19
|
-
return ['horizontal', 'vertical'].includes(value);
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
gap: {
|
|
23
|
-
type: [String, Number]
|
|
24
|
-
},
|
|
25
|
-
align: {
|
|
26
|
-
type: Object,
|
|
27
|
-
validator: function validator(value) {
|
|
28
|
-
return ['top', 'middle', 'bottom', 'stretch', undefined].includes(value.vertical) && ['start', 'center', 'end', 'stretch', undefined].includes(value.horizontal);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
created: function created() {
|
|
33
|
-
validatePackage(packageMetadata);
|
|
34
|
-
this.layoutId = guid();
|
|
35
|
-
},
|
|
36
|
-
computed: {
|
|
37
|
-
hAlign: function hAlign() {
|
|
38
|
-
return this.$props.align && this.$props.align.horizontal ? this.$props.align.horizontal : 'stretch';
|
|
39
|
-
},
|
|
40
|
-
vAlign: function vAlign() {
|
|
41
|
-
return this.$props.align && this.$props.align.vertical ? this.$props.align.vertical : 'stretch';
|
|
42
|
-
},
|
|
43
|
-
stackLayoutClasses: function stackLayoutClasses() {
|
|
44
|
-
var orientation = this.$props.orientation;
|
|
45
|
-
var isHorizontal = orientation === 'horizontal';
|
|
46
|
-
return {
|
|
47
|
-
'k-stack-layout': true,
|
|
48
|
-
'k-hstack': orientation === 'horizontal',
|
|
49
|
-
'k-vstack': orientation === 'vertical',
|
|
50
|
-
'k-justify-content-start': isHorizontal && this.hAlign === 'start' || !isHorizontal && this.vAlign === 'top',
|
|
51
|
-
'k-justify-content-center': isHorizontal && this.hAlign === 'center' || !isHorizontal && this.vAlign === 'middle',
|
|
52
|
-
'k-justify-content-end': isHorizontal && this.hAlign === 'end' || !isHorizontal && this.vAlign === 'bottom',
|
|
53
|
-
'k-justify-content-stretch': isHorizontal && this.hAlign === 'stretch' || !isHorizontal && this.vAlign === 'stretch',
|
|
54
|
-
'k-align-items-start': !isHorizontal && this.hAlign === 'start' || isHorizontal && this.vAlign === 'top',
|
|
55
|
-
'k-align-items-center': !isHorizontal && this.hAlign === 'center' || isHorizontal && this.vAlign === 'middle',
|
|
56
|
-
'k-align-items-end': !isHorizontal && this.hAlign === 'end' || isHorizontal && this.vAlign === 'bottom',
|
|
57
|
-
'k-align-items-stretch': !isHorizontal && this.hAlign === 'stretch' || isHorizontal && this.vAlign === 'stretch'
|
|
58
|
-
};
|
|
59
|
-
},
|
|
60
|
-
stackLayoutStyles: function stackLayoutStyles() {
|
|
61
|
-
return {
|
|
62
|
-
gap: "".concat(typeof this.$props.gap === 'number' ? this.$props.gap + 'px' : this.$props.gap)
|
|
63
|
-
};
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
// @ts-ignore
|
|
67
|
-
setup: !isV3 ? undefined : function () {
|
|
68
|
-
var v3 = !!isV3;
|
|
69
|
-
return {
|
|
70
|
-
v3: v3
|
|
71
|
-
};
|
|
72
|
-
},
|
|
73
|
-
render: function render(createElement) {
|
|
74
|
-
var h = gh || createElement;
|
|
75
|
-
var defaultSlot = getDefaultSlots(this);
|
|
76
|
-
var id = this.$props.id;
|
|
77
|
-
return h("div", {
|
|
78
|
-
"class": this.stackLayoutClasses,
|
|
79
|
-
style: this.stackLayoutStyles,
|
|
80
|
-
id: id || this.layoutId,
|
|
81
|
-
attrs: this.v3 ? undefined : {
|
|
82
|
-
id: id || this.layoutId
|
|
83
|
-
}
|
|
84
|
-
}, [defaultSlot]);
|
|
85
|
-
}
|
|
86
|
-
};
|
|
87
|
-
/**
|
|
88
|
-
* Represents the [Kendo UI for Vue StackLayout component]({% slug overview_stacklayout %}).
|
|
89
|
-
* Arranges its inner elements horizontally, or vertically in a stack. Nesting stack layouts is supported to build more complex layouts.
|
|
90
|
-
*/
|
|
91
|
-
var StackLayout = StackLayoutVue2;
|
|
92
|
-
export { StackLayout, StackLayoutVue2 };
|