Skip to content

Commit fec7255

Browse files
author
pipeline
committed
v17.1.32-beta is released
1 parent b7c5546 commit fec7255

File tree

3,630 files changed

+154403
-534
lines changed

Some content is hidden

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

3,630 files changed

+154403
-534
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* New [GitHub issue](https://github.com/syncfusion/ej2-angular-ui-components/issues/new).
4242
* Ask your query in [Stack Overflow](https://stackoverflow.com/) with tag `syncfusion` and `ej2`.
4343
## License
44-
Check the license detail [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/LICENSE).
44+
Check the license detail [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/license).
4545
## Changelog
4646
Check the changelog [here](https://ej2.syncfusion.com/angular/documentation/release-notes?utm_source=npm&utm_campaign=ej2-angular-ui-components)
4747
© Copyright 2018 Syncfusion, Inc. All Rights Reserved.

components/base/CHANGELOG.md

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,15 @@
22

33
## [Unreleased]
44

5-
## 16.4.55 (2019-02-27)
5+
## 17.1.32-beta (2019-03-13)
66

77
### Common
88

99
#### Bug Fixes
1010

11-
- Fixed `TextBox` change event not triggering issue.
11+
- Fixed `CheckBox` not disabling issue.
1212

13-
## 16.4.48 (2019-01-22)
14-
15-
### Common
16-
17-
#### Bug Fixes
18-
19-
- Fixed script error throwing issue while using `ngx-translate`.
20-
21-
## 16.4.46 (2019-01-08)
22-
23-
### Common
24-
25-
#### Bug Fixes
26-
27-
- Fixed Angular peer dependencies warning issue.
28-
29-
## 16.4.42 (2018-12-14)
13+
## 17.1.1-beta (2019-01-29)
3014

3115
### Common
3216

components/base/dist/ej2-angular-base.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/ej2-angular-base.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-angular-base.es2015.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-angular-base.es2015.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-angular-base.es5.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-angular-base.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/global/ej2-angular-base.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/global/ej2-angular-base.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-base",
3-
"version": "16.4.52",
3+
"version": "17.1.1",
44
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
@@ -25,7 +25,7 @@
2525
},
2626
"dependencies": {
2727
"@syncfusion/ej2-base": "*",
28-
"zone.js": "0.7.2 - 0.8.28",
28+
"zone.js": "^0.7.2",
2929
"core-js": "^2.4.1",
3030
"reflect-metadata": "^0.1.9",
3131
"rxjs": "^5.0.0"

components/base/spec/app.pipe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ export class check implements PipeTransform {
99
return true;
1010
}
1111
}
12-
}
12+
}

components/base/spec/complex-array-base.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ describe('=> Complex Component for pipe => ', () => {
122122

123123
});
124124

125+
125126
describe('=> Complex Component => ', () => {
126127
let comp: AppComponent;
127128
let fixture: ComponentFixture<AppComponent>;

components/base/spec/form-base.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ describe('Form Base Coverage Test', () => {
148148
});
149149
it("checking value type, if obj type do stringify", () => {
150150
let formCmpt: FormBase<any> = new FormBase();
151-
formCmpt.value = { value: { check: 'hello' } };
151+
formCmpt.value = {value:{check:'hello'}};
152152
formCmpt.writeValue(formCmpt.value);
153153
formCmpt.localChange(formCmpt.value);
154154
let check = formCmpt.objCheck;
@@ -160,6 +160,7 @@ describe('Form Base Coverage Test', () => {
160160
let formCmpt: FormBase<any> = new FormBase();
161161
formCmpt.setDisabledState(true);
162162
expect(formCmpt.enabled).toEqual(false);
163+
expect(formCmpt.disabled).toEqual(true);
163164
});
164165
})
165166

components/base/spec/pipe.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,4 @@ export class ControlComponent1 extends DemoBase implements IComponentBase {
113113

114114
}
115115

116-
export const pipeComponents = [check, ControlComponent1, ChildDirective, ChildsDirective, SubChildDirective, SubChildsDirective];
116+
export const pipeComponents = [check, ControlComponent1, ChildDirective, ChildsDirective, SubChildDirective, SubChildsDirective];

components/base/src/form-base.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export class FormBase<T> implements ControlValueAccessor {
1212
public propagateChange(_: T): void { return; }
1313
public propagateTouch(): void { return; }
1414
public enabled: Object;
15+
public disabled: Object;
1516
public angularValue: T;
1617
public objCheck: Boolean;
1718
public duplicateValue: string;
@@ -83,6 +84,7 @@ export class FormBase<T> implements ControlValueAccessor {
8384
}
8485
public setDisabledState(disabled: boolean): void {
8586
this.enabled = !disabled;
87+
this.disabled = disabled;
8688
}
8789

8890
public writeValue(value: T): void {

components/buttons/CHANGELOG.md

Lines changed: 9 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,7 @@
22

33
## [Unreleased]
44

5-
## 16.4.55 (2019-02-27)
6-
7-
### CheckBox
8-
9-
#### Bug Fixes
10-
11-
- Performance issue with key press is fixed.
12-
13-
## 16.4.53 (2019-02-13)
14-
15-
### Button
16-
17-
#### Bug Fixes
18-
19-
- Flat button text is not visible in bootstrap theme issue is fixed.
20-
21-
## 16.4.40-beta (2018-12-10)
5+
## 17.1.1-beta (2019-01-29)
226

237
### Chips
248

@@ -30,12 +14,6 @@ The Chip control contains a small block of essential information that triggers a
3014
- `Filter chip` - Used to select multiple choices from the available options.
3115
- `Action chip` - Used to trigger actions for primary content.
3216

33-
### CheckBox
34-
35-
#### Bug Fixes
36-
37-
- Change event triggers twice issue fixed.
38-
3917
## 16.3.33 (2018-11-20)
4018

4119
### CheckBox
@@ -203,6 +181,14 @@ RadioButton is a graphical user interface element that allows to select one opti
203181
- **Sizes** - Provided with different sizes of RadioButton.
204182

205183

184+
## 16.4.40-beta (2018-12-10)
185+
186+
### CheckBox
187+
188+
#### Bug Fixes
189+
190+
- Change event triggers twice issue fixed.
191+
206192
## 16.3.25 (2018-10-15)
207193

208194
### RadioButton

0 commit comments

Comments
 (0)