@progress/kendo-react-layout 14.4.1-develop.8 → 14.4.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 +1 -1
- package/menu/components/MenuItem.d.ts +1 -1
- package/menu/components/MenuItemInternal.d.ts +2 -2
- package/menu/events.d.ts +1 -1
- package/menu/models/MenuItemModel.d.ts +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,9 +5,9 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { StepProps } from '../interfaces/StepProps
|
|
9
|
-
import { StepChangeEvent } from '../interfaces/StepChangeEvent
|
|
10
|
-
import { StepFocusEvent } from '../interfaces/StepFocusEvent
|
|
8
|
+
import { StepProps } from '../interfaces/StepProps';
|
|
9
|
+
import { StepChangeEvent } from '../interfaces/StepChangeEvent';
|
|
10
|
+
import { StepFocusEvent } from '../interfaces/StepFocusEvent';
|
|
11
11
|
import { SVGIcon } from '@progress/kendo-react-common';
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
/** @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 { StepHandle } from './StepHandle
|
|
8
|
+
import { StepHandle } from './StepHandle';
|
|
9
9
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `onChange` Step event.
|
|
@@ -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 { StepHandle } from './StepHandle
|
|
8
|
+
import { StepHandle } from './StepHandle';
|
|
9
9
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `onFocus` Step event.
|
|
@@ -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 { StepperHandle } from '../interfaces/StepperHandle
|
|
8
|
+
import { StepperHandle } from '../interfaces/StepperHandle';
|
|
9
9
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `onChange` Stepper event.
|
|
@@ -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 { StepperHandle } from '../interfaces/StepperHandle
|
|
8
|
+
import { StepperHandle } from '../interfaces/StepperHandle';
|
|
9
9
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
10
10
|
/**
|
|
11
11
|
* The arguments for the `onFocus` Stepper event.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
9
|
-
import { StepperHandle } from './../interfaces/StepperHandle
|
|
9
|
+
import { StepperHandle } from './../interfaces/StepperHandle';
|
|
10
10
|
/**
|
|
11
11
|
* The `StepperOnNavigateEvent` event.
|
|
12
12
|
*/
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { StepProps } from './StepProps
|
|
9
|
-
import { StepperChangeEvent } from './StepperChangeEvent
|
|
10
|
-
import { StepperFocusEvent } from './StepperFocusEvent
|
|
8
|
+
import { StepProps } from './StepProps';
|
|
9
|
+
import { StepperChangeEvent } from './StepperChangeEvent';
|
|
10
|
+
import { StepperFocusEvent } from './StepperFocusEvent';
|
|
11
11
|
import { SVGIcon } from '@progress/kendo-react-common';
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
/**
|