Skip to content

Commit 7068d38

Browse files
Integrated latest changes at 07-26-2024 10:30:09 PM
1 parent 4d5d7e5 commit 7068d38

File tree

12 files changed

+592
-1
lines changed

12 files changed

+592
-1
lines changed

ej2-angular-toc.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1062,6 +1062,7 @@
10621062
<ul>
10631063
<li><a href="/ej2-angular/file-manager/getting-started">Getting Started</a></li>
10641064
<li><a href="/ej2-angular/file-manager/user-interface">User Interface</a></li>
1065+
<li><a href="/ej2-angular/file-manager/flat-data">Flat Data</a></li>
10651066
<li><a href="/ej2-angular/file-manager/file-operations">File Operations</a></li>
10661067
<li><a href="/ej2-angular/file-manager/views">Views</a></li>
10671068
<li><a href="/ej2-angular/file-manager/customization">Customization</a></li>
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"syncfusion-component": {
7+
"projectType": "application",
8+
"schematics": {},
9+
"root": "",
10+
"sourceRoot": "src",
11+
"prefix": "app",
12+
"architect": {
13+
"build": {
14+
"builder": "@angular-devkit/build-angular:browser",
15+
"options": {
16+
"outputPath": "dist",
17+
"index": "index.html",
18+
"main": "src/main.ts",
19+
"tsConfig": "tsconfig.json",
20+
"styles": [
21+
"src/styles.css"
22+
],
23+
"assets": [
24+
{
25+
"glob": "*.css",
26+
"input": "",
27+
"output": ""
28+
}
29+
]
30+
},
31+
"configurations": {
32+
"production": {
33+
"budgets": [
34+
{
35+
"type": "initial",
36+
"maximumWarning": "500kb",
37+
"maximumError": "10mb"
38+
},
39+
{
40+
"type": "anyComponentStyle",
41+
"maximumWarning": "2kb",
42+
"maximumError": "4kb"
43+
}
44+
],
45+
"outputHashing": "all"
46+
},
47+
"development": {
48+
"buildOptimizer": false,
49+
"optimization": false,
50+
"vendorChunk": true,
51+
"extractLicenses": false,
52+
"sourceMap": true,
53+
"namedChunks": true
54+
}
55+
},
56+
"defaultConfiguration": "production"
57+
},
58+
"serve": {
59+
"builder": "@angular-devkit/build-angular:dev-server",
60+
"configurations": {
61+
"production": {
62+
"buildTarget": "syncfusion-component:build:production"
63+
},
64+
"development": {
65+
"buildTarget": "syncfusion-component:build:development"
66+
}
67+
},
68+
"defaultConfiguration": "development"
69+
}
70+
}
71+
}
72+
},
73+
"cli": {
74+
"analytics": false
75+
}
76+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
5+
<meta name="author" content="Syncfusion" />
6+
<meta charset="UTF-8">
7+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
8+
</head>
9+
<body style="margin-top: 125px">
10+
<app-root>
11+
<div id='loader'>Loading...</div>
12+
</app-root>
13+
</body>
14+
</html>
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "syncfusion-component",
3+
"version": "0.0.0",
4+
"scripts": {
5+
"ng": "ng",
6+
"start": "ng serve",
7+
"build": "ng build",
8+
"watch": "ng build --watch --configuration development",
9+
"test": "ng test"
10+
},
11+
"private": true,
12+
"dependencies": {
13+
"@angular/core": "17.1.2",
14+
"@angular/platform-browser": "17.1.2",
15+
"@angular/platform-browser-dynamic": "17.1.2",
16+
"@syncfusion/ej2-angular-filemanager": "*",
17+
"@syncfusion/ej2-base": "*",
18+
"@syncfusion/ej2-inputs": "*",
19+
"@syncfusion/ej2-popups": "*",
20+
"@syncfusion/ej2-buttons": "*",
21+
"@syncfusion/ej2-splitbuttons": "*",
22+
"@syncfusion/ej2-navigations": "*",
23+
"@syncfusion/ej2-layouts": "*",
24+
"@syncfusion/ej2-grids": "*",
25+
"@syncfusion/ej2-angular-base": "*",
26+
"@syncfusion/ej2-angular-inputs": "*",
27+
"@syncfusion/ej2-angular-popups": "*",
28+
"@syncfusion/ej2-angular-buttons": "*",
29+
"@syncfusion/ej2-angular-navigations": "*",
30+
"@angular/animations": "17.1.2",
31+
"@angular/common": "17.1.2",
32+
"@angular/compiler": "17.1.2",
33+
"@angular/forms": "17.1.2",
34+
"@angular/router": "17.1.2",
35+
"moment": "2.29.4",
36+
"rxjs": "7.8.0",
37+
"tslib": "2.3.0",
38+
"zone.js": "0.14.3",
39+
"@syncfusion/ej2-filemanager": "*"
40+
},
41+
"devDependencies": {
42+
"@angular-devkit/build-angular": "17.1.2",
43+
"@angular/cli": "17.1.2",
44+
"@angular/compiler-cli": "17.1.2",
45+
"@types/jasmine": "4.3.0",
46+
"jasmine-core": "4.5.0",
47+
"karma": "6.4.0",
48+
"karma-chrome-launcher": "3.1.0",
49+
"karma-coverage": "2.2.0",
50+
"karma-jasmine": "5.1.0",
51+
"karma-jasmine-html-reporter": "2.0.0",
52+
"typescript": "5.3.3"
53+
}
54+
}

ej2-angular/code-snippet/file-manager/flat-data-cs1/src/app.component.css

Whitespace-only changes.

0 commit comments

Comments
 (0)