Skip to content

Commit 4c896b3

Browse files
author
pipeline
committed
v17.3.17 is released
1 parent d19a2fc commit 4c896b3

File tree

455 files changed

+12243
-3801
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

455 files changed

+12243
-3801
lines changed

controls/barcodegenerator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-barcode-generator",
3-
"version": "17.3.14",
3+
"version": "17.3.9",
44
"description": "Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/buttons/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
## [Unreleased]
44

5+
## 17.3.16 (2019-10-09)
6+
7+
### CheckBox
8+
9+
### RadioButton
10+
11+
### Switch
12+
13+
#### Bug Fixes
14+
15+
- Adding common cssClass for wrapper.
16+
517
## 17.2.35 (2019-07-17)
618

719
### Chips

controls/buttons/dist/ej2-buttons.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/ej2-buttons.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/es6/ej2-buttons.es2015.js

+6-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/es6/ej2-buttons.es2015.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/es6/ej2-buttons.es5.js

+13-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/es6/ej2-buttons.es5.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/global/ej2-buttons.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/global/ej2-buttons.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-buttons",
3-
"version": "17.3.14",
3+
"version": "17.3.16",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/buttons/spec/switch.spec.ts

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ describe('Switch', () => {
5656
specSwitch = new Switch({}, '#specSwitch');
5757
expect(element.classList.contains('e-switch')).toEqual(true);
5858
expect(element.parentElement.classList.contains('e-switch-wrapper')).toEqual(true);
59+
expect(element.parentElement.classList.contains('e-wrapper')).toEqual(true);
5960
expect(element.parentElement.children[1].classList.contains('e-switch-inner')).toEqual(true);
6061
expect(element.parentElement.children[1].children[0].classList.contains('e-switch-on')).toEqual(true);
6162
expect(element.parentElement.children[1].children[1].classList.contains('e-switch-off')).toEqual(true);

controls/buttons/src/button/button-model.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Property, NotifyPropertyChanges, INotifyPropertyChanged, Component, isBlazor, isRippleEnabled } from '@syncfusion/ej2-base';import { addClass, Event, EmitType, detach, removeClass, rippleEffect, EventHandler } from '@syncfusion/ej2-base';import { getTextNode } from '../common/common';
1+
import { Property, NotifyPropertyChanges, INotifyPropertyChanged, Component, isBlazor } from '@syncfusion/ej2-base';import { addClass, Event, EmitType, detach, removeClass, rippleEffect, EventHandler, isRippleEnabled } from '@syncfusion/ej2-base';import { getTextNode } from '../common/common';
22
import {IconPosition} from "./button";
33
import {ComponentModel} from '@syncfusion/ej2-base';
44

controls/buttons/src/button/button.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Property, NotifyPropertyChanges, INotifyPropertyChanged, Component, isBlazor, isRippleEnabled } from '@syncfusion/ej2-base';
2-
import { addClass, Event, EmitType, detach, removeClass, rippleEffect, EventHandler } from '@syncfusion/ej2-base';
1+
import { Property, NotifyPropertyChanges, INotifyPropertyChanged, Component, isBlazor } from '@syncfusion/ej2-base';
2+
import { addClass, Event, EmitType, detach, removeClass, rippleEffect, EventHandler, isRippleEnabled } from '@syncfusion/ej2-base';
33
import { ButtonModel } from './button-model';
44
import { getTextNode } from '../common/common';
55
export type IconPosition = 'Left' | 'Right' | 'Top' | 'Bottom';

controls/buttons/src/check-box/check-box-model.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export interface CheckBoxModel extends ComponentModel{
2525
* Specifies a value that indicates whether the CheckBox is `checked` or not.
2626
* When set to `true`, the CheckBox will be in `checked` state.
2727
* @default false
28-
* @isBlazorNullableType true
2928
*/
3029
checked?: boolean;
3130

controls/buttons/src/check-box/check-box.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ export class CheckBox extends Component<HTMLInputElement> implements INotifyProp
5858
* Specifies a value that indicates whether the CheckBox is `checked` or not.
5959
* When set to `true`, the CheckBox will be in `checked` state.
6060
* @default false
61-
* @isBlazorNullableType true
6261
*/
6362
@Property(false)
6463
public checked: boolean;
@@ -281,6 +280,7 @@ export class CheckBox extends Component<HTMLInputElement> implements INotifyProp
281280
}
282281
let label: Element = this.createElement('label', { attrs: { for: this.element.id } });
283282
let frameSpan: Element = this.createElement('span', { className: 'e-icons ' + FRAME });
283+
wrapper.classList.add('e-wrapper');
284284
if (this.enableRtl) {
285285
wrapper.classList.add(RTL);
286286
}

controls/buttons/src/chips/chip-list-model.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, NotifyPropertyChanges, INotifyPropertyChanged, Property, append, isNullOrUndefined } from '@syncfusion/ej2-base';import { removeClass, KeyboardEventArgs, rippleEffect, closest, MouseEventArgs } from '@syncfusion/ej2-base';import { EventHandler, detach, EmitType, Event, addClass } from '@syncfusion/ej2-base';import { ChipModel } from './chip';
1+
import { Component, NotifyPropertyChanges, INotifyPropertyChanged, Property, append, isNullOrUndefined } from '@syncfusion/ej2-base';import { removeClass, KeyboardEventArgs, rippleEffect, closest, MouseEventArgs } from '@syncfusion/ej2-base';import { EventHandler, detach, EmitType, Event, addClass, isBlazor, getElement } from '@syncfusion/ej2-base';import { ChipModel } from './chip';
22
import {Selection,ClickEventArgs,DeleteEventArgs} from "./chip-list";
33
import {ComponentModel} from '@syncfusion/ej2-base';
44

controls/buttons/src/chips/chip-list.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Component, NotifyPropertyChanges, INotifyPropertyChanged, Property, append, isNullOrUndefined } from '@syncfusion/ej2-base';
22
import { removeClass, KeyboardEventArgs, rippleEffect, closest, MouseEventArgs } from '@syncfusion/ej2-base';
3-
import { EventHandler, detach, EmitType, Event, addClass } from '@syncfusion/ej2-base';
3+
import { EventHandler, detach, EmitType, Event, addClass, isBlazor, getElement } from '@syncfusion/ej2-base';
44
import { ChipListModel } from './chip-list-model';
55
import { ChipModel } from './chip';
66

@@ -588,7 +588,8 @@ export class ChipList extends Component<HTMLElement> implements INotifyPropertyC
588588
let deletedItemArgs: DeleteEventArgs = chipData as DeleteEventArgs;
589589
this.trigger('delete', deletedItemArgs, (observedArgs: DeleteEventArgs) => {
590590
if (!observedArgs.cancel) {
591-
this.deleteHandler(chipData.element, chipData.index);
591+
observedArgs.element = isBlazor() ? getElement(observedArgs.element) : observedArgs.element;
592+
this.deleteHandler(observedArgs.element, observedArgs.index);
592593
}
593594
});
594595
} else if (this.selection !== 'None') {

controls/buttons/src/radio-button/radio-button.ts

+1
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ export class RadioButton extends Component<HTMLInputElement> implements INotifyP
237237
isCenterRipple: true
238238
});
239239
}
240+
wrapper.classList.add('e-wrapper');
240241
if (this.enableRtl) {
241242
label.classList.add(RTL);
242243
}

controls/buttons/src/switch/switch.ts

+1
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ export class Switch extends Component<HTMLInputElement> implements INotifyProper
222222
handle.appendChild(rippleSpan);
223223
rippleEffect(rippleSpan, { duration: 400, isCenterRipple: true });
224224
}
225+
wrapper.classList.add('e-wrapper');
225226
if (this.enableRtl) {
226227
wrapper.classList.add(RTL);
227228
}

controls/buttons/styles/chips/_layout.scss

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
box-sizing: border-box;
1515
cursor: pointer;
1616
display: inline-flex;
17-
font-family: $font-family;
1817
font-size: $chip-font-size;
1918
font-weight: $chip-font-weight;
2019
height: $chip-height;

controls/charts/CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22

33
## [Unreleased]
44

5+
## 17.3.17 (2019-10-15)
6+
7+
### Chart
8+
9+
#### New Features
10+
11+
- #249554 - Provided smart axis label for polar radar chart.
12+
- #239599 - Provided event support for tooltip template.
13+
14+
## 17.3.16 (2019-10-09)
15+
16+
### Accumulation Chart
17+
18+
#### New Features
19+
20+
- #249611 - Provided duration support for hiding the tooltip.
21+
22+
### Chart
23+
24+
#### New Features
25+
26+
- #249611 - Provided duration support for hiding the tooltip.
27+
28+
#### Bug Fixes
29+
30+
- #249730 - Polar chart column series with inversed axis with OnTicks rendering issue fixed.
31+
- #250074 - Radar chart values are wrongly plotted in outside the axis issue fixed.
32+
- #250064 - Radar and Polar Chart of Scatter Type is not rendering when the Value label is enabled issue fixed.
33+
- #250336 - es2015 script error issue has fixed.
34+
- #250081 - Radar and Polar chart when only one data is passed it is appearing as single dot issue fixed.
35+
36+
### Stock Chart
37+
38+
#### Bug Fixes
39+
40+
- `#249956` - Annotation rendering issue has fixed.
41+
542
## 17.3.14 (2019-10-03)
643

744
### Chart

0 commit comments

Comments
 (0)