dotnetreport-ng 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +16 -0
- package/README.md +36 -0
- package/angular.json +38 -0
- package/package.json +49 -0
- package/projects/dotnetreport-lib/.browserslistrc +16 -0
- package/projects/dotnetreport-lib/README.md +36 -0
- package/projects/dotnetreport-lib/karma.conf.js +44 -0
- package/projects/dotnetreport-lib/ng-package.json +10 -0
- package/projects/dotnetreport-lib/package-lock.json +451 -0
- package/projects/dotnetreport-lib/package.json +14 -0
- package/projects/dotnetreport-lib/src/lib/dotnetreport-lib.di.ts +3 -0
- package/projects/dotnetreport-lib/src/lib/dotnetreport-lib.module.ts +31 -0
- package/projects/dotnetreport-lib/src/lib/dotnetreport-lib.service.ts +10 -0
- package/projects/dotnetreport-lib/src/lib/dotnetreport.component.css +0 -0
- package/projects/dotnetreport-lib/src/lib/dotnetreport.component.html +982 -0
- package/projects/dotnetreport-lib/src/lib/dotnetreport.component.ts +665 -0
- package/projects/dotnetreport-lib/src/public-api.ts +8 -0
- package/projects/dotnetreport-lib/tsconfig.lib.json +17 -0
- package/projects/dotnetreport-lib/tsconfig.lib.prod.json +10 -0
- package/projects/dotnetreport-lib/tsconfig.spec.json +17 -0
- package/tsconfig.json +39 -0
package/.editorconfig
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Editor configuration, see https://editorconfig.org
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
[*]
|
|
5
|
+
charset = utf-8
|
|
6
|
+
indent_style = space
|
|
7
|
+
indent_size = 2
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
|
10
|
+
|
|
11
|
+
[*.ts]
|
|
12
|
+
quote_type = single
|
|
13
|
+
|
|
14
|
+
[*.md]
|
|
15
|
+
max_line_length = off
|
|
16
|
+
trim_trailing_whitespace = false
|
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
## dotnet report www.dotnetreport.com
|
|
2
|
+
**dotnet Report Builder** is an Ad hoc Reporting software that allows programmers to easily add Reporting functionality to their ASP .NET Web Application.
|
|
3
|
+
|
|
4
|
+
This repository is for using dotnet report as an angular io component.
|
|
5
|
+
|
|
6
|
+
It features an easy and intutive Report Builder for end users, and all the tools you need to different type of List or Summary Repots. It can also handle Pie Charts, Bar Charts and Line Charts. Users can also select functions like Sorting, Formatting, Filtering, Grouping and apply Aggregate functions like COUNT, SUM, MIN, MAX and AVERAGE.
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
For more details, see
|
|
11
|
+
|
|
12
|
+
* Feature details on [the project's website](http://www.dotnetreport.com)
|
|
13
|
+
* Online examples at [https://dotnetreport.com/demo/Report)
|
|
14
|
+
|
|
15
|
+
## Getting started
|
|
16
|
+
|
|
17
|
+
The easiest way to add .Net Report Builder to your application is to install the [Nuget Package](https://www.nuget.org/packages/dotNetReport/). For complete details, please see the [getting started guide](https://dotnetreport.com/blog/getting-started-with-dotnet-report/).
|
|
18
|
+
|
|
19
|
+
## Documentation
|
|
20
|
+
|
|
21
|
+
Please see our [knowledgebase](https://dotnetreport.com/knowledgebase/) for detailed documentation.
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
dotnet Report Builder is licensed under [LGPL](https://github.com/dotnetreport/ReportBuilder.Web/blob/master/LICENSE) and EULA.
|
|
25
|
+
|
|
26
|
+
# DotnetReport.Angular
|
|
27
|
+
|
|
28
|
+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.1.0.
|
|
29
|
+
|
|
30
|
+
## Development server
|
|
31
|
+
|
|
32
|
+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
|
|
33
|
+
|
|
34
|
+
## Build
|
|
35
|
+
|
|
36
|
+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
|
package/angular.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
3
|
+
"version": 1,
|
|
4
|
+
"newProjectRoot": "projects",
|
|
5
|
+
"projects": {
|
|
6
|
+
"dotnetreport-lib": {
|
|
7
|
+
"projectType": "library",
|
|
8
|
+
"root": "projects/dotnetreport-lib",
|
|
9
|
+
"sourceRoot": "projects/dotnetreport-lib/src",
|
|
10
|
+
"prefix": "lib",
|
|
11
|
+
"architect": {
|
|
12
|
+
"build": {
|
|
13
|
+
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
14
|
+
"options": {
|
|
15
|
+
"project": "projects/dotnetreport-lib/ng-package.json"
|
|
16
|
+
},
|
|
17
|
+
"configurations": {
|
|
18
|
+
"production": {
|
|
19
|
+
"tsConfig": "projects/dotnetreport-lib/tsconfig.lib.prod.json"
|
|
20
|
+
},
|
|
21
|
+
"development": {
|
|
22
|
+
"tsConfig": "projects/dotnetreport-lib/tsconfig.lib.json"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"defaultConfiguration": "production"
|
|
26
|
+
},
|
|
27
|
+
"test": {
|
|
28
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
29
|
+
"options": {
|
|
30
|
+
"main": "projects/dotnetreport-lib/src/test.ts",
|
|
31
|
+
"tsConfig": "projects/dotnetreport-lib/tsconfig.spec.json",
|
|
32
|
+
"karmaConfig": "projects/dotnetreport-lib/karma.conf.js"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dotnetreport-ng",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Angular Component for dotnetreport",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"dotnet report",
|
|
7
|
+
"dotnetreport",
|
|
8
|
+
"angular report builder",
|
|
9
|
+
"report builder"
|
|
10
|
+
],
|
|
11
|
+
"author": {
|
|
12
|
+
"name": "dotnetreport"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"ng": "ng",
|
|
16
|
+
"start": "ng serve",
|
|
17
|
+
"build": "ng build",
|
|
18
|
+
"watch": "ng build --watch --configuration development",
|
|
19
|
+
"test": "ng test"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@angular/animations": "^14.1.0",
|
|
23
|
+
"@angular/common": "^14.1.0",
|
|
24
|
+
"@angular/compiler": "^14.1.0",
|
|
25
|
+
"@angular/core": "^14.1.0",
|
|
26
|
+
"@angular/forms": "^14.1.0",
|
|
27
|
+
"@angular/platform-browser": "^14.1.0",
|
|
28
|
+
"@angular/platform-browser-dynamic": "^14.1.0",
|
|
29
|
+
"@angular/router": "^14.1.0",
|
|
30
|
+
"rxjs": "~7.4.0",
|
|
31
|
+
"tslib": "^2.3.0",
|
|
32
|
+
"zone.js": "~0.11.4"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@angular-devkit/build-angular": "^14.1.0",
|
|
36
|
+
"@angular/cli": "^14.1.0",
|
|
37
|
+
"@angular/compiler-cli": "^14.1.0",
|
|
38
|
+
"@types/jasmine": "~3.10.0",
|
|
39
|
+
"@types/node": "^12.11.1",
|
|
40
|
+
"jasmine-core": "~3.10.0",
|
|
41
|
+
"karma": "~6.3.0",
|
|
42
|
+
"karma-chrome-launcher": "~3.1.0",
|
|
43
|
+
"karma-coverage": "~2.1.0",
|
|
44
|
+
"karma-jasmine": "~4.0.0",
|
|
45
|
+
"karma-jasmine-html-reporter": "~1.7.0",
|
|
46
|
+
"ng-packagr": "^14.1.0",
|
|
47
|
+
"typescript": "~4.7.4"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
|
|
2
|
+
# For additional information regarding the format and rule options, please see:
|
|
3
|
+
# https://github.com/browserslist/browserslist#queries
|
|
4
|
+
|
|
5
|
+
# For the full list of supported browsers by the Angular framework, please see:
|
|
6
|
+
# https://angular.io/guide/browser-support
|
|
7
|
+
|
|
8
|
+
# You can see what browsers were selected by your queries by running:
|
|
9
|
+
# npx browserslist
|
|
10
|
+
|
|
11
|
+
last 1 Chrome version
|
|
12
|
+
last 1 Firefox version
|
|
13
|
+
last 2 Edge major versions
|
|
14
|
+
last 2 Safari major versions
|
|
15
|
+
last 2 iOS major versions
|
|
16
|
+
Firefox ESR
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
## dotnet report www.dotnetreport.com
|
|
2
|
+
**dotnet Report Builder** is an Ad hoc Reporting software that allows programmers to easily add Reporting functionality to their ASP .NET Web Application.
|
|
3
|
+
|
|
4
|
+
This repository is for using dotnet report as an angular io component.
|
|
5
|
+
|
|
6
|
+
It features an easy and intutive Report Builder for end users, and all the tools you need to different type of List or Summary Repots. It can also handle Pie Charts, Bar Charts and Line Charts. Users can also select functions like Sorting, Formatting, Filtering, Grouping and apply Aggregate functions like COUNT, SUM, MIN, MAX and AVERAGE.
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
For more details, see
|
|
11
|
+
|
|
12
|
+
* Feature details on [the project's website](http://www.dotnetreport.com)
|
|
13
|
+
* Online examples at [https://dotnetreport.com/demo/Report)
|
|
14
|
+
|
|
15
|
+
## Getting started
|
|
16
|
+
|
|
17
|
+
The easiest way to add .Net Report Builder to your application is to install the [Nuget Package](https://www.nuget.org/packages/dotNetReport/). For complete details, please see the [getting started guide](https://dotnetreport.com/blog/getting-started-with-dotnet-report/).
|
|
18
|
+
|
|
19
|
+
## Documentation
|
|
20
|
+
|
|
21
|
+
Please see our [knowledgebase](https://dotnetreport.com/knowledgebase/) for detailed documentation.
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
dotnet Report Builder is licensed under [LGPL](https://github.com/dotnetreport/ReportBuilder.Web/blob/master/LICENSE) and EULA.
|
|
25
|
+
|
|
26
|
+
# DotnetReport.Angular
|
|
27
|
+
|
|
28
|
+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.1.0.
|
|
29
|
+
|
|
30
|
+
## Development server
|
|
31
|
+
|
|
32
|
+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
|
|
33
|
+
|
|
34
|
+
## Build
|
|
35
|
+
|
|
36
|
+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
// Karma configuration file, see link for more information
|
|
2
|
+
// https://karma-runner.github.io/1.0/config/configuration-file.html
|
|
3
|
+
|
|
4
|
+
module.exports = function (config) {
|
|
5
|
+
config.set({
|
|
6
|
+
basePath: '',
|
|
7
|
+
frameworks: ['jasmine', '@angular-devkit/build-angular'],
|
|
8
|
+
plugins: [
|
|
9
|
+
require('karma-jasmine'),
|
|
10
|
+
require('karma-chrome-launcher'),
|
|
11
|
+
require('karma-jasmine-html-reporter'),
|
|
12
|
+
require('karma-coverage'),
|
|
13
|
+
require('@angular-devkit/build-angular/plugins/karma')
|
|
14
|
+
],
|
|
15
|
+
client: {
|
|
16
|
+
jasmine: {
|
|
17
|
+
// you can add configuration options for Jasmine here
|
|
18
|
+
// the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
|
|
19
|
+
// for example, you can disable the random execution with `random: false`
|
|
20
|
+
// or set a specific seed with `seed: 4321`
|
|
21
|
+
},
|
|
22
|
+
clearContext: false // leave Jasmine Spec Runner output visible in browser
|
|
23
|
+
},
|
|
24
|
+
jasmineHtmlReporter: {
|
|
25
|
+
suppressAll: true // removes the duplicated traces
|
|
26
|
+
},
|
|
27
|
+
coverageReporter: {
|
|
28
|
+
dir: require('path').join(__dirname, '../../coverage/amar-lib'),
|
|
29
|
+
subdir: '.',
|
|
30
|
+
reporters: [
|
|
31
|
+
{ type: 'html' },
|
|
32
|
+
{ type: 'text-summary' }
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
reporters: ['progress', 'kjhtml'],
|
|
36
|
+
port: 9876,
|
|
37
|
+
colors: true,
|
|
38
|
+
logLevel: config.LOG_INFO,
|
|
39
|
+
autoWatch: true,
|
|
40
|
+
browsers: ['Chrome'],
|
|
41
|
+
singleRun: false,
|
|
42
|
+
restartOnFileChange: true
|
|
43
|
+
});
|
|
44
|
+
};
|