Skip to content

Commit ee6b92b

Browse files
authored
Merge pull request #8 from Saranya13/master
v17.1.47 is released
2 parents d762b95 + b9feec4 commit ee6b92b

File tree

111 files changed

+660
-6700
lines changed

Some content is hidden

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

111 files changed

+660
-6700
lines changed

manifest.webmanifest

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"lang": "en",
3+
"name": "Examples of Syncfusion JavaScript (ES5) UI Controls",
4+
"description": "Explore and learn JavaScript (ES5) UI controls library using large collection of feature-wise examples for each components.",
5+
"short_name": "EJ2 Angular",
6+
"icons": [{
7+
"src": "favicon.ico",
8+
"sizes": "64x64"
9+
}, {
10+
"src": "favicon.ico",
11+
"sizes": "128x128"
12+
}],
13+
"scope": "/racer/",
14+
"start_url": "index.html",
15+
"display": "fullscreen",
16+
"​​orientation": "portrait-primary",
17+
"theme_color": "#FFFFFF",
18+
"background_color": "#F8F8F8",
19+
"serviceworker": {
20+
"src": "sw.js",
21+
"scope": "/racer/",
22+
"update_via_cache": "none"
23+
},
24+
"related_applications": [{
25+
"platform": "play",
26+
"url": "https://play.google.com/store/apps/details?id=com.Syncfusion.ej2",
27+
"id": "com.Syncfusion.ej2"
28+
}]
29+
}

package-lock.json

Lines changed: 0 additions & 6582 deletions
This file was deleted.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"license": "SEE LICENSE IN license",
77
"dependencies": {
88
"@syncfusion/ej2": "*",
9-
"@syncfusion/ej2-inplace-editor": "*",
109
"browser-sync": "^2.18.13",
1110
"cheerio": "^1.0.0-rc.1",
1211
"crossroads": "^0.12.2",

src/dashboard-layout/analytics-dashboard-stack.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/dashboard-layout/predefined-layouts-stack.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/dashboard-layout/predefined-layouts.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,4 +194,10 @@
194194
border-bottom: 1px solid #d7d7d7;
195195
border-right: 1px solid #d7d7d7;
196196
}
197+
/* styles for highcontrast theme */
198+
199+
body.highcontrast .panel-content {
200+
color: rgba(255, 255, 255, 0.54);
201+
}
202+
197203
</style>

src/dashboard-layout/properties-stack.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/dashboard-layout/properties.js

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,24 +50,15 @@ this.default = function () {
5050
}
5151
function onChange(args) {
5252
if (args.event.currentTarget.id === "floating") {
53-
if (args.checked) {
54-
dashboard.allowFloating = true;
55-
} else {
56-
dashboard.allowFloating = false;
57-
}
53+
dashboard.allowFloating = args.checked;
5854
}
5955
if (args.event.currentTarget.id === "resizing") {
60-
if (args.checked) {
61-
dashboard.allowResizing = true;
62-
} else {
63-
64-
dashboard.allowResizing = false;
65-
}
56+
dashboard.allowResizing = args.checked;
6657
}
6758
}
6859

6960
document.getElementById('remove').onclick = function (e) {
70-
if (dashboardObject.panels.length != 0) {
61+
if (dashboardObject.panels.length > 0) {
7162
for (var i = dashboardObject.panels.length - 1; i < dashboardObject.panels.length; i++) {
7263
dashboardObject.removePanel(dashboardObject.panels[dashboardObject.panels.length - 1 - i].id);
7364
}

src/diagram/bpmn-editor-stack.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/diagram/complex-hierarchical-tree-stack.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)