@syncfusion/ej2-dropdowns
Advanced tools
Comparing version 16.4.47 to 16.4.48
@@ -5,2 +5,8 @@ # Changelog | ||
### AutoComplete | ||
#### Bug Fixes | ||
- Custom value is not maintain after reload the data issue has been resolved. | ||
### MultiSelect | ||
@@ -10,2 +16,18 @@ | ||
- `en-US` locale JSON file not generated issue has been resolved. | ||
## 16.4.47 (2019-01-16) | ||
### MultiSelect | ||
#### Bug Fixes | ||
- server side validation is not working issue has been resolved. | ||
## 16.4.46 (2019-01-08) | ||
### MultiSelect | ||
#### Bug Fixes | ||
- Value is updated in reverse while using select all option in checkbox selection issue has been resolved. | ||
@@ -12,0 +34,0 @@ |
@@ -1,10 +0,1 @@ | ||
/*! | ||
* filename: index.d.ts | ||
* version : 16.4.47 | ||
* Copyright Syncfusion Inc. 2001 - 2019. All rights reserved. | ||
* Use of this code is subject to the terms of our license. | ||
* A copy of the current license can be obtained at any time by e-mailing | ||
* licensing@syncfusion.com. Any infringement will be prosecuted under | ||
* applicable laws. | ||
*/ | ||
import * as _dropdowns from '@syncfusion/ej2-dropdowns'; | ||
@@ -11,0 +2,0 @@ |
{ | ||
"name": "@syncfusion/ej2-dropdowns", | ||
"version": "16.4.47", | ||
"version": "16.4.48", | ||
"description": "Essential JS 2 DropDown Components", | ||
@@ -12,4 +12,4 @@ "author": "Syncfusion Inc.", | ||
"@syncfusion/ej2-base": "~16.4.47", | ||
"@syncfusion/ej2-data": "~16.4.47", | ||
"@syncfusion/ej2-inputs": "~16.4.47", | ||
"@syncfusion/ej2-data": "~16.4.48", | ||
"@syncfusion/ej2-inputs": "~16.4.48", | ||
"@syncfusion/ej2-lists": "~16.4.47", | ||
@@ -16,0 +16,0 @@ "@syncfusion/ej2-popups": "~16.4.47" |
@@ -107,2 +107,2 @@ # ej2-dropdowns | ||
© Copyright 2018 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution. | ||
© Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution. |
@@ -154,2 +154,3 @@ /// <reference path="../drop-down-list/drop-down-list-model.d.ts" /> | ||
protected setValue(e?: KeyboardEventArgs): boolean; | ||
protected checkCustomValue(): void; | ||
/** | ||
@@ -156,0 +157,0 @@ * Shows the spinner loader. |
@@ -262,2 +262,9 @@ var __extends = (this && this.__extends) || (function () { | ||
}; | ||
ComboBox.prototype.checkCustomValue = function () { | ||
this.itemData = this.getDataByValue(this.value); | ||
var dataItem = this.getItemData(); | ||
if (!(this.allowCustom && isNullOrUndefined(dataItem.value) && isNullOrUndefined(dataItem.text))) { | ||
this.setProperties({ 'value': dataItem.value, 'text': dataItem.text }); | ||
} | ||
}; | ||
/** | ||
@@ -264,0 +271,0 @@ * Shows the spinner loader. |
@@ -267,2 +267,8 @@ import { Component, KeyboardEvents, EmitType, L10n } from '@syncfusion/ej2-base'; | ||
protected setEnabled(): void; | ||
/** | ||
* Sets the enabled state to DropDownBase. | ||
*/ | ||
protected updateDataAttribute(value: { | ||
[key: string]: string; | ||
}): void; | ||
private renderItemsBySelect; | ||
@@ -269,0 +275,0 @@ private getJSONfromOption; |
@@ -281,2 +281,16 @@ var __extends = (this && this.__extends) || (function () { | ||
; | ||
/** | ||
* Sets the enabled state to DropDownBase. | ||
*/ | ||
DropDownBase.prototype.updateDataAttribute = function (value) { | ||
var invalidAttr = ['class', 'style', 'id', 'type']; | ||
var attr = {}; | ||
for (var a = 0; a < this.element.attributes.length; a++) { | ||
if (invalidAttr.indexOf(this.element.attributes[a].name) === -1) { | ||
attr[this.element.attributes[a].name] = this.element.getAttribute(this.element.attributes[a].name); | ||
} | ||
} | ||
extend(attr, value, attr); | ||
this.setProperties({ htmlAttributes: attr }, true); | ||
}; | ||
DropDownBase.prototype.renderItemsBySelect = function () { | ||
@@ -283,0 +297,0 @@ var element = this.element; |
@@ -1,2 +0,2 @@ | ||
import { EventHandler, Property, Event, compile, EmitType, KeyboardEvents, append, extend } 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, setStyleAttribute, 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 } from '../common/incremental-search';import { DropDownBase, dropDownBaseClasses, SelectEventArgs, FilteringEventArgs, PopupEventArgs } from '../drop-down-base/drop-down-base';import { FocusEventArgs } from '../drop-down-base/drop-down-base';import { FieldSettingsModel } from '../drop-down-base/drop-down-base-model';import { DropDownListModel } from '../drop-down-list';import { DataManager, Query } from '@syncfusion/ej2-data';import { SortOrder } from '@syncfusion/ej2-lists'; | ||
import { EventHandler, Property, Event, compile, EmitType, KeyboardEvents, append } 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, setStyleAttribute, 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 } from '../common/incremental-search';import { DropDownBase, dropDownBaseClasses, SelectEventArgs, FilteringEventArgs, PopupEventArgs } from '../drop-down-base/drop-down-base';import { FocusEventArgs } from '../drop-down-base/drop-down-base';import { FieldSettingsModel } from '../drop-down-base/drop-down-base-model';import { DropDownListModel } from '../drop-down-list';import { DataManager, Query } from '@syncfusion/ej2-data';import { SortOrder } from '@syncfusion/ej2-lists'; | ||
import {ChangeEventArgs} from "./drop-down-list"; | ||
@@ -3,0 +3,0 @@ import {DropDownBaseModel} from "../drop-down-base/drop-down-base-model"; |
@@ -439,2 +439,3 @@ /// <reference path="../drop-down-base/drop-down-base-model.d.ts" /> | ||
protected updateDataSource(props?: DropDownListModel): void; | ||
protected checkCustomValue(): void; | ||
/** | ||
@@ -441,0 +442,0 @@ * Dynamically change the value of properties. |
@@ -384,2 +384,3 @@ /// <reference path="../drop-down-base/drop-down-base-model.d.ts" /> | ||
private updateListARIA; | ||
private ensureAriaDisabled; | ||
private removelastSelection; | ||
@@ -386,0 +387,0 @@ protected onActionFailure(e: Object): void; |
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
4453033
41439