Skip to content

Commit d158fdb

Browse files
author
pipeline
committed
feature(EJ2-1920): Checkbox Included (origin/EJ2-1920-check-box-mas)
1 parent b27b1c9 commit d158fdb

File tree

8 files changed

+61
-44
lines changed

8 files changed

+61
-44
lines changed

button/ReadMe.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# Button
1+
# Overview
22

3-
Button is a graphical user interface element that triggers an event on its click action. It can contain a text, an image, or both. It comes with documentation and support, which is available under commercial and community licenses. Please visit www.syncfusion.com to get started.
3+
A package of Essential JS 2 Button and CheckBox components. It comes with documentation and support, which is available under commercial and community licenses. Please visit www.syncfusion.com to get started.
44

55
## Resources
66

7-
* [Demo](http://ej2.syncfusion.com/demos/#/button/default.html)
8-
* [Documentation](http://ej2.syncfusion.com/documentation/button)
7+
* [Button Demo](http://ej2.syncfusion.com/demos/#/button/default.html)
8+
* [Button Documentation](http://ej2.syncfusion.com/documentation/button)
9+
* [CheckBox Demo](http://ej2.syncfusion.com/demos/#/button/check-box.html)
10+
* [CheckBox Documentation](http://ej2.syncfusion.com/documentation/check-box)

check-box/ReadMe.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Overview
2+
3+
A package of Essential JS 2 Button and CheckBox components. It comes with documentation and support, which is available under commercial and community licenses. Please visit www.syncfusion.com to get started.
4+
5+
## Resources
6+
7+
* [Button Demo](http://ej2.syncfusion.com/demos/#/button/default.html)
8+
* [Button Documentation](http://ej2.syncfusion.com/documentation/button)
9+
* [CheckBox Demo](http://ej2.syncfusion.com/demos/#/button/check-box.html)
10+
* [CheckBox Documentation](http://ej2.syncfusion.com/documentation/check-box)

check-box/fabric.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import "ej2-buttons/styles/check-box/fabric.scss";

check-box/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "@syncfusion/ej2-buttons/check-box";

check-box/material.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import "ej2-buttons/styles/check-box/material.scss";

fabric.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
@import "accumulation-chart/fabric.scss";
66
@import "button/fabric.scss";
77
@import "calendar/fabric.scss";
8+
@import "check-box/fabric.scss";
89
@import "circular-gauge/fabric.scss";
910
@import "dialog/fabric.scss";
1011
@import "drop-down-base/fabric.scss";

material.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
@import "accumulation-chart/material.scss";
66
@import "button/material.scss";
77
@import "calendar/material.scss";
8+
@import "check-box/material.scss";
89
@import "circular-gauge/material.scss";
910
@import "dialog/material.scss";
1011
@import "drop-down-base/material.scss";

package.json

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
11
{
2-
"name": "@syncfusion/ej2",
3-
"version": "1.0.17",
4-
"description": "Essential JS 2",
5-
"author": "Syncfusion Inc.",
6-
"license": "SEE LICENSE IN license",
7-
"dependencies": {
8-
"@syncfusion/ej2-base": "^1.0.16",
9-
"@syncfusion/ej2-buttons": "^1.0.14",
10-
"@syncfusion/ej2-calendars": "^1.0.16",
11-
"@syncfusion/ej2-charts": "^1.0.16",
12-
"@syncfusion/ej2-circulargauge": "^1.0.14",
13-
"@syncfusion/ej2-data": "^1.0.14",
14-
"@syncfusion/ej2-dropdowns": "^1.0.17",
15-
"@syncfusion/ej2-grids": "^1.0.17",
16-
"@syncfusion/ej2-inputs": "^1.0.17",
17-
"@syncfusion/ej2-lineargauge": "^1.0.14",
18-
"@syncfusion/ej2-lists": "^1.0.14",
19-
"@syncfusion/ej2-navigations": "^1.0.17",
20-
"@syncfusion/ej2-popups": "^1.0.17"
21-
},
22-
"devDependencies": {
23-
"es6-promise": "^3.2.1",
24-
"gulp": "^3.9.1",
25-
"gulp-sass": "^3.1.0",
26-
"gulp-typescript": "^3.1.6",
27-
"requirejs": "^2.3.3",
28-
"typescript": "2.3.4"
29-
},
30-
"keywords": [
31-
"ej2",
32-
"syncfusion",
33-
"ej2-all"
34-
],
35-
"repository": {
36-
"type": "git",
37-
"url": "https://github.com/syncfusion/ej2"
38-
},
39-
"scripts": {
40-
"build": "gulp build"
41-
}
2+
"name": "@syncfusion/ej2",
3+
"version": "1.0.17",
4+
"description": "Essential JS 2",
5+
"author": "Syncfusion Inc.",
6+
"license": "SEE LICENSE IN license",
7+
"dependencies": {
8+
"@syncfusion/ej2-base": "*",
9+
"@syncfusion/ej2-buttons": "*",
10+
"@syncfusion/ej2-calendars": "*",
11+
"@syncfusion/ej2-charts": "*",
12+
"@syncfusion/ej2-circulargauge": "*",
13+
"@syncfusion/ej2-data": "*",
14+
"@syncfusion/ej2-dropdowns": "*",
15+
"@syncfusion/ej2-grids": "*",
16+
"@syncfusion/ej2-inputs": "*",
17+
"@syncfusion/ej2-lineargauge": "*",
18+
"@syncfusion/ej2-lists": "*",
19+
"@syncfusion/ej2-navigations": "*",
20+
"@syncfusion/ej2-popups": "*"
21+
},
22+
"devDependencies": {
23+
"es6-promise": "^3.2.1",
24+
"gulp": "^3.9.1",
25+
"gulp-sass": "^3.1.0",
26+
"gulp-typescript": "^3.1.6",
27+
"requirejs": "^2.3.3",
28+
"typescript": "2.3.4"
29+
},
30+
"keywords": [
31+
"ej2",
32+
"syncfusion",
33+
"ej2-all"
34+
],
35+
"repository": {
36+
"type": "git",
37+
"url": "https://github.com/syncfusion/ej2"
38+
},
39+
"scripts": {
40+
"build": "gulp build"
41+
}
4242
}

0 commit comments

Comments
 (0)