@progress/kendo-react-dropdowns 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/AutoComplete/AutoComplete.d.ts +1 -1
- package/AutoComplete/AutoComplete.js +1 -1
- package/AutoComplete/AutoComplete.mjs +210 -210
- package/AutoComplete/AutoCompleteProps.d.ts +1 -1
- package/ComboBox/ComboBox.d.ts +1 -1
- package/ComboBox/ComboBox.js +1 -1
- package/ComboBox/ComboBox.mjs +201 -201
- package/ComboBox/ComboBoxProps.d.ts +1 -1
- package/DropDownList/DropDownList.d.ts +1 -1
- package/DropDownList/DropDownList.js +1 -1
- package/DropDownList/DropDownList.mjs +316 -316
- package/DropDownList/DropDownListProps.d.ts +1 -1
- package/DropDownList/models/index.d.ts +1 -1
- package/DropDownTree/DropDownTree.d.ts +1 -1
- package/DropDownTree/DropDownTreeProps.d.ts +1 -1
- package/DropDownTree/ListNoData.d.ts +1 -1
- package/MultiColumnComboBox/MultiColumnComboBox.d.ts +1 -1
- package/MultiSelect/MultiSelect.d.ts +1 -1
- package/MultiSelect/MultiSelect.js +1 -1
- package/MultiSelect/MultiSelect.mjs +51 -51
- package/MultiSelect/MultiSelectProps.d.ts +1 -1
- package/MultiSelectTree/MultiSelectTree.d.ts +1 -1
- package/MultiSelectTree/MultiSelectTreeProps.d.ts +1 -1
- package/MultiSelectTree/utils.d.ts +1 -1
- package/common/events.d.ts +1 -1
- package/common/settings.d.ts +1 -1
- package/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/index.d.mts +6 -6
- package/index.d.ts +6 -6
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
package/index.d.mts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
9
9
|
import { DropDownList, DropDownListPropsContext, dropDownListDefaultProps } from './DropDownList/DropDownList.js';
|
|
10
|
-
import { DropDownListProps, DropDownListFilterChangeEvent, DropDownListChangeEvent, DropDownListOpenEvent, DropDownListCloseEvent, DropDownListFocusEvent, DropDownListBlurEvent, DropDownListPageChangeEvent } from './DropDownList/DropDownListProps
|
|
10
|
+
import { DropDownListProps, DropDownListFilterChangeEvent, DropDownListChangeEvent, DropDownListOpenEvent, DropDownListCloseEvent, DropDownListFocusEvent, DropDownListBlurEvent, DropDownListPageChangeEvent } from './DropDownList/DropDownListProps';
|
|
11
11
|
import { Page, VirtualizationSettings, DropDownsPopupSettings, Suggestion } from './common/settings.js';
|
|
12
12
|
import { default as ListItem, ListItemProps } from './common/ListItem.js';
|
|
13
13
|
import { default as List, ListProps } from './common/List.js';
|
|
@@ -17,17 +17,17 @@ import { default as ListFilter } from './common/ListFilter.js';
|
|
|
17
17
|
import { messages as dropdownsMessages, nodata } from './messages/index.js';
|
|
18
18
|
import { scrollToItem, getItemValue, findByFieldValue } from './common/utils.js';
|
|
19
19
|
import { ComboBox, ComboBoxPropsContext, ComboBoxHandle, ComboBoxWithoutContext } from './ComboBox/ComboBox.js';
|
|
20
|
-
import { ComboBoxProps, ComboBoxFilterChangeEvent, ComboBoxChangeEvent, ComboBoxOpenEvent, ComboBoxCloseEvent, ComboBoxFocusEvent, ComboBoxBlurEvent, ComboBoxPageChangeEvent } from './ComboBox/ComboBoxProps
|
|
20
|
+
import { ComboBoxProps, ComboBoxFilterChangeEvent, ComboBoxChangeEvent, ComboBoxOpenEvent, ComboBoxCloseEvent, ComboBoxFocusEvent, ComboBoxBlurEvent, ComboBoxPageChangeEvent } from './ComboBox/ComboBoxProps';
|
|
21
21
|
import { AutoComplete, AutoCompleteHandle, AutoCompletePropsContext, AutoCompleteWithoutContext } from './AutoComplete/AutoComplete.js';
|
|
22
|
-
import { AutoCompleteProps, AutoCompleteChangeEvent, AutoCompleteOpenEvent, AutoCompleteCloseEvent, AutoCompleteFocusEvent, AutoCompleteBlurEvent } from './AutoComplete/AutoCompleteProps
|
|
22
|
+
import { AutoCompleteProps, AutoCompleteChangeEvent, AutoCompleteOpenEvent, AutoCompleteCloseEvent, AutoCompleteFocusEvent, AutoCompleteBlurEvent } from './AutoComplete/AutoCompleteProps';
|
|
23
23
|
import { MultiSelect, MultiSelectHandle, MultiSelectPropsContext, MultiSelectWithoutContext } from './MultiSelect/MultiSelect.js';
|
|
24
|
-
import { MultiSelectProps, MultiSelectChangeEvent, MultiSelectPageChangeEvent, MultiSelectFilterChangeEvent, MultiSelectOpenEvent, MultiSelectCloseEvent, MultiSelectFocusEvent, MultiSelectBlurEvent } from './MultiSelect/MultiSelectProps
|
|
24
|
+
import { MultiSelectProps, MultiSelectChangeEvent, MultiSelectPageChangeEvent, MultiSelectFilterChangeEvent, MultiSelectOpenEvent, MultiSelectCloseEvent, MultiSelectFocusEvent, MultiSelectBlurEvent } from './MultiSelect/MultiSelectProps';
|
|
25
25
|
import { default as TagList, TagData as MultiSelectTagData, TagData } from './MultiSelect/TagList.js';
|
|
26
26
|
import { MultiColumnComboBox, MultiColumnComboBoxPropsContext, MultiColumnComboBoxProps, MultiColumnComboBoxHandle, MultiColumnComboBoxColumn, MultiColumnComboBoxChangeEvent } from './MultiColumnComboBox/MultiColumnComboBox.js';
|
|
27
27
|
import { DropDownTree, DropDownTreePropsContext } from './DropDownTree/DropDownTree.js';
|
|
28
28
|
import { MultiSelectTree, MultiSelectTreePropsContext } from './MultiSelectTree/MultiSelectTree.js';
|
|
29
|
-
export * from './DropDownTree/DropDownTreeProps
|
|
30
|
-
export * from './MultiSelectTree/MultiSelectTreeProps
|
|
29
|
+
export * from './DropDownTree/DropDownTreeProps';
|
|
30
|
+
export * from './MultiSelectTree/MultiSelectTreeProps';
|
|
31
31
|
export * from './MultiSelectTree/utils.js';
|
|
32
32
|
export * from './common/GroupStickyHeader.js';
|
|
33
33
|
export * from './common/ListGroupItem.js';
|
package/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
9
9
|
import { DropDownList, DropDownListPropsContext, dropDownListDefaultProps } from './DropDownList/DropDownList.js';
|
|
10
|
-
import { DropDownListProps, DropDownListFilterChangeEvent, DropDownListChangeEvent, DropDownListOpenEvent, DropDownListCloseEvent, DropDownListFocusEvent, DropDownListBlurEvent, DropDownListPageChangeEvent } from './DropDownList/DropDownListProps
|
|
10
|
+
import { DropDownListProps, DropDownListFilterChangeEvent, DropDownListChangeEvent, DropDownListOpenEvent, DropDownListCloseEvent, DropDownListFocusEvent, DropDownListBlurEvent, DropDownListPageChangeEvent } from './DropDownList/DropDownListProps';
|
|
11
11
|
import { Page, VirtualizationSettings, DropDownsPopupSettings, Suggestion } from './common/settings.js';
|
|
12
12
|
import { default as ListItem, ListItemProps } from './common/ListItem.js';
|
|
13
13
|
import { default as List, ListProps } from './common/List.js';
|
|
@@ -17,17 +17,17 @@ import { default as ListFilter } from './common/ListFilter.js';
|
|
|
17
17
|
import { messages as dropdownsMessages, nodata } from './messages/index.js';
|
|
18
18
|
import { scrollToItem, getItemValue, findByFieldValue } from './common/utils.js';
|
|
19
19
|
import { ComboBox, ComboBoxPropsContext, ComboBoxHandle, ComboBoxWithoutContext } from './ComboBox/ComboBox.js';
|
|
20
|
-
import { ComboBoxProps, ComboBoxFilterChangeEvent, ComboBoxChangeEvent, ComboBoxOpenEvent, ComboBoxCloseEvent, ComboBoxFocusEvent, ComboBoxBlurEvent, ComboBoxPageChangeEvent } from './ComboBox/ComboBoxProps
|
|
20
|
+
import { ComboBoxProps, ComboBoxFilterChangeEvent, ComboBoxChangeEvent, ComboBoxOpenEvent, ComboBoxCloseEvent, ComboBoxFocusEvent, ComboBoxBlurEvent, ComboBoxPageChangeEvent } from './ComboBox/ComboBoxProps';
|
|
21
21
|
import { AutoComplete, AutoCompleteHandle, AutoCompletePropsContext, AutoCompleteWithoutContext } from './AutoComplete/AutoComplete.js';
|
|
22
|
-
import { AutoCompleteProps, AutoCompleteChangeEvent, AutoCompleteOpenEvent, AutoCompleteCloseEvent, AutoCompleteFocusEvent, AutoCompleteBlurEvent } from './AutoComplete/AutoCompleteProps
|
|
22
|
+
import { AutoCompleteProps, AutoCompleteChangeEvent, AutoCompleteOpenEvent, AutoCompleteCloseEvent, AutoCompleteFocusEvent, AutoCompleteBlurEvent } from './AutoComplete/AutoCompleteProps';
|
|
23
23
|
import { MultiSelect, MultiSelectHandle, MultiSelectPropsContext, MultiSelectWithoutContext } from './MultiSelect/MultiSelect.js';
|
|
24
|
-
import { MultiSelectProps, MultiSelectChangeEvent, MultiSelectPageChangeEvent, MultiSelectFilterChangeEvent, MultiSelectOpenEvent, MultiSelectCloseEvent, MultiSelectFocusEvent, MultiSelectBlurEvent } from './MultiSelect/MultiSelectProps
|
|
24
|
+
import { MultiSelectProps, MultiSelectChangeEvent, MultiSelectPageChangeEvent, MultiSelectFilterChangeEvent, MultiSelectOpenEvent, MultiSelectCloseEvent, MultiSelectFocusEvent, MultiSelectBlurEvent } from './MultiSelect/MultiSelectProps';
|
|
25
25
|
import { default as TagList, TagData as MultiSelectTagData, TagData } from './MultiSelect/TagList.js';
|
|
26
26
|
import { MultiColumnComboBox, MultiColumnComboBoxPropsContext, MultiColumnComboBoxProps, MultiColumnComboBoxHandle, MultiColumnComboBoxColumn, MultiColumnComboBoxChangeEvent } from './MultiColumnComboBox/MultiColumnComboBox.js';
|
|
27
27
|
import { DropDownTree, DropDownTreePropsContext } from './DropDownTree/DropDownTree.js';
|
|
28
28
|
import { MultiSelectTree, MultiSelectTreePropsContext } from './MultiSelectTree/MultiSelectTree.js';
|
|
29
|
-
export * from './DropDownTree/DropDownTreeProps
|
|
30
|
-
export * from './MultiSelectTree/MultiSelectTreeProps
|
|
29
|
+
export * from './DropDownTree/DropDownTreeProps';
|
|
30
|
+
export * from './MultiSelectTree/MultiSelectTreeProps';
|
|
31
31
|
export * from './MultiSelectTree/utils.js';
|
|
32
32
|
export * from './common/GroupStickyHeader.js';
|
|
33
33
|
export * from './common/ListGroupItem.js';
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-dropdowns",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-dropdowns",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1777909917,version:"14.5.0-develop.1",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"});exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -6,8 +6,8 @@ export const packageMetadata = Object.freeze({
|
|
|
6
6
|
productName: 'KendoReact',
|
|
7
7
|
productCode: 'KENDOUIREACT',
|
|
8
8
|
productCodes: ['KENDOUIREACT'],
|
|
9
|
-
publishDate:
|
|
10
|
-
version: '14.
|
|
9
|
+
publishDate: 1777909917,
|
|
10
|
+
version: '14.5.0-develop.1',
|
|
11
11
|
licensingDocsUrl:
|
|
12
12
|
'https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
13
13
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-dropdowns",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.5.0-develop.1",
|
|
4
4
|
"description": "React DropDowns offer an interface for users to select different items from a list and more. KendoReact Dropdowns package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@progress/kendo-licensing": "^1.7.2",
|
|
29
|
-
"@progress/kendo-react-buttons": "14.
|
|
30
|
-
"@progress/kendo-react-common": "14.
|
|
31
|
-
"@progress/kendo-react-inputs": "14.
|
|
32
|
-
"@progress/kendo-react-intl": "14.
|
|
33
|
-
"@progress/kendo-react-labels": "14.
|
|
34
|
-
"@progress/kendo-react-layout": "14.
|
|
35
|
-
"@progress/kendo-react-popup": "14.
|
|
36
|
-
"@progress/kendo-react-treeview": "14.
|
|
29
|
+
"@progress/kendo-react-buttons": "14.5.0-develop.1",
|
|
30
|
+
"@progress/kendo-react-common": "14.5.0-develop.1",
|
|
31
|
+
"@progress/kendo-react-inputs": "14.5.0-develop.1",
|
|
32
|
+
"@progress/kendo-react-intl": "14.5.0-develop.1",
|
|
33
|
+
"@progress/kendo-react-labels": "14.5.0-develop.1",
|
|
34
|
+
"@progress/kendo-react-layout": "14.5.0-develop.1",
|
|
35
|
+
"@progress/kendo-react-popup": "14.5.0-develop.1",
|
|
36
|
+
"@progress/kendo-react-treeview": "14.5.0-develop.1",
|
|
37
37
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
38
38
|
"react": "^18.0.0 || ^19.0.0",
|
|
39
39
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"package": {
|
|
83
83
|
"productName": "KendoReact",
|
|
84
84
|
"productCode": "KENDOUIREACT",
|
|
85
|
-
"publishDate":
|
|
85
|
+
"publishDate": 1777909917,
|
|
86
86
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"
|
|
87
87
|
}
|
|
88
88
|
},
|