@progress/kendo-react-dropdowns 5.12.1 → 5.13.0-dev.202303301815
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/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/dist/es/ComboBox/ComboBox.d.ts +1 -2
- package/dist/es/ComboBox/ComboBox.js +3 -5
- package/dist/es/DropDownList/DropDownList.d.ts +7 -0
- package/dist/es/DropDownList/DropDownList.js +104 -26
- package/dist/es/DropDownList/DropDownListProps.d.ts +8 -0
- package/dist/es/common/constants.d.ts +4 -0
- package/dist/es/common/constants.js +4 -0
- package/dist/es/main.d.ts +13 -7
- package/dist/es/main.js +13 -5
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/ComboBox/ComboBox.d.ts +1 -2
- package/dist/npm/ComboBox/ComboBox.js +8 -10
- package/dist/npm/DropDownList/DropDownList.d.ts +7 -0
- package/dist/npm/DropDownList/DropDownList.js +102 -24
- package/dist/npm/DropDownList/DropDownListProps.d.ts +8 -0
- package/dist/npm/common/constants.d.ts +4 -0
- package/dist/npm/common/constants.js +7 -0
- package/dist/npm/main.d.ts +13 -7
- package/dist/npm/main.js +22 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-react-dropdowns.js +1 -1
- package/package.json +13 -13
|
@@ -43,6 +43,8 @@ var package_metadata_1 = require("../package-metadata");
|
|
|
43
43
|
var kendo_react_buttons_1 = require("@progress/kendo-react-buttons");
|
|
44
44
|
var kendo_react_intl_1 = require("@progress/kendo-react-intl");
|
|
45
45
|
var messages_1 = require("../messages");
|
|
46
|
+
var constants_1 = require("../common/constants");
|
|
47
|
+
var kendo_react_layout_1 = require("@progress/kendo-react-layout");
|
|
46
48
|
var VALIDATION_MESSAGE = 'Please select a value from the list!';
|
|
47
49
|
var sizeMap = kendo_react_common_1.kendoThemeMaps.sizeMap, roundedMap = kendo_react_common_1.kendoThemeMaps.roundedMap;
|
|
48
50
|
/**
|
|
@@ -315,6 +317,13 @@ var DropDownListWithoutContext = /** @class */ (function (_super) {
|
|
|
315
317
|
if (_this._filterInput) {
|
|
316
318
|
_this.focusElement(_this._filterInput);
|
|
317
319
|
}
|
|
320
|
+
if (_this.props.adaptive) {
|
|
321
|
+
setTimeout(function () {
|
|
322
|
+
if (_this._filterInput) {
|
|
323
|
+
_this.focusElement(_this._filterInput);
|
|
324
|
+
}
|
|
325
|
+
}, 300);
|
|
326
|
+
}
|
|
318
327
|
};
|
|
319
328
|
_this.onPopupClosed = function () {
|
|
320
329
|
if (_this.state.focused) {
|
|
@@ -335,6 +344,17 @@ var DropDownListWithoutContext = /** @class */ (function (_super) {
|
|
|
335
344
|
(0, kendo_react_common_2.validatePackage)(package_metadata_1.packageMetadata);
|
|
336
345
|
return _this;
|
|
337
346
|
}
|
|
347
|
+
Object.defineProperty(DropDownListWithoutContext.prototype, "document", {
|
|
348
|
+
get: function () {
|
|
349
|
+
if (!kendo_react_common_2.canUseDOM) {
|
|
350
|
+
return;
|
|
351
|
+
}
|
|
352
|
+
// useful only for user actions
|
|
353
|
+
return (this.element && this.element.ownerDocument) || document;
|
|
354
|
+
},
|
|
355
|
+
enumerable: false,
|
|
356
|
+
configurable: true
|
|
357
|
+
});
|
|
338
358
|
Object.defineProperty(DropDownListWithoutContext.prototype, "element", {
|
|
339
359
|
/**
|
|
340
360
|
* @hidden
|
|
@@ -464,6 +484,7 @@ var DropDownListWithoutContext = /** @class */ (function (_super) {
|
|
|
464
484
|
this.base.scrollToVirtualItem(virtual, selectedItemIndex);
|
|
465
485
|
}
|
|
466
486
|
else if (opening && !virtual) {
|
|
487
|
+
this.onPopupOpened();
|
|
467
488
|
this.base.scrollToItem(selectedItemIndex);
|
|
468
489
|
}
|
|
469
490
|
else if (opened && prevOpened && selectedItem_1 && selectedItemChanged && !this._navigated) {
|
|
@@ -485,8 +506,20 @@ var DropDownListWithoutContext = /** @class */ (function (_super) {
|
|
|
485
506
|
* @hidden
|
|
486
507
|
*/
|
|
487
508
|
DropDownListWithoutContext.prototype.componentDidMount = function () {
|
|
509
|
+
var _a;
|
|
510
|
+
this.observerResize = kendo_react_common_2.canUseDOM && window.ResizeObserver && new window.ResizeObserver(this.calculateMedia.bind(this));
|
|
488
511
|
this.base.didMount();
|
|
489
512
|
this.setValidity();
|
|
513
|
+
if (((_a = this.document) === null || _a === void 0 ? void 0 : _a.body) && this.observerResize) {
|
|
514
|
+
this.observerResize.observe(this.document.body);
|
|
515
|
+
}
|
|
516
|
+
};
|
|
517
|
+
/** @hidden */
|
|
518
|
+
DropDownListWithoutContext.prototype.componentWillUnmount = function () {
|
|
519
|
+
var _a;
|
|
520
|
+
if (((_a = this.document) === null || _a === void 0 ? void 0 : _a.body) && this.observerResize) {
|
|
521
|
+
this.observerResize.disconnect();
|
|
522
|
+
}
|
|
490
523
|
};
|
|
491
524
|
/**
|
|
492
525
|
* @hidden
|
|
@@ -495,48 +528,52 @@ var DropDownListWithoutContext = /** @class */ (function (_super) {
|
|
|
495
528
|
var _a;
|
|
496
529
|
var _this = this;
|
|
497
530
|
var btnAriaLabel = (0, kendo_react_intl_1.provideLocalizationService)(this).toLanguageString(messages_1.dropDownListArrowBtnAriaLabel, messages_1.messages[messages_1.dropDownListArrowBtnAriaLabel]);
|
|
498
|
-
var _b = this.props, style = _b.style, className = _b.className, label = _b.label, dir = _b.dir, virtual = _b.virtual, size = _b.size, rounded = _b.rounded, fillMode = _b.fillMode;
|
|
531
|
+
var _b = this.props, style = _b.style, className = _b.className, label = _b.label, dir = _b.dir, virtual = _b.virtual, size = _b.size, rounded = _b.rounded, fillMode = _b.fillMode, adaptive = _b.adaptive;
|
|
532
|
+
var _c = this.state.windowWidth, windowWidth = _c === void 0 ? 0 : _c;
|
|
499
533
|
var opened = this.props.opened !== undefined ? this.props.opened : this.state.opened;
|
|
500
534
|
var value = this.value;
|
|
501
535
|
var text = (0, utils_1.getItemValue)(value, this.props.textField);
|
|
502
536
|
var isValid = !this.validityStyles || this.validity.valid;
|
|
503
537
|
var base = this.base;
|
|
504
538
|
var vs = base.vs;
|
|
539
|
+
var renderAdaptive = windowWidth <= constants_1.MOBILE_MEDIUM_DEVISE && adaptive;
|
|
505
540
|
vs.enabled = virtual !== undefined;
|
|
506
541
|
if (virtual !== undefined) {
|
|
507
542
|
base.vs.skip = virtual.skip;
|
|
508
543
|
base.vs.total = virtual.total;
|
|
509
544
|
base.vs.pageSize = virtual.pageSize;
|
|
510
545
|
}
|
|
511
|
-
var
|
|
546
|
+
var _d = this.props, dataItemKey = _d.dataItemKey, _e = _d.data, data = _e === void 0 ? [] : _e, disabled = _d.disabled, tabIndex = _d.tabIndex, loading = _d.loading, iconClassName = _d.iconClassName, valueRender = _d.valueRender;
|
|
512
547
|
var focused = this.state.focused;
|
|
513
548
|
var selectedIndex = data.findIndex(function (i) { return (0, utils_1.areSame)(i, value, dataItemKey); });
|
|
514
549
|
var valueDefaultRendering = (React.createElement("span", { id: this._inputId, className: "k-input-inner" },
|
|
515
550
|
React.createElement("span", { className: "k-input-value-text" }, text)));
|
|
516
551
|
var valueElement = valueRender !== undefined ?
|
|
517
552
|
valueRender.call(undefined, valueDefaultRendering, value) : valueDefaultRendering;
|
|
518
|
-
var dropdownlist = (React.createElement(
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
553
|
+
var dropdownlist = (React.createElement(React.Fragment, null,
|
|
554
|
+
React.createElement("span", { ref: this.componentRef, className: (0, kendo_react_common_1.classNames)('k-dropdownlist k-picker', className, (_a = {},
|
|
555
|
+
_a["k-picker-".concat(sizeMap[size] || size)] = size,
|
|
556
|
+
_a["k-rounded-".concat(roundedMap[rounded] || rounded)] = rounded,
|
|
557
|
+
_a["k-picker-".concat(fillMode)] = fillMode,
|
|
558
|
+
_a['k-focus'] = focused,
|
|
559
|
+
_a['k-disabled'] = disabled,
|
|
560
|
+
_a['k-invalid'] = !isValid,
|
|
561
|
+
_a['k-loading'] = loading,
|
|
562
|
+
_a['k-required'] = this.required,
|
|
563
|
+
_a)), style: !label
|
|
564
|
+
? style
|
|
565
|
+
: __assign(__assign({}, style), { width: undefined }), dir: dir, onMouseDown: opened ? function (event) {
|
|
566
|
+
if (event.target.nodeName !== 'INPUT') {
|
|
567
|
+
_this.focusElement(_this.base.wrapper);
|
|
568
|
+
event.preventDefault();
|
|
569
|
+
}
|
|
570
|
+
} : undefined, onFocus: this.handleFocus, onBlur: this.handleBlur, tabIndex: (0, kendo_react_common_1.getTabIndex)(tabIndex, disabled), accessKey: this.props.accessKey, onKeyDown: this.handleKeyDown, onKeyPress: this.handleKeyPress, onClick: disabled ? undefined : this.handleWrapperClick, role: 'combobox', "aria-required": this.required, "aria-disabled": disabled || undefined, "aria-haspopup": 'listbox', "aria-expanded": opened || false, "aria-owns": this.base.listBoxId, "aria-activedescendant": opened ? ('option-' + this.base.guid + '-' + (selectedIndex + (virtual ? virtual.skip : 0))) : undefined, "aria-label": this.props.ariaLabel || this.props.label, "aria-labelledby": this.props.ariaLabelledBy, "aria-describedby": this.props.ariaDescribedBy || this._inputId, id: this.props.id, title: this.props.title },
|
|
571
|
+
valueElement,
|
|
572
|
+
loading && React.createElement(kendo_react_common_1.IconWrap, { className: "k-input-loading-icon", name: 'loading' }),
|
|
573
|
+
React.createElement(kendo_react_buttons_1.Button, { tabIndex: -1, type: "button", "aria-label": btnAriaLabel, "aria-hidden": true, size: size, fillMode: fillMode, iconClass: iconClassName, className: "k-input-button", rounded: null, themeColor: 'base', icon: !iconClassName ? 'caret-alt-down' : undefined, svgIcon: !iconClassName ? kendo_svg_icons_1.caretAltDownIcon : this.props.svgIcon, onMouseDown: function (e) { return _this.state.focused && e.preventDefault(); } }),
|
|
574
|
+
this.dummySelect(value),
|
|
575
|
+
!renderAdaptive && this.renderListContainer()),
|
|
576
|
+
renderAdaptive && this.renderAdaptiveListContainer()));
|
|
540
577
|
return label ? (React.createElement(kendo_react_labels_1.FloatingLabel, { label: label, editorValue: text, editorValid: isValid, editorDisabled: this.props.disabled, style: { width: style ? style.width : undefined }, children: dropdownlist })) : dropdownlist;
|
|
541
578
|
};
|
|
542
579
|
/**
|
|
@@ -558,6 +595,39 @@ var DropDownListWithoutContext = /** @class */ (function (_super) {
|
|
|
558
595
|
}
|
|
559
596
|
this.applyState(state);
|
|
560
597
|
};
|
|
598
|
+
DropDownListWithoutContext.prototype.renderAdaptiveListContainer = function () {
|
|
599
|
+
var _a;
|
|
600
|
+
var _this = this;
|
|
601
|
+
var _b = this.state.windowWidth, windowWidth = _b === void 0 ? 0 : _b;
|
|
602
|
+
var _c = this.props, header = _c.header, footer = _c.footer, size = _c.size, adaptiveTitle = _c.adaptiveTitle;
|
|
603
|
+
var opened = this.props.opened !== undefined ? this.props.opened : this.state.opened;
|
|
604
|
+
var actionSheetProps = {
|
|
605
|
+
navigatable: false,
|
|
606
|
+
navigatableElements: [],
|
|
607
|
+
expand: opened,
|
|
608
|
+
animation: true,
|
|
609
|
+
onClose: function (event) { return _this.handleWrapperClick(event); },
|
|
610
|
+
animationStyles: windowWidth <= constants_1.MOBILE_SMALL_DEVISE ? { top: 0, width: '100%', height: '100%' } : undefined,
|
|
611
|
+
className: windowWidth <= constants_1.MOBILE_SMALL_DEVISE
|
|
612
|
+
? 'k-adaptive-actionsheet k-actionsheet-fullscreen'
|
|
613
|
+
: 'k-adaptive-actionsheet k-actionsheet-bottom'
|
|
614
|
+
};
|
|
615
|
+
return (React.createElement(React.Fragment, null,
|
|
616
|
+
React.createElement(kendo_react_layout_1.ActionSheet, __assign({}, actionSheetProps),
|
|
617
|
+
React.createElement(kendo_react_layout_1.ActionSheetHeader, { className: 'k-text-center' },
|
|
618
|
+
React.createElement("div", { className: "k-actionsheet-titlebar-group k-hbox" },
|
|
619
|
+
React.createElement("div", { className: "k-actionsheet-title" },
|
|
620
|
+
React.createElement("div", null, adaptiveTitle)),
|
|
621
|
+
React.createElement("div", { className: "k-actionsheet-actions" },
|
|
622
|
+
React.createElement(kendo_react_buttons_1.Button, { tabIndex: 0, "aria-label": "Cancel", "aria-disabled": "false", type: "button", fillMode: "flat", onClick: this.handleWrapperClick, icon: 'x', svgIcon: kendo_svg_icons_1.xIcon }))),
|
|
623
|
+
React.createElement("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter" }, this.renderListFilter())),
|
|
624
|
+
React.createElement(kendo_react_layout_1.ActionSheetContent, { className: '!k-overflow-hidden' },
|
|
625
|
+
header && React.createElement("div", { className: "k-list-header" }, header),
|
|
626
|
+
React.createElement("div", { className: (0, kendo_react_common_1.classNames)('k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)) },
|
|
627
|
+
this.renderDefaultItem(),
|
|
628
|
+
this.renderList()),
|
|
629
|
+
footer && React.createElement("div", { className: "k-list-footer" }, footer)))));
|
|
630
|
+
};
|
|
561
631
|
DropDownListWithoutContext.prototype.focusedIndex = function () {
|
|
562
632
|
var filterText = (0, utils_1.isPresent)(this.props.filter) ? this.props.filter : this.state.text;
|
|
563
633
|
var _a = this.props, _b = _a.data, data = _b === void 0 ? [] : _b, _c = _a.virtual, virtual = _c === void 0 ? { skip: 0 } : _c, dataItemKey = _a.dataItemKey, textField = _a.textField, focusedItemIndex = _a.focusedItemIndex;
|
|
@@ -592,6 +662,14 @@ var DropDownListWithoutContext = /** @class */ (function (_super) {
|
|
|
592
662
|
this.base.applyState(state);
|
|
593
663
|
this._valueDuringOnChange = undefined;
|
|
594
664
|
};
|
|
665
|
+
DropDownListWithoutContext.prototype.calculateMedia = function (entries) {
|
|
666
|
+
for (var _i = 0, entries_1 = entries; _i < entries_1.length; _i++) {
|
|
667
|
+
var entry = entries_1[_i];
|
|
668
|
+
this.setState({ windowWidth: entry.target.clientWidth });
|
|
669
|
+
}
|
|
670
|
+
;
|
|
671
|
+
};
|
|
672
|
+
;
|
|
595
673
|
DropDownListWithoutContext.displayName = 'DropDownList';
|
|
596
674
|
/**
|
|
597
675
|
* @hidden
|
|
@@ -289,4 +289,12 @@ export interface DropDownListProps extends FormComponentProps {
|
|
|
289
289
|
* @default `solid`
|
|
290
290
|
*/
|
|
291
291
|
fillMode?: null | 'solid' | 'flat' | 'outline';
|
|
292
|
+
/**
|
|
293
|
+
* Providing different rendering of the popup element based on the screen dimensions.
|
|
294
|
+
*/
|
|
295
|
+
adaptive?: boolean;
|
|
296
|
+
/**
|
|
297
|
+
* Specifies the text that is rendered as title in the adaptive popup.
|
|
298
|
+
*/
|
|
299
|
+
adaptiveTitle?: string;
|
|
292
300
|
}
|
package/dist/npm/main.d.ts
CHANGED
|
@@ -1,19 +1,25 @@
|
|
|
1
1
|
import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
2
|
-
import { DropDownList, DropDownListHandle, DropDownListPropsContext } from './DropDownList/DropDownList';
|
|
2
|
+
import { DropDownList, DropDownListHandle, DropDownListPropsContext, DropDownListWithoutContext } from './DropDownList/DropDownList';
|
|
3
3
|
import { DropDownListProps, DropDownListFilterChangeEvent, DropDownListChangeEvent, DropDownListOpenEvent, DropDownListCloseEvent, DropDownListFocusEvent, DropDownListBlurEvent, DropDownListPageChangeEvent } from './DropDownList/DropDownListProps';
|
|
4
4
|
import { Page, VirtualizationSettings, DropDownsPopupSettings, Suggestion } from './common/settings';
|
|
5
|
-
import { ListItemProps } from './common/ListItem';
|
|
6
|
-
import
|
|
5
|
+
import ListItem, { ListItemProps } from './common/ListItem';
|
|
6
|
+
import List from './common/List';
|
|
7
|
+
import SearchBar from './common/SearchBar';
|
|
8
|
+
import ListContainer from './common/ListContainer';
|
|
9
|
+
import ListFilter from './common/ListFilter';
|
|
10
|
+
import { messages as dropdownsMessages, nodata } from './messages/index';
|
|
11
|
+
import { scrollToItem } from './common/utils';
|
|
12
|
+
import { ComboBox, ComboBoxPropsContext, ComboBoxHandle, ComboBoxWithoutContext } from './ComboBox/ComboBox';
|
|
7
13
|
import { ComboBoxProps, ComboBoxFilterChangeEvent, ComboBoxChangeEvent, ComboBoxOpenEvent, ComboBoxCloseEvent, ComboBoxFocusEvent, ComboBoxBlurEvent, ComboBoxPageChangeEvent } from './ComboBox/ComboBoxProps';
|
|
8
|
-
import { AutoComplete, AutoCompleteHandle, AutoCompletePropsContext } from './AutoComplete/AutoComplete';
|
|
14
|
+
import { AutoComplete, AutoCompleteHandle, AutoCompletePropsContext, AutoCompleteWithoutContext } from './AutoComplete/AutoComplete';
|
|
9
15
|
import { AutoCompleteProps, AutoCompleteChangeEvent, AutoCompleteOpenEvent, AutoCompleteCloseEvent, AutoCompleteFocusEvent, AutoCompleteBlurEvent } from './AutoComplete/AutoCompleteProps';
|
|
10
|
-
import { MultiSelect, MultiSelectHandle, MultiSelectPropsContext } from './MultiSelect/MultiSelect';
|
|
16
|
+
import { MultiSelect, MultiSelectHandle, MultiSelectPropsContext, MultiSelectWithoutContext } from './MultiSelect/MultiSelect';
|
|
11
17
|
import { MultiSelectProps, MultiSelectChangeEvent, MultiSelectPageChangeEvent, MultiSelectFilterChangeEvent, MultiSelectOpenEvent, MultiSelectCloseEvent, MultiSelectFocusEvent, MultiSelectBlurEvent } from './MultiSelect/MultiSelectProps';
|
|
12
|
-
import { TagData as MultiSelectTagData, TagData } from './MultiSelect/TagList';
|
|
18
|
+
import TagList, { TagData as MultiSelectTagData, TagData } from './MultiSelect/TagList';
|
|
13
19
|
import { MultiColumnComboBox, MultiColumnComboBoxPropsContext, MultiColumnComboBoxProps, MultiColumnComboBoxHandle, MultiColumnComboBoxColumn, MultiColumnComboBoxChangeEvent } from './MultiColumnComboBox/MultiColumnComboBox';
|
|
14
20
|
import { DropDownTree, DropDownTreePropsContext } from './DropDownTree/DropDownTree';
|
|
15
21
|
export * from './DropDownTree/DropDownTreeProps';
|
|
16
22
|
import { MultiSelectTree, MultiSelectTreePropsContext } from './MultiSelectTree/MultiSelectTree';
|
|
17
23
|
export * from './MultiSelectTree/MultiSelectTreeProps';
|
|
18
24
|
export * from './MultiSelectTree/utils';
|
|
19
|
-
export { AutoComplete, AutoCompleteHandle, AutoCompleteProps, AutoCompletePropsContext, AutoCompleteChangeEvent, AutoCompleteOpenEvent, AutoCompleteCloseEvent, AutoCompleteFocusEvent, AutoCompleteBlurEvent, DropDownList, DropDownListHandle, DropDownListProps, DropDownListPropsContext, DropDownListFilterChangeEvent, DropDownListChangeEvent, DropDownListOpenEvent, DropDownListCloseEvent, DropDownListFocusEvent, DropDownListBlurEvent, DropDownListPageChangeEvent, Page, VirtualizationSettings, DropDownsPopupSettings, ListItemProps, Suggestion, ComboBox, ComboBoxHandle, ComboBoxProps, ComboBoxPropsContext, ComboBoxFilterChangeEvent, ComboBoxChangeEvent, ComboBoxOpenEvent, ComboBoxCloseEvent, ComboBoxFocusEvent, ComboBoxBlurEvent, ComboBoxPageChangeEvent, MultiSelect, MultiSelectHandle, MultiSelectProps, MultiSelectPropsContext, MultiSelectChangeEvent, MultiSelectPageChangeEvent, MultiSelectFilterChangeEvent, MultiSelectOpenEvent, MultiSelectCloseEvent, MultiSelectFocusEvent, MultiSelectBlurEvent, MultiSelectTagData, FormComponentValidity, MultiColumnComboBox, MultiColumnComboBoxColumn, MultiColumnComboBoxProps, MultiColumnComboBoxPropsContext, MultiColumnComboBoxHandle, MultiColumnComboBoxChangeEvent, DropDownTree, DropDownTreePropsContext, MultiSelectTree, MultiSelectTreePropsContext, TagData };
|
|
25
|
+
export { AutoComplete, AutoCompleteHandle, AutoCompleteProps, AutoCompletePropsContext, AutoCompleteWithoutContext, AutoCompleteChangeEvent, AutoCompleteOpenEvent, AutoCompleteCloseEvent, AutoCompleteFocusEvent, AutoCompleteBlurEvent, DropDownList, DropDownListHandle, DropDownListProps, DropDownListPropsContext, DropDownListWithoutContext, DropDownListFilterChangeEvent, DropDownListChangeEvent, DropDownListOpenEvent, DropDownListCloseEvent, DropDownListFocusEvent, DropDownListBlurEvent, DropDownListPageChangeEvent, Page, VirtualizationSettings, DropDownsPopupSettings, ListItemProps, Suggestion, ComboBox, ComboBoxHandle, ComboBoxProps, ComboBoxPropsContext, ComboBoxWithoutContext, ComboBoxFilterChangeEvent, ComboBoxChangeEvent, ComboBoxOpenEvent, ComboBoxCloseEvent, ComboBoxFocusEvent, ComboBoxBlurEvent, ComboBoxPageChangeEvent, MultiSelect, MultiSelectHandle, MultiSelectProps, MultiSelectPropsContext, MultiSelectWithoutContext, MultiSelectChangeEvent, MultiSelectPageChangeEvent, MultiSelectFilterChangeEvent, MultiSelectOpenEvent, MultiSelectCloseEvent, MultiSelectFocusEvent, MultiSelectBlurEvent, MultiSelectTagData, FormComponentValidity, MultiColumnComboBox, MultiColumnComboBoxColumn, MultiColumnComboBoxProps, MultiColumnComboBoxPropsContext, MultiColumnComboBoxHandle, MultiColumnComboBoxChangeEvent, DropDownTree, DropDownTreePropsContext, MultiSelectTree, MultiSelectTreePropsContext, TagData, TagList, SearchBar, List, ListItem, ListContainer, ListFilter, dropdownsMessages, nodata, scrollToItem };
|
package/dist/npm/main.js
CHANGED
|
@@ -14,19 +14,40 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.MultiSelectTreePropsContext = exports.MultiSelectTree = exports.DropDownTreePropsContext = exports.DropDownTree = exports.MultiColumnComboBoxPropsContext = exports.MultiColumnComboBox = exports.MultiSelectPropsContext = exports.MultiSelect = exports.ComboBoxPropsContext = exports.ComboBox = exports.DropDownListPropsContext = exports.DropDownList = exports.AutoCompletePropsContext = exports.AutoComplete = void 0;
|
|
17
|
+
exports.scrollToItem = exports.nodata = exports.dropdownsMessages = exports.ListFilter = exports.ListContainer = exports.ListItem = exports.List = exports.SearchBar = exports.TagList = exports.MultiSelectTreePropsContext = exports.MultiSelectTree = exports.DropDownTreePropsContext = exports.DropDownTree = exports.MultiColumnComboBoxPropsContext = exports.MultiColumnComboBox = exports.MultiSelectWithoutContext = exports.MultiSelectPropsContext = exports.MultiSelect = exports.ComboBoxWithoutContext = exports.ComboBoxPropsContext = exports.ComboBox = exports.DropDownListWithoutContext = exports.DropDownListPropsContext = exports.DropDownList = exports.AutoCompleteWithoutContext = exports.AutoCompletePropsContext = exports.AutoComplete = void 0;
|
|
18
18
|
var DropDownList_1 = require("./DropDownList/DropDownList");
|
|
19
19
|
Object.defineProperty(exports, "DropDownList", { enumerable: true, get: function () { return DropDownList_1.DropDownList; } });
|
|
20
20
|
Object.defineProperty(exports, "DropDownListPropsContext", { enumerable: true, get: function () { return DropDownList_1.DropDownListPropsContext; } });
|
|
21
|
+
Object.defineProperty(exports, "DropDownListWithoutContext", { enumerable: true, get: function () { return DropDownList_1.DropDownListWithoutContext; } });
|
|
22
|
+
var ListItem_1 = require("./common/ListItem");
|
|
23
|
+
exports.ListItem = ListItem_1.default;
|
|
24
|
+
var List_1 = require("./common/List");
|
|
25
|
+
exports.List = List_1.default;
|
|
26
|
+
var SearchBar_1 = require("./common/SearchBar");
|
|
27
|
+
exports.SearchBar = SearchBar_1.default;
|
|
28
|
+
var ListContainer_1 = require("./common/ListContainer");
|
|
29
|
+
exports.ListContainer = ListContainer_1.default;
|
|
30
|
+
var ListFilter_1 = require("./common/ListFilter");
|
|
31
|
+
exports.ListFilter = ListFilter_1.default;
|
|
32
|
+
var index_1 = require("./messages/index");
|
|
33
|
+
Object.defineProperty(exports, "dropdownsMessages", { enumerable: true, get: function () { return index_1.messages; } });
|
|
34
|
+
Object.defineProperty(exports, "nodata", { enumerable: true, get: function () { return index_1.nodata; } });
|
|
35
|
+
var utils_1 = require("./common/utils");
|
|
36
|
+
Object.defineProperty(exports, "scrollToItem", { enumerable: true, get: function () { return utils_1.scrollToItem; } });
|
|
21
37
|
var ComboBox_1 = require("./ComboBox/ComboBox");
|
|
22
38
|
Object.defineProperty(exports, "ComboBox", { enumerable: true, get: function () { return ComboBox_1.ComboBox; } });
|
|
23
39
|
Object.defineProperty(exports, "ComboBoxPropsContext", { enumerable: true, get: function () { return ComboBox_1.ComboBoxPropsContext; } });
|
|
40
|
+
Object.defineProperty(exports, "ComboBoxWithoutContext", { enumerable: true, get: function () { return ComboBox_1.ComboBoxWithoutContext; } });
|
|
24
41
|
var AutoComplete_1 = require("./AutoComplete/AutoComplete");
|
|
25
42
|
Object.defineProperty(exports, "AutoComplete", { enumerable: true, get: function () { return AutoComplete_1.AutoComplete; } });
|
|
26
43
|
Object.defineProperty(exports, "AutoCompletePropsContext", { enumerable: true, get: function () { return AutoComplete_1.AutoCompletePropsContext; } });
|
|
44
|
+
Object.defineProperty(exports, "AutoCompleteWithoutContext", { enumerable: true, get: function () { return AutoComplete_1.AutoCompleteWithoutContext; } });
|
|
27
45
|
var MultiSelect_1 = require("./MultiSelect/MultiSelect");
|
|
28
46
|
Object.defineProperty(exports, "MultiSelect", { enumerable: true, get: function () { return MultiSelect_1.MultiSelect; } });
|
|
29
47
|
Object.defineProperty(exports, "MultiSelectPropsContext", { enumerable: true, get: function () { return MultiSelect_1.MultiSelectPropsContext; } });
|
|
48
|
+
Object.defineProperty(exports, "MultiSelectWithoutContext", { enumerable: true, get: function () { return MultiSelect_1.MultiSelectWithoutContext; } });
|
|
49
|
+
var TagList_1 = require("./MultiSelect/TagList");
|
|
50
|
+
exports.TagList = TagList_1.default;
|
|
30
51
|
var MultiColumnComboBox_1 = require("./MultiColumnComboBox/MultiColumnComboBox");
|
|
31
52
|
Object.defineProperty(exports, "MultiColumnComboBox", { enumerable: true, get: function () { return MultiColumnComboBox_1.MultiColumnComboBox; } });
|
|
32
53
|
Object.defineProperty(exports, "MultiColumnComboBoxPropsContext", { enumerable: true, get: function () { return MultiColumnComboBox_1.MultiColumnComboBoxPropsContext; } });
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-react-dropdowns',
|
|
9
9
|
productName: 'KendoReact',
|
|
10
10
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1680198554,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
14
14
|
};
|