@progress/kendo-react-layout 14.4.1-develop.9 → 14.5.0-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actionsheet/ActionSheet.d.ts +1 -1
- package/actionsheet/ActionSheetContent.d.ts +1 -1
- package/actionsheet/ActionSheetFooter.d.ts +1 -1
- package/actionsheet/ActionSheetHeader.d.ts +1 -1
- package/actionsheet/ActionSheetItem.d.ts +1 -1
- package/appbar/AppBar.d.ts +1 -1
- package/appbar/AppBarSection.d.ts +1 -1
- package/appbar/AppBarSpacer.d.ts +1 -1
- package/bottomnavigation/BottomNavigation.d.ts +1 -1
- package/bottomnavigation/BottomNavigationProps.d.ts +2 -2
- package/card/Avatar.d.ts +1 -1
- package/card/Card.d.ts +2 -2
- package/card/CardActions.d.ts +1 -1
- package/card/CardBody.d.ts +1 -1
- package/card/CardFooter.d.ts +1 -1
- package/card/CardHeader.d.ts +1 -1
- package/card/CardImage.d.ts +1 -1
- package/card/CardSubtitle.d.ts +1 -1
- package/card/CardTitle.d.ts +1 -1
- package/card/interfaces/CardHandle.d.ts +1 -1
- package/contextmenu/ContextMenu.d.ts +2 -2
- package/dist/cdn/js/kendo-react-layout.js +1 -1
- package/drawer/Drawer.d.ts +1 -1
- package/drawer/DrawerContent.d.ts +1 -1
- package/drawer/DrawerItem.d.ts +2 -2
- package/drawer/DrawerNavigation.d.ts +1 -1
- package/drawer/context/DrawerContext.d.ts +2 -2
- package/drawer/interfaces/DrawerProps.d.ts +3 -3
- package/expansionpanel/ExpansionPanel.d.ts +1 -1
- package/expansionpanel/index.d.ts +1 -1
- package/gridlayout/GridLayout.d.ts +1 -1
- package/gridlayout/GridLayoutItem.d.ts +1 -1
- package/gridlayout/interfaces/GridLayoutProps.d.ts +2 -2
- package/index.d.mts +39 -39
- package/index.d.ts +39 -39
- package/menu/MenuProps.d.ts +2 -2
- package/menu/components/Menu.d.ts +15 -94
- package/menu/components/Menu.js +1 -1
- package/menu/components/Menu.mjs +223 -212
- package/menu/components/MenuItem.d.ts +5 -25
- package/menu/components/MenuItem.js +1 -1
- package/menu/components/MenuItem.mjs +16 -24
- package/menu/components/MenuItemArrow.d.ts +1 -16
- package/menu/components/MenuItemArrow.js +1 -1
- package/menu/components/MenuItemArrow.mjs +26 -35
- package/menu/components/MenuItemInternal.d.ts +4 -37
- package/menu/components/MenuItemInternal.js +1 -1
- package/menu/components/MenuItemInternal.mjs +174 -219
- package/menu/components/MenuItemLink.d.ts +1 -15
- package/menu/components/MenuItemLink.js +1 -1
- package/menu/components/MenuItemLink.mjs +17 -30
- package/menu/events.d.ts +5 -5
- package/menu/models/MenuItemModel.d.ts +1 -1
- package/menu/utils/DirectionHolder.js +1 -1
- package/menu/utils/DirectionHolder.mjs +1 -1
- package/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +1 -1
- package/menu/utils/hoverDelay.d.ts +1 -1
- package/menu/utils/prepareInputItemsForInternalWork.d.ts +1 -1
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +8 -8
- package/panelbar/PanelBarItem.d.ts +1 -1
- package/panelbar/interfaces/PanelBarItemHandle.d.ts +1 -1
- package/panelbar/interfaces/PanelBarSelectEventArguments.d.ts +1 -1
- package/panelbar/util.d.ts +2 -2
- package/stacklayout/StackLayout.d.ts +1 -1
- package/stepper/Step.d.ts +2 -2
- package/stepper/Stepper.d.ts +2 -2
- package/stepper/context/StepperContext.d.ts +3 -3
- package/stepper/interfaces/StepChangeEvent.d.ts +1 -1
- package/stepper/interfaces/StepFocusEvent.d.ts +1 -1
- package/stepper/interfaces/StepperChangeEvent.d.ts +1 -1
- package/stepper/interfaces/StepperFocusEvent.d.ts +1 -1
- package/stepper/interfaces/StepperOnNavigateEvent.d.ts +1 -1
- package/stepper/interfaces/StepperProps.d.ts +3 -3
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { ActionSheetItemProps } from './interfaces/ActionSheetItemProps
|
|
8
|
+
import { ActionSheetItemProps } from './interfaces/ActionSheetItemProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* Specifies the animation duration settings of the ActionSheet.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { ActionSheetChildrenProps } from './interfaces/ActionSheetChildrenProps
|
|
8
|
+
import { ActionSheetChildrenProps } from './interfaces/ActionSheetChildrenProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* @hidden
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { ActionSheetChildrenProps } from './interfaces/ActionSheetChildrenProps
|
|
8
|
+
import { ActionSheetChildrenProps } from './interfaces/ActionSheetChildrenProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* Lists the possible alignment of the ActionSheet action buttons.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { ActionSheetChildrenProps } from './interfaces/ActionSheetChildrenProps
|
|
8
|
+
import { ActionSheetChildrenProps } from './interfaces/ActionSheetChildrenProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* @hidden
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { ActionSheetItemProps } from './interfaces/ActionSheetItemProps
|
|
8
|
+
import { ActionSheetItemProps } from './interfaces/ActionSheetItemProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* The KendoReact ActionSheetItem component.
|
package/appbar/AppBar.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { AppBarProps } from './interfaces/AppBarProps
|
|
8
|
+
import { AppBarProps } from './interfaces/AppBarProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* The AppBar ref.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { AppBarSectionProps } from './interfaces/AppBarSectionProps
|
|
8
|
+
import { AppBarSectionProps } from './interfaces/AppBarSectionProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* The AppBarSection ref.
|
package/appbar/AppBarSpacer.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { AppBarSpacerProps } from './interfaces/AppBarSpacerProps
|
|
8
|
+
import { AppBarSpacerProps } from './interfaces/AppBarSpacerProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* The AppBarSpacer ref.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { BottomNavigationProps } from './BottomNavigationProps
|
|
8
|
+
import { BottomNavigationProps } from './BottomNavigationProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* Represents the Object which is passed to the [`ref`](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom)
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { BottomNavigationItemProps } from './BottomNavigationItemProps
|
|
9
|
-
import { BottomNavigationEvent, BottomNavigationSelectEvent } from './models/events
|
|
8
|
+
import { BottomNavigationItemProps } from './BottomNavigationItemProps';
|
|
9
|
+
import { BottomNavigationEvent, BottomNavigationSelectEvent } from './models/events';
|
|
10
10
|
/**
|
|
11
11
|
* Represents the props of the [KendoReact BottomNavigation component](https://www.telerik.com/kendo-react-ui/components/layout/bottomnavigation).
|
|
12
12
|
*/
|
package/card/Avatar.d.ts
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { AvatarProps } from './interfaces/AvatarProps
|
|
8
|
+
import { AvatarProps } from './interfaces/AvatarProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
export declare const Avatar: React.FunctionComponent<AvatarProps>;
|
package/card/Card.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { CardProps } from './interfaces/CardProps
|
|
9
|
-
import { CardHandle } from './interfaces/CardHandle
|
|
8
|
+
import { CardProps } from './interfaces/CardProps';
|
|
9
|
+
import { CardHandle } from './interfaces/CardHandle';
|
|
10
10
|
import * as React from 'react';
|
|
11
11
|
export declare const Card: React.ForwardRefExoticComponent<Omit<CardProps, "ref"> & React.RefAttributes<CardHandle | null>>;
|
package/card/CardActions.d.ts
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { CardActionsProps } from './interfaces/CardActionsProps
|
|
8
|
+
import { CardActionsProps } from './interfaces/CardActionsProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
export declare const CardActions: React.FunctionComponent<CardActionsProps>;
|
package/card/CardBody.d.ts
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { CardBodyProps } from './interfaces/CardBodyProps
|
|
8
|
+
import { CardBodyProps } from './interfaces/CardBodyProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
export declare const CardBody: React.FunctionComponent<CardBodyProps>;
|
package/card/CardFooter.d.ts
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { CardFooterProps } from './interfaces/CardFooterProps
|
|
8
|
+
import { CardFooterProps } from './interfaces/CardFooterProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
export declare const CardFooter: React.FunctionComponent<CardFooterProps>;
|
package/card/CardHeader.d.ts
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { CardHeaderProps } from './interfaces/CardHeaderProps
|
|
8
|
+
import { CardHeaderProps } from './interfaces/CardHeaderProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
export declare const CardHeader: React.FunctionComponent<CardHeaderProps>;
|
package/card/CardImage.d.ts
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { CardImageProps } from './interfaces/CardImageProps
|
|
8
|
+
import { CardImageProps } from './interfaces/CardImageProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
export declare const CardImage: React.FunctionComponent<CardImageProps>;
|
package/card/CardSubtitle.d.ts
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { CardSubtitleProps } from './interfaces/CardSubtitleProps
|
|
8
|
+
import { CardSubtitleProps } from './interfaces/CardSubtitleProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
export declare const CardSubtitle: React.FunctionComponent<CardSubtitleProps>;
|
package/card/CardTitle.d.ts
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { CardTitleProps } from './interfaces/CardTitleProps
|
|
8
|
+
import { CardTitleProps } from './interfaces/CardTitleProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
export declare const CardTitle: React.FunctionComponent<CardTitleProps>;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { CardProps } from './CardProps
|
|
8
|
+
import { CardProps } from './CardProps';
|
|
9
9
|
/**
|
|
10
10
|
* Represents the target(element and props) of the Card component.
|
|
11
11
|
*/
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { Offset } from '@progress/kendo-react-popup';
|
|
9
|
-
import { MenuProps } from '../menu/MenuProps
|
|
10
|
-
import { MenuCloseEvent } from '../menu/events
|
|
9
|
+
import { MenuProps } from '../menu/MenuProps';
|
|
10
|
+
import { MenuCloseEvent } from '../menu/events';
|
|
11
11
|
import * as React from 'react';
|
|
12
12
|
/**
|
|
13
13
|
* The props of the [KendoReact ContextMenu component](https://www.telerik.com/kendo-react-ui/components/layout/contextmenu).
|