@progress/kendo-react-listbox 14.4.1-develop.14 → 14.4.1-develop.15
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/ListBox.d.ts +1 -1
- package/ListBoxToolbar.d.ts +2 -2
- package/index.d.mts +3 -3
- package/index.d.ts +3 -3
- package/interfaces/ListBoxProps.d.ts +1 -1
- package/interfaces/ListBoxToolBarProps.d.ts +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +5 -5
package/ListBox.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 { ListBoxProps } from './interfaces/ListBoxProps
|
|
8
|
+
import { ListBoxProps } from './interfaces/ListBoxProps';
|
|
9
9
|
import * as React from 'react';
|
|
10
10
|
/**
|
|
11
11
|
* The ListBox ref.
|
package/ListBoxToolbar.d.ts
CHANGED
|
@@ -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 { ListBoxToolbarProps } from './interfaces/ListBoxToolBarProps
|
|
9
|
-
import { ListBoxToolbarEvent } from './interfaces/ListBoxEvents
|
|
8
|
+
import { ListBoxToolbarProps } from './interfaces/ListBoxToolBarProps';
|
|
9
|
+
import { ListBoxToolbarEvent } from './interfaces/ListBoxEvents';
|
|
10
10
|
import * as React from 'react';
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
package/index.d.mts
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { ListBoxProps } from './interfaces/ListBoxProps
|
|
8
|
+
import { ListBoxProps } from './interfaces/ListBoxProps';
|
|
9
9
|
import { ListBoxToolbar } from './ListBoxToolbar.js';
|
|
10
|
-
import { ListBoxToolbarProps } from './interfaces/ListBoxToolBarProps
|
|
10
|
+
import { ListBoxToolbarProps } from './interfaces/ListBoxToolBarProps';
|
|
11
11
|
import { processListBoxData, moveItem, processListBoxDragAndDrop } from './utils.js';
|
|
12
|
-
import { ListBoxDragEvent, ListBoxItemClickEvent, ListBoxKeyDownEvent, ListBoxToolbarClickEvent, ListBoxEvent, ListBoxItemSelectEvent, ListBoxItemNavigateEvent } from './interfaces/ListBoxEvents
|
|
12
|
+
import { ListBoxDragEvent, ListBoxItemClickEvent, ListBoxKeyDownEvent, ListBoxToolbarClickEvent, ListBoxEvent, ListBoxItemSelectEvent, ListBoxItemNavigateEvent } from './interfaces/ListBoxEvents';
|
|
13
13
|
/**
|
|
14
14
|
* Represents the KendoReact ListBox Component.
|
|
15
15
|
*/
|
package/index.d.ts
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { ListBoxProps } from './interfaces/ListBoxProps
|
|
8
|
+
import { ListBoxProps } from './interfaces/ListBoxProps';
|
|
9
9
|
import { ListBoxToolbar } from './ListBoxToolbar.js';
|
|
10
|
-
import { ListBoxToolbarProps } from './interfaces/ListBoxToolBarProps
|
|
10
|
+
import { ListBoxToolbarProps } from './interfaces/ListBoxToolBarProps';
|
|
11
11
|
import { processListBoxData, moveItem, processListBoxDragAndDrop } from './utils.js';
|
|
12
|
-
import { ListBoxDragEvent, ListBoxItemClickEvent, ListBoxKeyDownEvent, ListBoxToolbarClickEvent, ListBoxEvent, ListBoxItemSelectEvent, ListBoxItemNavigateEvent } from './interfaces/ListBoxEvents
|
|
12
|
+
import { ListBoxDragEvent, ListBoxItemClickEvent, ListBoxKeyDownEvent, ListBoxToolbarClickEvent, ListBoxEvent, ListBoxItemSelectEvent, ListBoxItemNavigateEvent } from './interfaces/ListBoxEvents';
|
|
13
13
|
/**
|
|
14
14
|
* Represents the KendoReact ListBox Component.
|
|
15
15
|
*/
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { ComponentType } from 'react';
|
|
9
|
-
import { ListBoxItemClickEvent, ListBoxKeyDownEvent, ListBoxDragEvent, ListBoxDragLeaveEvent, ListBoxItemSelectEvent, ListBoxItemNavigateEvent } from './ListBoxEvents
|
|
9
|
+
import { ListBoxItemClickEvent, ListBoxKeyDownEvent, ListBoxDragEvent, ListBoxDragLeaveEvent, ListBoxItemSelectEvent, ListBoxItemNavigateEvent } from './ListBoxEvents';
|
|
10
10
|
import { toolbarPosition } from './Enums.js';
|
|
11
11
|
/**
|
|
12
12
|
* Represents the props of the [KendoReact ListBox component](https://www.telerik.com/kendo-react-ui/components/listbox).
|
|
@@ -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 { ListBoxToolbarClickEvent } from './ListBoxEvents
|
|
8
|
+
import { ListBoxToolbarClickEvent } from './ListBoxEvents';
|
|
9
9
|
export interface ListBoxToolbarProps {
|
|
10
10
|
/**
|
|
11
11
|
* Sets the tools of the ListBoxToolbar. By default, the ListBoxToolbar renders no tools.
|
package/package-metadata.mjs
CHANGED
|
@@ -6,7 +6,7 @@ export const packageMetadata = Object.freeze({
|
|
|
6
6
|
productName: 'KendoReact',
|
|
7
7
|
productCode: 'KENDOUIREACT',
|
|
8
8
|
productCodes: ['KENDOUIREACT'],
|
|
9
|
-
publishDate:
|
|
10
|
-
version: '14.4.1-develop.
|
|
9
|
+
publishDate: 1777447727,
|
|
10
|
+
version: '14.4.1-develop.15',
|
|
11
11
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/components/my-license/'
|
|
12
12
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-listbox",
|
|
3
|
-
"version": "14.4.1-develop.
|
|
3
|
+
"version": "14.4.1-develop.15",
|
|
4
4
|
"description": "React ListBox enables you to display a list of items and manage the data between multiple lists. KendoReact ListBox package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@progress/kendo-licensing": "^1.7.2",
|
|
29
|
-
"@progress/kendo-react-buttons": "14.4.1-develop.
|
|
30
|
-
"@progress/kendo-react-common": "14.4.1-develop.
|
|
31
|
-
"@progress/kendo-react-intl": "14.4.1-develop.
|
|
29
|
+
"@progress/kendo-react-buttons": "14.4.1-develop.15",
|
|
30
|
+
"@progress/kendo-react-common": "14.4.1-develop.15",
|
|
31
|
+
"@progress/kendo-react-intl": "14.4.1-develop.15",
|
|
32
32
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
33
33
|
"react": "^18.0.0 || ^19.0.0",
|
|
34
34
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"package": {
|
|
57
57
|
"productName": "KendoReact",
|
|
58
58
|
"productCode": "KENDOUIREACT",
|
|
59
|
-
"publishDate":
|
|
59
|
+
"publishDate": 1777447727,
|
|
60
60
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
61
61
|
}
|
|
62
62
|
},
|