@syncfusion/ej2-dropdowns
Advanced tools
Comparing version 24.2.4 to 24.2.5
@@ -5,2 +5,10 @@ # Changelog | ||
### DropdownList | ||
#### Bug Fixes | ||
- `#F49655` - Fixed an issue where assigning null to a value, text and index property resulting in errors. | ||
## 24.2.4 (2024-02-06) | ||
### ListBox | ||
@@ -7,0 +15,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 24.2.4 | ||
* version : 24.2.5 | ||
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-dropdowns@*", | ||
"_id": "@syncfusion/ej2-dropdowns@24.2.3", | ||
"_id": "@syncfusion/ej2-dropdowns@24.2.4", | ||
"_inBundle": false, | ||
"_integrity": "sha512-hXy1nqT6TdHCVMDPM10XQ4SMSo+Now+rQMsS1IJ66YGH9GMvuzLwW5WZhgjncbEv8wzyRLaUr+VtJuTGs1OdSA==", | ||
"_integrity": "sha512-yO2x7003LTxaPl+OD2C6KP4XQaN6kVuzGVKtSz9vBtS2e3EZZpt8GmtRs1QOmMaR47kqD+Cv2ybUx1E3w13pKg==", | ||
"_location": "/@syncfusion/ej2-dropdowns", | ||
@@ -37,4 +37,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-24.2.3.tgz", | ||
"_shasum": "75b2f842f8bf20f36606b4c5f4ab4ace100eae91", | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-24.2.4.tgz", | ||
"_shasum": "24edaa5bfef0a2fa7ee08492553773b546b45011", | ||
"_spec": "@syncfusion/ej2-dropdowns@*", | ||
@@ -47,9 +47,9 @@ "_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~24.2.3", | ||
"@syncfusion/ej2-base": "~24.2.5", | ||
"@syncfusion/ej2-data": "~24.2.3", | ||
"@syncfusion/ej2-inputs": "~24.2.4", | ||
"@syncfusion/ej2-inputs": "~24.2.5", | ||
"@syncfusion/ej2-lists": "~24.2.4", | ||
"@syncfusion/ej2-navigations": "~24.2.4", | ||
"@syncfusion/ej2-notifications": "~24.2.4", | ||
"@syncfusion/ej2-popups": "~24.2.3" | ||
"@syncfusion/ej2-popups": "~24.2.5" | ||
}, | ||
@@ -79,5 +79,5 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "24.2.4", | ||
"version": "24.2.5", | ||
"sideEffects": false, | ||
"homepage": "https://www.syncfusion.com/javascript-ui-controls" | ||
} |
@@ -141,3 +141,3 @@ import { Property, EventHandler, KeyboardEventArgs, isNullOrUndefined, detach } from '@syncfusion/ej2-base';import { Event, EmitType, Complex } from '@syncfusion/ej2-base';import { removeClass, attributes, NotifyPropertyChanges } from '@syncfusion/ej2-base';import { dropDownListClasses } from '../drop-down-list/drop-down-list';import { ComboBox } from '../combo-box/combo-box';import { highlightSearch, revertHighlightSearch } from '../common/highlight-search';import { Search } from '../common/incremental-search';import { FieldSettingsModel } from '../drop-down-base/drop-down-base-model';import { FieldSettings, FilteringEventArgs, FilterType, ResultData } from '../drop-down-base/drop-down-base';import { FloatLabelType, Input } from '@syncfusion/ej2-inputs';import { DataManager, Predicate, Query } from '@syncfusion/ej2-data'; | ||
*/ | ||
index?: number; | ||
index?: number | null; | ||
@@ -197,4 +197,4 @@ /** | ||
*/ | ||
text?: string; | ||
text?: string | null; | ||
} |
@@ -148,3 +148,3 @@ /// <reference path="../combo-box/combo-box-model.d.ts" /> | ||
*/ | ||
index: number; | ||
index: number | null; | ||
/** | ||
@@ -199,3 +199,3 @@ * Specifies whether to display the floating label above the input element. | ||
*/ | ||
text: string; | ||
text: string | null; | ||
/** | ||
@@ -202,0 +202,0 @@ * * Constructor for creating the widget |
@@ -71,3 +71,3 @@ import { EventHandler, Property, Event, EmitType, addClass, Browser, KeyboardEventArgs, removeClass, detach } from '@syncfusion/ej2-base';import { isNullOrUndefined, NotifyPropertyChanges, getValue, setValue } from '@syncfusion/ej2-base';import { DropDownList, dropDownListClasses } from '../drop-down-list/drop-down-list';import { FilteringEventArgs } from '../drop-down-base/drop-down-base';import { FieldSettingsModel } from '../drop-down-base/drop-down-base-model';import { Search } from '../common/incremental-search';import { createSpinner, showSpinner, hideSpinner } from '@syncfusion/ej2-popups';import { Input, InputObject, FloatLabelType } from '@syncfusion/ej2-inputs';import { DataManager, Query } from '@syncfusion/ej2-data'; | ||
*/ | ||
index?: number; | ||
index?: number | null; | ||
@@ -225,3 +225,3 @@ /** | ||
*/ | ||
text?: string; | ||
text?: string | null; | ||
@@ -235,4 +235,4 @@ /** | ||
*/ | ||
value?: number | string | boolean; | ||
value?: number | string | boolean | null; | ||
} |
@@ -84,3 +84,3 @@ /// <reference path="../drop-down-list/drop-down-list-model.d.ts" /> | ||
*/ | ||
index: number; | ||
index: number | null; | ||
/** | ||
@@ -222,3 +222,3 @@ * Specifies whether to show or hide the clear button. | ||
*/ | ||
text: string; | ||
text: string | null; | ||
/** | ||
@@ -231,3 +231,3 @@ * Gets or sets the value of the selected item in the component. | ||
*/ | ||
value: number | string | boolean; | ||
value: number | string | boolean | null; | ||
/** | ||
@@ -234,0 +234,0 @@ * *Constructor for creating the component |
@@ -167,3 +167,3 @@ import { EventHandler, Property, Event, compile, EmitType, KeyboardEvents, append, select, ModuleDeclaration } from '@syncfusion/ej2-base';import { attributes, isNullOrUndefined, getUniqueID, formatUnit, isUndefined, getValue } from '@syncfusion/ej2-base';import { Animation, AnimationModel, Browser, KeyboardEventArgs, NotifyPropertyChanges } from '@syncfusion/ej2-base';import { addClass, removeClass, closest, prepend, detach, classList } from '@syncfusion/ej2-base';import { Popup, isCollide, createSpinner, showSpinner, hideSpinner } from '@syncfusion/ej2-popups';import { IInput, Input, InputObject, FloatLabelType } from '@syncfusion/ej2-inputs';import { incrementalSearch, resetIncrementalSearchValues } from '../common/incremental-search';import { DropDownBase, dropDownBaseClasses, SelectEventArgs, FilteringEventArgs, PopupEventArgs } from '../drop-down-base/drop-down-base';import { FocusEventArgs, ResultData, BeforeOpenEventArgs } from '../drop-down-base/drop-down-base';import { FieldSettingsModel } from '../drop-down-base/drop-down-base-model';import { DataManager, Query, Predicate, DataOptions } from '@syncfusion/ej2-data';import {VirtualScroll, Offsets, ScrollDirection, SentinelType, VirtualInfo} from '../common/virtual-scroll';import { Skeleton } from '@syncfusion/ej2-notifications'; | ||
*/ | ||
text?: string; | ||
text?: string | null; | ||
@@ -176,3 +176,3 @@ /** | ||
*/ | ||
value?: number | string | boolean; | ||
value?: number | string | boolean | null; | ||
@@ -188,3 +188,3 @@ /** | ||
*/ | ||
index?: number; | ||
index?: number | null; | ||
@@ -191,0 +191,0 @@ /** |
@@ -289,3 +289,3 @@ /// <reference path="../drop-down-base/drop-down-base-model.d.ts" /> | ||
*/ | ||
text: string; | ||
text: string | null; | ||
/** | ||
@@ -297,3 +297,3 @@ * Gets or sets the value of the selected item in the component. | ||
*/ | ||
value: number | string | boolean; | ||
value: number | string | boolean | null; | ||
/** | ||
@@ -308,3 +308,3 @@ * Gets or sets the index of the selected item in the component. | ||
*/ | ||
index: number; | ||
index: number | null; | ||
/** | ||
@@ -311,0 +311,0 @@ * Specifies whether to display the floating label above the input element. |
@@ -338,3 +338,3 @@ import { DropDownBase, SelectEventArgs, dropDownBaseClasses, PopupEventArgs, FilteringEventArgs } from '../drop-down-base/drop-down-base';import { FocusEventArgs, BeforeOpenEventArgs, FilterType, FieldSettings, ResultData } from '../drop-down-base/drop-down-base';import { FieldSettingsModel } from '../drop-down-base/drop-down-base-model';import { Popup, createSpinner, showSpinner, hideSpinner } from '@syncfusion/ej2-popups';import { IInput, FloatLabelType, Input } from '@syncfusion/ej2-inputs';import { attributes, setValue, SanitizeHtmlHelper, getValue } from '@syncfusion/ej2-base';import { NotifyPropertyChanges, extend } from '@syncfusion/ej2-base';import { EventHandler, Property, Event, compile, L10n, EmitType, KeyboardEventArgs } from '@syncfusion/ej2-base';import { Animation, AnimationModel, Browser, prepend, Complex } from '@syncfusion/ej2-base';import { Search } from '../common/incremental-search';import { append, addClass, removeClass, closest, detach, remove, select, selectAll } from '@syncfusion/ej2-base';import { getUniqueID, formatUnit, isNullOrUndefined, isUndefined, ModuleDeclaration } from '@syncfusion/ej2-base';import { DataManager, Query, Predicate, JsonAdaptor } from '@syncfusion/ej2-data';import { SortOrder } from '@syncfusion/ej2-lists';import { createFloatLabel, removeFloating, floatLabelFocus, floatLabelBlur, encodePlaceholder } from './float-label'; | ||
*/ | ||
text?: string; | ||
text?: string | null; | ||
@@ -348,3 +348,3 @@ /** | ||
*/ | ||
value?: number[] | string[] | boolean[]; | ||
value?: number[] | string[] | boolean[] | null; | ||
@@ -351,0 +351,0 @@ /** |
@@ -354,3 +354,3 @@ /// <reference path="../drop-down-base/drop-down-base-model.d.ts" /> | ||
*/ | ||
text: string; | ||
text: string | null; | ||
/** | ||
@@ -363,3 +363,3 @@ * Selects the list item which maps the data `value` field in the component. | ||
*/ | ||
value: number[] | string[] | boolean[]; | ||
value: number[] | string[] | boolean[] | null; | ||
/** | ||
@@ -366,0 +366,0 @@ * Hides the selected item from the list item. |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16154852
195239